]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/context.rs
trans: Enable falling back to on-demand instantiation for drop-glue and monomorphizat...
[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, BuilderRef};
13 use rustc::dep_graph::{DepNode, DepTrackingMap, DepTrackingMapConfig};
14 use middle::cstore::LinkMeta;
15 use rustc::hir::def::ExportMap;
16 use rustc::hir::def_id::DefId;
17 use rustc::traits;
18 use rustc::mir::mir_map::MirMap;
19 use rustc::mir::repr as mir;
20 use adt;
21 use base;
22 use builder::Builder;
23 use common::BuilderRef_res;
24 use debuginfo;
25 use declare;
26 use glue::DropGlueKind;
27 use mir::CachedMir;
28 use monomorphize::Instance;
29
30 use partitioning::CodegenUnit;
31 use collector::TransItemState;
32 use trans_item::TransItem;
33 use type_::{Type, TypeNames};
34 use rustc::ty::subst::{Substs, VecPerParamSpace};
35 use rustc::ty::{self, Ty, TyCtxt};
36 use session::config::NoDebugInfo;
37 use session::Session;
38 use symbol_map::SymbolMap;
39 use util::sha2::Sha256;
40 use util::nodemap::{NodeMap, NodeSet, DefIdMap, FnvHashMap};
41
42 use std::ffi::{CStr, CString};
43 use std::cell::{Cell, RefCell};
44 use std::marker::PhantomData;
45 use std::ptr;
46 use std::rc::Rc;
47 use std::str;
48 use syntax::ast;
49 use syntax::parse::token::InternedString;
50 use abi::FnType;
51
52 pub struct Stats {
53     pub n_glues_created: Cell<usize>,
54     pub n_null_glues: Cell<usize>,
55     pub n_real_glues: Cell<usize>,
56     pub n_fallback_instantiations: Cell<usize>,
57     pub n_fns: Cell<usize>,
58     pub n_monos: Cell<usize>,
59     pub n_inlines: Cell<usize>,
60     pub n_closures: Cell<usize>,
61     pub n_llvm_insns: Cell<usize>,
62     pub llvm_insns: RefCell<FnvHashMap<String, usize>>,
63     // (ident, llvm-instructions)
64     pub fn_stats: RefCell<Vec<(String, usize)> >,
65 }
66
67 /// The shared portion of a `CrateContext`.  There is one `SharedCrateContext`
68 /// per crate.  The data here is shared between all compilation units of the
69 /// crate, so it must not contain references to any LLVM data structures
70 /// (aside from metadata-related ones).
71 pub struct SharedCrateContext<'a, 'tcx: 'a> {
72     metadata_llmod: ModuleRef,
73     metadata_llcx: ContextRef,
74
75     export_map: ExportMap,
76     reachable: NodeSet,
77     link_meta: LinkMeta,
78     symbol_hasher: RefCell<Sha256>,
79     tcx: TyCtxt<'a, 'tcx, 'tcx>,
80     stats: Stats,
81     check_overflow: bool,
82     check_drop_flag_for_sanity: bool,
83     mir_map: &'a MirMap<'tcx>,
84     mir_cache: RefCell<DefIdMap<Rc<mir::Mir<'tcx>>>>,
85
86     use_dll_storage_attrs: bool,
87
88     translation_items: RefCell<FnvHashMap<TransItem<'tcx>, TransItemState>>,
89     trait_cache: RefCell<DepTrackingMap<TraitSelectionCache<'tcx>>>,
90 }
91
92 /// The local portion of a `CrateContext`.  There is one `LocalCrateContext`
93 /// per compilation unit.  Each one has its own LLVM `ContextRef` so that
94 /// several compilation units may be optimized in parallel.  All other LLVM
95 /// data structures in the `LocalCrateContext` are tied to that `ContextRef`.
96 pub struct LocalCrateContext<'tcx> {
97     llmod: ModuleRef,
98     llcx: ContextRef,
99     tn: TypeNames, // FIXME: This seems to be largely unused.
100     codegen_unit: CodegenUnit<'tcx>,
101     needs_unwind_cleanup_cache: RefCell<FnvHashMap<Ty<'tcx>, bool>>,
102     fn_pointer_shims: RefCell<FnvHashMap<Ty<'tcx>, ValueRef>>,
103     drop_glues: RefCell<FnvHashMap<DropGlueKind<'tcx>, (ValueRef, FnType)>>,
104     /// Track mapping of external ids to local items imported for inlining
105     external: RefCell<DefIdMap<Option<ast::NodeId>>>,
106     /// Backwards version of the `external` map (inlined items to where they
107     /// came from)
108     external_srcs: RefCell<NodeMap<DefId>>,
109     /// Cache instances of monomorphic and polymorphic items
110     instances: RefCell<FnvHashMap<Instance<'tcx>, ValueRef>>,
111     monomorphizing: RefCell<DefIdMap<usize>>,
112     /// Cache generated vtables
113     vtables: RefCell<FnvHashMap<ty::PolyTraitRef<'tcx>, ValueRef>>,
114     /// Cache of constant strings,
115     const_cstr_cache: RefCell<FnvHashMap<InternedString, ValueRef>>,
116
117     /// Reverse-direction for const ptrs cast from globals.
118     /// Key is a ValueRef holding a *T,
119     /// Val is a ValueRef holding a *[T].
120     ///
121     /// Needed because LLVM loses pointer->pointee association
122     /// when we ptrcast, and we have to ptrcast during translation
123     /// of a [T] const because we form a slice, a (*T,usize) pair, not
124     /// a pointer to an LLVM array type. Similar for trait objects.
125     const_unsized: RefCell<FnvHashMap<ValueRef, ValueRef>>,
126
127     /// Cache of emitted const globals (value -> global)
128     const_globals: RefCell<FnvHashMap<ValueRef, ValueRef>>,
129
130     /// Cache of emitted const values
131     const_values: RefCell<FnvHashMap<(ast::NodeId, &'tcx Substs<'tcx>), ValueRef>>,
132
133     /// Cache of external const values
134     extern_const_values: RefCell<DefIdMap<ValueRef>>,
135
136     /// Mapping from static definitions to their DefId's.
137     statics: RefCell<FnvHashMap<ValueRef, DefId>>,
138
139     impl_method_cache: RefCell<FnvHashMap<(DefId, ast::Name), DefId>>,
140
141     /// Cache of closure wrappers for bare fn's.
142     closure_bare_wrapper_cache: RefCell<FnvHashMap<ValueRef, ValueRef>>,
143
144     /// List of globals for static variables which need to be passed to the
145     /// LLVM function ReplaceAllUsesWith (RAUW) when translation is complete.
146     /// (We have to make sure we don't invalidate any ValueRefs referring
147     /// to constants.)
148     statics_to_rauw: RefCell<Vec<(ValueRef, ValueRef)>>,
149
150     lltypes: RefCell<FnvHashMap<Ty<'tcx>, Type>>,
151     llsizingtypes: RefCell<FnvHashMap<Ty<'tcx>, Type>>,
152     adt_reprs: RefCell<FnvHashMap<Ty<'tcx>, Rc<adt::Repr<'tcx>>>>,
153     type_hashcodes: RefCell<FnvHashMap<Ty<'tcx>, String>>,
154     int_type: Type,
155     opaque_vec_type: Type,
156     builder: BuilderRef_res,
157
158     /// Holds the LLVM values for closure IDs.
159     closure_vals: RefCell<FnvHashMap<Instance<'tcx>, ValueRef>>,
160
161     dbg_cx: Option<debuginfo::CrateDebugContext<'tcx>>,
162
163     eh_personality: Cell<Option<ValueRef>>,
164     eh_unwind_resume: Cell<Option<ValueRef>>,
165     rust_try_fn: Cell<Option<ValueRef>>,
166
167     intrinsics: RefCell<FnvHashMap<&'static str, ValueRef>>,
168
169     /// Number of LLVM instructions translated into this `LocalCrateContext`.
170     /// This is used to perform some basic load-balancing to keep all LLVM
171     /// contexts around the same size.
172     n_llvm_insns: Cell<usize>,
173
174     /// Depth of the current type-of computation - used to bail out
175     type_of_depth: Cell<usize>,
176
177     symbol_map: Rc<SymbolMap<'tcx>>,
178 }
179
180 // Implement DepTrackingMapConfig for `trait_cache`
181 pub struct TraitSelectionCache<'tcx> {
182     data: PhantomData<&'tcx ()>
183 }
184
185 impl<'tcx> DepTrackingMapConfig for TraitSelectionCache<'tcx> {
186     type Key = ty::PolyTraitRef<'tcx>;
187     type Value = traits::Vtable<'tcx, ()>;
188     fn to_dep_node(key: &ty::PolyTraitRef<'tcx>) -> DepNode<DefId> {
189         key.to_poly_trait_predicate().dep_node()
190     }
191 }
192
193 /// This list owns a number of LocalCrateContexts and binds them to their common
194 /// SharedCrateContext. This type just exists as a convenience, something to
195 /// pass around all LocalCrateContexts with and get an iterator over them.
196 pub struct CrateContextList<'a, 'tcx: 'a> {
197     shared: &'a SharedCrateContext<'a, 'tcx>,
198     local_ccxs: Vec<LocalCrateContext<'tcx>>,
199 }
200
201 impl<'a, 'tcx: 'a> CrateContextList<'a, 'tcx> {
202
203     pub fn new(shared_ccx: &'a SharedCrateContext<'a, 'tcx>,
204                codegen_units: Vec<CodegenUnit<'tcx>>,
205                symbol_map: Rc<SymbolMap<'tcx>>)
206                -> CrateContextList<'a, 'tcx> {
207         CrateContextList {
208             shared: shared_ccx,
209             local_ccxs: codegen_units.into_iter().map(|codegen_unit| {
210                 LocalCrateContext::new(shared_ccx, codegen_unit, symbol_map.clone())
211             }).collect()
212         }
213     }
214
215     pub fn iter<'b>(&'b self) -> CrateContextIterator<'b, 'tcx> {
216         CrateContextIterator {
217             shared: self.shared,
218             index: 0,
219             local_ccxs: &self.local_ccxs[..]
220         }
221     }
222
223     pub fn get_ccx<'b>(&'b self, index: usize) -> CrateContext<'b, 'tcx> {
224         CrateContext {
225             shared: self.shared,
226             index: index,
227             local_ccxs: &self.local_ccxs[..],
228         }
229     }
230
231     pub fn shared(&self) -> &'a SharedCrateContext<'a, 'tcx> {
232         self.shared
233     }
234 }
235
236 /// A CrateContext value binds together one LocalCrateContext with the
237 /// SharedCrateContext. It exists as a convenience wrapper, so we don't have to
238 /// pass around (SharedCrateContext, LocalCrateContext) tuples all over trans.
239 pub struct CrateContext<'a, 'tcx: 'a> {
240     shared: &'a SharedCrateContext<'a, 'tcx>,
241     local_ccxs: &'a [LocalCrateContext<'tcx>],
242     /// The index of `local` in `local_ccxs`.  This is used in
243     /// `maybe_iter(true)` to identify the original `LocalCrateContext`.
244     index: usize,
245 }
246
247 pub struct CrateContextIterator<'a, 'tcx: 'a> {
248     shared: &'a SharedCrateContext<'a, 'tcx>,
249     local_ccxs: &'a [LocalCrateContext<'tcx>],
250     index: usize,
251 }
252
253 impl<'a, 'tcx> Iterator for CrateContextIterator<'a,'tcx> {
254     type Item = CrateContext<'a, 'tcx>;
255
256     fn next(&mut self) -> Option<CrateContext<'a, 'tcx>> {
257         if self.index >= self.local_ccxs.len() {
258             return None;
259         }
260
261         let index = self.index;
262         self.index += 1;
263
264         Some(CrateContext {
265             shared: self.shared,
266             index: index,
267             local_ccxs: self.local_ccxs,
268         })
269     }
270 }
271
272 /// The iterator produced by `CrateContext::maybe_iter`.
273 pub struct CrateContextMaybeIterator<'a, 'tcx: 'a> {
274     shared: &'a SharedCrateContext<'a, 'tcx>,
275     local_ccxs: &'a [LocalCrateContext<'tcx>],
276     index: usize,
277     single: bool,
278     origin: usize,
279 }
280
281 impl<'a, 'tcx> Iterator for CrateContextMaybeIterator<'a, 'tcx> {
282     type Item = (CrateContext<'a, 'tcx>, bool);
283
284     fn next(&mut self) -> Option<(CrateContext<'a, 'tcx>, bool)> {
285         if self.index >= self.local_ccxs.len() {
286             return None;
287         }
288
289         let index = self.index;
290         self.index += 1;
291         if self.single {
292             self.index = self.local_ccxs.len();
293         }
294
295         let ccx = CrateContext {
296             shared: self.shared,
297             index: index,
298             local_ccxs: self.local_ccxs
299         };
300         Some((ccx, index == self.origin))
301     }
302 }
303
304 unsafe fn create_context_and_module(sess: &Session, mod_name: &str) -> (ContextRef, ModuleRef) {
305     let llcx = llvm::LLVMContextCreate();
306     let mod_name = CString::new(mod_name).unwrap();
307     let llmod = llvm::LLVMModuleCreateWithNameInContext(mod_name.as_ptr(), llcx);
308
309     // Ensure the data-layout values hardcoded remain the defaults.
310     if sess.target.target.options.is_builtin {
311         let tm = ::back::write::create_target_machine(sess);
312         llvm::LLVMRustSetDataLayoutFromTargetMachine(llmod, tm);
313         llvm::LLVMRustDisposeTargetMachine(tm);
314
315         let data_layout = llvm::LLVMGetDataLayout(llmod);
316         let data_layout = str::from_utf8(CStr::from_ptr(data_layout).to_bytes())
317             .ok().expect("got a non-UTF8 data-layout from LLVM");
318
319         if sess.target.target.data_layout != data_layout {
320             bug!("data-layout for builtin `{}` target, `{}`, \
321                   differs from LLVM default, `{}`",
322                  sess.target.target.llvm_target,
323                  sess.target.target.data_layout,
324                  data_layout);
325         }
326     }
327
328     let data_layout = CString::new(&sess.target.target.data_layout[..]).unwrap();
329     llvm::LLVMSetDataLayout(llmod, data_layout.as_ptr());
330
331     let llvm_target = sess.target.target.llvm_target.as_bytes();
332     let llvm_target = CString::new(llvm_target).unwrap();
333     llvm::LLVMRustSetNormalizedTarget(llmod, llvm_target.as_ptr());
334     (llcx, llmod)
335 }
336
337 impl<'b, 'tcx> SharedCrateContext<'b, 'tcx> {
338     pub fn new(tcx: TyCtxt<'b, 'tcx, 'tcx>,
339                mir_map: &'b MirMap<'tcx>,
340                export_map: ExportMap,
341                symbol_hasher: Sha256,
342                link_meta: LinkMeta,
343                reachable: NodeSet,
344                check_overflow: bool,
345                check_drop_flag_for_sanity: bool)
346                -> SharedCrateContext<'b, 'tcx> {
347         let (metadata_llcx, metadata_llmod) = unsafe {
348             create_context_and_module(&tcx.sess, "metadata")
349         };
350
351         // An interesting part of Windows which MSVC forces our hand on (and
352         // apparently MinGW didn't) is the usage of `dllimport` and `dllexport`
353         // attributes in LLVM IR as well as native dependencies (in C these
354         // correspond to `__declspec(dllimport)`).
355         //
356         // Whenever a dynamic library is built by MSVC it must have its public
357         // interface specified by functions tagged with `dllexport` or otherwise
358         // they're not available to be linked against. This poses a few problems
359         // for the compiler, some of which are somewhat fundamental, but we use
360         // the `use_dll_storage_attrs` variable below to attach the `dllexport`
361         // attribute to all LLVM functions that are reachable (e.g. they're
362         // already tagged with external linkage). This is suboptimal for a few
363         // reasons:
364         //
365         // * If an object file will never be included in a dynamic library,
366         //   there's no need to attach the dllexport attribute. Most object
367         //   files in Rust are not destined to become part of a dll as binaries
368         //   are statically linked by default.
369         // * If the compiler is emitting both an rlib and a dylib, the same
370         //   source object file is currently used but with MSVC this may be less
371         //   feasible. The compiler may be able to get around this, but it may
372         //   involve some invasive changes to deal with this.
373         //
374         // The flipside of this situation is that whenever you link to a dll and
375         // you import a function from it, the import should be tagged with
376         // `dllimport`. At this time, however, the compiler does not emit
377         // `dllimport` for any declarations other than constants (where it is
378         // required), which is again suboptimal for even more reasons!
379         //
380         // * Calling a function imported from another dll without using
381         //   `dllimport` causes the linker/compiler to have extra overhead (one
382         //   `jmp` instruction on x86) when calling the function.
383         // * The same object file may be used in different circumstances, so a
384         //   function may be imported from a dll if the object is linked into a
385         //   dll, but it may be just linked against if linked into an rlib.
386         // * The compiler has no knowledge about whether native functions should
387         //   be tagged dllimport or not.
388         //
389         // For now the compiler takes the perf hit (I do not have any numbers to
390         // this effect) by marking very little as `dllimport` and praying the
391         // linker will take care of everything. Fixing this problem will likely
392         // require adding a few attributes to Rust itself (feature gated at the
393         // start) and then strongly recommending static linkage on MSVC!
394         let use_dll_storage_attrs = tcx.sess.target.target.options.is_like_msvc;
395
396         SharedCrateContext {
397             metadata_llmod: metadata_llmod,
398             metadata_llcx: metadata_llcx,
399             export_map: export_map,
400             reachable: reachable,
401             link_meta: link_meta,
402             symbol_hasher: RefCell::new(symbol_hasher),
403             tcx: tcx,
404             mir_map: mir_map,
405             mir_cache: RefCell::new(DefIdMap()),
406             stats: Stats {
407                 n_glues_created: Cell::new(0),
408                 n_null_glues: Cell::new(0),
409                 n_real_glues: Cell::new(0),
410                 n_fallback_instantiations: Cell::new(0),
411                 n_fns: Cell::new(0),
412                 n_monos: Cell::new(0),
413                 n_inlines: Cell::new(0),
414                 n_closures: Cell::new(0),
415                 n_llvm_insns: Cell::new(0),
416                 llvm_insns: RefCell::new(FnvHashMap()),
417                 fn_stats: RefCell::new(Vec::new()),
418             },
419             check_overflow: check_overflow,
420             check_drop_flag_for_sanity: check_drop_flag_for_sanity,
421             use_dll_storage_attrs: use_dll_storage_attrs,
422             translation_items: RefCell::new(FnvHashMap()),
423             trait_cache: RefCell::new(DepTrackingMap::new(tcx.dep_graph.clone())),
424         }
425     }
426
427     pub fn metadata_llmod(&self) -> ModuleRef {
428         self.metadata_llmod
429     }
430
431     pub fn metadata_llcx(&self) -> ContextRef {
432         self.metadata_llcx
433     }
434
435     pub fn export_map<'a>(&'a self) -> &'a ExportMap {
436         &self.export_map
437     }
438
439     pub fn reachable<'a>(&'a self) -> &'a NodeSet {
440         &self.reachable
441     }
442
443     pub fn trait_cache(&self) -> &RefCell<DepTrackingMap<TraitSelectionCache<'tcx>>> {
444         &self.trait_cache
445     }
446
447     pub fn link_meta<'a>(&'a self) -> &'a LinkMeta {
448         &self.link_meta
449     }
450
451     pub fn tcx<'a>(&'a self) -> TyCtxt<'a, 'tcx, 'tcx> {
452         self.tcx
453     }
454
455     pub fn sess<'a>(&'a self) -> &'a Session {
456         &self.tcx.sess
457     }
458
459     pub fn stats<'a>(&'a self) -> &'a Stats {
460         &self.stats
461     }
462
463     pub fn use_dll_storage_attrs(&self) -> bool {
464         self.use_dll_storage_attrs
465     }
466
467     pub fn get_mir(&self, def_id: DefId) -> Option<CachedMir<'b, 'tcx>> {
468         if def_id.is_local() {
469             let node_id = self.tcx.map.as_local_node_id(def_id).unwrap();
470             self.mir_map.map.get(&node_id).map(CachedMir::Ref)
471         } else {
472             if let Some(mir) = self.mir_cache.borrow().get(&def_id).cloned() {
473                 return Some(CachedMir::Owned(mir));
474             }
475
476             let mir = self.sess().cstore.maybe_get_item_mir(self.tcx, def_id);
477             let cached = mir.map(Rc::new);
478             if let Some(ref mir) = cached {
479                 self.mir_cache.borrow_mut().insert(def_id, mir.clone());
480             }
481             cached.map(CachedMir::Owned)
482         }
483     }
484
485     pub fn translation_items(&self) -> &RefCell<FnvHashMap<TransItem<'tcx>, TransItemState>> {
486         &self.translation_items
487     }
488
489     /// Given the def-id of some item that has no type parameters, make
490     /// a suitable "empty substs" for it.
491     pub fn empty_substs_for_def_id(&self, item_def_id: DefId) -> &'tcx Substs<'tcx> {
492         let scheme = self.tcx().lookup_item_type(item_def_id);
493         self.empty_substs_for_scheme(&scheme)
494     }
495
496     pub fn empty_substs_for_scheme(&self, scheme: &ty::TypeScheme<'tcx>)
497                                    -> &'tcx Substs<'tcx> {
498         assert!(scheme.generics.types.is_empty());
499         self.tcx().mk_substs(
500             Substs::new(VecPerParamSpace::empty(),
501                         scheme.generics.regions.map(|_| ty::ReErased)))
502     }
503
504     pub fn symbol_hasher(&self) -> &RefCell<Sha256> {
505         &self.symbol_hasher
506     }
507
508     pub fn mir_map(&self) -> &MirMap<'tcx> {
509         &self.mir_map
510     }
511
512     pub fn metadata_symbol_name(&self) -> String {
513         format!("rust_metadata_{}_{}",
514                 self.link_meta().crate_name,
515                 self.link_meta().crate_hash)
516     }
517 }
518
519 impl<'tcx> LocalCrateContext<'tcx> {
520     fn new<'a>(shared: &SharedCrateContext<'a, 'tcx>,
521                codegen_unit: CodegenUnit<'tcx>,
522                symbol_map: Rc<SymbolMap<'tcx>>)
523            -> LocalCrateContext<'tcx> {
524         unsafe {
525             // Append ".rs" to LLVM module identifier.
526             //
527             // LLVM code generator emits a ".file filename" directive
528             // for ELF backends. Value of the "filename" is set as the
529             // LLVM module identifier.  Due to a LLVM MC bug[1], LLVM
530             // crashes if the module identifier is same as other symbols
531             // such as a function name in the module.
532             // 1. http://llvm.org/bugs/show_bug.cgi?id=11479
533             let llmod_id = format!("{}.rs", codegen_unit.name);
534
535             let (llcx, llmod) = create_context_and_module(&shared.tcx.sess,
536                                                           &llmod_id[..]);
537
538             let dbg_cx = if shared.tcx.sess.opts.debuginfo != NoDebugInfo {
539                 Some(debuginfo::CrateDebugContext::new(llmod))
540             } else {
541                 None
542             };
543
544             let local_ccx = LocalCrateContext {
545                 llmod: llmod,
546                 llcx: llcx,
547                 codegen_unit: codegen_unit,
548                 tn: TypeNames::new(),
549                 needs_unwind_cleanup_cache: RefCell::new(FnvHashMap()),
550                 fn_pointer_shims: RefCell::new(FnvHashMap()),
551                 drop_glues: RefCell::new(FnvHashMap()),
552                 external: RefCell::new(DefIdMap()),
553                 external_srcs: RefCell::new(NodeMap()),
554                 instances: RefCell::new(FnvHashMap()),
555                 monomorphizing: RefCell::new(DefIdMap()),
556                 vtables: RefCell::new(FnvHashMap()),
557                 const_cstr_cache: RefCell::new(FnvHashMap()),
558                 const_unsized: RefCell::new(FnvHashMap()),
559                 const_globals: RefCell::new(FnvHashMap()),
560                 const_values: RefCell::new(FnvHashMap()),
561                 extern_const_values: RefCell::new(DefIdMap()),
562                 statics: RefCell::new(FnvHashMap()),
563                 impl_method_cache: RefCell::new(FnvHashMap()),
564                 closure_bare_wrapper_cache: RefCell::new(FnvHashMap()),
565                 statics_to_rauw: RefCell::new(Vec::new()),
566                 lltypes: RefCell::new(FnvHashMap()),
567                 llsizingtypes: RefCell::new(FnvHashMap()),
568                 adt_reprs: RefCell::new(FnvHashMap()),
569                 type_hashcodes: RefCell::new(FnvHashMap()),
570                 int_type: Type::from_ref(ptr::null_mut()),
571                 opaque_vec_type: Type::from_ref(ptr::null_mut()),
572                 builder: BuilderRef_res(llvm::LLVMCreateBuilderInContext(llcx)),
573                 closure_vals: RefCell::new(FnvHashMap()),
574                 dbg_cx: dbg_cx,
575                 eh_personality: Cell::new(None),
576                 eh_unwind_resume: Cell::new(None),
577                 rust_try_fn: Cell::new(None),
578                 intrinsics: RefCell::new(FnvHashMap()),
579                 n_llvm_insns: Cell::new(0),
580                 type_of_depth: Cell::new(0),
581                 symbol_map: symbol_map,
582             };
583
584             let (int_type, opaque_vec_type, str_slice_ty, mut local_ccx) = {
585                 // Do a little dance to create a dummy CrateContext, so we can
586                 // create some things in the LLVM module of this codegen unit
587                 let mut local_ccxs = vec![local_ccx];
588                 let (int_type, opaque_vec_type, str_slice_ty) = {
589                     let dummy_ccx = LocalCrateContext::dummy_ccx(shared,
590                                                                  local_ccxs.as_mut_slice());
591                     let mut str_slice_ty = Type::named_struct(&dummy_ccx, "str_slice");
592                     str_slice_ty.set_struct_body(&[Type::i8p(&dummy_ccx),
593                                                    Type::int(&dummy_ccx)],
594                                                  false);
595                     (Type::int(&dummy_ccx), Type::opaque_vec(&dummy_ccx), str_slice_ty)
596                 };
597                 (int_type, opaque_vec_type, str_slice_ty, local_ccxs.pop().unwrap())
598             };
599
600             local_ccx.int_type = int_type;
601             local_ccx.opaque_vec_type = opaque_vec_type;
602             local_ccx.tn.associate_type("str_slice", &str_slice_ty);
603
604             if shared.tcx.sess.count_llvm_insns() {
605                 base::init_insn_ctxt()
606             }
607
608             local_ccx
609         }
610     }
611
612     /// Create a dummy `CrateContext` from `self` and  the provided
613     /// `SharedCrateContext`.  This is somewhat dangerous because `self` may
614     /// not be fully initialized.
615     ///
616     /// This is used in the `LocalCrateContext` constructor to allow calling
617     /// functions that expect a complete `CrateContext`, even before the local
618     /// portion is fully initialized and attached to the `SharedCrateContext`.
619     fn dummy_ccx<'a>(shared: &'a SharedCrateContext<'a, 'tcx>,
620                      local_ccxs: &'a [LocalCrateContext<'tcx>])
621                      -> CrateContext<'a, 'tcx> {
622         assert!(local_ccxs.len() == 1);
623         CrateContext {
624             shared: shared,
625             index: 0,
626             local_ccxs: local_ccxs
627         }
628     }
629 }
630
631 impl<'b, 'tcx> CrateContext<'b, 'tcx> {
632     pub fn shared(&self) -> &'b SharedCrateContext<'b, 'tcx> {
633         self.shared
634     }
635
636     pub fn local(&self) -> &'b LocalCrateContext<'tcx> {
637         &self.local_ccxs[self.index]
638     }
639
640     /// Get a (possibly) different `CrateContext` from the same
641     /// `SharedCrateContext`.
642     pub fn rotate(&'b self) -> CrateContext<'b, 'tcx> {
643         let (_, index) =
644             self.local_ccxs
645                 .iter()
646                 .zip(0..self.local_ccxs.len())
647                 .min_by_key(|&(local_ccx, _idx)| local_ccx.n_llvm_insns.get())
648                 .unwrap();
649         CrateContext {
650             shared: self.shared,
651             index: index,
652             local_ccxs: &self.local_ccxs[..],
653         }
654     }
655
656     /// Either iterate over only `self`, or iterate over all `CrateContext`s in
657     /// the `SharedCrateContext`.  The iterator produces `(ccx, is_origin)`
658     /// pairs, where `is_origin` is `true` if `ccx` is `self` and `false`
659     /// otherwise.  This method is useful for avoiding code duplication in
660     /// cases where it may or may not be necessary to translate code into every
661     /// context.
662     pub fn maybe_iter(&self, iter_all: bool) -> CrateContextMaybeIterator<'b, 'tcx> {
663         CrateContextMaybeIterator {
664             shared: self.shared,
665             index: if iter_all { 0 } else { self.index },
666             single: !iter_all,
667             origin: self.index,
668             local_ccxs: self.local_ccxs,
669         }
670     }
671
672     pub fn tcx<'a>(&'a self) -> TyCtxt<'a, 'tcx, 'tcx> {
673         self.shared.tcx
674     }
675
676     pub fn sess<'a>(&'a self) -> &'a Session {
677         &self.shared.tcx.sess
678     }
679
680     pub fn builder<'a>(&'a self) -> Builder<'a, 'tcx> {
681         Builder::new(self)
682     }
683
684     pub fn raw_builder<'a>(&'a self) -> BuilderRef {
685         self.local().builder.b
686     }
687
688     pub fn get_intrinsic(&self, key: &str) -> ValueRef {
689         if let Some(v) = self.intrinsics().borrow().get(key).cloned() {
690             return v;
691         }
692         match declare_intrinsic(self, key) {
693             Some(v) => return v,
694             None => bug!("unknown intrinsic '{}'", key)
695         }
696     }
697
698     pub fn llmod(&self) -> ModuleRef {
699         self.local().llmod
700     }
701
702     pub fn llcx(&self) -> ContextRef {
703         self.local().llcx
704     }
705
706     pub fn codegen_unit(&self) -> &CodegenUnit<'tcx> {
707         &self.local().codegen_unit
708     }
709
710     pub fn td(&self) -> llvm::TargetDataRef {
711         unsafe { llvm::LLVMRustGetModuleDataLayout(self.llmod()) }
712     }
713
714     pub fn tn<'a>(&'a self) -> &'a TypeNames {
715         &self.local().tn
716     }
717
718     pub fn export_map<'a>(&'a self) -> &'a ExportMap {
719         &self.shared.export_map
720     }
721
722     pub fn reachable<'a>(&'a self) -> &'a NodeSet {
723         &self.shared.reachable
724     }
725
726     pub fn link_meta<'a>(&'a self) -> &'a LinkMeta {
727         &self.shared.link_meta
728     }
729
730     pub fn needs_unwind_cleanup_cache(&self) -> &RefCell<FnvHashMap<Ty<'tcx>, bool>> {
731         &self.local().needs_unwind_cleanup_cache
732     }
733
734     pub fn fn_pointer_shims(&self) -> &RefCell<FnvHashMap<Ty<'tcx>, ValueRef>> {
735         &self.local().fn_pointer_shims
736     }
737
738     pub fn drop_glues<'a>(&'a self)
739                           -> &'a RefCell<FnvHashMap<DropGlueKind<'tcx>, (ValueRef, FnType)>> {
740         &self.local().drop_glues
741     }
742
743     pub fn external<'a>(&'a self) -> &'a RefCell<DefIdMap<Option<ast::NodeId>>> {
744         &self.local().external
745     }
746
747     pub fn external_srcs<'a>(&'a self) -> &'a RefCell<NodeMap<DefId>> {
748         &self.local().external_srcs
749     }
750
751     pub fn instances<'a>(&'a self) -> &'a RefCell<FnvHashMap<Instance<'tcx>, ValueRef>> {
752         &self.local().instances
753     }
754
755     pub fn monomorphizing<'a>(&'a self) -> &'a RefCell<DefIdMap<usize>> {
756         &self.local().monomorphizing
757     }
758
759     pub fn vtables<'a>(&'a self) -> &'a RefCell<FnvHashMap<ty::PolyTraitRef<'tcx>, ValueRef>> {
760         &self.local().vtables
761     }
762
763     pub fn const_cstr_cache<'a>(&'a self) -> &'a RefCell<FnvHashMap<InternedString, ValueRef>> {
764         &self.local().const_cstr_cache
765     }
766
767     pub fn const_unsized<'a>(&'a self) -> &'a RefCell<FnvHashMap<ValueRef, ValueRef>> {
768         &self.local().const_unsized
769     }
770
771     pub fn const_globals<'a>(&'a self) -> &'a RefCell<FnvHashMap<ValueRef, ValueRef>> {
772         &self.local().const_globals
773     }
774
775     pub fn const_values<'a>(&'a self) -> &'a RefCell<FnvHashMap<(ast::NodeId, &'tcx Substs<'tcx>),
776                                                                 ValueRef>> {
777         &self.local().const_values
778     }
779
780     pub fn extern_const_values<'a>(&'a self) -> &'a RefCell<DefIdMap<ValueRef>> {
781         &self.local().extern_const_values
782     }
783
784     pub fn statics<'a>(&'a self) -> &'a RefCell<FnvHashMap<ValueRef, DefId>> {
785         &self.local().statics
786     }
787
788     pub fn impl_method_cache<'a>(&'a self)
789             -> &'a RefCell<FnvHashMap<(DefId, ast::Name), DefId>> {
790         &self.local().impl_method_cache
791     }
792
793     pub fn closure_bare_wrapper_cache<'a>(&'a self) -> &'a RefCell<FnvHashMap<ValueRef, ValueRef>> {
794         &self.local().closure_bare_wrapper_cache
795     }
796
797     pub fn statics_to_rauw<'a>(&'a self) -> &'a RefCell<Vec<(ValueRef, ValueRef)>> {
798         &self.local().statics_to_rauw
799     }
800
801     pub fn lltypes<'a>(&'a self) -> &'a RefCell<FnvHashMap<Ty<'tcx>, Type>> {
802         &self.local().lltypes
803     }
804
805     pub fn llsizingtypes<'a>(&'a self) -> &'a RefCell<FnvHashMap<Ty<'tcx>, Type>> {
806         &self.local().llsizingtypes
807     }
808
809     pub fn adt_reprs<'a>(&'a self) -> &'a RefCell<FnvHashMap<Ty<'tcx>, Rc<adt::Repr<'tcx>>>> {
810         &self.local().adt_reprs
811     }
812
813     pub fn symbol_hasher<'a>(&'a self) -> &'a RefCell<Sha256> {
814         &self.shared.symbol_hasher
815     }
816
817     pub fn type_hashcodes<'a>(&'a self) -> &'a RefCell<FnvHashMap<Ty<'tcx>, String>> {
818         &self.local().type_hashcodes
819     }
820
821     pub fn stats<'a>(&'a self) -> &'a Stats {
822         &self.shared.stats
823     }
824
825     pub fn int_type(&self) -> Type {
826         self.local().int_type
827     }
828
829     pub fn opaque_vec_type(&self) -> Type {
830         self.local().opaque_vec_type
831     }
832
833     pub fn closure_vals<'a>(&'a self) -> &'a RefCell<FnvHashMap<Instance<'tcx>, ValueRef>> {
834         &self.local().closure_vals
835     }
836
837     pub fn dbg_cx<'a>(&'a self) -> &'a Option<debuginfo::CrateDebugContext<'tcx>> {
838         &self.local().dbg_cx
839     }
840
841     pub fn eh_personality<'a>(&'a self) -> &'a Cell<Option<ValueRef>> {
842         &self.local().eh_personality
843     }
844
845     pub fn eh_unwind_resume<'a>(&'a self) -> &'a Cell<Option<ValueRef>> {
846         &self.local().eh_unwind_resume
847     }
848
849     pub fn rust_try_fn<'a>(&'a self) -> &'a Cell<Option<ValueRef>> {
850         &self.local().rust_try_fn
851     }
852
853     fn intrinsics<'a>(&'a self) -> &'a RefCell<FnvHashMap<&'static str, ValueRef>> {
854         &self.local().intrinsics
855     }
856
857     pub fn count_llvm_insn(&self) {
858         self.local().n_llvm_insns.set(self.local().n_llvm_insns.get() + 1);
859     }
860
861     pub fn obj_size_bound(&self) -> u64 {
862         self.tcx().data_layout.obj_size_bound()
863     }
864
865     pub fn report_overbig_object(&self, obj: Ty<'tcx>) -> ! {
866         self.sess().fatal(
867             &format!("the type `{:?}` is too big for the current architecture",
868                     obj))
869     }
870
871     pub fn enter_type_of(&self, ty: Ty<'tcx>) -> TypeOfDepthLock<'b, 'tcx> {
872         let current_depth = self.local().type_of_depth.get();
873         debug!("enter_type_of({:?}) at depth {:?}", ty, current_depth);
874         if current_depth > self.sess().recursion_limit.get() {
875             self.sess().fatal(
876                 &format!("overflow representing the type `{}`", ty))
877         }
878         self.local().type_of_depth.set(current_depth + 1);
879         TypeOfDepthLock(self.local())
880     }
881
882     pub fn check_overflow(&self) -> bool {
883         self.shared.check_overflow
884     }
885
886     pub fn check_drop_flag_for_sanity(&self) -> bool {
887         // This controls whether we emit a conditional llvm.debugtrap
888         // guarded on whether the dropflag is one of its (two) valid
889         // values.
890         self.shared.check_drop_flag_for_sanity
891     }
892
893     pub fn use_dll_storage_attrs(&self) -> bool {
894         self.shared.use_dll_storage_attrs()
895     }
896
897     pub fn get_mir(&self, def_id: DefId) -> Option<CachedMir<'b, 'tcx>> {
898         self.shared.get_mir(def_id)
899     }
900
901     pub fn symbol_map(&self) -> &SymbolMap<'tcx> {
902         &*self.local().symbol_map
903     }
904
905     pub fn translation_items(&self) -> &RefCell<FnvHashMap<TransItem<'tcx>, TransItemState>> {
906         &self.shared.translation_items
907     }
908
909     pub fn record_translation_item_as_generated(&self, cgi: TransItem<'tcx>) {
910         if self.sess().opts.debugging_opts.print_trans_items.is_none() {
911             return;
912         }
913
914         let mut codegen_items = self.translation_items().borrow_mut();
915
916         if codegen_items.contains_key(&cgi) {
917             codegen_items.insert(cgi, TransItemState::PredictedAndGenerated);
918         } else {
919             codegen_items.insert(cgi, TransItemState::NotPredictedButGenerated);
920         }
921     }
922
923     /// Given the def-id of some item that has no type parameters, make
924     /// a suitable "empty substs" for it.
925     pub fn empty_substs_for_def_id(&self, item_def_id: DefId) -> &'tcx Substs<'tcx> {
926         self.shared().empty_substs_for_def_id(item_def_id)
927     }
928
929     pub fn empty_substs_for_scheme(&self, scheme: &ty::TypeScheme<'tcx>)
930                                    -> &'tcx Substs<'tcx> {
931         self.shared().empty_substs_for_scheme(scheme)
932     }
933 }
934
935 pub struct TypeOfDepthLock<'a, 'tcx: 'a>(&'a LocalCrateContext<'tcx>);
936
937 impl<'a, 'tcx> Drop for TypeOfDepthLock<'a, 'tcx> {
938     fn drop(&mut self) {
939         self.0.type_of_depth.set(self.0.type_of_depth.get() - 1);
940     }
941 }
942
943 /// Declare any llvm intrinsics that you might need
944 fn declare_intrinsic(ccx: &CrateContext, key: &str) -> Option<ValueRef> {
945     macro_rules! ifn {
946         ($name:expr, fn() -> $ret:expr) => (
947             if key == $name {
948                 let f = declare::declare_cfn(ccx, $name, Type::func(&[], &$ret));
949                 llvm::SetUnnamedAddr(f, false);
950                 ccx.intrinsics().borrow_mut().insert($name, f.clone());
951                 return Some(f);
952             }
953         );
954         ($name:expr, fn(...) -> $ret:expr) => (
955             if key == $name {
956                 let f = declare::declare_cfn(ccx, $name, Type::variadic_func(&[], &$ret));
957                 llvm::SetUnnamedAddr(f, false);
958                 ccx.intrinsics().borrow_mut().insert($name, f.clone());
959                 return Some(f);
960             }
961         );
962         ($name:expr, fn($($arg:expr),*) -> $ret:expr) => (
963             if key == $name {
964                 let f = declare::declare_cfn(ccx, $name, Type::func(&[$($arg),*], &$ret));
965                 llvm::SetUnnamedAddr(f, false);
966                 ccx.intrinsics().borrow_mut().insert($name, f.clone());
967                 return Some(f);
968             }
969         );
970     }
971     macro_rules! mk_struct {
972         ($($field_ty:expr),*) => (Type::struct_(ccx, &[$($field_ty),*], false))
973     }
974
975     let i8p = Type::i8p(ccx);
976     let void = Type::void(ccx);
977     let i1 = Type::i1(ccx);
978     let t_i8 = Type::i8(ccx);
979     let t_i16 = Type::i16(ccx);
980     let t_i32 = Type::i32(ccx);
981     let t_i64 = Type::i64(ccx);
982     let t_f32 = Type::f32(ccx);
983     let t_f64 = Type::f64(ccx);
984
985     ifn!("llvm.memcpy.p0i8.p0i8.i16", fn(i8p, i8p, t_i16, t_i32, i1) -> void);
986     ifn!("llvm.memcpy.p0i8.p0i8.i32", fn(i8p, i8p, t_i32, t_i32, i1) -> void);
987     ifn!("llvm.memcpy.p0i8.p0i8.i64", fn(i8p, i8p, t_i64, t_i32, i1) -> void);
988     ifn!("llvm.memmove.p0i8.p0i8.i16", fn(i8p, i8p, t_i16, t_i32, i1) -> void);
989     ifn!("llvm.memmove.p0i8.p0i8.i32", fn(i8p, i8p, t_i32, t_i32, i1) -> void);
990     ifn!("llvm.memmove.p0i8.p0i8.i64", fn(i8p, i8p, t_i64, t_i32, i1) -> void);
991     ifn!("llvm.memset.p0i8.i16", fn(i8p, t_i8, t_i16, t_i32, i1) -> void);
992     ifn!("llvm.memset.p0i8.i32", fn(i8p, t_i8, t_i32, t_i32, i1) -> void);
993     ifn!("llvm.memset.p0i8.i64", fn(i8p, t_i8, t_i64, t_i32, i1) -> void);
994
995     ifn!("llvm.trap", fn() -> void);
996     ifn!("llvm.debugtrap", fn() -> void);
997     ifn!("llvm.frameaddress", fn(t_i32) -> i8p);
998
999     ifn!("llvm.powi.f32", fn(t_f32, t_i32) -> t_f32);
1000     ifn!("llvm.powi.f64", fn(t_f64, t_i32) -> t_f64);
1001     ifn!("llvm.pow.f32", fn(t_f32, t_f32) -> t_f32);
1002     ifn!("llvm.pow.f64", fn(t_f64, t_f64) -> t_f64);
1003
1004     ifn!("llvm.sqrt.f32", fn(t_f32) -> t_f32);
1005     ifn!("llvm.sqrt.f64", fn(t_f64) -> t_f64);
1006     ifn!("llvm.sin.f32", fn(t_f32) -> t_f32);
1007     ifn!("llvm.sin.f64", fn(t_f64) -> t_f64);
1008     ifn!("llvm.cos.f32", fn(t_f32) -> t_f32);
1009     ifn!("llvm.cos.f64", fn(t_f64) -> t_f64);
1010     ifn!("llvm.exp.f32", fn(t_f32) -> t_f32);
1011     ifn!("llvm.exp.f64", fn(t_f64) -> t_f64);
1012     ifn!("llvm.exp2.f32", fn(t_f32) -> t_f32);
1013     ifn!("llvm.exp2.f64", fn(t_f64) -> t_f64);
1014     ifn!("llvm.log.f32", fn(t_f32) -> t_f32);
1015     ifn!("llvm.log.f64", fn(t_f64) -> t_f64);
1016     ifn!("llvm.log10.f32", fn(t_f32) -> t_f32);
1017     ifn!("llvm.log10.f64", fn(t_f64) -> t_f64);
1018     ifn!("llvm.log2.f32", fn(t_f32) -> t_f32);
1019     ifn!("llvm.log2.f64", fn(t_f64) -> t_f64);
1020
1021     ifn!("llvm.fma.f32", fn(t_f32, t_f32, t_f32) -> t_f32);
1022     ifn!("llvm.fma.f64", fn(t_f64, t_f64, t_f64) -> t_f64);
1023
1024     ifn!("llvm.fabs.f32", fn(t_f32) -> t_f32);
1025     ifn!("llvm.fabs.f64", fn(t_f64) -> t_f64);
1026
1027     ifn!("llvm.floor.f32", fn(t_f32) -> t_f32);
1028     ifn!("llvm.floor.f64", fn(t_f64) -> t_f64);
1029     ifn!("llvm.ceil.f32", fn(t_f32) -> t_f32);
1030     ifn!("llvm.ceil.f64", fn(t_f64) -> t_f64);
1031     ifn!("llvm.trunc.f32", fn(t_f32) -> t_f32);
1032     ifn!("llvm.trunc.f64", fn(t_f64) -> t_f64);
1033
1034     ifn!("llvm.copysign.f32", fn(t_f32, t_f32) -> t_f32);
1035     ifn!("llvm.copysign.f64", fn(t_f64, t_f64) -> t_f64);
1036     ifn!("llvm.round.f32", fn(t_f32) -> t_f32);
1037     ifn!("llvm.round.f64", fn(t_f64) -> t_f64);
1038
1039     ifn!("llvm.rint.f32", fn(t_f32) -> t_f32);
1040     ifn!("llvm.rint.f64", fn(t_f64) -> t_f64);
1041     ifn!("llvm.nearbyint.f32", fn(t_f32) -> t_f32);
1042     ifn!("llvm.nearbyint.f64", fn(t_f64) -> t_f64);
1043
1044     ifn!("llvm.ctpop.i8", fn(t_i8) -> t_i8);
1045     ifn!("llvm.ctpop.i16", fn(t_i16) -> t_i16);
1046     ifn!("llvm.ctpop.i32", fn(t_i32) -> t_i32);
1047     ifn!("llvm.ctpop.i64", fn(t_i64) -> t_i64);
1048
1049     ifn!("llvm.ctlz.i8", fn(t_i8 , i1) -> t_i8);
1050     ifn!("llvm.ctlz.i16", fn(t_i16, i1) -> t_i16);
1051     ifn!("llvm.ctlz.i32", fn(t_i32, i1) -> t_i32);
1052     ifn!("llvm.ctlz.i64", fn(t_i64, i1) -> t_i64);
1053
1054     ifn!("llvm.cttz.i8", fn(t_i8 , i1) -> t_i8);
1055     ifn!("llvm.cttz.i16", fn(t_i16, i1) -> t_i16);
1056     ifn!("llvm.cttz.i32", fn(t_i32, i1) -> t_i32);
1057     ifn!("llvm.cttz.i64", fn(t_i64, i1) -> t_i64);
1058
1059     ifn!("llvm.bswap.i16", fn(t_i16) -> t_i16);
1060     ifn!("llvm.bswap.i32", fn(t_i32) -> t_i32);
1061     ifn!("llvm.bswap.i64", fn(t_i64) -> t_i64);
1062
1063     ifn!("llvm.sadd.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
1064     ifn!("llvm.sadd.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
1065     ifn!("llvm.sadd.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
1066     ifn!("llvm.sadd.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
1067
1068     ifn!("llvm.uadd.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
1069     ifn!("llvm.uadd.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
1070     ifn!("llvm.uadd.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
1071     ifn!("llvm.uadd.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
1072
1073     ifn!("llvm.ssub.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
1074     ifn!("llvm.ssub.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
1075     ifn!("llvm.ssub.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
1076     ifn!("llvm.ssub.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
1077
1078     ifn!("llvm.usub.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
1079     ifn!("llvm.usub.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
1080     ifn!("llvm.usub.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
1081     ifn!("llvm.usub.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
1082
1083     ifn!("llvm.smul.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
1084     ifn!("llvm.smul.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
1085     ifn!("llvm.smul.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
1086     ifn!("llvm.smul.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
1087
1088     ifn!("llvm.umul.with.overflow.i8", fn(t_i8, t_i8) -> mk_struct!{t_i8, i1});
1089     ifn!("llvm.umul.with.overflow.i16", fn(t_i16, t_i16) -> mk_struct!{t_i16, i1});
1090     ifn!("llvm.umul.with.overflow.i32", fn(t_i32, t_i32) -> mk_struct!{t_i32, i1});
1091     ifn!("llvm.umul.with.overflow.i64", fn(t_i64, t_i64) -> mk_struct!{t_i64, i1});
1092
1093     ifn!("llvm.lifetime.start", fn(t_i64,i8p) -> void);
1094     ifn!("llvm.lifetime.end", fn(t_i64, i8p) -> void);
1095
1096     ifn!("llvm.expect.i1", fn(i1, i1) -> i1);
1097     ifn!("llvm.eh.typeid.for", fn(i8p) -> t_i32);
1098     ifn!("llvm.localescape", fn(...) -> void);
1099     ifn!("llvm.localrecover", fn(i8p, i8p, t_i32) -> i8p);
1100     ifn!("llvm.x86.seh.recoverfp", fn(i8p, i8p) -> i8p);
1101
1102     ifn!("llvm.assume", fn(i1) -> void);
1103
1104     if ccx.sess().opts.debuginfo != NoDebugInfo {
1105         ifn!("llvm.dbg.declare", fn(Type::metadata(ccx), Type::metadata(ccx)) -> void);
1106         ifn!("llvm.dbg.value", fn(Type::metadata(ccx), t_i64, Type::metadata(ccx)) -> void);
1107     }
1108     return None;
1109 }