wasm32-unknown-unknown "C" ABI doesn't use proper ABI adjustments #115666
Description
rustc has a PassMode
enum to declare how arguments should be passed between functions. PassMode::Direct
is used for the simple case where we can just generate LLVM IR with an argument type that matches the usual LLVM type for this Rust type. It should only be used for types with Scalar
or Vector
ABI; for larger types, Rust will generate LLVM struct/union types and those
- are sometimes adjusted to obtain better code generation
- make it very hard to reason about our effective ABI, since it depends on how LLVM lowers those complex struct types into an effective ABI. In particular, this causes a huge risk of violating our ABI compatibility guarantees, e.g. for
repr(transparent)
types.
Unfortunately the compiler never had an assertion ensuring that PassMode::Direct
is only used with Scalar
/Vector
types, and so one target accidentally broke this rule: wasm32-unknown-unknown. Later all wasm targets got an extern "wasm"
ABI that has the same issue. We should find some way to fix this target, as the current situation makes life harder for anyone wanting to tweak our Rust-to-LLVM-type-mapping, and for alternative backends that have to match our effective ABI.
The issue is that last time @bjorn3 tried to fix this, it lead to #81386 and had to be reverted. It will be basically impossible to do this change without breaking the ABI at least for some cases. I'm not sure how much ABI breakage we can get away with. This might have to be blocked on rust-lang/compiler-team#672 which should help to implement the current effective ABI at least for types that are ABI-stable (i.e., repr(C)
and repr(transparent)
).
Cc #122532
Activity