-
Notifications
You must be signed in to change notification settings - Fork 109
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
8253113: [lworld] [lw3] C1 should avoid copying element of flattened arrays when reading a sub-element #187
Conversation
👋 Welcome back fparain! A progress list of the required criteria for merging this PR into |
@fparain This change now passes all automated pre-integration checks. In addition to the automated checks, the change must also fulfill all project specific requirements After integration, the commit message will be:
Since the source branch of this PR was last updated there has been 1 commit 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 automatic rebasing, please merge ➡️ To integrate this PR with the above commit message to the |
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.
Looks good to me, added some minor comments.
// Find the starting address of the source (inside the array) | ||
ciType* array_type = array.value()->declared_type(); | ||
ciFlatArrayKlass* flat_array_klass = array_type->as_flat_array_klass(); | ||
assert(flat_array_klass->is_loaded(), "must be"); | ||
|
||
ciInlineKlass* elem_klass = flat_array_klass->element_klass()->as_inline_klass(); | ||
ciInlineKlass* elem_klass = NULL; |
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.
Unused.
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.
Fixed
|
||
BasicType subelt_type = field->type()->basic_type(); | ||
|
||
#ifndef _LP64 |
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.
Wrong indentation.
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.
Fixed
@@ -1595,13 +1595,84 @@ class TempResolvedAddress: public Instruction { | |||
virtual const char* name() const { return "TempResolvedAddress"; } | |||
}; | |||
|
|||
void LIRGenerator::access_flattened_array(bool is_load, LIRItem& array, LIRItem& index, LIRItem& obj_item) { | |||
void LIRGenerator::access_sub_element(LIRItem& array, LIRItem& index, LIR_Opr& result, ciField* field, int sub_offset) { |
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.
There is quite some code duplication here with access_flattened_array, can we factor it out?
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.
Code has been refactored, and the common code in access_flattened_array() and access_sub_element() is now shared in the new method get_and_load_element_address().
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 making these changes!
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.
Nice refactoring. Looks good to me.
void LIRGenerator::access_sub_element(LIRItem& array, LIRItem& index, LIR_Opr& result, ciField* field, int sub_offset) { | ||
assert(field != NULL, "Need a subelement type specified"); | ||
|
||
// Find the starting address of the source (inside the array) |
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.
Indentation is wrong.
ciField* field, int sub_offset) { | ||
assert(sub_offset == 0 || field != NULL, "Sanity check"); | ||
|
||
// Find the starting address of the source (inside the array) |
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.
Indentation is wrong.
Thanks Tobias for your review. Fred |
/integrate |
@fparain Since your change was applied there has been 1 commit pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit 1a52191. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Please review these changes optimizing access to flattened arrays in C1.
The optimization avoids unnecessary copies of intermediate values when the code accesses a sub-element of a flattened array.
For instance, with the following code:
inline class Point { int x = 0, y = 0; }
void foo() {
Point[] array = new Point[10];
int i = array[1].x;
}
C1 used to create a new instance of Point, copy the content from the array, then reads the x field from this new instance.
With the optimization, C1 directly accesses the x field from the flattened array, and makes no heap allocation.
A simple benchmark on the "int i = array[1].x;" line gives these results:
baseline:
Benchmark Mode Samples Score Score error Units
o.s.MyBenchmark.testArrayReads avgt 200 4.250 0.011 ns/op
optimized:
Benchmark Mode Samples Score Score error Units
o.s.MyBenchmark.testArrayReads avgt 200 2.228 0.004 ns/op
Thank you,
Fred
Progress
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/valhalla pull/187/head:pull/187
$ git checkout pull/187