Skip to content

Commit 7c83d7a

Browse files
committedJun 3, 2024
8333366: C2: CmpU3Nodes are not pushed back to worklist in PhaseCCP leading to non-fixpoint assertion failure
Reviewed-by: kvn, thartmann
1 parent 75220da commit 7c83d7a

File tree

2 files changed

+53
-2
lines changed

2 files changed

+53
-2
lines changed
 

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -1921,8 +1921,9 @@ void PhaseCCP::push_cmpu(Unique_Node_List& worklist, const Node* use) const {
19211921
if (use_op == Op_AddI || use_op == Op_SubI) {
19221922
for (DUIterator_Fast imax, i = use->fast_outs(imax); i < imax; i++) {
19231923
Node* cmpu = use->fast_out(i);
1924-
if (cmpu->Opcode() == Op_CmpU) {
1925-
// Got a CmpU which might need the new type information from node n.
1924+
const uint cmpu_opcode = cmpu->Opcode();
1925+
if (cmpu_opcode == Op_CmpU || cmpu_opcode == Op_CmpU3) {
1926+
// Got a CmpU or CmpU3 which might need the new type information from node n.
19261927
push_if_not_bottom_type(worklist, cmpu);
19271928
}
19281929
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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 8333366
27+
* @summary Test that CmpU3Nodes are pushed back to the CCP worklist such that the type can be re-evaluated.
28+
* @run main/othervm -Xbatch -XX:CompileCommand=compileonly,*TestPushCmpU3Node::test
29+
* compiler.ccp.TestPushCmpU3Node
30+
*/
31+
32+
package compiler.ccp;
33+
34+
import static java.lang.Integer.*;
35+
36+
public class TestPushCmpU3Node {
37+
public static void main(String[] args) {
38+
for (int i = 0; i < 10_000; ++i) {
39+
test();
40+
}
41+
}
42+
43+
public static void test() {
44+
for (int i = MAX_VALUE - 50_000; compareUnsigned(i, -1) < 0; ++i) {
45+
if (compareUnsigned(MIN_VALUE, i) < 0) {
46+
return;
47+
}
48+
}
49+
}
50+
}

0 commit comments

Comments
 (0)
Please sign in to comment.