2018-09-20 18:57:25 +00:00
|
|
|
// compile-flags: -O
|
2022-03-21 19:30:54 +00:00
|
|
|
// min-llvm-version: 15.0
|
2022-12-30 15:06:55 +00:00
|
|
|
#![crate_type = "lib"]
|
2018-09-20 18:57:25 +00:00
|
|
|
|
|
|
|
use std::mem::MaybeUninit;
|
|
|
|
|
|
|
|
// Boxing a `MaybeUninit` value should not copy junk from the stack
|
|
|
|
#[no_mangle]
|
|
|
|
pub fn box_uninitialized() -> Box<MaybeUninit<usize>> {
|
|
|
|
// CHECK-LABEL: @box_uninitialized
|
|
|
|
// CHECK-NOT: store
|
2019-02-05 21:26:30 +00:00
|
|
|
// CHECK-NOT: alloca
|
|
|
|
// CHECK-NOT: memcpy
|
|
|
|
// CHECK-NOT: memset
|
2019-03-19 08:46:11 +00:00
|
|
|
Box::new(MaybeUninit::uninit())
|
2018-09-20 18:57:25 +00:00
|
|
|
}
|
2019-03-19 08:46:11 +00:00
|
|
|
|
2022-12-30 15:06:55 +00:00
|
|
|
// https://github.com/rust-lang/rust/issues/58201
|
|
|
|
#[no_mangle]
|
|
|
|
pub fn box_uninitialized2() -> Box<MaybeUninit<[usize; 1024 * 1024]>> {
|
|
|
|
// CHECK-LABEL: @box_uninitialized2
|
|
|
|
// CHECK-NOT: store
|
|
|
|
// CHECK-NOT: alloca
|
|
|
|
// CHECK-NOT: memcpy
|
|
|
|
// CHECK-NOT: memset
|
|
|
|
Box::new(MaybeUninit::uninit())
|
|
|
|
}
|
2022-03-21 19:30:54 +00:00
|
|
|
|
|
|
|
// Hide the `allocalign` attribute in the declaration of __rust_alloc
|
|
|
|
// from the CHECK-NOT above, and also verify the attributes got set reasonably.
|
|
|
|
// CHECK: declare noalias ptr @__rust_alloc(i{{[0-9]+}}, i{{[0-9]+}} allocalign) unnamed_addr [[RUST_ALLOC_ATTRS:#[0-9]+]]
|
|
|
|
|
|
|
|
// CHECK-DAG: attributes [[RUST_ALLOC_ATTRS]] = { {{.*}} allockind("alloc,uninitialized,aligned") allocsize(0) uwtable "alloc-family"="__rust_alloc" {{.*}} }
|