-
Notifications
You must be signed in to change notification settings - Fork 5.8k
8316342: CLHSDB "dumpclass" command produces invalid classes #15973
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
8316342: CLHSDB "dumpclass" command produces invalid classes #15973
Conversation
Signed-off-by: Ashutosh Mehra <asmehra@redhat.com>
Signed-off-by: Ashutosh Mehra <asmehra@redhat.com>
👋 Welcome back asmehra! A progress list of the required criteria for merging this PR into |
@ashu-mehra 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. |
@matias9927 and/or @coleenp Should have a look at this. |
cpoolIndex = getConstantPoolIndex(hotspotcode, bci + 1); | ||
case Bytecodes._invokedynamic: { | ||
int cpci = method.getNativeIntArg(bci + 1); | ||
cpoolIndex = (short) cpCache.getIndyEntryAt(~cpci).getConstantPoolIndex(); |
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.
Is this really suppose to be ~cpci
and not just cpci
?
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.
That's right. See
pool_index = mh->constants()->resolved_indy_entry_at(mh->constants()->decode_invokedynamic_index(cpci))->constant_pool_index(); |
jdk/src/hotspot/share/oops/constantPool.hpp
Line 256 in ecb5e8a
static int decode_invokedynamic_index(int i) { assert(is_invokedynamic_index(i), ""); return ~i; } |
I tend to use JvmtiClassFileReconstituter
as the reference for the code involved in dumping the classfile, and that makes things easier to follow and implement.
Ok. The changes look good to me, but I don't have much of understanding of the hotspot code involved here, so I'll defer to a hotspot expert for the 2nd review. |
@ashu-mehra 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 584 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.
Nice simplification.
This looks good.
Thanks,
Serguei
@ashu-mehra This pull request has been inactive for more than 4 weeks and will be automatically closed if another 4 weeks passes without any activity. To avoid this, simply add a new comment to the pull request. Feel free to ask for assistance if you need help with progressing this pull request towards integration! |
I am returning from a break. Thanks @plummercj @sspitsyn for reviewing the changes. |
/integrate |
Going to push as commit 7bb1999.
Your commit was automatically rebased without conflicts. |
@ashu-mehra Pushed as commit 7bb1999. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Please review this change to fix the operands of the bytecodes that operate on fields when dumping a class using SA.
Testing: hotspot_serviceability
I have also verified that
test/hotspot/jtreg/serviceability/sa/ClhsdbDumpclass.javaClhsdbDumpclass.java
, which is in the problem list because of this issue, passes with this change.I have also verified it by dumping the class that has getstatic/putstatic bytecodes and comparing the bytecodes manually with the original classfile.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/15973/head:pull/15973
$ git checkout pull/15973
Update a local copy of the PR:
$ git checkout pull/15973
$ git pull https://git.openjdk.org/jdk.git pull/15973/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 15973
View PR using the GUI difftool:
$ git pr show -t 15973
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/15973.diff
Webrev
Link to Webrev Comment