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