Skip to content

Commit 64bbae7

Browse files
committedJun 4, 2024
8333394: C2: assert(bol->is_Opaque4() || bol->is_OpaqueInitializedAssertionPredicate()) failed: Opaque node of non-null-check or of Initialized Assertion Predicate
Reviewed-by: thartmann, roland
1 parent c7495fb commit 64bbae7

File tree

2 files changed

+61
-3
lines changed

2 files changed

+61
-3
lines changed
 

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

+5-3
Original file line numberDiff line numberDiff line change
@@ -1200,9 +1200,11 @@ bool IdealLoopTree::policy_range_check(PhaseIdealLoop* phase, bool provisional,
12001200
iff->Opcode() == Op_RangeCheck) { // Test?
12011201

12021202
// Comparing trip+off vs limit
1203-
Node *bol = iff->in(1);
1204-
if (bol->req() < 2) {
1205-
continue; // dead constant test
1203+
Node* bol = iff->in(1);
1204+
if (bol->req() != 2) {
1205+
// Could be a dead constant test or another dead variant (e.g. a Phi with 2 inputs created with split_thru_phi).
1206+
// Either way, skip this test.
1207+
continue;
12061208
}
12071209
if (!bol->is_Bool()) {
12081210
assert(bol->is_Opaque4() || bol->is_OpaqueInitializedAssertionPredicate(),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
/*
2+
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*
23+
*/
24+
25+
/*
26+
* @test
27+
* @bug 8333394
28+
* @summary Test bailout of range check policy with an If with a Phi as condition.
29+
* @run main/othervm -XX:CompileCommand=compileonly,*TestIfWithPhiInput*::* -Xcomp -XX:-TieredCompilation
30+
* compiler.predicates.assertion.TestIfWithPhiInput
31+
*/
32+
33+
package compiler.predicates.assertion;
34+
35+
public class TestIfWithPhiInput {
36+
static int x;
37+
static int y;
38+
39+
public static void main(String[] strArr) {
40+
test();
41+
}
42+
43+
static int test() {
44+
int i = 1;
45+
do {
46+
try {
47+
y = y / y;
48+
} catch (ArithmeticException a_e) {
49+
}
50+
for (int j = i; j < 6; j++) {
51+
y = i;
52+
}
53+
} while (++i < 52);
54+
return x;
55+
}
56+
}

0 commit comments

Comments
 (0)
Please sign in to comment.