Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
[mono] Add runtime support for Swift calling convention on x64 and arm64 #94764
[mono] Add runtime support for Swift calling convention on x64 and arm64 #94764
Changes from all commits
5136aaf
674a156
9fc9402
d279a03
de27030
476a605
b1b69d3
a95aca8
6c8e477
b06c840
7810e56
6d9d67f
87adeed
0716fda
ab53067
675619f
24a8a01
11d60cc
e8169f0
8584918
279a594
acc15a0
5ea8755
7a69077
ebe4116
0c40694
71d33f4
7bcf61f
7d9f73d
5973ff5
ffc173a
907c69a
42680b1
2cce70f
a702f0d
5bc2693
78b974a
a4ab558
ece53c2
a862485
6a5dda2
e2b6fe9
b3cb4cb
68ad76d
1efac9d
74dc8c9
fd1b036
458c1e4
2939996
8298058
5447ccd
7e04140
64157c5
6b3a52f
6077b22
af416eb
cc9c619
89f46b8
20eb7a6
ae08445
5a225b5
ac7f565
b945d4d
18fcbae
4c6c0c1
0587a55
56bcb1b
a5afdbe
2faea55
05a8c1c
b67c3c6
4dad320
c088a57
91e6955
9327d1e
5df0523
fc9178e
738d14d
dccf89e
9a8cc67
8c5cf81
6ee1c1e
5c5daad
f412721
8c53ad6
9482a79
883d645
4f788fc
1e19be8
7b689a2
152fa6e
c732e25
40f6e35
ab3e840
c29a35f
8663c3c
3ed6733
cb20690
da5279b
a32421a
3b1b4dd
37230be
c25d435
a57307f
1fe9611
e256556
e9ce7d9
91a3263
5e9f6fc
97a74cc
5384dce
7103cfc
ed2a7dc
8e18dc3
7961e29
5e1afb5
d9da03d
061934d
eb3103e
672ac92
dfc5de6
0984ffc
eaf9aa2
fe19a09
f93e231
2d5b9f5
60749f4
fa085d9
bc19659
5309a58
735b84e
f444eae
fe6e270
39b8bd0
eccc6a3
a6f3369
0b3920e
0e4a48c
2b3d6ff
f7528f8
2a1b7c2
cdaff6c
1af3d21
d243462
6f36c21
a60f392
bd11b7b
2b2b75e
6e54b5b
426802e
4e09785
89d211c
d450fb1
1a39a88
c2e354f
1405a98
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
@kotlarmilos @vargaz Do we need to prevent these m2n swiftcall wrappers from being inlined? I think there's logic in the mini-arm64 and mini-amd64 backends that depends on the
pinvoke
bit of the signature.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.
Is the inlining performed before or after the lowering process? Do the method prolog and epilog get inlined as well?
ArgSwiftError is handled differently in the method prolog, which could be affected when it is inlined. Also, there is a potential problem related to context registers clobbering when wrappers are inlined.
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.
These wrappers are not inlined right now.