-
Notifications
You must be signed in to change notification settings - Fork 6.1k
8354543: Set more meaningful names for "get_vm_result" and "get_vm_result_2" #24632
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -145,7 +145,7 @@ class JavaThread: public Thread { | |||||
| Method* _callee_target; | ||||||
|
|
||||||
| // Used to pass back results to the interpreter or generated code running Java code. | ||||||
| oop _vm_result_oop; // oop result is GC-preserved | ||||||
| oop _vm_result_oop; // oop result is GC-preserved | ||||||
| Metadata* _vm_result_metadata; // non-oop result | ||||||
|
|
||||||
| // See ReduceInitialCardMarks: this holds the precise space interval of | ||||||
|
|
@@ -787,7 +787,7 @@ class JavaThread: public Thread { | |||||
| oop vm_result_oop() const { return _vm_result_oop; } | ||||||
| void set_vm_result_oop(oop x) { _vm_result_oop = x; } | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think John fixed the space here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Right. But whatever, I won't quibble. @JohnTortugo -- fix it if you can. |
||||||
|
|
||||||
| void set_vm_result_metadata(Metadata* x) { _vm_result_metadata = x; } | ||||||
| void set_vm_result_metadata(Metadata* x) { _vm_result_metadata = x; } | ||||||
|
|
||||||
| MemRegion deferred_card_mark() const { return _deferred_card_mark; } | ||||||
| void set_deferred_card_mark(MemRegion mr) { _deferred_card_mark = mr; } | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.