Skip to content

Commit 4f99e1f

Browse files
committedJul 22, 2020
8248467: C2: compiler/intrinsics/object/TestClone fails with -XX:+VerifyGraphEdges
Fix assert by taking MemBarNodes into account whose precedence edge can be NULL. Reviewed-by: kvn, thartmann
1 parent 73c75ed commit 4f99e1f

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed
 

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -2141,8 +2141,9 @@ void Node::verify_edges(Unique_Node_List &visited) {
21412141
}
21422142
assert( cnt == 0,"Mismatched edge count.");
21432143
} else if (n == NULL) {
2144-
assert(i >= req() || i == 0 || is_Region() || is_Phi() || is_ArrayCopy()
2145-
|| (is_Unlock() && i == req()-1), "only region, phi, arraycopy or unlock nodes have null data edges");
2144+
assert(i >= req() || i == 0 || is_Region() || is_Phi() || is_ArrayCopy() || (is_Unlock() && i == req()-1)
2145+
|| (is_MemBar() && i == 5), // the precedence edge to a membar can be removed during macro node expansion
2146+
"only region, phi, arraycopy, unlock or membar nodes have null data edges");
21462147
} else {
21472148
assert(n->is_top(), "sanity");
21482149
// Nothing to check.

‎test/hotspot/jtreg/compiler/intrinsics/object/TestClone.java

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

2424
/*
2525
* @test
26-
* @bug 8033626 8246453
26+
* @bug 8033626 8246453 8248467
2727
* @summary assert(ex_map->jvms()->same_calls_as(_exceptions->jvms())) failed: all collected exceptions must come from the same place
2828
* @modules java.base/jdk.internal.misc
2929
* @library /test/lib
@@ -35,6 +35,10 @@
3535
* -XX:+IgnoreUnrecognizedVMOptions -XX:+StressReflectiveCode
3636
* -XX:CompileCommand=compileonly,compiler.intrinsics.object.TestClone::test*
3737
* compiler.intrinsics.object.TestClone
38+
* @run main/othervm -XX:-TieredCompilation -Xbatch
39+
* -XX:+IgnoreUnrecognizedVMOptions -XX:+StressReflectiveCode -XX:+VerifyGraphEdges
40+
* -XX:CompileCommand=compileonly,compiler.intrinsics.object.TestClone::test*
41+
* compiler.intrinsics.object.TestClone
3842
*/
3943

4044
package compiler.intrinsics.object;

0 commit comments

Comments
 (0)
Please sign in to comment.