1
1
#include "test/jemalloc_test.h"
2
2
3
+ /*
4
+ * Use a separate arena for xallocx() extension/contraction tests so that
5
+ * internal allocation e.g. by heap profiling can't interpose allocations where
6
+ * xallocx() would ordinarily be able to extend.
7
+ */
8
+ static unsigned
9
+ arena_ind (void )
10
+ {
11
+ static unsigned ind = 0 ;
12
+
13
+ if (ind == 0 ) {
14
+ size_t sz = sizeof (ind );
15
+ assert_d_eq (mallctl ("arenas.extend" , & ind , & sz , NULL , 0 ), 0 ,
16
+ "Unexpected mallctl failure creating arena" );
17
+ }
18
+
19
+ return (ind );
20
+ }
21
+
3
22
TEST_BEGIN (test_same_size )
4
23
{
5
24
void * p ;
@@ -218,6 +237,7 @@ TEST_END
218
237
219
238
TEST_BEGIN (test_extra_large )
220
239
{
240
+ int flags = MALLOCX_ARENA (arena_ind ());
221
241
size_t smallmax , large0 , large1 , large2 , huge0 , hugemax ;
222
242
void * p ;
223
243
@@ -229,61 +249,62 @@ TEST_BEGIN(test_extra_large)
229
249
huge0 = get_huge_size (0 );
230
250
hugemax = get_huge_size (get_nhuge ()- 1 );
231
251
232
- p = mallocx (large2 , 0 );
252
+ p = mallocx (large2 , flags );
233
253
assert_ptr_not_null (p , "Unexpected mallocx() error" );
234
254
235
- assert_zu_eq (xallocx (p , large2 , 0 , 0 ), large2 ,
255
+ assert_zu_eq (xallocx (p , large2 , 0 , flags ), large2 ,
236
256
"Unexpected xallocx() behavior" );
237
257
/* Test size decrease with zero extra. */
238
- assert_zu_eq (xallocx (p , large0 , 0 , 0 ), large0 ,
258
+ assert_zu_eq (xallocx (p , large0 , 0 , flags ), large0 ,
239
259
"Unexpected xallocx() behavior" );
240
- assert_zu_eq (xallocx (p , smallmax , 0 , 0 ), large0 ,
260
+ assert_zu_eq (xallocx (p , smallmax , 0 , flags ), large0 ,
241
261
"Unexpected xallocx() behavior" );
242
262
243
- assert_zu_eq (xallocx (p , large2 , 0 , 0 ), large2 ,
263
+ assert_zu_eq (xallocx (p , large2 , 0 , flags ), large2 ,
244
264
"Unexpected xallocx() behavior" );
245
265
/* Test size decrease with non-zero extra. */
246
- assert_zu_eq (xallocx (p , large0 , large2 - large0 , 0 ), large2 ,
266
+ assert_zu_eq (xallocx (p , large0 , large2 - large0 , flags ), large2 ,
247
267
"Unexpected xallocx() behavior" );
248
- assert_zu_eq (xallocx (p , large1 , large2 - large1 , 0 ), large2 ,
268
+ assert_zu_eq (xallocx (p , large1 , large2 - large1 , flags ), large2 ,
249
269
"Unexpected xallocx() behavior" );
250
- assert_zu_eq (xallocx (p , large0 , large1 - large0 , 0 ), large1 ,
270
+ assert_zu_eq (xallocx (p , large0 , large1 - large0 , flags ), large1 ,
251
271
"Unexpected xallocx() behavior" );
252
- assert_zu_eq (xallocx (p , smallmax , large0 - smallmax , 0 ), large0 ,
272
+ assert_zu_eq (xallocx (p , smallmax , large0 - smallmax , flags ), large0 ,
253
273
"Unexpected xallocx() behavior" );
254
274
255
- assert_zu_eq (xallocx (p , large0 , 0 , 0 ), large0 ,
275
+ assert_zu_eq (xallocx (p , large0 , 0 , flags ), large0 ,
256
276
"Unexpected xallocx() behavior" );
257
277
/* Test size increase with zero extra. */
258
- assert_zu_eq (xallocx (p , large2 , 0 , 0 ), large2 ,
278
+ assert_zu_eq (xallocx (p , large2 , 0 , flags ), large2 ,
259
279
"Unexpected xallocx() behavior" );
260
- assert_zu_eq (xallocx (p , huge0 , 0 , 0 ), large2 ,
280
+ assert_zu_eq (xallocx (p , huge0 , 0 , flags ), large2 ,
261
281
"Unexpected xallocx() behavior" );
262
282
263
- assert_zu_eq (xallocx (p , large0 , 0 , 0 ), large0 ,
283
+ assert_zu_eq (xallocx (p , large0 , 0 , flags ), large0 ,
264
284
"Unexpected xallocx() behavior" );
265
285
/* Test size increase with non-zero extra. */
266
- assert_zu_lt (xallocx (p , large0 , huge0 - large0 , 0 ), huge0 ,
286
+ assert_zu_lt (xallocx (p , large0 , huge0 - large0 , flags ), huge0 ,
267
287
"Unexpected xallocx() behavior" );
268
288
269
- assert_zu_eq (xallocx (p , large0 , 0 , 0 ), large0 ,
289
+ assert_zu_eq (xallocx (p , large0 , 0 , flags ), large0 ,
270
290
"Unexpected xallocx() behavior" );
271
291
/* Test size increase with non-zero extra. */
272
- assert_zu_eq (xallocx (p , large0 , large2 - large0 , 0 ), large2 ,
292
+ assert_zu_eq (xallocx (p , large0 , large2 - large0 , flags ), large2 ,
273
293
"Unexpected xallocx() behavior" );
274
294
275
- assert_zu_eq (xallocx (p , large2 , 0 , 0 ), large2 ,
295
+ assert_zu_eq (xallocx (p , large2 , 0 , flags ), large2 ,
276
296
"Unexpected xallocx() behavior" );
277
297
/* Test size+extra overflow. */
278
- assert_zu_lt (xallocx (p , large2 , hugemax - large2 + 1 , 0 ), huge0 ,
298
+ assert_zu_lt (xallocx (p , large2 , hugemax - large2 + 1 , flags ), huge0 ,
279
299
"Unexpected xallocx() behavior" );
280
300
281
- dallocx (p , 0 );
301
+ dallocx (p , flags );
282
302
}
283
303
TEST_END
284
304
285
305
TEST_BEGIN (test_extra_huge )
286
306
{
307
+ int flags = MALLOCX_ARENA (arena_ind ());
287
308
size_t largemax , huge0 , huge1 , huge2 , hugemax ;
288
309
void * p ;
289
310
@@ -294,56 +315,56 @@ TEST_BEGIN(test_extra_huge)
294
315
huge2 = get_huge_size (2 );
295
316
hugemax = get_huge_size (get_nhuge ()- 1 );
296
317
297
- p = mallocx (huge2 , 0 );
318
+ p = mallocx (huge2 , flags );
298
319
assert_ptr_not_null (p , "Unexpected mallocx() error" );
299
320
300
- assert_zu_eq (xallocx (p , huge2 , 0 , 0 ), huge2 ,
321
+ assert_zu_eq (xallocx (p , huge2 , 0 , flags ), huge2 ,
301
322
"Unexpected xallocx() behavior" );
302
323
/* Test size decrease with zero extra. */
303
- assert_zu_ge (xallocx (p , huge0 , 0 , 0 ), huge0 ,
324
+ assert_zu_ge (xallocx (p , huge0 , 0 , flags ), huge0 ,
304
325
"Unexpected xallocx() behavior" );
305
- assert_zu_ge (xallocx (p , largemax , 0 , 0 ), huge0 ,
326
+ assert_zu_ge (xallocx (p , largemax , 0 , flags ), huge0 ,
306
327
"Unexpected xallocx() behavior" );
307
328
308
- assert_zu_eq (xallocx (p , huge2 , 0 , 0 ), huge2 ,
329
+ assert_zu_eq (xallocx (p , huge2 , 0 , flags ), huge2 ,
309
330
"Unexpected xallocx() behavior" );
310
331
/* Test size decrease with non-zero extra. */
311
- assert_zu_eq (xallocx (p , huge0 , huge2 - huge0 , 0 ), huge2 ,
332
+ assert_zu_eq (xallocx (p , huge0 , huge2 - huge0 , flags ), huge2 ,
312
333
"Unexpected xallocx() behavior" );
313
- assert_zu_eq (xallocx (p , huge1 , huge2 - huge1 , 0 ), huge2 ,
334
+ assert_zu_eq (xallocx (p , huge1 , huge2 - huge1 , flags ), huge2 ,
314
335
"Unexpected xallocx() behavior" );
315
- assert_zu_eq (xallocx (p , huge0 , huge1 - huge0 , 0 ), huge1 ,
336
+ assert_zu_eq (xallocx (p , huge0 , huge1 - huge0 , flags ), huge1 ,
316
337
"Unexpected xallocx() behavior" );
317
- assert_zu_ge (xallocx (p , largemax , huge0 - largemax , 0 ), huge0 ,
338
+ assert_zu_ge (xallocx (p , largemax , huge0 - largemax , flags ), huge0 ,
318
339
"Unexpected xallocx() behavior" );
319
340
320
- assert_zu_ge (xallocx (p , huge0 , 0 , 0 ), huge0 ,
341
+ assert_zu_ge (xallocx (p , huge0 , 0 , flags ), huge0 ,
321
342
"Unexpected xallocx() behavior" );
322
343
/* Test size increase with zero extra. */
323
- assert_zu_le (xallocx (p , huge2 , 0 , 0 ), huge2 ,
344
+ assert_zu_le (xallocx (p , huge2 , 0 , flags ), huge2 ,
324
345
"Unexpected xallocx() behavior" );
325
- assert_zu_le (xallocx (p , hugemax + 1 , 0 , 0 ), huge2 ,
346
+ assert_zu_le (xallocx (p , hugemax + 1 , 0 , flags ), huge2 ,
326
347
"Unexpected xallocx() behavior" );
327
348
328
- assert_zu_ge (xallocx (p , huge0 , 0 , 0 ), huge0 ,
349
+ assert_zu_ge (xallocx (p , huge0 , 0 , flags ), huge0 ,
329
350
"Unexpected xallocx() behavior" );
330
351
/* Test size increase with non-zero extra. */
331
- assert_zu_le (xallocx (p , huge0 , SIZE_T_MAX - huge0 , 0 ), hugemax ,
352
+ assert_zu_le (xallocx (p , huge0 , SIZE_T_MAX - huge0 , flags ), hugemax ,
332
353
"Unexpected xallocx() behavior" );
333
354
334
- assert_zu_ge (xallocx (p , huge0 , 0 , 0 ), huge0 ,
355
+ assert_zu_ge (xallocx (p , huge0 , 0 , flags ), huge0 ,
335
356
"Unexpected xallocx() behavior" );
336
357
/* Test size increase with non-zero extra. */
337
- assert_zu_le (xallocx (p , huge0 , huge2 - huge0 , 0 ), huge2 ,
358
+ assert_zu_le (xallocx (p , huge0 , huge2 - huge0 , flags ), huge2 ,
338
359
"Unexpected xallocx() behavior" );
339
360
340
- assert_zu_eq (xallocx (p , huge2 , 0 , 0 ), huge2 ,
361
+ assert_zu_eq (xallocx (p , huge2 , 0 , flags ), huge2 ,
341
362
"Unexpected xallocx() behavior" );
342
363
/* Test size+extra overflow. */
343
- assert_zu_le (xallocx (p , huge2 , hugemax - huge2 + 1 , 0 ), hugemax ,
364
+ assert_zu_le (xallocx (p , huge2 , hugemax - huge2 + 1 , flags ), hugemax ,
344
365
"Unexpected xallocx() behavior" );
345
366
346
- dallocx (p , 0 );
367
+ dallocx (p , flags );
347
368
}
348
369
TEST_END
349
370
@@ -388,12 +409,13 @@ validate_fill(const void *p, uint8_t c, size_t offset, size_t len)
388
409
static void
389
410
test_zero (size_t szmin , size_t szmax )
390
411
{
412
+ int flags = MALLOCX_ARENA (arena_ind ()) | MALLOCX_ZERO ;
391
413
size_t sz , nsz ;
392
414
void * p ;
393
415
#define FILL_BYTE 0x7aU
394
416
395
417
sz = szmax ;
396
- p = mallocx (sz , MALLOCX_ZERO );
418
+ p = mallocx (sz , flags );
397
419
assert_ptr_not_null (p , "Unexpected mallocx() error" );
398
420
assert_false (validate_fill (p , 0x00 , 0 , sz ), "Memory not filled: sz=%zu" ,
399
421
sz );
@@ -408,14 +430,14 @@ test_zero(size_t szmin, size_t szmax)
408
430
409
431
/* Shrink in place so that we can expect growing in place to succeed. */
410
432
sz = szmin ;
411
- assert_zu_eq (xallocx (p , sz , 0 , MALLOCX_ZERO ), sz ,
433
+ assert_zu_eq (xallocx (p , sz , 0 , flags ), sz ,
412
434
"Unexpected xallocx() error" );
413
435
assert_false (validate_fill (p , FILL_BYTE , 0 , sz ),
414
436
"Memory not filled: sz=%zu" , sz );
415
437
416
438
for (sz = szmin ; sz < szmax ; sz = nsz ) {
417
- nsz = nallocx (sz + 1 , MALLOCX_ZERO );
418
- assert_zu_eq (xallocx (p , sz + 1 , 0 , MALLOCX_ZERO ), nsz ,
439
+ nsz = nallocx (sz + 1 , flags );
440
+ assert_zu_eq (xallocx (p , sz + 1 , 0 , flags ), nsz ,
419
441
"Unexpected xallocx() failure" );
420
442
assert_false (validate_fill (p , FILL_BYTE , 0 , sz ),
421
443
"Memory not filled: sz=%zu" , sz );
@@ -426,7 +448,7 @@ test_zero(size_t szmin, size_t szmax)
426
448
"Memory not filled: nsz=%zu" , nsz );
427
449
}
428
450
429
- dallocx (p , 0 );
451
+ dallocx (p , flags );
430
452
}
431
453
432
454
TEST_BEGIN (test_zero_large )
0 commit comments