]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_llvm/src/context.rs
Rollup merge of #82993 - camelid:source-use-diag, r=jyn514
[rust.git] / compiler / rustc_codegen_llvm / src / context.rs
1 use crate::attributes;
2 use crate::back::write::to_llvm_code_model;
3 use crate::callee::get_fn;
4 use crate::coverageinfo;
5 use crate::debuginfo;
6 use crate::llvm;
7 use crate::llvm_util;
8 use crate::type_::Type;
9 use crate::value::Value;
10
11 use cstr::cstr;
12 use rustc_codegen_ssa::base::wants_msvc_seh;
13 use rustc_codegen_ssa::traits::*;
14 use rustc_data_structures::base_n;
15 use rustc_data_structures::fx::FxHashMap;
16 use rustc_data_structures::small_c_str::SmallCStr;
17 use rustc_middle::bug;
18 use rustc_middle::mir::mono::CodegenUnit;
19 use rustc_middle::ty::layout::{HasParamEnv, LayoutError, TyAndLayout};
20 use rustc_middle::ty::{self, Instance, Ty, TyCtxt};
21 use rustc_session::config::{CFGuard, CrateType, DebugInfo};
22 use rustc_session::Session;
23 use rustc_span::source_map::{Span, DUMMY_SP};
24 use rustc_span::symbol::Symbol;
25 use rustc_target::abi::{HasDataLayout, LayoutOf, PointeeInfo, Size, TargetDataLayout, VariantIdx};
26 use rustc_target::spec::{HasTargetSpec, RelocModel, Target, TlsModel};
27
28 use std::cell::{Cell, RefCell};
29 use std::ffi::CStr;
30 use std::str;
31
32 /// There is one `CodegenCx` per compilation unit. Each one has its own LLVM
33 /// `llvm::Context` so that several compilation units may be optimized in parallel.
34 /// All other LLVM data structures in the `CodegenCx` are tied to that `llvm::Context`.
35 pub struct CodegenCx<'ll, 'tcx> {
36     pub tcx: TyCtxt<'tcx>,
37     pub check_overflow: bool,
38     pub use_dll_storage_attrs: bool,
39     pub tls_model: llvm::ThreadLocalMode,
40
41     pub llmod: &'ll llvm::Module,
42     pub llcx: &'ll llvm::Context,
43     pub codegen_unit: &'tcx CodegenUnit<'tcx>,
44
45     /// Cache instances of monomorphic and polymorphic items
46     pub instances: RefCell<FxHashMap<Instance<'tcx>, &'ll Value>>,
47     /// Cache generated vtables
48     pub vtables:
49         RefCell<FxHashMap<(Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>), &'ll Value>>,
50     /// Cache of constant strings,
51     pub const_cstr_cache: RefCell<FxHashMap<Symbol, &'ll Value>>,
52
53     /// Reverse-direction for const ptrs cast from globals.
54     ///
55     /// Key is a Value holding a `*T`,
56     /// Val is a Value holding a `*[T]`.
57     ///
58     /// Needed because LLVM loses pointer->pointee association
59     /// when we ptrcast, and we have to ptrcast during codegen
60     /// of a `[T]` const because we form a slice, a `(*T,usize)` pair, not
61     /// a pointer to an LLVM array type. Similar for trait objects.
62     pub const_unsized: RefCell<FxHashMap<&'ll Value, &'ll Value>>,
63
64     /// Cache of emitted const globals (value -> global)
65     pub const_globals: RefCell<FxHashMap<&'ll Value, &'ll Value>>,
66
67     /// List of globals for static variables which need to be passed to the
68     /// LLVM function ReplaceAllUsesWith (RAUW) when codegen is complete.
69     /// (We have to make sure we don't invalidate any Values referring
70     /// to constants.)
71     pub statics_to_rauw: RefCell<Vec<(&'ll Value, &'ll Value)>>,
72
73     /// Statics that will be placed in the llvm.used variable
74     /// See <http://llvm.org/docs/LangRef.html#the-llvm-used-global-variable> for details
75     pub used_statics: RefCell<Vec<&'ll Value>>,
76
77     pub lltypes: RefCell<FxHashMap<(Ty<'tcx>, Option<VariantIdx>), &'ll Type>>,
78     pub scalar_lltypes: RefCell<FxHashMap<Ty<'tcx>, &'ll Type>>,
79     pub pointee_infos: RefCell<FxHashMap<(Ty<'tcx>, Size), Option<PointeeInfo>>>,
80     pub isize_ty: &'ll Type,
81
82     pub coverage_cx: Option<coverageinfo::CrateCoverageContext<'ll, 'tcx>>,
83     pub dbg_cx: Option<debuginfo::CrateDebugContext<'ll, 'tcx>>,
84
85     eh_personality: Cell<Option<&'ll Value>>,
86     eh_catch_typeinfo: Cell<Option<&'ll Value>>,
87     pub rust_try_fn: Cell<Option<&'ll Value>>,
88
89     intrinsics: RefCell<FxHashMap<&'static str, &'ll Value>>,
90
91     /// A counter that is used for generating local symbol names
92     local_gen_sym_counter: Cell<usize>,
93 }
94
95 fn to_llvm_tls_model(tls_model: TlsModel) -> llvm::ThreadLocalMode {
96     match tls_model {
97         TlsModel::GeneralDynamic => llvm::ThreadLocalMode::GeneralDynamic,
98         TlsModel::LocalDynamic => llvm::ThreadLocalMode::LocalDynamic,
99         TlsModel::InitialExec => llvm::ThreadLocalMode::InitialExec,
100         TlsModel::LocalExec => llvm::ThreadLocalMode::LocalExec,
101     }
102 }
103
104 fn strip_powerpc64_vectors(data_layout: String) -> String {
105     data_layout.replace("-v256:256:256-v512:512:512", "")
106 }
107
108 pub unsafe fn create_module(
109     tcx: TyCtxt<'_>,
110     llcx: &'ll llvm::Context,
111     mod_name: &str,
112 ) -> &'ll llvm::Module {
113     let sess = tcx.sess;
114     let mod_name = SmallCStr::new(mod_name);
115     let llmod = llvm::LLVMModuleCreateWithNameInContext(mod_name.as_ptr(), llcx);
116
117     let mut target_data_layout = sess.target.data_layout.clone();
118     if llvm_util::get_version() < (12, 0, 0) && sess.target.arch == "powerpc64" {
119         target_data_layout = strip_powerpc64_vectors(target_data_layout);
120     }
121
122     // Ensure the data-layout values hardcoded remain the defaults.
123     if sess.target.is_builtin {
124         let tm = crate::back::write::create_informational_target_machine(tcx.sess);
125         llvm::LLVMRustSetDataLayoutFromTargetMachine(llmod, tm);
126         llvm::LLVMRustDisposeTargetMachine(tm);
127
128         let llvm_data_layout = llvm::LLVMGetDataLayoutStr(llmod);
129         let llvm_data_layout = str::from_utf8(CStr::from_ptr(llvm_data_layout).to_bytes())
130             .expect("got a non-UTF8 data-layout from LLVM");
131
132         // Unfortunately LLVM target specs change over time, and right now we
133         // don't have proper support to work with any more than one
134         // `data_layout` than the one that is in the rust-lang/rust repo. If
135         // this compiler is configured against a custom LLVM, we may have a
136         // differing data layout, even though we should update our own to use
137         // that one.
138         //
139         // As an interim hack, if CFG_LLVM_ROOT is not an empty string then we
140         // disable this check entirely as we may be configured with something
141         // that has a different target layout.
142         //
143         // Unsure if this will actually cause breakage when rustc is configured
144         // as such.
145         //
146         // FIXME(#34960)
147         let cfg_llvm_root = option_env!("CFG_LLVM_ROOT").unwrap_or("");
148         let custom_llvm_used = cfg_llvm_root.trim() != "";
149
150         if !custom_llvm_used && target_data_layout != llvm_data_layout {
151             bug!(
152                 "data-layout for builtin `{}` target, `{}`, \
153                   differs from LLVM default, `{}`",
154                 sess.target.llvm_target,
155                 target_data_layout,
156                 llvm_data_layout
157             );
158         }
159     }
160
161     let data_layout = SmallCStr::new(&target_data_layout);
162     llvm::LLVMSetDataLayout(llmod, data_layout.as_ptr());
163
164     let llvm_target = SmallCStr::new(&sess.target.llvm_target);
165     llvm::LLVMRustSetNormalizedTarget(llmod, llvm_target.as_ptr());
166
167     if sess.relocation_model() == RelocModel::Pic {
168         llvm::LLVMRustSetModulePICLevel(llmod);
169         // PIE is potentially more effective than PIC, but can only be used in executables.
170         // If all our outputs are executables, then we can relax PIC to PIE.
171         if sess.crate_types().iter().all(|ty| *ty == CrateType::Executable) {
172             llvm::LLVMRustSetModulePIELevel(llmod);
173         }
174     }
175
176     // Linking object files with different code models is undefined behavior
177     // because the compiler would have to generate additional code (to span
178     // longer jumps) if a larger code model is used with a smaller one.
179     //
180     // See https://reviews.llvm.org/D52322 and https://reviews.llvm.org/D52323.
181     llvm::LLVMRustSetModuleCodeModel(llmod, to_llvm_code_model(sess.code_model()));
182
183     // If skipping the PLT is enabled, we need to add some module metadata
184     // to ensure intrinsic calls don't use it.
185     if !sess.needs_plt() {
186         let avoid_plt = "RtLibUseGOT\0".as_ptr().cast();
187         llvm::LLVMRustAddModuleFlag(llmod, avoid_plt, 1);
188     }
189
190     // Control Flow Guard is currently only supported by the MSVC linker on Windows.
191     if sess.target.is_like_msvc {
192         match sess.opts.cg.control_flow_guard {
193             CFGuard::Disabled => {}
194             CFGuard::NoChecks => {
195                 // Set `cfguard=1` module flag to emit metadata only.
196                 llvm::LLVMRustAddModuleFlag(llmod, "cfguard\0".as_ptr() as *const _, 1)
197             }
198             CFGuard::Checks => {
199                 // Set `cfguard=2` module flag to emit metadata and checks.
200                 llvm::LLVMRustAddModuleFlag(llmod, "cfguard\0".as_ptr() as *const _, 2)
201             }
202         }
203     }
204
205     llmod
206 }
207
208 impl<'ll, 'tcx> CodegenCx<'ll, 'tcx> {
209     crate fn new(
210         tcx: TyCtxt<'tcx>,
211         codegen_unit: &'tcx CodegenUnit<'tcx>,
212         llvm_module: &'ll crate::ModuleLlvm,
213     ) -> Self {
214         // An interesting part of Windows which MSVC forces our hand on (and
215         // apparently MinGW didn't) is the usage of `dllimport` and `dllexport`
216         // attributes in LLVM IR as well as native dependencies (in C these
217         // correspond to `__declspec(dllimport)`).
218         //
219         // LD (BFD) in MinGW mode can often correctly guess `dllexport` but
220         // relying on that can result in issues like #50176.
221         // LLD won't support that and expects symbols with proper attributes.
222         // Because of that we make MinGW target emit dllexport just like MSVC.
223         // When it comes to dllimport we use it for constants but for functions
224         // rely on the linker to do the right thing. Opposed to dllexport this
225         // task is easy for them (both LD and LLD) and allows us to easily use
226         // symbols from static libraries in shared libraries.
227         //
228         // Whenever a dynamic library is built on Windows it must have its public
229         // interface specified by functions tagged with `dllexport` or otherwise
230         // they're not available to be linked against. This poses a few problems
231         // for the compiler, some of which are somewhat fundamental, but we use
232         // the `use_dll_storage_attrs` variable below to attach the `dllexport`
233         // attribute to all LLVM functions that are exported e.g., they're
234         // already tagged with external linkage). This is suboptimal for a few
235         // reasons:
236         //
237         // * If an object file will never be included in a dynamic library,
238         //   there's no need to attach the dllexport attribute. Most object
239         //   files in Rust are not destined to become part of a dll as binaries
240         //   are statically linked by default.
241         // * If the compiler is emitting both an rlib and a dylib, the same
242         //   source object file is currently used but with MSVC this may be less
243         //   feasible. The compiler may be able to get around this, but it may
244         //   involve some invasive changes to deal with this.
245         //
246         // The flipside of this situation is that whenever you link to a dll and
247         // you import a function from it, the import should be tagged with
248         // `dllimport`. At this time, however, the compiler does not emit
249         // `dllimport` for any declarations other than constants (where it is
250         // required), which is again suboptimal for even more reasons!
251         //
252         // * Calling a function imported from another dll without using
253         //   `dllimport` causes the linker/compiler to have extra overhead (one
254         //   `jmp` instruction on x86) when calling the function.
255         // * The same object file may be used in different circumstances, so a
256         //   function may be imported from a dll if the object is linked into a
257         //   dll, but it may be just linked against if linked into an rlib.
258         // * The compiler has no knowledge about whether native functions should
259         //   be tagged dllimport or not.
260         //
261         // For now the compiler takes the perf hit (I do not have any numbers to
262         // this effect) by marking very little as `dllimport` and praying the
263         // linker will take care of everything. Fixing this problem will likely
264         // require adding a few attributes to Rust itself (feature gated at the
265         // start) and then strongly recommending static linkage on Windows!
266         let use_dll_storage_attrs = tcx.sess.target.is_like_windows;
267
268         let check_overflow = tcx.sess.overflow_checks();
269
270         let tls_model = to_llvm_tls_model(tcx.sess.tls_model());
271
272         let (llcx, llmod) = (&*llvm_module.llcx, llvm_module.llmod());
273
274         let coverage_cx = if tcx.sess.instrument_coverage() {
275             let covctx = coverageinfo::CrateCoverageContext::new();
276             Some(covctx)
277         } else {
278             None
279         };
280
281         let dbg_cx = if tcx.sess.opts.debuginfo != DebugInfo::None {
282             let dctx = debuginfo::CrateDebugContext::new(llmod);
283             debuginfo::metadata::compile_unit_metadata(tcx, &codegen_unit.name().as_str(), &dctx);
284             Some(dctx)
285         } else {
286             None
287         };
288
289         let isize_ty = Type::ix_llcx(llcx, tcx.data_layout.pointer_size.bits());
290
291         CodegenCx {
292             tcx,
293             check_overflow,
294             use_dll_storage_attrs,
295             tls_model,
296             llmod,
297             llcx,
298             codegen_unit,
299             instances: Default::default(),
300             vtables: Default::default(),
301             const_cstr_cache: Default::default(),
302             const_unsized: Default::default(),
303             const_globals: Default::default(),
304             statics_to_rauw: RefCell::new(Vec::new()),
305             used_statics: RefCell::new(Vec::new()),
306             lltypes: Default::default(),
307             scalar_lltypes: Default::default(),
308             pointee_infos: Default::default(),
309             isize_ty,
310             coverage_cx,
311             dbg_cx,
312             eh_personality: Cell::new(None),
313             eh_catch_typeinfo: Cell::new(None),
314             rust_try_fn: Cell::new(None),
315             intrinsics: Default::default(),
316             local_gen_sym_counter: Cell::new(0),
317         }
318     }
319
320     crate fn statics_to_rauw(&self) -> &RefCell<Vec<(&'ll Value, &'ll Value)>> {
321         &self.statics_to_rauw
322     }
323
324     #[inline]
325     pub fn coverage_context(&'a self) -> Option<&'a coverageinfo::CrateCoverageContext<'ll, 'tcx>> {
326         self.coverage_cx.as_ref()
327     }
328 }
329
330 impl MiscMethods<'tcx> for CodegenCx<'ll, 'tcx> {
331     fn vtables(
332         &self,
333     ) -> &RefCell<FxHashMap<(Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>), &'ll Value>>
334     {
335         &self.vtables
336     }
337
338     fn get_fn(&self, instance: Instance<'tcx>) -> &'ll Value {
339         get_fn(self, instance)
340     }
341
342     fn get_fn_addr(&self, instance: Instance<'tcx>) -> &'ll Value {
343         get_fn(self, instance)
344     }
345
346     fn eh_personality(&self) -> &'ll Value {
347         // The exception handling personality function.
348         //
349         // If our compilation unit has the `eh_personality` lang item somewhere
350         // within it, then we just need to codegen that. Otherwise, we're
351         // building an rlib which will depend on some upstream implementation of
352         // this function, so we just codegen a generic reference to it. We don't
353         // specify any of the types for the function, we just make it a symbol
354         // that LLVM can later use.
355         //
356         // Note that MSVC is a little special here in that we don't use the
357         // `eh_personality` lang item at all. Currently LLVM has support for
358         // both Dwarf and SEH unwind mechanisms for MSVC targets and uses the
359         // *name of the personality function* to decide what kind of unwind side
360         // tables/landing pads to emit. It looks like Dwarf is used by default,
361         // injecting a dependency on the `_Unwind_Resume` symbol for resuming
362         // an "exception", but for MSVC we want to force SEH. This means that we
363         // can't actually have the personality function be our standard
364         // `rust_eh_personality` function, but rather we wired it up to the
365         // CRT's custom personality function, which forces LLVM to consider
366         // landing pads as "landing pads for SEH".
367         if let Some(llpersonality) = self.eh_personality.get() {
368             return llpersonality;
369         }
370         let tcx = self.tcx;
371         let llfn = match tcx.lang_items().eh_personality() {
372             Some(def_id) if !wants_msvc_seh(self.sess()) => self.get_fn_addr(
373                 ty::Instance::resolve(
374                     tcx,
375                     ty::ParamEnv::reveal_all(),
376                     def_id,
377                     tcx.intern_substs(&[]),
378                 )
379                 .unwrap()
380                 .unwrap(),
381             ),
382             _ => {
383                 let name = if wants_msvc_seh(self.sess()) {
384                     "__CxxFrameHandler3"
385                 } else {
386                     "rust_eh_personality"
387                 };
388                 let fty = self.type_variadic_func(&[], self.type_i32());
389                 self.declare_cfn(name, llvm::UnnamedAddr::Global, fty)
390             }
391         };
392         attributes::apply_target_cpu_attr(self, llfn);
393         self.eh_personality.set(Some(llfn));
394         llfn
395     }
396
397     fn sess(&self) -> &Session {
398         &self.tcx.sess
399     }
400
401     fn check_overflow(&self) -> bool {
402         self.check_overflow
403     }
404
405     fn codegen_unit(&self) -> &'tcx CodegenUnit<'tcx> {
406         self.codegen_unit
407     }
408
409     fn used_statics(&self) -> &RefCell<Vec<&'ll Value>> {
410         &self.used_statics
411     }
412
413     fn set_frame_pointer_elimination(&self, llfn: &'ll Value) {
414         attributes::set_frame_pointer_elimination(self, llfn)
415     }
416
417     fn apply_target_cpu_attr(&self, llfn: &'ll Value) {
418         attributes::apply_target_cpu_attr(self, llfn);
419         attributes::apply_tune_cpu_attr(self, llfn);
420     }
421
422     fn create_used_variable(&self) {
423         let name = cstr!("llvm.used");
424         let section = cstr!("llvm.metadata");
425         let array =
426             self.const_array(&self.type_ptr_to(self.type_i8()), &*self.used_statics.borrow());
427
428         unsafe {
429             let g = llvm::LLVMAddGlobal(self.llmod, self.val_ty(array), name.as_ptr());
430             llvm::LLVMSetInitializer(g, array);
431             llvm::LLVMRustSetLinkage(g, llvm::Linkage::AppendingLinkage);
432             llvm::LLVMSetSection(g, section.as_ptr());
433         }
434     }
435
436     fn declare_c_main(&self, fn_type: Self::Type) -> Option<Self::Function> {
437         if self.get_declared_value("main").is_none() {
438             Some(self.declare_cfn("main", llvm::UnnamedAddr::Global, fn_type))
439         } else {
440             // If the symbol already exists, it is an error: for example, the user wrote
441             // #[no_mangle] extern "C" fn main(..) {..}
442             // instead of #[start]
443             None
444         }
445     }
446 }
447
448 impl CodegenCx<'b, 'tcx> {
449     crate fn get_intrinsic(&self, key: &str) -> &'b Value {
450         if let Some(v) = self.intrinsics.borrow().get(key).cloned() {
451             return v;
452         }
453
454         self.declare_intrinsic(key).unwrap_or_else(|| bug!("unknown intrinsic '{}'", key))
455     }
456
457     fn insert_intrinsic(
458         &self,
459         name: &'static str,
460         args: Option<&[&'b llvm::Type]>,
461         ret: &'b llvm::Type,
462     ) -> &'b llvm::Value {
463         let fn_ty = if let Some(args) = args {
464             self.type_func(args, ret)
465         } else {
466             self.type_variadic_func(&[], ret)
467         };
468         let f = self.declare_cfn(name, llvm::UnnamedAddr::No, fn_ty);
469         self.intrinsics.borrow_mut().insert(name, f);
470         f
471     }
472
473     fn declare_intrinsic(&self, key: &str) -> Option<&'b Value> {
474         macro_rules! ifn {
475             ($name:expr, fn() -> $ret:expr) => (
476                 if key == $name {
477                     return Some(self.insert_intrinsic($name, Some(&[]), $ret));
478                 }
479             );
480             ($name:expr, fn(...) -> $ret:expr) => (
481                 if key == $name {
482                     return Some(self.insert_intrinsic($name, None, $ret));
483                 }
484             );
485             ($name:expr, fn($($arg:expr),*) -> $ret:expr) => (
486                 if key == $name {
487                     return Some(self.insert_intrinsic($name, Some(&[$($arg),*]), $ret));
488                 }
489             );
490         }
491         macro_rules! mk_struct {
492             ($($field_ty:expr),*) => (self.type_struct( &[$($field_ty),*], false))
493         }
494
495         let i8p = self.type_i8p();
496         let void = self.type_void();
497         let i1 = self.type_i1();
498         let t_i8 = self.type_i8();
499         let t_i16 = self.type_i16();
500         let t_i32 = self.type_i32();
501         let t_i64 = self.type_i64();
502         let t_i128 = self.type_i128();
503         let t_f32 = self.type_f32();
504         let t_f64 = self.type_f64();
505
506         ifn!("llvm.wasm.trunc.saturate.unsigned.i32.f32", fn(t_f32) -> t_i32);
507         ifn!("llvm.wasm.trunc.saturate.unsigned.i32.f64", fn(t_f64) -> t_i32);
508         ifn!("llvm.wasm.trunc.saturate.unsigned.i64.f32", fn(t_f32) -> t_i64);
509         ifn!("llvm.wasm.trunc.saturate.unsigned.i64.f64", fn(t_f64) -> t_i64);
510         ifn!("llvm.wasm.trunc.saturate.signed.i32.f32", fn(t_f32) -> t_i32);
511         ifn!("llvm.wasm.trunc.saturate.signed.i32.f64", fn(t_f64) -> t_i32);
512         ifn!("llvm.wasm.trunc.saturate.signed.i64.f32", fn(t_f32) -> t_i64);
513         ifn!("llvm.wasm.trunc.saturate.signed.i64.f64", fn(t_f64) -> t_i64);
514         ifn!("llvm.wasm.trunc.unsigned.i32.f32", fn(t_f32) -> t_i32);
515         ifn!("llvm.wasm.trunc.unsigned.i32.f64", fn(t_f64) -> t_i32);
516         ifn!("llvm.wasm.trunc.unsigned.i64.f32", fn(t_f32) -> t_i64);
517         ifn!("llvm.wasm.trunc.unsigned.i64.f64", fn(t_f64) -> t_i64);
518         ifn!("llvm.wasm.trunc.signed.i32.f32", fn(t_f32) -> t_i32);
519         ifn!("llvm.wasm.trunc.signed.i32.f64", fn(t_f64) -> t_i32);
520         ifn!("llvm.wasm.trunc.signed.i64.f32", fn(t_f32) -> t_i64);
521         ifn!("llvm.wasm.trunc.signed.i64.f64", fn(t_f64) -> t_i64);
522
523         ifn!("llvm.trap", fn() -> void);
524         ifn!("llvm.debugtrap", fn() -> void);
525         ifn!("llvm.frameaddress", fn(t_i32) -> i8p);
526         ifn!("llvm.sideeffect", fn() -> void);
527
528         ifn!("llvm.powi.f32", fn(t_f32, t_i32) -> t_f32);
529         ifn!("llvm.powi.f64", fn(t_f64, t_i32) -> t_f64);
530
531         ifn!("llvm.pow.f32", fn(t_f32, t_f32) -> t_f32);
532         ifn!("llvm.pow.f64", fn(t_f64, t_f64) -> t_f64);
533
534         ifn!("llvm.sqrt.f32", fn(t_f32) -> t_f32);
535         ifn!("llvm.sqrt.f64", fn(t_f64) -> t_f64);
536
537         ifn!("llvm.sin.f32", fn(t_f32) -> t_f32);
538         ifn!("llvm.sin.f64", fn(t_f64) -> t_f64);
539
540         ifn!("llvm.cos.f32", fn(t_f32) -> t_f32);
541         ifn!("llvm.cos.f64", fn(t_f64) -> t_f64);
542
543         ifn!("llvm.exp.f32", fn(t_f32) -> t_f32);
544         ifn!("llvm.exp.f64", fn(t_f64) -> t_f64);
545
546         ifn!("llvm.exp2.f32", fn(t_f32) -> t_f32);
547         ifn!("llvm.exp2.f64", fn(t_f64) -> t_f64);
548
549         ifn!("llvm.log.f32", fn(t_f32) -> t_f32);
550         ifn!("llvm.log.f64", fn(t_f64) -> t_f64);
551
552         ifn!("llvm.log10.f32", fn(t_f32) -> t_f32);
553         ifn!("llvm.log10.f64", fn(t_f64) -> t_f64);
554
555         ifn!("llvm.log2.f32", fn(t_f32) -> t_f32);
556         ifn!("llvm.log2.f64", fn(t_f64) -> t_f64);
557
558         ifn!("llvm.fma.f32", fn(t_f32, t_f32, t_f32) -> t_f32);
559         ifn!("llvm.fma.f64", fn(t_f64, t_f64, t_f64) -> t_f64);
560
561         ifn!("llvm.fabs.f32", fn(t_f32) -> t_f32);
562         ifn!("llvm.fabs.f64", fn(t_f64) -> t_f64);
563
564         ifn!("llvm.minnum.f32", fn(t_f32, t_f32) -> t_f32);
565         ifn!("llvm.minnum.f64", fn(t_f64, t_f64) -> t_f64);
566         ifn!("llvm.maxnum.f32", fn(t_f32, t_f32) -> t_f32);
567         ifn!("llvm.maxnum.f64", fn(t_f64, t_f64) -> t_f64);
568
569         ifn!("llvm.floor.f32", fn(t_f32) -> t_f32);
570         ifn!("llvm.floor.f64", fn(t_f64) -> t_f64);
571
572         ifn!("llvm.ceil.f32", fn(t_f32) -> t_f32);
573         ifn!("llvm.ceil.f64", fn(t_f64) -> t_f64);
574
575         ifn!("llvm.trunc.f32", fn(t_f32) -> t_f32);
576         ifn!("llvm.trunc.f64", fn(t_f64) -> t_f64);
577
578         ifn!("llvm.copysign.f32", fn(t_f32, t_f32) -> t_f32);
579         ifn!("llvm.copysign.f64", fn(t_f64, t_f64) -> t_f64);
580         ifn!("llvm.round.f32", fn(t_f32) -> t_f32);
581         ifn!("llvm.round.f64", fn(t_f64) -> t_f64);
582
583         ifn!("llvm.rint.f32", fn(t_f32) -> t_f32);
584         ifn!("llvm.rint.f64", fn(t_f64) -> t_f64);
585         ifn!("llvm.nearbyint.f32", fn(t_f32) -> t_f32);
586         ifn!("llvm.nearbyint.f64", fn(t_f64) -> t_f64);
587
588         ifn!("llvm.ctpop.i8", fn(t_i8) -> t_i8);
589         ifn!("llvm.ctpop.i16", fn(t_i16) -> t_i16);
590         ifn!("llvm.ctpop.i32", fn(t_i32) -> t_i32);
591         ifn!("llvm.ctpop.i64", fn(t_i64) -> t_i64);
592         ifn!("llvm.ctpop.i128", fn(t_i128) -> t_i128);
593
594         ifn!("llvm.ctlz.i8", fn(t_i8, i1) -> t_i8);
595         ifn!("llvm.ctlz.i16", fn(t_i16, i1) -> t_i16);
596         ifn!("llvm.ctlz.i32", fn(t_i32, i1) -> t_i32);
597         ifn!("llvm.ctlz.i64", fn(t_i64, i1) -> t_i64);
598         ifn!("llvm.ctlz.i128", fn(t_i128, i1) -> t_i128);
599
600         ifn!("llvm.cttz.i8", fn(t_i8, i1) -> t_i8);
601         ifn!("llvm.cttz.i16", fn(t_i16, i1) -> t_i16);
602         ifn!("llvm.cttz.i32", fn(t_i32, i1) -> t_i32);
603         ifn!("llvm.cttz.i64", fn(t_i64, i1) -> t_i64);
604         ifn!("llvm.cttz.i128", fn(t_i128, i1) -> t_i128);
605
606         ifn!("llvm.bswap.i16", fn(t_i16) -> t_i16);
607         ifn!("llvm.bswap.i32", fn(t_i32) -> t_i32);
608         ifn!("llvm.bswap.i64", fn(t_i64) -> t_i64);
609         ifn!("llvm.bswap.i128", fn(t_i128) -> t_i128);
610
611         ifn!("llvm.bitreverse.i8", fn(t_i8) -> t_i8);
612         ifn!("llvm.bitreverse.i16", fn(t_i16) -> t_i16);
613         ifn!("llvm.bitreverse.i32", fn(t_i32) -> t_i32);
614         ifn!("llvm.bitreverse.i64", fn(t_i64) -> t_i64);
615         ifn!("llvm.bitreverse.i128", fn(t_i128) -> t_i128);
616
617         ifn!("llvm.fshl.i8", fn(t_i8, t_i8, t_i8) -> t_i8);
618         ifn!("llvm.fshl.i16", fn(t_i16, t_i16, t_i16) -> t_i16);
619         ifn!("llvm.fshl.i32", fn(t_i32, t_i32, t_i32) -> t_i32);
620         ifn!("llvm.fshl.i64", fn(t_i64, t_i64, t_i64) -> t_i64);
621         ifn!("llvm.fshl.i128", fn(t_i128, t_i128, t_i128) -> t_i128);
622
623         ifn!("llvm.fshr.i8", fn(t_i8, t_i8, t_i8) -> t_i8);
624         ifn!("llvm.fshr.i16", fn(t_i16, t_i16, t_i16) -> t_i16);
625         ifn!("llvm.fshr.i32", fn(t_i32, t_i32, t_i32) -> t_i32);
626         ifn!("llvm.fshr.i64", fn(t_i64, t_i64, t_i64) -> t_i64);
627         ifn!("llvm.fshr.i128", fn(t_i128, t_i128, t_i128) -> t_i128);
628
629         ifn!("llvm.sadd.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct! {t_i8, i1});
630         ifn!("llvm.sadd.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct! {t_i16, i1});
631         ifn!("llvm.sadd.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct! {t_i32, i1});
632         ifn!("llvm.sadd.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct! {t_i64, i1});
633         ifn!("llvm.sadd.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct! {t_i128, i1});
634
635         ifn!("llvm.uadd.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct! {t_i8, i1});
636         ifn!("llvm.uadd.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct! {t_i16, i1});
637         ifn!("llvm.uadd.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct! {t_i32, i1});
638         ifn!("llvm.uadd.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct! {t_i64, i1});
639         ifn!("llvm.uadd.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct! {t_i128, i1});
640
641         ifn!("llvm.ssub.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct! {t_i8, i1});
642         ifn!("llvm.ssub.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct! {t_i16, i1});
643         ifn!("llvm.ssub.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct! {t_i32, i1});
644         ifn!("llvm.ssub.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct! {t_i64, i1});
645         ifn!("llvm.ssub.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct! {t_i128, i1});
646
647         ifn!("llvm.usub.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct! {t_i8, i1});
648         ifn!("llvm.usub.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct! {t_i16, i1});
649         ifn!("llvm.usub.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct! {t_i32, i1});
650         ifn!("llvm.usub.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct! {t_i64, i1});
651         ifn!("llvm.usub.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct! {t_i128, i1});
652
653         ifn!("llvm.smul.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct! {t_i8, i1});
654         ifn!("llvm.smul.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct! {t_i16, i1});
655         ifn!("llvm.smul.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct! {t_i32, i1});
656         ifn!("llvm.smul.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct! {t_i64, i1});
657         ifn!("llvm.smul.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct! {t_i128, i1});
658
659         ifn!("llvm.umul.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct! {t_i8, i1});
660         ifn!("llvm.umul.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct! {t_i16, i1});
661         ifn!("llvm.umul.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct! {t_i32, i1});
662         ifn!("llvm.umul.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct! {t_i64, i1});
663         ifn!("llvm.umul.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct! {t_i128, i1});
664
665         ifn!("llvm.sadd.sat.i8", fn(t_i8, t_i8) -> t_i8);
666         ifn!("llvm.sadd.sat.i16", fn(t_i16, t_i16) -> t_i16);
667         ifn!("llvm.sadd.sat.i32", fn(t_i32, t_i32) -> t_i32);
668         ifn!("llvm.sadd.sat.i64", fn(t_i64, t_i64) -> t_i64);
669         ifn!("llvm.sadd.sat.i128", fn(t_i128, t_i128) -> t_i128);
670
671         ifn!("llvm.uadd.sat.i8", fn(t_i8, t_i8) -> t_i8);
672         ifn!("llvm.uadd.sat.i16", fn(t_i16, t_i16) -> t_i16);
673         ifn!("llvm.uadd.sat.i32", fn(t_i32, t_i32) -> t_i32);
674         ifn!("llvm.uadd.sat.i64", fn(t_i64, t_i64) -> t_i64);
675         ifn!("llvm.uadd.sat.i128", fn(t_i128, t_i128) -> t_i128);
676
677         ifn!("llvm.ssub.sat.i8", fn(t_i8, t_i8) -> t_i8);
678         ifn!("llvm.ssub.sat.i16", fn(t_i16, t_i16) -> t_i16);
679         ifn!("llvm.ssub.sat.i32", fn(t_i32, t_i32) -> t_i32);
680         ifn!("llvm.ssub.sat.i64", fn(t_i64, t_i64) -> t_i64);
681         ifn!("llvm.ssub.sat.i128", fn(t_i128, t_i128) -> t_i128);
682
683         ifn!("llvm.usub.sat.i8", fn(t_i8, t_i8) -> t_i8);
684         ifn!("llvm.usub.sat.i16", fn(t_i16, t_i16) -> t_i16);
685         ifn!("llvm.usub.sat.i32", fn(t_i32, t_i32) -> t_i32);
686         ifn!("llvm.usub.sat.i64", fn(t_i64, t_i64) -> t_i64);
687         ifn!("llvm.usub.sat.i128", fn(t_i128, t_i128) -> t_i128);
688
689         ifn!("llvm.lifetime.start.p0i8", fn(t_i64, i8p) -> void);
690         ifn!("llvm.lifetime.end.p0i8", fn(t_i64, i8p) -> void);
691
692         ifn!("llvm.expect.i1", fn(i1, i1) -> i1);
693         ifn!("llvm.eh.typeid.for", fn(i8p) -> t_i32);
694         ifn!("llvm.localescape", fn(...) -> void);
695         ifn!("llvm.localrecover", fn(i8p, i8p, t_i32) -> i8p);
696         ifn!("llvm.x86.seh.recoverfp", fn(i8p, i8p) -> i8p);
697
698         ifn!("llvm.assume", fn(i1) -> void);
699         ifn!("llvm.prefetch", fn(i8p, t_i32, t_i32, t_i32) -> void);
700
701         // variadic intrinsics
702         ifn!("llvm.va_start", fn(i8p) -> void);
703         ifn!("llvm.va_end", fn(i8p) -> void);
704         ifn!("llvm.va_copy", fn(i8p, i8p) -> void);
705
706         if self.sess().instrument_coverage() {
707             ifn!("llvm.instrprof.increment", fn(i8p, t_i64, t_i32, t_i32) -> void);
708         }
709
710         if self.sess().opts.debuginfo != DebugInfo::None {
711             ifn!("llvm.dbg.declare", fn(self.type_metadata(), self.type_metadata()) -> void);
712             ifn!("llvm.dbg.value", fn(self.type_metadata(), t_i64, self.type_metadata()) -> void);
713         }
714         None
715     }
716
717     crate fn eh_catch_typeinfo(&self) -> &'b Value {
718         if let Some(eh_catch_typeinfo) = self.eh_catch_typeinfo.get() {
719             return eh_catch_typeinfo;
720         }
721         let tcx = self.tcx;
722         assert!(self.sess().target.is_like_emscripten);
723         let eh_catch_typeinfo = match tcx.lang_items().eh_catch_typeinfo() {
724             Some(def_id) => self.get_static(def_id),
725             _ => {
726                 let ty = self
727                     .type_struct(&[self.type_ptr_to(self.type_isize()), self.type_i8p()], false);
728                 self.declare_global("rust_eh_catch_typeinfo", ty)
729             }
730         };
731         let eh_catch_typeinfo = self.const_bitcast(eh_catch_typeinfo, self.type_i8p());
732         self.eh_catch_typeinfo.set(Some(eh_catch_typeinfo));
733         eh_catch_typeinfo
734     }
735 }
736
737 impl<'b, 'tcx> CodegenCx<'b, 'tcx> {
738     /// Generates a new symbol name with the given prefix. This symbol name must
739     /// only be used for definitions with `internal` or `private` linkage.
740     pub fn generate_local_symbol_name(&self, prefix: &str) -> String {
741         let idx = self.local_gen_sym_counter.get();
742         self.local_gen_sym_counter.set(idx + 1);
743         // Include a '.' character, so there can be no accidental conflicts with
744         // user defined names
745         let mut name = String::with_capacity(prefix.len() + 6);
746         name.push_str(prefix);
747         name.push('.');
748         base_n::push_str(idx as u128, base_n::ALPHANUMERIC_ONLY, &mut name);
749         name
750     }
751 }
752
753 impl HasDataLayout for CodegenCx<'ll, 'tcx> {
754     fn data_layout(&self) -> &TargetDataLayout {
755         &self.tcx.data_layout
756     }
757 }
758
759 impl HasTargetSpec for CodegenCx<'ll, 'tcx> {
760     fn target_spec(&self) -> &Target {
761         &self.tcx.sess.target
762     }
763 }
764
765 impl ty::layout::HasTyCtxt<'tcx> for CodegenCx<'ll, 'tcx> {
766     fn tcx(&self) -> TyCtxt<'tcx> {
767         self.tcx
768     }
769 }
770
771 impl LayoutOf for CodegenCx<'ll, 'tcx> {
772     type Ty = Ty<'tcx>;
773     type TyAndLayout = TyAndLayout<'tcx>;
774
775     fn layout_of(&self, ty: Ty<'tcx>) -> Self::TyAndLayout {
776         self.spanned_layout_of(ty, DUMMY_SP)
777     }
778
779     fn spanned_layout_of(&self, ty: Ty<'tcx>, span: Span) -> Self::TyAndLayout {
780         self.tcx.layout_of(ty::ParamEnv::reveal_all().and(ty)).unwrap_or_else(|e| {
781             if let LayoutError::SizeOverflow(_) = e {
782                 self.sess().span_fatal(span, &e.to_string())
783             } else {
784                 bug!("failed to get layout for `{}`: {}", ty, e)
785             }
786         })
787     }
788 }
789
790 impl<'tcx, 'll> HasParamEnv<'tcx> for CodegenCx<'ll, 'tcx> {
791     fn param_env(&self) -> ty::ParamEnv<'tcx> {
792         ty::ParamEnv::reveal_all()
793     }
794 }