server-skynet-source-3rd-je.../test/posix_memalign.c

123 lines
2.6 KiB
C
Raw Normal View History

2010-09-12 11:59:16 +08:00
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
2010-09-12 11:59:16 +08:00
#include <unistd.h>
#include <errno.h>
#include <string.h>
#define JEMALLOC_MANGLE
#include "jemalloc_test.h"
2010-09-12 11:59:16 +08:00
#define CHUNK 0x400000
/* #define MAXALIGN ((size_t)UINT64_C(0x80000000000)) */
#define MAXALIGN ((size_t)0x2000000LU)
2010-09-12 11:59:16 +08:00
#define NITER 4
int
main(void)
{
size_t alignment, size, total;
unsigned i;
int err;
void *p, *ps[NITER];
fprintf(stderr, "Test begin\n");
/* Test error conditions. */
for (alignment = 0; alignment < sizeof(void *); alignment++) {
err = posix_memalign(&p, alignment, 1);
2010-09-12 11:59:16 +08:00
if (err != EINVAL) {
fprintf(stderr,
"Expected error for invalid alignment %zu\n",
alignment);
}
}
for (alignment = sizeof(size_t); alignment < MAXALIGN;
alignment <<= 1) {
err = posix_memalign(&p, alignment + 1, 1);
2010-09-12 11:59:16 +08:00
if (err == 0) {
fprintf(stderr,
"Expected error for invalid alignment %zu\n",
alignment + 1);
}
}
#if LG_SIZEOF_PTR == 3
alignment = UINT64_C(0x8000000000000000);
size = UINT64_C(0x8000000000000000);
2010-09-12 11:59:16 +08:00
#else
alignment = 0x80000000LU;
size = 0x80000000LU;
2010-09-12 11:59:16 +08:00
#endif
err = posix_memalign(&p, alignment, size);
2010-09-12 11:59:16 +08:00
if (err == 0) {
fprintf(stderr,
"Expected error for posix_memalign(&p, %zu, %zu)\n",
alignment, size);
}
#if LG_SIZEOF_PTR == 3
alignment = UINT64_C(0x4000000000000000);
size = UINT64_C(0x8400000000000001);
2010-09-12 11:59:16 +08:00
#else
alignment = 0x40000000LU;
size = 0x84000001LU;
#endif
err = posix_memalign(&p, alignment, size);
2010-09-12 11:59:16 +08:00
if (err == 0) {
fprintf(stderr,
"Expected error for posix_memalign(&p, %zu, %zu)\n",
alignment, size);
}
alignment = 0x10LU;
2010-09-12 11:59:16 +08:00
#if LG_SIZEOF_PTR == 3
size = UINT64_C(0xfffffffffffffff0);
2010-09-12 11:59:16 +08:00
#else
size = 0xfffffff0LU;
#endif
err = posix_memalign(&p, alignment, size);
2010-09-12 11:59:16 +08:00
if (err == 0) {
fprintf(stderr,
"Expected error for posix_memalign(&p, %zu, %zu)\n",
alignment, size);
}
for (i = 0; i < NITER; i++)
ps[i] = NULL;
for (alignment = 8;
2010-09-12 11:59:16 +08:00
alignment <= MAXALIGN;
alignment <<= 1) {
total = 0;
fprintf(stderr, "Alignment: %zu\n", alignment);
for (size = 1;
size < 3 * alignment && size < (1U << 31);
size += (alignment >> (LG_SIZEOF_PTR-1)) - 1) {
2010-09-12 11:59:16 +08:00
for (i = 0; i < NITER; i++) {
err = posix_memalign(&ps[i],
2010-09-12 11:59:16 +08:00
alignment, size);
if (err) {
fprintf(stderr,
"Error for size %zu (%#zx): %s\n",
size, size, strerror(err));
2010-09-12 11:59:16 +08:00
exit(1);
}
total += malloc_usable_size(ps[i]);
2010-09-12 11:59:16 +08:00
if (total >= (MAXALIGN << 1))
break;
}
for (i = 0; i < NITER; i++) {
if (ps[i] != NULL) {
free(ps[i]);
2010-09-12 11:59:16 +08:00
ps[i] = NULL;
}
}
}
}
fprintf(stderr, "Test end\n");
return (0);
2010-09-12 11:59:16 +08:00
}