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