]> git.lizzy.rs Git - rust.git/blob - src/librustc_save_analysis/dump_visitor.rs
Rollup merge of #74376 - lcnr:type-dependent-path-cleanup, r=eddyb
[rust.git] / src / librustc_save_analysis / dump_visitor.rs
1 //! Write the output of rustc's analysis to an implementor of Dump.
2 //!
3 //! Dumping the analysis is implemented by walking the AST and getting a bunch of
4 //! info out from all over the place. We use `DefId`s to identify objects. The
5 //! tricky part is getting syntactic (span, source text) and semantic (reference
6 //! `DefId`s) information for parts of expressions which the compiler has discarded.
7 //! E.g., in a path `foo::bar::baz`, the compiler only keeps a span for the whole
8 //! path and a reference to `baz`, but we want spans and references for all three
9 //! idents.
10 //!
11 //! SpanUtils is used to manipulate spans. In particular, to extract sub-spans
12 //! from spans (e.g., the span for `bar` from the above example path).
13 //! DumpVisitor walks the AST and processes it, and Dumper is used for
14 //! recording the output.
15
16 use rustc_ast::ast::{self};
17 use rustc_ast::{token, walk_list};
18 use rustc_data_structures::fx::FxHashSet;
19 use rustc_hir as hir;
20 use rustc_hir::def::{DefKind as HirDefKind, Res};
21 use rustc_hir::def_id::{DefId, LocalDefId};
22 use rustc_hir::intravisit::{self, Visitor};
23 use rustc_hir_pretty::{bounds_to_string, fn_to_string, generic_params_to_string, ty_to_string};
24 use rustc_middle::hir::map::Map;
25 use rustc_middle::span_bug;
26 use rustc_middle::ty::{self, DefIdTree, TyCtxt};
27 use rustc_session::config::Input;
28 use rustc_span::source_map::respan;
29 use rustc_span::symbol::Ident;
30 use rustc_span::*;
31
32 use std::env;
33 use std::path::Path;
34
35 use crate::dumper::{Access, Dumper};
36 use crate::sig;
37 use crate::span_utils::SpanUtils;
38 use crate::{
39     escape, generated_code, id_from_def_id, id_from_hir_id, lower_attributes, PathCollector,
40     SaveContext,
41 };
42
43 use rls_data::{
44     CompilationOptions, CratePreludeData, Def, DefKind, GlobalCrateId, Import, ImportKind, Ref,
45     RefKind, Relation, RelationKind, SpanData,
46 };
47
48 use log::{debug, error};
49
50 macro_rules! down_cast_data {
51     ($id:ident, $kind:ident, $sp:expr) => {
52         let $id = if let super::Data::$kind(data) = $id {
53             data
54         } else {
55             span_bug!($sp, "unexpected data kind: {:?}", $id);
56         };
57     };
58 }
59
60 macro_rules! access_from {
61     ($save_ctxt:expr, $item:expr, $id:expr) => {
62         Access {
63             public: $item.vis.node.is_pub(),
64             reachable: $save_ctxt.access_levels.is_reachable($id),
65         }
66     };
67 }
68
69 macro_rules! access_from_vis {
70     ($save_ctxt:expr, $vis:expr, $id:expr) => {
71         Access { public: $vis.node.is_pub(), reachable: $save_ctxt.access_levels.is_reachable($id) }
72     };
73 }
74
75 pub struct DumpVisitor<'tcx> {
76     pub save_ctxt: SaveContext<'tcx>,
77     tcx: TyCtxt<'tcx>,
78     dumper: Dumper,
79
80     span: SpanUtils<'tcx>,
81     // Set of macro definition (callee) spans, and the set
82     // of macro use (callsite) spans. We store these to ensure
83     // we only write one macro def per unique macro definition, and
84     // one macro use per unique callsite span.
85     // mac_defs: FxHashSet<Span>,
86     // macro_calls: FxHashSet<Span>,
87 }
88
89 impl<'tcx> DumpVisitor<'tcx> {
90     pub fn new(save_ctxt: SaveContext<'tcx>) -> DumpVisitor<'tcx> {
91         let span_utils = SpanUtils::new(&save_ctxt.tcx.sess);
92         let dumper = Dumper::new(save_ctxt.config.clone());
93         DumpVisitor {
94             tcx: save_ctxt.tcx,
95             save_ctxt,
96             dumper,
97             span: span_utils,
98             // mac_defs: FxHashSet::default(),
99             // macro_calls: FxHashSet::default(),
100         }
101     }
102
103     pub fn analysis(&self) -> &rls_data::Analysis {
104         self.dumper.analysis()
105     }
106
107     fn nest_typeck_results<F>(&mut self, item_def_id: LocalDefId, f: F)
108     where
109         F: FnOnce(&mut Self),
110     {
111         let typeck_results = if self.tcx.has_typeck_results(item_def_id) {
112             Some(self.tcx.typeck(item_def_id))
113         } else {
114             None
115         };
116
117         let old_maybe_typeck_results = self.save_ctxt.maybe_typeck_results;
118         self.save_ctxt.maybe_typeck_results = typeck_results;
119         f(self);
120         self.save_ctxt.maybe_typeck_results = old_maybe_typeck_results;
121     }
122
123     fn span_from_span(&self, span: Span) -> SpanData {
124         self.save_ctxt.span_from_span(span)
125     }
126
127     fn lookup_def_id(&self, ref_id: hir::HirId) -> Option<DefId> {
128         self.save_ctxt.lookup_def_id(ref_id)
129     }
130
131     pub fn dump_crate_info(&mut self, name: &str, krate: &hir::Crate<'_>) {
132         let source_file = self.tcx.sess.local_crate_source_file.as_ref();
133         let crate_root = source_file.map(|source_file| {
134             let source_file = Path::new(source_file);
135             match source_file.file_name() {
136                 Some(_) => source_file.parent().unwrap().display(),
137                 None => source_file.display(),
138             }
139             .to_string()
140         });
141
142         let data = CratePreludeData {
143             crate_id: GlobalCrateId {
144                 name: name.into(),
145                 disambiguator: self
146                     .tcx
147                     .sess
148                     .local_crate_disambiguator()
149                     .to_fingerprint()
150                     .as_value(),
151             },
152             crate_root: crate_root.unwrap_or_else(|| "<no source>".to_owned()),
153             external_crates: self.save_ctxt.get_external_crates(),
154             span: self.span_from_span(krate.item.span),
155         };
156
157         self.dumper.crate_prelude(data);
158     }
159
160     pub fn dump_compilation_options(&mut self, input: &Input, crate_name: &str) {
161         // Apply possible `remap-path-prefix` remapping to the input source file
162         // (and don't include remapping args anymore)
163         let (program, arguments) = {
164             let remap_arg_indices = {
165                 let mut indices = FxHashSet::default();
166                 // Args are guaranteed to be valid UTF-8 (checked early)
167                 for (i, e) in env::args().enumerate() {
168                     if e.starts_with("--remap-path-prefix=") {
169                         indices.insert(i);
170                     } else if e == "--remap-path-prefix" {
171                         indices.insert(i);
172                         indices.insert(i + 1);
173                     }
174                 }
175                 indices
176             };
177
178             let mut args = env::args()
179                 .enumerate()
180                 .filter(|(i, _)| !remap_arg_indices.contains(i))
181                 .map(|(_, arg)| match input {
182                     Input::File(ref path) if path == Path::new(&arg) => {
183                         let mapped = &self.tcx.sess.local_crate_source_file;
184                         mapped.as_ref().unwrap().to_string_lossy().into()
185                     }
186                     _ => arg,
187                 });
188
189             (args.next().unwrap(), args.collect())
190         };
191
192         let data = CompilationOptions {
193             directory: self.tcx.sess.working_dir.0.clone(),
194             program,
195             arguments,
196             output: self.save_ctxt.compilation_output(crate_name),
197         };
198
199         self.dumper.compilation_opts(data);
200     }
201
202     fn write_segments(&mut self, segments: impl IntoIterator<Item = &'tcx hir::PathSegment<'tcx>>) {
203         for seg in segments {
204             if let Some(data) = self.save_ctxt.get_path_segment_data(seg) {
205                 self.dumper.dump_ref(data);
206             }
207         }
208     }
209
210     fn write_sub_paths(&mut self, path: &'tcx hir::Path<'tcx>) {
211         self.write_segments(path.segments)
212     }
213
214     // As write_sub_paths, but does not process the last ident in the path (assuming it
215     // will be processed elsewhere). See note on write_sub_paths about global.
216     fn write_sub_paths_truncated(&mut self, path: &'tcx hir::Path<'tcx>) {
217         if let [segments @ .., _] = path.segments {
218             self.write_segments(segments)
219         }
220     }
221
222     fn process_formals(&mut self, formals: &'tcx [hir::Param<'tcx>], qualname: &str) {
223         for arg in formals {
224             self.visit_pat(&arg.pat);
225             let mut collector = PathCollector::new(self.tcx);
226             collector.visit_pat(&arg.pat);
227
228             for (hir_id, ident, ..) in collector.collected_idents {
229                 let typ = match self.save_ctxt.typeck_results().node_type_opt(hir_id) {
230                     Some(s) => s.to_string(),
231                     None => continue,
232                 };
233                 if !self.span.filter_generated(ident.span) {
234                     let id = id_from_hir_id(hir_id, &self.save_ctxt);
235                     let span = self.span_from_span(ident.span);
236
237                     self.dumper.dump_def(
238                         &Access { public: false, reachable: false },
239                         Def {
240                             kind: DefKind::Local,
241                             id,
242                             span,
243                             name: ident.to_string(),
244                             qualname: format!("{}::{}", qualname, ident.to_string()),
245                             value: typ,
246                             parent: None,
247                             children: vec![],
248                             decl_id: None,
249                             docs: String::new(),
250                             sig: None,
251                             attributes: vec![],
252                         },
253                     );
254                 }
255             }
256         }
257     }
258
259     fn process_method(
260         &mut self,
261         sig: &'tcx hir::FnSig<'tcx>,
262         body: Option<hir::BodyId>,
263         hir_id: hir::HirId,
264         ident: Ident,
265         generics: &'tcx hir::Generics<'tcx>,
266         vis: &hir::Visibility<'tcx>,
267         span: Span,
268     ) {
269         debug!("process_method: {}:{}", hir_id, ident);
270
271         let map = &self.tcx.hir();
272         self.nest_typeck_results(map.local_def_id(hir_id), |v| {
273             if let Some(mut method_data) = v.save_ctxt.get_method_data(hir_id, ident, span) {
274                 if let Some(body) = body {
275                     v.process_formals(map.body(body).params, &method_data.qualname);
276                 }
277                 v.process_generic_params(&generics, &method_data.qualname, hir_id);
278
279                 method_data.value =
280                     fn_to_string(sig.decl, sig.header, Some(ident.name), generics, vis, &[], None);
281                 method_data.sig = sig::method_signature(hir_id, ident, generics, sig, &v.save_ctxt);
282
283                 v.dumper.dump_def(&access_from_vis!(v.save_ctxt, vis, hir_id), method_data);
284             }
285
286             // walk arg and return types
287             for arg in sig.decl.inputs {
288                 v.visit_ty(arg);
289             }
290
291             if let hir::FnRetTy::Return(ref ret_ty) = sig.decl.output {
292                 v.visit_ty(ret_ty)
293             }
294
295             // walk the fn body
296             if let Some(body) = body {
297                 v.visit_expr(&map.body(body).value);
298             }
299         });
300     }
301
302     fn process_struct_field_def(
303         &mut self,
304         field: &'tcx hir::StructField<'tcx>,
305         parent_id: hir::HirId,
306     ) {
307         let field_data = self.save_ctxt.get_field_data(field, parent_id);
308         if let Some(field_data) = field_data {
309             self.dumper.dump_def(&access_from!(self.save_ctxt, field, field.hir_id), field_data);
310         }
311     }
312
313     // Dump generic params bindings, then visit_generics
314     fn process_generic_params(
315         &mut self,
316         generics: &'tcx hir::Generics<'tcx>,
317         prefix: &str,
318         id: hir::HirId,
319     ) {
320         for param in generics.params {
321             match param.kind {
322                 hir::GenericParamKind::Lifetime { .. } => {}
323                 hir::GenericParamKind::Type { .. } => {
324                     let param_ss = param.name.ident().span;
325                     let name = escape(self.span.snippet(param_ss));
326                     // Append $id to name to make sure each one is unique.
327                     let qualname = format!("{}::{}${}", prefix, name, id);
328                     if !self.span.filter_generated(param_ss) {
329                         let id = id_from_hir_id(param.hir_id, &self.save_ctxt);
330                         let span = self.span_from_span(param_ss);
331
332                         self.dumper.dump_def(
333                             &Access { public: false, reachable: false },
334                             Def {
335                                 kind: DefKind::Type,
336                                 id,
337                                 span,
338                                 name,
339                                 qualname,
340                                 value: String::new(),
341                                 parent: None,
342                                 children: vec![],
343                                 decl_id: None,
344                                 docs: String::new(),
345                                 sig: None,
346                                 attributes: vec![],
347                             },
348                         );
349                     }
350                 }
351                 hir::GenericParamKind::Const { .. } => {}
352             }
353         }
354         self.visit_generics(generics);
355     }
356
357     fn process_fn(
358         &mut self,
359         item: &'tcx hir::Item<'tcx>,
360         decl: &'tcx hir::FnDecl<'tcx>,
361         _header: &'tcx hir::FnHeader,
362         ty_params: &'tcx hir::Generics<'tcx>,
363         body: hir::BodyId,
364     ) {
365         let map = &self.tcx.hir();
366         self.nest_typeck_results(map.local_def_id(item.hir_id), |v| {
367             let body = map.body(body);
368             if let Some(fn_data) = v.save_ctxt.get_item_data(item) {
369                 down_cast_data!(fn_data, DefData, item.span);
370                 v.process_formals(body.params, &fn_data.qualname);
371                 v.process_generic_params(ty_params, &fn_data.qualname, item.hir_id);
372
373                 v.dumper.dump_def(&access_from!(v.save_ctxt, item, item.hir_id), fn_data);
374             }
375
376             for arg in decl.inputs {
377                 v.visit_ty(arg)
378             }
379
380             if let hir::FnRetTy::Return(ref ret_ty) = decl.output {
381                 v.visit_ty(ret_ty)
382             }
383
384             v.visit_expr(&body.value);
385         });
386     }
387
388     fn process_static_or_const_item(
389         &mut self,
390         item: &'tcx hir::Item<'tcx>,
391         typ: &'tcx hir::Ty<'tcx>,
392         expr: &'tcx hir::Expr<'tcx>,
393     ) {
394         self.nest_typeck_results(self.tcx.hir().local_def_id(item.hir_id), |v| {
395             if let Some(var_data) = v.save_ctxt.get_item_data(item) {
396                 down_cast_data!(var_data, DefData, item.span);
397                 v.dumper.dump_def(&access_from!(v.save_ctxt, item, item.hir_id), var_data);
398             }
399             v.visit_ty(&typ);
400             v.visit_expr(expr);
401         });
402     }
403
404     fn process_assoc_const(
405         &mut self,
406         hir_id: hir::HirId,
407         ident: Ident,
408         typ: &'tcx hir::Ty<'tcx>,
409         expr: Option<&'tcx hir::Expr<'tcx>>,
410         parent_id: DefId,
411         vis: &hir::Visibility<'tcx>,
412         attrs: &'tcx [ast::Attribute],
413     ) {
414         let qualname =
415             format!("::{}", self.tcx.def_path_str(self.tcx.hir().local_def_id(hir_id).to_def_id()));
416
417         if !self.span.filter_generated(ident.span) {
418             let sig = sig::assoc_const_signature(hir_id, ident.name, typ, expr, &self.save_ctxt);
419             let span = self.span_from_span(ident.span);
420
421             self.dumper.dump_def(
422                 &access_from_vis!(self.save_ctxt, vis, hir_id),
423                 Def {
424                     kind: DefKind::Const,
425                     id: id_from_hir_id(hir_id, &self.save_ctxt),
426                     span,
427                     name: ident.name.to_string(),
428                     qualname,
429                     value: ty_to_string(&typ),
430                     parent: Some(id_from_def_id(parent_id)),
431                     children: vec![],
432                     decl_id: None,
433                     docs: self.save_ctxt.docs_for_attrs(attrs),
434                     sig,
435                     attributes: lower_attributes(attrs.to_owned(), &self.save_ctxt),
436                 },
437             );
438         }
439
440         // walk type and init value
441         self.nest_typeck_results(self.tcx.hir().local_def_id(hir_id), |v| {
442             v.visit_ty(typ);
443             if let Some(expr) = expr {
444                 v.visit_expr(expr);
445             }
446         });
447     }
448
449     // FIXME tuple structs should generate tuple-specific data.
450     fn process_struct(
451         &mut self,
452         item: &'tcx hir::Item<'tcx>,
453         def: &'tcx hir::VariantData<'tcx>,
454         ty_params: &'tcx hir::Generics<'tcx>,
455     ) {
456         debug!("process_struct {:?} {:?}", item, item.span);
457         let name = item.ident.to_string();
458         let qualname = format!(
459             "::{}",
460             self.tcx.def_path_str(self.tcx.hir().local_def_id(item.hir_id).to_def_id())
461         );
462
463         let kind = match item.kind {
464             hir::ItemKind::Struct(_, _) => DefKind::Struct,
465             hir::ItemKind::Union(_, _) => DefKind::Union,
466             _ => unreachable!(),
467         };
468
469         let (value, fields) = match item.kind {
470             hir::ItemKind::Struct(hir::VariantData::Struct(ref fields, ..), ..)
471             | hir::ItemKind::Union(hir::VariantData::Struct(ref fields, ..), ..) => {
472                 let include_priv_fields = !self.save_ctxt.config.pub_only;
473                 let fields_str = fields
474                     .iter()
475                     .filter_map(|f| {
476                         if include_priv_fields || f.vis.node.is_pub() {
477                             Some(f.ident.to_string())
478                         } else {
479                             None
480                         }
481                     })
482                     .collect::<Vec<_>>()
483                     .join(", ");
484                 let value = format!("{} {{ {} }}", name, fields_str);
485                 (value, fields.iter().map(|f| id_from_hir_id(f.hir_id, &self.save_ctxt)).collect())
486             }
487             _ => (String::new(), vec![]),
488         };
489
490         if !self.span.filter_generated(item.ident.span) {
491             let span = self.span_from_span(item.ident.span);
492             self.dumper.dump_def(
493                 &access_from!(self.save_ctxt, item, item.hir_id),
494                 Def {
495                     kind,
496                     id: id_from_hir_id(item.hir_id, &self.save_ctxt),
497                     span,
498                     name,
499                     qualname: qualname.clone(),
500                     value,
501                     parent: None,
502                     children: fields,
503                     decl_id: None,
504                     docs: self.save_ctxt.docs_for_attrs(&item.attrs),
505                     sig: sig::item_signature(item, &self.save_ctxt),
506                     attributes: lower_attributes(item.attrs.to_vec(), &self.save_ctxt),
507                 },
508             );
509         }
510
511         self.nest_typeck_results(self.tcx.hir().local_def_id(item.hir_id), |v| {
512             for field in def.fields() {
513                 v.process_struct_field_def(field, item.hir_id);
514                 v.visit_ty(&field.ty);
515             }
516
517             v.process_generic_params(ty_params, &qualname, item.hir_id);
518         });
519     }
520
521     fn process_enum(
522         &mut self,
523         item: &'tcx hir::Item<'tcx>,
524         enum_definition: &'tcx hir::EnumDef<'tcx>,
525         ty_params: &'tcx hir::Generics<'tcx>,
526     ) {
527         let enum_data = self.save_ctxt.get_item_data(item);
528         let enum_data = match enum_data {
529             None => return,
530             Some(data) => data,
531         };
532         down_cast_data!(enum_data, DefData, item.span);
533
534         let access = access_from!(self.save_ctxt, item, item.hir_id);
535
536         for variant in enum_definition.variants {
537             let name = variant.ident.name.to_string();
538             let qualname = format!("{}::{}", enum_data.qualname, name);
539             let name_span = variant.ident.span;
540
541             match variant.data {
542                 hir::VariantData::Struct(ref fields, ..) => {
543                     let fields_str =
544                         fields.iter().map(|f| f.ident.to_string()).collect::<Vec<_>>().join(", ");
545                     let value = format!("{}::{} {{ {} }}", enum_data.name, name, fields_str);
546                     if !self.span.filter_generated(name_span) {
547                         let span = self.span_from_span(name_span);
548                         let id = id_from_hir_id(variant.id, &self.save_ctxt);
549                         let parent = Some(id_from_hir_id(item.hir_id, &self.save_ctxt));
550
551                         self.dumper.dump_def(
552                             &access,
553                             Def {
554                                 kind: DefKind::StructVariant,
555                                 id,
556                                 span,
557                                 name,
558                                 qualname,
559                                 value,
560                                 parent,
561                                 children: vec![],
562                                 decl_id: None,
563                                 docs: self.save_ctxt.docs_for_attrs(&variant.attrs),
564                                 sig: sig::variant_signature(variant, &self.save_ctxt),
565                                 attributes: lower_attributes(
566                                     variant.attrs.to_vec(),
567                                     &self.save_ctxt,
568                                 ),
569                             },
570                         );
571                     }
572                 }
573                 ref v => {
574                     let mut value = format!("{}::{}", enum_data.name, name);
575                     if let &hir::VariantData::Tuple(ref fields, _) = v {
576                         value.push('(');
577                         value.push_str(
578                             &fields
579                                 .iter()
580                                 .map(|f| ty_to_string(&f.ty))
581                                 .collect::<Vec<_>>()
582                                 .join(", "),
583                         );
584                         value.push(')');
585                     }
586                     if !self.span.filter_generated(name_span) {
587                         let span = self.span_from_span(name_span);
588                         let id = id_from_hir_id(variant.id, &self.save_ctxt);
589                         let parent = Some(id_from_hir_id(item.hir_id, &self.save_ctxt));
590
591                         self.dumper.dump_def(
592                             &access,
593                             Def {
594                                 kind: DefKind::TupleVariant,
595                                 id,
596                                 span,
597                                 name,
598                                 qualname,
599                                 value,
600                                 parent,
601                                 children: vec![],
602                                 decl_id: None,
603                                 docs: self.save_ctxt.docs_for_attrs(&variant.attrs),
604                                 sig: sig::variant_signature(variant, &self.save_ctxt),
605                                 attributes: lower_attributes(
606                                     variant.attrs.to_vec(),
607                                     &self.save_ctxt,
608                                 ),
609                             },
610                         );
611                     }
612                 }
613             }
614
615             for field in variant.data.fields() {
616                 self.process_struct_field_def(field, variant.id);
617                 self.visit_ty(field.ty);
618             }
619         }
620         self.process_generic_params(ty_params, &enum_data.qualname, item.hir_id);
621         self.dumper.dump_def(&access, enum_data);
622     }
623
624     fn process_impl(
625         &mut self,
626         item: &'tcx hir::Item<'tcx>,
627         generics: &'tcx hir::Generics<'tcx>,
628         trait_ref: &'tcx Option<hir::TraitRef<'tcx>>,
629         typ: &'tcx hir::Ty<'tcx>,
630         impl_items: &'tcx [hir::ImplItemRef<'tcx>],
631     ) {
632         if let Some(impl_data) = self.save_ctxt.get_item_data(item) {
633             if !self.span.filter_generated(item.span) {
634                 if let super::Data::RelationData(rel, imp) = impl_data {
635                     self.dumper.dump_relation(rel);
636                     self.dumper.dump_impl(imp);
637                 } else {
638                     span_bug!(item.span, "unexpected data kind: {:?}", impl_data);
639                 }
640             }
641         }
642
643         let map = &self.tcx.hir();
644         self.nest_typeck_results(map.local_def_id(item.hir_id), |v| {
645             v.visit_ty(&typ);
646             if let &Some(ref trait_ref) = trait_ref {
647                 v.process_path(trait_ref.hir_ref_id, &hir::QPath::Resolved(None, &trait_ref.path));
648             }
649             v.process_generic_params(generics, "", item.hir_id);
650             for impl_item in impl_items {
651                 v.process_impl_item(
652                     map.impl_item(impl_item.id),
653                     map.local_def_id(item.hir_id).to_def_id(),
654                 );
655             }
656         });
657     }
658
659     fn process_trait(
660         &mut self,
661         item: &'tcx hir::Item<'tcx>,
662         generics: &'tcx hir::Generics<'tcx>,
663         trait_refs: hir::GenericBounds<'tcx>,
664         methods: &'tcx [hir::TraitItemRef],
665     ) {
666         let name = item.ident.to_string();
667         let qualname = format!(
668             "::{}",
669             self.tcx.def_path_str(self.tcx.hir().local_def_id(item.hir_id).to_def_id())
670         );
671         let mut val = name.clone();
672         if !generics.params.is_empty() {
673             val.push_str(&generic_params_to_string(generics.params));
674         }
675         if !trait_refs.is_empty() {
676             val.push_str(": ");
677             val.push_str(&bounds_to_string(trait_refs));
678         }
679         if !self.span.filter_generated(item.ident.span) {
680             let id = id_from_hir_id(item.hir_id, &self.save_ctxt);
681             let span = self.span_from_span(item.ident.span);
682             let children =
683                 methods.iter().map(|i| id_from_hir_id(i.id.hir_id, &self.save_ctxt)).collect();
684             self.dumper.dump_def(
685                 &access_from!(self.save_ctxt, item, item.hir_id),
686                 Def {
687                     kind: DefKind::Trait,
688                     id,
689                     span,
690                     name,
691                     qualname: qualname.clone(),
692                     value: val,
693                     parent: None,
694                     children,
695                     decl_id: None,
696                     docs: self.save_ctxt.docs_for_attrs(&item.attrs),
697                     sig: sig::item_signature(item, &self.save_ctxt),
698                     attributes: lower_attributes(item.attrs.to_vec(), &self.save_ctxt),
699                 },
700             );
701         }
702
703         // super-traits
704         for super_bound in trait_refs.iter() {
705             let trait_ref = match *super_bound {
706                 hir::GenericBound::Trait(ref trait_ref, _) => trait_ref,
707                 hir::GenericBound::Outlives(..) => continue,
708             };
709
710             let trait_ref = &trait_ref.trait_ref;
711             if let Some(id) = self.lookup_def_id(trait_ref.hir_ref_id) {
712                 let sub_span = trait_ref.path.segments.last().unwrap().ident.span;
713                 if !self.span.filter_generated(sub_span) {
714                     let span = self.span_from_span(sub_span);
715                     self.dumper.dump_ref(Ref {
716                         kind: RefKind::Type,
717                         span: span.clone(),
718                         ref_id: id_from_def_id(id),
719                     });
720
721                     self.dumper.dump_relation(Relation {
722                         kind: RelationKind::SuperTrait,
723                         span,
724                         from: id_from_def_id(id),
725                         to: id_from_hir_id(item.hir_id, &self.save_ctxt),
726                     });
727                 }
728             }
729         }
730
731         // walk generics and methods
732         self.process_generic_params(generics, &qualname, item.hir_id);
733         for method in methods {
734             let map = &self.tcx.hir();
735             self.process_trait_item(
736                 map.trait_item(method.id),
737                 map.local_def_id(item.hir_id).to_def_id(),
738             )
739         }
740     }
741
742     // `item` is the module in question, represented as an( item.
743     fn process_mod(&mut self, item: &'tcx hir::Item<'tcx>) {
744         if let Some(mod_data) = self.save_ctxt.get_item_data(item) {
745             down_cast_data!(mod_data, DefData, item.span);
746             self.dumper.dump_def(&access_from!(self.save_ctxt, item, item.hir_id), mod_data);
747         }
748     }
749
750     fn dump_path_ref(&mut self, id: hir::HirId, path: &hir::QPath<'tcx>) {
751         let path_data = self.save_ctxt.get_path_data(id, path);
752         if let Some(path_data) = path_data {
753             self.dumper.dump_ref(path_data);
754         }
755     }
756
757     fn dump_path_segment_ref(&mut self, id: hir::HirId, segment: &hir::PathSegment<'tcx>) {
758         let segment_data = self.save_ctxt.get_path_segment_data_with_id(segment, id);
759         if let Some(segment_data) = segment_data {
760             self.dumper.dump_ref(segment_data);
761         }
762     }
763
764     fn process_path(&mut self, id: hir::HirId, path: &hir::QPath<'tcx>) {
765         let span = match path {
766             hir::QPath::Resolved(_, path) => path.span,
767             hir::QPath::TypeRelative(_, segment) => segment.ident.span,
768         };
769         if self.span.filter_generated(span) {
770             return;
771         }
772         self.dump_path_ref(id, path);
773
774         // Type arguments
775         let segments = match path {
776             hir::QPath::Resolved(ty, path) => {
777                 if let Some(ty) = ty {
778                     self.visit_ty(ty);
779                 }
780                 path.segments
781             }
782             hir::QPath::TypeRelative(ty, segment) => {
783                 self.visit_ty(ty);
784                 std::slice::from_ref(*segment)
785             }
786         };
787         for seg in segments {
788             if let Some(ref generic_args) = seg.args {
789                 for arg in generic_args.args {
790                     if let hir::GenericArg::Type(ref ty) = arg {
791                         self.visit_ty(ty);
792                     }
793                 }
794             }
795         }
796
797         if let hir::QPath::Resolved(_, path) = path {
798             self.write_sub_paths_truncated(path);
799         }
800     }
801
802     fn process_struct_lit(
803         &mut self,
804         ex: &'tcx hir::Expr<'tcx>,
805         path: &'tcx hir::QPath<'tcx>,
806         fields: &'tcx [hir::Field<'tcx>],
807         variant: &'tcx ty::VariantDef,
808         base: Option<&'tcx hir::Expr<'tcx>>,
809     ) {
810         if let Some(struct_lit_data) = self.save_ctxt.get_expr_data(ex) {
811             if let hir::QPath::Resolved(_, path) = path {
812                 self.write_sub_paths_truncated(path);
813             }
814             down_cast_data!(struct_lit_data, RefData, ex.span);
815             if !generated_code(ex.span) {
816                 self.dumper.dump_ref(struct_lit_data);
817             }
818
819             for field in fields {
820                 if let Some(field_data) = self.save_ctxt.get_field_ref_data(field, variant) {
821                     self.dumper.dump_ref(field_data);
822                 }
823
824                 self.visit_expr(&field.expr)
825             }
826         }
827
828         walk_list!(self, visit_expr, base);
829     }
830
831     fn process_method_call(
832         &mut self,
833         ex: &'tcx hir::Expr<'tcx>,
834         seg: &'tcx hir::PathSegment<'tcx>,
835         args: &'tcx [hir::Expr<'tcx>],
836     ) {
837         debug!("process_method_call {:?} {:?}", ex, ex.span);
838         if let Some(mcd) = self.save_ctxt.get_expr_data(ex) {
839             down_cast_data!(mcd, RefData, ex.span);
840             if !generated_code(ex.span) {
841                 self.dumper.dump_ref(mcd);
842             }
843         }
844
845         // Explicit types in the turbo-fish.
846         if let Some(generic_args) = seg.args {
847             for arg in generic_args.args {
848                 if let hir::GenericArg::Type(ty) = arg {
849                     self.visit_ty(&ty)
850                 };
851             }
852         }
853
854         // walk receiver and args
855         walk_list!(self, visit_expr, args);
856     }
857
858     fn process_pat(&mut self, p: &'tcx hir::Pat<'tcx>) {
859         match p.kind {
860             hir::PatKind::Struct(ref _path, fields, _) => {
861                 // FIXME do something with _path?
862                 let adt = match self.save_ctxt.typeck_results().node_type_opt(p.hir_id) {
863                     Some(ty) if ty.ty_adt_def().is_some() => ty.ty_adt_def().unwrap(),
864                     _ => {
865                         intravisit::walk_pat(self, p);
866                         return;
867                     }
868                 };
869                 let variant = adt.variant_of_res(self.save_ctxt.get_path_res(p.hir_id));
870
871                 for field in fields {
872                     if let Some(index) = self.tcx.find_field_index(field.ident, variant) {
873                         if !self.span.filter_generated(field.ident.span) {
874                             let span = self.span_from_span(field.ident.span);
875                             self.dumper.dump_ref(Ref {
876                                 kind: RefKind::Variable,
877                                 span,
878                                 ref_id: id_from_def_id(variant.fields[index].did),
879                             });
880                         }
881                     }
882                     self.visit_pat(&field.pat);
883                 }
884             }
885             _ => intravisit::walk_pat(self, p),
886         }
887     }
888
889     fn process_var_decl(&mut self, pat: &'tcx hir::Pat<'tcx>) {
890         // The pattern could declare multiple new vars,
891         // we must walk the pattern and collect them all.
892         let mut collector = PathCollector::new(self.tcx);
893         collector.visit_pat(&pat);
894         self.visit_pat(&pat);
895
896         // Process collected paths.
897         for (id, ident, _) in collector.collected_idents {
898             let res = self.save_ctxt.get_path_res(id);
899             match res {
900                 Res::Local(hir_id) => {
901                     let typ = self
902                         .save_ctxt
903                         .typeck_results()
904                         .node_type_opt(hir_id)
905                         .map(|t| t.to_string())
906                         .unwrap_or_default();
907
908                     // Rust uses the id of the pattern for var lookups, so we'll use it too.
909                     if !self.span.filter_generated(ident.span) {
910                         let qualname = format!("{}${}", ident.to_string(), hir_id);
911                         let id = id_from_hir_id(hir_id, &self.save_ctxt);
912                         let span = self.span_from_span(ident.span);
913
914                         self.dumper.dump_def(
915                             &Access { public: false, reachable: false },
916                             Def {
917                                 kind: DefKind::Local,
918                                 id,
919                                 span,
920                                 name: ident.to_string(),
921                                 qualname,
922                                 value: typ,
923                                 parent: None,
924                                 children: vec![],
925                                 decl_id: None,
926                                 docs: String::new(),
927                                 sig: None,
928                                 attributes: vec![],
929                             },
930                         );
931                     }
932                 }
933                 Res::Def(
934                     HirDefKind::Ctor(..)
935                     | HirDefKind::Const
936                     | HirDefKind::AssocConst
937                     | HirDefKind::Struct
938                     | HirDefKind::Variant
939                     | HirDefKind::TyAlias
940                     | HirDefKind::AssocTy,
941                     _,
942                 )
943                 | Res::SelfTy(..) => {
944                     self.dump_path_segment_ref(id, &hir::PathSegment::from_ident(ident));
945                 }
946                 def => {
947                     error!("unexpected definition kind when processing collected idents: {:?}", def)
948                 }
949             }
950         }
951
952         for (id, ref path) in collector.collected_paths {
953             self.process_path(id, path);
954         }
955     }
956
957     /// Extracts macro use and definition information from the AST node defined
958     /// by the given NodeId, using the expansion information from the node's
959     /// span.
960     ///
961     /// If the span is not macro-generated, do nothing, else use callee and
962     /// callsite spans to record macro definition and use data, using the
963     /// mac_uses and mac_defs sets to prevent multiples.
964     fn process_macro_use(&mut self, _span: Span) {
965         // FIXME if we're not dumping the defs (see below), there is no point
966         // dumping refs either.
967         // let source_span = span.source_callsite();
968         // if !self.macro_calls.insert(source_span) {
969         //     return;
970         // }
971
972         // let data = match self.save_ctxt.get_macro_use_data(span) {
973         //     None => return,
974         //     Some(data) => data,
975         // };
976
977         // self.dumper.macro_use(data);
978
979         // FIXME write the macro def
980         // let mut hasher = DefaultHasher::new();
981         // data.callee_span.hash(&mut hasher);
982         // let hash = hasher.finish();
983         // let qualname = format!("{}::{}", data.name, hash);
984         // Don't write macro definition for imported macros
985         // if !self.mac_defs.contains(&data.callee_span)
986         //     && !data.imported {
987         //     self.mac_defs.insert(data.callee_span);
988         //     if let Some(sub_span) = self.span.span_for_macro_def_name(data.callee_span) {
989         //         self.dumper.macro_data(MacroData {
990         //             span: sub_span,
991         //             name: data.name.clone(),
992         //             qualname: qualname.clone(),
993         //             // FIXME where do macro docs come from?
994         //             docs: String::new(),
995         //         }.lower(self.tcx));
996         //     }
997         // }
998     }
999
1000     fn process_trait_item(&mut self, trait_item: &'tcx hir::TraitItem<'tcx>, trait_id: DefId) {
1001         self.process_macro_use(trait_item.span);
1002         let vis_span = trait_item.span.shrink_to_lo();
1003         match trait_item.kind {
1004             hir::TraitItemKind::Const(ref ty, body) => {
1005                 let body = body.map(|b| &self.tcx.hir().body(b).value);
1006                 let respan = respan(vis_span, hir::VisibilityKind::Public);
1007                 self.process_assoc_const(
1008                     trait_item.hir_id,
1009                     trait_item.ident,
1010                     &ty,
1011                     body,
1012                     trait_id,
1013                     &respan,
1014                     &trait_item.attrs,
1015                 );
1016             }
1017             hir::TraitItemKind::Fn(ref sig, ref trait_fn) => {
1018                 let body =
1019                     if let hir::TraitFn::Provided(body) = trait_fn { Some(*body) } else { None };
1020                 let respan = respan(vis_span, hir::VisibilityKind::Public);
1021                 self.process_method(
1022                     sig,
1023                     body,
1024                     trait_item.hir_id,
1025                     trait_item.ident,
1026                     &trait_item.generics,
1027                     &respan,
1028                     trait_item.span,
1029                 );
1030             }
1031             hir::TraitItemKind::Type(ref bounds, ref default_ty) => {
1032                 // FIXME do something with _bounds (for type refs)
1033                 let name = trait_item.ident.name.to_string();
1034                 let qualname = format!(
1035                     "::{}",
1036                     self.tcx
1037                         .def_path_str(self.tcx.hir().local_def_id(trait_item.hir_id).to_def_id())
1038                 );
1039
1040                 if !self.span.filter_generated(trait_item.ident.span) {
1041                     let span = self.span_from_span(trait_item.ident.span);
1042                     let id = id_from_hir_id(trait_item.hir_id, &self.save_ctxt);
1043
1044                     self.dumper.dump_def(
1045                         &Access { public: true, reachable: true },
1046                         Def {
1047                             kind: DefKind::Type,
1048                             id,
1049                             span,
1050                             name,
1051                             qualname,
1052                             value: self.span.snippet(trait_item.span),
1053                             parent: Some(id_from_def_id(trait_id)),
1054                             children: vec![],
1055                             decl_id: None,
1056                             docs: self.save_ctxt.docs_for_attrs(&trait_item.attrs),
1057                             sig: sig::assoc_type_signature(
1058                                 trait_item.hir_id,
1059                                 trait_item.ident,
1060                                 Some(bounds),
1061                                 default_ty.as_ref().map(|ty| &**ty),
1062                                 &self.save_ctxt,
1063                             ),
1064                             attributes: lower_attributes(
1065                                 trait_item.attrs.to_vec(),
1066                                 &self.save_ctxt,
1067                             ),
1068                         },
1069                     );
1070                 }
1071
1072                 if let &Some(ref default_ty) = default_ty {
1073                     self.visit_ty(default_ty)
1074                 }
1075             }
1076         }
1077     }
1078
1079     fn process_impl_item(&mut self, impl_item: &'tcx hir::ImplItem<'tcx>, impl_id: DefId) {
1080         self.process_macro_use(impl_item.span);
1081         match impl_item.kind {
1082             hir::ImplItemKind::Const(ref ty, body) => {
1083                 let body = self.tcx.hir().body(body);
1084                 self.process_assoc_const(
1085                     impl_item.hir_id,
1086                     impl_item.ident,
1087                     &ty,
1088                     Some(&body.value),
1089                     impl_id,
1090                     &impl_item.vis,
1091                     &impl_item.attrs,
1092                 );
1093             }
1094             hir::ImplItemKind::Fn(ref sig, body) => {
1095                 self.process_method(
1096                     sig,
1097                     Some(body),
1098                     impl_item.hir_id,
1099                     impl_item.ident,
1100                     &impl_item.generics,
1101                     &impl_item.vis,
1102                     impl_item.span,
1103                 );
1104             }
1105             hir::ImplItemKind::TyAlias(ref ty) => {
1106                 // FIXME: uses of the assoc type should ideally point to this
1107                 // 'def' and the name here should be a ref to the def in the
1108                 // trait.
1109                 self.visit_ty(ty)
1110             }
1111         }
1112     }
1113
1114     pub(crate) fn process_crate(&mut self, krate: &'tcx hir::Crate<'tcx>) {
1115         let id = hir::CRATE_HIR_ID;
1116         let qualname =
1117             format!("::{}", self.tcx.def_path_str(self.tcx.hir().local_def_id(id).to_def_id()));
1118
1119         let sm = self.tcx.sess.source_map();
1120         let filename = sm.span_to_filename(krate.item.span);
1121         let data_id = id_from_hir_id(id, &self.save_ctxt);
1122         let children = krate
1123             .item
1124             .module
1125             .item_ids
1126             .iter()
1127             .map(|i| id_from_hir_id(i.id, &self.save_ctxt))
1128             .collect();
1129         let span = self.span_from_span(krate.item.span);
1130
1131         self.dumper.dump_def(
1132             &Access { public: true, reachable: true },
1133             Def {
1134                 kind: DefKind::Mod,
1135                 id: data_id,
1136                 name: String::new(),
1137                 qualname,
1138                 span,
1139                 value: filename.to_string(),
1140                 children,
1141                 parent: None,
1142                 decl_id: None,
1143                 docs: self.save_ctxt.docs_for_attrs(krate.item.attrs),
1144                 sig: None,
1145                 attributes: lower_attributes(krate.item.attrs.to_owned(), &self.save_ctxt),
1146             },
1147         );
1148         intravisit::walk_crate(self, krate);
1149     }
1150
1151     fn process_bounds(&mut self, bounds: hir::GenericBounds<'tcx>) {
1152         for bound in bounds {
1153             if let hir::GenericBound::Trait(ref trait_ref, _) = *bound {
1154                 self.process_path(
1155                     trait_ref.trait_ref.hir_ref_id,
1156                     &hir::QPath::Resolved(None, &trait_ref.trait_ref.path),
1157                 )
1158             }
1159         }
1160     }
1161 }
1162
1163 impl<'tcx> Visitor<'tcx> for DumpVisitor<'tcx> {
1164     type Map = Map<'tcx>;
1165
1166     fn nested_visit_map(&mut self) -> intravisit::NestedVisitorMap<Self::Map> {
1167         intravisit::NestedVisitorMap::All(self.tcx.hir())
1168     }
1169
1170     fn visit_item(&mut self, item: &'tcx hir::Item<'tcx>) {
1171         self.process_macro_use(item.span);
1172         match item.kind {
1173             hir::ItemKind::Use(path, hir::UseKind::Single) => {
1174                 let sub_span = path.segments.last().unwrap().ident.span;
1175                 if !self.span.filter_generated(sub_span) {
1176                     let access = access_from!(self.save_ctxt, item, item.hir_id);
1177                     let ref_id = self.lookup_def_id(item.hir_id).map(id_from_def_id);
1178                     let span = self.span_from_span(sub_span);
1179                     let parent = self
1180                         .save_ctxt
1181                         .tcx
1182                         .hir()
1183                         .opt_local_def_id(item.hir_id)
1184                         .and_then(|id| self.save_ctxt.tcx.parent(id.to_def_id()))
1185                         .map(id_from_def_id);
1186                     self.dumper.import(
1187                         &access,
1188                         Import {
1189                             kind: ImportKind::Use,
1190                             ref_id,
1191                             span,
1192                             alias_span: None,
1193                             name: item.ident.to_string(),
1194                             value: String::new(),
1195                             parent,
1196                         },
1197                     );
1198                     self.write_sub_paths_truncated(&path);
1199                 }
1200             }
1201             hir::ItemKind::Use(path, hir::UseKind::Glob) => {
1202                 // Make a comma-separated list of names of imported modules.
1203                 let def_id = self.tcx.hir().local_def_id(item.hir_id);
1204                 let names = self.tcx.names_imported_by_glob_use(def_id);
1205                 let names: Vec<_> = names.iter().map(|n| n.to_string()).collect();
1206
1207                 // Otherwise it's a span with wrong macro expansion info, which
1208                 // we don't want to track anyway, since it's probably macro-internal `use`
1209                 if let Some(sub_span) =
1210                     self.span.sub_span_of_token(item.span, token::BinOp(token::Star))
1211                 {
1212                     if !self.span.filter_generated(item.span) {
1213                         let access = access_from!(self.save_ctxt, item, item.hir_id);
1214                         let span = self.span_from_span(sub_span);
1215                         let parent = self
1216                             .save_ctxt
1217                             .tcx
1218                             .hir()
1219                             .opt_local_def_id(item.hir_id)
1220                             .and_then(|id| self.save_ctxt.tcx.parent(id.to_def_id()))
1221                             .map(id_from_def_id);
1222                         self.dumper.import(
1223                             &access,
1224                             Import {
1225                                 kind: ImportKind::GlobUse,
1226                                 ref_id: None,
1227                                 span,
1228                                 alias_span: None,
1229                                 name: "*".to_owned(),
1230                                 value: names.join(", "),
1231                                 parent,
1232                             },
1233                         );
1234                         self.write_sub_paths(&path);
1235                     }
1236                 }
1237             }
1238             hir::ItemKind::ExternCrate(_) => {
1239                 let name_span = item.ident.span;
1240                 if !self.span.filter_generated(name_span) {
1241                     let span = self.span_from_span(name_span);
1242                     let parent = self
1243                         .save_ctxt
1244                         .tcx
1245                         .hir()
1246                         .opt_local_def_id(item.hir_id)
1247                         .and_then(|id| self.save_ctxt.tcx.parent(id.to_def_id()))
1248                         .map(id_from_def_id);
1249                     self.dumper.import(
1250                         &Access { public: false, reachable: false },
1251                         Import {
1252                             kind: ImportKind::ExternCrate,
1253                             ref_id: None,
1254                             span,
1255                             alias_span: None,
1256                             name: item.ident.to_string(),
1257                             value: String::new(),
1258                             parent,
1259                         },
1260                     );
1261                 }
1262             }
1263             hir::ItemKind::Fn(ref sig, ref ty_params, body) => {
1264                 self.process_fn(item, sig.decl, &sig.header, ty_params, body)
1265             }
1266             hir::ItemKind::Static(ref typ, _, body) => {
1267                 let body = self.tcx.hir().body(body);
1268                 self.process_static_or_const_item(item, typ, &body.value)
1269             }
1270             hir::ItemKind::Const(ref typ, body) => {
1271                 let body = self.tcx.hir().body(body);
1272                 self.process_static_or_const_item(item, typ, &body.value)
1273             }
1274             hir::ItemKind::Struct(ref def, ref ty_params)
1275             | hir::ItemKind::Union(ref def, ref ty_params) => {
1276                 self.process_struct(item, def, ty_params)
1277             }
1278             hir::ItemKind::Enum(ref def, ref ty_params) => self.process_enum(item, def, ty_params),
1279             hir::ItemKind::Impl { ref generics, ref of_trait, ref self_ty, ref items, .. } => {
1280                 self.process_impl(item, generics, of_trait, &self_ty, items)
1281             }
1282             hir::ItemKind::Trait(_, _, ref generics, ref trait_refs, methods) => {
1283                 self.process_trait(item, generics, trait_refs, methods)
1284             }
1285             hir::ItemKind::Mod(ref m) => {
1286                 self.process_mod(item);
1287                 intravisit::walk_mod(self, m, item.hir_id);
1288             }
1289             hir::ItemKind::TyAlias(ty, ref generics) => {
1290                 let qualname = format!(
1291                     "::{}",
1292                     self.tcx.def_path_str(self.tcx.hir().local_def_id(item.hir_id).to_def_id())
1293                 );
1294                 let value = ty_to_string(&ty);
1295                 if !self.span.filter_generated(item.ident.span) {
1296                     let span = self.span_from_span(item.ident.span);
1297                     let id = id_from_hir_id(item.hir_id, &self.save_ctxt);
1298
1299                     self.dumper.dump_def(
1300                         &access_from!(self.save_ctxt, item, item.hir_id),
1301                         Def {
1302                             kind: DefKind::Type,
1303                             id,
1304                             span,
1305                             name: item.ident.to_string(),
1306                             qualname: qualname.clone(),
1307                             value,
1308                             parent: None,
1309                             children: vec![],
1310                             decl_id: None,
1311                             docs: self.save_ctxt.docs_for_attrs(&item.attrs),
1312                             sig: sig::item_signature(item, &self.save_ctxt),
1313                             attributes: lower_attributes(item.attrs.to_vec(), &self.save_ctxt),
1314                         },
1315                     );
1316                 }
1317
1318                 self.visit_ty(ty);
1319                 self.process_generic_params(generics, &qualname, item.hir_id);
1320             }
1321             _ => intravisit::walk_item(self, item),
1322         }
1323     }
1324
1325     fn visit_generics(&mut self, generics: &'tcx hir::Generics<'tcx>) {
1326         for param in generics.params {
1327             match param.kind {
1328                 hir::GenericParamKind::Lifetime { .. } => {}
1329                 hir::GenericParamKind::Type { ref default, .. } => {
1330                     self.process_bounds(param.bounds);
1331                     if let Some(ref ty) = default {
1332                         self.visit_ty(ty);
1333                     }
1334                 }
1335                 hir::GenericParamKind::Const { ref ty } => {
1336                     self.process_bounds(param.bounds);
1337                     self.visit_ty(ty);
1338                 }
1339             }
1340         }
1341         for pred in generics.where_clause.predicates {
1342             if let hir::WherePredicate::BoundPredicate(ref wbp) = *pred {
1343                 self.process_bounds(wbp.bounds);
1344                 self.visit_ty(wbp.bounded_ty);
1345             }
1346         }
1347     }
1348
1349     fn visit_ty(&mut self, t: &'tcx hir::Ty<'tcx>) {
1350         self.process_macro_use(t.span);
1351         match t.kind {
1352             hir::TyKind::Path(ref path) => {
1353                 if generated_code(t.span) {
1354                     return;
1355                 }
1356
1357                 if let Some(id) = self.lookup_def_id(t.hir_id) {
1358                     let sub_span = match path {
1359                         hir::QPath::Resolved(_, path) => path.segments.last().unwrap().ident.span,
1360                         hir::QPath::TypeRelative(_, segment) => segment.ident.span,
1361                     };
1362                     let span = self.span_from_span(sub_span);
1363                     self.dumper.dump_ref(Ref {
1364                         kind: RefKind::Type,
1365                         span,
1366                         ref_id: id_from_def_id(id),
1367                     });
1368                 }
1369
1370                 if let hir::QPath::Resolved(_, path) = path {
1371                     self.write_sub_paths_truncated(path);
1372                 }
1373                 intravisit::walk_qpath(self, path, t.hir_id, t.span);
1374             }
1375             hir::TyKind::Array(ref ty, ref anon_const) => {
1376                 self.visit_ty(ty);
1377                 let map = self.tcx.hir();
1378                 self.nest_typeck_results(self.tcx.hir().local_def_id(anon_const.hir_id), |v| {
1379                     v.visit_expr(&map.body(anon_const.body).value)
1380                 });
1381             }
1382             hir::TyKind::OpaqueDef(item_id, _) => {
1383                 let item = self.tcx.hir().item(item_id.id);
1384                 self.nest_typeck_results(self.tcx.hir().local_def_id(item_id.id), |v| {
1385                     v.visit_item(item)
1386                 });
1387             }
1388             _ => intravisit::walk_ty(self, t),
1389         }
1390     }
1391
1392     fn visit_expr(&mut self, ex: &'tcx hir::Expr<'tcx>) {
1393         debug!("visit_expr {:?}", ex.kind);
1394         self.process_macro_use(ex.span);
1395         match ex.kind {
1396             hir::ExprKind::Struct(ref path, ref fields, ref base) => {
1397                 let hir_expr = self.save_ctxt.tcx.hir().expect_expr(ex.hir_id);
1398                 let adt = match self.save_ctxt.typeck_results().expr_ty_opt(&hir_expr) {
1399                     Some(ty) if ty.ty_adt_def().is_some() => ty.ty_adt_def().unwrap(),
1400                     _ => {
1401                         intravisit::walk_expr(self, ex);
1402                         return;
1403                     }
1404                 };
1405                 let res = self.save_ctxt.get_path_res(hir_expr.hir_id);
1406                 self.process_struct_lit(ex, path, fields, adt.variant_of_res(res), *base)
1407             }
1408             hir::ExprKind::MethodCall(ref seg, _, args, _) => {
1409                 self.process_method_call(ex, seg, args)
1410             }
1411             hir::ExprKind::Field(ref sub_ex, _) => {
1412                 self.visit_expr(&sub_ex);
1413
1414                 if let Some(field_data) = self.save_ctxt.get_expr_data(ex) {
1415                     down_cast_data!(field_data, RefData, ex.span);
1416                     if !generated_code(ex.span) {
1417                         self.dumper.dump_ref(field_data);
1418                     }
1419                 }
1420             }
1421             hir::ExprKind::Closure(_, ref decl, body, _fn_decl_span, _) => {
1422                 let id = format!("${}", ex.hir_id);
1423
1424                 // walk arg and return types
1425                 for ty in decl.inputs {
1426                     self.visit_ty(ty);
1427                 }
1428
1429                 if let hir::FnRetTy::Return(ref ret_ty) = decl.output {
1430                     self.visit_ty(ret_ty);
1431                 }
1432
1433                 // walk the body
1434                 let map = self.tcx.hir();
1435                 self.nest_typeck_results(self.tcx.hir().local_def_id(ex.hir_id), |v| {
1436                     let body = map.body(body);
1437                     v.process_formals(body.params, &id);
1438                     v.visit_expr(&body.value)
1439                 });
1440             }
1441             hir::ExprKind::Repeat(ref expr, ref anon_const) => {
1442                 self.visit_expr(expr);
1443                 let map = self.tcx.hir();
1444                 self.nest_typeck_results(self.tcx.hir().local_def_id(anon_const.hir_id), |v| {
1445                     v.visit_expr(&map.body(anon_const.body).value)
1446                 });
1447             }
1448             // In particular, we take this branch for call and path expressions,
1449             // where we'll index the idents involved just by continuing to walk.
1450             _ => intravisit::walk_expr(self, ex),
1451         }
1452     }
1453
1454     fn visit_pat(&mut self, p: &'tcx hir::Pat<'tcx>) {
1455         self.process_macro_use(p.span);
1456         self.process_pat(p);
1457     }
1458
1459     fn visit_arm(&mut self, arm: &'tcx hir::Arm<'tcx>) {
1460         self.process_var_decl(&arm.pat);
1461         if let Some(hir::Guard::If(expr)) = &arm.guard {
1462             self.visit_expr(expr);
1463         }
1464         self.visit_expr(&arm.body);
1465     }
1466
1467     fn visit_qpath(&mut self, path: &'tcx hir::QPath<'tcx>, id: hir::HirId, _: Span) {
1468         self.process_path(id, path);
1469     }
1470
1471     fn visit_stmt(&mut self, s: &'tcx hir::Stmt<'tcx>) {
1472         self.process_macro_use(s.span);
1473         intravisit::walk_stmt(self, s)
1474     }
1475
1476     fn visit_local(&mut self, l: &'tcx hir::Local<'tcx>) {
1477         self.process_macro_use(l.span);
1478         self.process_var_decl(&l.pat);
1479
1480         // Just walk the initialiser and type (don't want to walk the pattern again).
1481         walk_list!(self, visit_ty, &l.ty);
1482         walk_list!(self, visit_expr, &l.init);
1483     }
1484
1485     fn visit_foreign_item(&mut self, item: &'tcx hir::ForeignItem<'tcx>) {
1486         let access = access_from!(self.save_ctxt, item, item.hir_id);
1487
1488         match item.kind {
1489             hir::ForeignItemKind::Fn(decl, _, ref generics) => {
1490                 if let Some(fn_data) = self.save_ctxt.get_extern_item_data(item) {
1491                     down_cast_data!(fn_data, DefData, item.span);
1492
1493                     self.process_generic_params(generics, &fn_data.qualname, item.hir_id);
1494                     self.dumper.dump_def(&access, fn_data);
1495                 }
1496
1497                 for ty in decl.inputs {
1498                     self.visit_ty(ty);
1499                 }
1500
1501                 if let hir::FnRetTy::Return(ref ret_ty) = decl.output {
1502                     self.visit_ty(ret_ty);
1503                 }
1504             }
1505             hir::ForeignItemKind::Static(ref ty, _) => {
1506                 if let Some(var_data) = self.save_ctxt.get_extern_item_data(item) {
1507                     down_cast_data!(var_data, DefData, item.span);
1508                     self.dumper.dump_def(&access, var_data);
1509                 }
1510
1511                 self.visit_ty(ty);
1512             }
1513             hir::ForeignItemKind::Type => {
1514                 if let Some(var_data) = self.save_ctxt.get_extern_item_data(item) {
1515                     down_cast_data!(var_data, DefData, item.span);
1516                     self.dumper.dump_def(&access, var_data);
1517                 }
1518             }
1519         }
1520     }
1521 }