]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/trans/debuginfo.rs
remove unnecessary parentheses from range notation
[rust.git] / src / librustc_trans / trans / debuginfo.rs
1 // Copyright 2012-2014 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 //! # Debug Info Module
12 //!
13 //! This module serves the purpose of generating debug symbols. We use LLVM's
14 //! [source level debugging](http://llvm.org/docs/SourceLevelDebugging.html)
15 //! features for generating the debug information. The general principle is this:
16 //!
17 //! Given the right metadata in the LLVM IR, the LLVM code generator is able to
18 //! create DWARF debug symbols for the given code. The
19 //! [metadata](http://llvm.org/docs/LangRef.html#metadata-type) is structured much
20 //! like DWARF *debugging information entries* (DIE), representing type information
21 //! such as datatype layout, function signatures, block layout, variable location
22 //! and scope information, etc. It is the purpose of this module to generate correct
23 //! metadata and insert it into the LLVM IR.
24 //!
25 //! As the exact format of metadata trees may change between different LLVM
26 //! versions, we now use LLVM
27 //! [DIBuilder](http://llvm.org/docs/doxygen/html/classllvm_1_1DIBuilder.html) to
28 //! create metadata where possible. This will hopefully ease the adaption of this
29 //! module to future LLVM versions.
30 //!
31 //! The public API of the module is a set of functions that will insert the correct
32 //! metadata into the LLVM IR when called with the right parameters. The module is
33 //! thus driven from an outside client with functions like
34 //! `debuginfo::create_local_var_metadata(bcx: block, local: &ast::local)`.
35 //!
36 //! Internally the module will try to reuse already created metadata by utilizing a
37 //! cache. The way to get a shared metadata node when needed is thus to just call
38 //! the corresponding function in this module:
39 //!
40 //!     let file_metadata = file_metadata(crate_context, path);
41 //!
42 //! The function will take care of probing the cache for an existing node for that
43 //! exact file path.
44 //!
45 //! All private state used by the module is stored within either the
46 //! CrateDebugContext struct (owned by the CrateContext) or the FunctionDebugContext
47 //! (owned by the FunctionContext).
48 //!
49 //! This file consists of three conceptual sections:
50 //! 1. The public interface of the module
51 //! 2. Module-internal metadata creation functions
52 //! 3. Minor utility functions
53 //!
54 //!
55 //! ## Recursive Types
56 //!
57 //! Some kinds of types, such as structs and enums can be recursive. That means that
58 //! the type definition of some type X refers to some other type which in turn
59 //! (transitively) refers to X. This introduces cycles into the type referral graph.
60 //! A naive algorithm doing an on-demand, depth-first traversal of this graph when
61 //! describing types, can get trapped in an endless loop when it reaches such a
62 //! cycle.
63 //!
64 //! For example, the following simple type for a singly-linked list...
65 //!
66 //! ```
67 //! struct List {
68 //!     value: int,
69 //!     tail: Option<Box<List>>,
70 //! }
71 //! ```
72 //!
73 //! will generate the following callstack with a naive DFS algorithm:
74 //!
75 //! ```
76 //! describe(t = List)
77 //!   describe(t = int)
78 //!   describe(t = Option<Box<List>>)
79 //!     describe(t = Box<List>)
80 //!       describe(t = List) // at the beginning again...
81 //!       ...
82 //! ```
83 //!
84 //! To break cycles like these, we use "forward declarations". That is, when the
85 //! algorithm encounters a possibly recursive type (any struct or enum), it
86 //! immediately creates a type description node and inserts it into the cache
87 //! *before* describing the members of the type. This type description is just a
88 //! stub (as type members are not described and added to it yet) but it allows the
89 //! algorithm to already refer to the type. After the stub is inserted into the
90 //! cache, the algorithm continues as before. If it now encounters a recursive
91 //! reference, it will hit the cache and does not try to describe the type anew.
92 //!
93 //! This behaviour is encapsulated in the 'RecursiveTypeDescription' enum, which
94 //! represents a kind of continuation, storing all state needed to continue
95 //! traversal at the type members after the type has been registered with the cache.
96 //! (This implementation approach might be a tad over-engineered and may change in
97 //! the future)
98 //!
99 //!
100 //! ## Source Locations and Line Information
101 //!
102 //! In addition to data type descriptions the debugging information must also allow
103 //! to map machine code locations back to source code locations in order to be useful.
104 //! This functionality is also handled in this module. The following functions allow
105 //! to control source mappings:
106 //!
107 //! + set_source_location()
108 //! + clear_source_location()
109 //! + start_emitting_source_locations()
110 //!
111 //! `set_source_location()` allows to set the current source location. All IR
112 //! instructions created after a call to this function will be linked to the given
113 //! source location, until another location is specified with
114 //! `set_source_location()` or the source location is cleared with
115 //! `clear_source_location()`. In the later case, subsequent IR instruction will not
116 //! be linked to any source location. As you can see, this is a stateful API
117 //! (mimicking the one in LLVM), so be careful with source locations set by previous
118 //! calls. It's probably best to not rely on any specific state being present at a
119 //! given point in code.
120 //!
121 //! One topic that deserves some extra attention is *function prologues*. At the
122 //! beginning of a function's machine code there are typically a few instructions
123 //! for loading argument values into allocas and checking if there's enough stack
124 //! space for the function to execute. This *prologue* is not visible in the source
125 //! code and LLVM puts a special PROLOGUE END marker into the line table at the
126 //! first non-prologue instruction of the function. In order to find out where the
127 //! prologue ends, LLVM looks for the first instruction in the function body that is
128 //! linked to a source location. So, when generating prologue instructions we have
129 //! to make sure that we don't emit source location information until the 'real'
130 //! function body begins. For this reason, source location emission is disabled by
131 //! default for any new function being translated and is only activated after a call
132 //! to the third function from the list above, `start_emitting_source_locations()`.
133 //! This function should be called right before regularly starting to translate the
134 //! top-level block of the given function.
135 //!
136 //! There is one exception to the above rule: `llvm.dbg.declare` instruction must be
137 //! linked to the source location of the variable being declared. For function
138 //! parameters these `llvm.dbg.declare` instructions typically occur in the middle
139 //! of the prologue, however, they are ignored by LLVM's prologue detection. The
140 //! `create_argument_metadata()` and related functions take care of linking the
141 //! `llvm.dbg.declare` instructions to the correct source locations even while
142 //! source location emission is still disabled, so there is no need to do anything
143 //! special with source location handling here.
144 //!
145 //! ## Unique Type Identification
146 //!
147 //! In order for link-time optimization to work properly, LLVM needs a unique type
148 //! identifier that tells it across compilation units which types are the same as
149 //! others. This type identifier is created by TypeMap::get_unique_type_id_of_type()
150 //! using the following algorithm:
151 //!
152 //! (1) Primitive types have their name as ID
153 //! (2) Structs, enums and traits have a multipart identifier
154 //!
155 //!     (1) The first part is the SVH (strict version hash) of the crate they were
156 //!         originally defined in
157 //!
158 //!     (2) The second part is the ast::NodeId of the definition in their original
159 //!         crate
160 //!
161 //!     (3) The final part is a concatenation of the type IDs of their concrete type
162 //!         arguments if they are generic types.
163 //!
164 //! (3) Tuple-, pointer and function types are structurally identified, which means
165 //!     that they are equivalent if their component types are equivalent (i.e. (int,
166 //!     int) is the same regardless in which crate it is used).
167 //!
168 //! This algorithm also provides a stable ID for types that are defined in one crate
169 //! but instantiated from metadata within another crate. We just have to take care
170 //! to always map crate and node IDs back to the original crate context.
171 //!
172 //! As a side-effect these unique type IDs also help to solve a problem arising from
173 //! lifetime parameters. Since lifetime parameters are completely omitted in
174 //! debuginfo, more than one `Ty` instance may map to the same debuginfo type
175 //! metadata, that is, some struct `Struct<'a>` may have N instantiations with
176 //! different concrete substitutions for `'a`, and thus there will be N `Ty`
177 //! instances for the type `Struct<'a>` even though it is not generic otherwise.
178 //! Unfortunately this means that we cannot use `ty::type_id()` as cheap identifier
179 //! for type metadata---we have done this in the past, but it led to unnecessary
180 //! metadata duplication in the best case and LLVM assertions in the worst. However,
181 //! the unique type ID as described above *can* be used as identifier. Since it is
182 //! comparatively expensive to construct, though, `ty::type_id()` is still used
183 //! additionally as an optimization for cases where the exact same type has been
184 //! seen before (which is most of the time).
185 use self::VariableAccess::*;
186 use self::VariableKind::*;
187 use self::MemberOffset::*;
188 use self::MemberDescriptionFactory::*;
189 use self::RecursiveTypeDescription::*;
190 use self::EnumDiscriminantInfo::*;
191 use self::DebugLocation::*;
192
193 use llvm;
194 use llvm::{ModuleRef, ContextRef, ValueRef};
195 use llvm::debuginfo::*;
196 use metadata::csearch;
197 use middle::subst::{self, Substs};
198 use trans::{self, adt, machine, type_of};
199 use trans::common::*;
200 use trans::_match::{BindingInfo, TrByCopy, TrByMove, TrByRef};
201 use trans::monomorphize;
202 use trans::type_::Type;
203 use middle::ty::{self, Ty, UnboxedClosureTyper};
204 use middle::pat_util;
205 use session::config::{self, FullDebugInfo, LimitedDebugInfo, NoDebugInfo};
206 use util::nodemap::{DefIdMap, NodeMap, FnvHashMap, FnvHashSet};
207 use util::ppaux;
208
209 use libc::c_uint;
210 use std::ffi::CString;
211 use std::cell::{Cell, RefCell};
212 use std::ptr;
213 use std::rc::{Rc, Weak};
214 use syntax::util::interner::Interner;
215 use syntax::codemap::{Span, Pos};
216 use syntax::{ast, codemap, ast_util, ast_map, attr};
217 use syntax::ast_util::PostExpansionMethod;
218 use syntax::parse::token::{self, special_idents};
219
220 const DW_LANG_RUST: c_uint = 0x9000;
221
222 #[allow(non_upper_case_globals)]
223 const DW_TAG_auto_variable: c_uint = 0x100;
224 #[allow(non_upper_case_globals)]
225 const DW_TAG_arg_variable: c_uint = 0x101;
226
227 #[allow(non_upper_case_globals)]
228 const DW_ATE_boolean: c_uint = 0x02;
229 #[allow(non_upper_case_globals)]
230 const DW_ATE_float: c_uint = 0x04;
231 #[allow(non_upper_case_globals)]
232 const DW_ATE_signed: c_uint = 0x05;
233 #[allow(non_upper_case_globals)]
234 const DW_ATE_unsigned: c_uint = 0x07;
235 #[allow(non_upper_case_globals)]
236 const DW_ATE_unsigned_char: c_uint = 0x08;
237
238 const UNKNOWN_LINE_NUMBER: c_uint = 0;
239 const UNKNOWN_COLUMN_NUMBER: c_uint = 0;
240
241 // ptr::null() doesn't work :(
242 const UNKNOWN_FILE_METADATA: DIFile = (0 as DIFile);
243 const UNKNOWN_SCOPE_METADATA: DIScope = (0 as DIScope);
244
245 const FLAGS_NONE: c_uint = 0;
246
247 //=-----------------------------------------------------------------------------
248 //  Public Interface of debuginfo module
249 //=-----------------------------------------------------------------------------
250
251 #[derive(Copy, Show, Hash, Eq, PartialEq, Clone)]
252 struct UniqueTypeId(ast::Name);
253
254 // The TypeMap is where the CrateDebugContext holds the type metadata nodes
255 // created so far. The metadata nodes are indexed by UniqueTypeId, and, for
256 // faster lookup, also by Ty. The TypeMap is responsible for creating
257 // UniqueTypeIds.
258 struct TypeMap<'tcx> {
259     // The UniqueTypeIds created so far
260     unique_id_interner: Interner<Rc<String>>,
261     // A map from UniqueTypeId to debuginfo metadata for that type. This is a 1:1 mapping.
262     unique_id_to_metadata: FnvHashMap<UniqueTypeId, DIType>,
263     // A map from types to debuginfo metadata. This is a N:1 mapping.
264     type_to_metadata: FnvHashMap<Ty<'tcx>, DIType>,
265     // A map from types to UniqueTypeId. This is a N:1 mapping.
266     type_to_unique_id: FnvHashMap<Ty<'tcx>, UniqueTypeId>
267 }
268
269 impl<'tcx> TypeMap<'tcx> {
270
271     fn new() -> TypeMap<'tcx> {
272         TypeMap {
273             unique_id_interner: Interner::new(),
274             type_to_metadata: FnvHashMap::new(),
275             unique_id_to_metadata: FnvHashMap::new(),
276             type_to_unique_id: FnvHashMap::new(),
277         }
278     }
279
280     // Adds a Ty to metadata mapping to the TypeMap. The method will fail if
281     // the mapping already exists.
282     fn register_type_with_metadata<'a>(&mut self,
283                                        cx: &CrateContext<'a, 'tcx>,
284                                        type_: Ty<'tcx>,
285                                        metadata: DIType) {
286         if self.type_to_metadata.insert(type_, metadata).is_some() {
287             cx.sess().bug(&format!("Type metadata for Ty '{}' is already in the TypeMap!",
288                                    ppaux::ty_to_string(cx.tcx(), type_))[]);
289         }
290     }
291
292     // Adds a UniqueTypeId to metadata mapping to the TypeMap. The method will
293     // fail if the mapping already exists.
294     fn register_unique_id_with_metadata(&mut self,
295                                         cx: &CrateContext,
296                                         unique_type_id: UniqueTypeId,
297                                         metadata: DIType) {
298         if self.unique_id_to_metadata.insert(unique_type_id, metadata).is_some() {
299             let unique_type_id_str = self.get_unique_type_id_as_string(unique_type_id);
300             cx.sess().bug(&format!("Type metadata for unique id '{}' is already in the TypeMap!",
301                                   &unique_type_id_str[])[]);
302         }
303     }
304
305     fn find_metadata_for_type(&self, type_: Ty<'tcx>) -> Option<DIType> {
306         self.type_to_metadata.get(&type_).cloned()
307     }
308
309     fn find_metadata_for_unique_id(&self, unique_type_id: UniqueTypeId) -> Option<DIType> {
310         self.unique_id_to_metadata.get(&unique_type_id).cloned()
311     }
312
313     // Get the string representation of a UniqueTypeId. This method will fail if
314     // the id is unknown.
315     fn get_unique_type_id_as_string(&self, unique_type_id: UniqueTypeId) -> Rc<String> {
316         let UniqueTypeId(interner_key) = unique_type_id;
317         self.unique_id_interner.get(interner_key)
318     }
319
320     // Get the UniqueTypeId for the given type. If the UniqueTypeId for the given
321     // type has been requested before, this is just a table lookup. Otherwise an
322     // ID will be generated and stored for later lookup.
323     fn get_unique_type_id_of_type<'a>(&mut self, cx: &CrateContext<'a, 'tcx>,
324                                       type_: Ty<'tcx>) -> UniqueTypeId {
325
326         // basic type           -> {:name of the type:}
327         // tuple                -> {tuple_(:param-uid:)*}
328         // struct               -> {struct_:svh: / :node-id:_<(:param-uid:),*> }
329         // enum                 -> {enum_:svh: / :node-id:_<(:param-uid:),*> }
330         // enum variant         -> {variant_:variant-name:_:enum-uid:}
331         // reference (&)        -> {& :pointee-uid:}
332         // mut reference (&mut) -> {&mut :pointee-uid:}
333         // ptr (*)              -> {* :pointee-uid:}
334         // mut ptr (*mut)       -> {*mut :pointee-uid:}
335         // unique ptr (~)       -> {~ :pointee-uid:}
336         // @-ptr (@)            -> {@ :pointee-uid:}
337         // sized vec ([T; x])   -> {[:size:] :element-uid:}
338         // unsized vec ([T])    -> {[] :element-uid:}
339         // trait (T)            -> {trait_:svh: / :node-id:_<(:param-uid:),*> }
340         // closure              -> {<unsafe_> <once_> :store-sigil: |(:param-uid:),* <,_...>| -> \
341         //                             :return-type-uid: : (:bounds:)*}
342         // function             -> {<unsafe_> <abi_> fn( (:param-uid:)* <,_...> ) -> \
343         //                             :return-type-uid:}
344         // unique vec box (~[]) -> {HEAP_VEC_BOX<:pointee-uid:>}
345         // gc box               -> {GC_BOX<:pointee-uid:>}
346
347         match self.type_to_unique_id.get(&type_).cloned() {
348             Some(unique_type_id) => return unique_type_id,
349             None => { /* generate one */}
350         };
351
352         let mut unique_type_id = String::with_capacity(256);
353         unique_type_id.push('{');
354
355         match type_.sty {
356             ty::ty_bool     |
357             ty::ty_char     |
358             ty::ty_str      |
359             ty::ty_int(_)   |
360             ty::ty_uint(_)  |
361             ty::ty_float(_) => {
362                 push_debuginfo_type_name(cx, type_, false, &mut unique_type_id);
363             },
364             ty::ty_enum(def_id, substs) => {
365                 unique_type_id.push_str("enum ");
366                 from_def_id_and_substs(self, cx, def_id, substs, &mut unique_type_id);
367             },
368             ty::ty_struct(def_id, substs) => {
369                 unique_type_id.push_str("struct ");
370                 from_def_id_and_substs(self, cx, def_id, substs, &mut unique_type_id);
371             },
372             ty::ty_tup(ref component_types) if component_types.is_empty() => {
373                 push_debuginfo_type_name(cx, type_, false, &mut unique_type_id);
374             },
375             ty::ty_tup(ref component_types) => {
376                 unique_type_id.push_str("tuple ");
377                 for &component_type in component_types.iter() {
378                     let component_type_id =
379                         self.get_unique_type_id_of_type(cx, component_type);
380                     let component_type_id =
381                         self.get_unique_type_id_as_string(component_type_id);
382                     unique_type_id.push_str(&component_type_id[]);
383                 }
384             },
385             ty::ty_uniq(inner_type) => {
386                 unique_type_id.push('~');
387                 let inner_type_id = self.get_unique_type_id_of_type(cx, inner_type);
388                 let inner_type_id = self.get_unique_type_id_as_string(inner_type_id);
389                 unique_type_id.push_str(&inner_type_id[]);
390             },
391             ty::ty_ptr(ty::mt { ty: inner_type, mutbl } ) => {
392                 unique_type_id.push('*');
393                 if mutbl == ast::MutMutable {
394                     unique_type_id.push_str("mut");
395                 }
396
397                 let inner_type_id = self.get_unique_type_id_of_type(cx, inner_type);
398                 let inner_type_id = self.get_unique_type_id_as_string(inner_type_id);
399                 unique_type_id.push_str(&inner_type_id[]);
400             },
401             ty::ty_rptr(_, ty::mt { ty: inner_type, mutbl }) => {
402                 unique_type_id.push('&');
403                 if mutbl == ast::MutMutable {
404                     unique_type_id.push_str("mut");
405                 }
406
407                 let inner_type_id = self.get_unique_type_id_of_type(cx, inner_type);
408                 let inner_type_id = self.get_unique_type_id_as_string(inner_type_id);
409                 unique_type_id.push_str(&inner_type_id[]);
410             },
411             ty::ty_vec(inner_type, optional_length) => {
412                 match optional_length {
413                     Some(len) => {
414                         unique_type_id.push_str(&format!("[{}]", len)[]);
415                     }
416                     None => {
417                         unique_type_id.push_str("[]");
418                     }
419                 };
420
421                 let inner_type_id = self.get_unique_type_id_of_type(cx, inner_type);
422                 let inner_type_id = self.get_unique_type_id_as_string(inner_type_id);
423                 unique_type_id.push_str(&inner_type_id[]);
424             },
425             ty::ty_trait(ref trait_data) => {
426                 unique_type_id.push_str("trait ");
427
428                 let principal =
429                     ty::erase_late_bound_regions(cx.tcx(),
430                                                  &trait_data.principal);
431
432                 from_def_id_and_substs(self,
433                                        cx,
434                                        principal.def_id,
435                                        principal.substs,
436                                        &mut unique_type_id);
437             },
438             ty::ty_bare_fn(_, &ty::BareFnTy{ unsafety, abi, ref sig } ) => {
439                 if unsafety == ast::Unsafety::Unsafe {
440                     unique_type_id.push_str("unsafe ");
441                 }
442
443                 unique_type_id.push_str(abi.name());
444
445                 unique_type_id.push_str(" fn(");
446
447                 let sig = ty::erase_late_bound_regions(cx.tcx(), sig);
448
449                 for &parameter_type in sig.inputs.iter() {
450                     let parameter_type_id =
451                         self.get_unique_type_id_of_type(cx, parameter_type);
452                     let parameter_type_id =
453                         self.get_unique_type_id_as_string(parameter_type_id);
454                     unique_type_id.push_str(&parameter_type_id[]);
455                     unique_type_id.push(',');
456                 }
457
458                 if sig.variadic {
459                     unique_type_id.push_str("...");
460                 }
461
462                 unique_type_id.push_str(")->");
463                 match sig.output {
464                     ty::FnConverging(ret_ty) => {
465                         let return_type_id = self.get_unique_type_id_of_type(cx, ret_ty);
466                         let return_type_id = self.get_unique_type_id_as_string(return_type_id);
467                         unique_type_id.push_str(&return_type_id[]);
468                     }
469                     ty::FnDiverging => {
470                         unique_type_id.push_str("!");
471                     }
472                 }
473             },
474             ty::ty_unboxed_closure(def_id, _, substs) => {
475                 let typer = NormalizingUnboxedClosureTyper::new(cx.tcx());
476                 let closure_ty = typer.unboxed_closure_type(def_id, substs);
477                 self.get_unique_type_id_of_closure_type(cx,
478                                                         closure_ty,
479                                                         &mut unique_type_id);
480             },
481             _ => {
482                 cx.sess().bug(&format!("get_unique_type_id_of_type() - unexpected type: {}, {:?}",
483                                       &ppaux::ty_to_string(cx.tcx(), type_)[],
484                                       type_.sty)[])
485             }
486         };
487
488         unique_type_id.push('}');
489
490         // Trim to size before storing permanently
491         unique_type_id.shrink_to_fit();
492
493         let key = self.unique_id_interner.intern(Rc::new(unique_type_id));
494         self.type_to_unique_id.insert(type_, UniqueTypeId(key));
495
496         return UniqueTypeId(key);
497
498         fn from_def_id_and_substs<'a, 'tcx>(type_map: &mut TypeMap<'tcx>,
499                                             cx: &CrateContext<'a, 'tcx>,
500                                             def_id: ast::DefId,
501                                             substs: &subst::Substs<'tcx>,
502                                             output: &mut String) {
503             // First, find out the 'real' def_id of the type. Items inlined from
504             // other crates have to be mapped back to their source.
505             let source_def_id = if def_id.krate == ast::LOCAL_CRATE {
506                 match cx.external_srcs().borrow().get(&def_id.node).cloned() {
507                     Some(source_def_id) => {
508                         // The given def_id identifies the inlined copy of a
509                         // type definition, let's take the source of the copy.
510                         source_def_id
511                     }
512                     None => def_id
513                 }
514             } else {
515                 def_id
516             };
517
518             // Get the crate hash as first part of the identifier.
519             let crate_hash = if source_def_id.krate == ast::LOCAL_CRATE {
520                 cx.link_meta().crate_hash.clone()
521             } else {
522                 cx.sess().cstore.get_crate_hash(source_def_id.krate)
523             };
524
525             output.push_str(crate_hash.as_str());
526             output.push_str("/");
527             output.push_str(&format!("{:x}", def_id.node)[]);
528
529             // Maybe check that there is no self type here.
530
531             let tps = substs.types.get_slice(subst::TypeSpace);
532             if tps.len() > 0 {
533                 output.push('<');
534
535                 for &type_parameter in tps.iter() {
536                     let param_type_id =
537                         type_map.get_unique_type_id_of_type(cx, type_parameter);
538                     let param_type_id =
539                         type_map.get_unique_type_id_as_string(param_type_id);
540                     output.push_str(&param_type_id[]);
541                     output.push(',');
542                 }
543
544                 output.push('>');
545             }
546         }
547     }
548
549     fn get_unique_type_id_of_closure_type<'a>(&mut self,
550                                               cx: &CrateContext<'a, 'tcx>,
551                                               closure_ty: ty::ClosureTy<'tcx>,
552                                               unique_type_id: &mut String) {
553         let ty::ClosureTy { unsafety,
554                             onceness,
555                             store,
556                             ref bounds,
557                             ref sig,
558                             abi: _ } = closure_ty;
559         if unsafety == ast::Unsafety::Unsafe {
560             unique_type_id.push_str("unsafe ");
561         }
562
563         if onceness == ast::Once {
564             unique_type_id.push_str("once ");
565         }
566
567         match store {
568             ty::UniqTraitStore => unique_type_id.push_str("~|"),
569             ty::RegionTraitStore(_, ast::MutMutable) => {
570                 unique_type_id.push_str("&mut|")
571             }
572             ty::RegionTraitStore(_, ast::MutImmutable) => {
573                 unique_type_id.push_str("&|")
574             }
575         };
576
577         let sig = ty::erase_late_bound_regions(cx.tcx(), sig);
578
579         for &parameter_type in sig.inputs.iter() {
580             let parameter_type_id =
581                 self.get_unique_type_id_of_type(cx, parameter_type);
582             let parameter_type_id =
583                 self.get_unique_type_id_as_string(parameter_type_id);
584             unique_type_id.push_str(&parameter_type_id[]);
585             unique_type_id.push(',');
586         }
587
588         if sig.variadic {
589             unique_type_id.push_str("...");
590         }
591
592         unique_type_id.push_str("|->");
593
594         match sig.output {
595             ty::FnConverging(ret_ty) => {
596                 let return_type_id = self.get_unique_type_id_of_type(cx, ret_ty);
597                 let return_type_id = self.get_unique_type_id_as_string(return_type_id);
598                 unique_type_id.push_str(&return_type_id[]);
599             }
600             ty::FnDiverging => {
601                 unique_type_id.push_str("!");
602             }
603         }
604
605         unique_type_id.push(':');
606
607         for bound in bounds.builtin_bounds.iter() {
608             match bound {
609                 ty::BoundSend => unique_type_id.push_str("Send"),
610                 ty::BoundSized => unique_type_id.push_str("Sized"),
611                 ty::BoundCopy => unique_type_id.push_str("Copy"),
612                 ty::BoundSync => unique_type_id.push_str("Sync"),
613             };
614             unique_type_id.push('+');
615         }
616     }
617
618     // Get the UniqueTypeId for an enum variant. Enum variants are not really
619     // types of their own, so they need special handling. We still need a
620     // UniqueTypeId for them, since to debuginfo they *are* real types.
621     fn get_unique_type_id_of_enum_variant<'a>(&mut self,
622                                               cx: &CrateContext<'a, 'tcx>,
623                                               enum_type: Ty<'tcx>,
624                                               variant_name: &str)
625                                               -> UniqueTypeId {
626         let enum_type_id = self.get_unique_type_id_of_type(cx, enum_type);
627         let enum_variant_type_id = format!("{}::{}",
628                                            &self.get_unique_type_id_as_string(enum_type_id)[],
629                                            variant_name);
630         let interner_key = self.unique_id_interner.intern(Rc::new(enum_variant_type_id));
631         UniqueTypeId(interner_key)
632     }
633 }
634
635 // Returns from the enclosing function if the type metadata with the given
636 // unique id can be found in the type map
637 macro_rules! return_if_metadata_created_in_meantime {
638     ($cx: expr, $unique_type_id: expr) => (
639         match debug_context($cx).type_map
640                                 .borrow()
641                                 .find_metadata_for_unique_id($unique_type_id) {
642             Some(metadata) => return MetadataCreationResult::new(metadata, true),
643             None => { /* proceed normally */ }
644         };
645     )
646 }
647
648
649 /// A context object for maintaining all state needed by the debuginfo module.
650 pub struct CrateDebugContext<'tcx> {
651     llcontext: ContextRef,
652     builder: DIBuilderRef,
653     current_debug_location: Cell<DebugLocation>,
654     created_files: RefCell<FnvHashMap<String, DIFile>>,
655     created_enum_disr_types: RefCell<DefIdMap<DIType>>,
656
657     type_map: RefCell<TypeMap<'tcx>>,
658     namespace_map: RefCell<FnvHashMap<Vec<ast::Name>, Rc<NamespaceTreeNode>>>,
659
660     // This collection is used to assert that composite types (structs, enums,
661     // ...) have their members only set once:
662     composite_types_completed: RefCell<FnvHashSet<DIType>>,
663 }
664
665 impl<'tcx> CrateDebugContext<'tcx> {
666     pub fn new(llmod: ModuleRef) -> CrateDebugContext<'tcx> {
667         debug!("CrateDebugContext::new");
668         let builder = unsafe { llvm::LLVMDIBuilderCreate(llmod) };
669         // DIBuilder inherits context from the module, so we'd better use the same one
670         let llcontext = unsafe { llvm::LLVMGetModuleContext(llmod) };
671         return CrateDebugContext {
672             llcontext: llcontext,
673             builder: builder,
674             current_debug_location: Cell::new(UnknownLocation),
675             created_files: RefCell::new(FnvHashMap::new()),
676             created_enum_disr_types: RefCell::new(DefIdMap::new()),
677             type_map: RefCell::new(TypeMap::new()),
678             namespace_map: RefCell::new(FnvHashMap::new()),
679             composite_types_completed: RefCell::new(FnvHashSet::new()),
680         };
681     }
682 }
683
684 pub enum FunctionDebugContext {
685     RegularContext(Box<FunctionDebugContextData>),
686     DebugInfoDisabled,
687     FunctionWithoutDebugInfo,
688 }
689
690 impl FunctionDebugContext {
691     fn get_ref<'a>(&'a self,
692                    cx: &CrateContext,
693                    span: Span)
694                    -> &'a FunctionDebugContextData {
695         match *self {
696             FunctionDebugContext::RegularContext(box ref data) => data,
697             FunctionDebugContext::DebugInfoDisabled => {
698                 cx.sess().span_bug(span,
699                                    FunctionDebugContext::debuginfo_disabled_message());
700             }
701             FunctionDebugContext::FunctionWithoutDebugInfo => {
702                 cx.sess().span_bug(span,
703                                    FunctionDebugContext::should_be_ignored_message());
704             }
705         }
706     }
707
708     fn debuginfo_disabled_message() -> &'static str {
709         "debuginfo: Error trying to access FunctionDebugContext although debug info is disabled!"
710     }
711
712     fn should_be_ignored_message() -> &'static str {
713         "debuginfo: Error trying to access FunctionDebugContext for function that should be \
714          ignored by debug info!"
715     }
716 }
717
718 struct FunctionDebugContextData {
719     scope_map: RefCell<NodeMap<DIScope>>,
720     fn_metadata: DISubprogram,
721     argument_counter: Cell<uint>,
722     source_locations_enabled: Cell<bool>,
723 }
724
725 enum VariableAccess<'a> {
726     // The llptr given is an alloca containing the variable's value
727     DirectVariable { alloca: ValueRef },
728     // The llptr given is an alloca containing the start of some pointer chain
729     // leading to the variable's content.
730     IndirectVariable { alloca: ValueRef, address_operations: &'a [ValueRef] }
731 }
732
733 enum VariableKind {
734     ArgumentVariable(uint /*index*/),
735     LocalVariable,
736     CapturedVariable,
737 }
738
739 /// Create any deferred debug metadata nodes
740 pub fn finalize(cx: &CrateContext) {
741     if cx.dbg_cx().is_none() {
742         return;
743     }
744
745     debug!("finalize");
746     let _ = compile_unit_metadata(cx);
747
748     if needs_gdb_debug_scripts_section(cx) {
749         // Add a .debug_gdb_scripts section to this compile-unit. This will
750         // cause GDB to try and load the gdb_load_rust_pretty_printers.py file,
751         // which activates the Rust pretty printers for binary this section is
752         // contained in.
753         get_or_insert_gdb_debug_scripts_section_global(cx);
754     }
755
756     unsafe {
757         llvm::LLVMDIBuilderFinalize(DIB(cx));
758         llvm::LLVMDIBuilderDispose(DIB(cx));
759         // Debuginfo generation in LLVM by default uses a higher
760         // version of dwarf than OS X currently understands. We can
761         // instruct LLVM to emit an older version of dwarf, however,
762         // for OS X to understand. For more info see #11352
763         // This can be overridden using --llvm-opts -dwarf-version,N.
764         if cx.sess().target.target.options.is_like_osx {
765             llvm::LLVMRustAddModuleFlag(cx.llmod(),
766                                         "Dwarf Version\0".as_ptr() as *const _,
767                                         2)
768         }
769
770         // Prevent bitcode readers from deleting the debug info.
771         let ptr = "Debug Info Version\0".as_ptr();
772         llvm::LLVMRustAddModuleFlag(cx.llmod(), ptr as *const _,
773                                     llvm::LLVMRustDebugMetadataVersion);
774     };
775 }
776
777 /// Creates debug information for the given global variable.
778 ///
779 /// Adds the created metadata nodes directly to the crate's IR.
780 pub fn create_global_var_metadata(cx: &CrateContext,
781                                   node_id: ast::NodeId,
782                                   global: ValueRef) {
783     if cx.dbg_cx().is_none() {
784         return;
785     }
786
787     // Don't create debuginfo for globals inlined from other crates. The other
788     // crate should already contain debuginfo for it. More importantly, the
789     // global might not even exist in un-inlined form anywhere which would lead
790     // to a linker errors.
791     if cx.external_srcs().borrow().contains_key(&node_id) {
792         return;
793     }
794
795     let var_item = cx.tcx().map.get(node_id);
796
797     let (ident, span) = match var_item {
798         ast_map::NodeItem(item) => {
799             match item.node {
800                 ast::ItemStatic(..) => (item.ident, item.span),
801                 ast::ItemConst(..) => (item.ident, item.span),
802                 _ => {
803                     cx.sess()
804                       .span_bug(item.span,
805                                 &format!("debuginfo::\
806                                          create_global_var_metadata() -
807                                          Captured var-id refers to \
808                                          unexpected ast_item variant: {:?}",
809                                         var_item)[])
810                 }
811             }
812         },
813         _ => cx.sess().bug(&format!("debuginfo::create_global_var_metadata() \
814                                     - Captured var-id refers to unexpected \
815                                     ast_map variant: {:?}",
816                                    var_item)[])
817     };
818
819     let (file_metadata, line_number) = if span != codemap::DUMMY_SP {
820         let loc = span_start(cx, span);
821         (file_metadata(cx, &loc.file.name[]), loc.line as c_uint)
822     } else {
823         (UNKNOWN_FILE_METADATA, UNKNOWN_LINE_NUMBER)
824     };
825
826     let is_local_to_unit = is_node_local_to_unit(cx, node_id);
827     let variable_type = ty::node_id_to_type(cx.tcx(), node_id);
828     let type_metadata = type_metadata(cx, variable_type, span);
829     let namespace_node = namespace_for_item(cx, ast_util::local_def(node_id));
830     let var_name = token::get_ident(ident).get().to_string();
831     let linkage_name =
832         namespace_node.mangled_name_of_contained_item(&var_name[]);
833     let var_scope = namespace_node.scope;
834
835     let var_name = CString::from_slice(var_name.as_bytes());
836     let linkage_name = CString::from_slice(linkage_name.as_bytes());
837     unsafe {
838         llvm::LLVMDIBuilderCreateStaticVariable(DIB(cx),
839                                                 var_scope,
840                                                 var_name.as_ptr(),
841                                                 linkage_name.as_ptr(),
842                                                 file_metadata,
843                                                 line_number,
844                                                 type_metadata,
845                                                 is_local_to_unit,
846                                                 global,
847                                                 ptr::null_mut());
848     }
849 }
850
851 /// Creates debug information for the given local variable.
852 ///
853 /// This function assumes that there's a datum for each pattern component of the
854 /// local in `bcx.fcx.lllocals`.
855 /// Adds the created metadata nodes directly to the crate's IR.
856 pub fn create_local_var_metadata(bcx: Block, local: &ast::Local) {
857     if bcx.unreachable.get() ||
858        fn_should_be_ignored(bcx.fcx) ||
859        bcx.sess().opts.debuginfo != FullDebugInfo  {
860         return;
861     }
862
863     let cx = bcx.ccx();
864     let def_map = &cx.tcx().def_map;
865     let locals = bcx.fcx.lllocals.borrow();
866
867     pat_util::pat_bindings(def_map, &*local.pat, |_, node_id, span, var_ident| {
868         let datum = match locals.get(&node_id) {
869             Some(datum) => datum,
870             None => {
871                 bcx.sess().span_bug(span,
872                     &format!("no entry in lllocals table for {}",
873                             node_id)[]);
874             }
875         };
876
877         if unsafe { llvm::LLVMIsAAllocaInst(datum.val) } == ptr::null_mut() {
878             cx.sess().span_bug(span, "debuginfo::create_local_var_metadata() - \
879                                       Referenced variable location is not an alloca!");
880         }
881
882         let scope_metadata = scope_metadata(bcx.fcx, node_id, span);
883
884         declare_local(bcx,
885                       var_ident.node,
886                       datum.ty,
887                       scope_metadata,
888                       DirectVariable { alloca: datum.val },
889                       LocalVariable,
890                       span);
891     })
892 }
893
894 /// Creates debug information for a variable captured in a closure.
895 ///
896 /// Adds the created metadata nodes directly to the crate's IR.
897 pub fn create_captured_var_metadata<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
898                                                 node_id: ast::NodeId,
899                                                 env_pointer: ValueRef,
900                                                 env_index: uint,
901                                                 captured_by_ref: bool,
902                                                 span: Span) {
903     if bcx.unreachable.get() ||
904        fn_should_be_ignored(bcx.fcx) ||
905        bcx.sess().opts.debuginfo != FullDebugInfo {
906         return;
907     }
908
909     let cx = bcx.ccx();
910
911     let ast_item = cx.tcx().map.find(node_id);
912
913     let variable_ident = match ast_item {
914         None => {
915             cx.sess().span_bug(span, "debuginfo::create_captured_var_metadata: node not found");
916         }
917         Some(ast_map::NodeLocal(pat)) | Some(ast_map::NodeArg(pat)) => {
918             match pat.node {
919                 ast::PatIdent(_, ref path1, _) => {
920                     path1.node
921                 }
922                 _ => {
923                     cx.sess()
924                       .span_bug(span,
925                                 &format!(
926                                 "debuginfo::create_captured_var_metadata() - \
927                                  Captured var-id refers to unexpected \
928                                  ast_map variant: {:?}",
929                                  ast_item)[]);
930                 }
931             }
932         }
933         _ => {
934             cx.sess()
935               .span_bug(span,
936                         &format!("debuginfo::create_captured_var_metadata() - \
937                                  Captured var-id refers to unexpected \
938                                  ast_map variant: {:?}",
939                                 ast_item)[]);
940         }
941     };
942
943     let variable_type = node_id_type(bcx, node_id);
944     let scope_metadata = bcx.fcx.debug_context.get_ref(cx, span).fn_metadata;
945
946     // env_pointer is the alloca containing the pointer to the environment,
947     // so it's type is **EnvironmentType. In order to find out the type of
948     // the environment we have to "dereference" two times.
949     let llvm_env_data_type = val_ty(env_pointer).element_type().element_type();
950     let byte_offset_of_var_in_env = machine::llelement_offset(cx,
951                                                               llvm_env_data_type,
952                                                               env_index);
953
954     let address_operations = unsafe {
955         [llvm::LLVMDIBuilderCreateOpDeref(Type::i64(cx).to_ref()),
956          llvm::LLVMDIBuilderCreateOpPlus(Type::i64(cx).to_ref()),
957          C_i64(cx, byte_offset_of_var_in_env as i64),
958          llvm::LLVMDIBuilderCreateOpDeref(Type::i64(cx).to_ref())]
959     };
960
961     let address_op_count = if captured_by_ref {
962         address_operations.len()
963     } else {
964         address_operations.len() - 1
965     };
966
967     let variable_access = IndirectVariable {
968         alloca: env_pointer,
969         address_operations: &address_operations[..address_op_count]
970     };
971
972     declare_local(bcx,
973                   variable_ident,
974                   variable_type,
975                   scope_metadata,
976                   variable_access,
977                   CapturedVariable,
978                   span);
979 }
980
981 /// Creates debug information for a local variable introduced in the head of a
982 /// match-statement arm.
983 ///
984 /// Adds the created metadata nodes directly to the crate's IR.
985 pub fn create_match_binding_metadata<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
986                                                  variable_ident: ast::Ident,
987                                                  binding: BindingInfo<'tcx>) {
988     if bcx.unreachable.get() ||
989        fn_should_be_ignored(bcx.fcx) ||
990        bcx.sess().opts.debuginfo != FullDebugInfo {
991         return;
992     }
993
994     let scope_metadata = scope_metadata(bcx.fcx, binding.id, binding.span);
995     let aops = unsafe {
996         [llvm::LLVMDIBuilderCreateOpDeref(bcx.ccx().int_type().to_ref())]
997     };
998     // Regardless of the actual type (`T`) we're always passed the stack slot (alloca)
999     // for the binding. For ByRef bindings that's a `T*` but for ByMove bindings we
1000     // actually have `T**`. So to get the actual variable we need to dereference once
1001     // more. For ByCopy we just use the stack slot we created for the binding.
1002     let var_access = match binding.trmode {
1003         TrByCopy(llbinding) => DirectVariable {
1004             alloca: llbinding
1005         },
1006         TrByMove => IndirectVariable {
1007             alloca: binding.llmatch,
1008             address_operations: &aops
1009         },
1010         TrByRef => DirectVariable {
1011             alloca: binding.llmatch
1012         }
1013     };
1014
1015     declare_local(bcx,
1016                   variable_ident,
1017                   binding.ty,
1018                   scope_metadata,
1019                   var_access,
1020                   LocalVariable,
1021                   binding.span);
1022 }
1023
1024 /// Creates debug information for the given function argument.
1025 ///
1026 /// This function assumes that there's a datum for each pattern component of the
1027 /// argument in `bcx.fcx.lllocals`.
1028 /// Adds the created metadata nodes directly to the crate's IR.
1029 pub fn create_argument_metadata(bcx: Block, arg: &ast::Arg) {
1030     if bcx.unreachable.get() ||
1031        fn_should_be_ignored(bcx.fcx) ||
1032        bcx.sess().opts.debuginfo != FullDebugInfo {
1033         return;
1034     }
1035
1036     let def_map = &bcx.tcx().def_map;
1037     let scope_metadata = bcx
1038                          .fcx
1039                          .debug_context
1040                          .get_ref(bcx.ccx(), arg.pat.span)
1041                          .fn_metadata;
1042     let locals = bcx.fcx.lllocals.borrow();
1043
1044     pat_util::pat_bindings(def_map, &*arg.pat, |_, node_id, span, var_ident| {
1045         let datum = match locals.get(&node_id) {
1046             Some(v) => v,
1047             None => {
1048                 bcx.sess().span_bug(span,
1049                     &format!("no entry in lllocals table for {}",
1050                             node_id)[]);
1051             }
1052         };
1053
1054         if unsafe { llvm::LLVMIsAAllocaInst(datum.val) } == ptr::null_mut() {
1055             bcx.sess().span_bug(span, "debuginfo::create_argument_metadata() - \
1056                                        Referenced variable location is not an alloca!");
1057         }
1058
1059         let argument_index = {
1060             let counter = &bcx
1061                           .fcx
1062                           .debug_context
1063                           .get_ref(bcx.ccx(), span)
1064                           .argument_counter;
1065             let argument_index = counter.get();
1066             counter.set(argument_index + 1);
1067             argument_index
1068         };
1069
1070         declare_local(bcx,
1071                       var_ident.node,
1072                       datum.ty,
1073                       scope_metadata,
1074                       DirectVariable { alloca: datum.val },
1075                       ArgumentVariable(argument_index),
1076                       span);
1077     })
1078 }
1079
1080 /// Creates debug information for the given for-loop variable.
1081 ///
1082 /// This function assumes that there's a datum for each pattern component of the
1083 /// loop variable in `bcx.fcx.lllocals`.
1084 /// Adds the created metadata nodes directly to the crate's IR.
1085 pub fn create_for_loop_var_metadata(bcx: Block, pat: &ast::Pat) {
1086     if bcx.unreachable.get() ||
1087        fn_should_be_ignored(bcx.fcx) ||
1088        bcx.sess().opts.debuginfo != FullDebugInfo {
1089         return;
1090     }
1091
1092     let def_map = &bcx.tcx().def_map;
1093     let locals = bcx.fcx.lllocals.borrow();
1094
1095     pat_util::pat_bindings(def_map, pat, |_, node_id, span, var_ident| {
1096         let datum = match locals.get(&node_id) {
1097             Some(datum) => datum,
1098             None => {
1099                 bcx.sess().span_bug(span,
1100                     format!("no entry in lllocals table for {}",
1101                             node_id).as_slice());
1102             }
1103         };
1104
1105         if unsafe { llvm::LLVMIsAAllocaInst(datum.val) } == ptr::null_mut() {
1106             bcx.sess().span_bug(span, "debuginfo::create_for_loop_var_metadata() - \
1107                                        Referenced variable location is not an alloca!");
1108         }
1109
1110         let scope_metadata = scope_metadata(bcx.fcx, node_id, span);
1111
1112         declare_local(bcx,
1113                       var_ident.node,
1114                       datum.ty,
1115                       scope_metadata,
1116                       DirectVariable { alloca: datum.val },
1117                       LocalVariable,
1118                       span);
1119     })
1120 }
1121
1122 pub fn get_cleanup_debug_loc_for_ast_node<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
1123                                                     node_id: ast::NodeId,
1124                                                     node_span: Span,
1125                                                     is_block: bool)
1126                                                  -> NodeInfo {
1127     // A debug location needs two things:
1128     // (1) A span (of which only the beginning will actually be used)
1129     // (2) An AST node-id which will be used to look up the lexical scope
1130     //     for the location in the functions scope-map
1131     //
1132     // This function will calculate the debug location for compiler-generated
1133     // cleanup calls that are executed when control-flow leaves the
1134     // scope identified by `node_id`.
1135     //
1136     // For everything but block-like things we can simply take id and span of
1137     // the given expression, meaning that from a debugger's view cleanup code is
1138     // executed at the same source location as the statement/expr itself.
1139     //
1140     // Blocks are a special case. Here we want the cleanup to be linked to the
1141     // closing curly brace of the block. The *scope* the cleanup is executed in
1142     // is up to debate: It could either still be *within* the block being
1143     // cleaned up, meaning that locals from the block are still visible in the
1144     // debugger.
1145     // Or it could be in the scope that the block is contained in, so any locals
1146     // from within the block are already considered out-of-scope and thus not
1147     // accessible in the debugger anymore.
1148     //
1149     // The current implementation opts for the second option: cleanup of a block
1150     // already happens in the parent scope of the block. The main reason for
1151     // this decision is that scoping becomes controlflow dependent when variable
1152     // shadowing is involved and it's impossible to decide statically which
1153     // scope is actually left when the cleanup code is executed.
1154     // In practice it shouldn't make much of a difference.
1155
1156     let mut cleanup_span = node_span;
1157
1158     if is_block {
1159         // Not all blocks actually have curly braces (e.g. simple closure
1160         // bodies), in which case we also just want to return the span of the
1161         // whole expression.
1162         let code_snippet = cx.sess().codemap().span_to_snippet(node_span);
1163         if let Some(code_snippet) = code_snippet {
1164             let bytes = code_snippet.as_bytes();
1165
1166             if bytes.len() > 0 && &bytes[bytes.len()-1..] == b"}" {
1167                 cleanup_span = Span {
1168                     lo: node_span.hi - codemap::BytePos(1),
1169                     hi: node_span.hi,
1170                     expn_id: node_span.expn_id
1171                 };
1172             }
1173         }
1174     }
1175
1176     NodeInfo {
1177         id: node_id,
1178         span: cleanup_span
1179     }
1180 }
1181
1182 /// Sets the current debug location at the beginning of the span.
1183 ///
1184 /// Maps to a call to llvm::LLVMSetCurrentDebugLocation(...). The node_id
1185 /// parameter is used to reliably find the correct visibility scope for the code
1186 /// position.
1187 pub fn set_source_location(fcx: &FunctionContext,
1188                            node_id: ast::NodeId,
1189                            span: Span) {
1190     match fcx.debug_context {
1191         FunctionDebugContext::DebugInfoDisabled => return,
1192         FunctionDebugContext::FunctionWithoutDebugInfo => {
1193             set_debug_location(fcx.ccx, UnknownLocation);
1194             return;
1195         }
1196         FunctionDebugContext::RegularContext(box ref function_debug_context) => {
1197             let cx = fcx.ccx;
1198
1199             debug!("set_source_location: {}", cx.sess().codemap().span_to_string(span));
1200
1201             if function_debug_context.source_locations_enabled.get() {
1202                 let loc = span_start(cx, span);
1203                 let scope = scope_metadata(fcx, node_id, span);
1204
1205                 set_debug_location(cx, DebugLocation::new(scope,
1206                                                           loc.line,
1207                                                           loc.col.to_uint()));
1208             } else {
1209                 set_debug_location(cx, UnknownLocation);
1210             }
1211         }
1212     }
1213 }
1214
1215 /// Clears the current debug location.
1216 ///
1217 /// Instructions generated hereafter won't be assigned a source location.
1218 pub fn clear_source_location(fcx: &FunctionContext) {
1219     if fn_should_be_ignored(fcx) {
1220         return;
1221     }
1222
1223     set_debug_location(fcx.ccx, UnknownLocation);
1224 }
1225
1226 /// Enables emitting source locations for the given functions.
1227 ///
1228 /// Since we don't want source locations to be emitted for the function prelude,
1229 /// they are disabled when beginning to translate a new function. This functions
1230 /// switches source location emitting on and must therefore be called before the
1231 /// first real statement/expression of the function is translated.
1232 pub fn start_emitting_source_locations(fcx: &FunctionContext) {
1233     match fcx.debug_context {
1234         FunctionDebugContext::RegularContext(box ref data) => {
1235             data.source_locations_enabled.set(true)
1236         },
1237         _ => { /* safe to ignore */ }
1238     }
1239 }
1240
1241 /// Creates the function-specific debug context.
1242 ///
1243 /// Returns the FunctionDebugContext for the function which holds state needed
1244 /// for debug info creation. The function may also return another variant of the
1245 /// FunctionDebugContext enum which indicates why no debuginfo should be created
1246 /// for the function.
1247 pub fn create_function_debug_context<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
1248                                                fn_ast_id: ast::NodeId,
1249                                                param_substs: &Substs<'tcx>,
1250                                                llfn: ValueRef) -> FunctionDebugContext {
1251     if cx.sess().opts.debuginfo == NoDebugInfo {
1252         return FunctionDebugContext::DebugInfoDisabled;
1253     }
1254
1255     // Clear the debug location so we don't assign them in the function prelude.
1256     // Do this here already, in case we do an early exit from this function.
1257     set_debug_location(cx, UnknownLocation);
1258
1259     if fn_ast_id == ast::DUMMY_NODE_ID {
1260         // This is a function not linked to any source location, so don't
1261         // generate debuginfo for it.
1262         return FunctionDebugContext::FunctionWithoutDebugInfo;
1263     }
1264
1265     let empty_generics = ast_util::empty_generics();
1266
1267     let fnitem = cx.tcx().map.get(fn_ast_id);
1268
1269     let (ident, fn_decl, generics, top_level_block, span, has_path) = match fnitem {
1270         ast_map::NodeItem(ref item) => {
1271             if contains_nodebug_attribute(item.attrs.as_slice()) {
1272                 return FunctionDebugContext::FunctionWithoutDebugInfo;
1273             }
1274
1275             match item.node {
1276                 ast::ItemFn(ref fn_decl, _, _, ref generics, ref top_level_block) => {
1277                     (item.ident, &**fn_decl, generics, &**top_level_block, item.span, true)
1278                 }
1279                 _ => {
1280                     cx.sess().span_bug(item.span,
1281                         "create_function_debug_context: item bound to non-function");
1282                 }
1283             }
1284         }
1285         ast_map::NodeImplItem(ref item) => {
1286             match **item {
1287                 ast::MethodImplItem(ref method) => {
1288                     if contains_nodebug_attribute(method.attrs.as_slice()) {
1289                         return FunctionDebugContext::FunctionWithoutDebugInfo;
1290                     }
1291
1292                     (method.pe_ident(),
1293                      method.pe_fn_decl(),
1294                      method.pe_generics(),
1295                      method.pe_body(),
1296                      method.span,
1297                      true)
1298                 }
1299                 ast::TypeImplItem(ref typedef) => {
1300                     cx.sess().span_bug(typedef.span,
1301                                        "create_function_debug_context() \
1302                                         called on associated type?!")
1303                 }
1304             }
1305         }
1306         ast_map::NodeExpr(ref expr) => {
1307             match expr.node {
1308                 ast::ExprClosure(_, _, ref fn_decl, ref top_level_block) => {
1309                     let name = format!("fn{}", token::gensym("fn"));
1310                     let name = token::str_to_ident(&name[]);
1311                     (name, &**fn_decl,
1312                         // This is not quite right. It should actually inherit
1313                         // the generics of the enclosing function.
1314                         &empty_generics,
1315                         &**top_level_block,
1316                         expr.span,
1317                         // Don't try to lookup the item path:
1318                         false)
1319                 }
1320                 _ => cx.sess().span_bug(expr.span,
1321                         "create_function_debug_context: expected an expr_fn_block here")
1322             }
1323         }
1324         ast_map::NodeTraitItem(ref trait_method) => {
1325             match **trait_method {
1326                 ast::ProvidedMethod(ref method) => {
1327                     if contains_nodebug_attribute(method.attrs.as_slice()) {
1328                         return FunctionDebugContext::FunctionWithoutDebugInfo;
1329                     }
1330
1331                     (method.pe_ident(),
1332                      method.pe_fn_decl(),
1333                      method.pe_generics(),
1334                      method.pe_body(),
1335                      method.span,
1336                      true)
1337                 }
1338                 _ => {
1339                     cx.sess()
1340                       .bug(&format!("create_function_debug_context: \
1341                                     unexpected sort of node: {:?}",
1342                                     fnitem)[])
1343                 }
1344             }
1345         }
1346         ast_map::NodeForeignItem(..) |
1347         ast_map::NodeVariant(..) |
1348         ast_map::NodeStructCtor(..) => {
1349             return FunctionDebugContext::FunctionWithoutDebugInfo;
1350         }
1351         _ => cx.sess().bug(&format!("create_function_debug_context: \
1352                                     unexpected sort of node: {:?}",
1353                                    fnitem)[])
1354     };
1355
1356     // This can be the case for functions inlined from another crate
1357     if span == codemap::DUMMY_SP {
1358         return FunctionDebugContext::FunctionWithoutDebugInfo;
1359     }
1360
1361     let loc = span_start(cx, span);
1362     let file_metadata = file_metadata(cx, &loc.file.name[]);
1363
1364     let function_type_metadata = unsafe {
1365         let fn_signature = get_function_signature(cx,
1366                                                   fn_ast_id,
1367                                                   &*fn_decl,
1368                                                   param_substs,
1369                                                   span);
1370         llvm::LLVMDIBuilderCreateSubroutineType(DIB(cx), file_metadata, fn_signature)
1371     };
1372
1373     // Get_template_parameters() will append a `<...>` clause to the function
1374     // name if necessary.
1375     let mut function_name = String::from_str(token::get_ident(ident).get());
1376     let template_parameters = get_template_parameters(cx,
1377                                                       generics,
1378                                                       param_substs,
1379                                                       file_metadata,
1380                                                       &mut function_name);
1381
1382     // There is no ast_map::Path for ast::ExprClosure-type functions. For now,
1383     // just don't put them into a namespace. In the future this could be improved
1384     // somehow (storing a path in the ast_map, or construct a path using the
1385     // enclosing function).
1386     let (linkage_name, containing_scope) = if has_path {
1387         let namespace_node = namespace_for_item(cx, ast_util::local_def(fn_ast_id));
1388         let linkage_name = namespace_node.mangled_name_of_contained_item(
1389             &function_name[]);
1390         let containing_scope = namespace_node.scope;
1391         (linkage_name, containing_scope)
1392     } else {
1393         (function_name.clone(), file_metadata)
1394     };
1395
1396     // Clang sets this parameter to the opening brace of the function's block,
1397     // so let's do this too.
1398     let scope_line = span_start(cx, top_level_block.span).line;
1399
1400     let is_local_to_unit = is_node_local_to_unit(cx, fn_ast_id);
1401
1402     let function_name = CString::from_slice(function_name.as_bytes());
1403     let linkage_name = CString::from_slice(linkage_name.as_bytes());
1404     let fn_metadata = unsafe {
1405         llvm::LLVMDIBuilderCreateFunction(
1406             DIB(cx),
1407             containing_scope,
1408             function_name.as_ptr(),
1409             linkage_name.as_ptr(),
1410             file_metadata,
1411             loc.line as c_uint,
1412             function_type_metadata,
1413             is_local_to_unit,
1414             true,
1415             scope_line as c_uint,
1416             FlagPrototyped as c_uint,
1417             cx.sess().opts.optimize != config::No,
1418             llfn,
1419             template_parameters,
1420             ptr::null_mut())
1421     };
1422
1423     let scope_map = create_scope_map(cx,
1424                                      fn_decl.inputs.as_slice(),
1425                                      &*top_level_block,
1426                                      fn_metadata,
1427                                      fn_ast_id);
1428
1429     // Initialize fn debug context (including scope map and namespace map)
1430     let fn_debug_context = box FunctionDebugContextData {
1431         scope_map: RefCell::new(scope_map),
1432         fn_metadata: fn_metadata,
1433         argument_counter: Cell::new(1),
1434         source_locations_enabled: Cell::new(false),
1435     };
1436
1437
1438
1439     return FunctionDebugContext::RegularContext(fn_debug_context);
1440
1441     fn get_function_signature<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
1442                                         fn_ast_id: ast::NodeId,
1443                                         fn_decl: &ast::FnDecl,
1444                                         param_substs: &Substs<'tcx>,
1445                                         error_reporting_span: Span) -> DIArray {
1446         if cx.sess().opts.debuginfo == LimitedDebugInfo {
1447             return create_DIArray(DIB(cx), &[]);
1448         }
1449
1450         let mut signature = Vec::with_capacity(fn_decl.inputs.len() + 1);
1451
1452         // Return type -- llvm::DIBuilder wants this at index 0
1453         assert_type_for_node_id(cx, fn_ast_id, error_reporting_span);
1454         let return_type = ty::node_id_to_type(cx.tcx(), fn_ast_id);
1455         let return_type = monomorphize::apply_param_substs(cx.tcx(),
1456                                                            param_substs,
1457                                                            &return_type);
1458         if ty::type_is_nil(return_type) {
1459             signature.push(ptr::null_mut())
1460         } else {
1461             signature.push(type_metadata(cx, return_type, codemap::DUMMY_SP));
1462         }
1463
1464         // Arguments types
1465         for arg in fn_decl.inputs.iter() {
1466             assert_type_for_node_id(cx, arg.pat.id, arg.pat.span);
1467             let arg_type = ty::node_id_to_type(cx.tcx(), arg.pat.id);
1468             let arg_type = monomorphize::apply_param_substs(cx.tcx(),
1469                                                             param_substs,
1470                                                             &arg_type);
1471             signature.push(type_metadata(cx, arg_type, codemap::DUMMY_SP));
1472         }
1473
1474         return create_DIArray(DIB(cx), &signature[]);
1475     }
1476
1477     fn get_template_parameters<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
1478                                          generics: &ast::Generics,
1479                                          param_substs: &Substs<'tcx>,
1480                                          file_metadata: DIFile,
1481                                          name_to_append_suffix_to: &mut String)
1482                                          -> DIArray
1483     {
1484         let self_type = param_substs.self_ty();
1485         let self_type = monomorphize::normalize_associated_type(cx.tcx(), &self_type);
1486
1487         // Only true for static default methods:
1488         let has_self_type = self_type.is_some();
1489
1490         if !generics.is_type_parameterized() && !has_self_type {
1491             return create_DIArray(DIB(cx), &[]);
1492         }
1493
1494         name_to_append_suffix_to.push('<');
1495
1496         // The list to be filled with template parameters:
1497         let mut template_params: Vec<DIDescriptor> =
1498             Vec::with_capacity(generics.ty_params.len() + 1);
1499
1500         // Handle self type
1501         if has_self_type {
1502             let actual_self_type = self_type.unwrap();
1503             // Add self type name to <...> clause of function name
1504             let actual_self_type_name = compute_debuginfo_type_name(
1505                 cx,
1506                 actual_self_type,
1507                 true);
1508
1509             name_to_append_suffix_to.push_str(&actual_self_type_name[]);
1510
1511             if generics.is_type_parameterized() {
1512                 name_to_append_suffix_to.push_str(",");
1513             }
1514
1515             // Only create type information if full debuginfo is enabled
1516             if cx.sess().opts.debuginfo == FullDebugInfo {
1517                 let actual_self_type_metadata = type_metadata(cx,
1518                                                               actual_self_type,
1519                                                               codemap::DUMMY_SP);
1520
1521                 let ident = special_idents::type_self;
1522
1523                 let ident = token::get_ident(ident);
1524                 let name = CString::from_slice(ident.get().as_bytes());
1525                 let param_metadata = unsafe {
1526                     llvm::LLVMDIBuilderCreateTemplateTypeParameter(
1527                         DIB(cx),
1528                         file_metadata,
1529                         name.as_ptr(),
1530                         actual_self_type_metadata,
1531                         ptr::null_mut(),
1532                         0,
1533                         0)
1534                 };
1535
1536                 template_params.push(param_metadata);
1537             }
1538         }
1539
1540         // Handle other generic parameters
1541         let actual_types = param_substs.types.get_slice(subst::FnSpace);
1542         for (index, &ast::TyParam{ ident, .. }) in generics.ty_params.iter().enumerate() {
1543             let actual_type = actual_types[index];
1544             // Add actual type name to <...> clause of function name
1545             let actual_type_name = compute_debuginfo_type_name(cx,
1546                                                                actual_type,
1547                                                                true);
1548             name_to_append_suffix_to.push_str(&actual_type_name[]);
1549
1550             if index != generics.ty_params.len() - 1 {
1551                 name_to_append_suffix_to.push_str(",");
1552             }
1553
1554             // Again, only create type information if full debuginfo is enabled
1555             if cx.sess().opts.debuginfo == FullDebugInfo {
1556                 let actual_type_metadata = type_metadata(cx, actual_type, codemap::DUMMY_SP);
1557                 let ident = token::get_ident(ident);
1558                 let name = CString::from_slice(ident.get().as_bytes());
1559                 let param_metadata = unsafe {
1560                     llvm::LLVMDIBuilderCreateTemplateTypeParameter(
1561                         DIB(cx),
1562                         file_metadata,
1563                         name.as_ptr(),
1564                         actual_type_metadata,
1565                         ptr::null_mut(),
1566                         0,
1567                         0)
1568                 };
1569                 template_params.push(param_metadata);
1570             }
1571         }
1572
1573         name_to_append_suffix_to.push('>');
1574
1575         return create_DIArray(DIB(cx), &template_params[]);
1576     }
1577 }
1578
1579 //=-----------------------------------------------------------------------------
1580 // Module-Internal debug info creation functions
1581 //=-----------------------------------------------------------------------------
1582
1583 fn is_node_local_to_unit(cx: &CrateContext, node_id: ast::NodeId) -> bool
1584 {
1585     // The is_local_to_unit flag indicates whether a function is local to the
1586     // current compilation unit (i.e. if it is *static* in the C-sense). The
1587     // *reachable* set should provide a good approximation of this, as it
1588     // contains everything that might leak out of the current crate (by being
1589     // externally visible or by being inlined into something externally visible).
1590     // It might better to use the `exported_items` set from `driver::CrateAnalysis`
1591     // in the future, but (atm) this set is not available in the translation pass.
1592     !cx.reachable().contains(&node_id)
1593 }
1594
1595 #[allow(non_snake_case)]
1596 fn create_DIArray(builder: DIBuilderRef, arr: &[DIDescriptor]) -> DIArray {
1597     return unsafe {
1598         llvm::LLVMDIBuilderGetOrCreateArray(builder, arr.as_ptr(), arr.len() as u32)
1599     };
1600 }
1601
1602 fn compile_unit_metadata(cx: &CrateContext) -> DIDescriptor {
1603     let work_dir = &cx.sess().working_dir;
1604     let compile_unit_name = match cx.sess().local_crate_source_file {
1605         None => fallback_path(cx),
1606         Some(ref abs_path) => {
1607             if abs_path.is_relative() {
1608                 cx.sess().warn("debuginfo: Invalid path to crate's local root source file!");
1609                 fallback_path(cx)
1610             } else {
1611                 match abs_path.path_relative_from(work_dir) {
1612                     Some(ref p) if p.is_relative() => {
1613                         // prepend "./" if necessary
1614                         let dotdot = b"..";
1615                         let prefix: &[u8] = &[dotdot[0], ::std::path::SEP_BYTE];
1616                         let mut path_bytes = p.as_vec().to_vec();
1617
1618                         if path_bytes.slice_to(2) != prefix &&
1619                            path_bytes.slice_to(2) != dotdot {
1620                             path_bytes.insert(0, prefix[0]);
1621                             path_bytes.insert(1, prefix[1]);
1622                         }
1623
1624                         CString::from_vec(path_bytes)
1625                     }
1626                     _ => fallback_path(cx)
1627                 }
1628             }
1629         }
1630     };
1631
1632     debug!("compile_unit_metadata: {:?}", compile_unit_name);
1633     let producer = format!("rustc version {}",
1634                            (option_env!("CFG_VERSION")).expect("CFG_VERSION"));
1635
1636     let compile_unit_name = compile_unit_name.as_ptr();
1637     let work_dir = CString::from_slice(work_dir.as_vec());
1638     let producer = CString::from_slice(producer.as_bytes());
1639     let flags = "\0";
1640     let split_name = "\0";
1641     return unsafe {
1642         llvm::LLVMDIBuilderCreateCompileUnit(
1643             debug_context(cx).builder,
1644             DW_LANG_RUST,
1645             compile_unit_name,
1646             work_dir.as_ptr(),
1647             producer.as_ptr(),
1648             cx.sess().opts.optimize != config::No,
1649             flags.as_ptr() as *const _,
1650             0,
1651             split_name.as_ptr() as *const _)
1652     };
1653
1654     fn fallback_path(cx: &CrateContext) -> CString {
1655         CString::from_slice(cx.link_meta().crate_name.as_bytes())
1656     }
1657 }
1658
1659 fn declare_local<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
1660                              variable_ident: ast::Ident,
1661                              variable_type: Ty<'tcx>,
1662                              scope_metadata: DIScope,
1663                              variable_access: VariableAccess,
1664                              variable_kind: VariableKind,
1665                              span: Span) {
1666     let cx: &CrateContext = bcx.ccx();
1667
1668     let filename = span_start(cx, span).file.name.clone();
1669     let file_metadata = file_metadata(cx, &filename[]);
1670
1671     let name = token::get_ident(variable_ident);
1672     let loc = span_start(cx, span);
1673     let type_metadata = type_metadata(cx, variable_type, span);
1674
1675     let (argument_index, dwarf_tag) = match variable_kind {
1676         ArgumentVariable(index) => (index as c_uint, DW_TAG_arg_variable),
1677         LocalVariable    |
1678         CapturedVariable => (0, DW_TAG_auto_variable)
1679     };
1680
1681     let name = CString::from_slice(name.get().as_bytes());
1682     let (var_alloca, var_metadata) = match variable_access {
1683         DirectVariable { alloca } => (
1684             alloca,
1685             unsafe {
1686                 llvm::LLVMDIBuilderCreateLocalVariable(
1687                     DIB(cx),
1688                     dwarf_tag,
1689                     scope_metadata,
1690                     name.as_ptr(),
1691                     file_metadata,
1692                     loc.line as c_uint,
1693                     type_metadata,
1694                     cx.sess().opts.optimize != config::No,
1695                     0,
1696                     argument_index)
1697             }
1698         ),
1699         IndirectVariable { alloca, address_operations } => (
1700             alloca,
1701             unsafe {
1702                 llvm::LLVMDIBuilderCreateComplexVariable(
1703                     DIB(cx),
1704                     dwarf_tag,
1705                     scope_metadata,
1706                     name.as_ptr(),
1707                     file_metadata,
1708                     loc.line as c_uint,
1709                     type_metadata,
1710                     address_operations.as_ptr(),
1711                     address_operations.len() as c_uint,
1712                     argument_index)
1713             }
1714         )
1715     };
1716
1717     set_debug_location(cx, DebugLocation::new(scope_metadata,
1718                                               loc.line,
1719                                               loc.col.to_uint()));
1720     unsafe {
1721         let instr = llvm::LLVMDIBuilderInsertDeclareAtEnd(
1722             DIB(cx),
1723             var_alloca,
1724             var_metadata,
1725             bcx.llbb);
1726
1727         llvm::LLVMSetInstDebugLocation(trans::build::B(bcx).llbuilder, instr);
1728     }
1729
1730     match variable_kind {
1731         ArgumentVariable(_) | CapturedVariable => {
1732             assert!(!bcx.fcx
1733                         .debug_context
1734                         .get_ref(cx, span)
1735                         .source_locations_enabled
1736                         .get());
1737             set_debug_location(cx, UnknownLocation);
1738         }
1739         _ => { /* nothing to do */ }
1740     }
1741 }
1742
1743 fn file_metadata(cx: &CrateContext, full_path: &str) -> DIFile {
1744     match debug_context(cx).created_files.borrow().get(full_path) {
1745         Some(file_metadata) => return *file_metadata,
1746         None => ()
1747     }
1748
1749     debug!("file_metadata: {}", full_path);
1750
1751     // FIXME (#9639): This needs to handle non-utf8 paths
1752     let work_dir = cx.sess().working_dir.as_str().unwrap();
1753     let file_name =
1754         if full_path.starts_with(work_dir) {
1755             &full_path[work_dir.len() + 1u..full_path.len()]
1756         } else {
1757             full_path
1758         };
1759
1760     let file_name = CString::from_slice(file_name.as_bytes());
1761     let work_dir = CString::from_slice(work_dir.as_bytes());
1762     let file_metadata = unsafe {
1763         llvm::LLVMDIBuilderCreateFile(DIB(cx), file_name.as_ptr(),
1764                                       work_dir.as_ptr())
1765     };
1766
1767     let mut created_files = debug_context(cx).created_files.borrow_mut();
1768     created_files.insert(full_path.to_string(), file_metadata);
1769     return file_metadata;
1770 }
1771
1772 /// Finds the scope metadata node for the given AST node.
1773 fn scope_metadata(fcx: &FunctionContext,
1774                   node_id: ast::NodeId,
1775                   error_reporting_span: Span)
1776                -> DIScope {
1777     let scope_map = &fcx.debug_context
1778                         .get_ref(fcx.ccx, error_reporting_span)
1779                         .scope_map;
1780     match scope_map.borrow().get(&node_id).cloned() {
1781         Some(scope_metadata) => scope_metadata,
1782         None => {
1783             let node = fcx.ccx.tcx().map.get(node_id);
1784
1785             fcx.ccx.sess().span_bug(error_reporting_span,
1786                 &format!("debuginfo: Could not find scope info for node {:?}",
1787                         node)[]);
1788         }
1789     }
1790 }
1791
1792 fn diverging_type_metadata(cx: &CrateContext) -> DIType {
1793     unsafe {
1794         llvm::LLVMDIBuilderCreateBasicType(
1795             DIB(cx),
1796             "!\0".as_ptr() as *const _,
1797             bytes_to_bits(0),
1798             bytes_to_bits(0),
1799             DW_ATE_unsigned)
1800     }
1801 }
1802
1803 fn basic_type_metadata<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
1804                                  t: Ty<'tcx>) -> DIType {
1805
1806     debug!("basic_type_metadata: {:?}", t);
1807
1808     let (name, encoding) = match t.sty {
1809         ty::ty_tup(ref elements) if elements.is_empty() =>
1810             ("()".to_string(), DW_ATE_unsigned),
1811         ty::ty_bool => ("bool".to_string(), DW_ATE_boolean),
1812         ty::ty_char => ("char".to_string(), DW_ATE_unsigned_char),
1813         ty::ty_int(int_ty) => match int_ty {
1814             ast::TyIs(_) => ("isize".to_string(), DW_ATE_signed),
1815             ast::TyI8 => ("i8".to_string(), DW_ATE_signed),
1816             ast::TyI16 => ("i16".to_string(), DW_ATE_signed),
1817             ast::TyI32 => ("i32".to_string(), DW_ATE_signed),
1818             ast::TyI64 => ("i64".to_string(), DW_ATE_signed)
1819         },
1820         ty::ty_uint(uint_ty) => match uint_ty {
1821             ast::TyUs(_) => ("usize".to_string(), DW_ATE_unsigned),
1822             ast::TyU8 => ("u8".to_string(), DW_ATE_unsigned),
1823             ast::TyU16 => ("u16".to_string(), DW_ATE_unsigned),
1824             ast::TyU32 => ("u32".to_string(), DW_ATE_unsigned),
1825             ast::TyU64 => ("u64".to_string(), DW_ATE_unsigned)
1826         },
1827         ty::ty_float(float_ty) => match float_ty {
1828             ast::TyF32 => ("f32".to_string(), DW_ATE_float),
1829             ast::TyF64 => ("f64".to_string(), DW_ATE_float),
1830         },
1831         _ => cx.sess().bug("debuginfo::basic_type_metadata - t is invalid type")
1832     };
1833
1834     let llvm_type = type_of::type_of(cx, t);
1835     let (size, align) = size_and_align_of(cx, llvm_type);
1836     let name = CString::from_slice(name.as_bytes());
1837     let ty_metadata = unsafe {
1838         llvm::LLVMDIBuilderCreateBasicType(
1839             DIB(cx),
1840             name.as_ptr(),
1841             bytes_to_bits(size),
1842             bytes_to_bits(align),
1843             encoding)
1844     };
1845
1846     return ty_metadata;
1847 }
1848
1849 fn pointer_type_metadata<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
1850                                    pointer_type: Ty<'tcx>,
1851                                    pointee_type_metadata: DIType)
1852                                    -> DIType {
1853     let pointer_llvm_type = type_of::type_of(cx, pointer_type);
1854     let (pointer_size, pointer_align) = size_and_align_of(cx, pointer_llvm_type);
1855     let name = compute_debuginfo_type_name(cx, pointer_type, false);
1856     let name = CString::from_slice(name.as_bytes());
1857     let ptr_metadata = unsafe {
1858         llvm::LLVMDIBuilderCreatePointerType(
1859             DIB(cx),
1860             pointee_type_metadata,
1861             bytes_to_bits(pointer_size),
1862             bytes_to_bits(pointer_align),
1863             name.as_ptr())
1864     };
1865     return ptr_metadata;
1866 }
1867
1868 //=-----------------------------------------------------------------------------
1869 // Common facilities for record-like types (structs, enums, tuples)
1870 //=-----------------------------------------------------------------------------
1871
1872 enum MemberOffset {
1873     FixedMemberOffset { bytes: uint },
1874     // For ComputedMemberOffset, the offset is read from the llvm type definition
1875     ComputedMemberOffset
1876 }
1877
1878 // Description of a type member, which can either be a regular field (as in
1879 // structs or tuples) or an enum variant
1880 struct MemberDescription {
1881     name: String,
1882     llvm_type: Type,
1883     type_metadata: DIType,
1884     offset: MemberOffset,
1885     flags: c_uint
1886 }
1887
1888 // A factory for MemberDescriptions. It produces a list of member descriptions
1889 // for some record-like type. MemberDescriptionFactories are used to defer the
1890 // creation of type member descriptions in order to break cycles arising from
1891 // recursive type definitions.
1892 enum MemberDescriptionFactory<'tcx> {
1893     StructMDF(StructMemberDescriptionFactory<'tcx>),
1894     TupleMDF(TupleMemberDescriptionFactory<'tcx>),
1895     EnumMDF(EnumMemberDescriptionFactory<'tcx>),
1896     VariantMDF(VariantMemberDescriptionFactory<'tcx>)
1897 }
1898
1899 impl<'tcx> MemberDescriptionFactory<'tcx> {
1900     fn create_member_descriptions<'a>(&self, cx: &CrateContext<'a, 'tcx>)
1901                                       -> Vec<MemberDescription> {
1902         match *self {
1903             StructMDF(ref this) => {
1904                 this.create_member_descriptions(cx)
1905             }
1906             TupleMDF(ref this) => {
1907                 this.create_member_descriptions(cx)
1908             }
1909             EnumMDF(ref this) => {
1910                 this.create_member_descriptions(cx)
1911             }
1912             VariantMDF(ref this) => {
1913                 this.create_member_descriptions(cx)
1914             }
1915         }
1916     }
1917 }
1918
1919 // A description of some recursive type. It can either be already finished (as
1920 // with FinalMetadata) or it is not yet finished, but contains all information
1921 // needed to generate the missing parts of the description. See the documentation
1922 // section on Recursive Types at the top of this file for more information.
1923 enum RecursiveTypeDescription<'tcx> {
1924     UnfinishedMetadata {
1925         unfinished_type: Ty<'tcx>,
1926         unique_type_id: UniqueTypeId,
1927         metadata_stub: DICompositeType,
1928         llvm_type: Type,
1929         member_description_factory: MemberDescriptionFactory<'tcx>,
1930     },
1931     FinalMetadata(DICompositeType)
1932 }
1933
1934 fn create_and_register_recursive_type_forward_declaration<'a, 'tcx>(
1935     cx: &CrateContext<'a, 'tcx>,
1936     unfinished_type: Ty<'tcx>,
1937     unique_type_id: UniqueTypeId,
1938     metadata_stub: DICompositeType,
1939     llvm_type: Type,
1940     member_description_factory: MemberDescriptionFactory<'tcx>)
1941  -> RecursiveTypeDescription<'tcx> {
1942
1943     // Insert the stub into the TypeMap in order to allow for recursive references
1944     let mut type_map = debug_context(cx).type_map.borrow_mut();
1945     type_map.register_unique_id_with_metadata(cx, unique_type_id, metadata_stub);
1946     type_map.register_type_with_metadata(cx, unfinished_type, metadata_stub);
1947
1948     UnfinishedMetadata {
1949         unfinished_type: unfinished_type,
1950         unique_type_id: unique_type_id,
1951         metadata_stub: metadata_stub,
1952         llvm_type: llvm_type,
1953         member_description_factory: member_description_factory,
1954     }
1955 }
1956
1957 impl<'tcx> RecursiveTypeDescription<'tcx> {
1958     // Finishes up the description of the type in question (mostly by providing
1959     // descriptions of the fields of the given type) and returns the final type metadata.
1960     fn finalize<'a>(&self, cx: &CrateContext<'a, 'tcx>) -> MetadataCreationResult {
1961         match *self {
1962             FinalMetadata(metadata) => MetadataCreationResult::new(metadata, false),
1963             UnfinishedMetadata {
1964                 unfinished_type,
1965                 unique_type_id,
1966                 metadata_stub,
1967                 llvm_type,
1968                 ref member_description_factory,
1969                 ..
1970             } => {
1971                 // Make sure that we have a forward declaration of the type in
1972                 // the TypeMap so that recursive references are possible. This
1973                 // will always be the case if the RecursiveTypeDescription has
1974                 // been properly created through the
1975                 // create_and_register_recursive_type_forward_declaration() function.
1976                 {
1977                     let type_map = debug_context(cx).type_map.borrow();
1978                     if type_map.find_metadata_for_unique_id(unique_type_id).is_none() ||
1979                        type_map.find_metadata_for_type(unfinished_type).is_none() {
1980                         cx.sess().bug(&format!("Forward declaration of potentially recursive type \
1981                                               '{}' was not found in TypeMap!",
1982                                               ppaux::ty_to_string(cx.tcx(), unfinished_type))
1983                                       []);
1984                     }
1985                 }
1986
1987                 // ... then create the member descriptions ...
1988                 let member_descriptions =
1989                     member_description_factory.create_member_descriptions(cx);
1990
1991                 // ... and attach them to the stub to complete it.
1992                 set_members_of_composite_type(cx,
1993                                               metadata_stub,
1994                                               llvm_type,
1995                                               &member_descriptions[]);
1996                 return MetadataCreationResult::new(metadata_stub, true);
1997             }
1998         }
1999     }
2000 }
2001
2002
2003 //=-----------------------------------------------------------------------------
2004 // Structs
2005 //=-----------------------------------------------------------------------------
2006
2007 // Creates MemberDescriptions for the fields of a struct
2008 struct StructMemberDescriptionFactory<'tcx> {
2009     fields: Vec<ty::field<'tcx>>,
2010     is_simd: bool,
2011     span: Span,
2012 }
2013
2014 impl<'tcx> StructMemberDescriptionFactory<'tcx> {
2015     fn create_member_descriptions<'a>(&self, cx: &CrateContext<'a, 'tcx>)
2016                                       -> Vec<MemberDescription> {
2017         if self.fields.len() == 0 {
2018             return Vec::new();
2019         }
2020
2021         let field_size = if self.is_simd {
2022             machine::llsize_of_alloc(cx, type_of::type_of(cx, self.fields[0].mt.ty)) as uint
2023         } else {
2024             0xdeadbeef
2025         };
2026
2027         self.fields.iter().enumerate().map(|(i, field)| {
2028             let name = if field.name == special_idents::unnamed_field.name {
2029                 "".to_string()
2030             } else {
2031                 token::get_name(field.name).get().to_string()
2032             };
2033
2034             let offset = if self.is_simd {
2035                 assert!(field_size != 0xdeadbeef);
2036                 FixedMemberOffset { bytes: i * field_size }
2037             } else {
2038                 ComputedMemberOffset
2039             };
2040
2041             MemberDescription {
2042                 name: name,
2043                 llvm_type: type_of::type_of(cx, field.mt.ty),
2044                 type_metadata: type_metadata(cx, field.mt.ty, self.span),
2045                 offset: offset,
2046                 flags: FLAGS_NONE,
2047             }
2048         }).collect()
2049     }
2050 }
2051
2052
2053 fn prepare_struct_metadata<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
2054                                      struct_type: Ty<'tcx>,
2055                                      def_id: ast::DefId,
2056                                      substs: &subst::Substs<'tcx>,
2057                                      unique_type_id: UniqueTypeId,
2058                                      span: Span)
2059                                      -> RecursiveTypeDescription<'tcx> {
2060     let struct_name = compute_debuginfo_type_name(cx, struct_type, false);
2061     let struct_llvm_type = type_of::type_of(cx, struct_type);
2062
2063     let (containing_scope, _) = get_namespace_and_span_for_item(cx, def_id);
2064
2065     let struct_metadata_stub = create_struct_stub(cx,
2066                                                   struct_llvm_type,
2067                                                   &struct_name[],
2068                                                   unique_type_id,
2069                                                   containing_scope);
2070
2071     let fields = ty::struct_fields(cx.tcx(), def_id, substs);
2072
2073     create_and_register_recursive_type_forward_declaration(
2074         cx,
2075         struct_type,
2076         unique_type_id,
2077         struct_metadata_stub,
2078         struct_llvm_type,
2079         StructMDF(StructMemberDescriptionFactory {
2080             fields: fields,
2081             is_simd: ty::type_is_simd(cx.tcx(), struct_type),
2082             span: span,
2083         })
2084     )
2085 }
2086
2087
2088 //=-----------------------------------------------------------------------------
2089 // Tuples
2090 //=-----------------------------------------------------------------------------
2091
2092 // Creates MemberDescriptions for the fields of a tuple
2093 struct TupleMemberDescriptionFactory<'tcx> {
2094     component_types: Vec<Ty<'tcx>>,
2095     span: Span,
2096 }
2097
2098 impl<'tcx> TupleMemberDescriptionFactory<'tcx> {
2099     fn create_member_descriptions<'a>(&self, cx: &CrateContext<'a, 'tcx>)
2100                                       -> Vec<MemberDescription> {
2101         self.component_types.iter().map(|&component_type| {
2102             MemberDescription {
2103                 name: "".to_string(),
2104                 llvm_type: type_of::type_of(cx, component_type),
2105                 type_metadata: type_metadata(cx, component_type, self.span),
2106                 offset: ComputedMemberOffset,
2107                 flags: FLAGS_NONE,
2108             }
2109         }).collect()
2110     }
2111 }
2112
2113 fn prepare_tuple_metadata<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
2114                                     tuple_type: Ty<'tcx>,
2115                                     component_types: &[Ty<'tcx>],
2116                                     unique_type_id: UniqueTypeId,
2117                                     span: Span)
2118                                     -> RecursiveTypeDescription<'tcx> {
2119     let tuple_name = compute_debuginfo_type_name(cx, tuple_type, false);
2120     let tuple_llvm_type = type_of::type_of(cx, tuple_type);
2121
2122     create_and_register_recursive_type_forward_declaration(
2123         cx,
2124         tuple_type,
2125         unique_type_id,
2126         create_struct_stub(cx,
2127                            tuple_llvm_type,
2128                            &tuple_name[],
2129                            unique_type_id,
2130                            UNKNOWN_SCOPE_METADATA),
2131         tuple_llvm_type,
2132         TupleMDF(TupleMemberDescriptionFactory {
2133             component_types: component_types.to_vec(),
2134             span: span,
2135         })
2136     )
2137 }
2138
2139
2140 //=-----------------------------------------------------------------------------
2141 // Enums
2142 //=-----------------------------------------------------------------------------
2143
2144 // Describes the members of an enum value: An enum is described as a union of
2145 // structs in DWARF. This MemberDescriptionFactory provides the description for
2146 // the members of this union; so for every variant of the given enum, this factory
2147 // will produce one MemberDescription (all with no name and a fixed offset of
2148 // zero bytes).
2149 struct EnumMemberDescriptionFactory<'tcx> {
2150     enum_type: Ty<'tcx>,
2151     type_rep: Rc<adt::Repr<'tcx>>,
2152     variants: Rc<Vec<Rc<ty::VariantInfo<'tcx>>>>,
2153     discriminant_type_metadata: Option<DIType>,
2154     containing_scope: DIScope,
2155     file_metadata: DIFile,
2156     span: Span,
2157 }
2158
2159 impl<'tcx> EnumMemberDescriptionFactory<'tcx> {
2160     fn create_member_descriptions<'a>(&self, cx: &CrateContext<'a, 'tcx>)
2161                                       -> Vec<MemberDescription> {
2162         match *self.type_rep {
2163             adt::General(_, ref struct_defs, _) => {
2164                 let discriminant_info = RegularDiscriminant(self.discriminant_type_metadata
2165                     .expect(""));
2166
2167                 struct_defs
2168                     .iter()
2169                     .enumerate()
2170                     .map(|(i, struct_def)| {
2171                         let (variant_type_metadata,
2172                              variant_llvm_type,
2173                              member_desc_factory) =
2174                             describe_enum_variant(cx,
2175                                                   self.enum_type,
2176                                                   struct_def,
2177                                                   &*(*self.variants)[i],
2178                                                   discriminant_info,
2179                                                   self.containing_scope,
2180                                                   self.span);
2181
2182                         let member_descriptions = member_desc_factory
2183                             .create_member_descriptions(cx);
2184
2185                         set_members_of_composite_type(cx,
2186                                                       variant_type_metadata,
2187                                                       variant_llvm_type,
2188                                                       &member_descriptions[]);
2189                         MemberDescription {
2190                             name: "".to_string(),
2191                             llvm_type: variant_llvm_type,
2192                             type_metadata: variant_type_metadata,
2193                             offset: FixedMemberOffset { bytes: 0 },
2194                             flags: FLAGS_NONE
2195                         }
2196                     }).collect()
2197             },
2198             adt::Univariant(ref struct_def, _) => {
2199                 assert!(self.variants.len() <= 1);
2200
2201                 if self.variants.len() == 0 {
2202                     vec![]
2203                 } else {
2204                     let (variant_type_metadata,
2205                          variant_llvm_type,
2206                          member_description_factory) =
2207                         describe_enum_variant(cx,
2208                                               self.enum_type,
2209                                               struct_def,
2210                                               &*(*self.variants)[0],
2211                                               NoDiscriminant,
2212                                               self.containing_scope,
2213                                               self.span);
2214
2215                     let member_descriptions =
2216                         member_description_factory.create_member_descriptions(cx);
2217
2218                     set_members_of_composite_type(cx,
2219                                                   variant_type_metadata,
2220                                                   variant_llvm_type,
2221                                                   &member_descriptions[]);
2222                     vec![
2223                         MemberDescription {
2224                             name: "".to_string(),
2225                             llvm_type: variant_llvm_type,
2226                             type_metadata: variant_type_metadata,
2227                             offset: FixedMemberOffset { bytes: 0 },
2228                             flags: FLAGS_NONE
2229                         }
2230                     ]
2231                 }
2232             }
2233             adt::RawNullablePointer { nndiscr: non_null_variant_index, nnty, .. } => {
2234                 // As far as debuginfo is concerned, the pointer this enum
2235                 // represents is still wrapped in a struct. This is to make the
2236                 // DWARF representation of enums uniform.
2237
2238                 // First create a description of the artificial wrapper struct:
2239                 let non_null_variant = &(*self.variants)[non_null_variant_index as uint];
2240                 let non_null_variant_name = token::get_name(non_null_variant.name);
2241
2242                 // The llvm type and metadata of the pointer
2243                 let non_null_llvm_type = type_of::type_of(cx, nnty);
2244                 let non_null_type_metadata = type_metadata(cx, nnty, self.span);
2245
2246                 // The type of the artificial struct wrapping the pointer
2247                 let artificial_struct_llvm_type = Type::struct_(cx,
2248                                                                 &[non_null_llvm_type],
2249                                                                 false);
2250
2251                 // For the metadata of the wrapper struct, we need to create a
2252                 // MemberDescription of the struct's single field.
2253                 let sole_struct_member_description = MemberDescription {
2254                     name: match non_null_variant.arg_names {
2255                         Some(ref names) => token::get_ident(names[0]).get().to_string(),
2256                         None => "".to_string()
2257                     },
2258                     llvm_type: non_null_llvm_type,
2259                     type_metadata: non_null_type_metadata,
2260                     offset: FixedMemberOffset { bytes: 0 },
2261                     flags: FLAGS_NONE
2262                 };
2263
2264                 let unique_type_id = debug_context(cx).type_map
2265                                                       .borrow_mut()
2266                                                       .get_unique_type_id_of_enum_variant(
2267                                                           cx,
2268                                                           self.enum_type,
2269                                                           non_null_variant_name.get());
2270
2271                 // Now we can create the metadata of the artificial struct
2272                 let artificial_struct_metadata =
2273                     composite_type_metadata(cx,
2274                                             artificial_struct_llvm_type,
2275                                             non_null_variant_name.get(),
2276                                             unique_type_id,
2277                                             &[sole_struct_member_description],
2278                                             self.containing_scope,
2279                                             self.file_metadata,
2280                                             codemap::DUMMY_SP);
2281
2282                 // Encode the information about the null variant in the union
2283                 // member's name.
2284                 let null_variant_index = (1 - non_null_variant_index) as uint;
2285                 let null_variant_name = token::get_name((*self.variants)[null_variant_index].name);
2286                 let union_member_name = format!("RUST$ENCODED$ENUM${}${}",
2287                                                 0u,
2288                                                 null_variant_name);
2289
2290                 // Finally create the (singleton) list of descriptions of union
2291                 // members.
2292                 vec![
2293                     MemberDescription {
2294                         name: union_member_name,
2295                         llvm_type: artificial_struct_llvm_type,
2296                         type_metadata: artificial_struct_metadata,
2297                         offset: FixedMemberOffset { bytes: 0 },
2298                         flags: FLAGS_NONE
2299                     }
2300                 ]
2301             },
2302             adt::StructWrappedNullablePointer { nonnull: ref struct_def,
2303                                                 nndiscr,
2304                                                 ref discrfield, ..} => {
2305                 // Create a description of the non-null variant
2306                 let (variant_type_metadata, variant_llvm_type, member_description_factory) =
2307                     describe_enum_variant(cx,
2308                                           self.enum_type,
2309                                           struct_def,
2310                                           &*(*self.variants)[nndiscr as uint],
2311                                           OptimizedDiscriminant,
2312                                           self.containing_scope,
2313                                           self.span);
2314
2315                 let variant_member_descriptions =
2316                     member_description_factory.create_member_descriptions(cx);
2317
2318                 set_members_of_composite_type(cx,
2319                                               variant_type_metadata,
2320                                               variant_llvm_type,
2321                                               &variant_member_descriptions[]);
2322
2323                 // Encode the information about the null variant in the union
2324                 // member's name.
2325                 let null_variant_index = (1 - nndiscr) as uint;
2326                 let null_variant_name = token::get_name((*self.variants)[null_variant_index].name);
2327                 let discrfield = discrfield.iter()
2328                                            .skip(1)
2329                                            .map(|x| x.to_string())
2330                                            .collect::<Vec<_>>().connect("$");
2331                 let union_member_name = format!("RUST$ENCODED$ENUM${}${}",
2332                                                 discrfield,
2333                                                 null_variant_name);
2334
2335                 // Create the (singleton) list of descriptions of union members.
2336                 vec![
2337                     MemberDescription {
2338                         name: union_member_name,
2339                         llvm_type: variant_llvm_type,
2340                         type_metadata: variant_type_metadata,
2341                         offset: FixedMemberOffset { bytes: 0 },
2342                         flags: FLAGS_NONE
2343                     }
2344                 ]
2345             },
2346             adt::CEnum(..) => cx.sess().span_bug(self.span, "This should be unreachable.")
2347         }
2348     }
2349 }
2350
2351 // Creates MemberDescriptions for the fields of a single enum variant.
2352 struct VariantMemberDescriptionFactory<'tcx> {
2353     args: Vec<(String, Ty<'tcx>)>,
2354     discriminant_type_metadata: Option<DIType>,
2355     span: Span,
2356 }
2357
2358 impl<'tcx> VariantMemberDescriptionFactory<'tcx> {
2359     fn create_member_descriptions<'a>(&self, cx: &CrateContext<'a, 'tcx>)
2360                                       -> Vec<MemberDescription> {
2361         self.args.iter().enumerate().map(|(i, &(ref name, ty))| {
2362             MemberDescription {
2363                 name: name.to_string(),
2364                 llvm_type: type_of::type_of(cx, ty),
2365                 type_metadata: match self.discriminant_type_metadata {
2366                     Some(metadata) if i == 0 => metadata,
2367                     _ => type_metadata(cx, ty, self.span)
2368                 },
2369                 offset: ComputedMemberOffset,
2370                 flags: FLAGS_NONE
2371             }
2372         }).collect()
2373     }
2374 }
2375
2376 #[derive(Copy)]
2377 enum EnumDiscriminantInfo {
2378     RegularDiscriminant(DIType),
2379     OptimizedDiscriminant,
2380     NoDiscriminant
2381 }
2382
2383 // Returns a tuple of (1) type_metadata_stub of the variant, (2) the llvm_type
2384 // of the variant, and (3) a MemberDescriptionFactory for producing the
2385 // descriptions of the fields of the variant. This is a rudimentary version of a
2386 // full RecursiveTypeDescription.
2387 fn describe_enum_variant<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
2388                                    enum_type: Ty<'tcx>,
2389                                    struct_def: &adt::Struct<'tcx>,
2390                                    variant_info: &ty::VariantInfo<'tcx>,
2391                                    discriminant_info: EnumDiscriminantInfo,
2392                                    containing_scope: DIScope,
2393                                    span: Span)
2394                                    -> (DICompositeType, Type, MemberDescriptionFactory<'tcx>) {
2395     let variant_llvm_type =
2396         Type::struct_(cx, &struct_def.fields
2397                                     .iter()
2398                                     .map(|&t| type_of::type_of(cx, t))
2399                                     .collect::<Vec<_>>()
2400                                     [],
2401                       struct_def.packed);
2402     // Could do some consistency checks here: size, align, field count, discr type
2403
2404     let variant_name = token::get_name(variant_info.name);
2405     let variant_name = variant_name.get();
2406     let unique_type_id = debug_context(cx).type_map
2407                                           .borrow_mut()
2408                                           .get_unique_type_id_of_enum_variant(
2409                                               cx,
2410                                               enum_type,
2411                                               variant_name);
2412
2413     let metadata_stub = create_struct_stub(cx,
2414                                            variant_llvm_type,
2415                                            variant_name,
2416                                            unique_type_id,
2417                                            containing_scope);
2418
2419     // Get the argument names from the enum variant info
2420     let mut arg_names: Vec<_> = match variant_info.arg_names {
2421         Some(ref names) => {
2422             names.iter()
2423                  .map(|ident| {
2424                      token::get_ident(*ident).get().to_string()
2425                  }).collect()
2426         }
2427         None => variant_info.args.iter().map(|_| "".to_string()).collect()
2428     };
2429
2430     // If this is not a univariant enum, there is also the discriminant field.
2431     match discriminant_info {
2432         RegularDiscriminant(_) => arg_names.insert(0, "RUST$ENUM$DISR".to_string()),
2433         _ => { /* do nothing */ }
2434     };
2435
2436     // Build an array of (field name, field type) pairs to be captured in the factory closure.
2437     let args: Vec<(String, Ty)> = arg_names.iter()
2438         .zip(struct_def.fields.iter())
2439         .map(|(s, &t)| (s.to_string(), t))
2440         .collect();
2441
2442     let member_description_factory =
2443         VariantMDF(VariantMemberDescriptionFactory {
2444             args: args,
2445             discriminant_type_metadata: match discriminant_info {
2446                 RegularDiscriminant(discriminant_type_metadata) => {
2447                     Some(discriminant_type_metadata)
2448                 }
2449                 _ => None
2450             },
2451             span: span,
2452         });
2453
2454     (metadata_stub, variant_llvm_type, member_description_factory)
2455 }
2456
2457 fn prepare_enum_metadata<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
2458                                    enum_type: Ty<'tcx>,
2459                                    enum_def_id: ast::DefId,
2460                                    unique_type_id: UniqueTypeId,
2461                                    span: Span)
2462                                    -> RecursiveTypeDescription<'tcx> {
2463     let enum_name = compute_debuginfo_type_name(cx, enum_type, false);
2464
2465     let (containing_scope, definition_span) = get_namespace_and_span_for_item(cx, enum_def_id);
2466     let loc = span_start(cx, definition_span);
2467     let file_metadata = file_metadata(cx, &loc.file.name[]);
2468
2469     let variants = ty::enum_variants(cx.tcx(), enum_def_id);
2470
2471     let enumerators_metadata: Vec<DIDescriptor> = variants
2472         .iter()
2473         .map(|v| {
2474             let token = token::get_name(v.name);
2475             let name = CString::from_slice(token.get().as_bytes());
2476             unsafe {
2477                 llvm::LLVMDIBuilderCreateEnumerator(
2478                     DIB(cx),
2479                     name.as_ptr(),
2480                     v.disr_val as u64)
2481             }
2482         })
2483         .collect();
2484
2485     let discriminant_type_metadata = |&: inttype| {
2486         // We can reuse the type of the discriminant for all monomorphized
2487         // instances of an enum because it doesn't depend on any type parameters.
2488         // The def_id, uniquely identifying the enum's polytype acts as key in
2489         // this cache.
2490         let cached_discriminant_type_metadata = debug_context(cx).created_enum_disr_types
2491                                                                  .borrow()
2492                                                                  .get(&enum_def_id).cloned();
2493         match cached_discriminant_type_metadata {
2494             Some(discriminant_type_metadata) => discriminant_type_metadata,
2495             None => {
2496                 let discriminant_llvm_type = adt::ll_inttype(cx, inttype);
2497                 let (discriminant_size, discriminant_align) =
2498                     size_and_align_of(cx, discriminant_llvm_type);
2499                 let discriminant_base_type_metadata =
2500                     type_metadata(cx,
2501                                   adt::ty_of_inttype(cx.tcx(), inttype),
2502                                   codemap::DUMMY_SP);
2503                 let discriminant_name = get_enum_discriminant_name(cx, enum_def_id);
2504
2505                 let name = CString::from_slice(discriminant_name.get().as_bytes());
2506                 let discriminant_type_metadata = unsafe {
2507                     llvm::LLVMDIBuilderCreateEnumerationType(
2508                         DIB(cx),
2509                         containing_scope,
2510                         name.as_ptr(),
2511                         UNKNOWN_FILE_METADATA,
2512                         UNKNOWN_LINE_NUMBER,
2513                         bytes_to_bits(discriminant_size),
2514                         bytes_to_bits(discriminant_align),
2515                         create_DIArray(DIB(cx), enumerators_metadata.as_slice()),
2516                         discriminant_base_type_metadata)
2517                 };
2518
2519                 debug_context(cx).created_enum_disr_types
2520                                  .borrow_mut()
2521                                  .insert(enum_def_id, discriminant_type_metadata);
2522
2523                 discriminant_type_metadata
2524             }
2525         }
2526     };
2527
2528     let type_rep = adt::represent_type(cx, enum_type);
2529
2530     let discriminant_type_metadata = match *type_rep {
2531         adt::CEnum(inttype, _, _) => {
2532             return FinalMetadata(discriminant_type_metadata(inttype))
2533         },
2534         adt::RawNullablePointer { .. }           |
2535         adt::StructWrappedNullablePointer { .. } |
2536         adt::Univariant(..)                      => None,
2537         adt::General(inttype, _, _) => Some(discriminant_type_metadata(inttype)),
2538     };
2539
2540     let enum_llvm_type = type_of::type_of(cx, enum_type);
2541     let (enum_type_size, enum_type_align) = size_and_align_of(cx, enum_llvm_type);
2542
2543     let unique_type_id_str = debug_context(cx)
2544                              .type_map
2545                              .borrow()
2546                              .get_unique_type_id_as_string(unique_type_id);
2547
2548     let enum_name = CString::from_slice(enum_name.as_bytes());
2549     let unique_type_id_str = CString::from_slice(unique_type_id_str.as_bytes());
2550     let enum_metadata = unsafe {
2551         llvm::LLVMDIBuilderCreateUnionType(
2552         DIB(cx),
2553         containing_scope,
2554         enum_name.as_ptr(),
2555         UNKNOWN_FILE_METADATA,
2556         UNKNOWN_LINE_NUMBER,
2557         bytes_to_bits(enum_type_size),
2558         bytes_to_bits(enum_type_align),
2559         0, // Flags
2560         ptr::null_mut(),
2561         0, // RuntimeLang
2562         unique_type_id_str.as_ptr())
2563     };
2564
2565     return create_and_register_recursive_type_forward_declaration(
2566         cx,
2567         enum_type,
2568         unique_type_id,
2569         enum_metadata,
2570         enum_llvm_type,
2571         EnumMDF(EnumMemberDescriptionFactory {
2572             enum_type: enum_type,
2573             type_rep: type_rep.clone(),
2574             variants: variants,
2575             discriminant_type_metadata: discriminant_type_metadata,
2576             containing_scope: containing_scope,
2577             file_metadata: file_metadata,
2578             span: span,
2579         }),
2580     );
2581
2582     fn get_enum_discriminant_name(cx: &CrateContext,
2583                                   def_id: ast::DefId)
2584                                   -> token::InternedString {
2585         let name = if def_id.krate == ast::LOCAL_CRATE {
2586             cx.tcx().map.get_path_elem(def_id.node).name()
2587         } else {
2588             csearch::get_item_path(cx.tcx(), def_id).last().unwrap().name()
2589         };
2590
2591         token::get_name(name)
2592     }
2593 }
2594
2595 /// Creates debug information for a composite type, that is, anything that
2596 /// results in a LLVM struct.
2597 ///
2598 /// Examples of Rust types to use this are: structs, tuples, boxes, vecs, and enums.
2599 fn composite_type_metadata(cx: &CrateContext,
2600                            composite_llvm_type: Type,
2601                            composite_type_name: &str,
2602                            composite_type_unique_id: UniqueTypeId,
2603                            member_descriptions: &[MemberDescription],
2604                            containing_scope: DIScope,
2605
2606                            // Ignore source location information as long as it
2607                            // can't be reconstructed for non-local crates.
2608                            _file_metadata: DIFile,
2609                            _definition_span: Span)
2610                         -> DICompositeType {
2611     // Create the (empty) struct metadata node ...
2612     let composite_type_metadata = create_struct_stub(cx,
2613                                                      composite_llvm_type,
2614                                                      composite_type_name,
2615                                                      composite_type_unique_id,
2616                                                      containing_scope);
2617     // ... and immediately create and add the member descriptions.
2618     set_members_of_composite_type(cx,
2619                                   composite_type_metadata,
2620                                   composite_llvm_type,
2621                                   member_descriptions);
2622
2623     return composite_type_metadata;
2624 }
2625
2626 fn set_members_of_composite_type(cx: &CrateContext,
2627                                  composite_type_metadata: DICompositeType,
2628                                  composite_llvm_type: Type,
2629                                  member_descriptions: &[MemberDescription]) {
2630     // In some rare cases LLVM metadata uniquing would lead to an existing type
2631     // description being used instead of a new one created in create_struct_stub.
2632     // This would cause a hard to trace assertion in DICompositeType::SetTypeArray().
2633     // The following check makes sure that we get a better error message if this
2634     // should happen again due to some regression.
2635     {
2636         let mut composite_types_completed =
2637             debug_context(cx).composite_types_completed.borrow_mut();
2638         if composite_types_completed.contains(&composite_type_metadata) {
2639             let (llvm_version_major, llvm_version_minor) = unsafe {
2640                 (llvm::LLVMVersionMajor(), llvm::LLVMVersionMinor())
2641             };
2642
2643             let actual_llvm_version = llvm_version_major * 1000000 + llvm_version_minor * 1000;
2644             let min_supported_llvm_version = 3 * 1000000 + 4 * 1000;
2645
2646             if actual_llvm_version < min_supported_llvm_version {
2647                 cx.sess().warn(&format!("This version of rustc was built with LLVM \
2648                                         {}.{}. Rustc just ran into a known \
2649                                         debuginfo corruption problem thatoften \
2650                                         occurs with LLVM versions below 3.4. \
2651                                         Please use a rustc built with anewer \
2652                                         version of LLVM.",
2653                                        llvm_version_major,
2654                                        llvm_version_minor)[]);
2655             } else {
2656                 cx.sess().bug("debuginfo::set_members_of_composite_type() - \
2657                                Already completed forward declaration re-encountered.");
2658             }
2659         } else {
2660             composite_types_completed.insert(composite_type_metadata);
2661         }
2662     }
2663
2664     let member_metadata: Vec<DIDescriptor> = member_descriptions
2665         .iter()
2666         .enumerate()
2667         .map(|(i, member_description)| {
2668             let (member_size, member_align) = size_and_align_of(cx, member_description.llvm_type);
2669             let member_offset = match member_description.offset {
2670                 FixedMemberOffset { bytes } => bytes as u64,
2671                 ComputedMemberOffset => machine::llelement_offset(cx, composite_llvm_type, i)
2672             };
2673
2674             let member_name = CString::from_slice(member_description.name.as_bytes());
2675             unsafe {
2676                 llvm::LLVMDIBuilderCreateMemberType(
2677                     DIB(cx),
2678                     composite_type_metadata,
2679                     member_name.as_ptr(),
2680                     UNKNOWN_FILE_METADATA,
2681                     UNKNOWN_LINE_NUMBER,
2682                     bytes_to_bits(member_size),
2683                     bytes_to_bits(member_align),
2684                     bytes_to_bits(member_offset),
2685                     member_description.flags,
2686                     member_description.type_metadata)
2687             }
2688         })
2689         .collect();
2690
2691     unsafe {
2692         let type_array = create_DIArray(DIB(cx), &member_metadata[]);
2693         llvm::LLVMDICompositeTypeSetTypeArray(composite_type_metadata, type_array);
2694     }
2695 }
2696
2697 // A convenience wrapper around LLVMDIBuilderCreateStructType(). Does not do any
2698 // caching, does not add any fields to the struct. This can be done later with
2699 // set_members_of_composite_type().
2700 fn create_struct_stub(cx: &CrateContext,
2701                       struct_llvm_type: Type,
2702                       struct_type_name: &str,
2703                       unique_type_id: UniqueTypeId,
2704                       containing_scope: DIScope)
2705                    -> DICompositeType {
2706     let (struct_size, struct_align) = size_and_align_of(cx, struct_llvm_type);
2707
2708     let unique_type_id_str = debug_context(cx).type_map
2709                                               .borrow()
2710                                               .get_unique_type_id_as_string(unique_type_id);
2711     let name = CString::from_slice(struct_type_name.as_bytes());
2712     let unique_type_id = CString::from_slice(unique_type_id_str.as_bytes());
2713     let metadata_stub = unsafe {
2714         // LLVMDIBuilderCreateStructType() wants an empty array. A null
2715         // pointer will lead to hard to trace and debug LLVM assertions
2716         // later on in llvm/lib/IR/Value.cpp.
2717         let empty_array = create_DIArray(DIB(cx), &[]);
2718
2719         llvm::LLVMDIBuilderCreateStructType(
2720             DIB(cx),
2721             containing_scope,
2722             name.as_ptr(),
2723             UNKNOWN_FILE_METADATA,
2724             UNKNOWN_LINE_NUMBER,
2725             bytes_to_bits(struct_size),
2726             bytes_to_bits(struct_align),
2727             0,
2728             ptr::null_mut(),
2729             empty_array,
2730             0,
2731             ptr::null_mut(),
2732             unique_type_id.as_ptr())
2733     };
2734
2735     return metadata_stub;
2736 }
2737
2738 fn fixed_vec_metadata<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
2739                                 unique_type_id: UniqueTypeId,
2740                                 element_type: Ty<'tcx>,
2741                                 len: uint,
2742                                 span: Span)
2743                                 -> MetadataCreationResult {
2744     let element_type_metadata = type_metadata(cx, element_type, span);
2745
2746     return_if_metadata_created_in_meantime!(cx, unique_type_id);
2747
2748     let element_llvm_type = type_of::type_of(cx, element_type);
2749     let (element_type_size, element_type_align) = size_and_align_of(cx, element_llvm_type);
2750
2751     let subrange = unsafe {
2752         llvm::LLVMDIBuilderGetOrCreateSubrange(
2753             DIB(cx),
2754             0,
2755             len as i64)
2756     };
2757
2758     let subscripts = create_DIArray(DIB(cx), &[subrange]);
2759     let metadata = unsafe {
2760         llvm::LLVMDIBuilderCreateArrayType(
2761             DIB(cx),
2762             bytes_to_bits(element_type_size * (len as u64)),
2763             bytes_to_bits(element_type_align),
2764             element_type_metadata,
2765             subscripts)
2766     };
2767
2768     return MetadataCreationResult::new(metadata, false);
2769 }
2770
2771 fn vec_slice_metadata<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
2772                                 vec_type: Ty<'tcx>,
2773                                 element_type: Ty<'tcx>,
2774                                 unique_type_id: UniqueTypeId,
2775                                 span: Span)
2776                                 -> MetadataCreationResult {
2777     let data_ptr_type = ty::mk_ptr(cx.tcx(), ty::mt {
2778         ty: element_type,
2779         mutbl: ast::MutImmutable
2780     });
2781
2782     let element_type_metadata = type_metadata(cx, data_ptr_type, span);
2783
2784     return_if_metadata_created_in_meantime!(cx, unique_type_id);
2785
2786     let slice_llvm_type = type_of::type_of(cx, vec_type);
2787     let slice_type_name = compute_debuginfo_type_name(cx, vec_type, true);
2788
2789     let member_llvm_types = slice_llvm_type.field_types();
2790     assert!(slice_layout_is_correct(cx,
2791                                     &member_llvm_types[],
2792                                     element_type));
2793     let member_descriptions = [
2794         MemberDescription {
2795             name: "data_ptr".to_string(),
2796             llvm_type: member_llvm_types[0],
2797             type_metadata: element_type_metadata,
2798             offset: ComputedMemberOffset,
2799             flags: FLAGS_NONE
2800         },
2801         MemberDescription {
2802             name: "length".to_string(),
2803             llvm_type: member_llvm_types[1],
2804             type_metadata: type_metadata(cx, cx.tcx().types.uint, span),
2805             offset: ComputedMemberOffset,
2806             flags: FLAGS_NONE
2807         },
2808     ];
2809
2810     assert!(member_descriptions.len() == member_llvm_types.len());
2811
2812     let loc = span_start(cx, span);
2813     let file_metadata = file_metadata(cx, &loc.file.name[]);
2814
2815     let metadata = composite_type_metadata(cx,
2816                                            slice_llvm_type,
2817                                            &slice_type_name[],
2818                                            unique_type_id,
2819                                            &member_descriptions,
2820                                            UNKNOWN_SCOPE_METADATA,
2821                                            file_metadata,
2822                                            span);
2823     return MetadataCreationResult::new(metadata, false);
2824
2825     fn slice_layout_is_correct<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
2826                                          member_llvm_types: &[Type],
2827                                          element_type: Ty<'tcx>)
2828                                          -> bool {
2829         member_llvm_types.len() == 2 &&
2830         member_llvm_types[0] == type_of::type_of(cx, element_type).ptr_to() &&
2831         member_llvm_types[1] == cx.int_type()
2832     }
2833 }
2834
2835 fn subroutine_type_metadata<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
2836                                       unique_type_id: UniqueTypeId,
2837                                       signature: &ty::PolyFnSig<'tcx>,
2838                                       span: Span)
2839                                       -> MetadataCreationResult
2840 {
2841     let signature = ty::erase_late_bound_regions(cx.tcx(), signature);
2842
2843     let mut signature_metadata: Vec<DIType> = Vec::with_capacity(signature.inputs.len() + 1);
2844
2845     // return type
2846     signature_metadata.push(match signature.output {
2847         ty::FnConverging(ret_ty) => match ret_ty.sty {
2848             ty::ty_tup(ref tys) if tys.is_empty() => ptr::null_mut(),
2849             _ => type_metadata(cx, ret_ty, span)
2850         },
2851         ty::FnDiverging => diverging_type_metadata(cx)
2852     });
2853
2854     // regular arguments
2855     for &argument_type in signature.inputs.iter() {
2856         signature_metadata.push(type_metadata(cx, argument_type, span));
2857     }
2858
2859     return_if_metadata_created_in_meantime!(cx, unique_type_id);
2860
2861     return MetadataCreationResult::new(
2862         unsafe {
2863             llvm::LLVMDIBuilderCreateSubroutineType(
2864                 DIB(cx),
2865                 UNKNOWN_FILE_METADATA,
2866                 create_DIArray(DIB(cx), &signature_metadata[]))
2867         },
2868         false);
2869 }
2870
2871 // FIXME(1563) This is all a bit of a hack because 'trait pointer' is an ill-
2872 // defined concept. For the case of an actual trait pointer (i.e., Box<Trait>,
2873 // &Trait), trait_object_type should be the whole thing (e.g, Box<Trait>) and
2874 // trait_type should be the actual trait (e.g., Trait). Where the trait is part
2875 // of a DST struct, there is no trait_object_type and the results of this
2876 // function will be a little bit weird.
2877 fn trait_pointer_metadata<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
2878                                     trait_type: Ty<'tcx>,
2879                                     trait_object_type: Option<Ty<'tcx>>,
2880                                     unique_type_id: UniqueTypeId)
2881                                     -> DIType {
2882     // The implementation provided here is a stub. It makes sure that the trait
2883     // type is assigned the correct name, size, namespace, and source location.
2884     // But it does not describe the trait's methods.
2885
2886     let def_id = match trait_type.sty {
2887         ty::ty_trait(ref data) => data.principal_def_id(),
2888         _ => {
2889             let pp_type_name = ppaux::ty_to_string(cx.tcx(), trait_type);
2890             cx.sess().bug(&format!("debuginfo: Unexpected trait-object type in \
2891                                    trait_pointer_metadata(): {}",
2892                                    &pp_type_name[])[]);
2893         }
2894     };
2895
2896     let trait_object_type = trait_object_type.unwrap_or(trait_type);
2897     let trait_type_name =
2898         compute_debuginfo_type_name(cx, trait_object_type, false);
2899
2900     let (containing_scope, _) = get_namespace_and_span_for_item(cx, def_id);
2901
2902     let trait_llvm_type = type_of::type_of(cx, trait_object_type);
2903
2904     composite_type_metadata(cx,
2905                             trait_llvm_type,
2906                             &trait_type_name[],
2907                             unique_type_id,
2908                             &[],
2909                             containing_scope,
2910                             UNKNOWN_FILE_METADATA,
2911                             codemap::DUMMY_SP)
2912 }
2913
2914 fn type_metadata<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
2915                            t: Ty<'tcx>,
2916                            usage_site_span: Span)
2917                            -> DIType {
2918     // Get the unique type id of this type.
2919     let unique_type_id = {
2920         let mut type_map = debug_context(cx).type_map.borrow_mut();
2921         // First, try to find the type in TypeMap. If we have seen it before, we
2922         // can exit early here.
2923         match type_map.find_metadata_for_type(t) {
2924             Some(metadata) => {
2925                 return metadata;
2926             },
2927             None => {
2928                 // The Ty is not in the TypeMap but maybe we have already seen
2929                 // an equivalent type (e.g. only differing in region arguments).
2930                 // In order to find out, generate the unique type id and look
2931                 // that up.
2932                 let unique_type_id = type_map.get_unique_type_id_of_type(cx, t);
2933                 match type_map.find_metadata_for_unique_id(unique_type_id) {
2934                     Some(metadata) => {
2935                         // There is already an equivalent type in the TypeMap.
2936                         // Register this Ty as an alias in the cache and
2937                         // return the cached metadata.
2938                         type_map.register_type_with_metadata(cx, t, metadata);
2939                         return metadata;
2940                     },
2941                     None => {
2942                         // There really is no type metadata for this type, so
2943                         // proceed by creating it.
2944                         unique_type_id
2945                     }
2946                 }
2947             }
2948         }
2949     };
2950
2951     debug!("type_metadata: {:?}", t);
2952
2953     let sty = &t.sty;
2954     let MetadataCreationResult { metadata, already_stored_in_typemap } = match *sty {
2955         ty::ty_bool     |
2956         ty::ty_char     |
2957         ty::ty_int(_)   |
2958         ty::ty_uint(_)  |
2959         ty::ty_float(_) => {
2960             MetadataCreationResult::new(basic_type_metadata(cx, t), false)
2961         }
2962         ty::ty_tup(ref elements) if elements.is_empty() => {
2963             MetadataCreationResult::new(basic_type_metadata(cx, t), false)
2964         }
2965         ty::ty_enum(def_id, _) => {
2966             prepare_enum_metadata(cx, t, def_id, unique_type_id, usage_site_span).finalize(cx)
2967         }
2968         ty::ty_vec(typ, Some(len)) => {
2969             fixed_vec_metadata(cx, unique_type_id, typ, len, usage_site_span)
2970         }
2971         // FIXME Can we do better than this for unsized vec/str fields?
2972         ty::ty_vec(typ, None) => fixed_vec_metadata(cx, unique_type_id, typ, 0, usage_site_span),
2973         ty::ty_str => fixed_vec_metadata(cx, unique_type_id, cx.tcx().types.i8, 0, usage_site_span),
2974         ty::ty_trait(..) => {
2975             MetadataCreationResult::new(
2976                         trait_pointer_metadata(cx, t, None, unique_type_id),
2977             false)
2978         }
2979         ty::ty_uniq(ty) | ty::ty_ptr(ty::mt{ty, ..}) | ty::ty_rptr(_, ty::mt{ty, ..}) => {
2980             match ty.sty {
2981                 ty::ty_vec(typ, None) => {
2982                     vec_slice_metadata(cx, t, typ, unique_type_id, usage_site_span)
2983                 }
2984                 ty::ty_str => {
2985                     vec_slice_metadata(cx, t, cx.tcx().types.u8, unique_type_id, usage_site_span)
2986                 }
2987                 ty::ty_trait(..) => {
2988                     MetadataCreationResult::new(
2989                         trait_pointer_metadata(cx, ty, Some(t), unique_type_id),
2990                         false)
2991                 }
2992                 _ => {
2993                     let pointee_metadata = type_metadata(cx, ty, usage_site_span);
2994
2995                     match debug_context(cx).type_map
2996                                            .borrow()
2997                                            .find_metadata_for_unique_id(unique_type_id) {
2998                         Some(metadata) => return metadata,
2999                         None => { /* proceed normally */ }
3000                     };
3001
3002                     MetadataCreationResult::new(pointer_type_metadata(cx, t, pointee_metadata),
3003                                                 false)
3004                 }
3005             }
3006         }
3007         ty::ty_bare_fn(_, ref barefnty) => {
3008             subroutine_type_metadata(cx, unique_type_id, &barefnty.sig, usage_site_span)
3009         }
3010         ty::ty_unboxed_closure(def_id, _, substs) => {
3011             let typer = NormalizingUnboxedClosureTyper::new(cx.tcx());
3012             let sig = typer.unboxed_closure_type(def_id, substs).sig;
3013             subroutine_type_metadata(cx, unique_type_id, &sig, usage_site_span)
3014         }
3015         ty::ty_struct(def_id, substs) => {
3016             prepare_struct_metadata(cx,
3017                                     t,
3018                                     def_id,
3019                                     substs,
3020                                     unique_type_id,
3021                                     usage_site_span).finalize(cx)
3022         }
3023         ty::ty_tup(ref elements) => {
3024             prepare_tuple_metadata(cx,
3025                                    t,
3026                                    &elements[],
3027                                    unique_type_id,
3028                                    usage_site_span).finalize(cx)
3029         }
3030         _ => {
3031             cx.sess().bug(&format!("debuginfo: unexpected type in type_metadata: {:?}",
3032                                   sty)[])
3033         }
3034     };
3035
3036     {
3037         let mut type_map = debug_context(cx).type_map.borrow_mut();
3038
3039         if already_stored_in_typemap {
3040             // Also make sure that we already have a TypeMap entry entry for the unique type id.
3041             let metadata_for_uid = match type_map.find_metadata_for_unique_id(unique_type_id) {
3042                 Some(metadata) => metadata,
3043                 None => {
3044                     let unique_type_id_str =
3045                         type_map.get_unique_type_id_as_string(unique_type_id);
3046                     let error_message = format!("Expected type metadata for unique \
3047                                                  type id '{}' to already be in \
3048                                                  the debuginfo::TypeMap but it \
3049                                                  was not. (Ty = {})",
3050                                                 &unique_type_id_str[],
3051                                                 ppaux::ty_to_string(cx.tcx(), t));
3052                     cx.sess().span_bug(usage_site_span, &error_message[]);
3053                 }
3054             };
3055
3056             match type_map.find_metadata_for_type(t) {
3057                 Some(metadata) => {
3058                     if metadata != metadata_for_uid {
3059                         let unique_type_id_str =
3060                             type_map.get_unique_type_id_as_string(unique_type_id);
3061                         let error_message = format!("Mismatch between Ty and \
3062                                                      UniqueTypeId maps in \
3063                                                      debuginfo::TypeMap. \
3064                                                      UniqueTypeId={}, Ty={}",
3065                             &unique_type_id_str[],
3066                             ppaux::ty_to_string(cx.tcx(), t));
3067                         cx.sess().span_bug(usage_site_span, &error_message[]);
3068                     }
3069                 }
3070                 None => {
3071                     type_map.register_type_with_metadata(cx, t, metadata);
3072                 }
3073             }
3074         } else {
3075             type_map.register_type_with_metadata(cx, t, metadata);
3076             type_map.register_unique_id_with_metadata(cx, unique_type_id, metadata);
3077         }
3078     }
3079
3080     metadata
3081 }
3082
3083 struct MetadataCreationResult {
3084     metadata: DIType,
3085     already_stored_in_typemap: bool
3086 }
3087
3088 impl MetadataCreationResult {
3089     fn new(metadata: DIType, already_stored_in_typemap: bool) -> MetadataCreationResult {
3090         MetadataCreationResult {
3091             metadata: metadata,
3092             already_stored_in_typemap: already_stored_in_typemap
3093         }
3094     }
3095 }
3096
3097 #[derive(Copy, PartialEq)]
3098 enum DebugLocation {
3099     KnownLocation { scope: DIScope, line: uint, col: uint },
3100     UnknownLocation
3101 }
3102
3103 impl DebugLocation {
3104     fn new(scope: DIScope, line: uint, col: uint) -> DebugLocation {
3105         KnownLocation {
3106             scope: scope,
3107             line: line,
3108             col: col,
3109         }
3110     }
3111 }
3112
3113 fn set_debug_location(cx: &CrateContext, debug_location: DebugLocation) {
3114     if debug_location == debug_context(cx).current_debug_location.get() {
3115         return;
3116     }
3117
3118     let metadata_node;
3119
3120     match debug_location {
3121         KnownLocation { scope, line, .. } => {
3122             // Always set the column to zero like Clang and GCC
3123             let col = UNKNOWN_COLUMN_NUMBER;
3124             debug!("setting debug location to {} {}", line, col);
3125             let elements = [C_i32(cx, line as i32), C_i32(cx, col as i32),
3126                             scope, ptr::null_mut()];
3127             unsafe {
3128                 metadata_node = llvm::LLVMMDNodeInContext(debug_context(cx).llcontext,
3129                                                           elements.as_ptr(),
3130                                                           elements.len() as c_uint);
3131             }
3132         }
3133         UnknownLocation => {
3134             debug!("clearing debug location ");
3135             metadata_node = ptr::null_mut();
3136         }
3137     };
3138
3139     unsafe {
3140         llvm::LLVMSetCurrentDebugLocation(cx.raw_builder(), metadata_node);
3141     }
3142
3143     debug_context(cx).current_debug_location.set(debug_location);
3144 }
3145
3146 //=-----------------------------------------------------------------------------
3147 //  Utility Functions
3148 //=-----------------------------------------------------------------------------
3149
3150 fn contains_nodebug_attribute(attributes: &[ast::Attribute]) -> bool {
3151     attributes.iter().any(|attr| {
3152         let meta_item: &ast::MetaItem = &*attr.node.value;
3153         match meta_item.node {
3154             ast::MetaWord(ref value) => value.get() == "no_debug",
3155             _ => false
3156         }
3157     })
3158 }
3159
3160 /// Return codemap::Loc corresponding to the beginning of the span
3161 fn span_start(cx: &CrateContext, span: Span) -> codemap::Loc {
3162     cx.sess().codemap().lookup_char_pos(span.lo)
3163 }
3164
3165 fn size_and_align_of(cx: &CrateContext, llvm_type: Type) -> (u64, u64) {
3166     (machine::llsize_of_alloc(cx, llvm_type), machine::llalign_of_min(cx, llvm_type) as u64)
3167 }
3168
3169 fn bytes_to_bits(bytes: u64) -> u64 {
3170     bytes * 8
3171 }
3172
3173 #[inline]
3174 fn debug_context<'a, 'tcx>(cx: &'a CrateContext<'a, 'tcx>)
3175                            -> &'a CrateDebugContext<'tcx> {
3176     let debug_context: &'a CrateDebugContext<'tcx> = cx.dbg_cx().as_ref().unwrap();
3177     debug_context
3178 }
3179
3180 #[inline]
3181 #[allow(non_snake_case)]
3182 fn DIB(cx: &CrateContext) -> DIBuilderRef {
3183     cx.dbg_cx().as_ref().unwrap().builder
3184 }
3185
3186 fn fn_should_be_ignored(fcx: &FunctionContext) -> bool {
3187     match fcx.debug_context {
3188         FunctionDebugContext::RegularContext(_) => false,
3189         _ => true
3190     }
3191 }
3192
3193 fn assert_type_for_node_id(cx: &CrateContext,
3194                            node_id: ast::NodeId,
3195                            error_reporting_span: Span) {
3196     if !cx.tcx().node_types.borrow().contains_key(&node_id) {
3197         cx.sess().span_bug(error_reporting_span,
3198                            "debuginfo: Could not find type for node id!");
3199     }
3200 }
3201
3202 fn get_namespace_and_span_for_item(cx: &CrateContext, def_id: ast::DefId)
3203                                    -> (DIScope, Span) {
3204     let containing_scope = namespace_for_item(cx, def_id).scope;
3205     let definition_span = if def_id.krate == ast::LOCAL_CRATE {
3206         cx.tcx().map.span(def_id.node)
3207     } else {
3208         // For external items there is no span information
3209         codemap::DUMMY_SP
3210     };
3211
3212     (containing_scope, definition_span)
3213 }
3214
3215 // This procedure builds the *scope map* for a given function, which maps any
3216 // given ast::NodeId in the function's AST to the correct DIScope metadata instance.
3217 //
3218 // This builder procedure walks the AST in execution order and keeps track of
3219 // what belongs to which scope, creating DIScope DIEs along the way, and
3220 // introducing *artificial* lexical scope descriptors where necessary. These
3221 // artificial scopes allow GDB to correctly handle name shadowing.
3222 fn create_scope_map(cx: &CrateContext,
3223                     args: &[ast::Arg],
3224                     fn_entry_block: &ast::Block,
3225                     fn_metadata: DISubprogram,
3226                     fn_ast_id: ast::NodeId)
3227                  -> NodeMap<DIScope> {
3228     let mut scope_map = NodeMap::new();
3229
3230     let def_map = &cx.tcx().def_map;
3231
3232     struct ScopeStackEntry {
3233         scope_metadata: DIScope,
3234         ident: Option<ast::Ident>
3235     }
3236
3237     let mut scope_stack = vec!(ScopeStackEntry { scope_metadata: fn_metadata,
3238                                                  ident: None });
3239     scope_map.insert(fn_ast_id, fn_metadata);
3240
3241     // Push argument identifiers onto the stack so arguments integrate nicely
3242     // with variable shadowing.
3243     for arg in args.iter() {
3244         pat_util::pat_bindings(def_map, &*arg.pat, |_, node_id, _, path1| {
3245             scope_stack.push(ScopeStackEntry { scope_metadata: fn_metadata,
3246                                                ident: Some(path1.node) });
3247             scope_map.insert(node_id, fn_metadata);
3248         })
3249     }
3250
3251     // Clang creates a separate scope for function bodies, so let's do this too.
3252     with_new_scope(cx,
3253                    fn_entry_block.span,
3254                    &mut scope_stack,
3255                    &mut scope_map,
3256                    |cx, scope_stack, scope_map| {
3257         walk_block(cx, fn_entry_block, scope_stack, scope_map);
3258     });
3259
3260     return scope_map;
3261
3262
3263     // local helper functions for walking the AST.
3264     fn with_new_scope<F>(cx: &CrateContext,
3265                          scope_span: Span,
3266                          scope_stack: &mut Vec<ScopeStackEntry> ,
3267                          scope_map: &mut NodeMap<DIScope>,
3268                          inner_walk: F) where
3269         F: FnOnce(&CrateContext, &mut Vec<ScopeStackEntry>, &mut NodeMap<DIScope>),
3270     {
3271         // Create a new lexical scope and push it onto the stack
3272         let loc = cx.sess().codemap().lookup_char_pos(scope_span.lo);
3273         let file_metadata = file_metadata(cx, &loc.file.name[]);
3274         let parent_scope = scope_stack.last().unwrap().scope_metadata;
3275
3276         let scope_metadata = unsafe {
3277             llvm::LLVMDIBuilderCreateLexicalBlock(
3278                 DIB(cx),
3279                 parent_scope,
3280                 file_metadata,
3281                 loc.line as c_uint,
3282                 loc.col.to_uint() as c_uint)
3283         };
3284
3285         scope_stack.push(ScopeStackEntry { scope_metadata: scope_metadata,
3286                                            ident: None });
3287
3288         inner_walk(cx, scope_stack, scope_map);
3289
3290         // pop artificial scopes
3291         while scope_stack.last().unwrap().ident.is_some() {
3292             scope_stack.pop();
3293         }
3294
3295         if scope_stack.last().unwrap().scope_metadata != scope_metadata {
3296             cx.sess().span_bug(scope_span, "debuginfo: Inconsistency in scope management.");
3297         }
3298
3299         scope_stack.pop();
3300     }
3301
3302     fn walk_block(cx: &CrateContext,
3303                   block: &ast::Block,
3304                   scope_stack: &mut Vec<ScopeStackEntry> ,
3305                   scope_map: &mut NodeMap<DIScope>) {
3306         scope_map.insert(block.id, scope_stack.last().unwrap().scope_metadata);
3307
3308         // The interesting things here are statements and the concluding expression.
3309         for statement in block.stmts.iter() {
3310             scope_map.insert(ast_util::stmt_id(&**statement),
3311                              scope_stack.last().unwrap().scope_metadata);
3312
3313             match statement.node {
3314                 ast::StmtDecl(ref decl, _) =>
3315                     walk_decl(cx, &**decl, scope_stack, scope_map),
3316                 ast::StmtExpr(ref exp, _) |
3317                 ast::StmtSemi(ref exp, _) =>
3318                     walk_expr(cx, &**exp, scope_stack, scope_map),
3319                 ast::StmtMac(..) => () // Ignore macros (which should be expanded anyway).
3320             }
3321         }
3322
3323         for exp in block.expr.iter() {
3324             walk_expr(cx, &**exp, scope_stack, scope_map);
3325         }
3326     }
3327
3328     fn walk_decl(cx: &CrateContext,
3329                  decl: &ast::Decl,
3330                  scope_stack: &mut Vec<ScopeStackEntry> ,
3331                  scope_map: &mut NodeMap<DIScope>) {
3332         match *decl {
3333             codemap::Spanned { node: ast::DeclLocal(ref local), .. } => {
3334                 scope_map.insert(local.id, scope_stack.last().unwrap().scope_metadata);
3335
3336                 walk_pattern(cx, &*local.pat, scope_stack, scope_map);
3337
3338                 for exp in local.init.iter() {
3339                     walk_expr(cx, &**exp, scope_stack, scope_map);
3340                 }
3341             }
3342             _ => ()
3343         }
3344     }
3345
3346     fn walk_pattern(cx: &CrateContext,
3347                     pat: &ast::Pat,
3348                     scope_stack: &mut Vec<ScopeStackEntry> ,
3349                     scope_map: &mut NodeMap<DIScope>) {
3350
3351         let def_map = &cx.tcx().def_map;
3352
3353         // Unfortunately, we cannot just use pat_util::pat_bindings() or
3354         // ast_util::walk_pat() here because we have to visit *all* nodes in
3355         // order to put them into the scope map. The above functions don't do that.
3356         match pat.node {
3357             ast::PatIdent(_, ref path1, ref sub_pat_opt) => {
3358
3359                 // Check if this is a binding. If so we need to put it on the
3360                 // scope stack and maybe introduce an artificial scope
3361                 if pat_util::pat_is_binding(def_map, &*pat) {
3362
3363                     let ident = path1.node;
3364
3365                     // LLVM does not properly generate 'DW_AT_start_scope' fields
3366                     // for variable DIEs. For this reason we have to introduce
3367                     // an artificial scope at bindings whenever a variable with
3368                     // the same name is declared in *any* parent scope.
3369                     //
3370                     // Otherwise the following error occurs:
3371                     //
3372                     // let x = 10;
3373                     //
3374                     // do_something(); // 'gdb print x' correctly prints 10
3375                     //
3376                     // {
3377                     //     do_something(); // 'gdb print x' prints 0, because it
3378                     //                     // already reads the uninitialized 'x'
3379                     //                     // from the next line...
3380                     //     let x = 100;
3381                     //     do_something(); // 'gdb print x' correctly prints 100
3382                     // }
3383
3384                     // Is there already a binding with that name?
3385                     // N.B.: this comparison must be UNhygienic... because
3386                     // gdb knows nothing about the context, so any two
3387                     // variables with the same name will cause the problem.
3388                     let need_new_scope = scope_stack
3389                         .iter()
3390                         .any(|entry| entry.ident.iter().any(|i| i.name == ident.name));
3391
3392                     if need_new_scope {
3393                         // Create a new lexical scope and push it onto the stack
3394                         let loc = cx.sess().codemap().lookup_char_pos(pat.span.lo);
3395                         let file_metadata = file_metadata(cx, &loc.file.name[]);
3396                         let parent_scope = scope_stack.last().unwrap().scope_metadata;
3397
3398                         let scope_metadata = unsafe {
3399                             llvm::LLVMDIBuilderCreateLexicalBlock(
3400                                 DIB(cx),
3401                                 parent_scope,
3402                                 file_metadata,
3403                                 loc.line as c_uint,
3404                                 loc.col.to_uint() as c_uint)
3405                         };
3406
3407                         scope_stack.push(ScopeStackEntry {
3408                             scope_metadata: scope_metadata,
3409                             ident: Some(ident)
3410                         });
3411
3412                     } else {
3413                         // Push a new entry anyway so the name can be found
3414                         let prev_metadata = scope_stack.last().unwrap().scope_metadata;
3415                         scope_stack.push(ScopeStackEntry {
3416                             scope_metadata: prev_metadata,
3417                             ident: Some(ident)
3418                         });
3419                     }
3420                 }
3421
3422                 scope_map.insert(pat.id, scope_stack.last().unwrap().scope_metadata);
3423
3424                 for sub_pat in sub_pat_opt.iter() {
3425                     walk_pattern(cx, &**sub_pat, scope_stack, scope_map);
3426                 }
3427             }
3428
3429             ast::PatWild(_) => {
3430                 scope_map.insert(pat.id, scope_stack.last().unwrap().scope_metadata);
3431             }
3432
3433             ast::PatEnum(_, ref sub_pats_opt) => {
3434                 scope_map.insert(pat.id, scope_stack.last().unwrap().scope_metadata);
3435
3436                 for sub_pats in sub_pats_opt.iter() {
3437                     for p in sub_pats.iter() {
3438                         walk_pattern(cx, &**p, scope_stack, scope_map);
3439                     }
3440                 }
3441             }
3442
3443             ast::PatStruct(_, ref field_pats, _) => {
3444                 scope_map.insert(pat.id, scope_stack.last().unwrap().scope_metadata);
3445
3446                 for &codemap::Spanned {
3447                     node: ast::FieldPat { pat: ref sub_pat, .. },
3448                     ..
3449                 } in field_pats.iter() {
3450                     walk_pattern(cx, &**sub_pat, scope_stack, scope_map);
3451                 }
3452             }
3453
3454             ast::PatTup(ref sub_pats) => {
3455                 scope_map.insert(pat.id, scope_stack.last().unwrap().scope_metadata);
3456
3457                 for sub_pat in sub_pats.iter() {
3458                     walk_pattern(cx, &**sub_pat, scope_stack, scope_map);
3459                 }
3460             }
3461
3462             ast::PatBox(ref sub_pat) | ast::PatRegion(ref sub_pat, _) => {
3463                 scope_map.insert(pat.id, scope_stack.last().unwrap().scope_metadata);
3464                 walk_pattern(cx, &**sub_pat, scope_stack, scope_map);
3465             }
3466
3467             ast::PatLit(ref exp) => {
3468                 scope_map.insert(pat.id, scope_stack.last().unwrap().scope_metadata);
3469                 walk_expr(cx, &**exp, scope_stack, scope_map);
3470             }
3471
3472             ast::PatRange(ref exp1, ref exp2) => {
3473                 scope_map.insert(pat.id, scope_stack.last().unwrap().scope_metadata);
3474                 walk_expr(cx, &**exp1, scope_stack, scope_map);
3475                 walk_expr(cx, &**exp2, scope_stack, scope_map);
3476             }
3477
3478             ast::PatVec(ref front_sub_pats, ref middle_sub_pats, ref back_sub_pats) => {
3479                 scope_map.insert(pat.id, scope_stack.last().unwrap().scope_metadata);
3480
3481                 for sub_pat in front_sub_pats.iter() {
3482                     walk_pattern(cx, &**sub_pat, scope_stack, scope_map);
3483                 }
3484
3485                 for sub_pat in middle_sub_pats.iter() {
3486                     walk_pattern(cx, &**sub_pat, scope_stack, scope_map);
3487                 }
3488
3489                 for sub_pat in back_sub_pats.iter() {
3490                     walk_pattern(cx, &**sub_pat, scope_stack, scope_map);
3491                 }
3492             }
3493
3494             ast::PatMac(_) => {
3495                 cx.sess().span_bug(pat.span, "debuginfo::create_scope_map() - \
3496                                               Found unexpanded macro.");
3497             }
3498         }
3499     }
3500
3501     fn walk_expr(cx: &CrateContext,
3502                  exp: &ast::Expr,
3503                  scope_stack: &mut Vec<ScopeStackEntry> ,
3504                  scope_map: &mut NodeMap<DIScope>) {
3505
3506         scope_map.insert(exp.id, scope_stack.last().unwrap().scope_metadata);
3507
3508         match exp.node {
3509             ast::ExprLit(_)   |
3510             ast::ExprBreak(_) |
3511             ast::ExprAgain(_) |
3512             ast::ExprPath(_)  |
3513             ast::ExprQPath(_) => {}
3514
3515             ast::ExprCast(ref sub_exp, _)     |
3516             ast::ExprAddrOf(_, ref sub_exp)  |
3517             ast::ExprField(ref sub_exp, _) |
3518             ast::ExprTupField(ref sub_exp, _) |
3519             ast::ExprParen(ref sub_exp) =>
3520                 walk_expr(cx, &**sub_exp, scope_stack, scope_map),
3521
3522             ast::ExprBox(ref place, ref sub_expr) => {
3523                 place.as_ref().map(
3524                     |e| walk_expr(cx, &**e, scope_stack, scope_map));
3525                 walk_expr(cx, &**sub_expr, scope_stack, scope_map);
3526             }
3527
3528             ast::ExprRet(ref exp_opt) => match *exp_opt {
3529                 Some(ref sub_exp) => walk_expr(cx, &**sub_exp, scope_stack, scope_map),
3530                 None => ()
3531             },
3532
3533             ast::ExprUnary(_, ref sub_exp) => {
3534                 walk_expr(cx, &**sub_exp, scope_stack, scope_map);
3535             }
3536
3537             ast::ExprAssignOp(_, ref lhs, ref rhs) |
3538             ast::ExprIndex(ref lhs, ref rhs) |
3539             ast::ExprBinary(_, ref lhs, ref rhs)    => {
3540                 walk_expr(cx, &**lhs, scope_stack, scope_map);
3541                 walk_expr(cx, &**rhs, scope_stack, scope_map);
3542             }
3543
3544             ast::ExprRange(ref start, ref end) => {
3545                 start.as_ref().map(|e| walk_expr(cx, &**e, scope_stack, scope_map));
3546                 end.as_ref().map(|e| walk_expr(cx, &**e, scope_stack, scope_map));
3547             }
3548
3549             ast::ExprVec(ref init_expressions) |
3550             ast::ExprTup(ref init_expressions) => {
3551                 for ie in init_expressions.iter() {
3552                     walk_expr(cx, &**ie, scope_stack, scope_map);
3553                 }
3554             }
3555
3556             ast::ExprAssign(ref sub_exp1, ref sub_exp2) |
3557             ast::ExprRepeat(ref sub_exp1, ref sub_exp2) => {
3558                 walk_expr(cx, &**sub_exp1, scope_stack, scope_map);
3559                 walk_expr(cx, &**sub_exp2, scope_stack, scope_map);
3560             }
3561
3562             ast::ExprIf(ref cond_exp, ref then_block, ref opt_else_exp) => {
3563                 walk_expr(cx, &**cond_exp, scope_stack, scope_map);
3564
3565                 with_new_scope(cx,
3566                                then_block.span,
3567                                scope_stack,
3568                                scope_map,
3569                                |cx, scope_stack, scope_map| {
3570                     walk_block(cx, &**then_block, scope_stack, scope_map);
3571                 });
3572
3573                 match *opt_else_exp {
3574                     Some(ref else_exp) =>
3575                         walk_expr(cx, &**else_exp, scope_stack, scope_map),
3576                     _ => ()
3577                 }
3578             }
3579
3580             ast::ExprIfLet(..) => {
3581                 cx.sess().span_bug(exp.span, "debuginfo::create_scope_map() - \
3582                                               Found unexpanded if-let.");
3583             }
3584
3585             ast::ExprWhile(ref cond_exp, ref loop_body, _) => {
3586                 walk_expr(cx, &**cond_exp, scope_stack, scope_map);
3587
3588                 with_new_scope(cx,
3589                                loop_body.span,
3590                                scope_stack,
3591                                scope_map,
3592                                |cx, scope_stack, scope_map| {
3593                     walk_block(cx, &**loop_body, scope_stack, scope_map);
3594                 })
3595             }
3596
3597             ast::ExprWhileLet(..) => {
3598                 cx.sess().span_bug(exp.span, "debuginfo::create_scope_map() - \
3599                                               Found unexpanded while-let.");
3600             }
3601
3602             ast::ExprForLoop(ref pattern, ref head, ref body, _) => {
3603                 walk_expr(cx, &**head, scope_stack, scope_map);
3604
3605                 with_new_scope(cx,
3606                                exp.span,
3607                                scope_stack,
3608                                scope_map,
3609                                |cx, scope_stack, scope_map| {
3610                     scope_map.insert(exp.id,
3611                                      scope_stack.last()
3612                                                 .unwrap()
3613                                                 .scope_metadata);
3614                     walk_pattern(cx,
3615                                  &**pattern,
3616                                  scope_stack,
3617                                  scope_map);
3618                     walk_block(cx, &**body, scope_stack, scope_map);
3619                 })
3620             }
3621
3622             ast::ExprMac(_) => {
3623                 cx.sess().span_bug(exp.span, "debuginfo::create_scope_map() - \
3624                                               Found unexpanded macro.");
3625             }
3626
3627             ast::ExprLoop(ref block, _) |
3628             ast::ExprBlock(ref block)   => {
3629                 with_new_scope(cx,
3630                                block.span,
3631                                scope_stack,
3632                                scope_map,
3633                                |cx, scope_stack, scope_map| {
3634                     walk_block(cx, &**block, scope_stack, scope_map);
3635                 })
3636             }
3637
3638             ast::ExprClosure(_, _, ref decl, ref block) => {
3639                 with_new_scope(cx,
3640                                block.span,
3641                                scope_stack,
3642                                scope_map,
3643                                |cx, scope_stack, scope_map| {
3644                     for &ast::Arg { pat: ref pattern, .. } in decl.inputs.iter() {
3645                         walk_pattern(cx, &**pattern, scope_stack, scope_map);
3646                     }
3647
3648                     walk_block(cx, &**block, scope_stack, scope_map);
3649                 })
3650             }
3651
3652             ast::ExprCall(ref fn_exp, ref args) => {
3653                 walk_expr(cx, &**fn_exp, scope_stack, scope_map);
3654
3655                 for arg_exp in args.iter() {
3656                     walk_expr(cx, &**arg_exp, scope_stack, scope_map);
3657                 }
3658             }
3659
3660             ast::ExprMethodCall(_, _, ref args) => {
3661                 for arg_exp in args.iter() {
3662                     walk_expr(cx, &**arg_exp, scope_stack, scope_map);
3663                 }
3664             }
3665
3666             ast::ExprMatch(ref discriminant_exp, ref arms, _) => {
3667                 walk_expr(cx, &**discriminant_exp, scope_stack, scope_map);
3668
3669                 // For each arm we have to first walk the pattern as these might
3670                 // introduce new artificial scopes. It should be sufficient to
3671                 // walk only one pattern per arm, as they all must contain the
3672                 // same binding names.
3673
3674                 for arm_ref in arms.iter() {
3675                     let arm_span = arm_ref.pats[0].span;
3676
3677                     with_new_scope(cx,
3678                                    arm_span,
3679                                    scope_stack,
3680                                    scope_map,
3681                                    |cx, scope_stack, scope_map| {
3682                         for pat in arm_ref.pats.iter() {
3683                             walk_pattern(cx, &**pat, scope_stack, scope_map);
3684                         }
3685
3686                         for guard_exp in arm_ref.guard.iter() {
3687                             walk_expr(cx, &**guard_exp, scope_stack, scope_map)
3688                         }
3689
3690                         walk_expr(cx, &*arm_ref.body, scope_stack, scope_map);
3691                     })
3692                 }
3693             }
3694
3695             ast::ExprStruct(_, ref fields, ref base_exp) => {
3696                 for &ast::Field { expr: ref exp, .. } in fields.iter() {
3697                     walk_expr(cx, &**exp, scope_stack, scope_map);
3698                 }
3699
3700                 match *base_exp {
3701                     Some(ref exp) => walk_expr(cx, &**exp, scope_stack, scope_map),
3702                     None => ()
3703                 }
3704             }
3705
3706             ast::ExprInlineAsm(ast::InlineAsm { ref inputs,
3707                                                 ref outputs,
3708                                                 .. }) => {
3709                 // inputs, outputs: Vec<(String, P<Expr>)>
3710                 for &(_, ref exp) in inputs.iter() {
3711                     walk_expr(cx, &**exp, scope_stack, scope_map);
3712                 }
3713
3714                 for &(_, ref exp, _) in outputs.iter() {
3715                     walk_expr(cx, &**exp, scope_stack, scope_map);
3716                 }
3717             }
3718         }
3719     }
3720 }
3721
3722
3723 //=-----------------------------------------------------------------------------
3724 // Type Names for Debug Info
3725 //=-----------------------------------------------------------------------------
3726
3727 // Compute the name of the type as it should be stored in debuginfo. Does not do
3728 // any caching, i.e. calling the function twice with the same type will also do
3729 // the work twice. The `qualified` parameter only affects the first level of the
3730 // type name, further levels (i.e. type parameters) are always fully qualified.
3731 fn compute_debuginfo_type_name<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
3732                                          t: Ty<'tcx>,
3733                                          qualified: bool)
3734                                          -> String {
3735     let mut result = String::with_capacity(64);
3736     push_debuginfo_type_name(cx, t, qualified, &mut result);
3737     result
3738 }
3739
3740 // Pushes the name of the type as it should be stored in debuginfo on the
3741 // `output` String. See also compute_debuginfo_type_name().
3742 fn push_debuginfo_type_name<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
3743                                       t: Ty<'tcx>,
3744                                       qualified: bool,
3745                                       output: &mut String) {
3746     match t.sty {
3747         ty::ty_bool              => output.push_str("bool"),
3748         ty::ty_char              => output.push_str("char"),
3749         ty::ty_str               => output.push_str("str"),
3750         ty::ty_int(ast::TyIs(_))     => output.push_str("isize"),
3751         ty::ty_int(ast::TyI8)    => output.push_str("i8"),
3752         ty::ty_int(ast::TyI16)   => output.push_str("i16"),
3753         ty::ty_int(ast::TyI32)   => output.push_str("i32"),
3754         ty::ty_int(ast::TyI64)   => output.push_str("i64"),
3755         ty::ty_uint(ast::TyUs(_))    => output.push_str("usize"),
3756         ty::ty_uint(ast::TyU8)   => output.push_str("u8"),
3757         ty::ty_uint(ast::TyU16)  => output.push_str("u16"),
3758         ty::ty_uint(ast::TyU32)  => output.push_str("u32"),
3759         ty::ty_uint(ast::TyU64)  => output.push_str("u64"),
3760         ty::ty_float(ast::TyF32) => output.push_str("f32"),
3761         ty::ty_float(ast::TyF64) => output.push_str("f64"),
3762         ty::ty_struct(def_id, substs) |
3763         ty::ty_enum(def_id, substs) => {
3764             push_item_name(cx, def_id, qualified, output);
3765             push_type_params(cx, substs, output);
3766         },
3767         ty::ty_tup(ref component_types) => {
3768             output.push('(');
3769             for &component_type in component_types.iter() {
3770                 push_debuginfo_type_name(cx, component_type, true, output);
3771                 output.push_str(", ");
3772             }
3773             if !component_types.is_empty() {
3774                 output.pop();
3775                 output.pop();
3776             }
3777             output.push(')');
3778         },
3779         ty::ty_uniq(inner_type) => {
3780             output.push_str("Box<");
3781             push_debuginfo_type_name(cx, inner_type, true, output);
3782             output.push('>');
3783         },
3784         ty::ty_ptr(ty::mt { ty: inner_type, mutbl } ) => {
3785             output.push('*');
3786             match mutbl {
3787                 ast::MutImmutable => output.push_str("const "),
3788                 ast::MutMutable => output.push_str("mut "),
3789             }
3790
3791             push_debuginfo_type_name(cx, inner_type, true, output);
3792         },
3793         ty::ty_rptr(_, ty::mt { ty: inner_type, mutbl }) => {
3794             output.push('&');
3795             if mutbl == ast::MutMutable {
3796                 output.push_str("mut ");
3797             }
3798
3799             push_debuginfo_type_name(cx, inner_type, true, output);
3800         },
3801         ty::ty_vec(inner_type, optional_length) => {
3802             output.push('[');
3803             push_debuginfo_type_name(cx, inner_type, true, output);
3804
3805             match optional_length {
3806                 Some(len) => {
3807                     output.push_str(format!("; {}", len).as_slice());
3808                 }
3809                 None => { /* nothing to do */ }
3810             };
3811
3812             output.push(']');
3813         },
3814         ty::ty_trait(ref trait_data) => {
3815             let principal = ty::erase_late_bound_regions(cx.tcx(), &trait_data.principal);
3816             push_item_name(cx, principal.def_id, false, output);
3817             push_type_params(cx, principal.substs, output);
3818         },
3819         ty::ty_bare_fn(_, &ty::BareFnTy{ unsafety, abi, ref sig } ) => {
3820             if unsafety == ast::Unsafety::Unsafe {
3821                 output.push_str("unsafe ");
3822             }
3823
3824             if abi != ::syntax::abi::Rust {
3825                 output.push_str("extern \"");
3826                 output.push_str(abi.name());
3827                 output.push_str("\" ");
3828             }
3829
3830             output.push_str("fn(");
3831
3832             let sig = ty::erase_late_bound_regions(cx.tcx(), sig);
3833             if sig.inputs.len() > 0 {
3834                 for &parameter_type in sig.inputs.iter() {
3835                     push_debuginfo_type_name(cx, parameter_type, true, output);
3836                     output.push_str(", ");
3837                 }
3838                 output.pop();
3839                 output.pop();
3840             }
3841
3842             if sig.variadic {
3843                 if sig.inputs.len() > 0 {
3844                     output.push_str(", ...");
3845                 } else {
3846                     output.push_str("...");
3847                 }
3848             }
3849
3850             output.push(')');
3851
3852             match sig.output {
3853                 ty::FnConverging(result_type) if ty::type_is_nil(result_type) => {}
3854                 ty::FnConverging(result_type) => {
3855                     output.push_str(" -> ");
3856                     push_debuginfo_type_name(cx, result_type, true, output);
3857                 }
3858                 ty::FnDiverging => {
3859                     output.push_str(" -> !");
3860                 }
3861             }
3862         },
3863         ty::ty_unboxed_closure(..) => {
3864             output.push_str("closure");
3865         }
3866         ty::ty_err |
3867         ty::ty_infer(_) |
3868         ty::ty_open(_) |
3869         ty::ty_projection(..) |
3870         ty::ty_param(_) => {
3871             cx.sess().bug(&format!("debuginfo: Trying to create type name for \
3872                 unexpected type: {}", ppaux::ty_to_string(cx.tcx(), t))[]);
3873         }
3874     }
3875
3876     fn push_item_name(cx: &CrateContext,
3877                       def_id: ast::DefId,
3878                       qualified: bool,
3879                       output: &mut String) {
3880         ty::with_path(cx.tcx(), def_id, |mut path| {
3881             if qualified {
3882                 if def_id.krate == ast::LOCAL_CRATE {
3883                     output.push_str(crate_root_namespace(cx));
3884                     output.push_str("::");
3885                 }
3886
3887                 let mut path_element_count = 0u;
3888                 for path_element in path {
3889                     let name = token::get_name(path_element.name());
3890                     output.push_str(name.get());
3891                     output.push_str("::");
3892                     path_element_count += 1;
3893                 }
3894
3895                 if path_element_count == 0 {
3896                     cx.sess().bug("debuginfo: Encountered empty item path!");
3897                 }
3898
3899                 output.pop();
3900                 output.pop();
3901             } else {
3902                 let name = token::get_name(path.last()
3903                                                .expect("debuginfo: Empty item path?")
3904                                                .name());
3905                 output.push_str(name.get());
3906             }
3907         });
3908     }
3909
3910     // Pushes the type parameters in the given `Substs` to the output string.
3911     // This ignores region parameters, since they can't reliably be
3912     // reconstructed for items from non-local crates. For local crates, this
3913     // would be possible but with inlining and LTO we have to use the least
3914     // common denominator - otherwise we would run into conflicts.
3915     fn push_type_params<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
3916                                   substs: &subst::Substs<'tcx>,
3917                                   output: &mut String) {
3918         if substs.types.is_empty() {
3919             return;
3920         }
3921
3922         output.push('<');
3923
3924         for &type_parameter in substs.types.iter() {
3925             push_debuginfo_type_name(cx, type_parameter, true, output);
3926             output.push_str(", ");
3927         }
3928
3929         output.pop();
3930         output.pop();
3931
3932         output.push('>');
3933     }
3934 }
3935
3936
3937 //=-----------------------------------------------------------------------------
3938 // Namespace Handling
3939 //=-----------------------------------------------------------------------------
3940
3941 struct NamespaceTreeNode {
3942     name: ast::Name,
3943     scope: DIScope,
3944     parent: Option<Weak<NamespaceTreeNode>>,
3945 }
3946
3947 impl NamespaceTreeNode {
3948     fn mangled_name_of_contained_item(&self, item_name: &str) -> String {
3949         fn fill_nested(node: &NamespaceTreeNode, output: &mut String) {
3950             match node.parent {
3951                 Some(ref parent) => fill_nested(&*parent.upgrade().unwrap(), output),
3952                 None => {}
3953             }
3954             let string = token::get_name(node.name);
3955             output.push_str(&format!("{}", string.get().len())[]);
3956             output.push_str(string.get());
3957         }
3958
3959         let mut name = String::from_str("_ZN");
3960         fill_nested(self, &mut name);
3961         name.push_str(&format!("{}", item_name.len())[]);
3962         name.push_str(item_name);
3963         name.push('E');
3964         name
3965     }
3966 }
3967
3968 fn crate_root_namespace<'a>(cx: &'a CrateContext) -> &'a str {
3969     &cx.link_meta().crate_name[]
3970 }
3971
3972 fn namespace_for_item(cx: &CrateContext, def_id: ast::DefId) -> Rc<NamespaceTreeNode> {
3973     ty::with_path(cx.tcx(), def_id, |path| {
3974         // prepend crate name if not already present
3975         let krate = if def_id.krate == ast::LOCAL_CRATE {
3976             let crate_namespace_ident = token::str_to_ident(crate_root_namespace(cx));
3977             Some(ast_map::PathMod(crate_namespace_ident.name))
3978         } else {
3979             None
3980         };
3981         let mut path = krate.into_iter().chain(path).peekable();
3982
3983         let mut current_key = Vec::new();
3984         let mut parent_node: Option<Rc<NamespaceTreeNode>> = None;
3985
3986         // Create/Lookup namespace for each element of the path.
3987         loop {
3988             // Emulate a for loop so we can use peek below.
3989             let path_element = match path.next() {
3990                 Some(e) => e,
3991                 None => break
3992             };
3993             // Ignore the name of the item (the last path element).
3994             if path.peek().is_none() {
3995                 break;
3996             }
3997
3998             let name = path_element.name();
3999             current_key.push(name);
4000
4001             let existing_node = debug_context(cx).namespace_map.borrow()
4002                                                  .get(&current_key).cloned();
4003             let current_node = match existing_node {
4004                 Some(existing_node) => existing_node,
4005                 None => {
4006                     // create and insert
4007                     let parent_scope = match parent_node {
4008                         Some(ref node) => node.scope,
4009                         None => ptr::null_mut()
4010                     };
4011                     let namespace_name = token::get_name(name);
4012                     let namespace_name = CString::from_slice(namespace_name
4013                                                                 .get().as_bytes());
4014                     let scope = unsafe {
4015                         llvm::LLVMDIBuilderCreateNameSpace(
4016                             DIB(cx),
4017                             parent_scope,
4018                             namespace_name.as_ptr(),
4019                             // cannot reconstruct file ...
4020                             ptr::null_mut(),
4021                             // ... or line information, but that's not so important.
4022                             0)
4023                     };
4024
4025                     let node = Rc::new(NamespaceTreeNode {
4026                         name: name,
4027                         scope: scope,
4028                         parent: parent_node.map(|parent| parent.downgrade()),
4029                     });
4030
4031                     debug_context(cx).namespace_map.borrow_mut()
4032                                      .insert(current_key.clone(), node.clone());
4033
4034                     node
4035                 }
4036             };
4037
4038             parent_node = Some(current_node);
4039         }
4040
4041         match parent_node {
4042             Some(node) => node,
4043             None => {
4044                 cx.sess().bug(&format!("debuginfo::namespace_for_item(): \
4045                                        path too short for {:?}",
4046                                       def_id)[]);
4047             }
4048         }
4049     })
4050 }
4051
4052
4053 //=-----------------------------------------------------------------------------
4054 // .debug_gdb_scripts binary section
4055 //=-----------------------------------------------------------------------------
4056
4057 /// Inserts a side-effect free instruction sequence that makes sure that the
4058 /// .debug_gdb_scripts global is referenced, so it isn't removed by the linker.
4059 pub fn insert_reference_to_gdb_debug_scripts_section_global(ccx: &CrateContext) {
4060     if needs_gdb_debug_scripts_section(ccx) {
4061         let empty = CString::from_slice(b"");
4062         let gdb_debug_scripts_section_global =
4063             get_or_insert_gdb_debug_scripts_section_global(ccx);
4064         unsafe {
4065             let volative_load_instruction =
4066                 llvm::LLVMBuildLoad(ccx.raw_builder(),
4067                                     gdb_debug_scripts_section_global,
4068                                     empty.as_ptr());
4069             llvm::LLVMSetVolatile(volative_load_instruction, llvm::True);
4070         }
4071     }
4072 }
4073
4074 /// Allocates the global variable responsible for the .debug_gdb_scripts binary
4075 /// section.
4076 fn get_or_insert_gdb_debug_scripts_section_global(ccx: &CrateContext)
4077                                                   -> llvm::ValueRef {
4078     let section_var_name = b"__rustc_debug_gdb_scripts_section__\0";
4079
4080     let section_var = unsafe {
4081         llvm::LLVMGetNamedGlobal(ccx.llmod(),
4082                                  section_var_name.as_ptr() as *const _)
4083     };
4084
4085     if section_var == ptr::null_mut() {
4086         let section_name = b".debug_gdb_scripts\0";
4087         let section_contents = b"\x01gdb_load_rust_pretty_printers.py\0";
4088
4089         unsafe {
4090             let llvm_type = Type::array(&Type::i8(ccx),
4091                                         section_contents.len() as u64);
4092             let section_var = llvm::LLVMAddGlobal(ccx.llmod(),
4093                                                   llvm_type.to_ref(),
4094                                                   section_var_name.as_ptr()
4095                                                     as *const _);
4096             llvm::LLVMSetSection(section_var, section_name.as_ptr() as *const _);
4097             llvm::LLVMSetInitializer(section_var, C_bytes(ccx, section_contents));
4098             llvm::LLVMSetGlobalConstant(section_var, llvm::True);
4099             llvm::LLVMSetUnnamedAddr(section_var, llvm::True);
4100             llvm::SetLinkage(section_var, llvm::Linkage::LinkOnceODRLinkage);
4101             // This should make sure that the whole section is not larger than
4102             // the string it contains. Otherwise we get a warning from GDB.
4103             llvm::LLVMSetAlignment(section_var, 1);
4104             section_var
4105         }
4106     } else {
4107         section_var
4108     }
4109 }
4110
4111 fn needs_gdb_debug_scripts_section(ccx: &CrateContext) -> bool {
4112     let omit_gdb_pretty_printer_section =
4113         attr::contains_name(ccx.tcx()
4114                                .map
4115                                .krate()
4116                                .attrs
4117                                .as_slice(),
4118                             "omit_gdb_pretty_printer_section");
4119
4120     !omit_gdb_pretty_printer_section &&
4121     !ccx.sess().target.target.options.is_like_osx &&
4122     !ccx.sess().target.target.options.is_like_windows &&
4123     ccx.sess().opts.debuginfo != NoDebugInfo
4124 }
4125