Searched refs:chunk_boundary (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DparGCAllocBuffer.cpp314 // "chunk_boundary" is the address of the first chunk boundary less
316 HeapWord* chunk_boundary = local
318 assert(chunk_boundary < _hard_end, "Or else above did not work.");
319 assert(pointer_delta(_true_end, chunk_boundary) >= AlignmentReserve,
322 if (_top <= chunk_boundary) {
324 while (_top <= chunk_boundary) {
325 assert(pointer_delta(_hard_end, chunk_boundary) >= AlignmentReserve,
327 _bt.BlockOffsetArray::alloc_block(chunk_boundary, _hard_end);
328 CollectedHeap::fill_with_object(chunk_boundary, _hard_end);
329 _hard_end = chunk_boundary;
[all...]

Completed in 979 milliseconds