rust/compiler/rustc_middle/src/query
Luca Versari c8b76bcf58 Emit warning when calling/declaring functions with unavailable vectors.
On some architectures, vector types may have a different ABI depending
on whether the relevant target features are enabled. (The ABI when the
feature is disabled is often not specified, but LLVM implements some
de-facto ABI.)

As discussed in rust-lang/lang-team#235, this turns out to very easily
lead to unsound code.

This commit makes it a post-monomorphization future-incompat warning to
declare or call functions using those vector types in a context in which
the corresponding target features are disabled, if using an ABI for
which the difference is relevant. This ensures that these functions are
always called with a consistent ABI.

See the [nomination comment](https://github.com/rust-lang/rust/pull/127731#issuecomment-2288558187)
for more discussion.

Part of #116558
2024-11-01 22:24:35 +01:00
..
erase.rs Encode cross-crate opaque type origin 2024-10-31 01:35:13 +00:00
keys.rs move defining_opaque_types out of Canonical 2024-10-17 10:22:52 +02:00
mod.rs Emit warning when calling/declaring functions with unavailable vectors. 2024-11-01 22:24:35 +01:00
on_disk_cache.rs fix clippy::clone_on_ref_ptr for compiler 2024-10-28 18:05:08 +03:00
plumbing.rs TypingMode 🤔 2024-10-29 17:01:24 +01:00