comparison src/share/vm/memory/blockOffsetTable.hpp @ 14518:d8041d695d19

Merged with jdk9/dev/hotspot changeset 3812c088b945
author twisti
date Tue, 11 Mar 2014 18:45:59 -0700
parents 63a4eb8bcd23
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14141:f97c5ec83832 14518:d8041d695d19
422 public: 422 public:
423 BlockOffsetArrayNonContigSpace(BlockOffsetSharedArray* array, MemRegion mr): 423 BlockOffsetArrayNonContigSpace(BlockOffsetSharedArray* array, MemRegion mr):
424 BlockOffsetArray(array, mr, false), 424 BlockOffsetArray(array, mr, false),
425 _unallocated_block(_bottom) { } 425 _unallocated_block(_bottom) { }
426 426
427 // accessor 427 // Accessor
428 HeapWord* unallocated_block() const { 428 HeapWord* unallocated_block() const {
429 assert(BlockOffsetArrayUseUnallocatedBlock, 429 assert(BlockOffsetArrayUseUnallocatedBlock,
430 "_unallocated_block is not being maintained"); 430 "_unallocated_block is not being maintained");
431 return _unallocated_block; 431 return _unallocated_block;
432 } 432 }