@@ -273,10 +273,6 @@ Arena::~Arena() {
273
273
274
274
// Destroy this arenas contents and reset to empty
275
275
void Arena::destruct_contents () {
276
- if (UseMallocOnly && _first != NULL ) {
277
- char * end = _first->next () ? _first->top () : _hwm;
278
- free_malloced_objects (_first, _first->bottom (), end, _hwm);
279
- }
280
276
// reset size before chop to avoid a rare racing condition
281
277
// that can have total arena memory exceed total chunk memory
282
278
set_size_in_bytes (0 );
@@ -342,19 +338,6 @@ void *Arena::Arealloc(void* old_ptr, size_t old_size, size_t new_size, AllocFail
342
338
assert (old_size == 0 , " sanity" );
343
339
return Amalloc (new_size, alloc_failmode); // as with realloc(3), a NULL old ptr is equivalent to malloc(3)
344
340
}
345
- #ifdef ASSERT
346
- if (UseMallocOnly) {
347
- // always allocate a new object (otherwise we'll free this one twice)
348
- char * copy = (char *)Amalloc (new_size, alloc_failmode);
349
- if (copy == NULL ) {
350
- return NULL ;
351
- }
352
- size_t n = MIN2 (old_size, new_size);
353
- if (n > 0 ) memcpy (copy, old_ptr, n);
354
- Afree (old_ptr,old_size); // Mostly done to keep stats accurate
355
- return copy;
356
- }
357
- #endif
358
341
char *c_old = (char *)old_ptr; // Handy name
359
342
// Stupid fast special case
360
343
if ( new_size <= old_size ) { // Shrink in-place
@@ -386,24 +369,6 @@ void *Arena::Arealloc(void* old_ptr, size_t old_size, size_t new_size, AllocFail
386
369
387
370
// Determine if pointer belongs to this Arena or not.
388
371
bool Arena::contains ( const void *ptr ) const {
389
- #ifdef ASSERT
390
- if (UseMallocOnly) {
391
- // really slow, but not easy to make fast
392
- if (_chunk == NULL ) return false ;
393
- char ** bottom = (char **)_chunk->bottom ();
394
- for (char ** p = (char **)_hwm - 1 ; p >= bottom; p--) {
395
- if (*p == ptr) return true ;
396
- }
397
- for (Chunk *c = _first; c != NULL ; c = c->next ()) {
398
- if (c == _chunk) continue ; // current chunk has been processed
399
- char ** bottom = (char **)c->bottom ();
400
- for (char ** p = (char **)c->top () - 1 ; p >= bottom; p--) {
401
- if (*p == ptr) return true ;
402
- }
403
- }
404
- return false ;
405
- }
406
- #endif
407
372
if ( (void *)_chunk->bottom () <= ptr && ptr < (void *)_hwm )
408
373
return true ; // Check for in this chunk
409
374
for (Chunk *c = _first; c; c = c->next ()) {
@@ -414,51 +379,3 @@ bool Arena::contains( const void *ptr ) const {
414
379
}
415
380
return false ; // Not in any Chunk, so not in Arena
416
381
}
417
-
418
-
419
- #ifdef ASSERT
420
- void * Arena::malloc (size_t size) {
421
- assert (UseMallocOnly, " shouldn't call" );
422
- // use malloc, but save pointer in res. area for later freeing
423
- char ** save = (char **)internal_amalloc (sizeof (char *));
424
- return (*save = (char *)os::malloc (size, mtChunk));
425
- }
426
- #endif
427
-
428
-
429
- // --------------------------------------------------------------------------------------
430
- // Non-product code
431
-
432
- #ifndef PRODUCT
433
-
434
- // debugging code
435
- inline void Arena::free_all (char ** start, char ** end) {
436
- for (char ** p = start; p < end; p++) if (*p) os::free (*p);
437
- }
438
-
439
- void Arena::free_malloced_objects (Chunk* chunk, char * hwm, char * max, char * hwm2) {
440
- assert (UseMallocOnly, " should not call" );
441
- // free all objects malloced since resource mark was created; resource area
442
- // contains their addresses
443
- if (chunk->next ()) {
444
- // this chunk is full, and some others too
445
- for (Chunk* c = chunk->next (); c != NULL ; c = c->next ()) {
446
- char * top = c->top ();
447
- if (c->next () == NULL ) {
448
- top = hwm2; // last junk is only used up to hwm2
449
- assert (c->contains (hwm2), " bad hwm2" );
450
- }
451
- free_all ((char **)c->bottom (), (char **)top);
452
- }
453
- assert (chunk->contains (hwm), " bad hwm" );
454
- assert (chunk->contains (max), " bad max" );
455
- free_all ((char **)hwm, (char **)max);
456
- } else {
457
- // this chunk was partially used
458
- assert (chunk->contains (hwm), " bad hwm" );
459
- assert (chunk->contains (hwm2), " bad hwm2" );
460
- free_all ((char **)hwm, (char **)hwm2);
461
- }
462
- }
463
-
464
- #endif // Non-product
0 commit comments