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