@@ -187,6 +187,10 @@ public TestMergeStores() {
187
187
testGroups .put ("test600" , new HashMap <String ,TestFunction >());
188
188
testGroups .get ("test600" ).put ("test600R" , (_ ,i ) -> { return test600R (aB .clone (), aI .clone (), i ); });
189
189
testGroups .get ("test600" ).put ("test600a" , (_ ,i ) -> { return test600a (aB .clone (), aI .clone (), i ); });
190
+
191
+ testGroups .put ("test700" , new HashMap <String ,TestFunction >());
192
+ testGroups .get ("test700" ).put ("test700R" , (_ ,i ) -> { return test700R (aI .clone (), i ); });
193
+ testGroups .get ("test700" ).put ("test700a" , (_ ,i ) -> { return test700a (aI .clone (), i ); });
190
194
}
191
195
192
196
@ Warmup (100 )
@@ -220,7 +224,8 @@ public TestMergeStores() {
220
224
"test500a" ,
221
225
"test501a" ,
222
226
"test502a" ,
223
- "test600a" })
227
+ "test600a" ,
228
+ "test700a" })
224
229
public void runTests (RunInfo info ) {
225
230
// Repeat many times, so that we also have multiple iterations for post-warmup to potentially recompile
226
231
int iters = info .isWarmUp () ? 1_000 : 50_000 ;
@@ -1296,4 +1301,22 @@ static Object[] test600a(byte[] aB, int[] aI, int i) {
1296
1301
return new Object []{ aB , aI };
1297
1302
}
1298
1303
1304
+ @ DontCompile
1305
+ static Object [] test700R (int [] a , long v1 ) {
1306
+ a [0 ] = (int )(v1 >> -1 );
1307
+ a [1 ] = (int )(v1 >> -2 );
1308
+ return new Object []{ a };
1309
+ }
1310
+
1311
+ @ Test
1312
+ @ IR (counts = {IRNode .STORE_B_OF_CLASS , "int\\ \\ [int:>=0] \\ \\ (java/lang/Cloneable,java/io/Serializable\\ \\ )" , "0" ,
1313
+ IRNode .STORE_C_OF_CLASS , "int\\ \\ [int:>=0] \\ \\ (java/lang/Cloneable,java/io/Serializable\\ \\ )" , "0" ,
1314
+ IRNode .STORE_I_OF_CLASS , "int\\ \\ [int:>=0] \\ \\ (java/lang/Cloneable,java/io/Serializable\\ \\ )" , "2" ,
1315
+ IRNode .STORE_L_OF_CLASS , "int\\ \\ [int:>=0] \\ \\ (java/lang/Cloneable,java/io/Serializable\\ \\ )" , "0" })
1316
+ static Object [] test700a (int [] a , long v1 ) {
1317
+ // Negative shift: cannot optimize
1318
+ a [0 ] = (int )(v1 >> -1 );
1319
+ a [1 ] = (int )(v1 >> -2 );
1320
+ return new Object []{ a };
1321
+ }
1299
1322
}
0 commit comments