Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8332905: C2 SuperWord: bad AD file, with RotateRightV and first operand not a pack #707

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/superword.cpp
Original file line number Diff line number Diff line change
@@ -2748,7 +2748,7 @@ bool SuperWord::output() {
}
vlen_in_bytes = vn->as_StoreVector()->memory_size();
} else if (VectorNode::is_scalar_rotate(n)) {
Node* in1 = first->in(1);
Node* in1 = vector_opd(p, 1);
Node* in2 = first->in(2);
// If rotation count is non-constant or greater than 8bit value create a vector.
if (!in2->is_Con() || !Matcher::supports_vector_constant_rotates(in2->get_int())) {
Original file line number Diff line number Diff line change
@@ -23,6 +23,7 @@

/*
* @test
* @bug 8183390 8332905
* @summary Vectorization test on bug-prone shift operation
* @library /test/lib /
*
@@ -48,6 +49,7 @@
public class ArrayShiftOpTest extends VectorizationTestRunner {

private static final int SIZE = 543;
private static int size = 543;

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

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

@Test
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx512f", "true"},
@IR(applyIfCPUFeatureOr = {"sve", "true", "avx2", "true"},
counts = {IRNode.STORE_VECTOR, ">0"})
@IR(applyIfCPUFeature = {"avx512f", "true"},
counts = {IRNode.ROTATE_RIGHT_V, ">0"})
// Requires size to not be known at compile time, otherwise the shift
// can get constant folded with the (iv + const) pattern from the
// PopulateIndex.
public int[] intCombinedRotateShiftWithPopulateIndex() {
int[] res = new int[size];
for (int i = 0; i < size; i++) {
res[i] = (i << 14) | (i >>> 18);
}
return res;
}

@Test
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx2", "true"},
counts = {IRNode.STORE_VECTOR, ">0"})
@IR(applyIfCPUFeature = {"avx512f", "true"},
counts = {IRNode.ROTATE_RIGHT_V, ">0"})