Skip to content

Commit 4b89fce

Browse files
Fei GaoPengfei Li
Fei Gao
authored and
Pengfei Li
committedOct 28, 2022
8291781: assert(!is_visited) failed: visit only once with -XX:+SuperWordRTDepCheck
Reviewed-by: thartmann
1 parent d5d3424 commit 4b89fce

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -1113,10 +1113,11 @@ void SuperWord::dependence_graph() {
11131113
int cmp = p1.cmp(p2);
11141114
if (SuperWordRTDepCheck &&
11151115
p1.base() != p2.base() && p1.valid() && p2.valid()) {
1116-
// Create a runtime check to disambiguate
1116+
// Trace disjoint pointers
11171117
OrderedPair pp(p1.base(), p2.base());
11181118
_disjoint_ptrs.append_if_missing(pp);
1119-
} else if (!SWPointer::not_equal(cmp)) {
1119+
}
1120+
if (!SWPointer::not_equal(cmp)) {
11201121
// Possibly same address
11211122
_dg.make_edge(s1, s2);
11221123
sink_dependent = false;

‎test/hotspot/jtreg/compiler/c2/irTests/TestVectorizeTypeConversion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class TestVectorizeTypeConversion {
5151
private static float[] floatb = new float[SIZE];
5252

5353
public static void main(String[] args) {
54-
TestFramework.run();
54+
TestFramework.runWithFlags("-XX:+SuperWordRTDepCheck");
5555
}
5656

5757
@Test

0 commit comments

Comments
 (0)
Please sign in to comment.