-
Notifications
You must be signed in to change notification settings - Fork 104
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
8343846: [lworld] implement spec changes to stack map tables #1333
base: lworld
Are you sure you want to change the base?
8343846: [lworld] implement spec changes to stack map tables #1333
Conversation
👋 Welcome back vromero! A progress list of the required criteria for merging this PR into |
❗ This change is not yet ready to be integrated. |
|
/** | ||
* {@return the expanded unset fields} | ||
*/ | ||
List<Integer> unSetFields(); |
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.
Use List<NameAndTypeEntry>
please
*/ | ||
public static StackMapFrameInfo of(Label target, | ||
List<VerificationTypeInfo> locals, | ||
List<VerificationTypeInfo> stack) { | ||
List<VerificationTypeInfo> stack, | ||
List<Integer> unSetFields) { |
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.
Can keep the original one untouched for compatibility and add a new factory ofUnsetFields(List<NameAndTypeEntry>)
@@ -572,7 +572,7 @@ public void write(Attribute<?> a, CodeAttribute lr) { | |||
int offsetDelta = lr.labelToBci(frame.target()) - lastOffset - 1; | |||
switch (frameType) { | |||
case 247 -> { |
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.
Should print the assert unset here
still experimental
Progress
Issue
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/valhalla.git pull/1333/head:pull/1333
$ git checkout pull/1333
Update a local copy of the PR:
$ git checkout pull/1333
$ git pull https://git.openjdk.org/valhalla.git pull/1333/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 1333
View PR using the GUI difftool:
$ git pr show -t 1333
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/valhalla/pull/1333.diff