Skip to content

Commit

Permalink
8316361: C2: assert(!failure) failed: Missed optimization opportunity…
Browse files Browse the repository at this point in the history
… in PhaseIterGVN with -XX:VerifyIterativeGVN=10

Reviewed-by: kvn, chagedorn
  • Loading branch information
eme64 committed Oct 2, 2023
1 parent 6948942 commit eeb63cd
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/hotspot/share/opto/loopTransform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2285,6 +2285,8 @@ void PhaseIdealLoop::do_unroll(IdealLoopTree *loop, Node_List &old_new, bool adj
// can edit it's inputs directly. Hammer in the new limit for the
// minimum-trip guard.
assert(opaq->outcnt() == 1, "");
// Notify limit -> opaq -> CmpI, it may constant fold.
_igvn.add_users_to_worklist(opaq->in(1));
_igvn.replace_input_of(opaq, 1, new_limit);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
* Copyright (c) 2023, Oracle and/or its affiliates. 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 8316361
* @summary Test that if input to OpaqueZeroTripGuard changes, we notify down to CmpI.
* @run main/othervm -Xcomp -XX:+IgnoreUnrecognizedVMOptions -XX:VerifyIterativeGVN=10
* -XX:CompileCommand=compileonly,compiler.loopopts.TestNotifyOpaqueZeroTripGuardToCmpI::test
* compiler.loopopts.TestNotifyOpaqueZeroTripGuardToCmpI
*/
package compiler.loopopts;

public class TestNotifyOpaqueZeroTripGuardToCmpI {
static int x, y;

public static void main(String[] strArr) {
test();
}

static void test() {
for (int i = 6; i < 43; i++) {
for (int j = i; j < 11; j++) {
x = y;
}
}
}
}

3 comments on commit eeb63cd

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

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

@MBaesken
Copy link
Member

Choose a reason for hiding this comment

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

/backport jdk21u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on eeb63cd Jul 4, 2024

Choose a reason for hiding this comment

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

@MBaesken the backport was successfully created on the branch backport-MBaesken-eeb63cd0-master in my personal fork of openjdk/jdk21u-dev. To create a pull request with this backport targeting openjdk/jdk21u-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 eeb63cd0 from the openjdk/jdk repository.

The commit being backported was authored by Emanuel Peter on 2 Oct 2023 and was reviewed by Vladimir Kozlov and Christian Hagedorn.

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

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

Please sign in to comment.