-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8314452: Explicitly indicate inlining success/failure in PrintInlining #15315
Conversation
👋 Welcome back jvernee! A progress list of the required criteria for merging this PR into |
@JornVernee The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
The idea looks interesting, but I am not a fan of |
Yes... I wanted something that is easy to grep/crtrl+f for. Another option would be to add another column to the left of the inlining messages, similar to the one we have for ex handler/synchronize/has monitors. Then it's possible to search for just -/+, but I'm not sure if the rest of the message doesn't contain a |
Why not simply add a "failed to inline:" message? Something like:
|
+1 to this. |
I also feel explicit message 'fail to inline' is better than +/- Sigil here is essentially the value of a tree node. '+' denotes inline succeed. The problem is it increases the cognitive loads for java developers. I think we can establish a general rule: a failed inline emits a message starting with "fail to inline". reason is optional. Everything else are successful inlines. I think we still meet your goal: easily distinct inline or not inline method. |
Coming back to this after vacation. I'll switch to "failed to inline: " if that's what people prefer. |
Switched the message. Example:
grep:
|
I like new output. But it affects few tests - see failures in testing in GitHubtesting:
|
I suggest to fix affected tests. |
@vnkozlov Thanks, I'll take a look. |
I've fixed the two failing tests locally. I'm going to run a new tier 1-4 job as well |
@@ -128,7 +128,7 @@ static void testIndy() throws IOException { | |||
analyzer.shouldNotMatch("java\\.lang\\.invoke\\..+::linkToTargetMethod \\(9 bytes\\) not inlineable"); |
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.
This needs failed to inline:
too, right? Maybe we want to sweep tests for the common inlining failure messages and put failed to inline:
in relevant tests.
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.
This needs failed to inline: too, right?
Hmm right, there are probably some tests looking for inlining failures that are now trivially passing, since the inlining message changed.
Maybe we want to sweep tests for the common inlining failure messages and put failed to inline: in relevant tests.
Okay, I'll have another look.
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.
I did a sweep through the hotspot code to try and find all inlining failure messages. Then I looked through ./test/hotspot/jtreg/compiler
for these messages, to see if any test was referencing them. I did find a few and fixed them. I also found one (TestConflictInlineCommands
) that looked for a failure message alone. I've left that one as is, since I think it still works as intended.
I looked for all of the following strings:
not inlineable
no static binding
disallowed by ciReplay
unloaded signature classes
inlining too deep
disallowed by CompileCommand
virtual call
many throws
already compiled into a medium method
hot method too big
too big
don't inline by annotation
native method
abstract method
cannot be parsed
intrinsic method inlining disabled
inlining prohibited by policy
callee has exception handlers
callee is synchronized
callee's klass not linked yet
callee's klass not initialized yet
callee's monitors do not match
jsrs not handled properly by inliner yet
mdo allocation failed
receiver is always null
MaxForceInlineLevel
recursive inlining too deep
callee is too large
callee uses too much stack
don't inline Throwable constructors
total inlining greater than DesiredMethodLimit
signatures mismatch
not static or statically bindable
receiver not constant
MemberName not constant
native call
method holder not initialized
method changes current thread
already compiled into a big method
exception method
never executed
low call site frequency
size > DesiredMethodLimit
NodeCountInliningCutoff
call site not reached
not an accessor
failed initial checks
too cold to inline
failed to generate predicate for intrinsic
method not annotated
failed to inline (intrinsic, virtual)
failed to inline (intrinsic)
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.
Looks good. Thank you for finding and fixing affected tests.
@JornVernee This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 32 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
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.
Looks good to me.
But I would probably call the new enum InliningResult
, rather than InliningKind
. "Kind" kinda implies the method of achieving inline, not the end result of it.
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.
Looks good to me.
I like this suggestion, and have applied it: 855550a I did some local testing of the flag, and ran P.S. wait, more changes are needed than just the rename of the enum. |
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.
Looks good!
That should do it. I'll wait a bit before integrating in case there are any more comments for the last few commits. |
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.
I agree with renaming.
/integrate |
Going to push as commit 68f6941.
Your commit was automatically rebased without conflicts. |
@JornVernee Pushed as commit 68f6941. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
This patch proposes to add a
+
or-
to messages produced byPrintInlining
, to indicate whether inlining succeeded or failed. This makes it easier to find inlining failures in an inlining trace, without having to rely on the message to figure out whether inlining succeeded or failed. Looking at inlining failures is often useful for diagnosing the results of benchmarks, but it can be hard to find inlining failures in lengthy traces.A sample of what this looks like:
Using
grep
/sls
to find inlining failures:Note on the implementation: I opted for an enum to indicate inlining success/failure. I was using
bool
first, but ran into issues in some cases because the 'message' pointer was being implicitly converted tobool
, and since the message itself is optional (nullptr
by default) this didn't result in compilation errors, but silently omitted the inlining message instead. Using an enum avoids that issue. It also makes the call site a little easier to read, since there are no moretrue
andfalse
literals.Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/15315/head:pull/15315
$ git checkout pull/15315
Update a local copy of the PR:
$ git checkout pull/15315
$ git pull https://git.openjdk.org/jdk.git pull/15315/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 15315
View PR using the GUI difftool:
$ git pr show -t 15315
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/15315.diff
Webrev
Link to Webrev Comment