]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/core.rs
Add support for SHA256 source file hashing for LLVM 11+.
[rust.git] / src / librustdoc / core.rs
1 use rustc_attr as attr;
2 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
3 use rustc_data_structures::sync::{self, Lrc};
4 use rustc_driver::abort_on_err;
5 use rustc_errors::emitter::{Emitter, EmitterWriter};
6 use rustc_errors::json::JsonEmitter;
7 use rustc_feature::UnstableFeatures;
8 use rustc_hir::def::{Namespace::TypeNS, Res};
9 use rustc_hir::def_id::{CrateNum, DefId, DefIndex, LocalDefId, CRATE_DEF_INDEX, LOCAL_CRATE};
10 use rustc_hir::HirId;
11 use rustc_hir::{
12     intravisit::{self, NestedVisitorMap, Visitor},
13     Path,
14 };
15 use rustc_interface::interface;
16 use rustc_middle::hir::map::Map;
17 use rustc_middle::middle::cstore::CrateStore;
18 use rustc_middle::middle::privacy::AccessLevels;
19 use rustc_middle::ty::{Ty, TyCtxt};
20 use rustc_resolve as resolve;
21 use rustc_session::config::{self, CrateType, ErrorOutputType};
22 use rustc_session::lint;
23 use rustc_session::DiagnosticOutput;
24 use rustc_session::Session;
25 use rustc_span::source_map;
26 use rustc_span::symbol::sym;
27 use rustc_span::DUMMY_SP;
28
29 use std::cell::RefCell;
30 use std::mem;
31 use std::rc::Rc;
32
33 use crate::clean;
34 use crate::clean::{AttributesExt, MAX_DEF_ID};
35 use crate::config::{Options as RustdocOptions, RenderOptions};
36 use crate::config::{OutputFormat, RenderInfo};
37 use crate::passes::{self, Condition::*, ConditionalPass};
38
39 pub use rustc_session::config::{CodegenOptions, DebuggingOptions, Input, Options};
40 pub use rustc_session::search_paths::SearchPath;
41
42 pub type ExternalPaths = FxHashMap<DefId, (Vec<String>, clean::TypeKind)>;
43
44 pub struct DocContext<'tcx> {
45     pub tcx: TyCtxt<'tcx>,
46     pub resolver: Rc<RefCell<interface::BoxedResolver>>,
47     /// Later on moved into `CACHE_KEY`
48     pub renderinfo: RefCell<RenderInfo>,
49     /// Later on moved through `clean::Crate` into `CACHE_KEY`
50     pub external_traits: Rc<RefCell<FxHashMap<DefId, clean::Trait>>>,
51     /// Used while populating `external_traits` to ensure we don't process the same trait twice at
52     /// the same time.
53     pub active_extern_traits: RefCell<FxHashSet<DefId>>,
54     // The current set of type and lifetime substitutions,
55     // for expanding type aliases at the HIR level:
56     /// Table `DefId` of type parameter -> substituted type
57     pub ty_substs: RefCell<FxHashMap<DefId, clean::Type>>,
58     /// Table `DefId` of lifetime parameter -> substituted lifetime
59     pub lt_substs: RefCell<FxHashMap<DefId, clean::Lifetime>>,
60     /// Table `DefId` of const parameter -> substituted const
61     pub ct_substs: RefCell<FxHashMap<DefId, clean::Constant>>,
62     /// Table synthetic type parameter for `impl Trait` in argument position -> bounds
63     pub impl_trait_bounds: RefCell<FxHashMap<ImplTraitParam, Vec<clean::GenericBound>>>,
64     pub fake_def_ids: RefCell<FxHashMap<CrateNum, DefId>>,
65     pub all_fake_def_ids: RefCell<FxHashSet<DefId>>,
66     /// Auto-trait or blanket impls processed so far, as `(self_ty, trait_def_id)`.
67     // FIXME(eddyb) make this a `ty::TraitRef<'tcx>` set.
68     pub generated_synthetics: RefCell<FxHashSet<(Ty<'tcx>, DefId)>>,
69     pub auto_traits: Vec<DefId>,
70     /// The options given to rustdoc that could be relevant to a pass.
71     pub render_options: RenderOptions,
72     /// The traits in scope for a given module.
73     ///
74     /// See `collect_intra_doc_links::traits_implemented_by` for more details.
75     /// `map<module, set<trait>>`
76     pub module_trait_cache: RefCell<FxHashMap<DefId, FxHashSet<DefId>>>,
77 }
78
79 impl<'tcx> DocContext<'tcx> {
80     pub fn sess(&self) -> &Session {
81         &self.tcx.sess
82     }
83
84     pub fn enter_resolver<F, R>(&self, f: F) -> R
85     where
86         F: FnOnce(&mut resolve::Resolver<'_>) -> R,
87     {
88         self.resolver.borrow_mut().access(f)
89     }
90
91     /// Call the closure with the given parameters set as
92     /// the substitutions for a type alias' RHS.
93     pub fn enter_alias<F, R>(
94         &self,
95         ty_substs: FxHashMap<DefId, clean::Type>,
96         lt_substs: FxHashMap<DefId, clean::Lifetime>,
97         ct_substs: FxHashMap<DefId, clean::Constant>,
98         f: F,
99     ) -> R
100     where
101         F: FnOnce() -> R,
102     {
103         let (old_tys, old_lts, old_cts) = (
104             mem::replace(&mut *self.ty_substs.borrow_mut(), ty_substs),
105             mem::replace(&mut *self.lt_substs.borrow_mut(), lt_substs),
106             mem::replace(&mut *self.ct_substs.borrow_mut(), ct_substs),
107         );
108         let r = f();
109         *self.ty_substs.borrow_mut() = old_tys;
110         *self.lt_substs.borrow_mut() = old_lts;
111         *self.ct_substs.borrow_mut() = old_cts;
112         r
113     }
114
115     // This is an ugly hack, but it's the simplest way to handle synthetic impls without greatly
116     // refactoring either librustdoc or librustc_middle. In particular, allowing new DefIds to be
117     // registered after the AST is constructed would require storing the defid mapping in a
118     // RefCell, decreasing the performance for normal compilation for very little gain.
119     //
120     // Instead, we construct 'fake' def ids, which start immediately after the last DefId.
121     // In the Debug impl for clean::Item, we explicitly check for fake
122     // def ids, as we'll end up with a panic if we use the DefId Debug impl for fake DefIds
123     pub fn next_def_id(&self, crate_num: CrateNum) -> DefId {
124         let start_def_id = {
125             let num_def_ids = if crate_num == LOCAL_CRATE {
126                 self.tcx.hir().definitions().def_path_table().num_def_ids()
127             } else {
128                 self.enter_resolver(|r| r.cstore().num_def_ids(crate_num))
129             };
130
131             DefId { krate: crate_num, index: DefIndex::from_usize(num_def_ids) }
132         };
133
134         let mut fake_ids = self.fake_def_ids.borrow_mut();
135
136         let def_id = *fake_ids.entry(crate_num).or_insert(start_def_id);
137         fake_ids.insert(
138             crate_num,
139             DefId { krate: crate_num, index: DefIndex::from(def_id.index.index() + 1) },
140         );
141
142         MAX_DEF_ID.with(|m| {
143             m.borrow_mut().entry(def_id.krate).or_insert(start_def_id);
144         });
145
146         self.all_fake_def_ids.borrow_mut().insert(def_id);
147
148         def_id
149     }
150
151     /// Like `hir().local_def_id_to_hir_id()`, but skips calling it on fake DefIds.
152     /// (This avoids a slice-index-out-of-bounds panic.)
153     pub fn as_local_hir_id(&self, def_id: DefId) -> Option<HirId> {
154         if self.all_fake_def_ids.borrow().contains(&def_id) {
155             None
156         } else {
157             def_id.as_local().map(|def_id| self.tcx.hir().local_def_id_to_hir_id(def_id))
158         }
159     }
160
161     pub fn stability(&self, id: HirId) -> Option<attr::Stability> {
162         self.tcx
163             .hir()
164             .opt_local_def_id(id)
165             .and_then(|def_id| self.tcx.lookup_stability(def_id.to_def_id()))
166             .cloned()
167     }
168
169     pub fn deprecation(&self, id: HirId) -> Option<attr::Deprecation> {
170         self.tcx
171             .hir()
172             .opt_local_def_id(id)
173             .and_then(|def_id| self.tcx.lookup_deprecation(def_id.to_def_id()))
174     }
175 }
176
177 /// Creates a new diagnostic `Handler` that can be used to emit warnings and errors.
178 ///
179 /// If the given `error_format` is `ErrorOutputType::Json` and no `SourceMap` is given, a new one
180 /// will be created for the handler.
181 pub fn new_handler(
182     error_format: ErrorOutputType,
183     source_map: Option<Lrc<source_map::SourceMap>>,
184     debugging_opts: &DebuggingOptions,
185 ) -> rustc_errors::Handler {
186     let emitter: Box<dyn Emitter + sync::Send> = match error_format {
187         ErrorOutputType::HumanReadable(kind) => {
188             let (short, color_config) = kind.unzip();
189             Box::new(
190                 EmitterWriter::stderr(
191                     color_config,
192                     source_map.map(|sm| sm as _),
193                     short,
194                     debugging_opts.teach,
195                     debugging_opts.terminal_width,
196                     false,
197                 )
198                 .ui_testing(debugging_opts.ui_testing),
199             )
200         }
201         ErrorOutputType::Json { pretty, json_rendered } => {
202             let source_map = source_map.unwrap_or_else(|| {
203                 Lrc::new(source_map::SourceMap::new(source_map::FilePathMapping::empty()))
204             });
205             Box::new(
206                 JsonEmitter::stderr(
207                     None,
208                     source_map,
209                     pretty,
210                     json_rendered,
211                     debugging_opts.terminal_width,
212                     false,
213                 )
214                 .ui_testing(debugging_opts.ui_testing),
215             )
216         }
217     };
218
219     rustc_errors::Handler::with_emitter_and_flags(
220         emitter,
221         debugging_opts.diagnostic_handler_flags(true),
222     )
223 }
224
225 /// This function is used to setup the lint initialization. By default, in rustdoc, everything
226 /// is "allowed". Depending if we run in test mode or not, we want some of them to be at their
227 /// default level. For example, the "INVALID_CODEBLOCK_ATTRIBUTES" lint is activated in both
228 /// modes.
229 ///
230 /// A little detail easy to forget is that there is a way to set the lint level for all lints
231 /// through the "WARNINGS" lint. To prevent this to happen, we set it back to its "normal" level
232 /// inside this function.
233 ///
234 /// It returns a tuple containing:
235 ///  * Vector of tuples of lints' name and their associated "max" level
236 ///  * HashMap of lint id with their associated "max" level
237 pub(crate) fn init_lints<F>(
238     mut allowed_lints: Vec<String>,
239     lint_opts: Vec<(String, lint::Level)>,
240     filter_call: F,
241 ) -> (Vec<(String, lint::Level)>, FxHashMap<lint::LintId, lint::Level>)
242 where
243     F: Fn(&lint::Lint) -> Option<(String, lint::Level)>,
244 {
245     let warnings_lint_name = lint::builtin::WARNINGS.name;
246
247     allowed_lints.push(warnings_lint_name.to_owned());
248     allowed_lints.extend(lint_opts.iter().map(|(lint, _)| lint).cloned());
249
250     let lints = || {
251         lint::builtin::HardwiredLints::get_lints()
252             .into_iter()
253             .chain(rustc_lint::SoftLints::get_lints().into_iter())
254     };
255
256     let lint_opts = lints()
257         .filter_map(|lint| {
258             // Permit feature-gated lints to avoid feature errors when trying to
259             // allow all lints.
260             if lint.feature_gate.is_some() || allowed_lints.iter().any(|l| lint.name == l) {
261                 None
262             } else {
263                 filter_call(lint)
264             }
265         })
266         .chain(lint_opts.into_iter())
267         .collect::<Vec<_>>();
268
269     let lint_caps = lints()
270         .filter_map(|lint| {
271             // We don't want to allow *all* lints so let's ignore
272             // those ones.
273             if allowed_lints.iter().any(|l| lint.name == l) {
274                 None
275             } else {
276                 Some((lint::LintId::of(lint), lint::Allow))
277             }
278         })
279         .collect();
280     (lint_opts, lint_caps)
281 }
282
283 pub fn run_core(
284     options: RustdocOptions,
285 ) -> (clean::Crate, RenderInfo, RenderOptions, Lrc<Session>) {
286     // Parse, resolve, and typecheck the given crate.
287
288     let RustdocOptions {
289         input,
290         crate_name,
291         proc_macro_crate,
292         error_format,
293         libs,
294         externs,
295         mut cfgs,
296         codegen_options,
297         debugging_opts,
298         target,
299         edition,
300         maybe_sysroot,
301         lint_opts,
302         describe_lints,
303         lint_cap,
304         default_passes,
305         manual_passes,
306         display_warnings,
307         render_options,
308         output_format,
309         ..
310     } = options;
311
312     let extern_names: Vec<String> = externs
313         .iter()
314         .filter(|(_, entry)| entry.add_prelude)
315         .map(|(name, _)| name)
316         .cloned()
317         .collect();
318
319     // Add the doc cfg into the doc build.
320     cfgs.push("doc".to_string());
321
322     let cpath = Some(input.clone());
323     let input = Input::File(input);
324
325     let intra_link_resolution_failure_name = lint::builtin::BROKEN_INTRA_DOC_LINKS.name;
326     let missing_docs = rustc_lint::builtin::MISSING_DOCS.name;
327     let missing_doc_example = rustc_lint::builtin::MISSING_DOC_CODE_EXAMPLES.name;
328     let private_doc_tests = rustc_lint::builtin::PRIVATE_DOC_TESTS.name;
329     let no_crate_level_docs = rustc_lint::builtin::MISSING_CRATE_LEVEL_DOCS.name;
330     let invalid_codeblock_attributes_name = rustc_lint::builtin::INVALID_CODEBLOCK_ATTRIBUTES.name;
331     let invalid_html_tags = rustc_lint::builtin::INVALID_HTML_TAGS.name;
332     let renamed_and_removed_lints = rustc_lint::builtin::RENAMED_AND_REMOVED_LINTS.name;
333     let unknown_lints = rustc_lint::builtin::UNKNOWN_LINTS.name;
334
335     // In addition to those specific lints, we also need to allow those given through
336     // command line, otherwise they'll get ignored and we don't want that.
337     let lints_to_show = vec![
338         intra_link_resolution_failure_name.to_owned(),
339         missing_docs.to_owned(),
340         missing_doc_example.to_owned(),
341         private_doc_tests.to_owned(),
342         no_crate_level_docs.to_owned(),
343         invalid_codeblock_attributes_name.to_owned(),
344         invalid_html_tags.to_owned(),
345         renamed_and_removed_lints.to_owned(),
346         unknown_lints.to_owned(),
347     ];
348
349     let (lint_opts, lint_caps) = init_lints(lints_to_show, lint_opts, |lint| {
350         if lint.name == intra_link_resolution_failure_name
351             || lint.name == invalid_codeblock_attributes_name
352         {
353             None
354         } else {
355             Some((lint.name_lower(), lint::Allow))
356         }
357     });
358
359     let crate_types =
360         if proc_macro_crate { vec![CrateType::ProcMacro] } else { vec![CrateType::Rlib] };
361     // plays with error output here!
362     let sessopts = config::Options {
363         maybe_sysroot,
364         search_paths: libs,
365         crate_types,
366         lint_opts: if !display_warnings { lint_opts } else { vec![] },
367         lint_cap,
368         cg: codegen_options,
369         externs,
370         target_triple: target,
371         unstable_features: UnstableFeatures::from_environment(),
372         actually_rustdoc: true,
373         debugging_opts,
374         error_format,
375         edition,
376         describe_lints,
377         ..Options::default()
378     };
379
380     let config = interface::Config {
381         opts: sessopts,
382         crate_cfg: interface::parse_cfgspecs(cfgs),
383         input,
384         input_path: cpath,
385         output_file: None,
386         output_dir: None,
387         file_loader: None,
388         diagnostic_output: DiagnosticOutput::Default,
389         stderr: None,
390         crate_name,
391         lint_caps,
392         register_lints: None,
393         override_queries: Some(|_sess, providers, _external_providers| {
394             // Most lints will require typechecking, so just don't run them.
395             providers.lint_mod = |_, _| {};
396             // Prevent `rustc_typeck::check_crate` from calling `typeck` on all bodies.
397             providers.typeck_item_bodies = |_, _| {};
398             // hack so that `used_trait_imports` won't try to call typeck
399             providers.used_trait_imports = |_, _| {
400                 lazy_static! {
401                     static ref EMPTY_SET: FxHashSet<LocalDefId> = FxHashSet::default();
402                 }
403                 &EMPTY_SET
404             };
405             // In case typeck does end up being called, don't ICE in case there were name resolution errors
406             providers.typeck = move |tcx, def_id| {
407                 // Closures' tables come from their outermost function,
408                 // as they are part of the same "inference environment".
409                 // This avoids emitting errors for the parent twice (see similar code in `typeck_with_fallback`)
410                 let outer_def_id = tcx.closure_base_def_id(def_id.to_def_id()).expect_local();
411                 if outer_def_id != def_id {
412                     return tcx.typeck(outer_def_id);
413                 }
414
415                 let hir = tcx.hir();
416                 let body = hir.body(hir.body_owned_by(hir.local_def_id_to_hir_id(def_id)));
417                 debug!("visiting body for {:?}", def_id);
418                 tcx.sess.time("emit_ignored_resolution_errors", || {
419                     EmitIgnoredResolutionErrors::new(tcx).visit_body(body);
420                 });
421                 (rustc_interface::DEFAULT_QUERY_PROVIDERS.typeck)(tcx, def_id)
422             };
423         }),
424         make_codegen_backend: None,
425         registry: rustc_driver::diagnostics_registry(),
426     };
427
428     interface::create_compiler_and_run(config, |compiler| {
429         compiler.enter(|queries| {
430             let sess = compiler.session();
431
432             // We need to hold on to the complete resolver, so we cause everything to be
433             // cloned for the analysis passes to use. Suboptimal, but necessary in the
434             // current architecture.
435             let resolver = {
436                 let parts = abort_on_err(queries.expansion(), sess).peek();
437                 let resolver = parts.1.borrow();
438
439                 // Before we actually clone it, let's force all the extern'd crates to
440                 // actually be loaded, just in case they're only referred to inside
441                 // intra-doc-links
442                 resolver.borrow_mut().access(|resolver| {
443                     sess.time("load_extern_crates", || {
444                         for extern_name in &extern_names {
445                             debug!("loading extern crate {}", extern_name);
446                             resolver
447                                 .resolve_str_path_error(
448                                     DUMMY_SP,
449                                     extern_name,
450                                     TypeNS,
451                                     LocalDefId { local_def_index: CRATE_DEF_INDEX }.to_def_id(),
452                                 )
453                                 .unwrap_or_else(|()| {
454                                     panic!("Unable to resolve external crate {}", extern_name)
455                                 });
456                         }
457                     });
458                 });
459
460                 // Now we're good to clone the resolver because everything should be loaded
461                 resolver.clone()
462             };
463
464             if sess.has_errors() {
465                 sess.fatal("Compilation failed, aborting rustdoc");
466             }
467
468             let mut global_ctxt = abort_on_err(queries.global_ctxt(), sess).take();
469
470             let (krate, render_info, opts) = sess.time("run_global_ctxt", || {
471                 global_ctxt.enter(|tcx| {
472                     run_global_ctxt(
473                         tcx,
474                         resolver,
475                         default_passes,
476                         manual_passes,
477                         render_options,
478                         output_format,
479                     )
480                 })
481             });
482             (krate, render_info, opts, Lrc::clone(sess))
483         })
484     })
485 }
486
487 fn run_global_ctxt(
488     tcx: TyCtxt<'_>,
489     resolver: Rc<RefCell<interface::BoxedResolver>>,
490     mut default_passes: passes::DefaultPassOption,
491     mut manual_passes: Vec<String>,
492     render_options: RenderOptions,
493     output_format: Option<OutputFormat>,
494 ) -> (clean::Crate, RenderInfo, RenderOptions) {
495     // Certain queries assume that some checks were run elsewhere
496     // (see https://github.com/rust-lang/rust/pull/73566#issuecomment-656954425),
497     // so type-check everything other than function bodies in this crate before running lints.
498
499     // NOTE: this does not call `tcx.analysis()` so that we won't
500     // typeck function bodies or run the default rustc lints.
501     // (see `override_queries` in the `config`)
502
503     // HACK(jynelson) this calls an _extremely_ limited subset of `typeck`
504     // and might break if queries change their assumptions in the future.
505
506     // NOTE: This is copy/pasted from typeck/lib.rs and should be kept in sync with those changes.
507     tcx.sess.time("item_types_checking", || {
508         for &module in tcx.hir().krate().modules.keys() {
509             tcx.ensure().check_mod_item_types(tcx.hir().local_def_id(module));
510         }
511     });
512     tcx.sess.abort_if_errors();
513     tcx.sess.time("missing_docs", || {
514         rustc_lint::check_crate(tcx, rustc_lint::builtin::MissingDoc::new);
515     });
516     tcx.sess.time("check_mod_attrs", || {
517         for &module in tcx.hir().krate().modules.keys() {
518             let local_def_id = tcx.hir().local_def_id(module);
519             tcx.ensure().check_mod_attrs(local_def_id);
520         }
521     });
522
523     let access_levels = tcx.privacy_access_levels(LOCAL_CRATE);
524     // Convert from a HirId set to a DefId set since we don't always have easy access
525     // to the map from defid -> hirid
526     let access_levels = AccessLevels {
527         map: access_levels
528             .map
529             .iter()
530             .map(|(&k, &v)| (tcx.hir().local_def_id(k).to_def_id(), v))
531             .collect(),
532     };
533
534     let mut renderinfo = RenderInfo::default();
535     renderinfo.access_levels = access_levels;
536     renderinfo.output_format = output_format;
537
538     let mut ctxt = DocContext {
539         tcx,
540         resolver,
541         external_traits: Default::default(),
542         active_extern_traits: Default::default(),
543         renderinfo: RefCell::new(renderinfo),
544         ty_substs: Default::default(),
545         lt_substs: Default::default(),
546         ct_substs: Default::default(),
547         impl_trait_bounds: Default::default(),
548         fake_def_ids: Default::default(),
549         all_fake_def_ids: Default::default(),
550         generated_synthetics: Default::default(),
551         auto_traits: tcx
552             .all_traits(LOCAL_CRATE)
553             .iter()
554             .cloned()
555             .filter(|trait_def_id| tcx.trait_is_auto(*trait_def_id))
556             .collect(),
557         render_options,
558         module_trait_cache: RefCell::new(FxHashMap::default()),
559     };
560     debug!("crate: {:?}", tcx.hir().krate());
561
562     let mut krate = tcx.sess.time("clean_crate", || clean::krate(&mut ctxt));
563
564     if let Some(ref m) = krate.module {
565         if let None | Some("") = m.doc_value() {
566             let help = "The following guide may be of use:\n\
567                 https://doc.rust-lang.org/nightly/rustdoc/how-to-write-documentation.html";
568             tcx.struct_lint_node(
569                 rustc_lint::builtin::MISSING_CRATE_LEVEL_DOCS,
570                 ctxt.as_local_hir_id(m.def_id).unwrap(),
571                 |lint| {
572                     let mut diag =
573                         lint.build("no documentation found for this crate's top-level module");
574                     diag.help(help);
575                     diag.emit();
576                 },
577             );
578         }
579     }
580
581     fn report_deprecated_attr(name: &str, diag: &rustc_errors::Handler) {
582         let mut msg = diag
583             .struct_warn(&format!("the `#![doc({})]` attribute is considered deprecated", name));
584         msg.warn(
585             "see issue #44136 <https://github.com/rust-lang/rust/issues/44136> \
586              for more information",
587         );
588
589         if name == "no_default_passes" {
590             msg.help("you may want to use `#![doc(document_private_items)]`");
591         }
592
593         msg.emit();
594     }
595
596     // Process all of the crate attributes, extracting plugin metadata along
597     // with the passes which we are supposed to run.
598     for attr in krate.module.as_ref().unwrap().attrs.lists(sym::doc) {
599         let diag = ctxt.sess().diagnostic();
600
601         let name = attr.name_or_empty();
602         if attr.is_word() {
603             if name == sym::no_default_passes {
604                 report_deprecated_attr("no_default_passes", diag);
605                 if default_passes == passes::DefaultPassOption::Default {
606                     default_passes = passes::DefaultPassOption::None;
607                 }
608             }
609         } else if let Some(value) = attr.value_str() {
610             let sink = match name {
611                 sym::passes => {
612                     report_deprecated_attr("passes = \"...\"", diag);
613                     &mut manual_passes
614                 }
615                 sym::plugins => {
616                     report_deprecated_attr("plugins = \"...\"", diag);
617                     eprintln!(
618                         "WARNING: `#![doc(plugins = \"...\")]` \
619                          no longer functions; see CVE-2018-1000622"
620                     );
621                     continue;
622                 }
623                 _ => continue,
624             };
625             for name in value.as_str().split_whitespace() {
626                 sink.push(name.to_string());
627             }
628         }
629
630         if attr.is_word() && name == sym::document_private_items {
631             ctxt.render_options.document_private = true;
632         }
633     }
634
635     let passes = passes::defaults(default_passes).iter().copied().chain(
636         manual_passes.into_iter().flat_map(|name| {
637             if let Some(pass) = passes::find_pass(&name) {
638                 Some(ConditionalPass::always(pass))
639             } else {
640                 error!("unknown pass {}, skipping", name);
641                 None
642             }
643         }),
644     );
645
646     info!("Executing passes");
647
648     for p in passes {
649         let run = match p.condition {
650             Always => true,
651             WhenDocumentPrivate => ctxt.render_options.document_private,
652             WhenNotDocumentPrivate => !ctxt.render_options.document_private,
653             WhenNotDocumentHidden => !ctxt.render_options.document_hidden,
654         };
655         if run {
656             debug!("running pass {}", p.pass.name);
657             krate = ctxt.tcx.sess.time(p.pass.name, || (p.pass.run)(krate, &ctxt));
658         }
659     }
660
661     ctxt.sess().abort_if_errors();
662
663     (krate, ctxt.renderinfo.into_inner(), ctxt.render_options)
664 }
665
666 /// Due to https://github.com/rust-lang/rust/pull/73566,
667 /// the name resolution pass may find errors that are never emitted.
668 /// If typeck is called after this happens, then we'll get an ICE:
669 /// 'Res::Error found but not reported'. To avoid this, emit the errors now.
670 struct EmitIgnoredResolutionErrors<'tcx> {
671     tcx: TyCtxt<'tcx>,
672 }
673
674 impl<'tcx> EmitIgnoredResolutionErrors<'tcx> {
675     fn new(tcx: TyCtxt<'tcx>) -> Self {
676         Self { tcx }
677     }
678 }
679
680 impl<'tcx> Visitor<'tcx> for EmitIgnoredResolutionErrors<'tcx> {
681     type Map = Map<'tcx>;
682
683     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
684         // We need to recurse into nested closures,
685         // since those will fallback to the parent for type checking.
686         NestedVisitorMap::OnlyBodies(self.tcx.hir())
687     }
688
689     fn visit_path(&mut self, path: &'tcx Path<'_>, _id: HirId) {
690         debug!("visiting path {:?}", path);
691         if path.res == Res::Err {
692             // We have less context here than in rustc_resolve,
693             // so we can only emit the name and span.
694             // However we can give a hint that rustc_resolve will have more info.
695             let label = format!(
696                 "could not resolve path `{}`",
697                 path.segments
698                     .iter()
699                     .map(|segment| segment.ident.as_str().to_string())
700                     .collect::<Vec<_>>()
701                     .join("::")
702             );
703             let mut err = rustc_errors::struct_span_err!(
704                 self.tcx.sess,
705                 path.span,
706                 E0433,
707                 "failed to resolve: {}",
708                 label
709             );
710             err.span_label(path.span, label);
711             err.note("this error was originally ignored because you are running `rustdoc`");
712             err.note("try running again with `rustc` or `cargo check` and you may get a more detailed error");
713             err.emit();
714         }
715         // We could have an outer resolution that succeeded,
716         // but with generic parameters that failed.
717         // Recurse into the segments so we catch those too.
718         intravisit::walk_path(self, path);
719     }
720 }
721
722 /// `DefId` or parameter index (`ty::ParamTy.index`) of a synthetic type parameter
723 /// for `impl Trait` in argument position.
724 #[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
725 pub enum ImplTraitParam {
726     DefId(DefId),
727     ParamIndex(u32),
728 }
729
730 impl From<DefId> for ImplTraitParam {
731     fn from(did: DefId) -> Self {
732         ImplTraitParam::DefId(did)
733     }
734 }
735
736 impl From<u32> for ImplTraitParam {
737     fn from(idx: u32) -> Self {
738         ImplTraitParam::ParamIndex(idx)
739     }
740 }