-
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
8283059: Uninitialized warning in check_code.c with GCC 11.2 #7859
Conversation
👋 Welcome back mikael! A progress list of the required criteria for merging this PR into |
Webrevs
|
/label add hotspot-runtime |
@vidmik |
Added hotspot-runtime to the new version of the PR. |
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!
@vidmik 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 1 new commit pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the ➡️ To integrate this PR with the above commit message to the |
/integrate |
Going to push as commit d8893fa.
Your commit was automatically rebased without conflicts. |
Note: this PR replaces the one I messed up earlier.
Background, from JBS:
src/java.base/share/native/libverify/check_code.c: In function 'read_all_code':
src/java.base/share/native/libverify/check_code.c:942:5: error: 'lengths' may be used uninitialized [-Werror=maybe-uninitialized]
942 | check_and_push(context, lengths, VM_MALLOC_BLK);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/java.base/share/native/libverify/check_code.c:4145:13: note: by argument 2 of type 'const void *' to 'check_and_push' declared here
4145 | static void check_and_push(context_type *context, const void *ptr, int kind)
| ^~~~~~~~~~~~~~
Because the second argument of check_and_push is "const void*" GCC assumes that the malloc:ed data, which has not yet been initialized, will not be/can not be modified later which in turn suggests it may be used without ever being initialized.
The same general issue was addressed in JDK-8266168, presumably for GCC 11.1.
Details:
Instead of sprinkling more calloc calls around or using pragmas/gcc attributes I chose to change the check_and_push function to take a (non-const) void* argument, and provide a new wrapper function check_and_push_const which handles the const argument case. For the (non-const) VM_MALLOC_BKP that means the pointer never needs to go through a const conversion.
To avoid having multiple ways of solving the same problem I also chose to revert the change made in JDK-8266168, reverting the calloc back to a malloc call.
Testing:
tier1 + builds-tier{2,3,4,5}
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/7859/head:pull/7859
$ git checkout pull/7859
Update a local copy of the PR:
$ git checkout pull/7859
$ git pull https://git.openjdk.java.net/jdk pull/7859/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 7859
View PR using the GUI difftool:
$ git pr show -t 7859
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/7859.diff