-
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
8311085: Remove implementation detail writeTo from LocalVariable(Type) #14705
Conversation
👋 Welcome back liach! A progress list of the required criteria for merging this PR into |
Webrevs
|
b.writeU2(length); | ||
b.writeIndex(l.name()); | ||
b.writeIndex(l.type()); | ||
b.writeU2(l.slot()); |
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 idiom is repeated four times; seems like it can be factored somewhere into a helper?
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.
Good idea. The same routine is used in attribute mapper for the two tables, which could be factored as well.
Mailing list message from Brian Goetz on core-libs-dev: It is irritating that one is a type descriptor and one is a signature, On 6/29/2023 9:53 AM, Chen Liang wrote: |
@liach This change is no longer ready for integration - check the PR body for details. |
I will merge this one. Also during development, I found a few other issues:
|
Please hold off on sponsoring this; after another look, I find that LocalVariable and LocalVariableType can probably implement Per our previous discussion, I think we might convert the |
@liach 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! |
@liach You can turn this back to draft or run the reviewers 2 command to reduce this risk of accidental sponsorship |
/reviewers 2 |
@liach 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! |
a2e604e
to
c3429f6
Compare
@liach Please do not rebase or force-push to an active PR as it invalidates existing review comments. Note for future reference, the bots always squash all changes into a single commit automatically as part of the integration. See OpenJDK Developers’ Guide for more information. |
@liach 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! |
@liach This pull request has been inactive for more than 8 weeks and will now be automatically closed. If you would like to continue working on this pull request in the future, feel free to reopen it! This can be done using the |
LocalVariable
andLocalVariableType
includeswriteTo(BufWriter)
, which should be implementation details.See https://mail.openjdk.org/pipermail/classfile-api-dev/2023-June/000381.html for context.
This patch moves the implementation to
DirectCodeBuilder
's original use sites; the oldb.canWriteDirect
branch is redundant, aswriteIndex
's implementation already performs such an optimization.Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/14705/head:pull/14705
$ git checkout pull/14705
Update a local copy of the PR:
$ git checkout pull/14705
$ git pull https://git.openjdk.org/jdk.git pull/14705/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 14705
View PR using the GUI difftool:
$ git pr show -t 14705
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/14705.diff
Webrev
Link to Webrev Comment