-
Notifications
You must be signed in to change notification settings - Fork 0
Initial support for inline types #1
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: lworld
Are you sure you want to change the base?
Changes from all commits
4e29d89
5704b56
d1331cc
cbe5ed0
305ff92
2c52b4d
f83e06c
0b7c932
33424ac
1a3395f
5fb6d11
5c786a6
7db92dc
c4a2688
97d99fb
b8d0785
b0e7279
b3742c7
f2107df
4e96bfb
c800c07
65e77f6
96c3862
ac22767
09b550d
d89de3b
8093a98
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 |
|---|---|---|
|
|
@@ -763,7 +763,7 @@ class nmethod : public CodeBlob { | |
| bool needs_stack_repair() const { | ||
| if (is_compiled_by_c1()) { | ||
| return method()->c1_needs_stack_repair(); | ||
| } else if (is_compiled_by_c2()) { | ||
| } else if (is_compiled_by_c2() || is_compiled_by_jvmci()) { | ||
| return method()->c2_needs_stack_repair(); | ||
|
Collaborator
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. rename
Owner
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. Probably change that if we are sure that Graal should also rely on the calling convention. |
||
| } else { | ||
| return false; | ||
|
|
||
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.
Maybe it's worth adding a
nmethod::can_scalarize_argsabstraction?