23
23
24
24
/*
25
25
* @test
26
+ * @bug 8183390 8332905
26
27
* @summary Vectorization test on bug-prone shift operation
27
28
* @library /test/lib /
28
29
*
48
49
public class ArrayShiftOpTest extends VectorizationTestRunner {
49
50
50
51
private static final int SIZE = 543 ;
52
+ private static int size = 543 ;
51
53
52
54
private int [] ints ;
53
55
private long [] longs ;
@@ -71,7 +73,7 @@ public ArrayShiftOpTest() {
71
73
}
72
74
73
75
@ Test
74
- @ IR (applyIfCPUFeatureOr = {"asimd" , "true" , "avx512f " , "true" },
76
+ @ IR (applyIfCPUFeatureOr = {"asimd" , "true" , "avx2 " , "true" },
75
77
counts = {IRNode .STORE_VECTOR , ">0" })
76
78
@ IR (applyIfCPUFeature = {"avx512f" , "true" },
77
79
counts = {IRNode .ROTATE_RIGHT_V , ">0" })
@@ -84,7 +86,23 @@ public int[] intCombinedRotateShift() {
84
86
}
85
87
86
88
@ 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" },
88
106
counts = {IRNode .STORE_VECTOR , ">0" })
89
107
@ IR (applyIfCPUFeature = {"avx512f" , "true" },
90
108
counts = {IRNode .ROTATE_RIGHT_V , ">0" })
1 commit comments
openjdk-notifier[bot] commentedon Jun 13, 2024
Review
Issues