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
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#define JEMALLOC_MANGLE
|
2010-10-08 00:53:26 +08:00
|
|
|
#include "jemalloc_test.h"
|
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
|
|
|
|
/* #define MAXALIGN ((size_t)0x80000000000LLU) */
|
|
|
|
#define MAXALIGN ((size_t)0x2000000LLU)
|
|
|
|
#define NITER 4
|
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
void *p;
|
2012-03-01 04:56:37 +08:00
|
|
|
size_t nsz, rsz, sz, alignment, total;
|
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
|
|
|
unsigned i;
|
|
|
|
void *ps[NITER];
|
|
|
|
|
|
|
|
fprintf(stderr, "Test begin\n");
|
|
|
|
|
2012-03-01 04:56:37 +08:00
|
|
|
sz = 42;
|
|
|
|
nsz = 0;
|
|
|
|
r = JEMALLOC_P(nallocm)(&nsz, sz, 0);
|
|
|
|
if (r != ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr, "Unexpected nallocm() error\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
rsz = 0;
|
|
|
|
r = JEMALLOC_P(allocm)(&p, &rsz, sz, 0);
|
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
|
|
|
if (r != ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr, "Unexpected allocm() error\n");
|
|
|
|
abort();
|
|
|
|
}
|
2012-03-01 04:56:37 +08:00
|
|
|
if (rsz < sz)
|
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
|
|
|
fprintf(stderr, "Real size smaller than expected\n");
|
2012-03-01 04:56:37 +08:00
|
|
|
if (nsz != rsz)
|
|
|
|
fprintf(stderr, "nallocm()/allocm() rsize mismatch\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
|
|
|
if (JEMALLOC_P(dallocm)(p, 0) != ALLOCM_SUCCESS)
|
|
|
|
fprintf(stderr, "Unexpected dallocm() error\n");
|
|
|
|
|
2012-03-01 04:56:37 +08:00
|
|
|
r = JEMALLOC_P(allocm)(&p, NULL, sz, 0);
|
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
|
|
|
if (r != ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr, "Unexpected allocm() error\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
if (JEMALLOC_P(dallocm)(p, 0) != ALLOCM_SUCCESS)
|
|
|
|
fprintf(stderr, "Unexpected dallocm() error\n");
|
|
|
|
|
2012-03-01 04:56:37 +08:00
|
|
|
nsz = 0;
|
|
|
|
r = JEMALLOC_P(nallocm)(&nsz, sz, ALLOCM_ZERO);
|
|
|
|
if (r != ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr, "Unexpected nallocm() error\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
rsz = 0;
|
|
|
|
r = JEMALLOC_P(allocm)(&p, &rsz, sz, ALLOCM_ZERO);
|
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
|
|
|
if (r != ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr, "Unexpected allocm() error\n");
|
|
|
|
abort();
|
|
|
|
}
|
2012-03-01 04:56:37 +08:00
|
|
|
if (nsz != rsz)
|
|
|
|
fprintf(stderr, "nallocm()/allocm() rsize mismatch\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
|
|
|
if (JEMALLOC_P(dallocm)(p, 0) != ALLOCM_SUCCESS)
|
|
|
|
fprintf(stderr, "Unexpected dallocm() error\n");
|
|
|
|
|
|
|
|
#if LG_SIZEOF_PTR == 3
|
|
|
|
alignment = 0x8000000000000000LLU;
|
|
|
|
sz = 0x8000000000000000LLU;
|
|
|
|
#else
|
|
|
|
alignment = 0x80000000LU;
|
|
|
|
sz = 0x80000000LU;
|
|
|
|
#endif
|
2012-03-01 04:56:37 +08:00
|
|
|
nsz = 0;
|
|
|
|
r = JEMALLOC_P(nallocm)(&nsz, sz, ALLOCM_ALIGN(alignment));
|
|
|
|
if (r == ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Expected error for nallocm(&nsz, %zu, 0x%x)\n",
|
|
|
|
sz, ALLOCM_ALIGN(alignment));
|
|
|
|
}
|
|
|
|
rsz = 0;
|
|
|
|
r = JEMALLOC_P(allocm)(&p, &rsz, sz, ALLOCM_ALIGN(alignment));
|
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
|
|
|
if (r == ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Expected error for allocm(&p, %zu, 0x%x)\n",
|
|
|
|
sz, ALLOCM_ALIGN(alignment));
|
|
|
|
}
|
2012-03-01 04:56:37 +08:00
|
|
|
if (nsz != rsz)
|
|
|
|
fprintf(stderr, "nallocm()/allocm() rsize mismatch\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
|
|
|
|
|
|
|
#if LG_SIZEOF_PTR == 3
|
|
|
|
alignment = 0x4000000000000000LLU;
|
|
|
|
sz = 0x8400000000000001LLU;
|
|
|
|
#else
|
|
|
|
alignment = 0x40000000LU;
|
|
|
|
sz = 0x84000001LU;
|
|
|
|
#endif
|
2012-03-01 04:56:37 +08:00
|
|
|
nsz = 0;
|
|
|
|
r = JEMALLOC_P(nallocm)(&nsz, sz, ALLOCM_ALIGN(alignment));
|
|
|
|
if (r != ALLOCM_SUCCESS)
|
|
|
|
fprintf(stderr, "Unexpected nallocm() error\n");
|
|
|
|
rsz = 0;
|
|
|
|
r = JEMALLOC_P(allocm)(&p, &rsz, sz, ALLOCM_ALIGN(alignment));
|
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
|
|
|
if (r == ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Expected error for allocm(&p, %zu, 0x%x)\n",
|
|
|
|
sz, ALLOCM_ALIGN(alignment));
|
|
|
|
}
|
|
|
|
|
|
|
|
alignment = 0x10LLU;
|
|
|
|
#if LG_SIZEOF_PTR == 3
|
|
|
|
sz = 0xfffffffffffffff0LLU;
|
|
|
|
#else
|
|
|
|
sz = 0xfffffff0LU;
|
|
|
|
#endif
|
2012-03-01 04:56:37 +08:00
|
|
|
nsz = 0;
|
|
|
|
r = JEMALLOC_P(nallocm)(&nsz, sz, ALLOCM_ALIGN(alignment));
|
|
|
|
if (r == ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Expected error for nallocm(&nsz, %zu, 0x%x)\n",
|
|
|
|
sz, ALLOCM_ALIGN(alignment));
|
|
|
|
}
|
|
|
|
rsz = 0;
|
|
|
|
r = JEMALLOC_P(allocm)(&p, &rsz, sz, ALLOCM_ALIGN(alignment));
|
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
|
|
|
if (r == ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Expected error for allocm(&p, %zu, 0x%x)\n",
|
|
|
|
sz, ALLOCM_ALIGN(alignment));
|
|
|
|
}
|
2012-03-01 04:56:37 +08:00
|
|
|
if (nsz != rsz)
|
|
|
|
fprintf(stderr, "nallocm()/allocm() rsize mismatch\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
|
|
|
|
|
|
|
for (i = 0; i < NITER; i++)
|
|
|
|
ps[i] = NULL;
|
|
|
|
|
|
|
|
for (alignment = 8;
|
|
|
|
alignment <= MAXALIGN;
|
|
|
|
alignment <<= 1) {
|
|
|
|
total = 0;
|
|
|
|
fprintf(stderr, "Alignment: %zu\n", alignment);
|
|
|
|
for (sz = 1;
|
|
|
|
sz < 3 * alignment && sz < (1U << 31);
|
|
|
|
sz += (alignment >> (LG_SIZEOF_PTR-1)) - 1) {
|
|
|
|
for (i = 0; i < NITER; i++) {
|
2012-03-01 04:56:37 +08:00
|
|
|
nsz = 0;
|
|
|
|
r = JEMALLOC_P(nallocm)(&nsz, sz,
|
|
|
|
ALLOCM_ALIGN(alignment) | ALLOCM_ZERO);
|
|
|
|
if (r != ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"nallocm() error for size %zu"
|
|
|
|
" (0x%zx): %d\n",
|
|
|
|
sz, sz, r);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
rsz = 0;
|
|
|
|
r = JEMALLOC_P(allocm)(&ps[i], &rsz, sz,
|
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
|
|
|
ALLOCM_ALIGN(alignment) | ALLOCM_ZERO);
|
|
|
|
if (r != ALLOCM_SUCCESS) {
|
|
|
|
fprintf(stderr,
|
2012-03-01 04:56:37 +08:00
|
|
|
"allocm() error for size %zu"
|
|
|
|
" (0x%zx): %d\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
|
|
|
sz, sz, r);
|
|
|
|
exit(1);
|
|
|
|
}
|
2012-03-01 04:56:37 +08:00
|
|
|
if (rsz < sz) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Real size smaller than"
|
|
|
|
" expected\n");
|
|
|
|
}
|
|
|
|
if (nsz != rsz) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"nallocm()/allocm() rsize"
|
|
|
|
" mismatch\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
|
|
|
if ((uintptr_t)p & (alignment-1)) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"%p inadequately aligned for"
|
|
|
|
" alignment: %zu\n", p, alignment);
|
|
|
|
}
|
2012-03-01 04:56:37 +08:00
|
|
|
JEMALLOC_P(sallocm)(ps[i], &rsz, 0);
|
|
|
|
total += rsz;
|
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
|
|
|
if (total >= (MAXALIGN << 1))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (i = 0; i < NITER; i++) {
|
|
|
|
if (ps[i] != NULL) {
|
|
|
|
JEMALLOC_P(dallocm)(ps[i], 0);
|
|
|
|
ps[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Test end\n");
|
|
|
|
return (0);
|
|
|
|
}
|