]> git.lizzy.rs Git - rust.git/blob - src/librustc/hir/map/mod.rs
Rollup merge of #61242 - spastorino:dest-needs-borrow-iterate, r=oli-obk
[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::TyCtxt;
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     pub fn get_generics_span(&self, id: DefId) -> Option<Span> {
632         self.get_generics(id).map(|generics| generics.span).filter(|sp| *sp != DUMMY_SP)
633     }
634
635     /// Retrieves the `Node` corresponding to `id`, returning `None` if cannot be found.
636     pub fn find(&self, id: NodeId) -> Option<Node<'hir>> {
637         let hir_id = self.node_to_hir_id(id);
638         self.find_by_hir_id(hir_id)
639     }
640
641     // FIXME(@ljedrz): replace the NodeId variant
642     pub fn find_by_hir_id(&self, hir_id: HirId) -> Option<Node<'hir>> {
643         let result = self.find_entry(hir_id).and_then(|entry| {
644             if let Node::Crate = entry.node {
645                 None
646             } else {
647                 Some(entry.node)
648             }
649         });
650         if result.is_some() {
651             self.read(hir_id);
652         }
653         result
654     }
655
656     /// Similar to `get_parent`; returns the parent node-id, or own `id` if there is
657     /// no parent. Note that the parent may be `CRATE_NODE_ID`, which is not itself
658     /// present in the map -- so passing the return value of get_parent_node to
659     /// get may actually panic.
660     /// This function returns the immediate parent in the AST, whereas get_parent
661     /// returns the enclosing item. Note that this might not be the actual parent
662     /// node in the AST - some kinds of nodes are not in the map and these will
663     /// never appear as the parent_node. So you can always walk the `parent_nodes`
664     /// from a node to the root of the ast (unless you get the same ID back here
665     /// that can happen if the ID is not in the map itself or is just weird).
666     pub fn get_parent_node(&self, id: NodeId) -> NodeId {
667         let hir_id = self.node_to_hir_id(id);
668         let parent_hir_id = self.get_parent_node_by_hir_id(hir_id);
669         self.hir_to_node_id(parent_hir_id)
670     }
671
672     // FIXME(@ljedrz): replace the NodeId variant
673     pub fn get_parent_node_by_hir_id(&self, hir_id: HirId) -> HirId {
674         if self.dep_graph.is_fully_enabled() {
675             let hir_id_owner = hir_id.owner;
676             let def_path_hash = self.definitions.def_path_hash(hir_id_owner);
677             self.dep_graph.read(def_path_hash.to_dep_node(DepKind::HirBody));
678         }
679
680         self.find_entry(hir_id)
681             .and_then(|x| x.parent_node())
682             .unwrap_or(hir_id)
683     }
684
685     /// Check if the node is an argument. An argument is a local variable whose
686     /// immediate parent is an item or a closure.
687     pub fn is_argument(&self, id: NodeId) -> bool {
688         match self.find(id) {
689             Some(Node::Binding(_)) => (),
690             _ => return false,
691         }
692         match self.find(self.get_parent_node(id)) {
693             Some(Node::Item(_)) |
694             Some(Node::TraitItem(_)) |
695             Some(Node::ImplItem(_)) => true,
696             Some(Node::Expr(e)) => {
697                 match e.node {
698                     ExprKind::Closure(..) => true,
699                     _ => false,
700                 }
701             }
702             _ => false,
703         }
704     }
705
706     pub fn is_const_scope(&self, hir_id: HirId) -> bool {
707         self.walk_parent_nodes(hir_id, |node| match *node {
708             Node::Item(Item { node: ItemKind::Const(_, _), .. }) => true,
709             Node::Item(Item { node: ItemKind::Fn(_, header, _, _), .. }) => header.is_const(),
710             _ => false,
711         }, |_| false).map(|id| id != CRATE_HIR_ID).unwrap_or(false)
712     }
713
714     /// If there is some error when walking the parents (e.g., a node does not
715     /// have a parent in the map or a node can't be found), then we return the
716     /// last good `NodeId` we found. Note that reaching the crate root (`id == 0`),
717     /// is not an error, since items in the crate module have the crate root as
718     /// parent.
719     fn walk_parent_nodes<F, F2>(&self,
720                                 start_id: HirId,
721                                 found: F,
722                                 bail_early: F2)
723         -> Result<HirId, HirId>
724         where F: Fn(&Node<'hir>) -> bool, F2: Fn(&Node<'hir>) -> bool
725     {
726         let mut id = start_id;
727         loop {
728             let parent_node = self.get_parent_node_by_hir_id(id);
729             if parent_node == CRATE_HIR_ID {
730                 return Ok(CRATE_HIR_ID);
731             }
732             if parent_node == id {
733                 return Err(id);
734             }
735
736             if let Some(entry) = self.find_entry(parent_node) {
737                 if let Node::Crate = entry.node {
738                     return Err(id);
739                 }
740                 if found(&entry.node) {
741                     return Ok(parent_node);
742                 } else if bail_early(&entry.node) {
743                     return Err(parent_node);
744                 }
745                 id = parent_node;
746             } else {
747                 return Err(id);
748             }
749         }
750     }
751
752     /// Retrieves the `NodeId` for `id`'s enclosing method, unless there's a
753     /// `while` or `loop` before reaching it, as block tail returns are not
754     /// available in them.
755     ///
756     /// ```
757     /// fn foo(x: usize) -> bool {
758     ///     if x == 1 {
759     ///         true  // `get_return_block` gets passed the `id` corresponding
760     ///     } else {  // to this, it will return `foo`'s `NodeId`.
761     ///         false
762     ///     }
763     /// }
764     /// ```
765     ///
766     /// ```
767     /// fn foo(x: usize) -> bool {
768     ///     loop {
769     ///         true  // `get_return_block` gets passed the `id` corresponding
770     ///     }         // to this, it will return `None`.
771     ///     false
772     /// }
773     /// ```
774     pub fn get_return_block(&self, id: HirId) -> Option<HirId> {
775         let match_fn = |node: &Node<'_>| {
776             match *node {
777                 Node::Item(_) |
778                 Node::ForeignItem(_) |
779                 Node::TraitItem(_) |
780                 Node::Expr(Expr { node: ExprKind::Closure(..), ..}) |
781                 Node::ImplItem(_) => true,
782                 _ => false,
783             }
784         };
785         let match_non_returning_block = |node: &Node<'_>| {
786             match *node {
787                 Node::Expr(ref expr) => {
788                     match expr.node {
789                         ExprKind::While(..) | ExprKind::Loop(..) | ExprKind::Ret(..) => true,
790                         _ => false,
791                     }
792                 }
793                 _ => false,
794             }
795         };
796
797         self.walk_parent_nodes(id, match_fn, match_non_returning_block).ok()
798     }
799
800     /// Retrieves the `NodeId` for `id`'s parent item, or `id` itself if no
801     /// parent item is in this map. The "parent item" is the closest parent node
802     /// in the HIR which is recorded by the map and is an item, either an item
803     /// in a module, trait, or impl.
804     pub fn get_parent(&self, id: NodeId) -> NodeId {
805         let hir_id = self.node_to_hir_id(id);
806         let parent_hir_id = self.get_parent_item(hir_id);
807         self.hir_to_node_id(parent_hir_id)
808     }
809
810     // FIXME(@ljedrz): replace the NodeId variant
811     pub fn get_parent_item(&self, hir_id: HirId) -> HirId {
812         match self.walk_parent_nodes(hir_id, |node| match *node {
813             Node::Item(_) |
814             Node::ForeignItem(_) |
815             Node::TraitItem(_) |
816             Node::ImplItem(_) => true,
817             _ => false,
818         }, |_| false) {
819             Ok(id) => id,
820             Err(id) => id,
821         }
822     }
823
824     /// Returns the `DefId` of `id`'s nearest module parent, or `id` itself if no
825     /// module parent is in this map.
826     pub fn get_module_parent(&self, id: NodeId) -> DefId {
827         let hir_id = self.node_to_hir_id(id);
828         self.get_module_parent_by_hir_id(hir_id)
829     }
830
831     // FIXME(@ljedrz): replace the NodeId variant
832     pub fn get_module_parent_by_hir_id(&self, id: HirId) -> DefId {
833         self.local_def_id_from_hir_id(self.get_module_parent_node(id))
834     }
835
836     /// Returns the `HirId` of `id`'s nearest module parent, or `id` itself if no
837     /// module parent is in this map.
838     pub fn get_module_parent_node(&self, hir_id: HirId) -> HirId {
839         match self.walk_parent_nodes(hir_id, |node| match *node {
840             Node::Item(&Item { node: ItemKind::Mod(_), .. }) => true,
841             _ => false,
842         }, |_| false) {
843             Ok(id) => id,
844             Err(id) => id,
845         }
846     }
847
848     /// Returns the nearest enclosing scope. A scope is an item or block.
849     /// FIXME: it is not clear to me that all items qualify as scopes -- statics
850     /// and associated types probably shouldn't, for example. Behavior in this
851     /// regard should be expected to be highly unstable.
852     pub fn get_enclosing_scope(&self, hir_id: HirId) -> Option<HirId> {
853         self.walk_parent_nodes(hir_id, |node| match *node {
854             Node::Item(_) |
855             Node::ForeignItem(_) |
856             Node::TraitItem(_) |
857             Node::ImplItem(_) |
858             Node::Block(_) => true,
859             _ => false,
860         }, |_| false).ok()
861     }
862
863     pub fn get_parent_did(&self, id: NodeId) -> DefId {
864         let hir_id = self.node_to_hir_id(id);
865         self.get_parent_did_by_hir_id(hir_id)
866     }
867
868     // FIXME(@ljedrz): replace the NodeId variant
869     pub fn get_parent_did_by_hir_id(&self, id: HirId) -> DefId {
870         self.local_def_id_from_hir_id(self.get_parent_item(id))
871     }
872
873     pub fn get_foreign_abi(&self, id: NodeId) -> Abi {
874         let hir_id = self.node_to_hir_id(id);
875         self.get_foreign_abi_by_hir_id(hir_id)
876     }
877
878     // FIXME(@ljedrz): replace the NodeId variant
879     pub fn get_foreign_abi_by_hir_id(&self, hir_id: HirId) -> Abi {
880         let parent = self.get_parent_item(hir_id);
881         if let Some(entry) = self.find_entry(parent) {
882             if let Entry {
883                 node: Node::Item(Item { node: ItemKind::ForeignMod(ref nm), .. }), .. } = entry
884             {
885                 self.read(hir_id); // reveals some of the content of a node
886                 return nm.abi;
887             }
888         }
889         bug!("expected foreign mod or inlined parent, found {}", self.hir_to_string(parent))
890     }
891
892     pub fn expect_item(&self, id: NodeId) -> &'hir Item {
893         let hir_id = self.node_to_hir_id(id);
894         self.expect_item_by_hir_id(hir_id)
895     }
896
897     // FIXME(@ljedrz): replace the NodeId variant
898     pub fn expect_item_by_hir_id(&self, id: HirId) -> &'hir Item {
899         match self.find_by_hir_id(id) { // read recorded by `find`
900             Some(Node::Item(item)) => item,
901             _ => bug!("expected item, found {}", self.hir_to_string(id))
902         }
903     }
904
905     pub fn expect_impl_item(&self, id: HirId) -> &'hir ImplItem {
906         match self.find_by_hir_id(id) {
907             Some(Node::ImplItem(item)) => item,
908             _ => bug!("expected impl item, found {}", self.hir_to_string(id))
909         }
910     }
911
912     pub fn expect_trait_item(&self, id: HirId) -> &'hir TraitItem {
913         match self.find_by_hir_id(id) {
914             Some(Node::TraitItem(item)) => item,
915             _ => bug!("expected trait item, found {}", self.hir_to_string(id))
916         }
917     }
918
919     pub fn expect_variant_data(&self, id: HirId) -> &'hir VariantData {
920         match self.find_by_hir_id(id) {
921             Some(Node::Item(i)) => {
922                 match i.node {
923                     ItemKind::Struct(ref struct_def, _) |
924                     ItemKind::Union(ref struct_def, _) => struct_def,
925                     _ => bug!("struct ID bound to non-struct {}", self.hir_to_string(id))
926                 }
927             }
928             Some(Node::Variant(variant)) => &variant.node.data,
929             Some(Node::Ctor(data)) => data,
930             _ => bug!("expected struct or variant, found {}", self.hir_to_string(id))
931         }
932     }
933
934     pub fn expect_variant(&self, id: HirId) -> &'hir Variant {
935         match self.find_by_hir_id(id) {
936             Some(Node::Variant(variant)) => variant,
937             _ => bug!("expected variant, found {}", self.hir_to_string(id)),
938         }
939     }
940
941     pub fn expect_foreign_item(&self, id: HirId) -> &'hir ForeignItem {
942         match self.find_by_hir_id(id) {
943             Some(Node::ForeignItem(item)) => item,
944             _ => bug!("expected foreign item, found {}", self.hir_to_string(id))
945         }
946     }
947
948     pub fn expect_expr(&self, id: NodeId) -> &'hir Expr {
949         let hir_id = self.node_to_hir_id(id);
950         self.expect_expr_by_hir_id(hir_id)
951     }
952
953     // FIXME(@ljedrz): replace the NodeId variant
954     pub fn expect_expr_by_hir_id(&self, id: HirId) -> &'hir Expr {
955         match self.find_by_hir_id(id) { // read recorded by find
956             Some(Node::Expr(expr)) => expr,
957             _ => bug!("expected expr, found {}", self.hir_to_string(id))
958         }
959     }
960
961     /// Returns the name associated with the given `NodeId`'s AST.
962     pub fn name(&self, id: NodeId) -> Name {
963         let hir_id = self.node_to_hir_id(id);
964         self.name_by_hir_id(hir_id)
965     }
966
967     // FIXME(@ljedrz): replace the NodeId variant
968     pub fn name_by_hir_id(&self, id: HirId) -> Name {
969         match self.get_by_hir_id(id) {
970             Node::Item(i) => i.ident.name,
971             Node::ForeignItem(fi) => fi.ident.name,
972             Node::ImplItem(ii) => ii.ident.name,
973             Node::TraitItem(ti) => ti.ident.name,
974             Node::Variant(v) => v.node.ident.name,
975             Node::Field(f) => f.ident.name,
976             Node::Lifetime(lt) => lt.name.ident().name,
977             Node::GenericParam(param) => param.name.ident().name,
978             Node::Binding(&Pat { node: PatKind::Binding(_, _, l, _), .. }) => l.name,
979             Node::Ctor(..) => self.name_by_hir_id(self.get_parent_item(id)),
980             _ => bug!("no name for {}", self.hir_to_string(id))
981         }
982     }
983
984     /// Given a node ID, get a list of attributes associated with the AST
985     /// corresponding to the Node ID
986     pub fn attrs(&self, id: NodeId) -> &'hir [ast::Attribute] {
987         let hir_id = self.node_to_hir_id(id);
988         self.attrs_by_hir_id(hir_id)
989     }
990
991     // FIXME(@ljedrz): replace the NodeId variant
992     pub fn attrs_by_hir_id(&self, id: HirId) -> &'hir [ast::Attribute] {
993         self.read(id); // reveals attributes on the node
994         let attrs = match self.find_entry(id).map(|entry| entry.node) {
995             Some(Node::Local(l)) => Some(&l.attrs[..]),
996             Some(Node::Item(i)) => Some(&i.attrs[..]),
997             Some(Node::ForeignItem(fi)) => Some(&fi.attrs[..]),
998             Some(Node::TraitItem(ref ti)) => Some(&ti.attrs[..]),
999             Some(Node::ImplItem(ref ii)) => Some(&ii.attrs[..]),
1000             Some(Node::Variant(ref v)) => Some(&v.node.attrs[..]),
1001             Some(Node::Field(ref f)) => Some(&f.attrs[..]),
1002             Some(Node::Expr(ref e)) => Some(&*e.attrs),
1003             Some(Node::Stmt(ref s)) => Some(s.node.attrs()),
1004             Some(Node::Arm(ref a)) => Some(&*a.attrs),
1005             Some(Node::GenericParam(param)) => Some(&param.attrs[..]),
1006             // Unit/tuple structs/variants take the attributes straight from
1007             // the struct/variant definition.
1008             Some(Node::Ctor(..)) => return self.attrs_by_hir_id(self.get_parent_item(id)),
1009             Some(Node::Crate) => Some(&self.forest.krate.attrs[..]),
1010             _ => None
1011         };
1012         attrs.unwrap_or(&[])
1013     }
1014
1015     /// Returns an iterator that yields all the hir ids in the map.
1016     fn all_ids<'a>(&'a self) -> impl Iterator<Item = HirId> + 'a {
1017         // This code is a bit awkward because the map is implemented as 2 levels of arrays,
1018         // see the comment on `HirEntryMap`.
1019         // Iterate over all the indices and return a reference to
1020         // local maps and their index given that they exist.
1021         self.map.iter().enumerate().filter_map(|(i, local_map)| {
1022             local_map.as_ref().map(|m| (i, m))
1023         }).flat_map(move |(array_index, local_map)| {
1024             // Iterate over each valid entry in the local map
1025             local_map.iter_enumerated().filter_map(move |(i, entry)| entry.map(move |_| {
1026                 // Reconstruct the HirId based on the 3 indices we used to find it
1027                 HirId {
1028                     owner: DefIndex::from(array_index),
1029                     local_id: i,
1030                 }
1031             }))
1032         })
1033     }
1034
1035     /// Returns an iterator that yields the node id's with paths that
1036     /// match `parts`.  (Requires `parts` is non-empty.)
1037     ///
1038     /// For example, if given `parts` equal to `["bar", "quux"]`, then
1039     /// the iterator will produce node id's for items with paths
1040     /// such as `foo::bar::quux`, `bar::quux`, `other::bar::quux`, and
1041     /// any other such items it can find in the map.
1042     pub fn nodes_matching_suffix<'a>(&'a self, parts: &'a [String])
1043                                  -> impl Iterator<Item = NodeId> + 'a {
1044         let nodes = NodesMatchingSuffix {
1045             map: self,
1046             item_name: parts.last().unwrap(),
1047             in_which: &parts[..parts.len() - 1],
1048         };
1049
1050         self.all_ids().filter(move |hir| nodes.matches_suffix(*hir)).map(move |hir| {
1051             self.hir_to_node_id(hir)
1052         })
1053     }
1054
1055     pub fn span(&self, id: NodeId) -> Span {
1056         let hir_id = self.node_to_hir_id(id);
1057         self.span_by_hir_id(hir_id)
1058     }
1059
1060     // FIXME(@ljedrz): replace the NodeId variant
1061     pub fn span_by_hir_id(&self, hir_id: HirId) -> Span {
1062         self.read(hir_id); // reveals span from node
1063         match self.find_entry(hir_id).map(|entry| entry.node) {
1064             Some(Node::Item(item)) => item.span,
1065             Some(Node::ForeignItem(foreign_item)) => foreign_item.span,
1066             Some(Node::TraitItem(trait_method)) => trait_method.span,
1067             Some(Node::ImplItem(impl_item)) => impl_item.span,
1068             Some(Node::Variant(variant)) => variant.span,
1069             Some(Node::Field(field)) => field.span,
1070             Some(Node::AnonConst(constant)) => self.body(constant.body).value.span,
1071             Some(Node::Expr(expr)) => expr.span,
1072             Some(Node::Stmt(stmt)) => stmt.span,
1073             Some(Node::PathSegment(seg)) => seg.ident.span,
1074             Some(Node::Ty(ty)) => ty.span,
1075             Some(Node::TraitRef(tr)) => tr.path.span,
1076             Some(Node::Binding(pat)) => pat.span,
1077             Some(Node::Pat(pat)) => pat.span,
1078             Some(Node::Arm(arm)) => arm.span,
1079             Some(Node::Block(block)) => block.span,
1080             Some(Node::Ctor(..)) => match self.find_by_hir_id(
1081                 self.get_parent_node_by_hir_id(hir_id))
1082             {
1083                 Some(Node::Item(item)) => item.span,
1084                 Some(Node::Variant(variant)) => variant.span,
1085                 _ => unreachable!(),
1086             }
1087             Some(Node::Lifetime(lifetime)) => lifetime.span,
1088             Some(Node::GenericParam(param)) => param.span,
1089             Some(Node::Visibility(&Spanned {
1090                 node: VisibilityKind::Restricted { ref path, .. }, ..
1091             })) => path.span,
1092             Some(Node::Visibility(v)) => bug!("unexpected Visibility {:?}", v),
1093             Some(Node::Local(local)) => local.span,
1094             Some(Node::MacroDef(macro_def)) => macro_def.span,
1095             Some(Node::Crate) => self.forest.krate.span,
1096             None => bug!("hir::map::Map::span: id not in map: {:?}", hir_id),
1097         }
1098     }
1099
1100     pub fn span_if_local(&self, id: DefId) -> Option<Span> {
1101         self.as_local_node_id(id).map(|id| self.span(id))
1102     }
1103
1104     pub fn node_to_string(&self, id: NodeId) -> String {
1105         hir_id_to_string(self, self.node_to_hir_id(id), true)
1106     }
1107
1108     // FIXME(@ljedrz): replace the NodeId variant
1109     pub fn hir_to_string(&self, id: HirId) -> String {
1110         hir_id_to_string(self, id, true)
1111     }
1112
1113     pub fn node_to_user_string(&self, id: NodeId) -> String {
1114         hir_id_to_string(self, self.node_to_hir_id(id), false)
1115     }
1116
1117     // FIXME(@ljedrz): replace the NodeId variant
1118     pub fn hir_to_user_string(&self, id: HirId) -> String {
1119         hir_id_to_string(self, id, false)
1120     }
1121
1122     pub fn node_to_pretty_string(&self, id: NodeId) -> String {
1123         print::to_string(self, |s| s.print_node(self.get(id)))
1124     }
1125
1126     // FIXME(@ljedrz): replace the NodeId variant
1127     pub fn hir_to_pretty_string(&self, id: HirId) -> String {
1128         print::to_string(self, |s| s.print_node(self.get_by_hir_id(id)))
1129     }
1130 }
1131
1132 pub struct NodesMatchingSuffix<'a> {
1133     map: &'a Map<'a>,
1134     item_name: &'a String,
1135     in_which: &'a [String],
1136 }
1137
1138 impl<'a> NodesMatchingSuffix<'a> {
1139     /// Returns `true` only if some suffix of the module path for parent
1140     /// matches `self.in_which`.
1141     ///
1142     /// In other words: let `[x_0,x_1,...,x_k]` be `self.in_which`;
1143     /// returns true if parent's path ends with the suffix
1144     /// `x_0::x_1::...::x_k`.
1145     fn suffix_matches(&self, parent: HirId) -> bool {
1146         let mut cursor = parent;
1147         for part in self.in_which.iter().rev() {
1148             let (mod_id, mod_name) = match find_first_mod_parent(self.map, cursor) {
1149                 None => return false,
1150                 Some((node_id, name)) => (node_id, name),
1151             };
1152             if mod_name.as_str() != *part {
1153                 return false;
1154             }
1155             cursor = self.map.get_parent_item(mod_id);
1156         }
1157         return true;
1158
1159         // Finds the first mod in parent chain for `id`, along with
1160         // that mod's name.
1161         //
1162         // If `id` itself is a mod named `m` with parent `p`, then
1163         // returns `Some(id, m, p)`.  If `id` has no mod in its parent
1164         // chain, then returns `None`.
1165         fn find_first_mod_parent<'a>(map: &'a Map<'_>, mut id: HirId) -> Option<(HirId, Name)> {
1166             loop {
1167                 if let Node::Item(item) = map.find_by_hir_id(id)? {
1168                     if item_is_mod(&item) {
1169                         return Some((id, item.ident.name))
1170                     }
1171                 }
1172                 let parent = map.get_parent_item(id);
1173                 if parent == id { return None }
1174                 id = parent;
1175             }
1176
1177             fn item_is_mod(item: &Item) -> bool {
1178                 match item.node {
1179                     ItemKind::Mod(_) => true,
1180                     _ => false,
1181                 }
1182             }
1183         }
1184     }
1185
1186     // We are looking at some node `n` with a given name and parent
1187     // id; do their names match what I am seeking?
1188     fn matches_names(&self, parent_of_n: HirId, name: Name) -> bool {
1189         name.as_str() == *self.item_name && self.suffix_matches(parent_of_n)
1190     }
1191
1192     fn matches_suffix(&self, hir: HirId) -> bool {
1193         let name = match self.map.find_entry(hir).map(|entry| entry.node) {
1194             Some(Node::Item(n)) => n.name(),
1195             Some(Node::ForeignItem(n)) => n.name(),
1196             Some(Node::TraitItem(n)) => n.name(),
1197             Some(Node::ImplItem(n)) => n.name(),
1198             Some(Node::Variant(n)) => n.name(),
1199             Some(Node::Field(n)) => n.name(),
1200             _ => return false,
1201         };
1202         self.matches_names(self.map.get_parent_item(hir), name)
1203     }
1204 }
1205
1206 trait Named {
1207     fn name(&self) -> Name;
1208 }
1209
1210 impl<T:Named> Named for Spanned<T> { fn name(&self) -> Name { self.node.name() } }
1211
1212 impl Named for Item { fn name(&self) -> Name { self.ident.name } }
1213 impl Named for ForeignItem { fn name(&self) -> Name { self.ident.name } }
1214 impl Named for VariantKind { fn name(&self) -> Name { self.ident.name } }
1215 impl Named for StructField { fn name(&self) -> Name { self.ident.name } }
1216 impl Named for TraitItem { fn name(&self) -> Name { self.ident.name } }
1217 impl Named for ImplItem { fn name(&self) -> Name { self.ident.name } }
1218
1219 pub fn map_crate<'hir>(sess: &crate::session::Session,
1220                        cstore: &CrateStoreDyn,
1221                        forest: &'hir Forest,
1222                        definitions: &'hir Definitions)
1223                        -> Map<'hir> {
1224     // Build the reverse mapping of `node_to_hir_id`.
1225     let hir_to_node_id = definitions.node_to_hir_id.iter_enumerated()
1226         .map(|(node_id, &hir_id)| (hir_id, node_id)).collect();
1227
1228     let (map, crate_hash) = {
1229         let hcx = crate::ich::StableHashingContext::new(sess, &forest.krate, definitions, cstore);
1230
1231         let mut collector = NodeCollector::root(sess,
1232                                                 &forest.krate,
1233                                                 &forest.dep_graph,
1234                                                 &definitions,
1235                                                 &hir_to_node_id,
1236                                                 hcx);
1237         intravisit::walk_crate(&mut collector, &forest.krate);
1238
1239         let crate_disambiguator = sess.local_crate_disambiguator();
1240         let cmdline_args = sess.opts.dep_tracking_hash();
1241         collector.finalize_and_compute_crate_hash(
1242             crate_disambiguator,
1243             cstore,
1244             cmdline_args
1245         )
1246     };
1247
1248     let map = Map {
1249         forest,
1250         dep_graph: forest.dep_graph.clone(),
1251         crate_hash,
1252         map,
1253         hir_to_node_id,
1254         definitions,
1255     };
1256
1257     time(sess, "validate hir map", || {
1258         hir_id_validator::check_crate(&map);
1259     });
1260
1261     map
1262 }
1263
1264 /// Identical to the `PpAnn` implementation for `hir::Crate`,
1265 /// except it avoids creating a dependency on the whole crate.
1266 impl<'hir> print::PpAnn for Map<'hir> {
1267     fn nested(&self, state: &mut print::State<'_>, nested: print::Nested) -> io::Result<()> {
1268         match nested {
1269             Nested::Item(id) => state.print_item(self.expect_item_by_hir_id(id.id)),
1270             Nested::TraitItem(id) => state.print_trait_item(self.trait_item(id)),
1271             Nested::ImplItem(id) => state.print_impl_item(self.impl_item(id)),
1272             Nested::Body(id) => state.print_expr(&self.body(id).value),
1273             Nested::BodyArgPat(id, i) => state.print_pat(&self.body(id).arguments[i].pat)
1274         }
1275     }
1276 }
1277
1278 impl<'a> print::State<'a> {
1279     pub fn print_node(&mut self, node: Node<'_>) -> io::Result<()> {
1280         match node {
1281             Node::Item(a)         => self.print_item(&a),
1282             Node::ForeignItem(a)  => self.print_foreign_item(&a),
1283             Node::TraitItem(a)    => self.print_trait_item(a),
1284             Node::ImplItem(a)     => self.print_impl_item(a),
1285             Node::Variant(a)      => self.print_variant(&a),
1286             Node::AnonConst(a)    => self.print_anon_const(&a),
1287             Node::Expr(a)         => self.print_expr(&a),
1288             Node::Stmt(a)         => self.print_stmt(&a),
1289             Node::PathSegment(a)  => self.print_path_segment(&a),
1290             Node::Ty(a)           => self.print_type(&a),
1291             Node::TraitRef(a)     => self.print_trait_ref(&a),
1292             Node::Binding(a)      |
1293             Node::Pat(a)          => self.print_pat(&a),
1294             Node::Arm(a)          => self.print_arm(&a),
1295             Node::Block(a)        => {
1296                 use syntax::print::pprust::PrintState;
1297
1298                 // containing cbox, will be closed by print-block at }
1299                 self.cbox(print::indent_unit)?;
1300                 // head-ibox, will be closed by print-block after {
1301                 self.ibox(0)?;
1302                 self.print_block(&a)
1303             }
1304             Node::Lifetime(a)     => self.print_lifetime(&a),
1305             Node::Visibility(a)   => self.print_visibility(&a),
1306             Node::GenericParam(_) => bug!("cannot print Node::GenericParam"),
1307             Node::Field(_)        => bug!("cannot print StructField"),
1308             // these cases do not carry enough information in the
1309             // hir_map to reconstruct their full structure for pretty
1310             // printing.
1311             Node::Ctor(..)        => bug!("cannot print isolated Ctor"),
1312             Node::Local(a)        => self.print_local_decl(&a),
1313             Node::MacroDef(_)     => bug!("cannot print MacroDef"),
1314             Node::Crate           => bug!("cannot print Crate"),
1315         }
1316     }
1317 }
1318
1319 fn hir_id_to_string(map: &Map<'_>, id: HirId, include_id: bool) -> String {
1320     let id_str = format!(" (hir_id={})", id);
1321     let id_str = if include_id { &id_str[..] } else { "" };
1322
1323     let path_str = || {
1324         // This functionality is used for debugging, try to use TyCtxt to get
1325         // the user-friendly path, otherwise fall back to stringifying DefPath.
1326         crate::ty::tls::with_opt(|tcx| {
1327             if let Some(tcx) = tcx {
1328                 let def_id = map.local_def_id_from_hir_id(id);
1329                 tcx.def_path_str(def_id)
1330             } else if let Some(path) = map.def_path_from_hir_id(id) {
1331                 path.data.into_iter().map(|elem| {
1332                     elem.data.to_string()
1333                 }).collect::<Vec<_>>().join("::")
1334             } else {
1335                 String::from("<missing path>")
1336             }
1337         })
1338     };
1339
1340     match map.find_by_hir_id(id) {
1341         Some(Node::Item(item)) => {
1342             let item_str = match item.node {
1343                 ItemKind::ExternCrate(..) => "extern crate",
1344                 ItemKind::Use(..) => "use",
1345                 ItemKind::Static(..) => "static",
1346                 ItemKind::Const(..) => "const",
1347                 ItemKind::Fn(..) => "fn",
1348                 ItemKind::Mod(..) => "mod",
1349                 ItemKind::ForeignMod(..) => "foreign mod",
1350                 ItemKind::GlobalAsm(..) => "global asm",
1351                 ItemKind::Ty(..) => "ty",
1352                 ItemKind::Existential(..) => "existential type",
1353                 ItemKind::Enum(..) => "enum",
1354                 ItemKind::Struct(..) => "struct",
1355                 ItemKind::Union(..) => "union",
1356                 ItemKind::Trait(..) => "trait",
1357                 ItemKind::TraitAlias(..) => "trait alias",
1358                 ItemKind::Impl(..) => "impl",
1359             };
1360             format!("{} {}{}", item_str, path_str(), id_str)
1361         }
1362         Some(Node::ForeignItem(_)) => {
1363             format!("foreign item {}{}", path_str(), id_str)
1364         }
1365         Some(Node::ImplItem(ii)) => {
1366             match ii.node {
1367                 ImplItemKind::Const(..) => {
1368                     format!("assoc const {} in {}{}", ii.ident, path_str(), id_str)
1369                 }
1370                 ImplItemKind::Method(..) => {
1371                     format!("method {} in {}{}", ii.ident, path_str(), id_str)
1372                 }
1373                 ImplItemKind::Type(_) => {
1374                     format!("assoc type {} in {}{}", ii.ident, path_str(), id_str)
1375                 }
1376                 ImplItemKind::Existential(_) => {
1377                     format!("assoc existential type {} in {}{}", ii.ident, path_str(), id_str)
1378                 }
1379             }
1380         }
1381         Some(Node::TraitItem(ti)) => {
1382             let kind = match ti.node {
1383                 TraitItemKind::Const(..) => "assoc constant",
1384                 TraitItemKind::Method(..) => "trait method",
1385                 TraitItemKind::Type(..) => "assoc type",
1386             };
1387
1388             format!("{} {} in {}{}", kind, ti.ident, path_str(), id_str)
1389         }
1390         Some(Node::Variant(ref variant)) => {
1391             format!("variant {} in {}{}",
1392                     variant.node.ident,
1393                     path_str(), id_str)
1394         }
1395         Some(Node::Field(ref field)) => {
1396             format!("field {} in {}{}",
1397                     field.ident,
1398                     path_str(), id_str)
1399         }
1400         Some(Node::AnonConst(_)) => {
1401             format!("const {}{}", map.hir_to_pretty_string(id), id_str)
1402         }
1403         Some(Node::Expr(_)) => {
1404             format!("expr {}{}", map.hir_to_pretty_string(id), id_str)
1405         }
1406         Some(Node::Stmt(_)) => {
1407             format!("stmt {}{}", map.hir_to_pretty_string(id), id_str)
1408         }
1409         Some(Node::PathSegment(_)) => {
1410             format!("path segment {}{}", map.hir_to_pretty_string(id), id_str)
1411         }
1412         Some(Node::Ty(_)) => {
1413             format!("type {}{}", map.hir_to_pretty_string(id), id_str)
1414         }
1415         Some(Node::TraitRef(_)) => {
1416             format!("trait_ref {}{}", map.hir_to_pretty_string(id), id_str)
1417         }
1418         Some(Node::Binding(_)) => {
1419             format!("local {}{}", map.hir_to_pretty_string(id), id_str)
1420         }
1421         Some(Node::Pat(_)) => {
1422             format!("pat {}{}", map.hir_to_pretty_string(id), id_str)
1423         }
1424         Some(Node::Arm(_)) => {
1425             format!("arm {}{}", map.hir_to_pretty_string(id), id_str)
1426         }
1427         Some(Node::Block(_)) => {
1428             format!("block {}{}", map.hir_to_pretty_string(id), id_str)
1429         }
1430         Some(Node::Local(_)) => {
1431             format!("local {}{}", map.hir_to_pretty_string(id), id_str)
1432         }
1433         Some(Node::Ctor(..)) => {
1434             format!("ctor {}{}", path_str(), id_str)
1435         }
1436         Some(Node::Lifetime(_)) => {
1437             format!("lifetime {}{}", map.hir_to_pretty_string(id), id_str)
1438         }
1439         Some(Node::GenericParam(ref param)) => {
1440             format!("generic_param {:?}{}", param, id_str)
1441         }
1442         Some(Node::Visibility(ref vis)) => {
1443             format!("visibility {:?}{}", vis, id_str)
1444         }
1445         Some(Node::MacroDef(_)) => {
1446             format!("macro {}{}",  path_str(), id_str)
1447         }
1448         Some(Node::Crate) => String::from("root_crate"),
1449         None => format!("unknown node{}", id_str),
1450     }
1451 }
1452
1453 pub fn def_kind(tcx: TyCtxt<'_, '_, '_>, def_id: DefId) -> Option<DefKind> {
1454     if let Some(node_id) = tcx.hir().as_local_node_id(def_id) {
1455         tcx.hir().def_kind(node_id)
1456     } else {
1457         bug!("Calling local def_kind query provider for upstream DefId: {:?}",
1458              def_id)
1459     }
1460 }