-
Notifications
You must be signed in to change notification settings - Fork 6.3k
8382713: [VectorAPI] Perform late inlining of failed vector intrinsics #30876
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?
Changes from 4 commits
c7e6fce
931d45e
e779a2f
5f46f5b
d18bd2a
8171911
679e444
dc3ffe8
77150d9
ae4a373
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 |
|---|---|---|
|
|
@@ -166,7 +166,7 @@ CallGenerator* Compile::call_generator(ciMethod* callee, int vtable_index, bool | |
| cg_intrinsic = cg; | ||
| cg = nullptr; | ||
| } else if (IncrementalInline && should_delay_vector_inlining(callee, jvms)) { | ||
| return CallGenerator::for_late_inline(callee, cg); | ||
| return CallGenerator::for_vector_late_inline(callee, cg); | ||
|
Contributor
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. Why don't you apply regular inlining analysis here (resides in
Member
Author
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. Done |
||
| } else { | ||
| return cg; | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.