Skip to content

Commit 3d11692

Browse files
committedApr 30, 2024
8331252: C2: MergeStores: handle negative shift values
Reviewed-by: kvn, shade
1 parent 9ce21d1 commit 3d11692

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed
 

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -3108,8 +3108,8 @@ bool MergePrimitiveArrayStores::is_con_RShift(const Node* n, Node const*& base_o
31083108
n->in(2)->is_ConI()) {
31093109
base_out = n->in(1);
31103110
shift_out = n->in(2)->get_int();
3111-
assert(shift_out >= 0, "must be positive");
3112-
return true;
3111+
// The shift must be positive:
3112+
return shift_out >= 0;
31133113
}
31143114
return false;
31153115
}

‎test/hotspot/jtreg/compiler/c2/TestMergeStores.java

+24-1
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,10 @@ public TestMergeStores() {
187187
testGroups.put("test600", new HashMap<String,TestFunction>());
188188
testGroups.get("test600").put("test600R", (_,i) -> { return test600R(aB.clone(), aI.clone(), i); });
189189
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); });
190194
}
191195

192196
@Warmup(100)
@@ -220,7 +224,8 @@ public TestMergeStores() {
220224
"test500a",
221225
"test501a",
222226
"test502a",
223-
"test600a"})
227+
"test600a",
228+
"test700a"})
224229
public void runTests(RunInfo info) {
225230
// Repeat many times, so that we also have multiple iterations for post-warmup to potentially recompile
226231
int iters = info.isWarmUp() ? 1_000 : 50_000;
@@ -1296,4 +1301,22 @@ static Object[] test600a(byte[] aB, int[] aI, int i) {
12961301
return new Object[]{ aB, aI };
12971302
}
12981303

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+
}
12991322
}

0 commit comments

Comments
 (0)
Please sign in to comment.