-
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
8324651: Compiler Implementation for Derived Record Creation (Preview) #18509
Conversation
…of a record type.
…sion; optimizing the resulting bytecode.
👋 Welcome back jlahoda! A progress list of the required criteria for merging this PR into |
@lahodaj This change is no longer ready for integration - check the PR body for details. |
Webrevs
|
* to the next available sequence number and entering it under that | ||
* index into the vars array. | ||
*/ | ||
void newVar(JCTree pos,VarSymbol sym) { |
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 is used only twice. One from void newVar(JCVariableDecl varDecl)
which is very intuitive and one with newVar(null, component);
which I understand. But, is there any reason to create a var
in the future with something else than null
(unrelated to sym
?). Maybe the comment needs to be updated to document what should be the relation (if any) between pos
and sym
.
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.
Oops, that's actually an oversight - there should be a pos specified in all cases. Should be fixed now.
@@ -3233,6 +3256,11 @@ public void analyzeTree(Env<?> env, JCTree tree, TreeMaker make) { | |||
try { | |||
startPos = tree.pos().getStartPosition(); | |||
|
|||
if (vars == null) |
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.
Curly braces here?
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 is a copy of the similar code for vardecls
. I was thinking if I could unify the codepaths, but does not seem to be so simple, so I created a duplicate. So, it might be better to keep the code the same/similar as it was before, to minimize disruptions.
@@ -3570,6 +3604,7 @@ public abstract static class Visitor { | |||
public void visitNewArray(JCNewArray that) { visitTree(that); } | |||
public void visitLambda(JCLambda that) { visitTree(that); } | |||
public void visitParens(JCParens that) { visitTree(that); } | |||
public void visitReconstruction(JCDerivedInstance that) { visitTree(that); } |
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.
Maybe visitDerivedInstance
to be in sync with the JCDerivedInstance
world?
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.
Done. Thanks!
@lahodaj |
/issue add JDK-8329556 |
@lahodaj |
@@ -4908,6 +4909,92 @@ private boolean patternDominated(JCPattern existingPattern, JCPattern currentPat | |||
return false; | |||
} | |||
|
|||
void checkDerivedInstanceBlockStructure(JCDerivedInstance instance) { | |||
new TreeScanner() { |
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 note that here we don't care about leaving locals declared inside a block in the seenVariables
after the block ends (e.g. I see no visitBlock). I think that's probably ok, given that every variable has a fresh symbol, so checking against the seenVariables
set will fail anyway for two variables that have same name, but different scopes.
*/ | ||
protected JCVariableDecl[] vardecls; | ||
protected VarAndDeclarationTree[] vars; |
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.
So... normally, a JCVariableDecl
would have a symbol attached, which is how the old code used to work. Is it correct that this change is needed because the componentLocalVariables
list is a list of symbols and not of JCVariableDecl? Would it be too complex to create a declaration in Attr and save those in the derived creation tree?
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.
Generating the JCVariableDecl
s in Attr in 1465135.
Thanks for the comment!
@@ -4440,6 +4440,65 @@ public void visitTry(JCTry tree) { | |||
super.visitTry(tree); | |||
} | |||
|
|||
@Override |
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.
As usual, I suggest to add some brief comment with the shape of the generated code.
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.
Done here:
1465135#diff-bc0df6dce7f74078bfca1e90bec75d7bb3d8b338933be725da78f0a8a7a0c78dR4445
Please let me know if that needs some tweaks.
Thanks for the comment!
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 great!
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 job!
- pre-generating the JCVarDecls in Attr, to aid Flow - adding a note on how the desugared code looks like
* @since 23 | ||
*/ | ||
@PreviewFeature(feature=PreviewFeature.Feature.DERIVED_RECORD_CREATION, reflective=true) | ||
COMPONENT_LOCAL_VARIABLE; | ||
|
||
// Maintenance note: check if the default implementation of |
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.
From a quick look, I don't think Elements.getOutermostTypeElement needs updating for COMPONENT_LOCAL_VARIABLE, but it would be good to add a test case.
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.
Tests added: e093068
Thanks!
@@ -86,4 +86,21 @@ protected ElementKindVisitorPreview() { | |||
protected ElementKindVisitorPreview(R defaultValue) { | |||
super(defaultValue); | |||
} | |||
|
|||
/** | |||
* {@inheritDoc ElementKindVisitor6} |
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.
If possible, would be good to add some minimal testing/use of the element kind visitors on component local variables.
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.
Tests added: e093068
Thanks!
@@ -98,10 +98,12 @@ | |||
import com.sun.tools.javac.tree.JCTree.JCNewClass; | |||
import com.sun.tools.javac.tree.JCTree.JCPattern; | |||
import com.sun.tools.javac.tree.JCTree.JCPatternCaseLabel; | |||
import com.sun.tools.javac.tree.JCTree.JCDerivedInstance; |
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.
changes to this file can be removed now
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.
Thanks, removed:
a05480c
@@ -0,0 +1,115 @@ | |||
/* | |||
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved. |
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.
probably this test should be in another location not under patterns
, same for other tests added inside patterns
folder
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.
Thanks, moved:
a05480c
- reverting unnecessary changes in TransPatterns - moving the patters/withers/Model test to a more appropriate place
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
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!
@lahodaj this pull request can not be integrated into git checkout wthexp
git fetch https://git.openjdk.org/jdk.git master
git merge FETCH_HEAD
# resolve conflicts and follow the instructions given by git merge
git commit -m "Merge master"
git push |
@lahodaj 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! |
@lahodaj 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 |
This is a patch for javac, that adds the Derived Record Creation expressions. The current draft specification for the feature is:
https://cr.openjdk.org/~gbierman/jep468/jep468-20240326/specs/derived-record-creation-jls.html
The current CSR is here:
https://bugs.openjdk.org/browse/JDK-8328637
The patch is mostly straightforward, with two notable changes:
ElementKind.COMPONENT_LOCAL_VARIABLE
, as the specification introduces this term, and it seems consistent withElementKind.BINDING_VARIABLE
that was introduced some time ago.Flow
, to facilitate the introduction of variables without an explicit declaration for definite assignment and effectively final computation.Progress
Issues
Reviewers
Contributors
<darcy@openjdk.org>
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/18509/head:pull/18509
$ git checkout pull/18509
Update a local copy of the PR:
$ git checkout pull/18509
$ git pull https://git.openjdk.org/jdk.git pull/18509/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 18509
View PR using the GUI difftool:
$ git pr show -t 18509
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/18509.diff
Webrev
Link to Webrev Comment