Skip to content

Commit d0544fb

Browse files
committed
Set writable and dead_on_unwind attributes for sret arguments
1 parent dda102c commit d0544fb

File tree

6 files changed

+30
-2
lines changed

6 files changed

+30
-2
lines changed

compiler/rustc_codegen_llvm/src/abi.rs

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ use crate::attributes;
22
use crate::builder::Builder;
33
use crate::context::CodegenCx;
44
use crate::llvm::{self, Attribute, AttributePlace};
5+
use crate::llvm_util;
56
use crate::type_::Type;
67
use crate::type_of::LayoutLlvmExt;
78
use crate::value::Value;
@@ -426,6 +427,18 @@ impl<'ll, 'tcx> FnAbiLlvmExt<'ll, 'tcx> for FnAbi<'tcx, Ty<'tcx>> {
426427
let i = apply(attrs);
427428
let sret = llvm::CreateStructRetAttr(cx.llcx, self.ret.layout.llvm_type(cx));
428429
attributes::apply_to_llfn(llfn, llvm::AttributePlace::Argument(i), &[sret]);
430+
if cx.sess().opts.optimize != config::OptLevel::No
431+
&& llvm_util::get_version() >= (18, 0, 0)
432+
{
433+
attributes::apply_to_llfn(
434+
llfn,
435+
llvm::AttributePlace::Argument(i),
436+
&[
437+
llvm::AttributeKind::Writable.create_attr(cx.llcx),
438+
llvm::AttributeKind::DeadOnUnwind.create_attr(cx.llcx),
439+
],
440+
);
441+
}
429442
}
430443
PassMode::Cast { cast, pad_i32: _ } => {
431444
cast.attrs.apply_attrs_to_llfn(llvm::AttributePlace::ReturnValue, cx, llfn);

compiler/rustc_codegen_llvm/src/llvm/ffi.rs

+2
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,8 @@ pub enum AttributeKind {
199199
AllocAlign = 39,
200200
SanitizeSafeStack = 40,
201201
FnRetThunkExtern = 41,
202+
Writable = 42,
203+
DeadOnUnwind = 43,
202204
}
203205

204206
/// LLVMIntPredicate

compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h

+2
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ enum LLVMRustAttribute {
9191
AllocAlign = 39,
9292
SanitizeSafeStack = 40,
9393
FnRetThunkExtern = 41,
94+
Writable = 42,
95+
DeadOnUnwind = 43,
9496
};
9597

9698
typedef struct OpaqueRustString *RustStringRef;

compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,16 @@ static Attribute::AttrKind fromRust(LLVMRustAttribute Kind) {
278278
return Attribute::SafeStack;
279279
case FnRetThunkExtern:
280280
return Attribute::FnRetThunkExtern;
281+
#if LLVM_VERSION_GE(18, 0)
282+
case Writable:
283+
return Attribute::Writable;
284+
case DeadOnUnwind:
285+
return Attribute::DeadOnUnwind;
286+
#else
287+
case Writable:
288+
case DeadOnUnwind:
289+
report_fatal_error("Not supported on this LLVM version");
290+
#endif
281291
}
282292
report_fatal_error("bad AttributeKind");
283293
}

tests/codegen/function-arguments.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ pub fn notunpin_box(x: Box<NotUnpin>) -> Box<NotUnpin> {
188188
x
189189
}
190190

191-
// CHECK: @struct_return(ptr noalias nocapture noundef sret(%S) align 4 dereferenceable(32){{( %_0)?}})
191+
// CHECK: @struct_return(ptr{{( dead_on_unwind)?}} noalias nocapture noundef{{( writable)?}} sret(%S) align 4 dereferenceable(32){{( %_0)?}})
192192
#[no_mangle]
193193
pub fn struct_return() -> S {
194194
S {

tests/codegen/maybeuninit-rvo.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//@ compile-flags: -O
2+
//@ min-llvm-version: 18
23
#![feature(c_unwind)]
34
#![crate_type = "lib"]
45

@@ -24,7 +25,7 @@ extern "C-unwind" {
2425

2526
pub fn new_from_uninit_unwind() -> Foo {
2627
// CHECK-LABEL: new_from_uninit
27-
// CHECK: call void @llvm.memcpy.
28+
// CHECK-NOT: call void @llvm.memcpy.
2829
let mut x = std::mem::MaybeUninit::uninit();
2930
unsafe {
3031
init_unwind(x.as_mut_ptr());

0 commit comments

Comments
 (0)