]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_llvm/src/abi.rs
Auto merge of #99442 - Kobzol:revert-99062-lld-icf, r=Mark-Simulacrum
[rust.git] / compiler / rustc_codegen_llvm / src / abi.rs
1 use crate::attributes;
2 use crate::builder::Builder;
3 use crate::context::CodegenCx;
4 use crate::llvm::{self, Attribute, AttributePlace};
5 use crate::type_::Type;
6 use crate::type_of::LayoutLlvmExt;
7 use crate::value::Value;
8
9 use rustc_codegen_ssa::mir::operand::OperandValue;
10 use rustc_codegen_ssa::mir::place::PlaceRef;
11 use rustc_codegen_ssa::traits::*;
12 use rustc_codegen_ssa::MemFlags;
13 use rustc_middle::bug;
14 use rustc_middle::ty::layout::LayoutOf;
15 pub use rustc_middle::ty::layout::{FAT_PTR_ADDR, FAT_PTR_EXTRA};
16 use rustc_middle::ty::Ty;
17 use rustc_session::config;
18 use rustc_target::abi::call::ArgAbi;
19 pub use rustc_target::abi::call::*;
20 use rustc_target::abi::{self, HasDataLayout, Int};
21 pub use rustc_target::spec::abi::Abi;
22
23 use libc::c_uint;
24 use smallvec::SmallVec;
25
26 pub trait ArgAttributesExt {
27     fn apply_attrs_to_llfn(&self, idx: AttributePlace, cx: &CodegenCx<'_, '_>, llfn: &Value);
28     fn apply_attrs_to_callsite(
29         &self,
30         idx: AttributePlace,
31         cx: &CodegenCx<'_, '_>,
32         callsite: &Value,
33     );
34 }
35
36 fn should_use_mutable_noalias(cx: &CodegenCx<'_, '_>) -> bool {
37     // LLVM prior to version 12 had known miscompiles in the presence of
38     // noalias attributes (see #54878), but we don't support earlier
39     // versions at all anymore. We now enable mutable noalias by default.
40     cx.tcx.sess.opts.unstable_opts.mutable_noalias.unwrap_or(true)
41 }
42
43 const ABI_AFFECTING_ATTRIBUTES: [(ArgAttribute, llvm::AttributeKind); 1] =
44     [(ArgAttribute::InReg, llvm::AttributeKind::InReg)];
45
46 const OPTIMIZATION_ATTRIBUTES: [(ArgAttribute, llvm::AttributeKind); 5] = [
47     (ArgAttribute::NoAlias, llvm::AttributeKind::NoAlias),
48     (ArgAttribute::NoCapture, llvm::AttributeKind::NoCapture),
49     (ArgAttribute::NonNull, llvm::AttributeKind::NonNull),
50     (ArgAttribute::ReadOnly, llvm::AttributeKind::ReadOnly),
51     (ArgAttribute::NoUndef, llvm::AttributeKind::NoUndef),
52 ];
53
54 fn get_attrs<'ll>(this: &ArgAttributes, cx: &CodegenCx<'ll, '_>) -> SmallVec<[&'ll Attribute; 8]> {
55     let mut regular = this.regular;
56
57     let mut attrs = SmallVec::new();
58
59     // ABI-affecting attributes must always be applied
60     for (attr, llattr) in ABI_AFFECTING_ATTRIBUTES {
61         if regular.contains(attr) {
62             attrs.push(llattr.create_attr(cx.llcx));
63         }
64     }
65     if let Some(align) = this.pointee_align {
66         attrs.push(llvm::CreateAlignmentAttr(cx.llcx, align.bytes()));
67     }
68     match this.arg_ext {
69         ArgExtension::None => {}
70         ArgExtension::Zext => attrs.push(llvm::AttributeKind::ZExt.create_attr(cx.llcx)),
71         ArgExtension::Sext => attrs.push(llvm::AttributeKind::SExt.create_attr(cx.llcx)),
72     }
73
74     // Only apply remaining attributes when optimizing
75     if cx.sess().opts.optimize != config::OptLevel::No {
76         let deref = this.pointee_size.bytes();
77         if deref != 0 {
78             if regular.contains(ArgAttribute::NonNull) {
79                 attrs.push(llvm::CreateDereferenceableAttr(cx.llcx, deref));
80             } else {
81                 attrs.push(llvm::CreateDereferenceableOrNullAttr(cx.llcx, deref));
82             }
83             regular -= ArgAttribute::NonNull;
84         }
85         for (attr, llattr) in OPTIMIZATION_ATTRIBUTES {
86             if regular.contains(attr) {
87                 attrs.push(llattr.create_attr(cx.llcx));
88             }
89         }
90         if regular.contains(ArgAttribute::NoAliasMutRef) && should_use_mutable_noalias(cx) {
91             attrs.push(llvm::AttributeKind::NoAlias.create_attr(cx.llcx));
92         }
93     }
94
95     attrs
96 }
97
98 impl ArgAttributesExt for ArgAttributes {
99     fn apply_attrs_to_llfn(&self, idx: AttributePlace, cx: &CodegenCx<'_, '_>, llfn: &Value) {
100         let attrs = get_attrs(self, cx);
101         attributes::apply_to_llfn(llfn, idx, &attrs);
102     }
103
104     fn apply_attrs_to_callsite(
105         &self,
106         idx: AttributePlace,
107         cx: &CodegenCx<'_, '_>,
108         callsite: &Value,
109     ) {
110         let attrs = get_attrs(self, cx);
111         attributes::apply_to_callsite(callsite, idx, &attrs);
112     }
113 }
114
115 pub trait LlvmType {
116     fn llvm_type<'ll>(&self, cx: &CodegenCx<'ll, '_>) -> &'ll Type;
117 }
118
119 impl LlvmType for Reg {
120     fn llvm_type<'ll>(&self, cx: &CodegenCx<'ll, '_>) -> &'ll Type {
121         match self.kind {
122             RegKind::Integer => cx.type_ix(self.size.bits()),
123             RegKind::Float => match self.size.bits() {
124                 32 => cx.type_f32(),
125                 64 => cx.type_f64(),
126                 _ => bug!("unsupported float: {:?}", self),
127             },
128             RegKind::Vector => cx.type_vector(cx.type_i8(), self.size.bytes()),
129         }
130     }
131 }
132
133 impl LlvmType for CastTarget {
134     fn llvm_type<'ll>(&self, cx: &CodegenCx<'ll, '_>) -> &'ll Type {
135         let rest_ll_unit = self.rest.unit.llvm_type(cx);
136         let (rest_count, rem_bytes) = if self.rest.unit.size.bytes() == 0 {
137             (0, 0)
138         } else {
139             (
140                 self.rest.total.bytes() / self.rest.unit.size.bytes(),
141                 self.rest.total.bytes() % self.rest.unit.size.bytes(),
142             )
143         };
144
145         if self.prefix.iter().all(|x| x.is_none()) {
146             // Simplify to a single unit when there is no prefix and size <= unit size
147             if self.rest.total <= self.rest.unit.size {
148                 return rest_ll_unit;
149             }
150
151             // Simplify to array when all chunks are the same size and type
152             if rem_bytes == 0 {
153                 return cx.type_array(rest_ll_unit, rest_count);
154             }
155         }
156
157         // Create list of fields in the main structure
158         let mut args: Vec<_> = self
159             .prefix
160             .iter()
161             .flat_map(|option_reg| option_reg.map(|reg| reg.llvm_type(cx)))
162             .chain((0..rest_count).map(|_| rest_ll_unit))
163             .collect();
164
165         // Append final integer
166         if rem_bytes != 0 {
167             // Only integers can be really split further.
168             assert_eq!(self.rest.unit.kind, RegKind::Integer);
169             args.push(cx.type_ix(rem_bytes * 8));
170         }
171
172         cx.type_struct(&args, false)
173     }
174 }
175
176 pub trait ArgAbiExt<'ll, 'tcx> {
177     fn memory_ty(&self, cx: &CodegenCx<'ll, 'tcx>) -> &'ll Type;
178     fn store(
179         &self,
180         bx: &mut Builder<'_, 'll, 'tcx>,
181         val: &'ll Value,
182         dst: PlaceRef<'tcx, &'ll Value>,
183     );
184     fn store_fn_arg(
185         &self,
186         bx: &mut Builder<'_, 'll, 'tcx>,
187         idx: &mut usize,
188         dst: PlaceRef<'tcx, &'ll Value>,
189     );
190 }
191
192 impl<'ll, 'tcx> ArgAbiExt<'ll, 'tcx> for ArgAbi<'tcx, Ty<'tcx>> {
193     /// Gets the LLVM type for a place of the original Rust type of
194     /// this argument/return, i.e., the result of `type_of::type_of`.
195     fn memory_ty(&self, cx: &CodegenCx<'ll, 'tcx>) -> &'ll Type {
196         self.layout.llvm_type(cx)
197     }
198
199     /// Stores a direct/indirect value described by this ArgAbi into a
200     /// place for the original Rust type of this argument/return.
201     /// Can be used for both storing formal arguments into Rust variables
202     /// or results of call/invoke instructions into their destinations.
203     fn store(
204         &self,
205         bx: &mut Builder<'_, 'll, 'tcx>,
206         val: &'ll Value,
207         dst: PlaceRef<'tcx, &'ll Value>,
208     ) {
209         if self.is_ignore() {
210             return;
211         }
212         if self.is_sized_indirect() {
213             OperandValue::Ref(val, None, self.layout.align.abi).store(bx, dst)
214         } else if self.is_unsized_indirect() {
215             bug!("unsized `ArgAbi` must be handled through `store_fn_arg`");
216         } else if let PassMode::Cast(cast) = self.mode {
217             // FIXME(eddyb): Figure out when the simpler Store is safe, clang
218             // uses it for i16 -> {i8, i8}, but not for i24 -> {i8, i8, i8}.
219             let can_store_through_cast_ptr = false;
220             if can_store_through_cast_ptr {
221                 let cast_ptr_llty = bx.type_ptr_to(cast.llvm_type(bx));
222                 let cast_dst = bx.pointercast(dst.llval, cast_ptr_llty);
223                 bx.store(val, cast_dst, self.layout.align.abi);
224             } else {
225                 // The actual return type is a struct, but the ABI
226                 // adaptation code has cast it into some scalar type.  The
227                 // code that follows is the only reliable way I have
228                 // found to do a transform like i64 -> {i32,i32}.
229                 // Basically we dump the data onto the stack then memcpy it.
230                 //
231                 // Other approaches I tried:
232                 // - Casting rust ret pointer to the foreign type and using Store
233                 //   is (a) unsafe if size of foreign type > size of rust type and
234                 //   (b) runs afoul of strict aliasing rules, yielding invalid
235                 //   assembly under -O (specifically, the store gets removed).
236                 // - Truncating foreign type to correct integral type and then
237                 //   bitcasting to the struct type yields invalid cast errors.
238
239                 // We instead thus allocate some scratch space...
240                 let scratch_size = cast.size(bx);
241                 let scratch_align = cast.align(bx);
242                 let llscratch = bx.alloca(cast.llvm_type(bx), scratch_align);
243                 bx.lifetime_start(llscratch, scratch_size);
244
245                 // ... where we first store the value...
246                 bx.store(val, llscratch, scratch_align);
247
248                 // ... and then memcpy it to the intended destination.
249                 bx.memcpy(
250                     dst.llval,
251                     self.layout.align.abi,
252                     llscratch,
253                     scratch_align,
254                     bx.const_usize(self.layout.size.bytes()),
255                     MemFlags::empty(),
256                 );
257
258                 bx.lifetime_end(llscratch, scratch_size);
259             }
260         } else {
261             OperandValue::Immediate(val).store(bx, dst);
262         }
263     }
264
265     fn store_fn_arg(
266         &self,
267         bx: &mut Builder<'_, 'll, 'tcx>,
268         idx: &mut usize,
269         dst: PlaceRef<'tcx, &'ll Value>,
270     ) {
271         let mut next = || {
272             let val = llvm::get_param(bx.llfn(), *idx as c_uint);
273             *idx += 1;
274             val
275         };
276         match self.mode {
277             PassMode::Ignore => {}
278             PassMode::Pair(..) => {
279                 OperandValue::Pair(next(), next()).store(bx, dst);
280             }
281             PassMode::Indirect { attrs: _, extra_attrs: Some(_), on_stack: _ } => {
282                 OperandValue::Ref(next(), Some(next()), self.layout.align.abi).store(bx, dst);
283             }
284             PassMode::Direct(_)
285             | PassMode::Indirect { attrs: _, extra_attrs: None, on_stack: _ }
286             | PassMode::Cast(_) => {
287                 let next_arg = next();
288                 self.store(bx, next_arg, dst);
289             }
290         }
291     }
292 }
293
294 impl<'ll, 'tcx> ArgAbiMethods<'tcx> for Builder<'_, 'll, 'tcx> {
295     fn store_fn_arg(
296         &mut self,
297         arg_abi: &ArgAbi<'tcx, Ty<'tcx>>,
298         idx: &mut usize,
299         dst: PlaceRef<'tcx, Self::Value>,
300     ) {
301         arg_abi.store_fn_arg(self, idx, dst)
302     }
303     fn store_arg(
304         &mut self,
305         arg_abi: &ArgAbi<'tcx, Ty<'tcx>>,
306         val: &'ll Value,
307         dst: PlaceRef<'tcx, &'ll Value>,
308     ) {
309         arg_abi.store(self, val, dst)
310     }
311     fn arg_memory_ty(&self, arg_abi: &ArgAbi<'tcx, Ty<'tcx>>) -> &'ll Type {
312         arg_abi.memory_ty(self)
313     }
314 }
315
316 pub trait FnAbiLlvmExt<'ll, 'tcx> {
317     fn llvm_type(&self, cx: &CodegenCx<'ll, 'tcx>) -> &'ll Type;
318     fn ptr_to_llvm_type(&self, cx: &CodegenCx<'ll, 'tcx>) -> &'ll Type;
319     fn llvm_cconv(&self) -> llvm::CallConv;
320     fn apply_attrs_llfn(&self, cx: &CodegenCx<'ll, 'tcx>, llfn: &'ll Value);
321     fn apply_attrs_callsite(&self, bx: &mut Builder<'_, 'll, 'tcx>, callsite: &'ll Value);
322 }
323
324 impl<'ll, 'tcx> FnAbiLlvmExt<'ll, 'tcx> for FnAbi<'tcx, Ty<'tcx>> {
325     fn llvm_type(&self, cx: &CodegenCx<'ll, 'tcx>) -> &'ll Type {
326         // Ignore "extra" args from the call site for C variadic functions.
327         // Only the "fixed" args are part of the LLVM function signature.
328         let args = if self.c_variadic { &self.args[..self.fixed_count] } else { &self.args };
329
330         let args_capacity: usize = args.iter().map(|arg|
331             if arg.pad.is_some() { 1 } else { 0 } +
332             if let PassMode::Pair(_, _) = arg.mode { 2 } else { 1 }
333         ).sum();
334         let mut llargument_tys = Vec::with_capacity(
335             if let PassMode::Indirect { .. } = self.ret.mode { 1 } else { 0 } + args_capacity,
336         );
337
338         let llreturn_ty = match self.ret.mode {
339             PassMode::Ignore => cx.type_void(),
340             PassMode::Direct(_) | PassMode::Pair(..) => self.ret.layout.immediate_llvm_type(cx),
341             PassMode::Cast(cast) => cast.llvm_type(cx),
342             PassMode::Indirect { .. } => {
343                 llargument_tys.push(cx.type_ptr_to(self.ret.memory_ty(cx)));
344                 cx.type_void()
345             }
346         };
347
348         for arg in args {
349             // add padding
350             if let Some(ty) = arg.pad {
351                 llargument_tys.push(ty.llvm_type(cx));
352             }
353
354             let llarg_ty = match arg.mode {
355                 PassMode::Ignore => continue,
356                 PassMode::Direct(_) => arg.layout.immediate_llvm_type(cx),
357                 PassMode::Pair(..) => {
358                     llargument_tys.push(arg.layout.scalar_pair_element_llvm_type(cx, 0, true));
359                     llargument_tys.push(arg.layout.scalar_pair_element_llvm_type(cx, 1, true));
360                     continue;
361                 }
362                 PassMode::Indirect { attrs: _, extra_attrs: Some(_), on_stack: _ } => {
363                     let ptr_ty = cx.tcx.mk_mut_ptr(arg.layout.ty);
364                     let ptr_layout = cx.layout_of(ptr_ty);
365                     llargument_tys.push(ptr_layout.scalar_pair_element_llvm_type(cx, 0, true));
366                     llargument_tys.push(ptr_layout.scalar_pair_element_llvm_type(cx, 1, true));
367                     continue;
368                 }
369                 PassMode::Cast(cast) => cast.llvm_type(cx),
370                 PassMode::Indirect { attrs: _, extra_attrs: None, on_stack: _ } => {
371                     cx.type_ptr_to(arg.memory_ty(cx))
372                 }
373             };
374             llargument_tys.push(llarg_ty);
375         }
376
377         if self.c_variadic {
378             cx.type_variadic_func(&llargument_tys, llreturn_ty)
379         } else {
380             cx.type_func(&llargument_tys, llreturn_ty)
381         }
382     }
383
384     fn ptr_to_llvm_type(&self, cx: &CodegenCx<'ll, 'tcx>) -> &'ll Type {
385         unsafe {
386             llvm::LLVMPointerType(
387                 self.llvm_type(cx),
388                 cx.data_layout().instruction_address_space.0 as c_uint,
389             )
390         }
391     }
392
393     fn llvm_cconv(&self) -> llvm::CallConv {
394         match self.conv {
395             Conv::C | Conv::Rust | Conv::CCmseNonSecureCall => llvm::CCallConv,
396             Conv::RustCold => llvm::ColdCallConv,
397             Conv::AmdGpuKernel => llvm::AmdGpuKernel,
398             Conv::AvrInterrupt => llvm::AvrInterrupt,
399             Conv::AvrNonBlockingInterrupt => llvm::AvrNonBlockingInterrupt,
400             Conv::ArmAapcs => llvm::ArmAapcsCallConv,
401             Conv::Msp430Intr => llvm::Msp430Intr,
402             Conv::PtxKernel => llvm::PtxKernel,
403             Conv::X86Fastcall => llvm::X86FastcallCallConv,
404             Conv::X86Intr => llvm::X86_Intr,
405             Conv::X86Stdcall => llvm::X86StdcallCallConv,
406             Conv::X86ThisCall => llvm::X86_ThisCall,
407             Conv::X86VectorCall => llvm::X86_VectorCall,
408             Conv::X86_64SysV => llvm::X86_64_SysV,
409             Conv::X86_64Win64 => llvm::X86_64_Win64,
410         }
411     }
412
413     fn apply_attrs_llfn(&self, cx: &CodegenCx<'ll, 'tcx>, llfn: &'ll Value) {
414         let mut func_attrs = SmallVec::<[_; 2]>::new();
415         if self.ret.layout.abi.is_uninhabited() {
416             func_attrs.push(llvm::AttributeKind::NoReturn.create_attr(cx.llcx));
417         }
418         if !self.can_unwind {
419             func_attrs.push(llvm::AttributeKind::NoUnwind.create_attr(cx.llcx));
420         }
421         attributes::apply_to_llfn(llfn, llvm::AttributePlace::Function, &{ func_attrs });
422
423         let mut i = 0;
424         let mut apply = |attrs: &ArgAttributes| {
425             attrs.apply_attrs_to_llfn(llvm::AttributePlace::Argument(i), cx, llfn);
426             i += 1;
427             i - 1
428         };
429         match self.ret.mode {
430             PassMode::Direct(ref attrs) => {
431                 attrs.apply_attrs_to_llfn(llvm::AttributePlace::ReturnValue, cx, llfn);
432             }
433             PassMode::Indirect { ref attrs, extra_attrs: _, on_stack } => {
434                 assert!(!on_stack);
435                 let i = apply(attrs);
436                 let sret = llvm::CreateStructRetAttr(cx.llcx, self.ret.layout.llvm_type(cx));
437                 attributes::apply_to_llfn(llfn, llvm::AttributePlace::Argument(i), &[sret]);
438             }
439             PassMode::Cast(cast) => {
440                 cast.attrs.apply_attrs_to_llfn(llvm::AttributePlace::ReturnValue, cx, llfn);
441             }
442             _ => {}
443         }
444         for arg in &self.args {
445             if arg.pad.is_some() {
446                 apply(&ArgAttributes::new());
447             }
448             match arg.mode {
449                 PassMode::Ignore => {}
450                 PassMode::Indirect { ref attrs, extra_attrs: None, on_stack: true } => {
451                     let i = apply(attrs);
452                     let byval = llvm::CreateByValAttr(cx.llcx, arg.layout.llvm_type(cx));
453                     attributes::apply_to_llfn(llfn, llvm::AttributePlace::Argument(i), &[byval]);
454                 }
455                 PassMode::Direct(ref attrs)
456                 | PassMode::Indirect { ref attrs, extra_attrs: None, on_stack: false } => {
457                     apply(attrs);
458                 }
459                 PassMode::Indirect { ref attrs, extra_attrs: Some(ref extra_attrs), on_stack } => {
460                     assert!(!on_stack);
461                     apply(attrs);
462                     apply(extra_attrs);
463                 }
464                 PassMode::Pair(ref a, ref b) => {
465                     apply(a);
466                     apply(b);
467                 }
468                 PassMode::Cast(cast) => {
469                     apply(&cast.attrs);
470                 }
471             }
472         }
473     }
474
475     fn apply_attrs_callsite(&self, bx: &mut Builder<'_, 'll, 'tcx>, callsite: &'ll Value) {
476         let mut func_attrs = SmallVec::<[_; 2]>::new();
477         if self.ret.layout.abi.is_uninhabited() {
478             func_attrs.push(llvm::AttributeKind::NoReturn.create_attr(bx.cx.llcx));
479         }
480         if !self.can_unwind {
481             func_attrs.push(llvm::AttributeKind::NoUnwind.create_attr(bx.cx.llcx));
482         }
483         attributes::apply_to_callsite(callsite, llvm::AttributePlace::Function, &{ func_attrs });
484
485         let mut i = 0;
486         let mut apply = |cx: &CodegenCx<'_, '_>, attrs: &ArgAttributes| {
487             attrs.apply_attrs_to_callsite(llvm::AttributePlace::Argument(i), cx, callsite);
488             i += 1;
489             i - 1
490         };
491         match self.ret.mode {
492             PassMode::Direct(ref attrs) => {
493                 attrs.apply_attrs_to_callsite(llvm::AttributePlace::ReturnValue, bx.cx, callsite);
494             }
495             PassMode::Indirect { ref attrs, extra_attrs: _, on_stack } => {
496                 assert!(!on_stack);
497                 let i = apply(bx.cx, attrs);
498                 let sret = llvm::CreateStructRetAttr(bx.cx.llcx, self.ret.layout.llvm_type(bx));
499                 attributes::apply_to_callsite(callsite, llvm::AttributePlace::Argument(i), &[sret]);
500             }
501             PassMode::Cast(cast) => {
502                 cast.attrs.apply_attrs_to_callsite(
503                     llvm::AttributePlace::ReturnValue,
504                     &bx.cx,
505                     callsite,
506                 );
507             }
508             _ => {}
509         }
510         if let abi::Abi::Scalar(scalar) = self.ret.layout.abi {
511             // If the value is a boolean, the range is 0..2 and that ultimately
512             // become 0..0 when the type becomes i1, which would be rejected
513             // by the LLVM verifier.
514             if let Int(..) = scalar.primitive() {
515                 if !scalar.is_bool() && !scalar.is_always_valid(bx) {
516                     bx.range_metadata(callsite, scalar.valid_range(bx));
517                 }
518             }
519         }
520         for arg in &self.args {
521             if arg.pad.is_some() {
522                 apply(bx.cx, &ArgAttributes::new());
523             }
524             match arg.mode {
525                 PassMode::Ignore => {}
526                 PassMode::Indirect { ref attrs, extra_attrs: None, on_stack: true } => {
527                     let i = apply(bx.cx, attrs);
528                     let byval = llvm::CreateByValAttr(bx.cx.llcx, arg.layout.llvm_type(bx));
529                     attributes::apply_to_callsite(
530                         callsite,
531                         llvm::AttributePlace::Argument(i),
532                         &[byval],
533                     );
534                 }
535                 PassMode::Direct(ref attrs)
536                 | PassMode::Indirect { ref attrs, extra_attrs: None, on_stack: false } => {
537                     apply(bx.cx, attrs);
538                 }
539                 PassMode::Indirect {
540                     ref attrs,
541                     extra_attrs: Some(ref extra_attrs),
542                     on_stack: _,
543                 } => {
544                     apply(bx.cx, attrs);
545                     apply(bx.cx, extra_attrs);
546                 }
547                 PassMode::Pair(ref a, ref b) => {
548                     apply(bx.cx, a);
549                     apply(bx.cx, b);
550                 }
551                 PassMode::Cast(cast) => {
552                     apply(bx.cx, &cast.attrs);
553                 }
554             }
555         }
556
557         let cconv = self.llvm_cconv();
558         if cconv != llvm::CCallConv {
559             llvm::SetInstructionCallConv(callsite, cconv);
560         }
561
562         if self.conv == Conv::CCmseNonSecureCall {
563             // This will probably get ignored on all targets but those supporting the TrustZone-M
564             // extension (thumbv8m targets).
565             let cmse_nonsecure_call = llvm::CreateAttrString(bx.cx.llcx, "cmse_nonsecure_call");
566             attributes::apply_to_callsite(
567                 callsite,
568                 llvm::AttributePlace::Function,
569                 &[cmse_nonsecure_call],
570             );
571         }
572     }
573 }
574
575 impl<'tcx> AbiBuilderMethods<'tcx> for Builder<'_, '_, 'tcx> {
576     fn apply_attrs_callsite(&mut self, fn_abi: &FnAbi<'tcx, Ty<'tcx>>, callsite: Self::Value) {
577         fn_abi.apply_attrs_callsite(self, callsite)
578     }
579
580     fn get_param(&mut self, index: usize) -> Self::Value {
581         llvm::get_param(self.llfn(), index as c_uint)
582     }
583 }