]> git.proxmox.com Git - rustc.git/blame - src/librustc_trans/debuginfo/type_names.rs
New upstream version 1.13.0+dfsg1
[rustc.git] / src / librustc_trans / debuginfo / type_names.rs
CommitLineData
d9579d0f
AL
1// Copyright 2015 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// Type Names for Debug Info.
12
54a0048b
SL
13use common::CrateContext;
14use rustc::hir::def_id::DefId;
9e0c209e 15use rustc::ty::subst::Substs;
54a0048b 16use rustc::ty::{self, Ty};
d9579d0f 17
54a0048b 18use rustc::hir;
d9579d0f
AL
19
20// Compute the name of the type as it should be stored in debuginfo. Does not do
21// any caching, i.e. calling the function twice with the same type will also do
22// the work twice. The `qualified` parameter only affects the first level of the
23// type name, further levels (i.e. type parameters) are always fully qualified.
24pub fn compute_debuginfo_type_name<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
25 t: Ty<'tcx>,
26 qualified: bool)
27 -> String {
28 let mut result = String::with_capacity(64);
29 push_debuginfo_type_name(cx, t, qualified, &mut result);
30 result
31}
32
33// Pushes the name of the type as it should be stored in debuginfo on the
34// `output` String. See also compute_debuginfo_type_name().
35pub fn push_debuginfo_type_name<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
36 t: Ty<'tcx>,
37 qualified: bool,
38 output: &mut String) {
39 match t.sty {
92a42be0
SL
40 ty::TyBool => output.push_str("bool"),
41 ty::TyChar => output.push_str("char"),
42 ty::TyStr => output.push_str("str"),
5bcae85e 43 ty::TyNever => output.push_str("!"),
9cc50fc6
SL
44 ty::TyInt(int_ty) => output.push_str(int_ty.ty_to_string()),
45 ty::TyUint(uint_ty) => output.push_str(uint_ty.ty_to_string()),
46 ty::TyFloat(float_ty) => output.push_str(float_ty.ty_to_string()),
9e0c209e 47 ty::TyAdt(def, substs) => {
e9174d1e 48 push_item_name(cx, def.did, qualified, output);
d9579d0f
AL
49 push_type_params(cx, substs, output);
50 },
a7813a04 51 ty::TyTuple(component_types) => {
d9579d0f
AL
52 output.push('(');
53 for &component_type in component_types {
54 push_debuginfo_type_name(cx, component_type, true, output);
55 output.push_str(", ");
56 }
57 if !component_types.is_empty() {
58 output.pop();
59 output.pop();
60 }
61 output.push(')');
62 },
62682a34 63 ty::TyBox(inner_type) => {
d9579d0f
AL
64 output.push_str("Box<");
65 push_debuginfo_type_name(cx, inner_type, true, output);
66 output.push('>');
67 },
c1a9b12d 68 ty::TyRawPtr(ty::TypeAndMut { ty: inner_type, mutbl } ) => {
d9579d0f
AL
69 output.push('*');
70 match mutbl {
e9174d1e
SL
71 hir::MutImmutable => output.push_str("const "),
72 hir::MutMutable => output.push_str("mut "),
d9579d0f
AL
73 }
74
75 push_debuginfo_type_name(cx, inner_type, true, output);
76 },
c1a9b12d 77 ty::TyRef(_, ty::TypeAndMut { ty: inner_type, mutbl }) => {
d9579d0f 78 output.push('&');
e9174d1e 79 if mutbl == hir::MutMutable {
d9579d0f
AL
80 output.push_str("mut ");
81 }
82
83 push_debuginfo_type_name(cx, inner_type, true, output);
84 },
62682a34
SL
85 ty::TyArray(inner_type, len) => {
86 output.push('[');
87 push_debuginfo_type_name(cx, inner_type, true, output);
88 output.push_str(&format!("; {}", len));
89 output.push(']');
90 },
91 ty::TySlice(inner_type) => {
d9579d0f
AL
92 output.push('[');
93 push_debuginfo_type_name(cx, inner_type, true, output);
d9579d0f
AL
94 output.push(']');
95 },
62682a34 96 ty::TyTrait(ref trait_data) => {
9e0c209e
SL
97 let principal = cx.tcx().erase_late_bound_regions_and_normalize(
98 &trait_data.principal);
d9579d0f
AL
99 push_item_name(cx, principal.def_id, false, output);
100 push_type_params(cx, principal.substs, output);
101 },
9e0c209e 102 ty::TyFnDef(.., &ty::BareFnTy{ unsafety, abi, ref sig } ) |
54a0048b 103 ty::TyFnPtr(&ty::BareFnTy{ unsafety, abi, ref sig } ) => {
e9174d1e 104 if unsafety == hir::Unsafety::Unsafe {
d9579d0f
AL
105 output.push_str("unsafe ");
106 }
107
54a0048b 108 if abi != ::abi::Abi::Rust {
d9579d0f
AL
109 output.push_str("extern \"");
110 output.push_str(abi.name());
111 output.push_str("\" ");
112 }
113
114 output.push_str("fn(");
115
9e0c209e 116 let sig = cx.tcx().erase_late_bound_regions_and_normalize(sig);
d9579d0f
AL
117 if !sig.inputs.is_empty() {
118 for &parameter_type in &sig.inputs {
119 push_debuginfo_type_name(cx, parameter_type, true, output);
120 output.push_str(", ");
121 }
122 output.pop();
123 output.pop();
124 }
125
126 if sig.variadic {
127 if !sig.inputs.is_empty() {
128 output.push_str(", ...");
129 } else {
130 output.push_str("...");
131 }
132 }
133
134 output.push(')');
135
5bcae85e
SL
136 if !sig.output.is_nil() {
137 output.push_str(" -> ");
138 push_debuginfo_type_name(cx, sig.output, true, output);
d9579d0f
AL
139 }
140 },
62682a34 141 ty::TyClosure(..) => {
d9579d0f
AL
142 output.push_str("closure");
143 }
62682a34
SL
144 ty::TyError |
145 ty::TyInfer(_) |
146 ty::TyProjection(..) |
5bcae85e 147 ty::TyAnon(..) |
62682a34 148 ty::TyParam(_) => {
54a0048b
SL
149 bug!("debuginfo: Trying to create type name for \
150 unexpected type: {:?}", t);
d9579d0f
AL
151 }
152 }
153
154 fn push_item_name(cx: &CrateContext,
e9174d1e 155 def_id: DefId,
d9579d0f
AL
156 qualified: bool,
157 output: &mut String) {
54a0048b
SL
158 if qualified {
159 output.push_str(&cx.tcx().crate_name(def_id.krate));
160 for path_element in cx.tcx().def_path(def_id).data {
161 output.push_str("::");
162 output.push_str(&path_element.data.as_interned_str());
d9579d0f 163 }
54a0048b
SL
164 } else {
165 output.push_str(&cx.tcx().item_name(def_id).as_str());
166 }
d9579d0f
AL
167 }
168
169 // Pushes the type parameters in the given `Substs` to the output string.
170 // This ignores region parameters, since they can't reliably be
171 // reconstructed for items from non-local crates. For local crates, this
172 // would be possible but with inlining and LTO we have to use the least
173 // common denominator - otherwise we would run into conflicts.
174 fn push_type_params<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
9e0c209e 175 substs: &Substs<'tcx>,
d9579d0f 176 output: &mut String) {
9e0c209e 177 if substs.types().next().is_none() {
d9579d0f
AL
178 return;
179 }
180
181 output.push('<');
182
9e0c209e 183 for type_parameter in substs.types() {
d9579d0f
AL
184 push_debuginfo_type_name(cx, type_parameter, true, output);
185 output.push_str(", ");
186 }
187
188 output.pop();
189 output.pop();
190
191 output.push('>');
192 }
193}