]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_llvm/src/builder.rs
Rollup merge of #97569 - thomcc:fill_with_isnt_memset, r=Amanieu
[rust.git] / compiler / rustc_codegen_llvm / src / builder.rs
1 use crate::attributes;
2 use crate::common::Funclet;
3 use crate::context::CodegenCx;
4 use crate::llvm::{self, BasicBlock, False};
5 use crate::llvm::{AtomicOrdering, AtomicRmwBinOp, SynchronizationScope};
6 use crate::llvm_util;
7 use crate::type_::Type;
8 use crate::type_of::LayoutLlvmExt;
9 use crate::value::Value;
10 use cstr::cstr;
11 use libc::{c_char, c_uint};
12 use rustc_codegen_ssa::common::{IntPredicate, RealPredicate, TypeKind};
13 use rustc_codegen_ssa::mir::operand::{OperandRef, OperandValue};
14 use rustc_codegen_ssa::mir::place::PlaceRef;
15 use rustc_codegen_ssa::traits::*;
16 use rustc_codegen_ssa::MemFlags;
17 use rustc_data_structures::small_c_str::SmallCStr;
18 use rustc_hir::def_id::DefId;
19 use rustc_middle::ty::layout::{
20     FnAbiError, FnAbiOfHelpers, FnAbiRequest, LayoutError, LayoutOfHelpers, TyAndLayout,
21 };
22 use rustc_middle::ty::{self, Ty, TyCtxt};
23 use rustc_span::Span;
24 use rustc_target::abi::{self, call::FnAbi, Align, Size, WrappingRange};
25 use rustc_target::spec::{HasTargetSpec, Target};
26 use std::borrow::Cow;
27 use std::ffi::CStr;
28 use std::iter;
29 use std::ops::Deref;
30 use std::ptr;
31 use tracing::debug;
32
33 // All Builders must have an llfn associated with them
34 #[must_use]
35 pub struct Builder<'a, 'll, 'tcx> {
36     pub llbuilder: &'ll mut llvm::Builder<'ll>,
37     pub cx: &'a CodegenCx<'ll, 'tcx>,
38 }
39
40 impl Drop for Builder<'_, '_, '_> {
41     fn drop(&mut self) {
42         unsafe {
43             llvm::LLVMDisposeBuilder(&mut *(self.llbuilder as *mut _));
44         }
45     }
46 }
47
48 // FIXME(eddyb) use a checked constructor when they become `const fn`.
49 const EMPTY_C_STR: &CStr = unsafe { CStr::from_bytes_with_nul_unchecked(b"\0") };
50
51 /// Empty string, to be used where LLVM expects an instruction name, indicating
52 /// that the instruction is to be left unnamed (i.e. numbered, in textual IR).
53 // FIXME(eddyb) pass `&CStr` directly to FFI once it's a thin pointer.
54 const UNNAMED: *const c_char = EMPTY_C_STR.as_ptr();
55
56 impl<'ll, 'tcx> BackendTypes for Builder<'_, 'll, 'tcx> {
57     type Value = <CodegenCx<'ll, 'tcx> as BackendTypes>::Value;
58     type Function = <CodegenCx<'ll, 'tcx> as BackendTypes>::Function;
59     type BasicBlock = <CodegenCx<'ll, 'tcx> as BackendTypes>::BasicBlock;
60     type Type = <CodegenCx<'ll, 'tcx> as BackendTypes>::Type;
61     type Funclet = <CodegenCx<'ll, 'tcx> as BackendTypes>::Funclet;
62
63     type DIScope = <CodegenCx<'ll, 'tcx> as BackendTypes>::DIScope;
64     type DILocation = <CodegenCx<'ll, 'tcx> as BackendTypes>::DILocation;
65     type DIVariable = <CodegenCx<'ll, 'tcx> as BackendTypes>::DIVariable;
66 }
67
68 impl abi::HasDataLayout for Builder<'_, '_, '_> {
69     fn data_layout(&self) -> &abi::TargetDataLayout {
70         self.cx.data_layout()
71     }
72 }
73
74 impl<'tcx> ty::layout::HasTyCtxt<'tcx> for Builder<'_, '_, 'tcx> {
75     #[inline]
76     fn tcx(&self) -> TyCtxt<'tcx> {
77         self.cx.tcx
78     }
79 }
80
81 impl<'tcx> ty::layout::HasParamEnv<'tcx> for Builder<'_, '_, 'tcx> {
82     fn param_env(&self) -> ty::ParamEnv<'tcx> {
83         self.cx.param_env()
84     }
85 }
86
87 impl HasTargetSpec for Builder<'_, '_, '_> {
88     #[inline]
89     fn target_spec(&self) -> &Target {
90         self.cx.target_spec()
91     }
92 }
93
94 impl<'tcx> LayoutOfHelpers<'tcx> for Builder<'_, '_, 'tcx> {
95     type LayoutOfResult = TyAndLayout<'tcx>;
96
97     #[inline]
98     fn handle_layout_err(&self, err: LayoutError<'tcx>, span: Span, ty: Ty<'tcx>) -> ! {
99         self.cx.handle_layout_err(err, span, ty)
100     }
101 }
102
103 impl<'tcx> FnAbiOfHelpers<'tcx> for Builder<'_, '_, 'tcx> {
104     type FnAbiOfResult = &'tcx FnAbi<'tcx, Ty<'tcx>>;
105
106     #[inline]
107     fn handle_fn_abi_err(
108         &self,
109         err: FnAbiError<'tcx>,
110         span: Span,
111         fn_abi_request: FnAbiRequest<'tcx>,
112     ) -> ! {
113         self.cx.handle_fn_abi_err(err, span, fn_abi_request)
114     }
115 }
116
117 impl<'ll, 'tcx> Deref for Builder<'_, 'll, 'tcx> {
118     type Target = CodegenCx<'ll, 'tcx>;
119
120     #[inline]
121     fn deref(&self) -> &Self::Target {
122         self.cx
123     }
124 }
125
126 impl<'ll, 'tcx> HasCodegen<'tcx> for Builder<'_, 'll, 'tcx> {
127     type CodegenCx = CodegenCx<'ll, 'tcx>;
128 }
129
130 macro_rules! builder_methods_for_value_instructions {
131     ($($name:ident($($arg:ident),*) => $llvm_capi:ident),+ $(,)?) => {
132         $(fn $name(&mut self, $($arg: &'ll Value),*) -> &'ll Value {
133             unsafe {
134                 llvm::$llvm_capi(self.llbuilder, $($arg,)* UNNAMED)
135             }
136         })+
137     }
138 }
139
140 impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
141     fn build(cx: &'a CodegenCx<'ll, 'tcx>, llbb: &'ll BasicBlock) -> Self {
142         let bx = Builder::with_cx(cx);
143         unsafe {
144             llvm::LLVMPositionBuilderAtEnd(bx.llbuilder, llbb);
145         }
146         bx
147     }
148
149     fn cx(&self) -> &CodegenCx<'ll, 'tcx> {
150         self.cx
151     }
152
153     fn llbb(&self) -> &'ll BasicBlock {
154         unsafe { llvm::LLVMGetInsertBlock(self.llbuilder) }
155     }
156
157     fn set_span(&mut self, _span: Span) {}
158
159     fn append_block(cx: &'a CodegenCx<'ll, 'tcx>, llfn: &'ll Value, name: &str) -> &'ll BasicBlock {
160         unsafe {
161             let name = SmallCStr::new(name);
162             llvm::LLVMAppendBasicBlockInContext(cx.llcx, llfn, name.as_ptr())
163         }
164     }
165
166     fn append_sibling_block(&mut self, name: &str) -> &'ll BasicBlock {
167         Self::append_block(self.cx, self.llfn(), name)
168     }
169
170     fn switch_to_block(&mut self, llbb: Self::BasicBlock) {
171         *self = 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             layout: TyAndLayout<'tcx>,
481             offset: Size,
482         ) {
483             if !scalar.is_always_valid(bx) {
484                 bx.noundef_metadata(load);
485             }
486
487             match scalar.primitive() {
488                 abi::Int(..) => {
489                     if !scalar.is_always_valid(bx) {
490                         bx.range_metadata(load, scalar.valid_range(bx));
491                     }
492                 }
493                 abi::Pointer => {
494                     if !scalar.valid_range(bx).contains(0) {
495                         bx.nonnull_metadata(load);
496                     }
497
498                     if let Some(pointee) = layout.pointee_info_at(bx, offset) {
499                         if let Some(_) = pointee.safe {
500                             bx.align_metadata(load, pointee.align);
501                         }
502                     }
503                 }
504                 abi::F32 | abi::F64 => {}
505             }
506         }
507
508         let val = if let Some(llextra) = place.llextra {
509             OperandValue::Ref(place.llval, Some(llextra), place.align)
510         } else if place.layout.is_llvm_immediate() {
511             let mut const_llval = None;
512             let llty = place.layout.llvm_type(self);
513             unsafe {
514                 if let Some(global) = llvm::LLVMIsAGlobalVariable(place.llval) {
515                     if llvm::LLVMIsGlobalConstant(global) == llvm::True {
516                         if let Some(init) = llvm::LLVMGetInitializer(global) {
517                             if self.val_ty(init) == llty {
518                                 const_llval = Some(init);
519                             }
520                         }
521                     }
522                 }
523             }
524             let llval = const_llval.unwrap_or_else(|| {
525                 let load = self.load(llty, place.llval, place.align);
526                 if let abi::Abi::Scalar(scalar) = place.layout.abi {
527                     scalar_load_metadata(self, load, scalar, place.layout, Size::ZERO);
528                 }
529                 load
530             });
531             OperandValue::Immediate(self.to_immediate(llval, place.layout))
532         } else if let abi::Abi::ScalarPair(a, b) = place.layout.abi {
533             let b_offset = a.size(self).align_to(b.align(self).abi);
534             let pair_ty = place.layout.llvm_type(self);
535
536             let mut load = |i, scalar: abi::Scalar, layout, align, offset| {
537                 let llptr = self.struct_gep(pair_ty, place.llval, i as u64);
538                 let llty = place.layout.scalar_pair_element_llvm_type(self, i, false);
539                 let load = self.load(llty, llptr, align);
540                 scalar_load_metadata(self, load, scalar, layout, offset);
541                 self.to_immediate_scalar(load, scalar)
542             };
543
544             OperandValue::Pair(
545                 load(0, a, place.layout, place.align, Size::ZERO),
546                 load(1, b, place.layout, place.align.restrict_for_offset(b_offset), b_offset),
547             )
548         } else {
549             OperandValue::Ref(place.llval, None, place.align)
550         };
551
552         OperandRef { val, layout: place.layout }
553     }
554
555     fn write_operand_repeatedly(
556         mut self,
557         cg_elem: OperandRef<'tcx, &'ll Value>,
558         count: u64,
559         dest: PlaceRef<'tcx, &'ll Value>,
560     ) -> Self {
561         let zero = self.const_usize(0);
562         let count = self.const_usize(count);
563         let start = dest.project_index(&mut self, zero).llval;
564         let end = dest.project_index(&mut self, count).llval;
565
566         let header_bb = self.append_sibling_block("repeat_loop_header");
567         let body_bb = self.append_sibling_block("repeat_loop_body");
568         let next_bb = self.append_sibling_block("repeat_loop_next");
569
570         self.br(header_bb);
571
572         let mut header_bx = Self::build(self.cx, header_bb);
573         let current = header_bx.phi(self.val_ty(start), &[start], &[self.llbb()]);
574
575         let keep_going = header_bx.icmp(IntPredicate::IntNE, current, end);
576         header_bx.cond_br(keep_going, body_bb, next_bb);
577
578         let mut body_bx = Self::build(self.cx, body_bb);
579         let align = dest.align.restrict_for_offset(dest.layout.field(self.cx(), 0).size);
580         cg_elem
581             .val
582             .store(&mut body_bx, PlaceRef::new_sized_aligned(current, cg_elem.layout, align));
583
584         let next = body_bx.inbounds_gep(
585             self.backend_type(cg_elem.layout),
586             current,
587             &[self.const_usize(1)],
588         );
589         body_bx.br(header_bb);
590         header_bx.add_incoming_to_phi(current, next, body_bb);
591
592         Self::build(self.cx, next_bb)
593     }
594
595     fn range_metadata(&mut self, load: &'ll Value, range: WrappingRange) {
596         if self.sess().target.arch == "amdgpu" {
597             // amdgpu/LLVM does something weird and thinks an i64 value is
598             // split into a v2i32, halving the bitwidth LLVM expects,
599             // tripping an assertion. So, for now, just disable this
600             // optimization.
601             return;
602         }
603
604         unsafe {
605             let llty = self.cx.val_ty(load);
606             let v = [
607                 self.cx.const_uint_big(llty, range.start),
608                 self.cx.const_uint_big(llty, range.end.wrapping_add(1)),
609             ];
610
611             llvm::LLVMSetMetadata(
612                 load,
613                 llvm::MD_range as c_uint,
614                 llvm::LLVMMDNodeInContext(self.cx.llcx, v.as_ptr(), v.len() as c_uint),
615             );
616         }
617     }
618
619     fn nonnull_metadata(&mut self, load: &'ll Value) {
620         unsafe {
621             llvm::LLVMSetMetadata(
622                 load,
623                 llvm::MD_nonnull as c_uint,
624                 llvm::LLVMMDNodeInContext(self.cx.llcx, ptr::null(), 0),
625             );
626         }
627     }
628
629     fn type_metadata(&mut self, function: &'ll Value, typeid: String) {
630         let typeid_metadata = self.typeid_metadata(typeid);
631         let v = [self.const_usize(0), typeid_metadata];
632         unsafe {
633             llvm::LLVMGlobalSetMetadata(
634                 function,
635                 llvm::MD_type as c_uint,
636                 llvm::LLVMValueAsMetadata(llvm::LLVMMDNodeInContext(
637                     self.cx.llcx,
638                     v.as_ptr(),
639                     v.len() as c_uint,
640                 )),
641             )
642         }
643     }
644
645     fn typeid_metadata(&mut self, typeid: String) -> Self::Value {
646         unsafe {
647             llvm::LLVMMDStringInContext(
648                 self.cx.llcx,
649                 typeid.as_ptr() as *const c_char,
650                 typeid.as_bytes().len() as c_uint,
651             )
652         }
653     }
654
655     fn store(&mut self, val: &'ll Value, ptr: &'ll Value, align: Align) -> &'ll Value {
656         self.store_with_flags(val, ptr, align, MemFlags::empty())
657     }
658
659     fn store_with_flags(
660         &mut self,
661         val: &'ll Value,
662         ptr: &'ll Value,
663         align: Align,
664         flags: MemFlags,
665     ) -> &'ll Value {
666         debug!("Store {:?} -> {:?} ({:?})", val, ptr, flags);
667         let ptr = self.check_store(val, ptr);
668         unsafe {
669             let store = llvm::LLVMBuildStore(self.llbuilder, val, ptr);
670             let align =
671                 if flags.contains(MemFlags::UNALIGNED) { 1 } else { align.bytes() as c_uint };
672             llvm::LLVMSetAlignment(store, align);
673             if flags.contains(MemFlags::VOLATILE) {
674                 llvm::LLVMSetVolatile(store, llvm::True);
675             }
676             if flags.contains(MemFlags::NONTEMPORAL) {
677                 // According to LLVM [1] building a nontemporal store must
678                 // *always* point to a metadata value of the integer 1.
679                 //
680                 // [1]: https://llvm.org/docs/LangRef.html#store-instruction
681                 let one = self.cx.const_i32(1);
682                 let node = llvm::LLVMMDNodeInContext(self.cx.llcx, &one, 1);
683                 llvm::LLVMSetMetadata(store, llvm::MD_nontemporal as c_uint, node);
684             }
685             store
686         }
687     }
688
689     fn atomic_store(
690         &mut self,
691         val: &'ll Value,
692         ptr: &'ll Value,
693         order: rustc_codegen_ssa::common::AtomicOrdering,
694         size: Size,
695     ) {
696         debug!("Store {:?} -> {:?}", val, ptr);
697         let ptr = self.check_store(val, ptr);
698         unsafe {
699             let store = llvm::LLVMRustBuildAtomicStore(
700                 self.llbuilder,
701                 val,
702                 ptr,
703                 AtomicOrdering::from_generic(order),
704             );
705             // LLVM requires the alignment of atomic stores to be at least the size of the type.
706             llvm::LLVMSetAlignment(store, size.bytes() as c_uint);
707         }
708     }
709
710     fn gep(&mut self, ty: &'ll Type, ptr: &'ll Value, indices: &[&'ll Value]) -> &'ll Value {
711         unsafe {
712             llvm::LLVMBuildGEP2(
713                 self.llbuilder,
714                 ty,
715                 ptr,
716                 indices.as_ptr(),
717                 indices.len() as c_uint,
718                 UNNAMED,
719             )
720         }
721     }
722
723     fn inbounds_gep(
724         &mut self,
725         ty: &'ll Type,
726         ptr: &'ll Value,
727         indices: &[&'ll Value],
728     ) -> &'ll Value {
729         unsafe {
730             llvm::LLVMBuildInBoundsGEP2(
731                 self.llbuilder,
732                 ty,
733                 ptr,
734                 indices.as_ptr(),
735                 indices.len() as c_uint,
736                 UNNAMED,
737             )
738         }
739     }
740
741     fn struct_gep(&mut self, ty: &'ll Type, ptr: &'ll Value, idx: u64) -> &'ll Value {
742         assert_eq!(idx as c_uint as u64, idx);
743         unsafe { llvm::LLVMBuildStructGEP2(self.llbuilder, ty, ptr, idx as c_uint, UNNAMED) }
744     }
745
746     /* Casts */
747     fn trunc(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
748         unsafe { llvm::LLVMBuildTrunc(self.llbuilder, val, dest_ty, UNNAMED) }
749     }
750
751     fn sext(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
752         unsafe { llvm::LLVMBuildSExt(self.llbuilder, val, dest_ty, UNNAMED) }
753     }
754
755     fn fptoui_sat(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> Option<&'ll Value> {
756         self.fptoint_sat(false, val, dest_ty)
757     }
758
759     fn fptosi_sat(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> Option<&'ll Value> {
760         self.fptoint_sat(true, val, dest_ty)
761     }
762
763     fn fptoui(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
764         // On WebAssembly the `fptoui` and `fptosi` instructions currently have
765         // poor codegen. The reason for this is that the corresponding wasm
766         // instructions, `i32.trunc_f32_s` for example, will trap when the float
767         // is out-of-bounds, infinity, or nan. This means that LLVM
768         // automatically inserts control flow around `fptoui` and `fptosi`
769         // because the LLVM instruction `fptoui` is defined as producing a
770         // poison value, not having UB on out-of-bounds values.
771         //
772         // This method, however, is only used with non-saturating casts that
773         // have UB on out-of-bounds values. This means that it's ok if we use
774         // the raw wasm instruction since out-of-bounds values can do whatever
775         // we like. To ensure that LLVM picks the right instruction we choose
776         // the raw wasm intrinsic functions which avoid LLVM inserting all the
777         // other control flow automatically.
778         if self.sess().target.is_like_wasm {
779             let src_ty = self.cx.val_ty(val);
780             if self.cx.type_kind(src_ty) != TypeKind::Vector {
781                 let float_width = self.cx.float_width(src_ty);
782                 let int_width = self.cx.int_width(dest_ty);
783                 let name = match (int_width, float_width) {
784                     (32, 32) => Some("llvm.wasm.trunc.unsigned.i32.f32"),
785                     (32, 64) => Some("llvm.wasm.trunc.unsigned.i32.f64"),
786                     (64, 32) => Some("llvm.wasm.trunc.unsigned.i64.f32"),
787                     (64, 64) => Some("llvm.wasm.trunc.unsigned.i64.f64"),
788                     _ => None,
789                 };
790                 if let Some(name) = name {
791                     return self.call_intrinsic(name, &[val]);
792                 }
793             }
794         }
795         unsafe { llvm::LLVMBuildFPToUI(self.llbuilder, val, dest_ty, UNNAMED) }
796     }
797
798     fn fptosi(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
799         // see `fptoui` above for why wasm is different here
800         if self.sess().target.is_like_wasm {
801             let src_ty = self.cx.val_ty(val);
802             if self.cx.type_kind(src_ty) != TypeKind::Vector {
803                 let float_width = self.cx.float_width(src_ty);
804                 let int_width = self.cx.int_width(dest_ty);
805                 let name = match (int_width, float_width) {
806                     (32, 32) => Some("llvm.wasm.trunc.signed.i32.f32"),
807                     (32, 64) => Some("llvm.wasm.trunc.signed.i32.f64"),
808                     (64, 32) => Some("llvm.wasm.trunc.signed.i64.f32"),
809                     (64, 64) => Some("llvm.wasm.trunc.signed.i64.f64"),
810                     _ => None,
811                 };
812                 if let Some(name) = name {
813                     return self.call_intrinsic(name, &[val]);
814                 }
815             }
816         }
817         unsafe { llvm::LLVMBuildFPToSI(self.llbuilder, val, dest_ty, UNNAMED) }
818     }
819
820     fn uitofp(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
821         unsafe { llvm::LLVMBuildUIToFP(self.llbuilder, val, dest_ty, UNNAMED) }
822     }
823
824     fn sitofp(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
825         unsafe { llvm::LLVMBuildSIToFP(self.llbuilder, val, dest_ty, UNNAMED) }
826     }
827
828     fn fptrunc(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
829         unsafe { llvm::LLVMBuildFPTrunc(self.llbuilder, val, dest_ty, UNNAMED) }
830     }
831
832     fn fpext(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
833         unsafe { llvm::LLVMBuildFPExt(self.llbuilder, val, dest_ty, UNNAMED) }
834     }
835
836     fn ptrtoint(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
837         unsafe { llvm::LLVMBuildPtrToInt(self.llbuilder, val, dest_ty, UNNAMED) }
838     }
839
840     fn inttoptr(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
841         unsafe { llvm::LLVMBuildIntToPtr(self.llbuilder, val, dest_ty, UNNAMED) }
842     }
843
844     fn bitcast(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
845         unsafe { llvm::LLVMBuildBitCast(self.llbuilder, val, dest_ty, UNNAMED) }
846     }
847
848     fn intcast(&mut self, val: &'ll Value, dest_ty: &'ll Type, is_signed: bool) -> &'ll Value {
849         unsafe { llvm::LLVMRustBuildIntCast(self.llbuilder, val, dest_ty, is_signed) }
850     }
851
852     fn pointercast(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
853         unsafe { llvm::LLVMBuildPointerCast(self.llbuilder, val, dest_ty, UNNAMED) }
854     }
855
856     /* Comparisons */
857     fn icmp(&mut self, op: IntPredicate, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
858         let op = llvm::IntPredicate::from_generic(op);
859         unsafe { llvm::LLVMBuildICmp(self.llbuilder, op as c_uint, lhs, rhs, UNNAMED) }
860     }
861
862     fn fcmp(&mut self, op: RealPredicate, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
863         let op = llvm::RealPredicate::from_generic(op);
864         unsafe { llvm::LLVMBuildFCmp(self.llbuilder, op as c_uint, lhs, rhs, UNNAMED) }
865     }
866
867     /* Miscellaneous instructions */
868     fn memcpy(
869         &mut self,
870         dst: &'ll Value,
871         dst_align: Align,
872         src: &'ll Value,
873         src_align: Align,
874         size: &'ll Value,
875         flags: MemFlags,
876     ) {
877         assert!(!flags.contains(MemFlags::NONTEMPORAL), "non-temporal memcpy not supported");
878         let size = self.intcast(size, self.type_isize(), false);
879         let is_volatile = flags.contains(MemFlags::VOLATILE);
880         let dst = self.pointercast(dst, self.type_i8p());
881         let src = self.pointercast(src, self.type_i8p());
882         unsafe {
883             llvm::LLVMRustBuildMemCpy(
884                 self.llbuilder,
885                 dst,
886                 dst_align.bytes() as c_uint,
887                 src,
888                 src_align.bytes() as c_uint,
889                 size,
890                 is_volatile,
891             );
892         }
893     }
894
895     fn memmove(
896         &mut self,
897         dst: &'ll Value,
898         dst_align: Align,
899         src: &'ll Value,
900         src_align: Align,
901         size: &'ll Value,
902         flags: MemFlags,
903     ) {
904         assert!(!flags.contains(MemFlags::NONTEMPORAL), "non-temporal memmove not supported");
905         let size = self.intcast(size, self.type_isize(), false);
906         let is_volatile = flags.contains(MemFlags::VOLATILE);
907         let dst = self.pointercast(dst, self.type_i8p());
908         let src = self.pointercast(src, self.type_i8p());
909         unsafe {
910             llvm::LLVMRustBuildMemMove(
911                 self.llbuilder,
912                 dst,
913                 dst_align.bytes() as c_uint,
914                 src,
915                 src_align.bytes() as c_uint,
916                 size,
917                 is_volatile,
918             );
919         }
920     }
921
922     fn memset(
923         &mut self,
924         ptr: &'ll Value,
925         fill_byte: &'ll Value,
926         size: &'ll Value,
927         align: Align,
928         flags: MemFlags,
929     ) {
930         let is_volatile = flags.contains(MemFlags::VOLATILE);
931         let ptr = self.pointercast(ptr, self.type_i8p());
932         unsafe {
933             llvm::LLVMRustBuildMemSet(
934                 self.llbuilder,
935                 ptr,
936                 align.bytes() as c_uint,
937                 fill_byte,
938                 size,
939                 is_volatile,
940             );
941         }
942     }
943
944     fn select(
945         &mut self,
946         cond: &'ll Value,
947         then_val: &'ll Value,
948         else_val: &'ll Value,
949     ) -> &'ll Value {
950         unsafe { llvm::LLVMBuildSelect(self.llbuilder, cond, then_val, else_val, UNNAMED) }
951     }
952
953     fn va_arg(&mut self, list: &'ll Value, ty: &'ll Type) -> &'ll Value {
954         unsafe { llvm::LLVMBuildVAArg(self.llbuilder, list, ty, UNNAMED) }
955     }
956
957     fn extract_element(&mut self, vec: &'ll Value, idx: &'ll Value) -> &'ll Value {
958         unsafe { llvm::LLVMBuildExtractElement(self.llbuilder, vec, idx, UNNAMED) }
959     }
960
961     fn vector_splat(&mut self, num_elts: usize, elt: &'ll Value) -> &'ll Value {
962         unsafe {
963             let elt_ty = self.cx.val_ty(elt);
964             let undef = llvm::LLVMGetUndef(self.type_vector(elt_ty, num_elts as u64));
965             let vec = self.insert_element(undef, elt, self.cx.const_i32(0));
966             let vec_i32_ty = self.type_vector(self.type_i32(), num_elts as u64);
967             self.shuffle_vector(vec, undef, self.const_null(vec_i32_ty))
968         }
969     }
970
971     fn extract_value(&mut self, agg_val: &'ll Value, idx: u64) -> &'ll Value {
972         assert_eq!(idx as c_uint as u64, idx);
973         unsafe { llvm::LLVMBuildExtractValue(self.llbuilder, agg_val, idx as c_uint, UNNAMED) }
974     }
975
976     fn insert_value(&mut self, agg_val: &'ll Value, elt: &'ll Value, idx: u64) -> &'ll Value {
977         assert_eq!(idx as c_uint as u64, idx);
978         unsafe { llvm::LLVMBuildInsertValue(self.llbuilder, agg_val, elt, idx as c_uint, UNNAMED) }
979     }
980
981     fn set_personality_fn(&mut self, personality: &'ll Value) {
982         unsafe {
983             llvm::LLVMSetPersonalityFn(self.llfn(), personality);
984         }
985     }
986
987     fn cleanup_landing_pad(&mut self, ty: &'ll Type, pers_fn: &'ll Value) -> &'ll Value {
988         let landing_pad = self.landing_pad(ty, pers_fn, 1 /* FIXME should this be 0? */);
989         unsafe {
990             llvm::LLVMSetCleanup(landing_pad, llvm::True);
991         }
992         landing_pad
993     }
994
995     fn resume(&mut self, exn: &'ll Value) {
996         unsafe {
997             llvm::LLVMBuildResume(self.llbuilder, exn);
998         }
999     }
1000
1001     fn cleanup_pad(&mut self, parent: Option<&'ll Value>, args: &[&'ll Value]) -> Funclet<'ll> {
1002         let name = cstr!("cleanuppad");
1003         let ret = unsafe {
1004             llvm::LLVMRustBuildCleanupPad(
1005                 self.llbuilder,
1006                 parent,
1007                 args.len() as c_uint,
1008                 args.as_ptr(),
1009                 name.as_ptr(),
1010             )
1011         };
1012         Funclet::new(ret.expect("LLVM does not have support for cleanuppad"))
1013     }
1014
1015     fn cleanup_ret(&mut self, funclet: &Funclet<'ll>, unwind: Option<&'ll BasicBlock>) {
1016         unsafe {
1017             llvm::LLVMRustBuildCleanupRet(self.llbuilder, funclet.cleanuppad(), unwind)
1018                 .expect("LLVM does not have support for cleanupret");
1019         }
1020     }
1021
1022     fn catch_pad(&mut self, parent: &'ll Value, args: &[&'ll Value]) -> Funclet<'ll> {
1023         let name = cstr!("catchpad");
1024         let ret = unsafe {
1025             llvm::LLVMRustBuildCatchPad(
1026                 self.llbuilder,
1027                 parent,
1028                 args.len() as c_uint,
1029                 args.as_ptr(),
1030                 name.as_ptr(),
1031             )
1032         };
1033         Funclet::new(ret.expect("LLVM does not have support for catchpad"))
1034     }
1035
1036     fn catch_switch(
1037         &mut self,
1038         parent: Option<&'ll Value>,
1039         unwind: Option<&'ll BasicBlock>,
1040         handlers: &[&'ll BasicBlock],
1041     ) -> &'ll Value {
1042         let name = cstr!("catchswitch");
1043         let ret = unsafe {
1044             llvm::LLVMRustBuildCatchSwitch(
1045                 self.llbuilder,
1046                 parent,
1047                 unwind,
1048                 handlers.len() as c_uint,
1049                 name.as_ptr(),
1050             )
1051         };
1052         let ret = ret.expect("LLVM does not have support for catchswitch");
1053         for handler in handlers {
1054             unsafe {
1055                 llvm::LLVMRustAddHandler(ret, handler);
1056             }
1057         }
1058         ret
1059     }
1060
1061     // Atomic Operations
1062     fn atomic_cmpxchg(
1063         &mut self,
1064         dst: &'ll Value,
1065         cmp: &'ll Value,
1066         src: &'ll Value,
1067         order: rustc_codegen_ssa::common::AtomicOrdering,
1068         failure_order: rustc_codegen_ssa::common::AtomicOrdering,
1069         weak: bool,
1070     ) -> &'ll Value {
1071         let weak = if weak { llvm::True } else { llvm::False };
1072         unsafe {
1073             llvm::LLVMRustBuildAtomicCmpXchg(
1074                 self.llbuilder,
1075                 dst,
1076                 cmp,
1077                 src,
1078                 AtomicOrdering::from_generic(order),
1079                 AtomicOrdering::from_generic(failure_order),
1080                 weak,
1081             )
1082         }
1083     }
1084     fn atomic_rmw(
1085         &mut self,
1086         op: rustc_codegen_ssa::common::AtomicRmwBinOp,
1087         dst: &'ll Value,
1088         src: &'ll Value,
1089         order: rustc_codegen_ssa::common::AtomicOrdering,
1090     ) -> &'ll Value {
1091         unsafe {
1092             llvm::LLVMBuildAtomicRMW(
1093                 self.llbuilder,
1094                 AtomicRmwBinOp::from_generic(op),
1095                 dst,
1096                 src,
1097                 AtomicOrdering::from_generic(order),
1098                 False,
1099             )
1100         }
1101     }
1102
1103     fn atomic_fence(
1104         &mut self,
1105         order: rustc_codegen_ssa::common::AtomicOrdering,
1106         scope: rustc_codegen_ssa::common::SynchronizationScope,
1107     ) {
1108         unsafe {
1109             llvm::LLVMRustBuildAtomicFence(
1110                 self.llbuilder,
1111                 AtomicOrdering::from_generic(order),
1112                 SynchronizationScope::from_generic(scope),
1113             );
1114         }
1115     }
1116
1117     fn set_invariant_load(&mut self, load: &'ll Value) {
1118         unsafe {
1119             llvm::LLVMSetMetadata(
1120                 load,
1121                 llvm::MD_invariant_load as c_uint,
1122                 llvm::LLVMMDNodeInContext(self.cx.llcx, ptr::null(), 0),
1123             );
1124         }
1125     }
1126
1127     fn lifetime_start(&mut self, ptr: &'ll Value, size: Size) {
1128         self.call_lifetime_intrinsic("llvm.lifetime.start.p0i8", ptr, size);
1129     }
1130
1131     fn lifetime_end(&mut self, ptr: &'ll Value, size: Size) {
1132         self.call_lifetime_intrinsic("llvm.lifetime.end.p0i8", ptr, size);
1133     }
1134
1135     fn instrprof_increment(
1136         &mut self,
1137         fn_name: &'ll Value,
1138         hash: &'ll Value,
1139         num_counters: &'ll Value,
1140         index: &'ll Value,
1141     ) {
1142         debug!(
1143             "instrprof_increment() with args ({:?}, {:?}, {:?}, {:?})",
1144             fn_name, hash, num_counters, index
1145         );
1146
1147         let llfn = unsafe { llvm::LLVMRustGetInstrProfIncrementIntrinsic(self.cx().llmod) };
1148         let llty = self.cx.type_func(
1149             &[self.cx.type_i8p(), self.cx.type_i64(), self.cx.type_i32(), self.cx.type_i32()],
1150             self.cx.type_void(),
1151         );
1152         let args = &[fn_name, hash, num_counters, index];
1153         let args = self.check_call("call", llty, llfn, args);
1154
1155         unsafe {
1156             let _ = llvm::LLVMRustBuildCall(
1157                 self.llbuilder,
1158                 llty,
1159                 llfn,
1160                 args.as_ptr() as *const &llvm::Value,
1161                 args.len() as c_uint,
1162                 None,
1163             );
1164         }
1165     }
1166
1167     fn call(
1168         &mut self,
1169         llty: &'ll Type,
1170         llfn: &'ll Value,
1171         args: &[&'ll Value],
1172         funclet: Option<&Funclet<'ll>>,
1173     ) -> &'ll Value {
1174         debug!("call {:?} with args ({:?})", llfn, args);
1175
1176         let args = self.check_call("call", llty, llfn, args);
1177         let bundle = funclet.map(|funclet| funclet.bundle());
1178         let bundle = bundle.as_ref().map(|b| &*b.raw);
1179
1180         unsafe {
1181             llvm::LLVMRustBuildCall(
1182                 self.llbuilder,
1183                 llty,
1184                 llfn,
1185                 args.as_ptr() as *const &llvm::Value,
1186                 args.len() as c_uint,
1187                 bundle,
1188             )
1189         }
1190     }
1191
1192     fn zext(&mut self, val: &'ll Value, dest_ty: &'ll Type) -> &'ll Value {
1193         unsafe { llvm::LLVMBuildZExt(self.llbuilder, val, dest_ty, UNNAMED) }
1194     }
1195
1196     fn do_not_inline(&mut self, llret: &'ll Value) {
1197         let noinline = llvm::AttributeKind::NoInline.create_attr(self.llcx);
1198         attributes::apply_to_callsite(llret, llvm::AttributePlace::Function, &[noinline]);
1199     }
1200 }
1201
1202 impl<'ll> StaticBuilderMethods for Builder<'_, 'll, '_> {
1203     fn get_static(&mut self, def_id: DefId) -> &'ll Value {
1204         // Forward to the `get_static` method of `CodegenCx`
1205         self.cx().get_static(def_id)
1206     }
1207 }
1208
1209 impl<'a, 'll, 'tcx> Builder<'a, 'll, 'tcx> {
1210     fn with_cx(cx: &'a CodegenCx<'ll, 'tcx>) -> Self {
1211         // Create a fresh builder from the crate context.
1212         let llbuilder = unsafe { llvm::LLVMCreateBuilderInContext(cx.llcx) };
1213         Builder { llbuilder, cx }
1214     }
1215
1216     pub fn llfn(&self) -> &'ll Value {
1217         unsafe { llvm::LLVMGetBasicBlockParent(self.llbb()) }
1218     }
1219
1220     fn position_at_start(&mut self, llbb: &'ll BasicBlock) {
1221         unsafe {
1222             llvm::LLVMRustPositionBuilderAtStart(self.llbuilder, llbb);
1223         }
1224     }
1225
1226     fn align_metadata(&mut self, load: &'ll Value, align: Align) {
1227         unsafe {
1228             let v = [self.cx.const_u64(align.bytes())];
1229
1230             llvm::LLVMSetMetadata(
1231                 load,
1232                 llvm::MD_align as c_uint,
1233                 llvm::LLVMMDNodeInContext(self.cx.llcx, v.as_ptr(), v.len() as c_uint),
1234             );
1235         }
1236     }
1237
1238     fn noundef_metadata(&mut self, load: &'ll Value) {
1239         unsafe {
1240             llvm::LLVMSetMetadata(
1241                 load,
1242                 llvm::MD_noundef as c_uint,
1243                 llvm::LLVMMDNodeInContext(self.cx.llcx, ptr::null(), 0),
1244             );
1245         }
1246     }
1247
1248     pub fn minnum(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
1249         unsafe { llvm::LLVMRustBuildMinNum(self.llbuilder, lhs, rhs) }
1250     }
1251
1252     pub fn maxnum(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value {
1253         unsafe { llvm::LLVMRustBuildMaxNum(self.llbuilder, lhs, rhs) }
1254     }
1255
1256     pub fn insert_element(
1257         &mut self,
1258         vec: &'ll Value,
1259         elt: &'ll Value,
1260         idx: &'ll Value,
1261     ) -> &'ll Value {
1262         unsafe { llvm::LLVMBuildInsertElement(self.llbuilder, vec, elt, idx, UNNAMED) }
1263     }
1264
1265     pub fn shuffle_vector(
1266         &mut self,
1267         v1: &'ll Value,
1268         v2: &'ll Value,
1269         mask: &'ll Value,
1270     ) -> &'ll Value {
1271         unsafe { llvm::LLVMBuildShuffleVector(self.llbuilder, v1, v2, mask, UNNAMED) }
1272     }
1273
1274     pub fn vector_reduce_fadd(&mut self, acc: &'ll Value, src: &'ll Value) -> &'ll Value {
1275         unsafe { llvm::LLVMRustBuildVectorReduceFAdd(self.llbuilder, acc, src) }
1276     }
1277     pub fn vector_reduce_fmul(&mut self, acc: &'ll Value, src: &'ll Value) -> &'ll Value {
1278         unsafe { llvm::LLVMRustBuildVectorReduceFMul(self.llbuilder, acc, src) }
1279     }
1280     pub fn vector_reduce_fadd_fast(&mut self, acc: &'ll Value, src: &'ll Value) -> &'ll Value {
1281         unsafe {
1282             let instr = llvm::LLVMRustBuildVectorReduceFAdd(self.llbuilder, acc, src);
1283             llvm::LLVMRustSetFastMath(instr);
1284             instr
1285         }
1286     }
1287     pub fn vector_reduce_fmul_fast(&mut self, acc: &'ll Value, src: &'ll Value) -> &'ll Value {
1288         unsafe {
1289             let instr = llvm::LLVMRustBuildVectorReduceFMul(self.llbuilder, acc, src);
1290             llvm::LLVMRustSetFastMath(instr);
1291             instr
1292         }
1293     }
1294     pub fn vector_reduce_add(&mut self, src: &'ll Value) -> &'ll Value {
1295         unsafe { llvm::LLVMRustBuildVectorReduceAdd(self.llbuilder, src) }
1296     }
1297     pub fn vector_reduce_mul(&mut self, src: &'ll Value) -> &'ll Value {
1298         unsafe { llvm::LLVMRustBuildVectorReduceMul(self.llbuilder, src) }
1299     }
1300     pub fn vector_reduce_and(&mut self, src: &'ll Value) -> &'ll Value {
1301         unsafe { llvm::LLVMRustBuildVectorReduceAnd(self.llbuilder, src) }
1302     }
1303     pub fn vector_reduce_or(&mut self, src: &'ll Value) -> &'ll Value {
1304         unsafe { llvm::LLVMRustBuildVectorReduceOr(self.llbuilder, src) }
1305     }
1306     pub fn vector_reduce_xor(&mut self, src: &'ll Value) -> &'ll Value {
1307         unsafe { llvm::LLVMRustBuildVectorReduceXor(self.llbuilder, src) }
1308     }
1309     pub fn vector_reduce_fmin(&mut self, src: &'ll Value) -> &'ll Value {
1310         unsafe {
1311             llvm::LLVMRustBuildVectorReduceFMin(self.llbuilder, src, /*NoNaNs:*/ false)
1312         }
1313     }
1314     pub fn vector_reduce_fmax(&mut self, src: &'ll Value) -> &'ll Value {
1315         unsafe {
1316             llvm::LLVMRustBuildVectorReduceFMax(self.llbuilder, src, /*NoNaNs:*/ false)
1317         }
1318     }
1319     pub fn vector_reduce_fmin_fast(&mut self, src: &'ll Value) -> &'ll Value {
1320         unsafe {
1321             let instr =
1322                 llvm::LLVMRustBuildVectorReduceFMin(self.llbuilder, src, /*NoNaNs:*/ true);
1323             llvm::LLVMRustSetFastMath(instr);
1324             instr
1325         }
1326     }
1327     pub fn vector_reduce_fmax_fast(&mut self, src: &'ll Value) -> &'ll Value {
1328         unsafe {
1329             let instr =
1330                 llvm::LLVMRustBuildVectorReduceFMax(self.llbuilder, src, /*NoNaNs:*/ true);
1331             llvm::LLVMRustSetFastMath(instr);
1332             instr
1333         }
1334     }
1335     pub fn vector_reduce_min(&mut self, src: &'ll Value, is_signed: bool) -> &'ll Value {
1336         unsafe { llvm::LLVMRustBuildVectorReduceMin(self.llbuilder, src, is_signed) }
1337     }
1338     pub fn vector_reduce_max(&mut self, src: &'ll Value, is_signed: bool) -> &'ll Value {
1339         unsafe { llvm::LLVMRustBuildVectorReduceMax(self.llbuilder, src, is_signed) }
1340     }
1341
1342     pub fn add_clause(&mut self, landing_pad: &'ll Value, clause: &'ll Value) {
1343         unsafe {
1344             llvm::LLVMAddClause(landing_pad, clause);
1345         }
1346     }
1347
1348     pub fn catch_ret(&mut self, funclet: &Funclet<'ll>, unwind: &'ll BasicBlock) -> &'ll Value {
1349         let ret =
1350             unsafe { llvm::LLVMRustBuildCatchRet(self.llbuilder, funclet.cleanuppad(), unwind) };
1351         ret.expect("LLVM does not have support for catchret")
1352     }
1353
1354     fn check_store(&mut self, val: &'ll Value, ptr: &'ll Value) -> &'ll Value {
1355         let dest_ptr_ty = self.cx.val_ty(ptr);
1356         let stored_ty = self.cx.val_ty(val);
1357         let stored_ptr_ty = self.cx.type_ptr_to(stored_ty);
1358
1359         assert_eq!(self.cx.type_kind(dest_ptr_ty), TypeKind::Pointer);
1360
1361         if dest_ptr_ty == stored_ptr_ty {
1362             ptr
1363         } else {
1364             debug!(
1365                 "type mismatch in store. \
1366                     Expected {:?}, got {:?}; inserting bitcast",
1367                 dest_ptr_ty, stored_ptr_ty
1368             );
1369             self.bitcast(ptr, stored_ptr_ty)
1370         }
1371     }
1372
1373     fn check_call<'b>(
1374         &mut self,
1375         typ: &str,
1376         fn_ty: &'ll Type,
1377         llfn: &'ll Value,
1378         args: &'b [&'ll Value],
1379     ) -> Cow<'b, [&'ll Value]> {
1380         assert!(
1381             self.cx.type_kind(fn_ty) == TypeKind::Function,
1382             "builder::{} not passed a function, but {:?}",
1383             typ,
1384             fn_ty
1385         );
1386
1387         let param_tys = self.cx.func_params_types(fn_ty);
1388
1389         let all_args_match = iter::zip(&param_tys, args.iter().map(|&v| self.val_ty(v)))
1390             .all(|(expected_ty, actual_ty)| *expected_ty == actual_ty);
1391
1392         if all_args_match {
1393             return Cow::Borrowed(args);
1394         }
1395
1396         let casted_args: Vec<_> = iter::zip(param_tys, args)
1397             .enumerate()
1398             .map(|(i, (expected_ty, &actual_val))| {
1399                 let actual_ty = self.val_ty(actual_val);
1400                 if expected_ty != actual_ty {
1401                     debug!(
1402                         "type mismatch in function call of {:?}. \
1403                             Expected {:?} for param {}, got {:?}; injecting bitcast",
1404                         llfn, expected_ty, i, actual_ty
1405                     );
1406                     self.bitcast(actual_val, expected_ty)
1407                 } else {
1408                     actual_val
1409                 }
1410             })
1411             .collect();
1412
1413         Cow::Owned(casted_args)
1414     }
1415
1416     pub fn va_arg(&mut self, list: &'ll Value, ty: &'ll Type) -> &'ll Value {
1417         unsafe { llvm::LLVMBuildVAArg(self.llbuilder, list, ty, UNNAMED) }
1418     }
1419
1420     pub(crate) fn call_intrinsic(&mut self, intrinsic: &str, args: &[&'ll Value]) -> &'ll Value {
1421         let (ty, f) = self.cx.get_intrinsic(intrinsic);
1422         self.call(ty, f, args, None)
1423     }
1424
1425     fn call_lifetime_intrinsic(&mut self, intrinsic: &str, ptr: &'ll Value, size: Size) {
1426         let size = size.bytes();
1427         if size == 0 {
1428             return;
1429         }
1430
1431         if !self.cx().sess().emit_lifetime_markers() {
1432             return;
1433         }
1434
1435         let ptr = self.pointercast(ptr, self.cx.type_i8p());
1436         self.call_intrinsic(intrinsic, &[self.cx.const_u64(size), ptr]);
1437     }
1438
1439     pub(crate) fn phi(
1440         &mut self,
1441         ty: &'ll Type,
1442         vals: &[&'ll Value],
1443         bbs: &[&'ll BasicBlock],
1444     ) -> &'ll Value {
1445         assert_eq!(vals.len(), bbs.len());
1446         let phi = unsafe { llvm::LLVMBuildPhi(self.llbuilder, ty, UNNAMED) };
1447         unsafe {
1448             llvm::LLVMAddIncoming(phi, vals.as_ptr(), bbs.as_ptr(), vals.len() as c_uint);
1449             phi
1450         }
1451     }
1452
1453     fn add_incoming_to_phi(&mut self, phi: &'ll Value, val: &'ll Value, bb: &'ll BasicBlock) {
1454         unsafe {
1455             llvm::LLVMAddIncoming(phi, &val, &bb, 1 as c_uint);
1456         }
1457     }
1458
1459     fn fptoint_sat_broken_in_llvm(&self) -> bool {
1460         match self.tcx.sess.target.arch.as_ref() {
1461             // FIXME - https://bugs.llvm.org/show_bug.cgi?id=50083
1462             "riscv64" => llvm_util::get_version() < (13, 0, 0),
1463             _ => false,
1464         }
1465     }
1466
1467     fn fptoint_sat(
1468         &mut self,
1469         signed: bool,
1470         val: &'ll Value,
1471         dest_ty: &'ll Type,
1472     ) -> Option<&'ll Value> {
1473         if !self.fptoint_sat_broken_in_llvm() {
1474             let src_ty = self.cx.val_ty(val);
1475             let (float_ty, int_ty, vector_length) = if self.cx.type_kind(src_ty) == TypeKind::Vector
1476             {
1477                 assert_eq!(self.cx.vector_length(src_ty), self.cx.vector_length(dest_ty));
1478                 (
1479                     self.cx.element_type(src_ty),
1480                     self.cx.element_type(dest_ty),
1481                     Some(self.cx.vector_length(src_ty)),
1482                 )
1483             } else {
1484                 (src_ty, dest_ty, None)
1485             };
1486             let float_width = self.cx.float_width(float_ty);
1487             let int_width = self.cx.int_width(int_ty);
1488
1489             let instr = if signed { "fptosi" } else { "fptoui" };
1490             let name = if let Some(vector_length) = vector_length {
1491                 format!(
1492                     "llvm.{}.sat.v{}i{}.v{}f{}",
1493                     instr, vector_length, int_width, vector_length, float_width
1494                 )
1495             } else {
1496                 format!("llvm.{}.sat.i{}.f{}", instr, int_width, float_width)
1497             };
1498             let f =
1499                 self.declare_cfn(&name, llvm::UnnamedAddr::No, self.type_func(&[src_ty], dest_ty));
1500             Some(self.call(self.type_func(&[src_ty], dest_ty), f, &[val], None))
1501         } else {
1502             None
1503         }
1504     }
1505
1506     pub(crate) fn landing_pad(
1507         &mut self,
1508         ty: &'ll Type,
1509         pers_fn: &'ll Value,
1510         num_clauses: usize,
1511     ) -> &'ll Value {
1512         // Use LLVMSetPersonalityFn to set the personality. It supports arbitrary Consts while,
1513         // LLVMBuildLandingPad requires the argument to be a Function (as of LLVM 12). The
1514         // personality lives on the parent function anyway.
1515         self.set_personality_fn(pers_fn);
1516         unsafe {
1517             llvm::LLVMBuildLandingPad(self.llbuilder, ty, None, num_clauses as c_uint, UNNAMED)
1518         }
1519     }
1520 }