-
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
Signedness of c_char differs on ARMv7 vs. x86_64 #48633
Comments
You should use (cc #41619, the portability lint should ensure user does not rely on |
If working e.g. with
Does this policy position solve an actual technical problem for users of Rust? It seems to cause one. |
There are actually quite a few targets with unsigned
It represents the reality of C, and deviating from this may cause subtle bugs too. |
This doesn't explain value to Rust. So far, I don't believe it's technically valuable to leak this part of C reality to Rust. So far, I believe it's actively harmful. (I also think it's bad for Rust to import foreign design quirks wholesale for the political reason of not having to make case-by-case technical decisions, possibly via the RFC process.)
What kind of bugs? In what kind of case would a Rust program want to vary its processing of depending on the signedness of C |
IIRC, ABIs can treat signed and unsigned integers differently (something like #31725). |
Ah, that makes sense for the types themselves. I was too much in the mode of thinking of pointers to |
On Linux on ARMv7,
c_char
isu8
. On Linux on x86_64,c_char
is `i8. See the XPCOM bug that caused me to find out.Does importing this design flaw of the C language into Rust solve any real problem, considering that Rust runs only on two's-complement systems and the FFI ABI for
u8
andi8
is the same?If not, I suggest making the signedness of
c_char
in Rust the same across platforms. Ideally, it would beu8
, but since x86_64 is the most common platform that developers use and it'si8
there, it might not be feasible to useu8
without breaking existing code. (Theoretically, changing the signedness for ARMv7 is a breaking change, but it practice, it isn't a breaking change for code that already compiles on x86_64 also, which is most crates except maybe some embedded specialty crates.)The text was updated successfully, but these errors were encountered: