Skip to content

Commit

Permalink
8275854: C2: assert(stride_con != 0) failed: missed some peephole opt
Browse files Browse the repository at this point in the history
Co-authored-by: Roland Westrelin <roland@openjdk.org>
Reviewed-by: thartmann, roland, kvn
  • Loading branch information
2 people authored and Hui Shi committed Nov 11, 2021
1 parent 9862cd0 commit aea0967
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/hotspot/share/opto/ifnode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1721,6 +1721,16 @@ Node* IfProjNode::Identity(PhaseGVN* phase) {
// will cause this node to be reprocessed once the dead branch is killed.
in(0)->outcnt() == 1))) {
// IfNode control
if (in(0)->is_BaseCountedLoopEnd()) {
// CountedLoopEndNode may be eliminated by if subsuming, replace CountedLoopNode with LoopNode to
// avoid mismatching between CountedLoopNode and CountedLoopEndNode in the following optimization.
Node* head = unique_ctrl_out();
if (head != NULL && head->is_BaseCountedLoop() && head->in(LoopNode::LoopBackControl) == this) {
Node* new_head = new LoopNode(head->in(LoopNode::EntryControl), this);
phase->is_IterGVN()->register_new_node_with_optimizer(new_head);
phase->is_IterGVN()->replace_node(head, new_head);
}
}
return in(0)->in(0);
}
// no progress
Expand Down
93 changes: 93 additions & 0 deletions test/hotspot/jtreg/compiler/loopopts/TestLoopEndNodeEliminate.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
/*
* Copyright (C) 2021 THL A29 Limited, a Tencent company. 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 8275854
* @summary Crashes in PhaseIdealLoop::transform_long_counted_loop
* @requires vm.compiler2.enabled
*
* @run main/othervm -Xbatch -XX:CompileCommand=compileonly,TestLoopEndNodeEliminate::lMeth TestLoopEndNodeEliminate
*
*/

public class TestLoopEndNodeEliminate {
public volatile boolean bFld=true;
public volatile byte byFld=0;
public volatile short sArrFld[]=new short[N];
public int iArrFld[]=new int[N];
public boolean bArrFld[]=new boolean[N];

public static int iFld=10;
public static final int N = 400;
public static long instanceCount=0L;
public static long lMeth_check_sum = 0;

public long lMeth() {
long l1=-33582180L;
int i14=-5, i15=-14, i16=0, i17=25699, i18=97, i19=-3, i20=0, i21=0, i22=42, i23=0, i24=25699, i25=97;

for (l1 = 286; l1 > 16; l1 -= 3) {
for (i15 = 17; i15 > l1; --i15) {
switch (((iArrFld[i15] >>> 1) % 7) + 101) {
case 101:
case 102:
case 103:
case 104:
for (i17 = (int)(l1); i17 < 1; i17++) {
bArrFld[i17] = bFld;
}
break;
case 105:
case 106:
case 107:
}
}
for (i19 = 1; i19 < 270; ++i19) {
TestLoopEndNodeEliminate.iFld += byFld;
i21 = 1;
while (++i21 < 2) {
bFld = true;
}
for (i22 = 1; 2 > i22; ++i22) {
bFld = true;
}
for (i24 = 1; 2 > i24; ++i24) {
bFld = true;
}
bArrFld[(int)(l1) % N] = bFld;
sArrFld[i19 - 1] ^= (short)(++TestLoopEndNodeEliminate.instanceCount);
}
}
long meth_res = l1 + i14 + i15 + i16 + i17 + i18 + i19 + i20 + i21 + i22 + i23 + i24 + i25;
lMeth_check_sum += meth_res;
return (long)meth_res;
}

public static void main(String[] strArr) {
TestLoopEndNodeEliminate _instance = new TestLoopEndNodeEliminate();
for (int i = 0; i < 10000; i++ ) {
_instance.lMeth();
}
}
}

3 comments on commit aea0967

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TheRealMDoerr
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/backport jdk17u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on aea0967 Mar 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TheRealMDoerr the backport was successfully created on the branch TheRealMDoerr-backport-aea09677 in my personal fork of openjdk/jdk17u-dev. To create a pull request with this backport targeting openjdk/jdk17u-dev: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:

Hi all,

This pull request contains a backport of commit aea09677 from the openjdk/jdk repository.

The commit being backported was authored by casparcwang on 11 Nov 2021 and was reviewed by Tobias Hartmann, Roland Westrelin and Vladimir Kozlov.

Thanks!

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/jdk17u-dev:

$ git fetch https://github.com/openjdk-bots/jdk17u-dev TheRealMDoerr-backport-aea09677:TheRealMDoerr-backport-aea09677
$ git checkout TheRealMDoerr-backport-aea09677
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk17u-dev TheRealMDoerr-backport-aea09677

Please sign in to comment.