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

8315532: Compiler Implementation for Unnamed Variables & Patterns #15649

Closed
wants to merge 8 commits into from

Conversation

biboudis
Copy link
Member

@biboudis biboudis commented Sep 9, 2023

This PR finalizes the feature of unnamed variables and patterns.


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-8315851 to be approved
  • Change requires a JEP request to be targeted
  • Change requires CSR request JDK-8317222 to be approved

Issues

  • JDK-8315532: Compiler Implementation for Unnamed Variables & Patterns (Sub-task - P4)
  • JDK-8317221: Implementation for javax.lang.model for Unnamed Variables & Patterns (Sub-task - P4)
  • JDK-8311828: JEP 456: Unnamed Variables & Patterns (JEP)
  • JDK-8315851: Compiler Implementation for Unnamed Variables & Patterns (CSR)
  • JDK-8317222: Implementation for javax.lang.model for Unnamed Variables & Patterns (CSR)

Reviewers

Contributors

  • Jan Lahoda <jlahoda@openjdk.org>
  • Maurizio Cimadamore <mcimadamore@openjdk.org>
  • Gavin Bierman <gbierman@openjdk.org>
  • Brian Goetz <briangoetz@openjdk.org>
  • Joe Darcy <darcy@openjdk.org>
  • Aggelos Biboudis <abimpoudis@openjdk.org>

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/15649/head:pull/15649
$ git checkout pull/15649

Update a local copy of the PR:
$ git checkout pull/15649
$ git pull https://git.openjdk.org/jdk.git pull/15649/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 15649

View PR using the GUI difftool:
$ git pr show -t 15649

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/15649.diff

Webrev

Link to Webrev Comment

@bridgekeeper
Copy link

bridgekeeper bot commented Sep 9, 2023

👋 Welcome back abimpoudis! 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 openjdk bot added the csr Pull request needs approved CSR before integration label Sep 9, 2023
@openjdk
Copy link

openjdk bot commented Sep 9, 2023

@biboudis 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 Sep 9, 2023
@biboudis biboudis marked this pull request as ready for review September 25, 2023 14:56
@openjdk openjdk bot added the rfr Pull request is ready for review label Sep 25, 2023
@mlbridge
Copy link

mlbridge bot commented Sep 25, 2023

Copy link
Contributor

@lahodaj lahodaj left a comment

Choose a reason for hiding this comment

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

Overall, looks reasonable to me. A few comments/suggestions for your consideration inline.

@biboudis
Copy link
Member Author

/issue add JDK-8317221

@openjdk
Copy link

openjdk bot commented Sep 28, 2023

@biboudis
Adding additional issue to issue list: 8317221: Implementation for javax.lang.model for unnamed variables.

@biboudis
Copy link
Member Author

biboudis commented Oct 5, 2023

/contributor add @lahodaj
/contributor add @mcimadamore
/contributor add @GavinBierman
/contributor add @briangoetz
/contributor add @jddarcy
/contributor add @biboudis

@openjdk
Copy link

openjdk bot commented Oct 5, 2023

@biboudis
Contributor Jan Lahoda <jlahoda@openjdk.org> successfully added.

@openjdk
Copy link

openjdk bot commented Oct 5, 2023

@biboudis
Contributor Maurizio Cimadamore <mcimadamore@openjdk.org> successfully added.

@openjdk
Copy link

openjdk bot commented Oct 5, 2023

@biboudis
Contributor Gavin Bierman <gbierman@openjdk.org> successfully added.

@openjdk
Copy link

openjdk bot commented Oct 5, 2023

@biboudis
Contributor Brian Goetz <briangoetz@openjdk.org> successfully added.

@openjdk
Copy link

openjdk bot commented Oct 5, 2023

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

@openjdk
Copy link

openjdk bot commented Oct 5, 2023

@biboudis
Contributor Aggelos Biboudis <abimpoudis@openjdk.org> successfully added.

@biboudis biboudis changed the title 8315532: Compiler Implementation for Unnamed Variables and Patterns 8315532: Compiler Implementation for Unnamed Variables & Patterns Oct 18, 2023
@biboudis
Copy link
Member Author

/issue remove JDK-8317221

@openjdk
Copy link

openjdk bot commented Oct 18, 2023

@biboudis
Removing additional issue from issue list: 8317221.

@biboudis
Copy link
Member Author

/issue add JDK-8317221

@openjdk
Copy link

openjdk bot commented Oct 18, 2023

@biboudis
Adding additional issue to issue list: 8317221: Implementation for javax.lang.model for Unnamed Variables & Patterns.

@openjdk
Copy link

openjdk bot commented Oct 20, 2023

@biboudis 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:

8315532: Compiler Implementation for Unnamed Variables & Patterns
8317221: Implementation for javax.lang.model for Unnamed Variables & Patterns

Co-authored-by: Jan Lahoda <jlahoda@openjdk.org>
Co-authored-by: Maurizio Cimadamore <mcimadamore@openjdk.org>
Co-authored-by: Gavin Bierman <gbierman@openjdk.org>
Co-authored-by: Brian Goetz <briangoetz@openjdk.org>
Co-authored-by: Joe Darcy <darcy@openjdk.org>
Co-authored-by: Aggelos Biboudis <abimpoudis@openjdk.org>
Reviewed-by: jlahoda, mcimadamore

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 166 new commits pushed to the master branch:

  • 3934127: 8318709: Improve System.nanoTime performance on Windows
  • 83eb206: 8318889: C2: add bailout after assert Bad graph detected in build_loop_late
  • 1183b22: 8310978: JFR events SocketReadEvent/SocketWriteEvent for Socket adaptor ops
  • 988e1df: 8318953: RISC-V: Small refactoring for MacroAssembler::test_bit
  • ce0ca47: 8319067: ProblemList serviceability/AsyncGetCallTrace/MyPackage/ASGCTBaseTest.java on linux-aarch64 in Xcomp mode
  • db34025: 8318827: RISC-V: Improve readability of fclass result testing
  • 1ec0d02: 8318225: RISC-V: C2 UModI
  • 96bec35: 8316996: Catalog API Enhancement: add a factory method
  • d226014: 8318850: Duplicate code in the LCMSImageLayout
  • c593f8b: 8318091: Remove empty initIDs functions
  • ... and 156 more: https://git.openjdk.org/jdk/compare/7c80cb26dfb6e90147f5f36d780457eff09e58ad...master

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.

As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@lahodaj, @mcimadamore) but any other Committer may sponsor as well.

➡️ To flag this PR as ready for integration with the above commit message, type /integrate in a new comment. (Afterwards, your sponsor types /sponsor in a new comment to perform the integration).

@openjdk openjdk bot added ready Pull request is ready to be integrated and removed csr Pull request needs approved CSR before integration labels Oct 20, 2023
@biboudis
Copy link
Member Author

/jep JEP-456

@openjdk
Copy link

openjdk bot commented Oct 23, 2023

@biboudis
This pull request will not be integrated until the JEP-456 has been targeted.

@openjdk openjdk bot added jep ready Pull request is ready to be integrated and removed ready Pull request is ready to be integrated jep labels Oct 23, 2023
@biboudis
Copy link
Member Author

/integrate

@openjdk openjdk bot added the sponsor Pull request is ready to be sponsored label Oct 30, 2023
@openjdk
Copy link

openjdk bot commented Oct 30, 2023

@biboudis
Your change (at version bd43790) is now ready to be sponsored by a Committer.

@lahodaj
Copy link
Contributor

lahodaj commented Oct 30, 2023

/sponsor

@openjdk
Copy link

openjdk bot commented Oct 30, 2023

Going to push as commit c9d23c3.
Since your change was applied there have been 166 commits pushed to the master branch:

  • 3934127: 8318709: Improve System.nanoTime performance on Windows
  • 83eb206: 8318889: C2: add bailout after assert Bad graph detected in build_loop_late
  • 1183b22: 8310978: JFR events SocketReadEvent/SocketWriteEvent for Socket adaptor ops
  • 988e1df: 8318953: RISC-V: Small refactoring for MacroAssembler::test_bit
  • ce0ca47: 8319067: ProblemList serviceability/AsyncGetCallTrace/MyPackage/ASGCTBaseTest.java on linux-aarch64 in Xcomp mode
  • db34025: 8318827: RISC-V: Improve readability of fclass result testing
  • 1ec0d02: 8318225: RISC-V: C2 UModI
  • 96bec35: 8316996: Catalog API Enhancement: add a factory method
  • d226014: 8318850: Duplicate code in the LCMSImageLayout
  • c593f8b: 8318091: Remove empty initIDs functions
  • ... and 156 more: https://git.openjdk.org/jdk/compare/7c80cb26dfb6e90147f5f36d780457eff09e58ad...master

Your commit was automatically rebased without conflicts.

@openjdk openjdk bot added the integrated Pull request has been integrated label Oct 30, 2023
@openjdk openjdk bot closed this Oct 30, 2023
@openjdk openjdk bot removed ready Pull request is ready to be integrated rfr Pull request is ready for review sponsor Pull request is ready to be sponsored labels Oct 30, 2023
@openjdk
Copy link

openjdk bot commented Oct 30, 2023

@lahodaj @biboudis Pushed as commit c9d23c3.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

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 integrated Pull request has been integrated
Development

Successfully merging this pull request may close these issues.

3 participants