-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
rustc_target: treat enum variants like union members, in call ABIs. #68443
Conversation
r? @estebank (rust_highfive has picked a reviewer for you, use r? to override) |
I've confirmed that my tests from #68190 are fixed by this PR. Thanks! #68190 (comment) |
ae66171
to
cc2f018
Compare
@sw17ch Thanks, I've included your commits! It might also be possible to test this via But I don't have a strong preference either way, as long as it's tested. Are we moving to a certain style of test for FFI interop, btw? r? @nagisa |
This comment has been minimized.
This comment has been minimized.
cc2f018
to
4543040
Compare
@eddyb great! I went with the test cases I did because they were the first ones I could find that glued C to Rust. I can try to add some of the non-C-like enumerations to |
I have added tests for the The tests added to The commit adding the additional tests is here: sw17ch@b3ed14a Note: I did ensure that there were failures before applying 88bfa00 and 4543040, but my branch orders the new tests after those commits. |
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.
Overall LGTM r=me.
I had to spend a few minutes trying to figure out why doing the "HACK" added by this PR is correct. Perhaps some additional commentary of why this transformation is correct is necessary there (perhaps just mentioning something along the lines of "in all instances where discriminant and union variants are in fact homogenous, this reinterpretation is always valid and equivalent")
src/test/run-make-fulldeps/arguments-non-c-like-enum/nonclike.rs
Outdated
Show resolved
Hide resolved
@eddyb is there anything else I can help with in this PR? I'm happy to make the suggested updates above if you'd like someone else to address the requests. I'm also unsure if you'd like to include the other tests I wrote using |
…nto rust with non-c-like-enums.
One calls into C functions passing non-c-like enumerations by value. The other calls into C expecting non-C-like enumerations as returns. These test cases are based on the tests provided by @bitwalker on issue rust-lang#68190. The original tests were provided at: https://github.com/bitwalker/rust_non_c_like_enums_issue/tree/2688d5c672bd4e289085fcdf1c6110e99e7e8ab1
4543040
to
d69b3b1
Compare
@bors r=nagisa |
📌 Commit d69b3b1 has been approved by |
⌛ Testing commit d69b3b1 with merge 62ab3070d4e94f62e51da3a6e1fe304f8a3467c2... |
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
💔 Test failed - checks-azure |
-include ../tools.mk | ||
|
||
all: | ||
$(CC) -c test.c -o $(call STATICLIB,test) $(EXTRACFLAGS) $(EXTRACXXFLAGS) |
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.
Before this PR, I can't find any use of this pattern, I think it should be:
all: $(call NATIVE_STATICLIB,test)
@bors r=nagisa |
📌 Commit d20e4aa has been approved by |
rustc_target: treat enum variants like union members, in call ABIs. Fixes #68190, by handling non-C-like `enum`s as-if they were an `union` of `struct`s, in call ABIs. Tests were provided by @sw17ch, from theirs and @bitwalker's original examples. cc @nagisa @rkruppe
☀️ Test successful - checks-azure |
Fixes #68190, by handling non-C-like
enum
s as-if they were anunion
ofstruct
s, in call ABIs.Tests were provided by @sw17ch, from theirs and @bitwalker's original examples.
cc @nagisa @rkruppe