Skip to content

Commit e1b0af2

Browse files
committedMar 19, 2024
8323972: C2 compilation fails with assert(!x->as_Loop()->is_loop_nest_inner_loop()) failed: loop was transformed
Reviewed-by: chagedorn, epeter
1 parent c0fc956 commit e1b0af2

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-1
lines changed
 

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

+9-1
Original file line numberDiff line numberDiff line change
@@ -940,12 +940,20 @@ bool PhaseIdealLoop::create_loop_nest(IdealLoopTree* loop, Node_List &old_new) {
940940
// inner_iters_max may not fit in a signed integer (iterating from
941941
// Long.MIN_VALUE to Long.MAX_VALUE for instance). Use an unsigned
942942
// min.
943-
Node* inner_iters_actual = MaxNode::unsigned_min(inner_iters_max, inner_iters_limit, TypeInteger::make(0, iters_limit, Type::WidenMin, bt), _igvn);
943+
const TypeInteger* inner_iters_actual_range = TypeInteger::make(0, iters_limit, Type::WidenMin, bt);
944+
Node* inner_iters_actual = MaxNode::unsigned_min(inner_iters_max, inner_iters_limit, inner_iters_actual_range, _igvn);
944945

945946
Node* inner_iters_actual_int;
946947
if (bt == T_LONG) {
947948
inner_iters_actual_int = new ConvL2INode(inner_iters_actual);
948949
_igvn.register_new_node_with_optimizer(inner_iters_actual_int);
950+
// When the inner loop is transformed to a counted loop, a loop limit check is not expected to be needed because
951+
// the loop limit is less or equal to max_jint - stride - 1 (if stride is positive but a similar argument exists for
952+
// a negative stride). We add a CastII here to guarantee that, when the counted loop is created in a subsequent loop
953+
// opts pass, an accurate range of values for the limits is found.
954+
const TypeInt* inner_iters_actual_int_range = TypeInt::make(0, iters_limit, Type::WidenMin);
955+
inner_iters_actual_int = new CastIINode(outer_head, inner_iters_actual_int, inner_iters_actual_int_range, ConstraintCastNode::UnconditionalDependency);
956+
_igvn.register_new_node_with_optimizer(inner_iters_actual_int);
949957
} else {
950958
inner_iters_actual_int = inner_iters_actual;
951959
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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+
* @test
26+
* @bug 8323972
27+
* @summary C2 compilation fails with assert(!x->as_Loop()->is_loop_nest_inner_loop()) failed: loop was transformed
28+
*
29+
* @run main/othervm -Xcomp -XX:CompileCommand=compileonly,TestInaccurateInnerLoopLimit::test* -XX:-TieredCompilation TestInaccurateInnerLoopLimit
30+
*
31+
*/
32+
33+
public class TestInaccurateInnerLoopLimit {
34+
35+
public static void main(String args[]) {
36+
test();
37+
}
38+
39+
public static void test() {
40+
for (long i = 9223372034707292164L; i > 9223372034707292158L; i += -2L) { }
41+
}
42+
}

0 commit comments

Comments
 (0)
Please sign in to comment.