Skip to content

Commit

Permalink
8308103: Massive (up to ~30x) increase in C2 compilation time since J…
Browse files Browse the repository at this point in the history
…DK 17

Reviewed-by: kvn, thartmann, chagedorn
  • Loading branch information
rwestrel committed Jul 19, 2023
1 parent d33e8e6 commit c6ab9c2
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/hotspot/share/opto/loopopts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1696,7 +1696,13 @@ void PhaseIdealLoop::try_sink_out_of_loop(Node* n) {
cast = ConstraintCastNode::make_cast_for_type(x_ctrl, in, in_t, ConstraintCastNode::UnconditionalDependency);
}
if (cast != nullptr) {
register_new_node(cast, x_ctrl);
Node* prev = _igvn.hash_find_insert(cast);
if (prev != nullptr) {
cast->destruct(&_igvn);
cast = prev;
} else {
register_new_node(cast, x_ctrl);
}
x->replace_edge(in, cast);
// Chain of AddP:
// 2- A CastPP of the base is only added now that both AddP nodes are sunk
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/*
* 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 8308103
* @summary Massive (up to ~30x) increase in C2 compilation time since JDK 17
* @run main/othervm -Xcomp -XX:CompileOnly=TestSinkingNodesCausesLongCompilation::mainTest -XX:+UnlockDiagnosticVMOptions
* -XX:RepeatCompilation=30 TestSinkingNodesCausesLongCompilation
*/

public class TestSinkingNodesCausesLongCompilation {
public static final int N = 400;
public static int iFld=41489;

public void mainTest(String[] strArr1) {
int i9=-13, i10=-248, i11=-4, i13=33, i15=-171, i18=-58, iArr2[]=new int[N];

for (i9 = 7; i9 < 256; i9++) {
i11 = 1;
do {
} while (++i11 < 101);
}
for (int i14 : iArr2) {
for (i15 = 63; 0 < i15; i15 -= 2) {
i10 *= i13;
i10 >>= i14;
}
for (i18 = 2; 63 > i18; i18++) {
i10 = iFld;
iArr2[i18] |= i11;
}
}
System.out.println("i9 = " + i9);
}

public static void main(String[] strArr) {
TestSinkingNodesCausesLongCompilation _instance = new TestSinkingNodesCausesLongCompilation();
for (int i = 0; i < 10; i++) {
_instance.mainTest(strArr);
}
}
}

5 comments on commit c6ab9c2

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

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

@GoeLin
Copy link
Member

@GoeLin GoeLin commented on c6ab9c2 Sep 25, 2023

Choose a reason for hiding this comment

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

/backport jdk21u

@openjdk
Copy link

@openjdk openjdk bot commented on c6ab9c2 Sep 25, 2023

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-c6ab9c29 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:

Hi all,

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

The commit being backported was authored by Roland Westrelin on 19 Jul 2023 and was reviewed by Vladimir Kozlov, Tobias Hartmann 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:

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

@GoeLin
Copy link
Member

@GoeLin GoeLin commented on c6ab9c2 Oct 4, 2023

Choose a reason for hiding this comment

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

/backport jdk11u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on c6ab9c2 Oct 4, 2023

Choose a reason for hiding this comment

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

@GoeLin Could not automatically backport c6ab9c29 to openjdk/jdk11u-dev due to conflicts in the following files:

  • src/hotspot/share/opto/loopopts.cpp

Please fetch the appropriate branch/commit and manually resolve these conflicts by using the following commands in your personal fork of openjdk/jdk11u-dev. Note: these commands are just some suggestions and you can use other equivalent commands you know.

# Fetch the up-to-date version of the target branch
$ git fetch --no-tags https://git.openjdk.org/jdk11u-dev.git master:master

# Check out the target branch and create your own branch to backport
$ git checkout master
$ git checkout -b GoeLin-backport-c6ab9c29

# Fetch the commit you want to backport
$ git fetch --no-tags https://git.openjdk.org/jdk.git c6ab9c2905203e1ec897b3404f9179ff975d0054

# Backport the commit
$ git cherry-pick --no-commit c6ab9c2905203e1ec897b3404f9179ff975d0054
# Resolve conflicts now

# Commit the files you have modified
$ git add files/with/resolved/conflicts
$ git commit -m 'Backport c6ab9c2905203e1ec897b3404f9179ff975d0054'

Once you have resolved the conflicts as explained above continue with creating a pull request towards the openjdk/jdk11u-dev with the title Backport c6ab9c2905203e1ec897b3404f9179ff975d0054.

Please sign in to comment.