]> git.lizzy.rs Git - rust.git/blob - src/librustc/util/ppaux.rs
rustc: use DefId instead of CodeExtent for FreeRegion's scope.
[rust.git] / src / librustc / util / ppaux.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use hir::def_id::DefId;
12 use hir::map::definitions::DefPathData;
13 use ty::subst::{self, Subst};
14 use ty::{BrAnon, BrEnv, BrFresh, BrNamed};
15 use ty::{TyBool, TyChar, TyAdt};
16 use ty::{TyError, TyStr, TyArray, TySlice, TyFloat, TyFnDef, TyFnPtr};
17 use ty::{TyParam, TyRawPtr, TyRef, TyNever, TyTuple};
18 use ty::{TyClosure, TyProjection, TyAnon};
19 use ty::{TyDynamic, TyInt, TyUint, TyInfer};
20 use ty::{self, Ty, TyCtxt, TypeFoldable};
21
22 use std::cell::Cell;
23 use std::fmt;
24 use std::usize;
25
26 use syntax::abi::Abi;
27 use syntax::ast::CRATE_NODE_ID;
28 use syntax::symbol::Symbol;
29 use hir;
30
31 pub fn verbose() -> bool {
32     ty::tls::with(|tcx| tcx.sess.verbose())
33 }
34
35 fn fn_sig(f: &mut fmt::Formatter,
36           inputs: &[Ty],
37           variadic: bool,
38           output: Ty)
39           -> fmt::Result {
40     write!(f, "(")?;
41     let mut inputs = inputs.iter();
42     if let Some(&ty) = inputs.next() {
43         write!(f, "{}", ty)?;
44         for &ty in inputs {
45             write!(f, ", {}", ty)?;
46         }
47         if variadic {
48             write!(f, ", ...")?;
49         }
50     }
51     write!(f, ")")?;
52     if !output.is_nil() {
53         write!(f, " -> {}", output)?;
54     }
55
56     Ok(())
57 }
58
59 pub fn parameterized(f: &mut fmt::Formatter,
60                      substs: &subst::Substs,
61                      mut did: DefId,
62                      projections: &[ty::ProjectionPredicate])
63                      -> fmt::Result {
64     let key = ty::tls::with(|tcx| tcx.def_key(did));
65     let mut item_name = if let Some(name) = key.disambiguated_data.data.get_opt_name() {
66         Some(name)
67     } else {
68         did.index = key.parent.unwrap_or_else(
69             || bug!("finding type for {:?}, encountered def-id {:?} with no parent",
70                     did, did));
71         parameterized(f, substs, did, projections)?;
72         return write!(f, "::{}", key.disambiguated_data.data.as_interned_str());
73     };
74
75     let mut verbose = false;
76     let mut num_supplied_defaults = 0;
77     let mut has_self = false;
78     let mut num_regions = 0;
79     let mut num_types = 0;
80     let mut is_value_path = false;
81     let fn_trait_kind = ty::tls::with(|tcx| {
82         // Unfortunately, some kinds of items (e.g., closures) don't have
83         // generics. So walk back up the find the closest parent that DOES
84         // have them.
85         let mut item_def_id = did;
86         loop {
87             let key = tcx.def_key(item_def_id);
88             match key.disambiguated_data.data {
89                 DefPathData::TypeNs(_) => {
90                     break;
91                 }
92                 DefPathData::ValueNs(_) | DefPathData::EnumVariant(_) => {
93                     is_value_path = true;
94                     break;
95                 }
96                 _ => {
97                     // if we're making a symbol for something, there ought
98                     // to be a value or type-def or something in there
99                     // *somewhere*
100                     item_def_id.index = key.parent.unwrap_or_else(|| {
101                         bug!("finding type for {:?}, encountered def-id {:?} with no \
102                              parent", did, item_def_id);
103                     });
104                 }
105             }
106         }
107         let mut generics = tcx.generics_of(item_def_id);
108         let mut path_def_id = did;
109         verbose = tcx.sess.verbose();
110         has_self = generics.has_self;
111
112         let mut child_types = 0;
113         if let Some(def_id) = generics.parent {
114             // Methods.
115             assert!(is_value_path);
116             child_types = generics.types.len();
117             generics = tcx.generics_of(def_id);
118             num_regions = generics.regions.len();
119             num_types = generics.types.len();
120
121             if has_self {
122                 write!(f, "<{} as ", substs.type_at(0))?;
123             }
124
125             path_def_id = def_id;
126         } else {
127             item_name = None;
128
129             if is_value_path {
130                 // Functions.
131                 assert_eq!(has_self, false);
132             } else {
133                 // Types and traits.
134                 num_regions = generics.regions.len();
135                 num_types = generics.types.len();
136             }
137         }
138
139         if !verbose {
140             if generics.types.last().map_or(false, |def| def.has_default) {
141                 if let Some(substs) = tcx.lift(&substs) {
142                     let tps = substs.types().rev().skip(child_types);
143                     for (def, actual) in generics.types.iter().rev().zip(tps) {
144                         if !def.has_default {
145                             break;
146                         }
147                         if tcx.type_of(def.def_id).subst(tcx, substs) != actual {
148                             break;
149                         }
150                         num_supplied_defaults += 1;
151                     }
152                 }
153             }
154         }
155
156         write!(f, "{}", tcx.item_path_str(path_def_id))?;
157         Ok(tcx.lang_items.fn_trait_kind(path_def_id))
158     })?;
159
160     if !verbose && fn_trait_kind.is_some() && projections.len() == 1 {
161         let projection_ty = projections[0].ty;
162         if let TyTuple(ref args, _) = substs.type_at(1).sty {
163             return fn_sig(f, args, false, projection_ty);
164         }
165     }
166
167     let empty = Cell::new(true);
168     let start_or_continue = |f: &mut fmt::Formatter, start: &str, cont: &str| {
169         if empty.get() {
170             empty.set(false);
171             write!(f, "{}", start)
172         } else {
173             write!(f, "{}", cont)
174         }
175     };
176
177     let print_regions = |f: &mut fmt::Formatter, start: &str, skip, count| {
178         // Don't print any regions if they're all erased.
179         let regions = || substs.regions().skip(skip).take(count);
180         if regions().all(|r: ty::Region| *r == ty::ReErased) {
181             return Ok(());
182         }
183
184         for region in regions() {
185             let region: ty::Region = region;
186             start_or_continue(f, start, ", ")?;
187             if verbose {
188                 write!(f, "{:?}", region)?;
189             } else {
190                 let s = region.to_string();
191                 if s.is_empty() {
192                     // This happens when the value of the region
193                     // parameter is not easily serialized. This may be
194                     // because the user omitted it in the first place,
195                     // or because it refers to some block in the code,
196                     // etc. I'm not sure how best to serialize this.
197                     write!(f, "'_")?;
198                 } else {
199                     write!(f, "{}", s)?;
200                 }
201             }
202         }
203
204         Ok(())
205     };
206
207     print_regions(f, "<", 0, num_regions)?;
208
209     let tps = substs.types().take(num_types - num_supplied_defaults)
210                             .skip(has_self as usize);
211
212     for ty in tps {
213         start_or_continue(f, "<", ", ")?;
214         write!(f, "{}", ty)?;
215     }
216
217     for projection in projections {
218         start_or_continue(f, "<", ", ")?;
219         write!(f, "{}={}",
220                projection.projection_ty.item_name,
221                projection.ty)?;
222     }
223
224     start_or_continue(f, "", ">")?;
225
226     // For values, also print their name and type parameters.
227     if is_value_path {
228         empty.set(true);
229
230         if has_self {
231             write!(f, ">")?;
232         }
233
234         if let Some(item_name) = item_name {
235             write!(f, "::{}", item_name)?;
236         }
237
238         print_regions(f, "::<", num_regions, usize::MAX)?;
239
240         // FIXME: consider being smart with defaults here too
241         for ty in substs.types().skip(num_types) {
242             start_or_continue(f, "::<", ", ")?;
243             write!(f, "{}", ty)?;
244         }
245
246         start_or_continue(f, "", ">")?;
247     }
248
249     Ok(())
250 }
251
252 fn in_binder<'a, 'gcx, 'tcx, T, U>(f: &mut fmt::Formatter,
253                                    tcx: TyCtxt<'a, 'gcx, 'tcx>,
254                                    original: &ty::Binder<T>,
255                                    lifted: Option<ty::Binder<U>>) -> fmt::Result
256     where T: fmt::Display, U: fmt::Display + TypeFoldable<'tcx>
257 {
258     // Replace any anonymous late-bound regions with named
259     // variants, using gensym'd identifiers, so that we can
260     // clearly differentiate between named and unnamed regions in
261     // the output. We'll probably want to tweak this over time to
262     // decide just how much information to give.
263     let value = if let Some(v) = lifted {
264         v
265     } else {
266         return write!(f, "{}", original.0);
267     };
268
269     let mut empty = true;
270     let mut start_or_continue = |f: &mut fmt::Formatter, start: &str, cont: &str| {
271         if empty {
272             empty = false;
273             write!(f, "{}", start)
274         } else {
275             write!(f, "{}", cont)
276         }
277     };
278
279     let new_value = tcx.replace_late_bound_regions(&value, |br| {
280         let _ = start_or_continue(f, "for<", ", ");
281         let br = match br {
282             ty::BrNamed(_, name) => {
283                 let _ = write!(f, "{}", name);
284                 br
285             }
286             ty::BrAnon(_) |
287             ty::BrFresh(_) |
288             ty::BrEnv => {
289                 let name = Symbol::intern("'r");
290                 let _ = write!(f, "{}", name);
291                 ty::BrNamed(tcx.hir.local_def_id(CRATE_NODE_ID),
292                             name)
293             }
294         };
295         tcx.mk_region(ty::ReLateBound(ty::DebruijnIndex::new(1), br))
296     }).0;
297
298     start_or_continue(f, "", "> ")?;
299     write!(f, "{}", new_value)
300 }
301
302 impl<'tcx> fmt::Display for &'tcx ty::Slice<ty::ExistentialPredicate<'tcx>> {
303     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
304         // Generate the main trait ref, including associated types.
305         ty::tls::with(|tcx| {
306             // Use a type that can't appear in defaults of type parameters.
307             let dummy_self = tcx.mk_infer(ty::FreshTy(0));
308
309             if let Some(p) = self.principal() {
310                 let principal = tcx.lift(&p).expect("could not lift TraitRef for printing")
311                     .with_self_ty(tcx, dummy_self);
312                 let projections = self.projection_bounds().map(|p| {
313                     tcx.lift(&p)
314                         .expect("could not lift projection for printing")
315                         .with_self_ty(tcx, dummy_self)
316                 }).collect::<Vec<_>>();
317                 parameterized(f, principal.substs, principal.def_id, &projections)?;
318             }
319
320             // Builtin bounds.
321             for did in self.auto_traits() {
322                 write!(f, " + {}", tcx.item_path_str(did))?;
323             }
324
325             Ok(())
326         })?;
327
328         Ok(())
329     }
330 }
331
332 impl fmt::Debug for ty::TypeParameterDef {
333     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
334         write!(f, "TypeParameterDef({}, {:?}, {})",
335                self.name,
336                self.def_id,
337                self.index)
338     }
339 }
340
341 impl fmt::Debug for ty::RegionParameterDef {
342     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
343         write!(f, "RegionParameterDef({}, {:?}, {})",
344                self.name,
345                self.def_id,
346                self.index)
347     }
348 }
349
350 impl<'tcx> fmt::Debug for ty::TyS<'tcx> {
351     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
352         write!(f, "{}", *self)
353     }
354 }
355
356 impl<'tcx> fmt::Display for ty::TypeAndMut<'tcx> {
357     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
358         write!(f, "{}{}",
359                if self.mutbl == hir::MutMutable { "mut " } else { "" },
360                self.ty)
361     }
362 }
363
364 impl<'tcx> fmt::Debug for ty::ItemSubsts<'tcx> {
365     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
366         write!(f, "ItemSubsts({:?})", self.substs)
367     }
368 }
369
370 impl<'tcx> fmt::Debug for ty::TraitRef<'tcx> {
371     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
372         // when printing out the debug representation, we don't need
373         // to enumerate the `for<...>` etc because the debruijn index
374         // tells you everything you need to know.
375         write!(f, "<{:?} as {}>", self.self_ty(), *self)
376     }
377 }
378
379 impl<'tcx> fmt::Debug for ty::ExistentialTraitRef<'tcx> {
380     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
381         ty::tls::with(|tcx| {
382             let dummy_self = tcx.mk_infer(ty::FreshTy(0));
383
384             let trait_ref = tcx.lift(&ty::Binder(*self))
385                                .expect("could not lift TraitRef for printing")
386                                .with_self_ty(tcx, dummy_self).0;
387             parameterized(f, trait_ref.substs, trait_ref.def_id, &[])
388         })
389     }
390 }
391
392 impl fmt::Debug for ty::TraitDef {
393     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
394         ty::tls::with(|tcx| {
395             write!(f, "{}", tcx.item_path_str(self.def_id))
396         })
397     }
398 }
399
400 impl fmt::Debug for ty::AdtDef {
401     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
402         ty::tls::with(|tcx| {
403             write!(f, "{}", tcx.item_path_str(self.did))
404         })
405     }
406 }
407
408 impl<'tcx> fmt::Debug for ty::adjustment::Adjustment<'tcx> {
409     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
410         write!(f, "{:?} -> {}", self.kind, self.target)
411     }
412 }
413
414 impl<'tcx> fmt::Debug for ty::Predicate<'tcx> {
415     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
416         match *self {
417             ty::Predicate::Trait(ref a) => write!(f, "{:?}", a),
418             ty::Predicate::Equate(ref pair) => write!(f, "{:?}", pair),
419             ty::Predicate::Subtype(ref pair) => write!(f, "{:?}", pair),
420             ty::Predicate::RegionOutlives(ref pair) => write!(f, "{:?}", pair),
421             ty::Predicate::TypeOutlives(ref pair) => write!(f, "{:?}", pair),
422             ty::Predicate::Projection(ref pair) => write!(f, "{:?}", pair),
423             ty::Predicate::WellFormed(ty) => write!(f, "WF({:?})", ty),
424             ty::Predicate::ObjectSafe(trait_def_id) => {
425                 write!(f, "ObjectSafe({:?})", trait_def_id)
426             }
427             ty::Predicate::ClosureKind(closure_def_id, kind) => {
428                 write!(f, "ClosureKind({:?}, {:?})", closure_def_id, kind)
429             }
430         }
431     }
432 }
433
434 impl fmt::Display for ty::BoundRegion {
435     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
436         if verbose() {
437             return write!(f, "{:?}", *self);
438         }
439
440         match *self {
441             BrNamed(_, name) => write!(f, "{}", name),
442             BrAnon(_) | BrFresh(_) | BrEnv => Ok(())
443         }
444     }
445 }
446
447 impl fmt::Debug for ty::BoundRegion {
448     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
449         match *self {
450             BrAnon(n) => write!(f, "BrAnon({:?})", n),
451             BrFresh(n) => write!(f, "BrFresh({:?})", n),
452             BrNamed(did, name) => {
453                 write!(f, "BrNamed({:?}:{:?}, {:?})",
454                        did.krate, did.index, name)
455             }
456             BrEnv => "BrEnv".fmt(f),
457         }
458     }
459 }
460
461 impl<'tcx> fmt::Debug for ty::RegionKind<'tcx> {
462     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
463         match *self {
464             ty::ReEarlyBound(ref data) => {
465                 write!(f, "ReEarlyBound({}, {})",
466                        data.index,
467                        data.name)
468             }
469
470             ty::ReLateBound(binder_id, ref bound_region) => {
471                 write!(f, "ReLateBound({:?}, {:?})",
472                        binder_id,
473                        bound_region)
474             }
475
476             ty::ReFree(ref fr) => write!(f, "{:?}", fr),
477
478             ty::ReScope(id) => {
479                 write!(f, "ReScope({:?})", id)
480             }
481
482             ty::ReStatic => write!(f, "ReStatic"),
483
484             ty::ReVar(ref vid) => {
485                 write!(f, "{:?}", vid)
486             }
487
488             ty::ReSkolemized(id, ref bound_region) => {
489                 write!(f, "ReSkolemized({}, {:?})", id.index, bound_region)
490             }
491
492             ty::ReEmpty => write!(f, "ReEmpty"),
493
494             ty::ReErased => write!(f, "ReErased")
495         }
496     }
497 }
498
499 impl<'tcx> fmt::Debug for ty::ClosureUpvar<'tcx> {
500     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
501         write!(f, "ClosureUpvar({:?},{:?})",
502                self.def,
503                self.ty)
504     }
505 }
506
507 impl<'tcx> fmt::Debug for ty::ParameterEnvironment<'tcx> {
508     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
509         write!(f, "ParameterEnvironment(\
510             free_substs={:?}, \
511             caller_bounds={:?})",
512             self.free_substs,
513             self.caller_bounds)
514     }
515 }
516
517 impl<'tcx> fmt::Display for ty::RegionKind<'tcx> {
518     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
519         if verbose() {
520             return write!(f, "{:?}", *self);
521         }
522
523         // These printouts are concise.  They do not contain all the information
524         // the user might want to diagnose an error, but there is basically no way
525         // to fit that into a short string.  Hence the recommendation to use
526         // `explain_region()` or `note_and_explain_region()`.
527         match *self {
528             ty::ReEarlyBound(ref data) => {
529                 write!(f, "{}", data.name)
530             }
531             ty::ReLateBound(_, br) |
532             ty::ReFree(ty::FreeRegion { bound_region: br, .. }) |
533             ty::ReSkolemized(_, br) => {
534                 write!(f, "{}", br)
535             }
536             ty::ReScope(_) |
537             ty::ReVar(_) |
538             ty::ReErased => Ok(()),
539             ty::ReStatic => write!(f, "'static"),
540             ty::ReEmpty => write!(f, "'<empty>"),
541         }
542     }
543 }
544
545 impl fmt::Debug for ty::FreeRegion {
546     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
547         write!(f, "ReFree({:?}, {:?})",
548                self.scope, self.bound_region)
549     }
550 }
551
552 impl fmt::Debug for ty::Variance {
553     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
554         f.write_str(match *self {
555             ty::Covariant => "+",
556             ty::Contravariant => "-",
557             ty::Invariant => "o",
558             ty::Bivariant => "*",
559         })
560     }
561 }
562
563 impl<'tcx> fmt::Debug for ty::GenericPredicates<'tcx> {
564     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
565         write!(f, "GenericPredicates({:?})", self.predicates)
566     }
567 }
568
569 impl<'tcx> fmt::Debug for ty::InstantiatedPredicates<'tcx> {
570     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
571         write!(f, "InstantiatedPredicates({:?})",
572                self.predicates)
573     }
574 }
575
576 impl<'tcx> fmt::Display for ty::FnSig<'tcx> {
577     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
578         if self.unsafety == hir::Unsafety::Unsafe {
579             write!(f, "unsafe ")?;
580         }
581
582         if self.abi != Abi::Rust {
583             write!(f, "extern {} ", self.abi)?;
584         }
585
586         write!(f, "fn")?;
587         fn_sig(f, self.inputs(), self.variadic, self.output())
588     }
589 }
590
591 impl fmt::Debug for ty::TyVid {
592     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
593         write!(f, "_#{}t", self.index)
594     }
595 }
596
597 impl fmt::Debug for ty::IntVid {
598     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
599         write!(f, "_#{}i", self.index)
600     }
601 }
602
603 impl fmt::Debug for ty::FloatVid {
604     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
605         write!(f, "_#{}f", self.index)
606     }
607 }
608
609 impl fmt::Debug for ty::RegionVid {
610     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
611         write!(f, "'_#{}r", self.index)
612     }
613 }
614
615 impl<'tcx> fmt::Debug for ty::FnSig<'tcx> {
616     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
617         write!(f, "({:?}; variadic: {})->{:?}", self.inputs(), self.variadic, self.output())
618     }
619 }
620
621 impl fmt::Debug for ty::InferTy {
622     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
623         match *self {
624             ty::TyVar(ref v) => v.fmt(f),
625             ty::IntVar(ref v) => v.fmt(f),
626             ty::FloatVar(ref v) => v.fmt(f),
627             ty::FreshTy(v) => write!(f, "FreshTy({:?})", v),
628             ty::FreshIntTy(v) => write!(f, "FreshIntTy({:?})", v),
629             ty::FreshFloatTy(v) => write!(f, "FreshFloatTy({:?})", v)
630         }
631     }
632 }
633
634 impl fmt::Debug for ty::IntVarValue {
635     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
636         match *self {
637             ty::IntType(ref v) => v.fmt(f),
638             ty::UintType(ref v) => v.fmt(f),
639         }
640     }
641 }
642
643 // The generic impl doesn't work yet because projections are not
644 // normalized under HRTB.
645 /*impl<T> fmt::Display for ty::Binder<T>
646     where T: fmt::Display + for<'a> ty::Lift<'a>,
647           for<'a> <T as ty::Lift<'a>>::Lifted: fmt::Display + TypeFoldable<'a>
648 {
649     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
650         ty::tls::with(|tcx| in_binder(f, tcx, self, tcx.lift(self)))
651     }
652 }*/
653
654 impl<'tcx> fmt::Display for ty::Binder<&'tcx ty::Slice<ty::ExistentialPredicate<'tcx>>> {
655     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
656         ty::tls::with(|tcx| in_binder(f, tcx, self, tcx.lift(self)))
657     }
658 }
659
660 impl<'tcx> fmt::Display for ty::Binder<ty::TraitRef<'tcx>> {
661     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
662         ty::tls::with(|tcx| in_binder(f, tcx, self, tcx.lift(self)))
663     }
664 }
665
666 impl<'tcx> fmt::Display for ty::Binder<ty::TraitPredicate<'tcx>> {
667     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
668         ty::tls::with(|tcx| in_binder(f, tcx, self, tcx.lift(self)))
669     }
670 }
671
672 impl<'tcx> fmt::Display for ty::Binder<ty::EquatePredicate<'tcx>> {
673     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
674         ty::tls::with(|tcx| in_binder(f, tcx, self, tcx.lift(self)))
675     }
676 }
677
678 impl<'tcx> fmt::Display for ty::Binder<ty::SubtypePredicate<'tcx>> {
679     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
680         ty::tls::with(|tcx| in_binder(f, tcx, self, tcx.lift(self)))
681     }
682 }
683
684 impl<'tcx> fmt::Display for ty::Binder<ty::ProjectionPredicate<'tcx>> {
685     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
686         ty::tls::with(|tcx| in_binder(f, tcx, self, tcx.lift(self)))
687     }
688 }
689
690 impl<'tcx> fmt::Display for ty::Binder<ty::OutlivesPredicate<Ty<'tcx>, ty::Region<'tcx>>> {
691     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
692         ty::tls::with(|tcx| in_binder(f, tcx, self, tcx.lift(self)))
693     }
694 }
695
696 impl<'tcx> fmt::Display for ty::Binder<ty::OutlivesPredicate<ty::Region<'tcx>,
697                                                              ty::Region<'tcx>>> {
698     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
699         ty::tls::with(|tcx| in_binder(f, tcx, self, tcx.lift(self)))
700     }
701 }
702
703 impl<'tcx> fmt::Display for ty::TraitRef<'tcx> {
704     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
705         parameterized(f, self.substs, self.def_id, &[])
706     }
707 }
708
709 impl<'tcx> fmt::Display for ty::TypeVariants<'tcx> {
710     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
711         match *self {
712             TyBool => write!(f, "bool"),
713             TyChar => write!(f, "char"),
714             TyInt(t) => write!(f, "{}", t.ty_to_string()),
715             TyUint(t) => write!(f, "{}", t.ty_to_string()),
716             TyFloat(t) => write!(f, "{}", t.ty_to_string()),
717             TyRawPtr(ref tm) => {
718                 write!(f, "*{} {}", match tm.mutbl {
719                     hir::MutMutable => "mut",
720                     hir::MutImmutable => "const",
721                 },  tm.ty)
722             }
723             TyRef(r, ref tm) => {
724                 write!(f, "&")?;
725                 let s = r.to_string();
726                 write!(f, "{}", s)?;
727                 if !s.is_empty() {
728                     write!(f, " ")?;
729                 }
730                 write!(f, "{}", tm)
731             }
732             TyNever => write!(f, "!"),
733             TyTuple(ref tys, _) => {
734                 write!(f, "(")?;
735                 let mut tys = tys.iter();
736                 if let Some(&ty) = tys.next() {
737                     write!(f, "{},", ty)?;
738                     if let Some(&ty) = tys.next() {
739                         write!(f, " {}", ty)?;
740                         for &ty in tys {
741                             write!(f, ", {}", ty)?;
742                         }
743                     }
744                 }
745                 write!(f, ")")
746             }
747             TyFnDef(def_id, substs, ref bare_fn) => {
748                 write!(f, "{} {{", bare_fn.0)?;
749                 parameterized(f, substs, def_id, &[])?;
750                 write!(f, "}}")
751             }
752             TyFnPtr(ref bare_fn) => {
753                 write!(f, "{}", bare_fn.0)
754             }
755             TyInfer(infer_ty) => write!(f, "{}", infer_ty),
756             TyError => write!(f, "[type error]"),
757             TyParam(ref param_ty) => write!(f, "{}", param_ty),
758             TyAdt(def, substs) => parameterized(f, substs, def.did, &[]),
759             TyDynamic(data, r) => {
760                 write!(f, "{}", data)?;
761                 let r = r.to_string();
762                 if !r.is_empty() {
763                     write!(f, " + {}", r)
764                 } else {
765                     Ok(())
766                 }
767             }
768             TyProjection(ref data) => write!(f, "{}", data),
769             TyAnon(def_id, substs) => {
770                 ty::tls::with(|tcx| {
771                     // Grab the "TraitA + TraitB" from `impl TraitA + TraitB`,
772                     // by looking up the projections associated with the def_id.
773                     let predicates_of = tcx.predicates_of(def_id);
774                     let substs = tcx.lift(&substs).unwrap_or_else(|| {
775                         tcx.intern_substs(&[])
776                     });
777                     let bounds = predicates_of.instantiate(tcx, substs);
778
779                     let mut first = true;
780                     let mut is_sized = false;
781                     write!(f, "impl")?;
782                     for predicate in bounds.predicates {
783                         if let Some(trait_ref) = predicate.to_opt_poly_trait_ref() {
784                             // Don't print +Sized, but rather +?Sized if absent.
785                             if Some(trait_ref.def_id()) == tcx.lang_items.sized_trait() {
786                                 is_sized = true;
787                                 continue;
788                             }
789
790                             write!(f, "{}{}", if first { " " } else { "+" }, trait_ref)?;
791                             first = false;
792                         }
793                     }
794                     if !is_sized {
795                         write!(f, "{}?Sized", if first { " " } else { "+" })?;
796                     }
797                     Ok(())
798                 })
799             }
800             TyStr => write!(f, "str"),
801             TyClosure(did, substs) => ty::tls::with(|tcx| {
802                 let upvar_tys = substs.upvar_tys(did, tcx);
803                 write!(f, "[closure")?;
804
805                 if let Some(node_id) = tcx.hir.as_local_node_id(did) {
806                     write!(f, "@{:?}", tcx.hir.span(node_id))?;
807                     let mut sep = " ";
808                     tcx.with_freevars(node_id, |freevars| {
809                         for (freevar, upvar_ty) in freevars.iter().zip(upvar_tys) {
810                             let def_id = freevar.def.def_id();
811                             let node_id = tcx.hir.as_local_node_id(def_id).unwrap();
812                             write!(f,
813                                         "{}{}:{}",
814                                         sep,
815                                         tcx.local_var_name_str(node_id),
816                                         upvar_ty)?;
817                             sep = ", ";
818                         }
819                         Ok(())
820                     })?
821                 } else {
822                     // cross-crate closure types should only be
823                     // visible in trans bug reports, I imagine.
824                     write!(f, "@{:?}", did)?;
825                     let mut sep = " ";
826                     for (index, upvar_ty) in upvar_tys.enumerate() {
827                         write!(f, "{}{}:{}", sep, index, upvar_ty)?;
828                         sep = ", ";
829                     }
830                 }
831
832                 write!(f, "]")
833             }),
834             TyArray(ty, sz) => write!(f, "[{}; {}]",  ty, sz),
835             TySlice(ty) => write!(f, "[{}]",  ty)
836         }
837     }
838 }
839
840 impl<'tcx> fmt::Display for ty::TyS<'tcx> {
841     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
842         write!(f, "{}", self.sty)
843     }
844 }
845
846 impl fmt::Debug for ty::UpvarId {
847     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
848         write!(f, "UpvarId({};`{}`;{})",
849                self.var_id,
850                ty::tls::with(|tcx| tcx.local_var_name_str(self.var_id)),
851                self.closure_expr_id)
852     }
853 }
854
855 impl<'tcx> fmt::Debug for ty::UpvarBorrow<'tcx> {
856     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
857         write!(f, "UpvarBorrow({:?}, {:?})",
858                self.kind, self.region)
859     }
860 }
861
862 impl fmt::Display for ty::InferTy {
863     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
864         let print_var_ids = verbose();
865         match *self {
866             ty::TyVar(ref vid) if print_var_ids => write!(f, "{:?}", vid),
867             ty::IntVar(ref vid) if print_var_ids => write!(f, "{:?}", vid),
868             ty::FloatVar(ref vid) if print_var_ids => write!(f, "{:?}", vid),
869             ty::TyVar(_) => write!(f, "_"),
870             ty::IntVar(_) => write!(f, "{}", "{integer}"),
871             ty::FloatVar(_) => write!(f, "{}", "{float}"),
872             ty::FreshTy(v) => write!(f, "FreshTy({})", v),
873             ty::FreshIntTy(v) => write!(f, "FreshIntTy({})", v),
874             ty::FreshFloatTy(v) => write!(f, "FreshFloatTy({})", v)
875         }
876     }
877 }
878
879 impl fmt::Display for ty::ParamTy {
880     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
881         write!(f, "{}", self.name)
882     }
883 }
884
885 impl fmt::Debug for ty::ParamTy {
886     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
887         write!(f, "{}/#{}", self, self.idx)
888     }
889 }
890
891 impl<'tcx, T, U> fmt::Display for ty::OutlivesPredicate<T,U>
892     where T: fmt::Display, U: fmt::Display
893 {
894     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
895         write!(f, "{} : {}", self.0, self.1)
896     }
897 }
898
899 impl<'tcx> fmt::Display for ty::EquatePredicate<'tcx> {
900     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
901         write!(f, "{} == {}", self.0, self.1)
902     }
903 }
904
905 impl<'tcx> fmt::Display for ty::SubtypePredicate<'tcx> {
906     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
907         write!(f, "{} <: {}", self.a, self.b)
908     }
909 }
910
911 impl<'tcx> fmt::Debug for ty::TraitPredicate<'tcx> {
912     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
913         write!(f, "TraitPredicate({:?})",
914                self.trait_ref)
915     }
916 }
917
918 impl<'tcx> fmt::Display for ty::TraitPredicate<'tcx> {
919     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
920         write!(f, "{}: {}", self.trait_ref.self_ty(), self.trait_ref)
921     }
922 }
923
924 impl<'tcx> fmt::Debug for ty::ProjectionPredicate<'tcx> {
925     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
926         write!(f, "ProjectionPredicate({:?}, {:?})",
927                self.projection_ty,
928                self.ty)
929     }
930 }
931
932 impl<'tcx> fmt::Display for ty::ProjectionPredicate<'tcx> {
933     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
934         write!(f, "{} == {}",
935                self.projection_ty,
936                self.ty)
937     }
938 }
939
940 impl<'tcx> fmt::Display for ty::ProjectionTy<'tcx> {
941     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
942         write!(f, "{:?}::{}",
943                self.trait_ref,
944                self.item_name)
945     }
946 }
947
948 impl fmt::Display for ty::ClosureKind {
949     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
950         match *self {
951             ty::ClosureKind::Fn => write!(f, "Fn"),
952             ty::ClosureKind::FnMut => write!(f, "FnMut"),
953             ty::ClosureKind::FnOnce => write!(f, "FnOnce"),
954         }
955     }
956 }
957
958 impl<'tcx> fmt::Display for ty::Predicate<'tcx> {
959     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
960         match *self {
961             ty::Predicate::Trait(ref data) => write!(f, "{}", data),
962             ty::Predicate::Equate(ref predicate) => write!(f, "{}", predicate),
963             ty::Predicate::Subtype(ref predicate) => write!(f, "{}", predicate),
964             ty::Predicate::RegionOutlives(ref predicate) => write!(f, "{}", predicate),
965             ty::Predicate::TypeOutlives(ref predicate) => write!(f, "{}", predicate),
966             ty::Predicate::Projection(ref predicate) => write!(f, "{}", predicate),
967             ty::Predicate::WellFormed(ty) => write!(f, "{} well-formed", ty),
968             ty::Predicate::ObjectSafe(trait_def_id) =>
969                 ty::tls::with(|tcx| {
970                     write!(f, "the trait `{}` is object-safe", tcx.item_path_str(trait_def_id))
971                 }),
972             ty::Predicate::ClosureKind(closure_def_id, kind) =>
973                 ty::tls::with(|tcx| {
974                     write!(f, "the closure `{}` implements the trait `{}`",
975                            tcx.item_path_str(closure_def_id), kind)
976                 }),
977         }
978     }
979 }