Skip to content
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

Closed
wants to merge 36 commits into from

Conversation

lahodaj
Copy link
Contributor

@lahodaj lahodaj commented Mar 27, 2024

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:

  • there is a new ElementKind.COMPONENT_LOCAL_VARIABLE, as the specification introduces this term, and it seems consistent with ElementKind.BINDING_VARIABLE that was introduced some time ago.
  • there are a bit broader changes in Flow, to facilitate the introduction of variables without an explicit declaration for definite assignment and effectively final computation.

Progress

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change requires CSR request JDK-8329645 to be approved

Issues

  • JDK-8324651: Compiler Implementation for Derived Record Creation (Preview) (Sub-task - P4)
  • JDK-8329556: javax.lang.model support for Derived Record Creation (Preview) (Sub-task - P4)(⚠️ The fixVersion in this issue is [24] but the fixVersion in .jcheck/conf is 23, a new backport will be created when this pr is integrated.)
  • JDK-8329645: javax.lang.model support for Derived Record Creation (Preview) (CSR)

Reviewers

Contributors

  • Joe Darcy <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

Sorry, something went wrong.

@bridgekeeper
Copy link

bridgekeeper bot commented Mar 27, 2024

👋 Welcome back jlahoda! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk
Copy link

openjdk bot commented Mar 27, 2024

@lahodaj This change is no longer ready for integration - check the PR body for details.

@openjdk openjdk bot added the csr Pull request needs approved CSR before integration label Mar 27, 2024
@openjdk
Copy link

openjdk bot commented Mar 27, 2024

@lahodaj The following labels will be automatically applied to this pull request:

  • compiler
  • core-libs

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.

@openjdk openjdk bot added core-libs core-libs-dev@openjdk.org compiler compiler-dev@openjdk.org labels Mar 27, 2024
@openjdk openjdk bot added the rfr Pull request is ready for review label Mar 27, 2024
@mlbridge
Copy link

mlbridge bot commented Mar 27, 2024

* to the next available sequence number and entering it under that
* index into the vars array.
*/
void newVar(JCTree pos,VarSymbol sym) {
Copy link
Member

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.

Copy link
Contributor Author

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)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Curly braces here?

Copy link
Contributor Author

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); }
Copy link
Member

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?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done. Thanks!

@openjdk
Copy link

openjdk bot commented Apr 5, 2024

@lahodaj
Contributor Joe Darcy <darcy@openjdk.org> successfully added.

@lahodaj
Copy link
Contributor Author

lahodaj commented Apr 5, 2024

/issue add JDK-8329556

@openjdk
Copy link

openjdk bot commented Apr 5, 2024

@lahodaj
Adding additional issue to issue list: 8329556: javax.lang.model support for Derived Record Creation (Preview).

@@ -4908,6 +4909,92 @@ private boolean patternDominated(JCPattern existingPattern, JCPattern currentPat
return false;
}

void checkDerivedInstanceBlockStructure(JCDerivedInstance instance) {
new TreeScanner() {
Copy link
Contributor

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;
Copy link
Contributor

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?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Generating the JCVariableDecls in Attr in 1465135.
Thanks for the comment!

@@ -4440,6 +4440,65 @@ public void visitTry(JCTry tree) {
super.visitTry(tree);
}

@Override
Copy link
Contributor

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.

Copy link
Contributor Author

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!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great!

Copy link
Contributor

@mcimadamore mcimadamore left a 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
Copy link
Member

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.

Copy link
Contributor Author

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}
Copy link
Member

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.

Copy link
Contributor Author

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;
Copy link
Contributor

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

Copy link
Contributor Author

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.
Copy link
Contributor

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

Copy link
Contributor Author

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
Copy link
Contributor

@vicente-romero-oracle vicente-romero-oracle left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Copy link
Contributor

@mcimadamore mcimadamore left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

@openjdk
Copy link

openjdk bot commented Apr 18, 2024

@lahodaj this pull request can not be integrated into master due to one or more merge conflicts. To resolve these merge conflicts and update this pull request you can run the following commands in the local repository for your personal fork:

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

@openjdk openjdk bot added the merge-conflict Pull request has merge conflict with target branch label Apr 18, 2024
@openjdk openjdk bot removed the merge-conflict Pull request has merge conflict with target branch label Apr 19, 2024
@openjdk openjdk bot added ready Pull request is ready to be integrated and removed csr Pull request needs approved CSR before integration labels May 2, 2024
@openjdk openjdk bot added merge-conflict Pull request has merge conflict with target branch and removed ready Pull request is ready to be integrated labels May 9, 2024
@openjdk openjdk bot removed the rfr Pull request is ready for review label Jun 4, 2024
@bridgekeeper
Copy link

bridgekeeper bot commented Jun 7, 2024

@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!

@bridgekeeper
Copy link

bridgekeeper bot commented Jul 5, 2024

@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 /open pull request command.

@bridgekeeper bridgekeeper bot closed this Jul 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
compiler compiler-dev@openjdk.org core-libs core-libs-dev@openjdk.org merge-conflict Pull request has merge conflict with target branch
Development

Successfully merging this pull request may close these issues.

None yet

6 participants