Skip to content

Commit 40174b8

Browse files
author
William Kemper
committedSep 10, 2021
Remove log message that could access an out of bounds region
Reviewed-by: kdnilsen
1 parent aa7ff7c commit 40174b8

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed
 

‎src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -1260,12 +1260,6 @@ class ShenandoahRetireGCLABClosure : public ThreadClosure {
12601260
// the update-refs processing that follows. After the updating of old-gen references is done, it is ok to carve
12611261
// this remnant object into smaller pieces during the subsequent evacuation pass, as long as the PLAB is made parsable
12621262
// again before the next update-refs phase.
1263-
if (plab->top() != nullptr) {
1264-
ShenandoahHeapRegion* r = ShenandoahHeap::heap()->heap_region_containing(plab->top());
1265-
log_debug(gc)("Retiring plab with top: " PTR_FORMAT ", hard_end: " PTR_FORMAT
1266-
" + AlignmentReserve, in %s Region " SIZE_FORMAT,
1267-
p2i(plab->top()), p2i(plab->top() + plab->words_remaining()), affiliation_name(r->affiliation()), r->index());
1268-
} // else, don't bother to report retirement
12691263
ShenandoahHeap::heap()->retire_plab(plab);
12701264
if (_resize && ShenandoahThreadLocalData::plab_size(thread) > 0) {
12711265
ShenandoahThreadLocalData::set_plab_size(thread, 0);

0 commit comments

Comments
 (0)
Please sign in to comment.