645c0fddd2
Previously, it was only put on scalars with range validity invariants like bool, was uninit was obviously invalid for those. Since then, we have normatively declared all uninit primitives to be undefined behavior and can therefore put `noundef` on them. The remaining concern was the `mem::uninitialized` function, which cause quite a lot of UB in the older parts of the ecosystem. This function now doesn't return uninit values anymore, making users of it safe from this change. The only real sources of UB where people could encounter uninit primitives are `MaybeUninit::uninit().assume_init()`, which has always be clear in the docs about being UB and from heap allocations (like reading from the spare capacity of a vec. This is hopefully rare enough to not break anything.
23 lines
818 B
Rust
23 lines
818 B
Rust
// compile-flags: -C no-prepopulate-passes -Zmir-opt-level=0
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
// Hack to get the correct size for the length part in slices
|
|
// CHECK: @helper([[USIZE:i[0-9]+]] noundef %_1)
|
|
#[no_mangle]
|
|
pub fn helper(_: usize) {
|
|
}
|
|
|
|
// CHECK-LABEL: @ref_dst
|
|
#[no_mangle]
|
|
pub fn ref_dst(s: &[u8]) {
|
|
// We used to generate an extra alloca and memcpy to ref the dst, so check that we copy
|
|
// directly to the alloca for "x"
|
|
// CHECK: [[X0:%[0-9]+]] = getelementptr inbounds { {{\[0 x i8\]\*|ptr}}, [[USIZE]] }, {{.*}} %x, i32 0, i32 0
|
|
// CHECK: store {{\[0 x i8\]\*|ptr}} %s.0, {{.*}} [[X0]]
|
|
// CHECK: [[X1:%[0-9]+]] = getelementptr inbounds { {{\[0 x i8\]\*|ptr}}, [[USIZE]] }, {{.*}} %x, i32 0, i32 1
|
|
// CHECK: store [[USIZE]] %s.1, {{.*}} [[X1]]
|
|
|
|
let x = &*s;
|
|
&x; // keep variable in an alloca
|
|
}
|