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

8253208: Move CDS related code to a separate class #261

Closed
wants to merge 8 commits into from
Closed

8253208: Move CDS related code to a separate class #261

wants to merge 8 commits into from

Conversation

yminqi
Copy link
Contributor

@yminqi yminqi commented Sep 18, 2020

With more CDS related code added to VM, it is time to move CDS code to a separate class. CDS is the new class which is specific to CDS.

Tests: tier1-4


Progress

  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change must be properly reviewed

Issue

  • JDK-8253208: Move CDS related code to a separate class

Reviewers

Download

$ git fetch https://git.openjdk.java.net/jdk pull/261/head:pull/261
$ git checkout pull/261

Sorry, something went wrong.

Yumin Qi added 6 commits September 11, 2020 10:09

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@bridgekeeper
Copy link

bridgekeeper bot commented Sep 18, 2020

👋 Welcome back minqi! 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 Sep 18, 2020

⚠️ @yminqi This pull request contains merges that bring in commits not present in the target repository. Since this is not a "merge style" pull request, these changes will be squashed when this pull request in integrated. If this is your intention, then please ignore this message. If you want to preserve the commit structure, you must change the title of this pull request to Merge <project>:<branch> where <project> is the name of another project in the OpenJDK organization (for example Merge jdk:master).

@openjdk openjdk bot added the rfr Pull request is ready for review label Sep 18, 2020
@openjdk
Copy link

openjdk bot commented Sep 18, 2020

@yminqi The following labels will be automatically applied to this pull request: core-libs hotspot-compiler i18n security.

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 (add|remove) "label" command.

@openjdk openjdk bot added security security-dev@openjdk.org hotspot-compiler hotspot-compiler-dev@openjdk.org core-libs core-libs-dev@openjdk.org i18n i18n-dev@openjdk.org labels Sep 18, 2020
@mlbridge
Copy link

mlbridge bot commented Sep 18, 2020

Webrevs

/**
* Check if CDS sharing is enabled by via the UseSharedSpaces flag.
*/
public static native boolean isCDSSharingEnabled();
Copy link
Member

Choose a reason for hiding this comment

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

I think the word CDS is redundant in the method names. How about

getRandomSeedForCDSDump() -> getRandomSeedForDumping()
isCDSDumpingEnabled() -> isDynamicDumpingEnabled() // doesn't return true if we're doing a static dump
isCDSSharingEnabled() -> isSharingEnabled()

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@openjdk openjdk bot added build build-dev@openjdk.org hotspot hotspot-dev@openjdk.org and removed hotspot-compiler hotspot-compiler-dev@openjdk.org labels Sep 21, 2020
Copy link
Member

@mlchung mlchung left a comment

Choose a reason for hiding this comment

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

This patch looks okay. Please add the javadoc for CDS::getRandomSeedForDumping and CDS::defineArchiveModules for completeness.

Copy link
Member

@erikj79 erikj79 left a comment

Choose a reason for hiding this comment

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

Build changes look good.

@openjdk
Copy link

openjdk bot commented Sep 21, 2020

@yminqi This change now passes all automated pre-integration checks. In addition to the automated checks, the change must also fulfill all project specific requirements

After integration, the commit message will be:

8253208: Move CDS related code to a separate class

Reviewed-by: mchung, iklam
  • If you would like to add a summary, use the /summary command.
  • To credit additional contributors, use the /contributor command.
  • To add additional solved issues, use the /issue command.

Since the source branch of this PR was last updated there have been 36 commits pushed to the master branch:

  • 24e12b3: 8247251: Assert (_pcs_length == 0 || last_pc()->pc_offset() < pc_offs…
  • 3d5fea1: 8253434: Shenandoah: Cleanup ShenandoahRootScanner
  • 8c02bdb: 8252921: NMT overwrite memory type for region assert when building dynamic archive
  • 0c287de: 8253421: Initialize JFR trace-IDs with zero
  • aa38624: 8248352: [TEST_BUG] Test test/jdk/java/awt/font/TextLayout/ArabicDiacriticTest.java can leave frame open
  • ae20dd6: 8251496: Fix doclint warnings in jdk.net.httpserver
  • b9729cb: 8253284: Zero OrderAccess barrier mappings are incorrect
  • 284bbf0: 8253079: DeterministicDump.java fails due to garbage in structure padding
  • a4affd5: 8253412: Unsupported GC options passed in JAVA_TOOL_OPTIONS are silently ignored
  • 96f722c: 8252114: Windows-AArch64: Enable and test ZGC and ShenandoahGC
  • ... and 26 more: https://git.openjdk.java.net/jdk/compare/f55dd9d40ed4dc03d96c06cd283c9aae814daec4...master

As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid automatic rebasing, please merge master into your branch, and then specify the current head hash when integrating, like this: /integrate 24e12b3811cb9e3e593f75f9daeff8bfd39dc632.

➡️ To integrate this PR with the above commit message to the master branch, type /integrate in a new comment.

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Sep 21, 2020
@yminqi
Copy link
Contributor Author

yminqi commented Sep 22, 2020

/integrate

@openjdk openjdk bot closed this Sep 22, 2020
@openjdk openjdk bot added integrated Pull request has been integrated and removed ready Pull request is ready to be integrated rfr Pull request is ready for review labels Sep 22, 2020
@openjdk
Copy link

openjdk bot commented Sep 22, 2020

@yminqi Since your change was applied there have been 36 commits pushed to the master branch:

  • 24e12b3: 8247251: Assert (_pcs_length == 0 || last_pc()->pc_offset() < pc_offs…
  • 3d5fea1: 8253434: Shenandoah: Cleanup ShenandoahRootScanner
  • 8c02bdb: 8252921: NMT overwrite memory type for region assert when building dynamic archive
  • 0c287de: 8253421: Initialize JFR trace-IDs with zero
  • aa38624: 8248352: [TEST_BUG] Test test/jdk/java/awt/font/TextLayout/ArabicDiacriticTest.java can leave frame open
  • ae20dd6: 8251496: Fix doclint warnings in jdk.net.httpserver
  • b9729cb: 8253284: Zero OrderAccess barrier mappings are incorrect
  • 284bbf0: 8253079: DeterministicDump.java fails due to garbage in structure padding
  • a4affd5: 8253412: Unsupported GC options passed in JAVA_TOOL_OPTIONS are silently ignored
  • 96f722c: 8252114: Windows-AArch64: Enable and test ZGC and ShenandoahGC
  • ... and 26 more: https://git.openjdk.java.net/jdk/compare/f55dd9d40ed4dc03d96c06cd283c9aae814daec4...master

Your commit was automatically rebased without conflicts.

Pushed as commit c1df13b.

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

@yminqi yminqi deleted the jdk-8253208 branch September 22, 2020 20:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build build-dev@openjdk.org core-libs core-libs-dev@openjdk.org hotspot hotspot-dev@openjdk.org i18n i18n-dev@openjdk.org integrated Pull request has been integrated security security-dev@openjdk.org
Development

Successfully merging this pull request may close these issues.

None yet

5 participants