2010-09-12 11:59:16 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2012-03-06 04:26:26 +08:00
|
|
|
#include <stdint.h>
|
2010-09-12 11:59:16 +08:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define JEMALLOC_MANGLE
|
2010-10-08 00:53:26 +08:00
|
|
|
#include "jemalloc_test.h"
|
2010-09-12 11:59:16 +08:00
|
|
|
|
Add {,r,s,d}allocm().
Add allocm(), rallocm(), sallocm(), and dallocm(), which are a
functional superset of malloc(), calloc(), posix_memalign(),
malloc_usable_size(), and free().
2010-09-18 06:46:18 +08:00
|
|
|
#define CHUNK 0x400000
|
2012-03-06 04:26:26 +08:00
|
|
|
/* #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++) {
|
2012-03-02 09:19:20 +08:00
|
|
|
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) {
|
2012-03-02 09:19:20 +08:00
|
|
|
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
|
2012-03-06 04:26:26 +08:00
|
|
|
alignment = UINT64_C(0x8000000000000000);
|
|
|
|
size = UINT64_C(0x8000000000000000);
|
2010-09-12 11:59:16 +08:00
|
|
|
#else
|
2010-09-12 14:38:12 +08:00
|
|
|
alignment = 0x80000000LU;
|
|
|
|
size = 0x80000000LU;
|
2010-09-12 11:59:16 +08:00
|
|
|
#endif
|
2012-03-02 09:19:20 +08:00
|
|
|
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
|
2012-03-06 04:26:26 +08:00
|
|
|
alignment = UINT64_C(0x4000000000000000);
|
|
|
|
size = UINT64_C(0x8400000000000001);
|
2010-09-12 11:59:16 +08:00
|
|
|
#else
|
|
|
|
alignment = 0x40000000LU;
|
|
|
|
size = 0x84000001LU;
|
|
|
|
#endif
|
2012-03-02 09:19:20 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2012-03-06 04:26:26 +08:00
|
|
|
alignment = 0x10LU;
|
2010-09-12 11:59:16 +08:00
|
|
|
#if LG_SIZEOF_PTR == 3
|
2012-03-06 04:26:26 +08:00
|
|
|
size = UINT64_C(0xfffffffffffffff0);
|
2010-09-12 11:59:16 +08:00
|
|
|
#else
|
|
|
|
size = 0xfffffff0LU;
|
|
|
|
#endif
|
2012-03-02 09:19:20 +08:00
|
|
|
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;
|
|
|
|
|
2010-09-12 14:38:12 +08:00
|
|
|
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);
|
2010-09-12 14:38:12 +08:00
|
|
|
size += (alignment >> (LG_SIZEOF_PTR-1)) - 1) {
|
2010-09-12 11:59:16 +08:00
|
|
|
for (i = 0; i < NITER; i++) {
|
2012-03-02 09:19:20 +08:00
|
|
|
err = posix_memalign(&ps[i],
|
2010-09-12 11:59:16 +08:00
|
|
|
alignment, size);
|
|
|
|
if (err) {
|
|
|
|
fprintf(stderr,
|
2012-03-07 06:57:45 +08:00
|
|
|
"Error for size %zu (%#zx): %s\n",
|
2010-09-12 14:38:12 +08:00
|
|
|
size, size, strerror(err));
|
2010-09-12 11:59:16 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
2012-03-02 09:19:20 +08:00
|
|
|
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) {
|
2012-03-02 09:19:20 +08:00
|
|
|
free(ps[i]);
|
2010-09-12 11:59:16 +08:00
|
|
|
ps[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Test end\n");
|
Add {,r,s,d}allocm().
Add allocm(), rallocm(), sallocm(), and dallocm(), which are a
functional superset of malloc(), calloc(), posix_memalign(),
malloc_usable_size(), and free().
2010-09-18 06:46:18 +08:00
|
|
|
return (0);
|
2010-09-12 11:59:16 +08:00
|
|
|
}
|