]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_llvm/src/builder.rs
Rollup merge of #91938 - yaahc:error-reporter, r=m-ou-se
[rust.git] / compiler / rustc_codegen_llvm / src / builder.rs
1 use crate::common::Funclet;
2 use crate::context::CodegenCx;
3 use crate::llvm::{self, BasicBlock, False};
4 use crate::llvm::{AtomicOrdering, AtomicRmwBinOp, SynchronizationScope};
5 use crate::llvm_util;
6 use crate::type_::Type;
7 use crate::type_of::LayoutLlvmExt;
8 use crate::value::Value;
9 use cstr::cstr;
10 use libc::{c_char, c_uint};
11 use rustc_codegen_ssa::common::{IntPredicate, RealPredicate, TypeKind};
12 use rustc_codegen_ssa::mir::operand::{OperandRef, OperandValue};
13 use rustc_codegen_ssa::mir::place::PlaceRef;
14 use rustc_codegen_ssa::traits::*;
15 use rustc_codegen_ssa::MemFlags;
16 use rustc_data_structures::small_c_str::SmallCStr;
17 use rustc_hir::def_id::DefId;
18 use rustc_middle::ty::layout::{
19     FnAbiError, FnAbiOfHelpers, FnAbiRequest, LayoutError, LayoutOfHelpers, TyAndLayout,
20 };
21 use rustc_middle::ty::{self, Ty, TyCtxt};
22 use rustc_span::Span;
23 use rustc_target::abi::{self, call::FnAbi, Align, Size, WrappingRange};
24 use rustc_target::spec::{HasTargetSpec, Target};
25 use std::borrow::Cow;
26 use std::ffi::CStr;
27 use std::iter;
28 use std::ops::Deref;
29 use std::ptr;
30 use tracing::debug;
31
32 // All Builders must have an llfn associated with them
33 #[must_use]
34 pub struct Builder<'a, 'll, 'tcx> {
35     pub llbuilder: &'ll mut llvm::Builder<'ll>,
36     pub cx: &'a CodegenCx<'ll, 'tcx>,
37 }
38
39 impl Drop for Builder<'_, '_, '_> {
40     fn drop(&mut self) {
41         unsafe {
42             llvm::LLVMDisposeBuilder(&mut *(self.llbuilder as *mut _));
43         }
44     }
45 }
46
47 // FIXME(eddyb) use a checked constructor when they become `const fn`.
48 const EMPTY_C_STR: &CStr = unsafe { CStr::from_bytes_with_nul_unchecked(b"\0") };
49
50 /// Empty string, to be used where LLVM expects an instruction name, indicating
51 /// that the instruction is to be left unnamed (i.e. numbered, in textual IR).
52 // FIXME(eddyb) pass `&CStr` directly to FFI once it's a thin pointer.
53 const UNNAMED: *const c_char = EMPTY_C_STR.as_ptr();
54
55 impl<'ll, 'tcx> BackendTypes for Builder<'_, 'll, 'tcx> {
56     type Value = <CodegenCx<'ll, 'tcx> as BackendTypes>::Value;
57     type Function = <CodegenCx<'ll, 'tcx> as BackendTypes>::Function;
58     type BasicBlock = <CodegenCx<'ll, 'tcx> as BackendTypes>::BasicBlock;
59     type Type = <CodegenCx<'ll, 'tcx> as BackendTypes>::Type;
60     type Funclet = <CodegenCx<'ll, 'tcx> as BackendTypes>::Funclet;
61
62     type DIScope = <CodegenCx<'ll, 'tcx> as BackendTypes>::DIScope;
63     type DILocation = <CodegenCx<'ll, 'tcx> as BackendTypes>::DILocation;
64     type DIVariable = <CodegenCx<'ll, 'tcx> as BackendTypes>::DIVariable;
65 }
66
67 impl abi::HasDataLayout for Builder<'_, '_, '_> {
68     fn data_layout(&self) -> &abi::TargetDataLayout {
69         self.cx.data_layout()
70     }
71 }
72
73 impl<'tcx> ty::layout::HasTyCtxt<'tcx> for Builder<'_, '_, 'tcx> {
74     #[inline]
75     fn tcx(&self) -> TyCtxt<'tcx> {
76         self.cx.tcx
77     }
78 }
79
80 impl<'tcx> ty::layout::HasParamEnv<'tcx> for Builder<'_, '_, 'tcx> {
81     fn param_env(&self) -> ty::ParamEnv<'tcx> {
82         self.cx.param_env()
83     }
84 }
85
86 impl HasTargetSpec for Builder<'_, '_, '_> {
87     #[inline]
88     fn target_spec(&self) -> &Target {
89         self.cx.target_spec()
90     }
91 }
92
93 impl<'tcx> LayoutOfHelpers<'tcx> for Builder<'_, '_, 'tcx> {
94     type LayoutOfResult = TyAndLayout<'tcx>;
95
96     #[inline]
97     fn handle_layout_err(&self, err: LayoutError<'tcx>, span: Span, ty: Ty<'tcx>) -> ! {
98         self.cx.handle_layout_err(err, span, ty)
99     }
100 }
101
102 impl<'tcx> FnAbiOfHelpers<'tcx> for Builder<'_, '_, 'tcx> {
103     type FnAbiOfResult = &'tcx FnAbi<'tcx, Ty<'tcx>>;
104
105     #[inline]
106     fn handle_fn_abi_err(
107         &self,
108         err: FnAbiError<'tcx>,
109         span: Span,
110         fn_abi_request: FnAbiRequest<'tcx>,
111     ) -> ! {
112         self.cx.handle_fn_abi_err(err, span, fn_abi_request)
113     }
114 }
115
116 impl<'ll, 'tcx> Deref for Builder<'_, 'll, 'tcx> {
117     type Target = CodegenCx<'ll, 'tcx>;
118
119     #[inline]
120     fn deref(&self) -> &Self::Target {
121         self.cx
122     }
123 }
124
125 impl<'ll, 'tcx> HasCodegen<'tcx> for Builder<'_, 'll, 'tcx> {
126     type CodegenCx = CodegenCx<'ll, 'tcx>;
127 }
128
129 macro_rules! builder_methods_for_value_instructions {
130     ($($name:ident($($arg:ident),*) => $llvm_capi:ident),+ $(,)?) => {
131         $(fn $name(&mut self, $($arg: &'ll Value),*) -> &'ll Value {
132             unsafe {
133                 llvm::$llvm_capi(self.llbuilder, $($arg,)* UNNAMED)
134             }
135         })+
136     }
137 }
138
139 impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
140     fn build(cx: &'a CodegenCx<'ll, 'tcx>, llbb: &'ll BasicBlock) -> Self {
141         let bx = Builder::with_cx(cx);
142         unsafe {
143             llvm::LLVMPositionBuilderAtEnd(bx.llbuilder, llbb);
144         }
145         bx
146     }
147
148     fn cx(&self) -> &CodegenCx<'ll, 'tcx> {
149         self.cx
150     }
151
152     fn llbb(&self) -> &'ll BasicBlock {
153         unsafe { llvm::LLVMGetInsertBlock(self.llbuilder) }
154     }
155
156     fn set_span(&mut self, _span: Span) {}
157
158     fn append_block(cx: &'a CodegenCx<'ll, 'tcx>, llfn: &'ll Value, name: &str) -> &'ll BasicBlock {
159         unsafe {
160             let name = SmallCStr::new(name);
161             llvm::LLVMAppendBasicBlockInContext(cx.llcx, llfn, name.as_ptr())
162         }
163     }
164
165     fn append_sibling_block(&mut self, name: &str) -> &'ll BasicBlock {
166         Self::append_block(self.cx, self.llfn(), name)
167     }
168
169     fn build_sibling_block(&mut self, name: &str) -> Self {
170         let llbb = self.append_sibling_block(name);
171         Self::build(self.cx, llbb)
172     }
173
174     fn ret_void(&mut self) {
175         unsafe {
176             llvm::LLVMBuildRetVoid(self.llbuilder);
177         }
178     }
179
180     fn ret(&mut self, v: &'ll Value) {
181         unsafe {
182             llvm::LLVMBuildRet(self.llbuilder, v);
183         }
184     }
185
186     fn br(&mut self, dest: &'ll BasicBlock) {
187         unsafe {
188             llvm::LLVMBuildBr(self.llbuilder, dest);
189         }
190     }
191
192     fn cond_br(
193         &mut self,
194         cond: &'ll Value,
195         then_llbb: &'ll BasicBlock,
196         else_llbb: &'ll BasicBlock,
197     ) {
198         unsafe {
199             llvm::LLVMBuildCondBr(self.llbuilder, cond, then_llbb, else_llbb);
200         }
201     }
202
203     fn switch(
204         &mut self,
205         v: &'ll Value,
206         else_llbb: &'ll BasicBlock,
207         cases: impl ExactSizeIterator<Item = (u128, &'ll BasicBlock)>,
208     ) {
209         let switch =
210             unsafe { llvm::LLVMBuildSwitch(self.llbuilder, v, else_llbb, cases.len() as c_uint) };
211         for (on_val, dest) in cases {
212             let on_val = self.const_uint_big(self.val_ty(v), on_val);
213             unsafe { llvm::LLVMAddCase(switch, on_val, dest) }
214         }
215     }
216
217     fn invoke(
218         &mut self,
219         llty: &'ll Type,
220         llfn: &'ll Value,
221         args: &[&'ll Value],
222         then: &'ll BasicBlock,
223         catch: &'ll BasicBlock,
224         funclet: Option<&Funclet<'ll>>,
225     ) -> &'ll Value {
226         debug!("invoke {:?} with args ({:?})", llfn, args);
227
228         let args = self.check_call("invoke", llty, llfn, args);
229         let bundle = funclet.map(|funclet| funclet.bundle());
230         let bundle = bundle.as_ref().map(|b| &*b.raw);
231
232         unsafe {
233             llvm::LLVMRustBuildInvoke(
234                 self.llbuilder,
235                 llty,
236                 llfn,
237                 args.as_ptr(),
238                 args.len() as c_uint,
239                 then,
240                 catch,
241                 bundle,
242                 UNNAMED,
243             )
244         }
245     }
246
247     fn unreachable(&mut self) {
248         unsafe {
249             llvm::LLVMBuildUnreachable(self.llbuilder);
250         }
251     }
252
253     builder_methods_for_value_instructions! {
254         add(a, b) => LLVMBuildAdd,
255         fadd(a, b) => LLVMBuildFAdd,
256         sub(a, b) => LLVMBuildSub,
257         fsub(a, b) => LLVMBuildFSub,
258         mul(a, b) => LLVMBuildMul,
259         fmul(a, b) => LLVMBuildFMul,
260         udiv(a, b) => LLVMBuildUDiv,
261         exactudiv(a, b) => LLVMBuildExactUDiv,
262         sdiv(a, b) => LLVMBuildSDiv,
263         exactsdiv(a, b) => LLVMBuildExactSDiv,
264         fdiv(a, b) => LLVMBuildFDiv,
265         urem(a, b) => LLVMBuildURem,
266         srem(a, b) => LLVMBuildSRem,
267         frem(a, b) => LLVMBuildFRem,
268         shl(a, b) => LLVMBuildShl,
269         lshr(a, b) => LLVMBuildLShr,
270         ashr(a, b) => LLVMBuildAShr,
271         and(a, b) => LLVMBuildAnd,
272         or(a, b) => LLVMBuildOr,
273         xor(a, b) => LLVMBuildXor,
274         neg(x) => LLVMBuildNeg,
275         fneg(x) => LLVMBuildFNeg,
276         not(x) => LLVMBuildNot,
277         unchecked_sadd(x, y) => LLVMBuildNSWAdd,
278         unchecked_uadd(x, y) => LLVMBuildNUWAdd,
279         unchecked_ssub(x, y) => LLVMBuildNSWSub,
280         unchecked_usub(x, y) => LLVMBuildNUWSub,
281         unchecked_smul(x, y) => LLVMBuildNSWMul,
282         unchecked_umul(x, y) => LLVMBuildNUWMul,
283     }
284
285     fn fadd_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
286         unsafe {
287             let instr = llvm::LLVMBuildFAdd(self.llbuilder, lhs, rhs, UNNAMED);
288             llvm::LLVMRustSetFastMath(instr);
289             instr
290         }
291     }
292
293     fn fsub_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
294         unsafe {
295             let instr = llvm::LLVMBuildFSub(self.llbuilder, lhs, rhs, UNNAMED);
296             llvm::LLVMRustSetFastMath(instr);
297             instr
298         }
299     }
300
301     fn fmul_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
302         unsafe {
303             let instr = llvm::LLVMBuildFMul(self.llbuilder, lhs, rhs, UNNAMED);
304             llvm::LLVMRustSetFastMath(instr);
305             instr
306         }
307     }
308
309     fn fdiv_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
310         unsafe {
311             let instr = llvm::LLVMBuildFDiv(self.llbuilder, lhs, rhs, UNNAMED);
312             llvm::LLVMRustSetFastMath(instr);
313             instr
314         }
315     }
316
317     fn frem_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
318         unsafe {
319             let instr = llvm::LLVMBuildFRem(self.llbuilder, lhs, rhs, UNNAMED);
320             llvm::LLVMRustSetFastMath(instr);
321             instr
322         }
323     }
324
325     fn checked_binop(
326         &mut self,
327         oop: OverflowOp,
328         ty: Ty<'_>,
329         lhs: Self::Value,
330         rhs: Self::Value,
331     ) -> (Self::Value, Self::Value) {
332         use rustc_middle::ty::{Int, Uint};
333         use rustc_middle::ty::{IntTy::*, UintTy::*};
334
335         let new_kind = match ty.kind() {
336             Int(t @ Isize) => Int(t.normalize(self.tcx.sess.target.pointer_width)),
337             Uint(t @ Usize) => Uint(t.normalize(self.tcx.sess.target.pointer_width)),
338             t @ (Uint(_) | Int(_)) => t.clone(),
339             _ => panic!("tried to get overflow intrinsic for op applied to non-int type"),
340         };
341
342         let name = match oop {
343             OverflowOp::Add => match new_kind {
344                 Int(I8) => "llvm.sadd.with.overflow.i8",
345                 Int(I16) => "llvm.sadd.with.overflow.i16",
346                 Int(I32) => "llvm.sadd.with.overflow.i32",
347                 Int(I64) => "llvm.sadd.with.overflow.i64",
348                 Int(I128) => "llvm.sadd.with.overflow.i128",
349
350                 Uint(U8) => "llvm.uadd.with.overflow.i8",
351                 Uint(U16) => "llvm.uadd.with.overflow.i16",
352                 Uint(U32) => "llvm.uadd.with.overflow.i32",
353                 Uint(U64) => "llvm.uadd.with.overflow.i64",
354                 Uint(U128) => "llvm.uadd.with.overflow.i128",
355
356                 _ => unreachable!(),
357             },
358             OverflowOp::Sub => match new_kind {
359                 Int(I8) => "llvm.ssub.with.overflow.i8",
360                 Int(I16) => "llvm.ssub.with.overflow.i16",
361                 Int(I32) => "llvm.ssub.with.overflow.i32",
362                 Int(I64) => "llvm.ssub.with.overflow.i64",
363                 Int(I128) => "llvm.ssub.with.overflow.i128",
364
365                 Uint(U8) => "llvm.usub.with.overflow.i8",
366                 Uint(U16) => "llvm.usub.with.overflow.i16",
367                 Uint(U32) => "llvm.usub.with.overflow.i32",
368                 Uint(U64) => "llvm.usub.with.overflow.i64",
369                 Uint(U128) => "llvm.usub.with.overflow.i128",
370
371                 _ => unreachable!(),
372             },
373             OverflowOp::Mul => match new_kind {
374                 Int(I8) => "llvm.smul.with.overflow.i8",
375                 Int(I16) => "llvm.smul.with.overflow.i16",
376                 Int(I32) => "llvm.smul.with.overflow.i32",
377                 Int(I64) => "llvm.smul.with.overflow.i64",
378                 Int(I128) => "llvm.smul.with.overflow.i128",
379
380                 Uint(U8) => "llvm.umul.with.overflow.i8",
381                 Uint(U16) => "llvm.umul.with.overflow.i16",
382                 Uint(U32) => "llvm.umul.with.overflow.i32",
383                 Uint(U64) => "llvm.umul.with.overflow.i64",
384                 Uint(U128) => "llvm.umul.with.overflow.i128",
385
386                 _ => unreachable!(),
387             },
388         };
389
390         let res = self.call_intrinsic(name, &[lhs, rhs]);
391         (self.extract_value(res, 0), self.extract_value(res, 1))
392     }
393
394     fn from_immediate(&mut self, val: Self::Value) -> Self::Value {
395         if self.cx().val_ty(val) == self.cx().type_i1() {
396             self.zext(val, self.cx().type_i8())
397         } else {
398             val
399         }
400     }
401     fn to_immediate_scalar(&mut self, val: Self::Value, scalar: abi::Scalar) -> Self::Value {
402         if scalar.is_bool() {
403             return self.trunc(val, self.cx().type_i1());
404         }
405         val
406     }
407
408     fn alloca(&mut self, ty: &'ll Type, align: Align) -> &'ll Value {
409         let mut bx = Builder::with_cx(self.cx);
410         bx.position_at_start(unsafe { llvm::LLVMGetFirstBasicBlock(self.llfn()) });
411         bx.dynamic_alloca(ty, align)
412     }
413
414     fn dynamic_alloca(&mut self, ty: &'ll Type, align: Align) -> &'ll Value {
415         unsafe {
416             let alloca = llvm::LLVMBuildAlloca(self.llbuilder, ty, UNNAMED);
417             llvm::LLVMSetAlignment(alloca, align.bytes() as c_uint);
418             alloca
419         }
420     }
421
422     fn array_alloca(&mut self, ty: &'ll Type, len: &'ll Value, align: Align) -> &'ll Value {
423         unsafe {
424             let alloca = llvm::LLVMBuildArrayAlloca(self.llbuilder, ty, len, UNNAMED);
425             llvm::LLVMSetAlignment(alloca, align.bytes() as c_uint);
426             alloca
427         }
428     }
429
430     fn load(&mut self, ty: &'ll Type, ptr: &'ll Value, align: Align) -> &'ll Value {
431         unsafe {
432             let load = llvm::LLVMBuildLoad2(self.llbuilder, ty, ptr, UNNAMED);
433             llvm::LLVMSetAlignment(load, align.bytes() as c_uint);
434             load
435         }
436     }
437
438     fn volatile_load(&mut self, ty: &'ll Type, ptr: &'ll Value) -> &'ll Value {
439         unsafe {
440             let load = llvm::LLVMBuildLoad2(self.llbuilder, ty, ptr, UNNAMED);
441             llvm::LLVMSetVolatile(load, llvm::True);
442             load
443         }
444     }
445
446     fn atomic_load(
447         &mut self,
448         ty: &'ll Type,
449         ptr: &'ll Value,
450         order: rustc_codegen_ssa::common::AtomicOrdering,
451         size: Size,
452     ) -> &'ll Value {
453         unsafe {
454             let load = llvm::LLVMRustBuildAtomicLoad(
455                 self.llbuilder,
456                 ty,
457                 ptr,
458                 UNNAMED,
459                 AtomicOrdering::from_generic(order),
460             );
461             // LLVM requires the alignment of atomic loads to be at least the size of the type.
462             llvm::LLVMSetAlignment(load, size.bytes() as c_uint);
463             load
464         }
465     }
466
467     fn load_operand(&mut self, place: PlaceRef<'tcx, &'ll Value>) -> OperandRef<'tcx, &'ll Value> {
468         debug!("PlaceRef::load: {:?}", place);
469
470         assert_eq!(place.llextra.is_some(), place.layout.is_unsized());
471
472         if place.layout.is_zst() {
473             return OperandRef::new_zst(self, place.layout);
474         }
475
476         fn scalar_load_metadata<'a, 'll, 'tcx>(
477             bx: &mut Builder<'a, 'll, 'tcx>,
478             load: &'ll Value,
479             scalar: abi::Scalar,
480         ) {
481             match scalar.value {
482                 abi::Int(..) => {
483                     if !scalar.is_always_valid(bx) {
484                         bx.range_metadata(load, scalar.valid_range);
485                     }
486                 }
487                 abi::Pointer if !scalar.valid_range.contains(0) => {
488                     bx.nonnull_metadata(load);
489                 }
490                 _ => {}
491             }
492         }
493
494         let val = if let Some(llextra) = place.llextra {
495             OperandValue::Ref(place.llval, Some(llextra), place.align)
496         } else if place.layout.is_llvm_immediate() {
497             let mut const_llval = None;
498             unsafe {
499                 if let Some(global) = llvm::LLVMIsAGlobalVariable(place.llval) {
500                     if llvm::LLVMIsGlobalConstant(global) == llvm::True {
501                         const_llval = llvm::LLVMGetInitializer(global);
502                     }
503                 }
504             }
505             let llval = const_llval.unwrap_or_else(|| {
506                 let load = self.load(place.layout.llvm_type(self), place.llval, place.align);
507                 if let abi::Abi::Scalar(scalar) = place.layout.abi {
508                     scalar_load_metadata(self, load, scalar);
509                 }
510                 load
511             });
512             OperandValue::Immediate(self.to_immediate(llval, place.layout))
513         } else if let abi::Abi::ScalarPair(a, b) = place.layout.abi {
514             let b_offset = a.value.size(self).align_to(b.value.align(self).abi);
515             let pair_ty = place.layout.llvm_type(self);
516
517             let mut load = |i, scalar: abi::Scalar, align| {
518                 let llptr = self.struct_gep(pair_ty, place.llval, i as u64);
519                 let llty = place.layout.scalar_pair_element_llvm_type(self, i, false);
520                 let load = self.load(llty, llptr, align);
521                 scalar_load_metadata(self, load, scalar);
522                 self.to_immediate_scalar(load, scalar)
523             };
524
525             OperandValue::Pair(
526                 load(0, a, place.align),
527                 load(1, b, place.align.restrict_for_offset(b_offset)),
528             )
529         } else {
530             OperandValue::Ref(place.llval, None, place.align)
531         };
532
533         OperandRef { val, layout: place.layout }
534     }
535
536     fn write_operand_repeatedly(
537         mut self,
538         cg_elem: OperandRef<'tcx, &'ll Value>,
539         count: u64,
540         dest: PlaceRef<'tcx, &'ll Value>,
541     ) -> Self {
542         let zero = self.const_usize(0);
543         let count = self.const_usize(count);
544         let start = dest.project_index(&mut self, zero).llval;
545         let end = dest.project_index(&mut self, count).llval;
546
547         let mut header_bx = self.build_sibling_block("repeat_loop_header");
548         let mut body_bx = self.build_sibling_block("repeat_loop_body");
549         let next_bx = self.build_sibling_block("repeat_loop_next");
550
551         self.br(header_bx.llbb());
552         let current = header_bx.phi(self.val_ty(start), &[start], &[self.llbb()]);
553
554         let keep_going = header_bx.icmp(IntPredicate::IntNE, current, end);
555         header_bx.cond_br(keep_going, body_bx.llbb(), next_bx.llbb());
556
557         let align = dest.align.restrict_for_offset(dest.layout.field(self.cx(), 0).size);
558         cg_elem
559             .val
560             .store(&mut body_bx, PlaceRef::new_sized_aligned(current, cg_elem.layout, align));
561
562         let next = body_bx.inbounds_gep(
563             self.backend_type(cg_elem.layout),
564             current,
565             &[self.const_usize(1)],
566         );
567         body_bx.br(header_bx.llbb());
568         header_bx.add_incoming_to_phi(current, next, body_bx.llbb());
569
570         next_bx
571     }
572
573     fn range_metadata(&mut self, load: &'ll Value, range: WrappingRange) {
574         if self.sess().target.arch == "amdgpu" {
575             // amdgpu/LLVM does something weird and thinks an i64 value is
576             // split into a v2i32, halving the bitwidth LLVM expects,
577             // tripping an assertion. So, for now, just disable this
578             // optimization.
579             return;
580         }
581
582         unsafe {
583             let llty = self.cx.val_ty(load);
584             let v = [
585                 self.cx.const_uint_big(llty, range.start),
586                 self.cx.const_uint_big(llty, range.end.wrapping_add(1)),
587             ];
588
589             llvm::LLVMSetMetadata(
590                 load,
591                 llvm::MD_range as c_uint,
592                 llvm::LLVMMDNodeInContext(self.cx.llcx, v.as_ptr(), v.len() as c_uint),
593             );
594         }
595     }
596
597     fn nonnull_metadata(&mut self, load: &'ll Value) {
598         unsafe {
599             llvm::LLVMSetMetadata(
600                 load,
601                 llvm::MD_nonnull as c_uint,
602                 llvm::LLVMMDNodeInContext(self.cx.llcx, ptr::null(), 0),
603             );
604         }
605     }
606
607     fn type_metadata(&mut self, function: &'ll Value, typeid: String) {
608         let typeid_metadata = self.typeid_metadata(typeid);
609         let v = [self.const_usize(0), typeid_metadata];
610         unsafe {
611             llvm::LLVMGlobalSetMetadata(
612                 function,
613                 llvm::MD_type as c_uint,
614                 llvm::LLVMValueAsMetadata(llvm::LLVMMDNodeInContext(
615                     self.cx.llcx,
616                     v.as_ptr(),
617                     v.len() as c_uint,
618                 )),
619             )
620         }
621     }
622
623     fn typeid_metadata(&mut self, typeid: String) -> Self::Value {
624         unsafe {
625             llvm::LLVMMDStringInContext(
626                 self.cx.llcx,
627                 typeid.as_ptr() as *const c_char,
628                 typeid.as_bytes().len() as c_uint,
629             )
630         }
631     }
632
633     fn store(&mut self, val: &'ll Value, ptr: &'ll Value, align: Align) -> &'ll Value {
634         self.store_with_flags(val, ptr, align, MemFlags::empty())
635     }
636
637     fn store_with_flags(
638         &mut self,
639         val: &'ll Value,
640         ptr: &'ll Value,
641         align: Align,
642         flags: MemFlags,
643     ) -> &'ll Value {
644         debug!("Store {:?} -> {:?} ({:?})", val, ptr, flags);
645         let ptr = self.check_store(val, ptr);
646         unsafe {
647             let store = llvm::LLVMBuildStore(self.llbuilder, val, ptr);
648             let align =
649                 if flags.contains(MemFlags::UNALIGNED) { 1 } else { align.bytes() as c_uint };
650             llvm::LLVMSetAlignment(store, align);
651             if flags.contains(MemFlags::VOLATILE) {
652                 llvm::LLVMSetVolatile(store, llvm::True);
653             }
654             if flags.contains(MemFlags::NONTEMPORAL) {
655                 // According to LLVM [1] building a nontemporal store must
656                 // *always* point to a metadata value of the integer 1.
657                 //
658                 // [1]: https://llvm.org/docs/LangRef.html#store-instruction
659                 let one = self.cx.const_i32(1);
660                 let node = llvm::LLVMMDNodeInContext(self.cx.llcx, &one, 1);
661                 llvm::LLVMSetMetadata(store, llvm::MD_nontemporal as c_uint, node);
662             }
663             store
664         }
665     }
666
667     fn atomic_store(
668         &mut self,
669         val: &'ll Value,
670         ptr: &'ll Value,
671         order: rustc_codegen_ssa::common::AtomicOrdering,
672         size: Size,
673     ) {
674         debug!("Store {:?} -> {:?}", val, ptr);
675         let ptr = self.check_store(val, ptr);
676         unsafe {
677             let store = llvm::LLVMRustBuildAtomicStore(
678                 self.llbuilder,
679                 val,
680                 ptr,
681                 AtomicOrdering::from_generic(order),
682             );
683             // LLVM requires the alignment of atomic stores to be at least the size of the type.
684             llvm::LLVMSetAlignment(store, size.bytes() as c_uint);
685         }
686     }
687
688     fn gep(&mut self, ty: &'ll Type, ptr: &'ll Value, indices: &[&'ll Value]) -> &'ll Value {
689         unsafe {
690             llvm::LLVMBuildGEP2(
691                 self.llbuilder,
692                 ty,
693                 ptr,
694                 indices.as_ptr(),
695                 indices.len() as c_uint,
696                 UNNAMED,
697             )
698         }
699     }
700
701     fn inbounds_gep(
702         &mut self,
703         ty: &'ll Type,
704         ptr: &'ll Value,
705         indices: &[&'ll Value],
706     ) -> &'ll Value {
707         unsafe {
708             llvm::LLVMBuildInBoundsGEP2(
709                 self.llbuilder,
710                 ty,
711                 ptr,
712                 indices.as_ptr(),
713                 indices.len() as c_uint,
714                 UNNAMED,
715             )
716         }
717     }
718
719     fn struct_gep(&mut self, ty: &'ll Type, ptr: &'ll Value, idx: u64) -> &'ll Value {
720         assert_eq!(idx as c_uint as u64, idx);
721         unsafe { llvm::LLVMBuildStructGEP2(self.llbuilder, ty, ptr, idx as c_uint, UNNAMED) }
722     }
723
724     /* Casts */
725     fn trunc(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
726         unsafe { llvm::LLVMBuildTrunc(self.llbuilder, val, dest_ty, UNNAMED) }
727     }
728
729     fn sext(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
730         unsafe { llvm::LLVMBuildSExt(self.llbuilder, val, dest_ty, UNNAMED) }
731     }
732
733     fn fptoui_sat(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> Option<&'ll Value> {
734         if !self.fptoint_sat_broken_in_llvm() {
735             let src_ty = self.cx.val_ty(val);
736             let float_width = self.cx.float_width(src_ty);
737             let int_width = self.cx.int_width(dest_ty);
738             let name = format!("llvm.fptoui.sat.i{}.f{}", int_width, float_width);
739             return Some(self.call_intrinsic(&name, &[val]));
740         }
741
742         None
743     }
744
745     fn fptosi_sat(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> Option<&'ll Value> {
746         if !self.fptoint_sat_broken_in_llvm() {
747             let src_ty = self.cx.val_ty(val);
748             let float_width = self.cx.float_width(src_ty);
749             let int_width = self.cx.int_width(dest_ty);
750             let name = format!("llvm.fptosi.sat.i{}.f{}", int_width, float_width);
751             return Some(self.call_intrinsic(&name, &[val]));
752         }
753
754         None
755     }
756
757     fn fptoui(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
758         // On WebAssembly the `fptoui` and `fptosi` instructions currently have
759         // poor codegen. The reason for this is that the corresponding wasm
760         // instructions, `i32.trunc_f32_s` for example, will trap when the float
761         // is out-of-bounds, infinity, or nan. This means that LLVM
762         // automatically inserts control flow around `fptoui` and `fptosi`
763         // because the LLVM instruction `fptoui` is defined as producing a
764         // poison value, not having UB on out-of-bounds values.
765         //
766         // This method, however, is only used with non-saturating casts that
767         // have UB on out-of-bounds values. This means that it's ok if we use
768         // the raw wasm instruction since out-of-bounds values can do whatever
769         // we like. To ensure that LLVM picks the right instruction we choose
770         // the raw wasm intrinsic functions which avoid LLVM inserting all the
771         // other control flow automatically.
772         if self.sess().target.is_like_wasm {
773             let src_ty = self.cx.val_ty(val);
774             if self.cx.type_kind(src_ty) != TypeKind::Vector {
775                 let float_width = self.cx.float_width(src_ty);
776                 let int_width = self.cx.int_width(dest_ty);
777                 let name = match (int_width, float_width) {
778                     (32, 32) => Some("llvm.wasm.trunc.unsigned.i32.f32"),
779                     (32, 64) => Some("llvm.wasm.trunc.unsigned.i32.f64"),
780                     (64, 32) => Some("llvm.wasm.trunc.unsigned.i64.f32"),
781                     (64, 64) => Some("llvm.wasm.trunc.unsigned.i64.f64"),
782                     _ => None,
783                 };
784                 if let Some(name) = name {
785                     return self.call_intrinsic(name, &[val]);
786                 }
787             }
788         }
789         unsafe { llvm::LLVMBuildFPToUI(self.llbuilder, val, dest_ty, UNNAMED) }
790     }
791
792     fn fptosi(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
793         // see `fptoui` above for why wasm is different here
794         if self.sess().target.is_like_wasm {
795             let src_ty = self.cx.val_ty(val);
796             if self.cx.type_kind(src_ty) != TypeKind::Vector {
797                 let float_width = self.cx.float_width(src_ty);
798                 let int_width = self.cx.int_width(dest_ty);
799                 let name = match (int_width, float_width) {
800                     (32, 32) => Some("llvm.wasm.trunc.signed.i32.f32"),
801                     (32, 64) => Some("llvm.wasm.trunc.signed.i32.f64"),
802                     (64, 32) => Some("llvm.wasm.trunc.signed.i64.f32"),
803                     (64, 64) => Some("llvm.wasm.trunc.signed.i64.f64"),
804                     _ => None,
805                 };
806                 if let Some(name) = name {
807                     return self.call_intrinsic(name, &[val]);
808                 }
809             }
810         }
811         unsafe { llvm::LLVMBuildFPToSI(self.llbuilder, val, dest_ty, UNNAMED) }
812     }
813
814     fn uitofp(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
815         unsafe { llvm::LLVMBuildUIToFP(self.llbuilder, val, dest_ty, UNNAMED) }
816     }
817
818     fn sitofp(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
819         unsafe { llvm::LLVMBuildSIToFP(self.llbuilder, val, dest_ty, UNNAMED) }
820     }
821
822     fn fptrunc(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
823         unsafe { llvm::LLVMBuildFPTrunc(self.llbuilder, val, dest_ty, UNNAMED) }
824     }
825
826     fn fpext(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
827         unsafe { llvm::LLVMBuildFPExt(self.llbuilder, val, dest_ty, UNNAMED) }
828     }
829
830     fn ptrtoint(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
831         unsafe { llvm::LLVMBuildPtrToInt(self.llbuilder, val, dest_ty, UNNAMED) }
832     }
833
834     fn inttoptr(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
835         unsafe { llvm::LLVMBuildIntToPtr(self.llbuilder, val, dest_ty, UNNAMED) }
836     }
837
838     fn bitcast(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
839         unsafe { llvm::LLVMBuildBitCast(self.llbuilder, val, dest_ty, UNNAMED) }
840     }
841
842     fn intcast(&mut self, val: &'ll Value, dest_ty: &'ll Type, is_signed: bool) -> &'ll Value {
843         unsafe { llvm::LLVMRustBuildIntCast(self.llbuilder, val, dest_ty, is_signed) }
844     }
845
846     fn pointercast(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
847         unsafe { llvm::LLVMBuildPointerCast(self.llbuilder, val, dest_ty, UNNAMED) }
848     }
849
850     /* Comparisons */
851     fn icmp(&mut self, op: IntPredicate, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
852         let op = llvm::IntPredicate::from_generic(op);
853         unsafe { llvm::LLVMBuildICmp(self.llbuilder, op as c_uint, lhs, rhs, UNNAMED) }
854     }
855
856     fn fcmp(&mut self, op: RealPredicate, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
857         let op = llvm::RealPredicate::from_generic(op);
858         unsafe { llvm::LLVMBuildFCmp(self.llbuilder, op as c_uint, lhs, rhs, UNNAMED) }
859     }
860
861     /* Miscellaneous instructions */
862     fn memcpy(
863         &mut self,
864         dst: &'ll Value,
865         dst_align: Align,
866         src: &'ll Value,
867         src_align: Align,
868         size: &'ll Value,
869         flags: MemFlags,
870     ) {
871         assert!(!flags.contains(MemFlags::NONTEMPORAL), "non-temporal memcpy not supported");
872         let size = self.intcast(size, self.type_isize(), false);
873         let is_volatile = flags.contains(MemFlags::VOLATILE);
874         let dst = self.pointercast(dst, self.type_i8p());
875         let src = self.pointercast(src, self.type_i8p());
876         unsafe {
877             llvm::LLVMRustBuildMemCpy(
878                 self.llbuilder,
879                 dst,
880                 dst_align.bytes() as c_uint,
881                 src,
882                 src_align.bytes() as c_uint,
883                 size,
884                 is_volatile,
885             );
886         }
887     }
888
889     fn memmove(
890         &mut self,
891         dst: &'ll Value,
892         dst_align: Align,
893         src: &'ll Value,
894         src_align: Align,
895         size: &'ll Value,
896         flags: MemFlags,
897     ) {
898         assert!(!flags.contains(MemFlags::NONTEMPORAL), "non-temporal memmove not supported");
899         let size = self.intcast(size, self.type_isize(), false);
900         let is_volatile = flags.contains(MemFlags::VOLATILE);
901         let dst = self.pointercast(dst, self.type_i8p());
902         let src = self.pointercast(src, self.type_i8p());
903         unsafe {
904             llvm::LLVMRustBuildMemMove(
905                 self.llbuilder,
906                 dst,
907                 dst_align.bytes() as c_uint,
908                 src,
909                 src_align.bytes() as c_uint,
910                 size,
911                 is_volatile,
912             );
913         }
914     }
915
916     fn memset(
917         &mut self,
918         ptr: &'ll Value,
919         fill_byte: &'ll Value,
920         size: &'ll Value,
921         align: Align,
922         flags: MemFlags,
923     ) {
924         let is_volatile = flags.contains(MemFlags::VOLATILE);
925         let ptr = self.pointercast(ptr, self.type_i8p());
926         unsafe {
927             llvm::LLVMRustBuildMemSet(
928                 self.llbuilder,
929                 ptr,
930                 align.bytes() as c_uint,
931                 fill_byte,
932                 size,
933                 is_volatile,
934             );
935         }
936     }
937
938     fn select(
939         &mut self,
940         cond: &'ll Value,
941         then_val: &'ll Value,
942         else_val: &'ll Value,
943     ) -> &'ll Value {
944         unsafe { llvm::LLVMBuildSelect(self.llbuilder, cond, then_val, else_val, UNNAMED) }
945     }
946
947     fn va_arg(&mut self, list: &'ll Value, ty: &'ll Type) -> &'ll Value {
948         unsafe { llvm::LLVMBuildVAArg(self.llbuilder, list, ty, UNNAMED) }
949     }
950
951     fn extract_element(&mut self, vec: &'ll Value, idx: &'ll Value) -> &'ll Value {
952         unsafe { llvm::LLVMBuildExtractElement(self.llbuilder, vec, idx, UNNAMED) }
953     }
954
955     fn vector_splat(&mut self, num_elts: usize, elt: &'ll Value) -> &'ll Value {
956         unsafe {
957             let elt_ty = self.cx.val_ty(elt);
958             let undef = llvm::LLVMGetUndef(self.type_vector(elt_ty, num_elts as u64));
959             let vec = self.insert_element(undef, elt, self.cx.const_i32(0));
960             let vec_i32_ty = self.type_vector(self.type_i32(), num_elts as u64);
961             self.shuffle_vector(vec, undef, self.const_null(vec_i32_ty))
962         }
963     }
964
965     fn extract_value(&mut self, agg_val: &'ll Value, idx: u64) -> &'ll Value {
966         assert_eq!(idx as c_uint as u64, idx);
967         unsafe { llvm::LLVMBuildExtractValue(self.llbuilder, agg_val, idx as c_uint, UNNAMED) }
968     }
969
970     fn insert_value(&mut self, agg_val: &'ll Value, elt: &'ll Value, idx: u64) -> &'ll Value {
971         assert_eq!(idx as c_uint as u64, idx);
972         unsafe { llvm::LLVMBuildInsertValue(self.llbuilder, agg_val, elt, idx as c_uint, UNNAMED) }
973     }
974
975     fn landing_pad(
976         &mut self,
977         ty: &'ll Type,
978         pers_fn: &'ll Value,
979         num_clauses: usize,
980     ) -> &'ll Value {
981         // Use LLVMSetPersonalityFn to set the personality. It supports arbitrary Consts while,
982         // LLVMBuildLandingPad requires the argument to be a Function (as of LLVM 12). The
983         // personality lives on the parent function anyway.
984         self.set_personality_fn(pers_fn);
985         unsafe {
986             llvm::LLVMBuildLandingPad(self.llbuilder, ty, None, num_clauses as c_uint, UNNAMED)
987         }
988     }
989
990     fn set_cleanup(&mut self, landing_pad: &'ll Value) {
991         unsafe {
992             llvm::LLVMSetCleanup(landing_pad, llvm::True);
993         }
994     }
995
996     fn resume(&mut self, exn: &'ll Value) -> &'ll Value {
997         unsafe { llvm::LLVMBuildResume(self.llbuilder, exn) }
998     }
999
1000     fn cleanup_pad(&mut self, parent: Option<&'ll Value>, args: &[&'ll Value]) -> Funclet<'ll> {
1001         let name = cstr!("cleanuppad");
1002         let ret = unsafe {
1003             llvm::LLVMRustBuildCleanupPad(
1004                 self.llbuilder,
1005                 parent,
1006                 args.len() as c_uint,
1007                 args.as_ptr(),
1008                 name.as_ptr(),
1009             )
1010         };
1011         Funclet::new(ret.expect("LLVM does not have support for cleanuppad"))
1012     }
1013
1014     fn cleanup_ret(
1015         &mut self,
1016         funclet: &Funclet<'ll>,
1017         unwind: Option<&'ll BasicBlock>,
1018     ) -> &'ll Value {
1019         let ret =
1020             unsafe { llvm::LLVMRustBuildCleanupRet(self.llbuilder, funclet.cleanuppad(), unwind) };
1021         ret.expect("LLVM does not have support for cleanupret")
1022     }
1023
1024     fn catch_pad(&mut self, parent: &'ll Value, args: &[&'ll Value]) -> Funclet<'ll> {
1025         let name = cstr!("catchpad");
1026         let ret = unsafe {
1027             llvm::LLVMRustBuildCatchPad(
1028                 self.llbuilder,
1029                 parent,
1030                 args.len() as c_uint,
1031                 args.as_ptr(),
1032                 name.as_ptr(),
1033             )
1034         };
1035         Funclet::new(ret.expect("LLVM does not have support for catchpad"))
1036     }
1037
1038     fn catch_switch(
1039         &mut self,
1040         parent: Option<&'ll Value>,
1041         unwind: Option<&'ll BasicBlock>,
1042         num_handlers: usize,
1043     ) -> &'ll Value {
1044         let name = cstr!("catchswitch");
1045         let ret = unsafe {
1046             llvm::LLVMRustBuildCatchSwitch(
1047                 self.llbuilder,
1048                 parent,
1049                 unwind,
1050                 num_handlers as c_uint,
1051                 name.as_ptr(),
1052             )
1053         };
1054         ret.expect("LLVM does not have support for catchswitch")
1055     }
1056
1057     fn add_handler(&mut self, catch_switch: &'ll Value, handler: &'ll BasicBlock) {
1058         unsafe {
1059             llvm::LLVMRustAddHandler(catch_switch, handler);
1060         }
1061     }
1062
1063     fn set_personality_fn(&mut self, personality: &'ll Value) {
1064         unsafe {
1065             llvm::LLVMSetPersonalityFn(self.llfn(), personality);
1066         }
1067     }
1068
1069     // Atomic Operations
1070     fn atomic_cmpxchg(
1071         &mut self,
1072         dst: &'ll Value,
1073         cmp: &'ll Value,
1074         src: &'ll Value,
1075         order: rustc_codegen_ssa::common::AtomicOrdering,
1076         failure_order: rustc_codegen_ssa::common::AtomicOrdering,
1077         weak: bool,
1078     ) -> &'ll Value {
1079         let weak = if weak { llvm::True } else { llvm::False };
1080         unsafe {
1081             llvm::LLVMRustBuildAtomicCmpXchg(
1082                 self.llbuilder,
1083                 dst,
1084                 cmp,
1085                 src,
1086                 AtomicOrdering::from_generic(order),
1087                 AtomicOrdering::from_generic(failure_order),
1088                 weak,
1089             )
1090         }
1091     }
1092     fn atomic_rmw(
1093         &mut self,
1094         op: rustc_codegen_ssa::common::AtomicRmwBinOp,
1095         dst: &'ll Value,
1096         src: &'ll Value,
1097         order: rustc_codegen_ssa::common::AtomicOrdering,
1098     ) -> &'ll Value {
1099         unsafe {
1100             llvm::LLVMBuildAtomicRMW(
1101                 self.llbuilder,
1102                 AtomicRmwBinOp::from_generic(op),
1103                 dst,
1104                 src,
1105                 AtomicOrdering::from_generic(order),
1106                 False,
1107             )
1108         }
1109     }
1110
1111     fn atomic_fence(
1112         &mut self,
1113         order: rustc_codegen_ssa::common::AtomicOrdering,
1114         scope: rustc_codegen_ssa::common::SynchronizationScope,
1115     ) {
1116         unsafe {
1117             llvm::LLVMRustBuildAtomicFence(
1118                 self.llbuilder,
1119                 AtomicOrdering::from_generic(order),
1120                 SynchronizationScope::from_generic(scope),
1121             );
1122         }
1123     }
1124
1125     fn set_invariant_load(&mut self, load: &'ll Value) {
1126         unsafe {
1127             llvm::LLVMSetMetadata(
1128                 load,
1129                 llvm::MD_invariant_load as c_uint,
1130                 llvm::LLVMMDNodeInContext(self.cx.llcx, ptr::null(), 0),
1131             );
1132         }
1133     }
1134
1135     fn lifetime_start(&mut self, ptr: &'ll Value, size: Size) {
1136         self.call_lifetime_intrinsic("llvm.lifetime.start.p0i8", ptr, size);
1137     }
1138
1139     fn lifetime_end(&mut self, ptr: &'ll Value, size: Size) {
1140         self.call_lifetime_intrinsic("llvm.lifetime.end.p0i8", ptr, size);
1141     }
1142
1143     fn instrprof_increment(
1144         &mut self,
1145         fn_name: &'ll Value,
1146         hash: &'ll Value,
1147         num_counters: &'ll Value,
1148         index: &'ll Value,
1149     ) {
1150         debug!(
1151             "instrprof_increment() with args ({:?}, {:?}, {:?}, {:?})",
1152             fn_name, hash, num_counters, index
1153         );
1154
1155         let llfn = unsafe { llvm::LLVMRustGetInstrProfIncrementIntrinsic(self.cx().llmod) };
1156         let llty = self.cx.type_func(
1157             &[self.cx.type_i8p(), self.cx.type_i64(), self.cx.type_i32(), self.cx.type_i32()],
1158             self.cx.type_void(),
1159         );
1160         let args = &[fn_name, hash, num_counters, index];
1161         let args = self.check_call("call", llty, llfn, args);
1162
1163         unsafe {
1164             let _ = llvm::LLVMRustBuildCall(
1165                 self.llbuilder,
1166                 llty,
1167                 llfn,
1168                 args.as_ptr() as *const &llvm::Value,
1169                 args.len() as c_uint,
1170                 None,
1171             );
1172         }
1173     }
1174
1175     fn call(
1176         &mut self,
1177         llty: &'ll Type,
1178         llfn: &'ll Value,
1179         args: &[&'ll Value],
1180         funclet: Option<&Funclet<'ll>>,
1181     ) -> &'ll Value {
1182         debug!("call {:?} with args ({:?})", llfn, args);
1183
1184         let args = self.check_call("call", llty, llfn, args);
1185         let bundle = funclet.map(|funclet| funclet.bundle());
1186         let bundle = bundle.as_ref().map(|b| &*b.raw);
1187
1188         unsafe {
1189             llvm::LLVMRustBuildCall(
1190                 self.llbuilder,
1191                 llty,
1192                 llfn,
1193                 args.as_ptr() as *const &llvm::Value,
1194                 args.len() as c_uint,
1195                 bundle,
1196             )
1197         }
1198     }
1199
1200     fn zext(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
1201         unsafe { llvm::LLVMBuildZExt(self.llbuilder, val, dest_ty, UNNAMED) }
1202     }
1203
1204     fn apply_attrs_to_cleanup_callsite(&mut self, llret: &'ll Value) {
1205         // Cleanup is always the cold path.
1206         llvm::Attribute::Cold.apply_callsite(llvm::AttributePlace::Function, llret);
1207
1208         // In LLVM versions with deferred inlining (currently, system LLVM < 14),
1209         // inlining drop glue can lead to exponential size blowup, see #41696 and #92110.
1210         if !llvm_util::is_rust_llvm() && llvm_util::get_version() < (14, 0, 0) {
1211             llvm::Attribute::NoInline.apply_callsite(llvm::AttributePlace::Function, llret);
1212         }
1213     }
1214 }
1215
1216 impl<'ll> StaticBuilderMethods for Builder<'_, 'll, '_> {
1217     fn get_static(&mut self, def_id: DefId) -> &'ll Value {
1218         // Forward to the `get_static` method of `CodegenCx`
1219         self.cx().get_static(def_id)
1220     }
1221 }
1222
1223 impl<'a, 'll, 'tcx> Builder<'a, 'll, 'tcx> {
1224     fn with_cx(cx: &'a CodegenCx<'ll, 'tcx>) -> Self {
1225         // Create a fresh builder from the crate context.
1226         let llbuilder = unsafe { llvm::LLVMCreateBuilderInContext(cx.llcx) };
1227         Builder { llbuilder, cx }
1228     }
1229
1230     pub fn llfn(&self) -> &'ll Value {
1231         unsafe { llvm::LLVMGetBasicBlockParent(self.llbb()) }
1232     }
1233
1234     fn position_at_start(&mut self, llbb: &'ll BasicBlock) {
1235         unsafe {
1236             llvm::LLVMRustPositionBuilderAtStart(self.llbuilder, llbb);
1237         }
1238     }
1239
1240     pub fn minnum(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
1241         unsafe { llvm::LLVMRustBuildMinNum(self.llbuilder, lhs, rhs) }
1242     }
1243
1244     pub fn maxnum(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
1245         unsafe { llvm::LLVMRustBuildMaxNum(self.llbuilder, lhs, rhs) }
1246     }
1247
1248     pub fn insert_element(
1249         &mut self,
1250         vec: &'ll Value,
1251         elt: &'ll Value,
1252         idx: &'ll Value,
1253     ) -> &'ll Value {
1254         unsafe { llvm::LLVMBuildInsertElement(self.llbuilder, vec, elt, idx, UNNAMED) }
1255     }
1256
1257     pub fn shuffle_vector(
1258         &mut self,
1259         v1: &'ll Value,
1260         v2: &'ll Value,
1261         mask: &'ll Value,
1262     ) -> &'ll Value {
1263         unsafe { llvm::LLVMBuildShuffleVector(self.llbuilder, v1, v2, mask, UNNAMED) }
1264     }
1265
1266     pub fn vector_reduce_fadd(&mut self, acc: &'ll Value, src: &'ll Value) -> &'ll Value {
1267         unsafe { llvm::LLVMRustBuildVectorReduceFAdd(self.llbuilder, acc, src) }
1268     }
1269     pub fn vector_reduce_fmul(&mut self, acc: &'ll Value, src: &'ll Value) -> &'ll Value {
1270         unsafe { llvm::LLVMRustBuildVectorReduceFMul(self.llbuilder, acc, src) }
1271     }
1272     pub fn vector_reduce_fadd_fast(&mut self, acc: &'ll Value, src: &'ll Value) -> &'ll Value {
1273         unsafe {
1274             let instr = llvm::LLVMRustBuildVectorReduceFAdd(self.llbuilder, acc, src);
1275             llvm::LLVMRustSetFastMath(instr);
1276             instr
1277         }
1278     }
1279     pub fn vector_reduce_fmul_fast(&mut self, acc: &'ll Value, src: &'ll Value) -> &'ll Value {
1280         unsafe {
1281             let instr = llvm::LLVMRustBuildVectorReduceFMul(self.llbuilder, acc, src);
1282             llvm::LLVMRustSetFastMath(instr);
1283             instr
1284         }
1285     }
1286     pub fn vector_reduce_add(&mut self, src: &'ll Value) -> &'ll Value {
1287         unsafe { llvm::LLVMRustBuildVectorReduceAdd(self.llbuilder, src) }
1288     }
1289     pub fn vector_reduce_mul(&mut self, src: &'ll Value) -> &'ll Value {
1290         unsafe { llvm::LLVMRustBuildVectorReduceMul(self.llbuilder, src) }
1291     }
1292     pub fn vector_reduce_and(&mut self, src: &'ll Value) -> &'ll Value {
1293         unsafe { llvm::LLVMRustBuildVectorReduceAnd(self.llbuilder, src) }
1294     }
1295     pub fn vector_reduce_or(&mut self, src: &'ll Value) -> &'ll Value {
1296         unsafe { llvm::LLVMRustBuildVectorReduceOr(self.llbuilder, src) }
1297     }
1298     pub fn vector_reduce_xor(&mut self, src: &'ll Value) -> &'ll Value {
1299         unsafe { llvm::LLVMRustBuildVectorReduceXor(self.llbuilder, src) }
1300     }
1301     pub fn vector_reduce_fmin(&mut self, src: &'ll Value) -> &'ll Value {
1302         unsafe {
1303             llvm::LLVMRustBuildVectorReduceFMin(self.llbuilder, src, /*NoNaNs:*/ false)
1304         }
1305     }
1306     pub fn vector_reduce_fmax(&mut self, src: &'ll Value) -> &'ll Value {
1307         unsafe {
1308             llvm::LLVMRustBuildVectorReduceFMax(self.llbuilder, src, /*NoNaNs:*/ false)
1309         }
1310     }
1311     pub fn vector_reduce_fmin_fast(&mut self, src: &'ll Value) -> &'ll Value {
1312         unsafe {
1313             let instr =
1314                 llvm::LLVMRustBuildVectorReduceFMin(self.llbuilder, src, /*NoNaNs:*/ true);
1315             llvm::LLVMRustSetFastMath(instr);
1316             instr
1317         }
1318     }
1319     pub fn vector_reduce_fmax_fast(&mut self, src: &'ll Value) -> &'ll Value {
1320         unsafe {
1321             let instr =
1322                 llvm::LLVMRustBuildVectorReduceFMax(self.llbuilder, src, /*NoNaNs:*/ true);
1323             llvm::LLVMRustSetFastMath(instr);
1324             instr
1325         }
1326     }
1327     pub fn vector_reduce_min(&mut self, src: &'ll Value, is_signed: bool) -> &'ll Value {
1328         unsafe { llvm::LLVMRustBuildVectorReduceMin(self.llbuilder, src, is_signed) }
1329     }
1330     pub fn vector_reduce_max(&mut self, src: &'ll Value, is_signed: bool) -> &'ll Value {
1331         unsafe { llvm::LLVMRustBuildVectorReduceMax(self.llbuilder, src, is_signed) }
1332     }
1333
1334     pub fn add_clause(&mut self, landing_pad: &'ll Value, clause: &'ll Value) {
1335         unsafe {
1336             llvm::LLVMAddClause(landing_pad, clause);
1337         }
1338     }
1339
1340     pub fn catch_ret(&mut self, funclet: &Funclet<'ll>, unwind: &'ll BasicBlock) -> &'ll Value {
1341         let ret =
1342             unsafe { llvm::LLVMRustBuildCatchRet(self.llbuilder, funclet.cleanuppad(), unwind) };
1343         ret.expect("LLVM does not have support for catchret")
1344     }
1345
1346     fn check_store(&mut self, val: &'ll Value, ptr: &'ll Value) -> &'ll Value {
1347         let dest_ptr_ty = self.cx.val_ty(ptr);
1348         let stored_ty = self.cx.val_ty(val);
1349         let stored_ptr_ty = self.cx.type_ptr_to(stored_ty);
1350
1351         assert_eq!(self.cx.type_kind(dest_ptr_ty), TypeKind::Pointer);
1352
1353         if dest_ptr_ty == stored_ptr_ty {
1354             ptr
1355         } else {
1356             debug!(
1357                 "type mismatch in store. \
1358                     Expected {:?}, got {:?}; inserting bitcast",
1359                 dest_ptr_ty, stored_ptr_ty
1360             );
1361             self.bitcast(ptr, stored_ptr_ty)
1362         }
1363     }
1364
1365     fn check_call<'b>(
1366         &mut self,
1367         typ: &str,
1368         fn_ty: &'ll Type,
1369         llfn: &'ll Value,
1370         args: &'b [&'ll Value],
1371     ) -> Cow<'b, [&'ll Value]> {
1372         assert!(
1373             self.cx.type_kind(fn_ty) == TypeKind::Function,
1374             "builder::{} not passed a function, but {:?}",
1375             typ,
1376             fn_ty
1377         );
1378
1379         let param_tys = self.cx.func_params_types(fn_ty);
1380
1381         let all_args_match = iter::zip(&param_tys, args.iter().map(|&v| self.val_ty(v)))
1382             .all(|(expected_ty, actual_ty)| *expected_ty == actual_ty);
1383
1384         if all_args_match {
1385             return Cow::Borrowed(args);
1386         }
1387
1388         let casted_args: Vec<_> = iter::zip(param_tys, args)
1389             .enumerate()
1390             .map(|(i, (expected_ty, &actual_val))| {
1391                 let actual_ty = self.val_ty(actual_val);
1392                 if expected_ty != actual_ty {
1393                     debug!(
1394                         "type mismatch in function call of {:?}. \
1395                             Expected {:?} for param {}, got {:?}; injecting bitcast",
1396                         llfn, expected_ty, i, actual_ty
1397                     );
1398                     self.bitcast(actual_val, expected_ty)
1399                 } else {
1400                     actual_val
1401                 }
1402             })
1403             .collect();
1404
1405         Cow::Owned(casted_args)
1406     }
1407
1408     pub fn va_arg(&mut self, list: &'ll Value, ty: &'ll Type) -> &'ll Value {
1409         unsafe { llvm::LLVMBuildVAArg(self.llbuilder, list, ty, UNNAMED) }
1410     }
1411
1412     crate fn call_intrinsic(&mut self, intrinsic: &str, args: &[&'ll Value]) -> &'ll Value {
1413         let (ty, f) = self.cx.get_intrinsic(intrinsic);
1414         self.call(ty, f, args, None)
1415     }
1416
1417     fn call_lifetime_intrinsic(&mut self, intrinsic: &str, ptr: &'ll Value, size: Size) {
1418         let size = size.bytes();
1419         if size == 0 {
1420             return;
1421         }
1422
1423         if !self.cx().sess().emit_lifetime_markers() {
1424             return;
1425         }
1426
1427         let ptr = self.pointercast(ptr, self.cx.type_i8p());
1428         self.call_intrinsic(intrinsic, &[self.cx.const_u64(size), ptr]);
1429     }
1430
1431     pub(crate) fn phi(
1432         &mut self,
1433         ty: &'ll Type,
1434         vals: &[&'ll Value],
1435         bbs: &[&'ll BasicBlock],
1436     ) -> &'ll Value {
1437         assert_eq!(vals.len(), bbs.len());
1438         let phi = unsafe { llvm::LLVMBuildPhi(self.llbuilder, ty, UNNAMED) };
1439         unsafe {
1440             llvm::LLVMAddIncoming(phi, vals.as_ptr(), bbs.as_ptr(), vals.len() as c_uint);
1441             phi
1442         }
1443     }
1444
1445     fn add_incoming_to_phi(&mut self, phi: &'ll Value, val: &'ll Value, bb: &'ll BasicBlock) {
1446         unsafe {
1447             llvm::LLVMAddIncoming(phi, &val, &bb, 1 as c_uint);
1448         }
1449     }
1450
1451     fn fptoint_sat_broken_in_llvm(&self) -> bool {
1452         match self.tcx.sess.target.arch.as_str() {
1453             // FIXME - https://bugs.llvm.org/show_bug.cgi?id=50083
1454             "riscv64" => llvm_util::get_version() < (13, 0, 0),
1455             _ => false,
1456         }
1457     }
1458 }