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