Skip to content

Commit e25121d

Browse files
committedOct 2, 2023
8316929: Shenandoah: Shenandoah degenerated GC and full GC need to cleanup old OopMapCache entries
Reviewed-by: shade
1 parent 5c8366e commit e25121d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

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

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include "gc/shenandoah/shenandoahOopClosures.inline.hpp"
3333
#include "gc/shenandoah/shenandoahUtils.hpp"
3434
#include "gc/shenandoah/shenandoahVMOperations.hpp"
35+
#include "interpreter/oopMapCache.hpp"
3536
#include "memory/universe.hpp"
3637

3738
bool VM_ShenandoahReferenceOperation::doit_prologue() {
@@ -40,6 +41,7 @@ bool VM_ShenandoahReferenceOperation::doit_prologue() {
4041
}
4142

4243
void VM_ShenandoahReferenceOperation::doit_epilogue() {
44+
OopMapCache::cleanup_old_entries();
4345
if (Universe::has_reference_pending_list()) {
4446
Heap_lock->notify_all();
4547
}

0 commit comments

Comments
 (0)
Please sign in to comment.