Skip to content

Commit a6cf325

Browse files
committedJul 7, 2020
8248226: TestCloneAccessStressGCM fails with -XX:-ReduceBulkZeroing
Taking GC barriers into account in LoadNode::find_previous_arraycopy() when ReduceInitialCardMarks is disabled. Reviewed-by: kvn, roland
1 parent 584e983 commit a6cf325

File tree

4 files changed

+35
-8
lines changed

4 files changed

+35
-8
lines changed
 

‎src/hotspot/share/opto/memnode.cpp

+18-5
Original file line numberDiff line numberDiff line change
@@ -532,11 +532,24 @@ bool MemNode::detect_ptr_independence(Node* p1, AllocateNode* a1,
532532
Node* LoadNode::find_previous_arraycopy(PhaseTransform* phase, Node* ld_alloc, Node*& mem, bool can_see_stored_value) const {
533533
if (mem->is_Proj() && mem->in(0) != NULL && (mem->in(0)->Opcode() == Op_MemBarStoreStore ||
534534
mem->in(0)->Opcode() == Op_MemBarCPUOrder)) {
535-
Node* mb = mem->in(0);
536-
if (mb->in(0) != NULL && mb->in(0)->is_Proj() &&
537-
mb->in(0)->in(0) != NULL && mb->in(0)->in(0)->is_ArrayCopy()) {
538-
ArrayCopyNode* ac = mb->in(0)->in(0)->as_ArrayCopy();
539-
if (ac->is_clonebasic()) {
535+
if (ld_alloc != NULL) {
536+
// Check if there is an array copy for a clone
537+
Node* mb = mem->in(0);
538+
ArrayCopyNode* ac = NULL;
539+
if (mb->in(0) != NULL && mb->in(0)->is_Proj() &&
540+
mb->in(0)->in(0) != NULL && mb->in(0)->in(0)->is_ArrayCopy()) {
541+
ac = mb->in(0)->in(0)->as_ArrayCopy();
542+
} else {
543+
// Step over GC barrier when ReduceInitialCardMarks is disabled
544+
BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
545+
Node* control_proj_ac = bs->step_over_gc_barrier(mb->in(0));
546+
547+
if (control_proj_ac->is_Proj() && control_proj_ac->in(0)->is_ArrayCopy()) {
548+
ac = control_proj_ac->in(0)->as_ArrayCopy();
549+
}
550+
}
551+
552+
if (ac != NULL && ac->is_clonebasic()) {
540553
AllocateNode* alloc = AllocateNode::Ideal_allocation(ac->in(ArrayCopyNode::Dest), phase);
541554
if (alloc != NULL && alloc == ld_alloc) {
542555
return ac;

‎test/hotspot/jtreg/compiler/arraycopy/TestCloneAccessStressGCM.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,19 @@
2323

2424
/*
2525
* @test
26-
* @bug 8235332
26+
* @bug 8235332 8248226
2727
* @summary Test cloning with more than 8 (=ArrayCopyLoadStoreMaxElem) fields with StressGCM
2828
* @library /
2929
*
3030
* @run main/othervm -Xbatch
3131
* -XX:CompileCommand=dontinline,compiler.arraycopy.TestCloneAccessStressGCM::test
3232
* -XX:+UnlockDiagnosticVMOptions -XX:+StressGCM -XX:-ReduceInitialCardMarks
3333
* compiler.arraycopy.TestCloneAccessStressGCM
34+
* @run main/othervm -Xbatch
35+
* -XX:CompileCommand=dontinline,compiler.arraycopy.TestCloneAccessStressGCM::test
36+
* -XX:+UnlockDiagnosticVMOptions -XX:+StressGCM -XX:-ReduceInitialCardMarks
37+
* -XX:-ReduceBulkZeroing
38+
* compiler.arraycopy.TestCloneAccessStressGCM
3439
*/
3540

3641
package compiler.arraycopy;

‎test/hotspot/jtreg/compiler/arraycopy/TestEliminateArrayCopy.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 8076188 8246153
26+
* @bug 8076188 8246153 8248226
2727
* @summary arraycopy to non escaping destination may be eliminated
2828
* @library /
2929
*
@@ -34,6 +34,11 @@
3434
* -XX:+IgnoreUnrecognizedVMOptions -XX:+StressReflectiveCode
3535
* -XX:CompileCommand=dontinline,compiler.arraycopy.TestEliminateArrayCopy*::m*
3636
* compiler.arraycopy.TestEliminateArrayCopy
37+
* @run main/othervm -ea -XX:-BackgroundCompilation -XX:-UseOnStackReplacement
38+
* -XX:+IgnoreUnrecognizedVMOptions -XX:+StressReflectiveCode
39+
* -XX:-ReduceInitialCardMarks -XX:-ReduceBulkZeroing
40+
* -XX:CompileCommand=dontinline,compiler.arraycopy.TestEliminateArrayCopy*::m*
41+
* compiler.arraycopy.TestEliminateArrayCopy
3742
*/
3843

3944
package compiler.arraycopy;

‎test/hotspot/jtreg/compiler/arraycopy/TestInstanceCloneAsLoadsStores.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 6700100 8156760
26+
* @bug 6700100 8156760 8248226
2727
* @summary small instance clone as loads/stores
2828
* @library /
2929
*
@@ -38,6 +38,10 @@
3838
* -XX:CompileCommand=dontinline,compiler.arraycopy.TestInstanceCloneAsLoadsStores::m*
3939
* -XX:+IgnoreUnrecognizedVMOptions -XX:-ReduceInitialCardMarks
4040
* compiler.arraycopy.TestInstanceCloneAsLoadsStores
41+
* @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement
42+
* -XX:CompileCommand=dontinline,compiler.arraycopy.TestInstanceCloneAsLoadsStores::m*
43+
* -XX:+IgnoreUnrecognizedVMOptions -XX:-ReduceInitialCardMarks -XX:-ReduceBulkZeroing
44+
* compiler.arraycopy.TestInstanceCloneAsLoadsStores
4145
*/
4246

4347
package compiler.arraycopy;

0 commit comments

Comments
 (0)
Please sign in to comment.