Skip to content

Commit 03facb9

Browse files
committedJun 13, 2024
8332905: C2 SuperWord: bad AD file, with RotateRightV and first operand not a pack
Backport-of: 67d6f3ca9e8d1312c9e3a85dbe19903619f59064
1 parent 4cd947b commit 03facb9

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2748,7 +2748,7 @@ bool SuperWord::output() {
27482748
}
27492749
vlen_in_bytes = vn->as_StoreVector()->memory_size();
27502750
} else if (VectorNode::is_scalar_rotate(n)) {
2751-
Node* in1 = first->in(1);
2751+
Node* in1 = vector_opd(p, 1);
27522752
Node* in2 = first->in(2);
27532753
// If rotation count is non-constant or greater than 8bit value create a vector.
27542754
if (!in2->is_Con() || !Matcher::supports_vector_constant_rotates(in2->get_int())) {

‎test/hotspot/jtreg/compiler/vectorization/runner/ArrayShiftOpTest.java

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

2424
/*
2525
* @test
26+
* @bug 8183390 8332905
2627
* @summary Vectorization test on bug-prone shift operation
2728
* @library /test/lib /
2829
*
@@ -48,6 +49,7 @@
4849
public class ArrayShiftOpTest extends VectorizationTestRunner {
4950

5051
private static final int SIZE = 543;
52+
private static int size = 543;
5153

5254
private int[] ints;
5355
private long[] longs;
@@ -71,7 +73,7 @@ public ArrayShiftOpTest() {
7173
}
7274

7375
@Test
74-
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx512f", "true"},
76+
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx2", "true"},
7577
counts = {IRNode.STORE_VECTOR, ">0"})
7678
@IR(applyIfCPUFeature = {"avx512f", "true"},
7779
counts = {IRNode.ROTATE_RIGHT_V, ">0"})
@@ -84,7 +86,23 @@ public int[] intCombinedRotateShift() {
8486
}
8587

8688
@Test
87-
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx512f", "true"},
89+
@IR(applyIfCPUFeatureOr = {"sve", "true", "avx2", "true"},
90+
counts = {IRNode.STORE_VECTOR, ">0"})
91+
@IR(applyIfCPUFeature = {"avx512f", "true"},
92+
counts = {IRNode.ROTATE_RIGHT_V, ">0"})
93+
// Requires size to not be known at compile time, otherwise the shift
94+
// can get constant folded with the (iv + const) pattern from the
95+
// PopulateIndex.
96+
public int[] intCombinedRotateShiftWithPopulateIndex() {
97+
int[] res = new int[size];
98+
for (int i = 0; i < size; i++) {
99+
res[i] = (i << 14) | (i >>> 18);
100+
}
101+
return res;
102+
}
103+
104+
@Test
105+
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx2", "true"},
88106
counts = {IRNode.STORE_VECTOR, ">0"})
89107
@IR(applyIfCPUFeature = {"avx512f", "true"},
90108
counts = {IRNode.ROTATE_RIGHT_V, ">0"})

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jun 13, 2024

@openjdk-notifier[bot]
Please sign in to comment.