< prev index next >

src/share/vm/gc/g1/g1Allocator.cpp

Print this page
rev 8849 : imported patch 8003237-no-wait-for-free-list
rev 8850 : imported patch jon-fast-evac-failure
rev 8851 : imported patch bengt-jon-more-naming
rev 8854 : imported patch 8073013-add-detailed-information-about-plab-memory-usage
rev 8855 : imported patch jon-review-statistics
rev 8866 : imported patch 8067339-PLAB-reallocation-might-result-in-failure-to-allocate
rev 8867 : [mq]: bengt-refactoring

*** 230,240 **** HeapWord* G1PLABAllocator::allocate_direct_or_new_plab(InCSetState dest, size_t word_sz, AllocationContext_t context, bool* plab_refill_failed) { size_t plab_word_size = G1CollectedHeap::heap()->desired_plab_sz(dest); ! size_t required_in_plab = word_sz + PLAB::alignment_reserve(); // Only get a new PLAB if the allocation fits and it would not waste more than // ParallelGCBufferWastePct in the existing buffer. if ((required_in_plab <= plab_word_size) && may_throw_away_buffer(required_in_plab, plab_word_size)) { --- 230,240 ---- HeapWord* G1PLABAllocator::allocate_direct_or_new_plab(InCSetState dest, size_t word_sz, AllocationContext_t context, bool* plab_refill_failed) { size_t plab_word_size = G1CollectedHeap::heap()->desired_plab_sz(dest); ! size_t required_in_plab = PLAB::size_required_for_allocation(word_sz); // Only get a new PLAB if the allocation fits and it would not waste more than // ParallelGCBufferWastePct in the existing buffer. if ((required_in_plab <= plab_word_size) && may_throw_away_buffer(required_in_plab, plab_word_size)) {
*** 243,259 **** alloc_buf->retire(); HeapWord* buf = _allocator->par_allocate_during_gc(dest, plab_word_size, context); if (buf != NULL) { // Otherwise. ! alloc_buf->set_word_size(plab_word_size); ! alloc_buf->set_buf(buf); HeapWord* const obj = alloc_buf->allocate(word_sz); assert(obj != NULL, err_msg("PLAB should have been big enough, tried to allocate " ! SIZE_FORMAT " with alignment reserve " SIZE_FORMAT " PLAB size " SIZE_FORMAT, ! word_sz, PLAB::alignment_reserve(), plab_word_size)); return obj; } // Otherwise. *plab_refill_failed = true; } --- 243,258 ---- alloc_buf->retire(); HeapWord* buf = _allocator->par_allocate_during_gc(dest, plab_word_size, context); if (buf != NULL) { // Otherwise. ! alloc_buf->set_buf(buf, plab_word_size); HeapWord* const obj = alloc_buf->allocate(word_sz); assert(obj != NULL, err_msg("PLAB should have been big enough, tried to allocate " ! SIZE_FORMAT " requiring " SIZE_FORMAT " PLAB size " SIZE_FORMAT, ! word_sz, required_in_plab, plab_word_size)); return obj; } // Otherwise. *plab_refill_failed = true; }
< prev index next >