]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/context.rs
Rollup merge of #43374 - stjepang:fix-sort-randomization-comment, r=alexcrichton
[rust.git] / src / librustc_trans / context.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use llvm;
12 use llvm::{ContextRef, ModuleRef, ValueRef};
13 use rustc::dep_graph::{DepGraph, DepGraphSafe};
14 use rustc::hir;
15 use rustc::hir::def_id::DefId;
16 use rustc::traits;
17 use debuginfo;
18 use callee;
19 use back::symbol_export::ExportedSymbols;
20 use base;
21 use declare;
22 use monomorphize::Instance;
23
24 use partitioning::CodegenUnit;
25 use trans_item::TransItem;
26 use type_::Type;
27 use rustc_data_structures::base_n;
28 use rustc::session::config::{self, NoDebugInfo, OutputFilenames};
29 use rustc::session::Session;
30 use rustc::ty::subst::Substs;
31 use rustc::ty::{self, Ty, TyCtxt};
32 use rustc::ty::layout::{LayoutCx, LayoutError, LayoutTyper, TyLayout};
33 use rustc::util::nodemap::{DefIdMap, FxHashMap, FxHashSet};
34
35 use std::ffi::{CStr, CString};
36 use std::cell::{Cell, RefCell};
37 use std::ptr;
38 use std::iter;
39 use std::str;
40 use std::sync::Arc;
41 use std::marker::PhantomData;
42 use syntax::ast;
43 use syntax::symbol::InternedString;
44 use syntax_pos::DUMMY_SP;
45 use abi::Abi;
46
47 #[derive(Clone, Default)]
48 pub struct Stats {
49     pub n_glues_created: Cell<usize>,
50     pub n_null_glues: Cell<usize>,
51     pub n_real_glues: Cell<usize>,
52     pub n_fns: Cell<usize>,
53     pub n_inlines: Cell<usize>,
54     pub n_closures: Cell<usize>,
55     pub n_llvm_insns: Cell<usize>,
56     pub llvm_insns: RefCell<FxHashMap<String, usize>>,
57     // (ident, llvm-instructions)
58     pub fn_stats: RefCell<Vec<(String, usize)> >,
59 }
60
61 impl Stats {
62     pub fn extend(&mut self, stats: Stats) {
63         self.n_glues_created.set(self.n_glues_created.get() + stats.n_glues_created.get());
64         self.n_null_glues.set(self.n_null_glues.get() + stats.n_null_glues.get());
65         self.n_real_glues.set(self.n_real_glues.get() + stats.n_real_glues.get());
66         self.n_fns.set(self.n_fns.get() + stats.n_fns.get());
67         self.n_inlines.set(self.n_inlines.get() + stats.n_inlines.get());
68         self.n_closures.set(self.n_closures.get() + stats.n_closures.get());
69         self.n_llvm_insns.set(self.n_llvm_insns.get() + stats.n_llvm_insns.get());
70         self.llvm_insns.borrow_mut().extend(
71             stats.llvm_insns.borrow().iter()
72                                      .map(|(key, value)| (key.clone(), value.clone())));
73         self.fn_stats.borrow_mut().append(&mut *stats.fn_stats.borrow_mut());
74     }
75 }
76
77 /// The shared portion of a `CrateContext`.  There is one `SharedCrateContext`
78 /// per crate.  The data here is shared between all compilation units of the
79 /// crate, so it must not contain references to any LLVM data structures
80 /// (aside from metadata-related ones).
81 pub struct SharedCrateContext<'a, 'tcx: 'a> {
82     tcx: TyCtxt<'a, 'tcx, 'tcx>,
83     check_overflow: bool,
84
85     use_dll_storage_attrs: bool,
86
87     output_filenames: &'a OutputFilenames,
88 }
89
90 /// The local portion of a `CrateContext`.  There is one `LocalCrateContext`
91 /// per compilation unit.  Each one has its own LLVM `ContextRef` so that
92 /// several compilation units may be optimized in parallel.  All other LLVM
93 /// data structures in the `LocalCrateContext` are tied to that `ContextRef`.
94 pub struct LocalCrateContext<'a, 'tcx: 'a> {
95     llmod: ModuleRef,
96     llcx: ContextRef,
97     stats: Stats,
98     codegen_unit: CodegenUnit<'tcx>,
99
100     /// The translation items of the whole crate.
101     crate_trans_items: Arc<FxHashSet<TransItem<'tcx>>>,
102
103     /// Information about which symbols are exported from the crate.
104     exported_symbols: Arc<ExportedSymbols>,
105
106     /// Cache instances of monomorphic and polymorphic items
107     instances: RefCell<FxHashMap<Instance<'tcx>, ValueRef>>,
108     /// Cache generated vtables
109     vtables: RefCell<FxHashMap<(ty::Ty<'tcx>,
110                                 Option<ty::PolyExistentialTraitRef<'tcx>>), ValueRef>>,
111     /// Cache of constant strings,
112     const_cstr_cache: RefCell<FxHashMap<InternedString, ValueRef>>,
113
114     /// Reverse-direction for const ptrs cast from globals.
115     /// Key is a ValueRef holding a *T,
116     /// Val is a ValueRef holding a *[T].
117     ///
118     /// Needed because LLVM loses pointer->pointee association
119     /// when we ptrcast, and we have to ptrcast during translation
120     /// of a [T] const because we form a slice, a (*T,usize) pair, not
121     /// a pointer to an LLVM array type. Similar for trait objects.
122     const_unsized: RefCell<FxHashMap<ValueRef, ValueRef>>,
123
124     /// Cache of emitted const globals (value -> global)
125     const_globals: RefCell<FxHashMap<ValueRef, ValueRef>>,
126
127     /// Cache of emitted const values
128     const_values: RefCell<FxHashMap<(ast::NodeId, &'tcx Substs<'tcx>), ValueRef>>,
129
130     /// Cache of external const values
131     extern_const_values: RefCell<DefIdMap<ValueRef>>,
132
133     /// Mapping from static definitions to their DefId's.
134     statics: RefCell<FxHashMap<ValueRef, DefId>>,
135
136     /// List of globals for static variables which need to be passed to the
137     /// LLVM function ReplaceAllUsesWith (RAUW) when translation is complete.
138     /// (We have to make sure we don't invalidate any ValueRefs referring
139     /// to constants.)
140     statics_to_rauw: RefCell<Vec<(ValueRef, ValueRef)>>,
141
142     /// Statics that will be placed in the llvm.used variable
143     /// See http://llvm.org/docs/LangRef.html#the-llvm-used-global-variable for details
144     used_statics: RefCell<Vec<ValueRef>>,
145
146     lltypes: RefCell<FxHashMap<Ty<'tcx>, Type>>,
147     type_hashcodes: RefCell<FxHashMap<Ty<'tcx>, String>>,
148     int_type: Type,
149     opaque_vec_type: Type,
150     str_slice_type: Type,
151
152     dbg_cx: Option<debuginfo::CrateDebugContext<'tcx>>,
153
154     eh_personality: Cell<Option<ValueRef>>,
155     eh_unwind_resume: Cell<Option<ValueRef>>,
156     rust_try_fn: Cell<Option<ValueRef>>,
157
158     intrinsics: RefCell<FxHashMap<&'static str, ValueRef>>,
159
160     /// Depth of the current type-of computation - used to bail out
161     type_of_depth: Cell<usize>,
162
163     /// A counter that is used for generating local symbol names
164     local_gen_sym_counter: Cell<usize>,
165
166     /// A placeholder so we can add lifetimes
167     placeholder: PhantomData<&'a ()>,
168 }
169
170 /// A CrateContext value binds together one LocalCrateContext with the
171 /// SharedCrateContext. It exists as a convenience wrapper, so we don't have to
172 /// pass around (SharedCrateContext, LocalCrateContext) tuples all over trans.
173 pub struct CrateContext<'a, 'tcx: 'a> {
174     shared: &'a SharedCrateContext<'a, 'tcx>,
175     local_ccx: &'a LocalCrateContext<'a, 'tcx>,
176 }
177
178 impl<'a, 'tcx> CrateContext<'a, 'tcx> {
179     pub fn new(shared: &'a SharedCrateContext<'a, 'tcx>,
180                local_ccx: &'a LocalCrateContext<'a, 'tcx>)
181                -> Self {
182         CrateContext { shared, local_ccx }
183     }
184 }
185
186 impl<'a, 'tcx> DepGraphSafe for CrateContext<'a, 'tcx> {
187 }
188
189 pub fn get_reloc_model(sess: &Session) -> llvm::RelocMode {
190     let reloc_model_arg = match sess.opts.cg.relocation_model {
191         Some(ref s) => &s[..],
192         None => &sess.target.target.options.relocation_model[..],
193     };
194
195     match ::back::write::RELOC_MODEL_ARGS.iter().find(
196         |&&arg| arg.0 == reloc_model_arg) {
197         Some(x) => x.1,
198         _ => {
199             sess.err(&format!("{:?} is not a valid relocation mode",
200                              sess.opts
201                                  .cg
202                                  .code_model));
203             sess.abort_if_errors();
204             bug!();
205         }
206     }
207 }
208
209 fn is_any_library(sess: &Session) -> bool {
210     sess.crate_types.borrow().iter().any(|ty| {
211         *ty != config::CrateTypeExecutable
212     })
213 }
214
215 pub fn is_pie_binary(sess: &Session) -> bool {
216     !is_any_library(sess) && get_reloc_model(sess) == llvm::RelocMode::PIC
217 }
218
219 pub unsafe fn create_context_and_module(sess: &Session, mod_name: &str) -> (ContextRef, ModuleRef) {
220     let llcx = llvm::LLVMContextCreate();
221     let mod_name = CString::new(mod_name).unwrap();
222     let llmod = llvm::LLVMModuleCreateWithNameInContext(mod_name.as_ptr(), llcx);
223
224     // Ensure the data-layout values hardcoded remain the defaults.
225     if sess.target.target.options.is_builtin {
226         let tm = ::back::write::create_target_machine(sess);
227         llvm::LLVMRustSetDataLayoutFromTargetMachine(llmod, tm);
228         llvm::LLVMRustDisposeTargetMachine(tm);
229
230         let data_layout = llvm::LLVMGetDataLayout(llmod);
231         let data_layout = str::from_utf8(CStr::from_ptr(data_layout).to_bytes())
232             .ok().expect("got a non-UTF8 data-layout from LLVM");
233
234         // Unfortunately LLVM target specs change over time, and right now we
235         // don't have proper support to work with any more than one
236         // `data_layout` than the one that is in the rust-lang/rust repo. If
237         // this compiler is configured against a custom LLVM, we may have a
238         // differing data layout, even though we should update our own to use
239         // that one.
240         //
241         // As an interim hack, if CFG_LLVM_ROOT is not an empty string then we
242         // disable this check entirely as we may be configured with something
243         // that has a different target layout.
244         //
245         // Unsure if this will actually cause breakage when rustc is configured
246         // as such.
247         //
248         // FIXME(#34960)
249         let cfg_llvm_root = option_env!("CFG_LLVM_ROOT").unwrap_or("");
250         let custom_llvm_used = cfg_llvm_root.trim() != "";
251
252         if !custom_llvm_used && sess.target.target.data_layout != data_layout {
253             bug!("data-layout for builtin `{}` target, `{}`, \
254                   differs from LLVM default, `{}`",
255                  sess.target.target.llvm_target,
256                  sess.target.target.data_layout,
257                  data_layout);
258         }
259     }
260
261     let data_layout = CString::new(&sess.target.target.data_layout[..]).unwrap();
262     llvm::LLVMSetDataLayout(llmod, data_layout.as_ptr());
263
264     let llvm_target = sess.target.target.llvm_target.as_bytes();
265     let llvm_target = CString::new(llvm_target).unwrap();
266     llvm::LLVMRustSetNormalizedTarget(llmod, llvm_target.as_ptr());
267
268     if is_pie_binary(sess) {
269         llvm::LLVMRustSetModulePIELevel(llmod);
270     }
271
272     (llcx, llmod)
273 }
274
275 impl<'b, 'tcx> SharedCrateContext<'b, 'tcx> {
276     pub fn new(tcx: TyCtxt<'b, 'tcx, 'tcx>,
277                check_overflow: bool,
278                output_filenames: &'b OutputFilenames)
279                -> SharedCrateContext<'b, 'tcx> {
280         // An interesting part of Windows which MSVC forces our hand on (and
281         // apparently MinGW didn't) is the usage of `dllimport` and `dllexport`
282         // attributes in LLVM IR as well as native dependencies (in C these
283         // correspond to `__declspec(dllimport)`).
284         //
285         // Whenever a dynamic library is built by MSVC it must have its public
286         // interface specified by functions tagged with `dllexport` or otherwise
287         // they're not available to be linked against. This poses a few problems
288         // for the compiler, some of which are somewhat fundamental, but we use
289         // the `use_dll_storage_attrs` variable below to attach the `dllexport`
290         // attribute to all LLVM functions that are exported e.g. they're
291         // already tagged with external linkage). This is suboptimal for a few
292         // reasons:
293         //
294         // * If an object file will never be included in a dynamic library,
295         //   there's no need to attach the dllexport attribute. Most object
296         //   files in Rust are not destined to become part of a dll as binaries
297         //   are statically linked by default.
298         // * If the compiler is emitting both an rlib and a dylib, the same
299         //   source object file is currently used but with MSVC this may be less
300         //   feasible. The compiler may be able to get around this, but it may
301         //   involve some invasive changes to deal with this.
302         //
303         // The flipside of this situation is that whenever you link to a dll and
304         // you import a function from it, the import should be tagged with
305         // `dllimport`. At this time, however, the compiler does not emit
306         // `dllimport` for any declarations other than constants (where it is
307         // required), which is again suboptimal for even more reasons!
308         //
309         // * Calling a function imported from another dll without using
310         //   `dllimport` causes the linker/compiler to have extra overhead (one
311         //   `jmp` instruction on x86) when calling the function.
312         // * The same object file may be used in different circumstances, so a
313         //   function may be imported from a dll if the object is linked into a
314         //   dll, but it may be just linked against if linked into an rlib.
315         // * The compiler has no knowledge about whether native functions should
316         //   be tagged dllimport or not.
317         //
318         // For now the compiler takes the perf hit (I do not have any numbers to
319         // this effect) by marking very little as `dllimport` and praying the
320         // linker will take care of everything. Fixing this problem will likely
321         // require adding a few attributes to Rust itself (feature gated at the
322         // start) and then strongly recommending static linkage on MSVC!
323         let use_dll_storage_attrs = tcx.sess.target.target.options.is_like_msvc;
324
325         SharedCrateContext {
326             tcx: tcx,
327             check_overflow: check_overflow,
328             use_dll_storage_attrs: use_dll_storage_attrs,
329             output_filenames: output_filenames,
330         }
331     }
332
333     pub fn type_needs_drop(&self, ty: Ty<'tcx>) -> bool {
334         ty.needs_drop(self.tcx, ty::ParamEnv::empty(traits::Reveal::All))
335     }
336
337     pub fn type_is_sized(&self, ty: Ty<'tcx>) -> bool {
338         ty.is_sized(self.tcx, ty::ParamEnv::empty(traits::Reveal::All), DUMMY_SP)
339     }
340
341     pub fn type_is_freeze(&self, ty: Ty<'tcx>) -> bool {
342         ty.is_freeze(self.tcx, ty::ParamEnv::empty(traits::Reveal::All), DUMMY_SP)
343     }
344
345     pub fn tcx<'a>(&'a self) -> TyCtxt<'a, 'tcx, 'tcx> {
346         self.tcx
347     }
348
349     pub fn sess<'a>(&'a self) -> &'a Session {
350         &self.tcx.sess
351     }
352
353     pub fn dep_graph<'a>(&'a self) -> &'a DepGraph {
354         &self.tcx.dep_graph
355     }
356
357     pub fn use_dll_storage_attrs(&self) -> bool {
358         self.use_dll_storage_attrs
359     }
360
361     pub fn output_filenames(&self) -> &OutputFilenames {
362         self.output_filenames
363     }
364 }
365
366 impl<'a, 'tcx> LocalCrateContext<'a, 'tcx> {
367     pub fn new(shared: &SharedCrateContext<'a, 'tcx>,
368                codegen_unit: CodegenUnit<'tcx>,
369                crate_trans_items: Arc<FxHashSet<TransItem<'tcx>>>,
370                exported_symbols: Arc<ExportedSymbols>,)
371                -> LocalCrateContext<'a, 'tcx> {
372         unsafe {
373             // Append ".rs" to LLVM module identifier.
374             //
375             // LLVM code generator emits a ".file filename" directive
376             // for ELF backends. Value of the "filename" is set as the
377             // LLVM module identifier.  Due to a LLVM MC bug[1], LLVM
378             // crashes if the module identifier is same as other symbols
379             // such as a function name in the module.
380             // 1. http://llvm.org/bugs/show_bug.cgi?id=11479
381             let llmod_id = format!("{}.rs", codegen_unit.name());
382
383             let (llcx, llmod) = create_context_and_module(&shared.tcx.sess,
384                                                           &llmod_id[..]);
385
386             let dbg_cx = if shared.tcx.sess.opts.debuginfo != NoDebugInfo {
387                 let dctx = debuginfo::CrateDebugContext::new(llmod);
388                 debuginfo::metadata::compile_unit_metadata(shared,
389                                                            codegen_unit.name(),
390                                                            &dctx,
391                                                            shared.tcx.sess);
392                 Some(dctx)
393             } else {
394                 None
395             };
396
397             let local_ccx = LocalCrateContext {
398                 llmod: llmod,
399                 llcx: llcx,
400                 stats: Stats::default(),
401                 codegen_unit: codegen_unit,
402                 crate_trans_items,
403                 exported_symbols,
404                 instances: RefCell::new(FxHashMap()),
405                 vtables: RefCell::new(FxHashMap()),
406                 const_cstr_cache: RefCell::new(FxHashMap()),
407                 const_unsized: RefCell::new(FxHashMap()),
408                 const_globals: RefCell::new(FxHashMap()),
409                 const_values: RefCell::new(FxHashMap()),
410                 extern_const_values: RefCell::new(DefIdMap()),
411                 statics: RefCell::new(FxHashMap()),
412                 statics_to_rauw: RefCell::new(Vec::new()),
413                 used_statics: RefCell::new(Vec::new()),
414                 lltypes: RefCell::new(FxHashMap()),
415                 type_hashcodes: RefCell::new(FxHashMap()),
416                 int_type: Type::from_ref(ptr::null_mut()),
417                 opaque_vec_type: Type::from_ref(ptr::null_mut()),
418                 str_slice_type: Type::from_ref(ptr::null_mut()),
419                 dbg_cx: dbg_cx,
420                 eh_personality: Cell::new(None),
421                 eh_unwind_resume: Cell::new(None),
422                 rust_try_fn: Cell::new(None),
423                 intrinsics: RefCell::new(FxHashMap()),
424                 type_of_depth: Cell::new(0),
425                 local_gen_sym_counter: Cell::new(0),
426                 placeholder: PhantomData,
427             };
428
429             let (int_type, opaque_vec_type, str_slice_ty, mut local_ccx) = {
430                 // Do a little dance to create a dummy CrateContext, so we can
431                 // create some things in the LLVM module of this codegen unit
432                 let mut local_ccxs = vec![local_ccx];
433                 let (int_type, opaque_vec_type, str_slice_ty) = {
434                     let dummy_ccx = LocalCrateContext::dummy_ccx(shared,
435                                                                  local_ccxs.as_mut_slice());
436                     let mut str_slice_ty = Type::named_struct(&dummy_ccx, "str_slice");
437                     str_slice_ty.set_struct_body(&[Type::i8p(&dummy_ccx),
438                                                    Type::int(&dummy_ccx)],
439                                                  false);
440                     (Type::int(&dummy_ccx), Type::opaque_vec(&dummy_ccx), str_slice_ty)
441                 };
442                 (int_type, opaque_vec_type, str_slice_ty, local_ccxs.pop().unwrap())
443             };
444
445             local_ccx.int_type = int_type;
446             local_ccx.opaque_vec_type = opaque_vec_type;
447             local_ccx.str_slice_type = str_slice_ty;
448
449             local_ccx
450         }
451     }
452
453     /// Create a dummy `CrateContext` from `self` and  the provided
454     /// `SharedCrateContext`.  This is somewhat dangerous because `self` may
455     /// not be fully initialized.
456     ///
457     /// This is used in the `LocalCrateContext` constructor to allow calling
458     /// functions that expect a complete `CrateContext`, even before the local
459     /// portion is fully initialized and attached to the `SharedCrateContext`.
460     fn dummy_ccx(shared: &'a SharedCrateContext<'a, 'tcx>,
461                  local_ccxs: &'a [LocalCrateContext<'a, 'tcx>])
462                  -> CrateContext<'a, 'tcx> {
463         assert!(local_ccxs.len() == 1);
464         CrateContext {
465             shared: shared,
466             local_ccx: &local_ccxs[0]
467         }
468     }
469
470     pub fn into_stats(self) -> Stats {
471         self.stats
472     }
473 }
474
475 impl<'b, 'tcx> CrateContext<'b, 'tcx> {
476     pub fn shared(&self) -> &'b SharedCrateContext<'b, 'tcx> {
477         self.shared
478     }
479
480     fn local(&self) -> &'b LocalCrateContext<'b, 'tcx> {
481         self.local_ccx
482     }
483
484     pub fn tcx<'a>(&'a self) -> TyCtxt<'a, 'tcx, 'tcx> {
485         self.shared.tcx
486     }
487
488     pub fn sess<'a>(&'a self) -> &'a Session {
489         &self.shared.tcx.sess
490     }
491
492     pub fn get_intrinsic(&self, key: &str) -> ValueRef {
493         if let Some(v) = self.intrinsics().borrow().get(key).cloned() {
494             return v;
495         }
496         match declare_intrinsic(self, key) {
497             Some(v) => return v,
498             None => bug!("unknown intrinsic '{}'", key)
499         }
500     }
501
502     pub fn llmod(&self) -> ModuleRef {
503         self.local().llmod
504     }
505
506     pub fn llcx(&self) -> ContextRef {
507         self.local().llcx
508     }
509
510     pub fn codegen_unit(&self) -> &CodegenUnit<'tcx> {
511         &self.local().codegen_unit
512     }
513
514     pub fn crate_trans_items(&self) -> &FxHashSet<TransItem<'tcx>> {
515         &self.local().crate_trans_items
516     }
517
518     pub fn exported_symbols(&self) -> &ExportedSymbols {
519         &self.local().exported_symbols
520     }
521
522     pub fn td(&self) -> llvm::TargetDataRef {
523         unsafe { llvm::LLVMRustGetModuleDataLayout(self.llmod()) }
524     }
525
526     pub fn instances<'a>(&'a self) -> &'a RefCell<FxHashMap<Instance<'tcx>, ValueRef>> {
527         &self.local().instances
528     }
529
530     pub fn vtables<'a>(&'a self)
531         -> &'a RefCell<FxHashMap<(ty::Ty<'tcx>,
532                                   Option<ty::PolyExistentialTraitRef<'tcx>>), ValueRef>> {
533         &self.local().vtables
534     }
535
536     pub fn const_cstr_cache<'a>(&'a self) -> &'a RefCell<FxHashMap<InternedString, ValueRef>> {
537         &self.local().const_cstr_cache
538     }
539
540     pub fn const_unsized<'a>(&'a self) -> &'a RefCell<FxHashMap<ValueRef, ValueRef>> {
541         &self.local().const_unsized
542     }
543
544     pub fn const_globals<'a>(&'a self) -> &'a RefCell<FxHashMap<ValueRef, ValueRef>> {
545         &self.local().const_globals
546     }
547
548     pub fn const_values<'a>(&'a self) -> &'a RefCell<FxHashMap<(ast::NodeId, &'tcx Substs<'tcx>),
549                                                                ValueRef>> {
550         &self.local().const_values
551     }
552
553     pub fn extern_const_values<'a>(&'a self) -> &'a RefCell<DefIdMap<ValueRef>> {
554         &self.local().extern_const_values
555     }
556
557     pub fn statics<'a>(&'a self) -> &'a RefCell<FxHashMap<ValueRef, DefId>> {
558         &self.local().statics
559     }
560
561     pub fn statics_to_rauw<'a>(&'a self) -> &'a RefCell<Vec<(ValueRef, ValueRef)>> {
562         &self.local().statics_to_rauw
563     }
564
565     pub fn used_statics<'a>(&'a self) -> &'a RefCell<Vec<ValueRef>> {
566         &self.local().used_statics
567     }
568
569     pub fn lltypes<'a>(&'a self) -> &'a RefCell<FxHashMap<Ty<'tcx>, Type>> {
570         &self.local().lltypes
571     }
572
573     pub fn type_hashcodes<'a>(&'a self) -> &'a RefCell<FxHashMap<Ty<'tcx>, String>> {
574         &self.local().type_hashcodes
575     }
576
577     pub fn stats<'a>(&'a self) -> &'a Stats {
578         &self.local().stats
579     }
580
581     pub fn int_type(&self) -> Type {
582         self.local().int_type
583     }
584
585     pub fn opaque_vec_type(&self) -> Type {
586         self.local().opaque_vec_type
587     }
588
589     pub fn str_slice_type(&self) -> Type {
590         self.local().str_slice_type
591     }
592
593     pub fn dbg_cx<'a>(&'a self) -> &'a Option<debuginfo::CrateDebugContext<'tcx>> {
594         &self.local().dbg_cx
595     }
596
597     pub fn rust_try_fn<'a>(&'a self) -> &'a Cell<Option<ValueRef>> {
598         &self.local().rust_try_fn
599     }
600
601     fn intrinsics<'a>(&'a self) -> &'a RefCell<FxHashMap<&'static str, ValueRef>> {
602         &self.local().intrinsics
603     }
604
605     pub fn obj_size_bound(&self) -> u64 {
606         self.tcx().data_layout.obj_size_bound()
607     }
608
609     pub fn report_overbig_object(&self, obj: Ty<'tcx>) -> ! {
610         self.sess().fatal(
611             &format!("the type `{:?}` is too big for the current architecture",
612                     obj))
613     }
614
615     pub fn enter_type_of(&self, ty: Ty<'tcx>) -> TypeOfDepthLock<'b, 'tcx> {
616         let current_depth = self.local().type_of_depth.get();
617         debug!("enter_type_of({:?}) at depth {:?}", ty, current_depth);
618         if current_depth > self.sess().recursion_limit.get() {
619             self.sess().fatal(
620                 &format!("overflow representing the type `{}`", ty))
621         }
622         self.local().type_of_depth.set(current_depth + 1);
623         TypeOfDepthLock(self.local())
624     }
625
626     pub fn check_overflow(&self) -> bool {
627         self.shared.check_overflow
628     }
629
630     pub fn use_dll_storage_attrs(&self) -> bool {
631         self.shared.use_dll_storage_attrs()
632     }
633
634     /// Given the def-id of some item that has no type parameters, make
635     /// a suitable "empty substs" for it.
636     pub fn empty_substs_for_def_id(&self, item_def_id: DefId) -> &'tcx Substs<'tcx> {
637         self.tcx().empty_substs_for_def_id(item_def_id)
638     }
639
640     /// Generate a new symbol name with the given prefix. This symbol name must
641     /// only be used for definitions with `internal` or `private` linkage.
642     pub fn generate_local_symbol_name(&self, prefix: &str) -> String {
643         let idx = self.local().local_gen_sym_counter.get();
644         self.local().local_gen_sym_counter.set(idx + 1);
645         // Include a '.' character, so there can be no accidental conflicts with
646         // user defined names
647         let mut name = String::with_capacity(prefix.len() + 6);
648         name.push_str(prefix);
649         name.push_str(".");
650         base_n::push_str(idx as u64, base_n::ALPHANUMERIC_ONLY, &mut name);
651         name
652     }
653
654     pub fn eh_personality(&self) -> ValueRef {
655         // The exception handling personality function.
656         //
657         // If our compilation unit has the `eh_personality` lang item somewhere
658         // within it, then we just need to translate that. Otherwise, we're
659         // building an rlib which will depend on some upstream implementation of
660         // this function, so we just codegen a generic reference to it. We don't
661         // specify any of the types for the function, we just make it a symbol
662         // that LLVM can later use.
663         //
664         // Note that MSVC is a little special here in that we don't use the
665         // `eh_personality` lang item at all. Currently LLVM has support for
666         // both Dwarf and SEH unwind mechanisms for MSVC targets and uses the
667         // *name of the personality function* to decide what kind of unwind side
668         // tables/landing pads to emit. It looks like Dwarf is used by default,
669         // injecting a dependency on the `_Unwind_Resume` symbol for resuming
670         // an "exception", but for MSVC we want to force SEH. This means that we
671         // can't actually have the personality function be our standard
672         // `rust_eh_personality` function, but rather we wired it up to the
673         // CRT's custom personality function, which forces LLVM to consider
674         // landing pads as "landing pads for SEH".
675         if let Some(llpersonality) = self.local().eh_personality.get() {
676             return llpersonality
677         }
678         let tcx = self.tcx();
679         let llfn = match tcx.lang_items.eh_personality() {
680             Some(def_id) if !base::wants_msvc_seh(self.sess()) => {
681                 callee::resolve_and_get_fn(self, def_id, tcx.intern_substs(&[]))
682             }
683             _ => {
684                 let name = if base::wants_msvc_seh(self.sess()) {
685                     "__CxxFrameHandler3"
686                 } else {
687                     "rust_eh_personality"
688                 };
689                 let fty = Type::variadic_func(&[], &Type::i32(self));
690                 declare::declare_cfn(self, name, fty)
691             }
692         };
693         self.local().eh_personality.set(Some(llfn));
694         llfn
695     }
696
697     // Returns a ValueRef of the "eh_unwind_resume" lang item if one is defined,
698     // otherwise declares it as an external function.
699     pub fn eh_unwind_resume(&self) -> ValueRef {
700         use attributes;
701         let unwresume = &self.local().eh_unwind_resume;
702         if let Some(llfn) = unwresume.get() {
703             return llfn;
704         }
705
706         let tcx = self.tcx();
707         assert!(self.sess().target.target.options.custom_unwind_resume);
708         if let Some(def_id) = tcx.lang_items.eh_unwind_resume() {
709             let llfn = callee::resolve_and_get_fn(self, def_id, tcx.intern_substs(&[]));
710             unwresume.set(Some(llfn));
711             return llfn;
712         }
713
714         let ty = tcx.mk_fn_ptr(ty::Binder(tcx.mk_fn_sig(
715             iter::once(tcx.mk_mut_ptr(tcx.types.u8)),
716             tcx.types.never,
717             false,
718             hir::Unsafety::Unsafe,
719             Abi::C
720         )));
721
722         let llfn = declare::declare_fn(self, "rust_eh_unwind_resume", ty);
723         attributes::unwind(llfn, true);
724         unwresume.set(Some(llfn));
725         llfn
726     }
727 }
728
729 impl<'a, 'tcx> ty::layout::HasDataLayout for &'a SharedCrateContext<'a, 'tcx> {
730     fn data_layout(&self) -> &ty::layout::TargetDataLayout {
731         &self.tcx.data_layout
732     }
733 }
734
735 impl<'a, 'tcx> ty::layout::HasDataLayout for &'a CrateContext<'a, 'tcx> {
736     fn data_layout(&self) -> &ty::layout::TargetDataLayout {
737         &self.shared.tcx.data_layout
738     }
739 }
740
741 impl<'a, 'tcx> LayoutTyper<'tcx> for &'a SharedCrateContext<'a, 'tcx> {
742     type TyLayout = TyLayout<'tcx>;
743
744     fn tcx<'b>(&'b self) -> TyCtxt<'b, 'tcx, 'tcx> {
745         self.tcx
746     }
747
748     fn layout_of(self, ty: Ty<'tcx>) -> Self::TyLayout {
749         let param_env = ty::ParamEnv::empty(traits::Reveal::All);
750         LayoutCx::new(self.tcx, param_env)
751             .layout_of(ty)
752             .unwrap_or_else(|e| match e {
753                 LayoutError::SizeOverflow(_) => self.sess().fatal(&e.to_string()),
754                 _ => bug!("failed to get layout for `{}`: {}", ty, e)
755             })
756     }
757
758     fn normalize_projections(self, ty: Ty<'tcx>) -> Ty<'tcx> {
759         self.tcx().normalize_associated_type(&ty)
760     }
761 }
762
763 impl<'a, 'tcx> LayoutTyper<'tcx> for &'a CrateContext<'a, 'tcx> {
764     type TyLayout = TyLayout<'tcx>;
765
766     fn tcx<'b>(&'b self) -> TyCtxt<'b, 'tcx, 'tcx> {
767         self.shared.tcx
768     }
769
770     fn layout_of(self, ty: Ty<'tcx>) -> Self::TyLayout {
771         self.shared.layout_of(ty)
772     }
773
774     fn normalize_projections(self, ty: Ty<'tcx>) -> Ty<'tcx> {
775         self.shared.normalize_projections(ty)
776     }
777 }
778
779 pub struct TypeOfDepthLock<'a, 'tcx: 'a>(&'a LocalCrateContext<'a, 'tcx>);
780
781 impl<'a, 'tcx> Drop for TypeOfDepthLock<'a, 'tcx> {
782     fn drop(&mut self) {
783         self.0.type_of_depth.set(self.0.type_of_depth.get() - 1);
784     }
785 }
786
787 /// Declare any llvm intrinsics that you might need
788 fn declare_intrinsic(ccx: &CrateContext, key: &str) -> Option<ValueRef> {
789     macro_rules! ifn {
790         ($name:expr, fn() -> $ret:expr) => (
791             if key == $name {
792                 let f = declare::declare_cfn(ccx, $name, Type::func(&[], &$ret));
793                 llvm::SetUnnamedAddr(f, false);
794                 ccx.intrinsics().borrow_mut().insert($name, f.clone());
795                 return Some(f);
796             }
797         );
798         ($name:expr, fn(...) -> $ret:expr) => (
799             if key == $name {
800                 let f = declare::declare_cfn(ccx, $name, Type::variadic_func(&[], &$ret));
801                 llvm::SetUnnamedAddr(f, false);
802                 ccx.intrinsics().borrow_mut().insert($name, f.clone());
803                 return Some(f);
804             }
805         );
806         ($name:expr, fn($($arg:expr),*) -> $ret:expr) => (
807             if key == $name {
808                 let f = declare::declare_cfn(ccx, $name, Type::func(&[$($arg),*], &$ret));
809                 llvm::SetUnnamedAddr(f, false);
810                 ccx.intrinsics().borrow_mut().insert($name, f.clone());
811                 return Some(f);
812             }
813         );
814     }
815     macro_rules! mk_struct {
816         ($($field_ty:expr),*) => (Type::struct_(ccx, &[$($field_ty),*], false))
817     }
818
819     let i8p = Type::i8p(ccx);
820     let void = Type::void(ccx);
821     let i1 = Type::i1(ccx);
822     let t_i8 = Type::i8(ccx);
823     let t_i16 = Type::i16(ccx);
824     let t_i32 = Type::i32(ccx);
825     let t_i64 = Type::i64(ccx);
826     let t_i128 = Type::i128(ccx);
827     let t_f32 = Type::f32(ccx);
828     let t_f64 = Type::f64(ccx);
829
830     ifn!("llvm.memcpy.p0i8.p0i8.i16", fn(i8p, i8p, t_i16, t_i32, i1) -> void);
831     ifn!("llvm.memcpy.p0i8.p0i8.i32", fn(i8p, i8p, t_i32, t_i32, i1) -> void);
832     ifn!("llvm.memcpy.p0i8.p0i8.i64", fn(i8p, i8p, t_i64, t_i32, i1) -> void);
833     ifn!("llvm.memmove.p0i8.p0i8.i16", fn(i8p, i8p, t_i16, t_i32, i1) -> void);
834     ifn!("llvm.memmove.p0i8.p0i8.i32", fn(i8p, i8p, t_i32, t_i32, i1) -> void);
835     ifn!("llvm.memmove.p0i8.p0i8.i64", fn(i8p, i8p, t_i64, t_i32, i1) -> void);
836     ifn!("llvm.memset.p0i8.i16", fn(i8p, t_i8, t_i16, t_i32, i1) -> void);
837     ifn!("llvm.memset.p0i8.i32", fn(i8p, t_i8, t_i32, t_i32, i1) -> void);
838     ifn!("llvm.memset.p0i8.i64", fn(i8p, t_i8, t_i64, t_i32, i1) -> void);
839
840     ifn!("llvm.trap", fn() -> void);
841     ifn!("llvm.debugtrap", fn() -> void);
842     ifn!("llvm.frameaddress", fn(t_i32) -> i8p);
843
844     ifn!("llvm.powi.f32", fn(t_f32, t_i32) -> t_f32);
845     ifn!("llvm.powi.f64", fn(t_f64, t_i32) -> t_f64);
846     ifn!("llvm.pow.f32", fn(t_f32, t_f32) -> t_f32);
847     ifn!("llvm.pow.f64", fn(t_f64, t_f64) -> t_f64);
848
849     ifn!("llvm.sqrt.f32", fn(t_f32) -> t_f32);
850     ifn!("llvm.sqrt.f64", fn(t_f64) -> t_f64);
851     ifn!("llvm.sin.f32", fn(t_f32) -> t_f32);
852     ifn!("llvm.sin.f64", fn(t_f64) -> t_f64);
853     ifn!("llvm.cos.f32", fn(t_f32) -> t_f32);
854     ifn!("llvm.cos.f64", fn(t_f64) -> t_f64);
855     ifn!("llvm.exp.f32", fn(t_f32) -> t_f32);
856     ifn!("llvm.exp.f64", fn(t_f64) -> t_f64);
857     ifn!("llvm.exp2.f32", fn(t_f32) -> t_f32);
858     ifn!("llvm.exp2.f64", fn(t_f64) -> t_f64);
859     ifn!("llvm.log.f32", fn(t_f32) -> t_f32);
860     ifn!("llvm.log.f64", fn(t_f64) -> t_f64);
861     ifn!("llvm.log10.f32", fn(t_f32) -> t_f32);
862     ifn!("llvm.log10.f64", fn(t_f64) -> t_f64);
863     ifn!("llvm.log2.f32", fn(t_f32) -> t_f32);
864     ifn!("llvm.log2.f64", fn(t_f64) -> t_f64);
865
866     ifn!("llvm.fma.f32", fn(t_f32, t_f32, t_f32) -> t_f32);
867     ifn!("llvm.fma.f64", fn(t_f64, t_f64, t_f64) -> t_f64);
868
869     ifn!("llvm.fabs.f32", fn(t_f32) -> t_f32);
870     ifn!("llvm.fabs.f64", fn(t_f64) -> t_f64);
871
872     ifn!("llvm.floor.f32", fn(t_f32) -> t_f32);
873     ifn!("llvm.floor.f64", fn(t_f64) -> t_f64);
874     ifn!("llvm.ceil.f32", fn(t_f32) -> t_f32);
875     ifn!("llvm.ceil.f64", fn(t_f64) -> t_f64);
876     ifn!("llvm.trunc.f32", fn(t_f32) -> t_f32);
877     ifn!("llvm.trunc.f64", fn(t_f64) -> t_f64);
878
879     ifn!("llvm.copysign.f32", fn(t_f32, t_f32) -> t_f32);
880     ifn!("llvm.copysign.f64", fn(t_f64, t_f64) -> t_f64);
881     ifn!("llvm.round.f32", fn(t_f32) -> t_f32);
882     ifn!("llvm.round.f64", fn(t_f64) -> t_f64);
883
884     ifn!("llvm.rint.f32", fn(t_f32) -> t_f32);
885     ifn!("llvm.rint.f64", fn(t_f64) -> t_f64);
886     ifn!("llvm.nearbyint.f32", fn(t_f32) -> t_f32);
887     ifn!("llvm.nearbyint.f64", fn(t_f64) -> t_f64);
888
889     ifn!("llvm.ctpop.i8", fn(t_i8) -> t_i8);
890     ifn!("llvm.ctpop.i16", fn(t_i16) -> t_i16);
891     ifn!("llvm.ctpop.i32", fn(t_i32) -> t_i32);
892     ifn!("llvm.ctpop.i64", fn(t_i64) -> t_i64);
893     ifn!("llvm.ctpop.i128", fn(t_i128) -> t_i128);
894
895     ifn!("llvm.ctlz.i8", fn(t_i8 , i1) -> t_i8);
896     ifn!("llvm.ctlz.i16", fn(t_i16, i1) -> t_i16);
897     ifn!("llvm.ctlz.i32", fn(t_i32, i1) -> t_i32);
898     ifn!("llvm.ctlz.i64", fn(t_i64, i1) -> t_i64);
899     ifn!("llvm.ctlz.i128", fn(t_i128, i1) -> t_i128);
900
901     ifn!("llvm.cttz.i8", fn(t_i8 , i1) -> t_i8);
902     ifn!("llvm.cttz.i16", fn(t_i16, i1) -> t_i16);
903     ifn!("llvm.cttz.i32", fn(t_i32, i1) -> t_i32);
904     ifn!("llvm.cttz.i64", fn(t_i64, i1) -> t_i64);
905     ifn!("llvm.cttz.i128", fn(t_i128, i1) -> t_i128);
906
907     ifn!("llvm.bswap.i16", fn(t_i16) -> t_i16);
908     ifn!("llvm.bswap.i32", fn(t_i32) -> t_i32);
909     ifn!("llvm.bswap.i64", fn(t_i64) -> t_i64);
910     ifn!("llvm.bswap.i128", fn(t_i128) -> t_i128);
911
912     ifn!("llvm.sadd.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
913     ifn!("llvm.sadd.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
914     ifn!("llvm.sadd.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
915     ifn!("llvm.sadd.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
916     ifn!("llvm.sadd.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct!{t_i128, i1});
917
918     ifn!("llvm.uadd.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
919     ifn!("llvm.uadd.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
920     ifn!("llvm.uadd.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
921     ifn!("llvm.uadd.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
922     ifn!("llvm.uadd.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct!{t_i128, i1});
923
924     ifn!("llvm.ssub.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
925     ifn!("llvm.ssub.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
926     ifn!("llvm.ssub.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
927     ifn!("llvm.ssub.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
928     ifn!("llvm.ssub.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct!{t_i128, i1});
929
930     ifn!("llvm.usub.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
931     ifn!("llvm.usub.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
932     ifn!("llvm.usub.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
933     ifn!("llvm.usub.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
934     ifn!("llvm.usub.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct!{t_i128, i1});
935
936     ifn!("llvm.smul.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
937     ifn!("llvm.smul.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
938     ifn!("llvm.smul.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
939     ifn!("llvm.smul.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
940     ifn!("llvm.smul.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct!{t_i128, i1});
941
942     ifn!("llvm.umul.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
943     ifn!("llvm.umul.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
944     ifn!("llvm.umul.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
945     ifn!("llvm.umul.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
946     ifn!("llvm.umul.with.overflow.i128", fn(t_i128, t_i128) -> mk_struct!{t_i128, i1});
947
948     ifn!("llvm.lifetime.start", fn(t_i64,i8p) -> void);
949     ifn!("llvm.lifetime.end", fn(t_i64, i8p) -> void);
950
951     ifn!("llvm.expect.i1", fn(i1, i1) -> i1);
952     ifn!("llvm.eh.typeid.for", fn(i8p) -> t_i32);
953     ifn!("llvm.localescape", fn(...) -> void);
954     ifn!("llvm.localrecover", fn(i8p, i8p, t_i32) -> i8p);
955     ifn!("llvm.x86.seh.recoverfp", fn(i8p, i8p) -> i8p);
956
957     ifn!("llvm.assume", fn(i1) -> void);
958     ifn!("llvm.prefetch", fn(i8p, t_i32, t_i32, t_i32) -> void);
959
960     if ccx.sess().opts.debuginfo != NoDebugInfo {
961         ifn!("llvm.dbg.declare", fn(Type::metadata(ccx), Type::metadata(ccx)) -> void);
962         ifn!("llvm.dbg.value", fn(Type::metadata(ccx), t_i64, Type::metadata(ccx)) -> void);
963     }
964     return None;
965 }