-
Notifications
You must be signed in to change notification settings - Fork 6.1k
8361712: Improve ShenandoahAsserts printing #26237
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
base: master
Are you sure you want to change the base?
Conversation
👋 Welcome back stuefe! A progress list of the required criteria for merging this PR into |
❗ This change is not yet ready to be integrated. |
63b1f4c
to
aab9d9c
Compare
Webrevs
|
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.
This looks really useful! I have only two comments/questions.
} | ||
const_address loc = cast_from_oop<const_address>(obj); | ||
os::print_hex_dump(&ss, loc, loc + 64, 4, true, 32, loc); |
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.
Does this need to check for heap-end boundary? Otherwise it may crash trying to print bytes from after the heap, which may not be mapped?
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.
No, that function is safe to use on any memory. It uses SafeFetch and prints dots for unreadable parts.
@@ -182,7 +182,7 @@ class StreamIndentor { | |||
NONCOPYABLE(StreamIndentor); | |||
|
|||
public: | |||
StreamIndentor(outputStream* os, int indentation) : | |||
StreamIndentor(outputStream* os, int indentation = 2) : |
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.
Why do we need/want a default value here?
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.
Ease of use, and less code. And it softly enforces 2 as a standard.
Small changes to ShenandoahAsserts and friends to improve fault-tolerance and usefulnes:
Tests: I manually tested the patch with a number of manually broken oops of various flavours.
Example output, invalid forwardee:
Progress
Issue
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/26237/head:pull/26237
$ git checkout pull/26237
Update a local copy of the PR:
$ git checkout pull/26237
$ git pull https://git.openjdk.org/jdk.git pull/26237/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 26237
View PR using the GUI difftool:
$ git pr show -t 26237
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/26237.diff
Using Webrev
Link to Webrev Comment