-
Notifications
You must be signed in to change notification settings - Fork 6.2k
JDK-8325432: enhance assert message "relocation addr must be in this section" #17749
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
Conversation
|
👋 Welcome back mbaesken! A progress list of the required criteria for merging this PR into |
| void set_locs_point(address pc) { | ||
| assert(pc >= locs_point(), "relocation addr may not decrease"); | ||
| assert(allocates2(pc), "relocation addr must be in this section"); | ||
| assert(allocates2(pc), "relocation addr " INTPTR_FORMAT " must be in this section from " INTPTR_FORMAT " to " INTPTR_FORMAT, p2i(pc), p2i(_start), p2i(_limit)); |
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.
Good.
|
@MBaesken 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 12 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 |
TobiHartmann
left a comment
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 the reviews ! /integrate |
|
Going to push as commit 3d3a8f0.
Your commit was automatically rebased without conflicts. |
The assert message "relocation addr must be in this section" in codeBuffer.hpp could be enhanced by printing the pointer and section information.
See also
https://bugs.openjdk.org/browse/JDK-8325326
8325326: compiler/codecache/TestStressCodeBuffers.java assertion on AIX
where we run into the assertion since 2 days.
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/17749/head:pull/17749$ git checkout pull/17749Update a local copy of the PR:
$ git checkout pull/17749$ git pull https://git.openjdk.org/jdk.git pull/17749/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 17749View PR using the GUI difftool:
$ git pr show -t 17749Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/17749.diff
Webrev
Link to Webrev Comment