Skip to content

Commit 684d246

Browse files
committedOct 1, 2024
8341242: Shenandoah: LRB node is not matched as GC barrier after JDK-8340183
Reviewed-by: rkennke, phh
1 parent 7cc7c08 commit 684d246

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/hotspot/share/gc/shenandoah/c2/shenandoahBarrierSetC2.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,8 @@ bool ShenandoahBarrierSetC2::is_gc_pre_barrier_node(Node* node) const {
682682
}
683683

684684
bool ShenandoahBarrierSetC2::is_gc_barrier_node(Node* node) const {
685-
return is_shenandoah_lrb_call(node) ||
685+
return (node->Opcode() == Op_ShenandoahLoadReferenceBarrier) ||
686+
is_shenandoah_lrb_call(node) ||
686687
is_shenandoah_wb_pre_call(node) ||
687688
is_shenandoah_clone_call(node);
688689
}

0 commit comments

Comments
 (0)
Please sign in to comment.