]> git.lizzy.rs Git - rust.git/blob - src/librustc/hir/map/mod.rs
ea18a73577cf069fc975cf5991c962d8f8b42acf
[rust.git] / src / librustc / hir / map / mod.rs
1 use self::collector::NodeCollector;
2 pub use self::def_collector::{DefCollector, MacroInvocationData};
3 pub use self::definitions::{
4     Definitions, DefKey, DefPath, DefPathData, DisambiguatedDefPathData, DefPathHash
5 };
6
7 use crate::dep_graph::{DepGraph, DepNode, DepKind, DepNodeIndex};
8
9 use crate::hir::def_id::{CRATE_DEF_INDEX, DefId, LocalDefId};
10
11 use crate::middle::cstore::CrateStoreDyn;
12
13 use rustc_target::spec::abi::Abi;
14 use rustc_data_structures::svh::Svh;
15 use rustc_data_structures::indexed_vec::IndexVec;
16 use syntax::ast::{self, Name, NodeId};
17 use syntax::source_map::Spanned;
18 use syntax::ext::base::MacroKind;
19 use syntax_pos::{Span, DUMMY_SP};
20
21 use crate::hir::*;
22 use crate::hir::DefKind;
23 use crate::hir::itemlikevisit::ItemLikeVisitor;
24 use crate::hir::print::Nested;
25 use crate::util::nodemap::FxHashMap;
26 use crate::util::common::time;
27
28 use std::io;
29 use std::result::Result::Err;
30 use crate::ty::query::Providers;
31
32 pub mod blocks;
33 mod collector;
34 mod def_collector;
35 pub mod definitions;
36 mod hir_id_validator;
37
38 /// Represents an entry and its parent `HirId`.
39 #[derive(Copy, Clone, Debug)]
40 pub struct Entry<'hir> {
41     parent: HirId,
42     dep_node: DepNodeIndex,
43     node: Node<'hir>,
44 }
45
46 impl<'hir> Entry<'hir> {
47     fn parent_node(self) -> Option<HirId> {
48         match self.node {
49             Node::Crate | Node::MacroDef(_) => None,
50             _ => Some(self.parent),
51         }
52     }
53
54     fn fn_decl(&self) -> Option<&'hir FnDecl> {
55         match self.node {
56             Node::Item(ref item) => {
57                 match item.node {
58                     ItemKind::Fn(ref fn_decl, _, _, _) => Some(fn_decl),
59                     _ => None,
60                 }
61             }
62
63             Node::TraitItem(ref item) => {
64                 match item.node {
65                     TraitItemKind::Method(ref method_sig, _) => Some(&method_sig.decl),
66                     _ => None
67                 }
68             }
69
70             Node::ImplItem(ref item) => {
71                 match item.node {
72                     ImplItemKind::Method(ref method_sig, _) => Some(&method_sig.decl),
73                     _ => None,
74                 }
75             }
76
77             Node::Expr(ref expr) => {
78                 match expr.node {
79                     ExprKind::Closure(_, ref fn_decl, ..) => Some(fn_decl),
80                     _ => None,
81                 }
82             }
83
84             _ => None,
85         }
86     }
87
88     fn associated_body(self) -> Option<BodyId> {
89         match self.node {
90             Node::Item(item) => {
91                 match item.node {
92                     ItemKind::Const(_, body) |
93                     ItemKind::Static(.., body) |
94                     ItemKind::Fn(_, _, _, body) => Some(body),
95                     _ => None,
96                 }
97             }
98
99             Node::TraitItem(item) => {
100                 match item.node {
101                     TraitItemKind::Const(_, Some(body)) |
102                     TraitItemKind::Method(_, TraitMethod::Provided(body)) => Some(body),
103                     _ => None
104                 }
105             }
106
107             Node::ImplItem(item) => {
108                 match item.node {
109                     ImplItemKind::Const(_, body) |
110                     ImplItemKind::Method(_, body) => Some(body),
111                     _ => None,
112                 }
113             }
114
115             Node::AnonConst(constant) => Some(constant.body),
116
117             Node::Expr(expr) => {
118                 match expr.node {
119                     ExprKind::Closure(.., body, _, _) => Some(body),
120                     _ => None,
121                 }
122             }
123
124             _ => None
125         }
126     }
127
128     fn is_body_owner(self, hir_id: HirId) -> bool {
129         match self.associated_body() {
130             Some(b) => b.hir_id == hir_id,
131             None => false,
132         }
133     }
134 }
135
136 /// Stores a crate and any number of inlined items from other crates.
137 pub struct Forest {
138     krate: Crate,
139     pub dep_graph: DepGraph,
140 }
141
142 impl Forest {
143     pub fn new(krate: Crate, dep_graph: &DepGraph) -> Forest {
144         Forest {
145             krate,
146             dep_graph: dep_graph.clone(),
147         }
148     }
149
150     pub fn krate<'hir>(&'hir self) -> &'hir Crate {
151         self.dep_graph.read(DepNode::new_no_params(DepKind::Krate));
152         &self.krate
153     }
154
155     /// This is used internally in the dependency tracking system.
156     /// Use the `krate` method to ensure your dependency on the
157     /// crate is tracked.
158     pub fn untracked_krate<'hir>(&'hir self) -> &'hir Crate {
159         &self.krate
160     }
161 }
162
163 /// This type is effectively a `HashMap<HirId, Entry<'hir>>`,
164 /// but it is implemented as 2 layers of arrays.
165 /// - first we have `A = Vec<Option<B>>` mapping a `DefIndex`'s index to an inner value
166 /// - which is `B = IndexVec<ItemLocalId, Option<Entry<'hir>>` which gives you the `Entry`.
167 pub(super) type HirEntryMap<'hir> = Vec<Option<IndexVec<ItemLocalId, Option<Entry<'hir>>>>>;
168
169 /// Represents a mapping from `NodeId`s to AST elements and their parent `NodeId`s.
170 #[derive(Clone)]
171 pub struct Map<'hir> {
172     /// The backing storage for all the AST nodes.
173     pub forest: &'hir Forest,
174
175     /// Same as the dep_graph in forest, just available with one fewer
176     /// deref. This is a gratuitous micro-optimization.
177     pub dep_graph: DepGraph,
178
179     /// The SVH of the local crate.
180     pub crate_hash: Svh,
181
182     map: HirEntryMap<'hir>,
183
184     definitions: &'hir Definitions,
185
186     /// The reverse mapping of `node_to_hir_id`.
187     hir_to_node_id: FxHashMap<HirId, NodeId>,
188 }
189
190 impl<'hir> Map<'hir> {
191     #[inline]
192     fn lookup(&self, id: HirId) -> Option<&Entry<'hir>> {
193         let local_map = self.map.get(id.owner.index())?;
194         local_map.as_ref()?.get(id.local_id)?.as_ref()
195     }
196
197     /// Registers a read in the dependency graph of the AST node with
198     /// the given `id`. This needs to be called each time a public
199     /// function returns the HIR for a node -- in other words, when it
200     /// "reveals" the content of a node to the caller (who might not
201     /// otherwise have had access to those contents, and hence needs a
202     /// read recorded). If the function just returns a DefId or
203     /// HirId, no actual content was returned, so no read is needed.
204     pub fn read(&self, hir_id: HirId) {
205         if let Some(entry) = self.lookup(hir_id) {
206             self.dep_graph.read_index(entry.dep_node);
207         } else {
208             bug!("called `HirMap::read()` with invalid `HirId`: {:?}", hir_id)
209         }
210     }
211
212     #[inline]
213     pub fn definitions(&self) -> &'hir Definitions {
214         self.definitions
215     }
216
217     pub fn def_key(&self, def_id: DefId) -> DefKey {
218         assert!(def_id.is_local());
219         self.definitions.def_key(def_id.index)
220     }
221
222     pub fn def_path_from_hir_id(&self, id: HirId) -> Option<DefPath> {
223         self.opt_local_def_id_from_hir_id(id).map(|def_id| {
224             self.def_path(def_id)
225         })
226     }
227
228     pub fn def_path(&self, def_id: DefId) -> DefPath {
229         assert!(def_id.is_local());
230         self.definitions.def_path(def_id.index)
231     }
232
233     #[inline]
234     pub fn local_def_id(&self, node: NodeId) -> DefId {
235         self.opt_local_def_id(node).unwrap_or_else(|| {
236             let hir_id = self.node_to_hir_id(node);
237             bug!("local_def_id: no entry for `{}`, which has a map of `{:?}`",
238                  node, self.find_entry(hir_id))
239         })
240     }
241
242     // FIXME(@ljedrz): replace the `NodeId` variant.
243     #[inline]
244     pub fn local_def_id_from_hir_id(&self, hir_id: HirId) -> DefId {
245         self.opt_local_def_id_from_hir_id(hir_id).unwrap_or_else(|| {
246             bug!("local_def_id_from_hir_id: no entry for `{:?}`, which has a map of `{:?}`",
247                  hir_id, self.find_entry(hir_id))
248         })
249     }
250
251     // FIXME(@ljedrz): replace the `NodeId` variant.
252     #[inline]
253     pub fn opt_local_def_id_from_hir_id(&self, hir_id: HirId) -> Option<DefId> {
254         let node_id = self.hir_to_node_id(hir_id);
255         self.definitions.opt_local_def_id(node_id)
256     }
257
258     #[inline]
259     pub fn opt_local_def_id(&self, node: NodeId) -> Option<DefId> {
260         self.definitions.opt_local_def_id(node)
261     }
262
263     #[inline]
264     pub fn as_local_node_id(&self, def_id: DefId) -> Option<NodeId> {
265         self.definitions.as_local_node_id(def_id)
266     }
267
268     // FIXME(@ljedrz): replace the `NodeId` variant.
269     #[inline]
270     pub fn as_local_hir_id(&self, def_id: DefId) -> Option<HirId> {
271         self.definitions.as_local_hir_id(def_id)
272     }
273
274     #[inline]
275     pub fn hir_to_node_id(&self, hir_id: HirId) -> NodeId {
276         self.hir_to_node_id[&hir_id]
277     }
278
279     #[inline]
280     pub fn node_to_hir_id(&self, node_id: NodeId) -> HirId {
281         self.definitions.node_to_hir_id(node_id)
282     }
283
284     #[inline]
285     pub fn def_index_to_hir_id(&self, def_index: DefIndex) -> HirId {
286         self.definitions.def_index_to_hir_id(def_index)
287     }
288
289     #[inline]
290     pub fn local_def_id_to_hir_id(&self, def_id: LocalDefId) -> HirId {
291         self.definitions.def_index_to_hir_id(def_id.to_def_id().index)
292     }
293
294     fn def_kind(&self, hir_id: HirId) -> Option<DefKind> {
295         let node = if let Some(node) = self.find_by_hir_id(hir_id) {
296             node
297         } else {
298             return None
299         };
300
301         Some(match node {
302             Node::Item(item) => {
303                 match item.node {
304                     ItemKind::Static(..) => DefKind::Static,
305                     ItemKind::Const(..) => DefKind::Const,
306                     ItemKind::Fn(..) => DefKind::Fn,
307                     ItemKind::Mod(..) => DefKind::Mod,
308                     ItemKind::Existential(..) => DefKind::Existential,
309                     ItemKind::Ty(..) => DefKind::TyAlias,
310                     ItemKind::Enum(..) => DefKind::Enum,
311                     ItemKind::Struct(..) => DefKind::Struct,
312                     ItemKind::Union(..) => DefKind::Union,
313                     ItemKind::Trait(..) => DefKind::Trait,
314                     ItemKind::TraitAlias(..) => DefKind::TraitAlias,
315                     ItemKind::ExternCrate(_) |
316                     ItemKind::Use(..) |
317                     ItemKind::ForeignMod(..) |
318                     ItemKind::GlobalAsm(..) |
319                     ItemKind::Impl(..) => return None,
320                 }
321             }
322             Node::ForeignItem(item) => {
323                 match item.node {
324                     ForeignItemKind::Fn(..) => DefKind::Fn,
325                     ForeignItemKind::Static(..) => DefKind::Static,
326                     ForeignItemKind::Type => DefKind::ForeignTy,
327                 }
328             }
329             Node::TraitItem(item) => {
330                 match item.node {
331                     TraitItemKind::Const(..) => DefKind::AssocConst,
332                     TraitItemKind::Method(..) => DefKind::Method,
333                     TraitItemKind::Type(..) => DefKind::AssocTy,
334                 }
335             }
336             Node::ImplItem(item) => {
337                 match item.node {
338                     ImplItemKind::Const(..) => DefKind::AssocConst,
339                     ImplItemKind::Method(..) => DefKind::Method,
340                     ImplItemKind::Type(..) => DefKind::AssocTy,
341                     ImplItemKind::Existential(..) => DefKind::AssocExistential,
342                 }
343             }
344             Node::Variant(_) => DefKind::Variant,
345             Node::Ctor(variant_data) => {
346                 // FIXME(eddyb) is this even possible, if we have a `Node::Ctor`?
347                 if variant_data.ctor_hir_id().is_none() {
348                     return None;
349                 }
350                 let ctor_of = match self.find_by_hir_id(self.get_parent_node(hir_id)) {
351                     Some(Node::Item(..)) => def::CtorOf::Struct,
352                     Some(Node::Variant(..)) => def::CtorOf::Variant,
353                     _ => unreachable!(),
354                 };
355                 DefKind::Ctor(ctor_of, def::CtorKind::from_hir(variant_data))
356             }
357             Node::AnonConst(_) |
358             Node::Field(_) |
359             Node::Expr(_) |
360             Node::Stmt(_) |
361             Node::PathSegment(_) |
362             Node::Ty(_) |
363             Node::TraitRef(_) |
364             Node::Pat(_) |
365             Node::Binding(_) |
366             Node::Local(_) |
367             Node::Arm(_) |
368             Node::Lifetime(_) |
369             Node::Visibility(_) |
370             Node::Block(_) |
371             Node::Crate => return None,
372             Node::MacroDef(_) => DefKind::Macro(MacroKind::Bang),
373             Node::GenericParam(param) => {
374                 match param.kind {
375                     GenericParamKind::Lifetime { .. } => return None,
376                     GenericParamKind::Type { .. } => DefKind::TyParam,
377                     GenericParamKind::Const { .. } => DefKind::ConstParam,
378                 }
379             }
380         })
381     }
382
383     fn find_entry(&self, id: HirId) -> Option<Entry<'hir>> {
384         self.lookup(id).cloned()
385     }
386
387     pub fn krate(&self) -> &'hir Crate {
388         self.forest.krate()
389     }
390
391     pub fn trait_item(&self, id: TraitItemId) -> &'hir TraitItem {
392         self.read(id.hir_id);
393
394         // N.B., intentionally bypass `self.forest.krate()` so that we
395         // do not trigger a read of the whole krate here
396         self.forest.krate.trait_item(id)
397     }
398
399     pub fn impl_item(&self, id: ImplItemId) -> &'hir ImplItem {
400         self.read(id.hir_id);
401
402         // N.B., intentionally bypass `self.forest.krate()` so that we
403         // do not trigger a read of the whole krate here
404         self.forest.krate.impl_item(id)
405     }
406
407     pub fn body(&self, id: BodyId) -> &'hir Body {
408         self.read(id.hir_id);
409
410         // N.B., intentionally bypass `self.forest.krate()` so that we
411         // do not trigger a read of the whole krate here
412         self.forest.krate.body(id)
413     }
414
415     pub fn fn_decl_by_hir_id(&self, hir_id: HirId) -> Option<&'hir FnDecl> {
416         if let Some(entry) = self.find_entry(hir_id) {
417             entry.fn_decl()
418         } else {
419             bug!("no entry for hir_id `{}`", hir_id)
420         }
421     }
422
423     /// Returns the `HirId` that corresponds to the definition of
424     /// which this is the body of, i.e., a `fn`, `const` or `static`
425     /// item (possibly associated), a closure, or a `hir::AnonConst`.
426     pub fn body_owner(&self, BodyId { hir_id }: BodyId) -> HirId {
427         let parent = self.get_parent_node(hir_id);
428         assert!(self.lookup(parent).map_or(false, |e| e.is_body_owner(hir_id)));
429         parent
430     }
431
432     pub fn body_owner_def_id(&self, id: BodyId) -> DefId {
433         self.local_def_id_from_hir_id(self.body_owner(id))
434     }
435
436     /// Given a `HirId`, returns the `BodyId` associated with it,
437     /// if the node is a body owner, otherwise returns `None`.
438     pub fn maybe_body_owned_by(&self, hir_id: HirId) -> Option<BodyId> {
439         if let Some(entry) = self.find_entry(hir_id) {
440             if self.dep_graph.is_fully_enabled() {
441                 let hir_id_owner = hir_id.owner;
442                 let def_path_hash = self.definitions.def_path_hash(hir_id_owner);
443                 self.dep_graph.read(def_path_hash.to_dep_node(DepKind::HirBody));
444             }
445
446             entry.associated_body()
447         } else {
448             bug!("no entry for id `{}`", hir_id)
449         }
450     }
451
452     /// Given a body owner's id, returns the `BodyId` associated with it.
453     pub fn body_owned_by(&self, id: HirId) -> BodyId {
454         self.maybe_body_owned_by(id).unwrap_or_else(|| {
455             span_bug!(self.span(id), "body_owned_by: {} has no associated body",
456                       self.node_to_string(id));
457         })
458     }
459
460     pub fn body_owner_kind(&self, id: HirId) -> BodyOwnerKind {
461         match self.get(id) {
462             Node::Item(&Item { node: ItemKind::Const(..), .. }) |
463             Node::TraitItem(&TraitItem { node: TraitItemKind::Const(..), .. }) |
464             Node::ImplItem(&ImplItem { node: ImplItemKind::Const(..), .. }) |
465             Node::AnonConst(_) => {
466                 BodyOwnerKind::Const
467             }
468             Node::Ctor(..) |
469             Node::Item(&Item { node: ItemKind::Fn(..), .. }) |
470             Node::TraitItem(&TraitItem { node: TraitItemKind::Method(..), .. }) |
471             Node::ImplItem(&ImplItem { node: ImplItemKind::Method(..), .. }) => {
472                 BodyOwnerKind::Fn
473             }
474             Node::Item(&Item { node: ItemKind::Static(_, m, _), .. }) => {
475                 BodyOwnerKind::Static(m)
476             }
477             Node::Expr(&Expr { node: ExprKind::Closure(..), .. }) => {
478                 BodyOwnerKind::Closure
479             }
480             node => bug!("{:#?} is not a body node", node),
481         }
482     }
483
484     pub fn ty_param_owner(&self, id: HirId) -> HirId {
485         match self.get(id) {
486             Node::Item(&Item { node: ItemKind::Trait(..), .. }) |
487             Node::Item(&Item { node: ItemKind::TraitAlias(..), .. }) => id,
488             Node::GenericParam(_) => self.get_parent_node(id),
489             _ => bug!("ty_param_owner: {} not a type parameter", self.node_to_string(id))
490         }
491     }
492
493     pub fn ty_param_name(&self, id: HirId) -> Name {
494         match self.get(id) {
495             Node::Item(&Item { node: ItemKind::Trait(..), .. }) |
496             Node::Item(&Item { node: ItemKind::TraitAlias(..), .. }) => kw::SelfUpper,
497             Node::GenericParam(param) => param.name.ident().name,
498             _ => bug!("ty_param_name: {} not a type parameter", self.node_to_string(id)),
499         }
500     }
501
502     pub fn trait_impls(&self, trait_did: DefId) -> &'hir [HirId] {
503         self.dep_graph.read(DepNode::new_no_params(DepKind::AllLocalTraitImpls));
504
505         // N.B., intentionally bypass `self.forest.krate()` so that we
506         // do not trigger a read of the whole krate here
507         self.forest.krate.trait_impls.get(&trait_did).map_or(&[], |xs| &xs[..])
508     }
509
510     /// Gets the attributes on the crate. This is preferable to
511     /// invoking `krate.attrs` because it registers a tighter
512     /// dep-graph access.
513     pub fn krate_attrs(&self) -> &'hir [ast::Attribute] {
514         let def_path_hash = self.definitions.def_path_hash(CRATE_DEF_INDEX);
515
516         self.dep_graph.read(def_path_hash.to_dep_node(DepKind::Hir));
517         &self.forest.krate.attrs
518     }
519
520     pub fn get_module(&self, module: DefId) -> (&'hir Mod, Span, HirId)
521     {
522         let hir_id = self.as_local_hir_id(module).unwrap();
523         self.read(hir_id);
524         match self.find_entry(hir_id).unwrap().node {
525             Node::Item(&Item {
526                 span,
527                 node: ItemKind::Mod(ref m),
528                 ..
529             }) => (m, span, hir_id),
530             Node::Crate => (&self.forest.krate.module, self.forest.krate.span, hir_id),
531             _ => panic!("not a module")
532         }
533     }
534
535     pub fn visit_item_likes_in_module<V>(&self, module: DefId, visitor: &mut V)
536         where V: ItemLikeVisitor<'hir>
537     {
538         let hir_id = self.as_local_hir_id(module).unwrap();
539
540         // Read the module so we'll be re-executed if new items
541         // appear immediately under in the module. If some new item appears
542         // in some nested item in the module, we'll be re-executed due to reads
543         // in the expect_* calls the loops below
544         self.read(hir_id);
545
546         let node_id = self.hir_to_node_id[&hir_id];
547
548         let module = &self.forest.krate.modules[&node_id];
549
550         for id in &module.items {
551             visitor.visit_item(self.expect_item(*id));
552         }
553
554         for id in &module.trait_items {
555             visitor.visit_trait_item(self.expect_trait_item(id.hir_id));
556         }
557
558         for id in &module.impl_items {
559             visitor.visit_impl_item(self.expect_impl_item(id.hir_id));
560         }
561     }
562
563     /// Retrieves the `Node` corresponding to `id`, panicking if it cannot be found.
564     pub fn get(&self, id: HirId) -> Node<'hir> {
565         // read recorded by `find`
566         self.find_by_hir_id(id).unwrap_or_else(||
567             bug!("couldn't find hir id {} in the HIR map", id))
568     }
569
570     pub fn get_if_local(&self, id: DefId) -> Option<Node<'hir>> {
571         self.as_local_hir_id(id).map(|id| self.get(id)) // read recorded by `get`
572     }
573
574     pub fn get_generics(&self, id: DefId) -> Option<&'hir Generics> {
575         self.get_if_local(id).and_then(|node| {
576             match node {
577                 Node::ImplItem(ref impl_item) => Some(&impl_item.generics),
578                 Node::TraitItem(ref trait_item) => Some(&trait_item.generics),
579                 Node::Item(ref item) => {
580                     match item.node {
581                         ItemKind::Fn(_, _, ref generics, _) |
582                         ItemKind::Ty(_, ref generics) |
583                         ItemKind::Enum(_, ref generics) |
584                         ItemKind::Struct(_, ref generics) |
585                         ItemKind::Union(_, ref generics) |
586                         ItemKind::Trait(_, _, ref generics, ..) |
587                         ItemKind::TraitAlias(ref generics, _) |
588                         ItemKind::Impl(_, _, _, ref generics, ..) => Some(generics),
589                         _ => None,
590                     }
591                 }
592                 _ => None,
593             }
594         })
595     }
596
597     /// Retrieves the `Node` corresponding to `id`, returning `None` if cannot be found.
598     pub fn find_by_hir_id(&self, hir_id: HirId) -> Option<Node<'hir>> {
599         let result = self.find_entry(hir_id).and_then(|entry| {
600             if let Node::Crate = entry.node {
601                 None
602             } else {
603                 Some(entry.node)
604             }
605         });
606         if result.is_some() {
607             self.read(hir_id);
608         }
609         result
610     }
611
612     /// Similar to `get_parent`; returns the parent HIR Id, or just `hir_id` if there
613     /// is no parent. Note that the parent may be `CRATE_HIR_ID`, which is not itself
614     /// present in the map, so passing the return value of `get_parent_node` to
615     /// `get` may in fact panic.
616     /// This function returns the immediate parent in the HIR, whereas `get_parent`
617     /// returns the enclosing item. Note that this might not be the actual parent
618     /// node in the HIR -- some kinds of nodes are not in the map and these will
619     /// never appear as the parent node. Thus, you can always walk the parent nodes
620     /// from a node to the root of the HIR (unless you get back the same ID here,
621     /// which can happen if the ID is not in the map itself or is just weird).
622     pub fn get_parent_node(&self, hir_id: HirId) -> HirId {
623         if self.dep_graph.is_fully_enabled() {
624             let hir_id_owner = hir_id.owner;
625             let def_path_hash = self.definitions.def_path_hash(hir_id_owner);
626             self.dep_graph.read(def_path_hash.to_dep_node(DepKind::HirBody));
627         }
628
629         self.find_entry(hir_id)
630             .and_then(|x| x.parent_node())
631             .unwrap_or(hir_id)
632     }
633
634     /// Check if the node is an argument. An argument is a local variable whose
635     /// immediate parent is an item or a closure.
636     pub fn is_argument(&self, id: HirId) -> bool {
637         match self.find_by_hir_id(id) {
638             Some(Node::Binding(_)) => (),
639             _ => return false,
640         }
641         match self.find_by_hir_id(self.get_parent_node(id)) {
642             Some(Node::Item(_)) |
643             Some(Node::TraitItem(_)) |
644             Some(Node::ImplItem(_)) => true,
645             Some(Node::Expr(e)) => {
646                 match e.node {
647                     ExprKind::Closure(..) => true,
648                     _ => false,
649                 }
650             }
651             _ => false,
652         }
653     }
654
655     pub fn is_const_scope(&self, hir_id: HirId) -> bool {
656         self.walk_parent_nodes(hir_id, |node| match *node {
657             Node::Item(Item { node: ItemKind::Const(_, _), .. }) => true,
658             Node::Item(Item { node: ItemKind::Fn(_, header, _, _), .. }) => header.is_const(),
659             _ => false,
660         }, |_| false).map(|id| id != CRATE_HIR_ID).unwrap_or(false)
661     }
662
663     /// If there is some error when walking the parents (e.g., a node does not
664     /// have a parent in the map or a node can't be found), then we return the
665     /// last good `HirId` we found. Note that reaching the crate root (`id == 0`),
666     /// is not an error, since items in the crate module have the crate root as
667     /// parent.
668     fn walk_parent_nodes<F, F2>(&self,
669                                 start_id: HirId,
670                                 found: F,
671                                 bail_early: F2)
672         -> Result<HirId, HirId>
673         where F: Fn(&Node<'hir>) -> bool, F2: Fn(&Node<'hir>) -> bool
674     {
675         let mut id = start_id;
676         loop {
677             let parent_id = self.get_parent_node(id);
678             if parent_id == CRATE_HIR_ID {
679                 return Ok(CRATE_HIR_ID);
680             }
681             if parent_id == id {
682                 return Err(id);
683             }
684
685             if let Some(entry) = self.find_entry(parent_id) {
686                 if let Node::Crate = entry.node {
687                     return Err(id);
688                 }
689                 if found(&entry.node) {
690                     return Ok(parent_id);
691                 } else if bail_early(&entry.node) {
692                     return Err(parent_id);
693                 }
694                 id = parent_id;
695             } else {
696                 return Err(id);
697             }
698         }
699     }
700
701     /// Retrieves the `HirId` for `id`'s enclosing method, unless there's a
702     /// `while` or `loop` before reaching it, as block tail returns are not
703     /// available in them.
704     ///
705     /// ```
706     /// fn foo(x: usize) -> bool {
707     ///     if x == 1 {
708     ///         true  // `get_return_block` gets passed the `id` corresponding
709     ///     } else {  // to this, it will return `foo`'s `HirId`.
710     ///         false
711     ///     }
712     /// }
713     /// ```
714     ///
715     /// ```
716     /// fn foo(x: usize) -> bool {
717     ///     loop {
718     ///         true  // `get_return_block` gets passed the `id` corresponding
719     ///     }         // to this, it will return `None`.
720     ///     false
721     /// }
722     /// ```
723     pub fn get_return_block(&self, id: HirId) -> Option<HirId> {
724         let match_fn = |node: &Node<'_>| {
725             match *node {
726                 Node::Item(_) |
727                 Node::ForeignItem(_) |
728                 Node::TraitItem(_) |
729                 Node::Expr(Expr { node: ExprKind::Closure(..), ..}) |
730                 Node::ImplItem(_) => true,
731                 _ => false,
732             }
733         };
734         let match_non_returning_block = |node: &Node<'_>| {
735             match *node {
736                 Node::Expr(ref expr) => {
737                     match expr.node {
738                         ExprKind::While(..) | ExprKind::Loop(..) | ExprKind::Ret(..) => true,
739                         _ => false,
740                     }
741                 }
742                 _ => false,
743             }
744         };
745
746         self.walk_parent_nodes(id, match_fn, match_non_returning_block).ok()
747     }
748
749     /// Retrieves the `HirId` for `id`'s parent item, or `id` itself if no
750     /// parent item is in this map. The "parent item" is the closest parent node
751     /// in the HIR which is recorded by the map and is an item, either an item
752     /// in a module, trait, or impl.
753     pub fn get_parent_item(&self, hir_id: HirId) -> HirId {
754         match self.walk_parent_nodes(hir_id, |node| match *node {
755             Node::Item(_) |
756             Node::ForeignItem(_) |
757             Node::TraitItem(_) |
758             Node::ImplItem(_) => true,
759             _ => false,
760         }, |_| false) {
761             Ok(id) => id,
762             Err(id) => id,
763         }
764     }
765
766     /// Returns the `DefId` of `id`'s nearest module parent, or `id` itself if no
767     /// module parent is in this map.
768     pub fn get_module_parent(&self, id: HirId) -> DefId {
769         self.local_def_id_from_hir_id(self.get_module_parent_node(id))
770     }
771
772     /// Returns the `HirId` of `id`'s nearest module parent, or `id` itself if no
773     /// module parent is in this map.
774     pub fn get_module_parent_node(&self, hir_id: HirId) -> HirId {
775         match self.walk_parent_nodes(hir_id, |node| match *node {
776             Node::Item(&Item { node: ItemKind::Mod(_), .. }) => true,
777             _ => false,
778         }, |_| false) {
779             Ok(id) => id,
780             Err(id) => id,
781         }
782     }
783
784     /// Returns the nearest enclosing scope. A scope is roughly an item or block.
785     pub fn get_enclosing_scope(&self, hir_id: HirId) -> Option<HirId> {
786         self.walk_parent_nodes(hir_id, |node| match *node {
787             Node::Item(i) => {
788                 match i.node {
789                     ItemKind::Fn(..)
790                     | ItemKind::Mod(..)
791                     | ItemKind::Enum(..)
792                     | ItemKind::Struct(..)
793                     | ItemKind::Union(..)
794                     | ItemKind::Trait(..)
795                     | ItemKind::Impl(..) => true,
796                     _ => false,
797                 }
798             },
799             Node::ForeignItem(fi) => {
800                 match fi.node {
801                     ForeignItemKind::Fn(..) => true,
802                     _ => false,
803                 }
804             },
805             Node::TraitItem(ti) => {
806                 match ti.node {
807                     TraitItemKind::Method(..) => true,
808                     _ => false,
809                 }
810             },
811             Node::ImplItem(ii) => {
812                 match ii.node {
813                     ImplItemKind::Method(..) => true,
814                     _ => false,
815                 }
816             },
817             Node::Block(_) => true,
818             _ => false,
819         }, |_| false).ok()
820     }
821
822     /// Returns the defining scope for an existential type definition.
823     pub fn get_defining_scope(&self, id: HirId) -> Option<HirId> {
824         let mut scope = id;
825         loop {
826             scope = self.get_enclosing_scope(scope)?;
827             if scope == CRATE_HIR_ID {
828                 return Some(CRATE_HIR_ID);
829             }
830             match self.get(scope) {
831                 Node::Item(i) => {
832                     match i.node {
833                         ItemKind::Existential(ExistTy { impl_trait_fn: None, .. }) => {}
834                         _ => break,
835                     }
836                 }
837                 Node::Block(_) => {}
838                 _ => break,
839             }
840         }
841         Some(scope)
842     }
843
844     pub fn get_parent_did(&self, id: HirId) -> DefId {
845         self.local_def_id_from_hir_id(self.get_parent_item(id))
846     }
847
848     pub fn get_foreign_abi(&self, hir_id: HirId) -> Abi {
849         let parent = self.get_parent_item(hir_id);
850         if let Some(entry) = self.find_entry(parent) {
851             if let Entry {
852                 node: Node::Item(Item { node: ItemKind::ForeignMod(ref nm), .. }), .. } = entry
853             {
854                 self.read(hir_id); // reveals some of the content of a node
855                 return nm.abi;
856             }
857         }
858         bug!("expected foreign mod or inlined parent, found {}", self.node_to_string(parent))
859     }
860
861     pub fn expect_item(&self, id: HirId) -> &'hir Item {
862         match self.find_by_hir_id(id) { // read recorded by `find`
863             Some(Node::Item(item)) => item,
864             _ => bug!("expected item, found {}", self.node_to_string(id))
865         }
866     }
867
868     pub fn expect_impl_item(&self, id: HirId) -> &'hir ImplItem {
869         match self.find_by_hir_id(id) {
870             Some(Node::ImplItem(item)) => item,
871             _ => bug!("expected impl item, found {}", self.node_to_string(id))
872         }
873     }
874
875     pub fn expect_trait_item(&self, id: HirId) -> &'hir TraitItem {
876         match self.find_by_hir_id(id) {
877             Some(Node::TraitItem(item)) => item,
878             _ => bug!("expected trait item, found {}", self.node_to_string(id))
879         }
880     }
881
882     pub fn expect_variant_data(&self, id: HirId) -> &'hir VariantData {
883         match self.find_by_hir_id(id) {
884             Some(Node::Item(i)) => {
885                 match i.node {
886                     ItemKind::Struct(ref struct_def, _) |
887                     ItemKind::Union(ref struct_def, _) => struct_def,
888                     _ => bug!("struct ID bound to non-struct {}", self.node_to_string(id))
889                 }
890             }
891             Some(Node::Variant(variant)) => &variant.node.data,
892             Some(Node::Ctor(data)) => data,
893             _ => bug!("expected struct or variant, found {}", self.node_to_string(id))
894         }
895     }
896
897     pub fn expect_variant(&self, id: HirId) -> &'hir Variant {
898         match self.find_by_hir_id(id) {
899             Some(Node::Variant(variant)) => variant,
900             _ => bug!("expected variant, found {}", self.node_to_string(id)),
901         }
902     }
903
904     pub fn expect_foreign_item(&self, id: HirId) -> &'hir ForeignItem {
905         match self.find_by_hir_id(id) {
906             Some(Node::ForeignItem(item)) => item,
907             _ => bug!("expected foreign item, found {}", self.node_to_string(id))
908         }
909     }
910
911     pub fn expect_expr(&self, id: HirId) -> &'hir Expr {
912         match self.find_by_hir_id(id) { // read recorded by find
913             Some(Node::Expr(expr)) => expr,
914             _ => bug!("expected expr, found {}", self.node_to_string(id))
915         }
916     }
917
918     pub fn name(&self, id: HirId) -> Name {
919         match self.get(id) {
920             Node::Item(i) => i.ident.name,
921             Node::ForeignItem(fi) => fi.ident.name,
922             Node::ImplItem(ii) => ii.ident.name,
923             Node::TraitItem(ti) => ti.ident.name,
924             Node::Variant(v) => v.node.ident.name,
925             Node::Field(f) => f.ident.name,
926             Node::Lifetime(lt) => lt.name.ident().name,
927             Node::GenericParam(param) => param.name.ident().name,
928             Node::Binding(&Pat { node: PatKind::Binding(_, _, l, _), .. }) => l.name,
929             Node::Ctor(..) => self.name(self.get_parent_item(id)),
930             _ => bug!("no name for {}", self.node_to_string(id))
931         }
932     }
933
934     /// Given a node ID, gets a list of attributes associated with the AST
935     /// corresponding to the node-ID.
936     pub fn attrs(&self, id: HirId) -> &'hir [ast::Attribute] {
937         self.read(id); // reveals attributes on the node
938         let attrs = match self.find_entry(id).map(|entry| entry.node) {
939             Some(Node::Local(l)) => Some(&l.attrs[..]),
940             Some(Node::Item(i)) => Some(&i.attrs[..]),
941             Some(Node::ForeignItem(fi)) => Some(&fi.attrs[..]),
942             Some(Node::TraitItem(ref ti)) => Some(&ti.attrs[..]),
943             Some(Node::ImplItem(ref ii)) => Some(&ii.attrs[..]),
944             Some(Node::Variant(ref v)) => Some(&v.node.attrs[..]),
945             Some(Node::Field(ref f)) => Some(&f.attrs[..]),
946             Some(Node::Expr(ref e)) => Some(&*e.attrs),
947             Some(Node::Stmt(ref s)) => Some(s.node.attrs()),
948             Some(Node::Arm(ref a)) => Some(&*a.attrs),
949             Some(Node::GenericParam(param)) => Some(&param.attrs[..]),
950             // Unit/tuple structs/variants take the attributes straight from
951             // the struct/variant definition.
952             Some(Node::Ctor(..)) => return self.attrs(self.get_parent_item(id)),
953             Some(Node::Crate) => Some(&self.forest.krate.attrs[..]),
954             _ => None
955         };
956         attrs.unwrap_or(&[])
957     }
958
959     /// Returns an iterator that yields all the hir ids in the map.
960     fn all_ids<'a>(&'a self) -> impl Iterator<Item = HirId> + 'a {
961         // This code is a bit awkward because the map is implemented as 2 levels of arrays,
962         // see the comment on `HirEntryMap`.
963         // Iterate over all the indices and return a reference to
964         // local maps and their index given that they exist.
965         self.map.iter().enumerate().filter_map(|(i, local_map)| {
966             local_map.as_ref().map(|m| (i, m))
967         }).flat_map(move |(array_index, local_map)| {
968             // Iterate over each valid entry in the local map
969             local_map.iter_enumerated().filter_map(move |(i, entry)| entry.map(move |_| {
970                 // Reconstruct the HirId based on the 3 indices we used to find it
971                 HirId {
972                     owner: DefIndex::from(array_index),
973                     local_id: i,
974                 }
975             }))
976         })
977     }
978
979     /// Returns an iterator that yields the node id's with paths that
980     /// match `parts`.  (Requires `parts` is non-empty.)
981     ///
982     /// For example, if given `parts` equal to `["bar", "quux"]`, then
983     /// the iterator will produce node id's for items with paths
984     /// such as `foo::bar::quux`, `bar::quux`, `other::bar::quux`, and
985     /// any other such items it can find in the map.
986     pub fn nodes_matching_suffix<'a>(&'a self, parts: &'a [String])
987                                  -> impl Iterator<Item = NodeId> + 'a {
988         let nodes = NodesMatchingSuffix {
989             map: self,
990             item_name: parts.last().unwrap(),
991             in_which: &parts[..parts.len() - 1],
992         };
993
994         self.all_ids().filter(move |hir| nodes.matches_suffix(*hir)).map(move |hir| {
995             self.hir_to_node_id(hir)
996         })
997     }
998
999     pub fn span(&self, hir_id: HirId) -> Span {
1000         self.read(hir_id); // reveals span from node
1001         match self.find_entry(hir_id).map(|entry| entry.node) {
1002             Some(Node::Item(item)) => item.span,
1003             Some(Node::ForeignItem(foreign_item)) => foreign_item.span,
1004             Some(Node::TraitItem(trait_method)) => trait_method.span,
1005             Some(Node::ImplItem(impl_item)) => impl_item.span,
1006             Some(Node::Variant(variant)) => variant.span,
1007             Some(Node::Field(field)) => field.span,
1008             Some(Node::AnonConst(constant)) => self.body(constant.body).value.span,
1009             Some(Node::Expr(expr)) => expr.span,
1010             Some(Node::Stmt(stmt)) => stmt.span,
1011             Some(Node::PathSegment(seg)) => seg.ident.span,
1012             Some(Node::Ty(ty)) => ty.span,
1013             Some(Node::TraitRef(tr)) => tr.path.span,
1014             Some(Node::Binding(pat)) => pat.span,
1015             Some(Node::Pat(pat)) => pat.span,
1016             Some(Node::Arm(arm)) => arm.span,
1017             Some(Node::Block(block)) => block.span,
1018             Some(Node::Ctor(..)) => match self.find_by_hir_id(
1019                 self.get_parent_node(hir_id))
1020             {
1021                 Some(Node::Item(item)) => item.span,
1022                 Some(Node::Variant(variant)) => variant.span,
1023                 _ => unreachable!(),
1024             }
1025             Some(Node::Lifetime(lifetime)) => lifetime.span,
1026             Some(Node::GenericParam(param)) => param.span,
1027             Some(Node::Visibility(&Spanned {
1028                 node: VisibilityKind::Restricted { ref path, .. }, ..
1029             })) => path.span,
1030             Some(Node::Visibility(v)) => bug!("unexpected Visibility {:?}", v),
1031             Some(Node::Local(local)) => local.span,
1032             Some(Node::MacroDef(macro_def)) => macro_def.span,
1033             Some(Node::Crate) => self.forest.krate.span,
1034             None => bug!("hir::map::Map::span: id not in map: {:?}", hir_id),
1035         }
1036     }
1037
1038     pub fn span_if_local(&self, id: DefId) -> Option<Span> {
1039         self.as_local_hir_id(id).map(|id| self.span(id))
1040     }
1041
1042     pub fn node_to_string(&self, id: HirId) -> String {
1043         hir_id_to_string(self, id, true)
1044     }
1045
1046     pub fn hir_to_user_string(&self, id: HirId) -> String {
1047         hir_id_to_string(self, id, false)
1048     }
1049
1050     pub fn hir_to_pretty_string(&self, id: HirId) -> String {
1051         print::to_string(self, |s| s.print_node(self.get(id)))
1052     }
1053 }
1054
1055 pub struct NodesMatchingSuffix<'a> {
1056     map: &'a Map<'a>,
1057     item_name: &'a String,
1058     in_which: &'a [String],
1059 }
1060
1061 impl<'a> NodesMatchingSuffix<'a> {
1062     /// Returns `true` only if some suffix of the module path for parent
1063     /// matches `self.in_which`.
1064     ///
1065     /// In other words: let `[x_0,x_1,...,x_k]` be `self.in_which`;
1066     /// returns true if parent's path ends with the suffix
1067     /// `x_0::x_1::...::x_k`.
1068     fn suffix_matches(&self, parent: HirId) -> bool {
1069         let mut cursor = parent;
1070         for part in self.in_which.iter().rev() {
1071             let (mod_id, mod_name) = match find_first_mod_parent(self.map, cursor) {
1072                 None => return false,
1073                 Some((node_id, name)) => (node_id, name),
1074             };
1075             if mod_name.as_str() != *part {
1076                 return false;
1077             }
1078             cursor = self.map.get_parent_item(mod_id);
1079         }
1080         return true;
1081
1082         // Finds the first mod in parent chain for `id`, along with
1083         // that mod's name.
1084         //
1085         // If `id` itself is a mod named `m` with parent `p`, then
1086         // returns `Some(id, m, p)`.  If `id` has no mod in its parent
1087         // chain, then returns `None`.
1088         fn find_first_mod_parent<'a>(map: &'a Map<'_>, mut id: HirId) -> Option<(HirId, Name)> {
1089             loop {
1090                 if let Node::Item(item) = map.find_by_hir_id(id)? {
1091                     if item_is_mod(&item) {
1092                         return Some((id, item.ident.name))
1093                     }
1094                 }
1095                 let parent = map.get_parent_item(id);
1096                 if parent == id { return None }
1097                 id = parent;
1098             }
1099
1100             fn item_is_mod(item: &Item) -> bool {
1101                 match item.node {
1102                     ItemKind::Mod(_) => true,
1103                     _ => false,
1104                 }
1105             }
1106         }
1107     }
1108
1109     // We are looking at some node `n` with a given name and parent
1110     // id; do their names match what I am seeking?
1111     fn matches_names(&self, parent_of_n: HirId, name: Name) -> bool {
1112         name.as_str() == *self.item_name && self.suffix_matches(parent_of_n)
1113     }
1114
1115     fn matches_suffix(&self, hir: HirId) -> bool {
1116         let name = match self.map.find_entry(hir).map(|entry| entry.node) {
1117             Some(Node::Item(n)) => n.name(),
1118             Some(Node::ForeignItem(n)) => n.name(),
1119             Some(Node::TraitItem(n)) => n.name(),
1120             Some(Node::ImplItem(n)) => n.name(),
1121             Some(Node::Variant(n)) => n.name(),
1122             Some(Node::Field(n)) => n.name(),
1123             _ => return false,
1124         };
1125         self.matches_names(self.map.get_parent_item(hir), name)
1126     }
1127 }
1128
1129 trait Named {
1130     fn name(&self) -> Name;
1131 }
1132
1133 impl<T:Named> Named for Spanned<T> { fn name(&self) -> Name { self.node.name() } }
1134
1135 impl Named for Item { fn name(&self) -> Name { self.ident.name } }
1136 impl Named for ForeignItem { fn name(&self) -> Name { self.ident.name } }
1137 impl Named for VariantKind { fn name(&self) -> Name { self.ident.name } }
1138 impl Named for StructField { fn name(&self) -> Name { self.ident.name } }
1139 impl Named for TraitItem { fn name(&self) -> Name { self.ident.name } }
1140 impl Named for ImplItem { fn name(&self) -> Name { self.ident.name } }
1141
1142 pub fn map_crate<'hir>(sess: &crate::session::Session,
1143                        cstore: &CrateStoreDyn,
1144                        forest: &'hir Forest,
1145                        definitions: &'hir Definitions)
1146                        -> Map<'hir> {
1147     // Build the reverse mapping of `node_to_hir_id`.
1148     let hir_to_node_id = definitions.node_to_hir_id.iter_enumerated()
1149         .map(|(node_id, &hir_id)| (hir_id, node_id)).collect();
1150
1151     let (map, crate_hash) = {
1152         let hcx = crate::ich::StableHashingContext::new(sess, &forest.krate, definitions, cstore);
1153
1154         let mut collector = NodeCollector::root(sess,
1155                                                 &forest.krate,
1156                                                 &forest.dep_graph,
1157                                                 &definitions,
1158                                                 &hir_to_node_id,
1159                                                 hcx);
1160         intravisit::walk_crate(&mut collector, &forest.krate);
1161
1162         let crate_disambiguator = sess.local_crate_disambiguator();
1163         let cmdline_args = sess.opts.dep_tracking_hash();
1164         collector.finalize_and_compute_crate_hash(
1165             crate_disambiguator,
1166             cstore,
1167             cmdline_args
1168         )
1169     };
1170
1171     let map = Map {
1172         forest,
1173         dep_graph: forest.dep_graph.clone(),
1174         crate_hash,
1175         map,
1176         hir_to_node_id,
1177         definitions,
1178     };
1179
1180     time(sess, "validate hir map", || {
1181         hir_id_validator::check_crate(&map);
1182     });
1183
1184     map
1185 }
1186
1187 /// Identical to the `PpAnn` implementation for `hir::Crate`,
1188 /// except it avoids creating a dependency on the whole crate.
1189 impl<'hir> print::PpAnn for Map<'hir> {
1190     fn nested(&self, state: &mut print::State<'_>, nested: print::Nested) -> io::Result<()> {
1191         match nested {
1192             Nested::Item(id) => state.print_item(self.expect_item(id.id)),
1193             Nested::TraitItem(id) => state.print_trait_item(self.trait_item(id)),
1194             Nested::ImplItem(id) => state.print_impl_item(self.impl_item(id)),
1195             Nested::Body(id) => state.print_expr(&self.body(id).value),
1196             Nested::BodyArgPat(id, i) => state.print_pat(&self.body(id).arguments[i].pat)
1197         }
1198     }
1199 }
1200
1201 impl<'a> print::State<'a> {
1202     pub fn print_node(&mut self, node: Node<'_>) -> io::Result<()> {
1203         match node {
1204             Node::Item(a)         => self.print_item(&a),
1205             Node::ForeignItem(a)  => self.print_foreign_item(&a),
1206             Node::TraitItem(a)    => self.print_trait_item(a),
1207             Node::ImplItem(a)     => self.print_impl_item(a),
1208             Node::Variant(a)      => self.print_variant(&a),
1209             Node::AnonConst(a)    => self.print_anon_const(&a),
1210             Node::Expr(a)         => self.print_expr(&a),
1211             Node::Stmt(a)         => self.print_stmt(&a),
1212             Node::PathSegment(a)  => self.print_path_segment(&a),
1213             Node::Ty(a)           => self.print_type(&a),
1214             Node::TraitRef(a)     => self.print_trait_ref(&a),
1215             Node::Binding(a)      |
1216             Node::Pat(a)          => self.print_pat(&a),
1217             Node::Arm(a)          => self.print_arm(&a),
1218             Node::Block(a)        => {
1219                 use syntax::print::pprust::PrintState;
1220
1221                 // containing cbox, will be closed by print-block at }
1222                 self.cbox(print::indent_unit)?;
1223                 // head-ibox, will be closed by print-block after {
1224                 self.ibox(0)?;
1225                 self.print_block(&a)
1226             }
1227             Node::Lifetime(a)     => self.print_lifetime(&a),
1228             Node::Visibility(a)   => self.print_visibility(&a),
1229             Node::GenericParam(_) => bug!("cannot print Node::GenericParam"),
1230             Node::Field(_)        => bug!("cannot print StructField"),
1231             // these cases do not carry enough information in the
1232             // hir_map to reconstruct their full structure for pretty
1233             // printing.
1234             Node::Ctor(..)        => bug!("cannot print isolated Ctor"),
1235             Node::Local(a)        => self.print_local_decl(&a),
1236             Node::MacroDef(_)     => bug!("cannot print MacroDef"),
1237             Node::Crate           => bug!("cannot print Crate"),
1238         }
1239     }
1240 }
1241
1242 fn hir_id_to_string(map: &Map<'_>, id: HirId, include_id: bool) -> String {
1243     let id_str = format!(" (hir_id={})", id);
1244     let id_str = if include_id { &id_str[..] } else { "" };
1245
1246     let path_str = || {
1247         // This functionality is used for debugging, try to use TyCtxt to get
1248         // the user-friendly path, otherwise fall back to stringifying DefPath.
1249         crate::ty::tls::with_opt(|tcx| {
1250             if let Some(tcx) = tcx {
1251                 let def_id = map.local_def_id_from_hir_id(id);
1252                 tcx.def_path_str(def_id)
1253             } else if let Some(path) = map.def_path_from_hir_id(id) {
1254                 path.data.into_iter().map(|elem| {
1255                     elem.data.to_string()
1256                 }).collect::<Vec<_>>().join("::")
1257             } else {
1258                 String::from("<missing path>")
1259             }
1260         })
1261     };
1262
1263     match map.find_by_hir_id(id) {
1264         Some(Node::Item(item)) => {
1265             let item_str = match item.node {
1266                 ItemKind::ExternCrate(..) => "extern crate",
1267                 ItemKind::Use(..) => "use",
1268                 ItemKind::Static(..) => "static",
1269                 ItemKind::Const(..) => "const",
1270                 ItemKind::Fn(..) => "fn",
1271                 ItemKind::Mod(..) => "mod",
1272                 ItemKind::ForeignMod(..) => "foreign mod",
1273                 ItemKind::GlobalAsm(..) => "global asm",
1274                 ItemKind::Ty(..) => "ty",
1275                 ItemKind::Existential(..) => "existential type",
1276                 ItemKind::Enum(..) => "enum",
1277                 ItemKind::Struct(..) => "struct",
1278                 ItemKind::Union(..) => "union",
1279                 ItemKind::Trait(..) => "trait",
1280                 ItemKind::TraitAlias(..) => "trait alias",
1281                 ItemKind::Impl(..) => "impl",
1282             };
1283             format!("{} {}{}", item_str, path_str(), id_str)
1284         }
1285         Some(Node::ForeignItem(_)) => {
1286             format!("foreign item {}{}", path_str(), id_str)
1287         }
1288         Some(Node::ImplItem(ii)) => {
1289             match ii.node {
1290                 ImplItemKind::Const(..) => {
1291                     format!("assoc const {} in {}{}", ii.ident, path_str(), id_str)
1292                 }
1293                 ImplItemKind::Method(..) => {
1294                     format!("method {} in {}{}", ii.ident, path_str(), id_str)
1295                 }
1296                 ImplItemKind::Type(_) => {
1297                     format!("assoc type {} in {}{}", ii.ident, path_str(), id_str)
1298                 }
1299                 ImplItemKind::Existential(_) => {
1300                     format!("assoc existential type {} in {}{}", ii.ident, path_str(), id_str)
1301                 }
1302             }
1303         }
1304         Some(Node::TraitItem(ti)) => {
1305             let kind = match ti.node {
1306                 TraitItemKind::Const(..) => "assoc constant",
1307                 TraitItemKind::Method(..) => "trait method",
1308                 TraitItemKind::Type(..) => "assoc type",
1309             };
1310
1311             format!("{} {} in {}{}", kind, ti.ident, path_str(), id_str)
1312         }
1313         Some(Node::Variant(ref variant)) => {
1314             format!("variant {} in {}{}",
1315                     variant.node.ident,
1316                     path_str(), id_str)
1317         }
1318         Some(Node::Field(ref field)) => {
1319             format!("field {} in {}{}",
1320                     field.ident,
1321                     path_str(), id_str)
1322         }
1323         Some(Node::AnonConst(_)) => {
1324             format!("const {}{}", map.hir_to_pretty_string(id), id_str)
1325         }
1326         Some(Node::Expr(_)) => {
1327             format!("expr {}{}", map.hir_to_pretty_string(id), id_str)
1328         }
1329         Some(Node::Stmt(_)) => {
1330             format!("stmt {}{}", map.hir_to_pretty_string(id), id_str)
1331         }
1332         Some(Node::PathSegment(_)) => {
1333             format!("path segment {}{}", map.hir_to_pretty_string(id), id_str)
1334         }
1335         Some(Node::Ty(_)) => {
1336             format!("type {}{}", map.hir_to_pretty_string(id), id_str)
1337         }
1338         Some(Node::TraitRef(_)) => {
1339             format!("trait_ref {}{}", map.hir_to_pretty_string(id), id_str)
1340         }
1341         Some(Node::Binding(_)) => {
1342             format!("local {}{}", map.hir_to_pretty_string(id), id_str)
1343         }
1344         Some(Node::Pat(_)) => {
1345             format!("pat {}{}", map.hir_to_pretty_string(id), id_str)
1346         }
1347         Some(Node::Arm(_)) => {
1348             format!("arm {}{}", map.hir_to_pretty_string(id), id_str)
1349         }
1350         Some(Node::Block(_)) => {
1351             format!("block {}{}", map.hir_to_pretty_string(id), id_str)
1352         }
1353         Some(Node::Local(_)) => {
1354             format!("local {}{}", map.hir_to_pretty_string(id), id_str)
1355         }
1356         Some(Node::Ctor(..)) => {
1357             format!("ctor {}{}", path_str(), id_str)
1358         }
1359         Some(Node::Lifetime(_)) => {
1360             format!("lifetime {}{}", map.hir_to_pretty_string(id), id_str)
1361         }
1362         Some(Node::GenericParam(ref param)) => {
1363             format!("generic_param {:?}{}", param, id_str)
1364         }
1365         Some(Node::Visibility(ref vis)) => {
1366             format!("visibility {:?}{}", vis, id_str)
1367         }
1368         Some(Node::MacroDef(_)) => {
1369             format!("macro {}{}",  path_str(), id_str)
1370         }
1371         Some(Node::Crate) => String::from("root_crate"),
1372         None => format!("unknown node{}", id_str),
1373     }
1374 }
1375
1376 pub fn provide(providers: &mut Providers<'_>) {
1377     providers.def_kind = |tcx, def_id| {
1378         if let Some(hir_id) = tcx.hir().as_local_hir_id(def_id) {
1379             tcx.hir().def_kind(hir_id)
1380         } else {
1381             bug!("calling local def_kind query provider for upstream DefId: {:?}",
1382                 def_id
1383             );
1384         }
1385     };
1386 }