-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8315377: C2: assert(u->find_out_with(Op_AddP) == nullptr) failed: mor…
…e than 2 chained AddP nodes? Reviewed-by: chagedorn, kvn, thartmann
- Loading branch information
Showing
3 changed files
with
100 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
test/hotspot/jtreg/compiler/loopopts/TestSinkingMoreThan2AddPNodes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* Copyright (c) 2023, Red Hat, Inc. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
|
||
/** | ||
* @test | ||
* @bug 8315377 | ||
* @requires vm.compiler2.enabled | ||
* @summary C2: assert(u->find_out_with(Op_AddP) == nullptr) failed: more than 2 chained AddP nodes? | ||
* @library /test/lib | ||
* @run main/othervm -Xcomp -XX:-TieredCompilation -XX:CompileOnly=TestSinkingMoreThan2AddPNodes::test TestSinkingMoreThan2AddPNodes | ||
* | ||
*/ | ||
|
||
import jdk.test.lib.Utils; | ||
|
||
public class TestSinkingMoreThan2AddPNodes { | ||
public static void main(String[] strArr) throws Exception { | ||
Thread t = new Thread(new Runnable() { | ||
public void run() { | ||
test(); | ||
} | ||
}); | ||
t.setDaemon(true); | ||
t.start(); | ||
Thread.sleep(Utils.adjustTimeout(500)); | ||
} | ||
|
||
static void test() { | ||
double dArr[] = new double[10]; | ||
int i4 = 5, i11, i12 = 2, iArr[] = new int[400]; | ||
long l1; | ||
byte by1 = 0; | ||
short s1 = 8; | ||
|
||
for (int i = 0; i < iArr.length; i++) { | ||
iArr[i] = (i % 2 == 0) ? 23 : 34; | ||
} | ||
|
||
for (i11 = 10; i11 > 9; ) { | ||
l1 = 1; | ||
do { | ||
try { | ||
i4 = 6 % i4; | ||
i12 = iArr[(int) l1]; | ||
} catch (ArithmeticException a_e) { | ||
} | ||
by1 += 8; | ||
iArr = iArr; | ||
} while (++l1 < 11); | ||
} | ||
|
||
long meth_res = i12; | ||
} | ||
} | ||
|
ba1a463
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues
ba1a463
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/backport jdk21u
ba1a463
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@GoeLin the backport was successfully created on the branch GoeLin-backport-ba1a4639 in my personal fork of openjdk/jdk21u. To create a pull request with this backport targeting openjdk/jdk21u:master, just click the following link:
➡️ Create pull request
The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk21u: