-
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
8247514: Improve clhsdb 'findpc' ability to determine what an address points to by improving PointerFinder and PointerLocation classes #2111
Conversation
👋 Welcome back cjplummer! A progress list of the required criteria for merging this PR into |
@plummercj The following labels 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 lists. If you would like to change these labels, use the /label pull request command. |
Ping! |
Ping again. |
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.
LGTM
@plummercj 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 25 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 |
tty.format("In java stack [%s,%s,%s] for thread %s:\n ", | ||
stackThread.getStackBase(), stackThread.lastSPDbg(), | ||
stackThread.getStackBase().addOffsetTo(-stackThread.getStackSize()), | ||
stackThread); |
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.
When we print a JavaThread, in the verbose block,
the final argument to tty.format in line 247, I wonder what that prints?
We then call printThreadInfoOn() which will first print the quoted thread name,
so maybe we don't need that item.
Or maybe we want the JavaThread.toString()?
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.
stackThread.toString()
ends up in VMObject.toString()
:
public String toString() {
return getClass().getName() + "@" + addr;
}
And here's an example output:
hsdb> + findpc 0x0000152f45df6000
Address 0x0000152f45df6000: In java stack [0x0000152f45df8000,0x0000152f45df6580,0x0000152f45cf7000] for thread sun.jvm.hotspot.runtime.JavaThread@0x0000152f3c026f70:
"main" #1 prio=5 tid=0x0000152f3c026f70 nid=0x308e waiting on condition [0x0000152f45df6000]
java.lang.Thread.State: TIMED_WAITING (sleeping)
JavaThread state: _thread_blocked
So I think the stackThread
argument is doing what was intended, and there is no duplication in the output.
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.
Great, thanks.
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, thanks.
(Comment in PointerLocation.java, treat as you see fit.)
@plummercj this pull request can not be integrated into git checkout JDK-8247514
git fetch https://git.openjdk.java.net/jdk master
git merge FETCH_HEAD
# resolve conflicts and follow the instructions given by git merge
git commit -m "Merge master"
git push |
…utput due to CDS logging or -Xcheck:jni warnings.
@YaSuenag and @kevinjwalls I had to make a minor fix to the test. Can you please review it. The issued turned up when I ran some higher test tiers, one of which enabled CDS with some tracing and the other enabled |
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.
Yes, joy of text processing. Looks good.
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.
LGTM
We may be able to use regex to collect any addresses from jstack output, but I'm not sure it makes the test code simpler...
/integrate |
@plummercj Since your change was applied there have been 44 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit e29c560. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
See the bug for most details. A few notes here about some implementation details:
In the
PointerLocation
class, I added more consistency w.r.t. whether or not a newline is printed. It used to for some address types, but not others. Now it always does. And if you see a comment something like the following:getTLAB().printOn(tty); // includes "\n"
That's just clarifying whether or not the
printOn()
method called will include the newline. Some do and some don't, and knowing what the variousprintOn()
methods do makes getting the proper inclusion of the newline easier to understand.I added
verbose
andprintAddress
boolean arguments toPointerLocation.printOn()
. Currently they are alwaystrue
. The false arguments will be used when I complete JDK-8250801, which will usePointerFinder/Location
to show what each register points to.The CR mentions that the main motivation for this work is for eventual replacement of the old clhsdb
whatis
command, which was implemented in javascript. It used to resolve DSO symbols, whereasfindpc
did not. Thewhatis
code did this with the following:And now you'll see something similar in the PointerFinder code:
Note that now that
findpc
does everything thatwhatis
used to (and more), we don't really need to add a java version ofwhatis
, but I'll probably do so anyway just help out people who are used to using thewhatis
command. That will be done using JDK-8244670Progress
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jdk pull/2111/head:pull/2111
$ git checkout pull/2111