-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
8324680: Replace NULL with nullptr in JVMTI generated code #17866
Conversation
👋 Welcome back sspitsyn! A progress list of the required criteria for merging this PR into |
@sspitsyn 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:
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 59 new commits pushed to the
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. ➡️ To integrate this PR with the above commit message to the |
Thank you for review, Alex! |
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, thanks for fixing this.
Thank you for review, Coleen! |
/integrate |
Going to push as commit 267780b.
Your commit was automatically rebased without conflicts. |
JVMTI agents can be developed in C or C++. If I read this changes correctly, then this will replace all the NULLs in the generated spec with nullptr. I wonder if this needs some setup in the Introduction section, e.g. the Function Return Values subsection, to make this clear. |
As with the other NULL -> nullptr changes, when it involves text (as opposed to code) and we are discussing the general concept of nullness, then the word "null" should be used rather than the programmatic values |
Now, we this section: Function Return Values JVM TI functions always return an error code via the jvmtiError function return value. Some functions can return additional values through pointers provided by the calling function. In some cases, JVM TI functions allocate memory that your program must explicitly deallocate. This is indicated in the individual JVM TI function descriptions. Empty lists, arrays, sequences, etc are returned as The |
Filed new Enhancement: |
This enhancement replaces uses of NULL with nullptr in the XML-description files for JVMTI. These are the files
hotsport/share/prims/jvmti.xml
andhotspot/share/prims/jvmti*.xls
.The following files are auto-generated from the
jvmti.xml
and*.xsl files
in thebuild/<CFG>/variant-server/gensrc/jvmtifiles':
jvmti.h,
jvmti.html,
jvmtiEnter.cpp,
jvmtiEnterTrace.cpp,
jvmtiEnv.hpp`This addresses a category of NULL uses that wasn't dealt with by:
JDK-8299837.
Testing:
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/17866/head:pull/17866
$ git checkout pull/17866
Update a local copy of the PR:
$ git checkout pull/17866
$ git pull https://git.openjdk.org/jdk.git pull/17866/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 17866
View PR using the GUI difftool:
$ git pr show -t 17866
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/17866.diff
Webrev
Link to Webrev Comment