]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/core.rs
Rollup merge of #84779 - jyn514:cargotest-args, r=Mark-Simulacrum
[rust.git] / src / librustdoc / core.rs
1 use rustc_ast as ast;
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::Res;
9 use rustc_hir::def_id::{DefId, LocalDefId, LOCAL_CRATE};
10 use rustc_hir::HirId;
11 use rustc_hir::{
12     intravisit::{self, NestedVisitorMap, Visitor},
13     Path,
14 };
15 use rustc_interface::{interface, Queries};
16 use rustc_middle::hir::map::Map;
17 use rustc_middle::middle::privacy::AccessLevels;
18 use rustc_middle::ty::{ParamEnv, Ty, TyCtxt};
19 use rustc_resolve as resolve;
20 use rustc_session::config::{self, CrateType, ErrorOutputType};
21 use rustc_session::lint;
22 use rustc_session::DiagnosticOutput;
23 use rustc_session::Session;
24 use rustc_span::source_map;
25 use rustc_span::symbol::sym;
26 use rustc_span::Span;
27
28 use std::cell::RefCell;
29 use std::mem;
30 use std::rc::Rc;
31
32 use crate::clean::inline::build_external_trait;
33 use crate::clean::{self, FakeDefId, TraitWithExtraInfo};
34 use crate::config::{Options as RustdocOptions, OutputFormat, RenderOptions};
35 use crate::formats::cache::Cache;
36 use crate::passes::{self, Condition::*, ConditionalPass};
37
38 crate use rustc_session::config::{DebuggingOptions, Input, Options};
39
40 crate struct DocContext<'tcx> {
41     crate tcx: TyCtxt<'tcx>,
42     /// Name resolver. Used for intra-doc links.
43     ///
44     /// The `Rc<RefCell<...>>` wrapping is needed because that is what's returned by
45     /// [`Queries::expansion()`].
46     // FIXME: see if we can get rid of this RefCell somehow
47     crate resolver: Rc<RefCell<interface::BoxedResolver>>,
48     /// Used for normalization.
49     ///
50     /// Most of this logic is copied from rustc_lint::late.
51     crate param_env: ParamEnv<'tcx>,
52     /// Later on moved through `clean::Crate` into `cache`
53     crate external_traits: Rc<RefCell<FxHashMap<DefId, clean::TraitWithExtraInfo>>>,
54     /// Used while populating `external_traits` to ensure we don't process the same trait twice at
55     /// the same time.
56     crate active_extern_traits: FxHashSet<DefId>,
57     // The current set of type and lifetime substitutions,
58     // for expanding type aliases at the HIR level:
59     /// Table `DefId` of type parameter -> substituted type
60     crate ty_substs: FxHashMap<DefId, clean::Type>,
61     /// Table `DefId` of lifetime parameter -> substituted lifetime
62     crate lt_substs: FxHashMap<DefId, clean::Lifetime>,
63     /// Table `DefId` of const parameter -> substituted const
64     crate ct_substs: FxHashMap<DefId, clean::Constant>,
65     /// Table synthetic type parameter for `impl Trait` in argument position -> bounds
66     crate impl_trait_bounds: FxHashMap<ImplTraitParam, Vec<clean::GenericBound>>,
67     /// Auto-trait or blanket impls processed so far, as `(self_ty, trait_def_id)`.
68     // FIXME(eddyb) make this a `ty::TraitRef<'tcx>` set.
69     crate generated_synthetics: FxHashSet<(Ty<'tcx>, DefId)>,
70     crate auto_traits: Vec<DefId>,
71     /// The options given to rustdoc that could be relevant to a pass.
72     crate render_options: RenderOptions,
73     /// The traits in scope for a given module.
74     ///
75     /// See `collect_intra_doc_links::traits_implemented_by` for more details.
76     /// `map<module, set<trait>>`
77     crate module_trait_cache: FxHashMap<DefId, FxHashSet<DefId>>,
78     /// This same cache is used throughout rustdoc, including in [`crate::html::render`].
79     crate cache: Cache,
80     /// Used by [`clean::inline`] to tell if an item has already been inlined.
81     crate inlined: FxHashSet<FakeDefId>,
82     /// Used by `calculate_doc_coverage`.
83     crate output_format: OutputFormat,
84 }
85
86 impl<'tcx> DocContext<'tcx> {
87     crate fn sess(&self) -> &'tcx Session {
88         &self.tcx.sess
89     }
90
91     crate fn with_param_env<T, F: FnOnce(&mut Self) -> T>(&mut self, def_id: DefId, f: F) -> T {
92         let old_param_env = mem::replace(&mut self.param_env, self.tcx.param_env(def_id));
93         let ret = f(self);
94         self.param_env = old_param_env;
95         ret
96     }
97
98     crate fn enter_resolver<F, R>(&self, f: F) -> R
99     where
100         F: FnOnce(&mut resolve::Resolver<'_>) -> R,
101     {
102         self.resolver.borrow_mut().access(f)
103     }
104
105     /// Call the closure with the given parameters set as
106     /// the substitutions for a type alias' RHS.
107     crate fn enter_alias<F, R>(
108         &mut self,
109         ty_substs: FxHashMap<DefId, clean::Type>,
110         lt_substs: FxHashMap<DefId, clean::Lifetime>,
111         ct_substs: FxHashMap<DefId, clean::Constant>,
112         f: F,
113     ) -> R
114     where
115         F: FnOnce(&mut Self) -> R,
116     {
117         let (old_tys, old_lts, old_cts) = (
118             mem::replace(&mut self.ty_substs, ty_substs),
119             mem::replace(&mut self.lt_substs, lt_substs),
120             mem::replace(&mut self.ct_substs, ct_substs),
121         );
122         let r = f(self);
123         self.ty_substs = old_tys;
124         self.lt_substs = old_lts;
125         self.ct_substs = old_cts;
126         r
127     }
128
129     /// Like `hir().local_def_id_to_hir_id()`, but skips calling it on fake DefIds.
130     /// (This avoids a slice-index-out-of-bounds panic.)
131     crate fn as_local_hir_id(tcx: TyCtxt<'_>, def_id: FakeDefId) -> Option<HirId> {
132         match def_id {
133             FakeDefId::Real(real_id) => {
134                 real_id.as_local().map(|def_id| tcx.hir().local_def_id_to_hir_id(def_id))
135             }
136             FakeDefId::Fake(_, _) => None,
137         }
138     }
139 }
140
141 /// Creates a new diagnostic `Handler` that can be used to emit warnings and errors.
142 ///
143 /// If the given `error_format` is `ErrorOutputType::Json` and no `SourceMap` is given, a new one
144 /// will be created for the handler.
145 crate fn new_handler(
146     error_format: ErrorOutputType,
147     source_map: Option<Lrc<source_map::SourceMap>>,
148     debugging_opts: &DebuggingOptions,
149 ) -> rustc_errors::Handler {
150     let emitter: Box<dyn Emitter + sync::Send> = match error_format {
151         ErrorOutputType::HumanReadable(kind) => {
152             let (short, color_config) = kind.unzip();
153             Box::new(
154                 EmitterWriter::stderr(
155                     color_config,
156                     source_map.map(|sm| sm as _),
157                     short,
158                     debugging_opts.teach,
159                     debugging_opts.terminal_width,
160                     false,
161                 )
162                 .ui_testing(debugging_opts.ui_testing),
163             )
164         }
165         ErrorOutputType::Json { pretty, json_rendered } => {
166             let source_map = source_map.unwrap_or_else(|| {
167                 Lrc::new(source_map::SourceMap::new(source_map::FilePathMapping::empty()))
168             });
169             Box::new(
170                 JsonEmitter::stderr(
171                     None,
172                     source_map,
173                     pretty,
174                     json_rendered,
175                     debugging_opts.terminal_width,
176                     false,
177                 )
178                 .ui_testing(debugging_opts.ui_testing),
179             )
180         }
181     };
182
183     rustc_errors::Handler::with_emitter_and_flags(
184         emitter,
185         debugging_opts.diagnostic_handler_flags(true),
186     )
187 }
188
189 /// Parse, resolve, and typecheck the given crate.
190 crate fn create_config(
191     RustdocOptions {
192         input,
193         crate_name,
194         proc_macro_crate,
195         error_format,
196         libs,
197         externs,
198         mut cfgs,
199         codegen_options,
200         debugging_opts,
201         target,
202         edition,
203         maybe_sysroot,
204         lint_opts,
205         describe_lints,
206         lint_cap,
207         display_warnings,
208         ..
209     }: RustdocOptions,
210 ) -> rustc_interface::Config {
211     // Add the doc cfg into the doc build.
212     cfgs.push("doc".to_string());
213
214     let cpath = Some(input.clone());
215     let input = Input::File(input);
216
217     // By default, rustdoc ignores all lints.
218     // Specifically unblock lints relevant to documentation or the lint machinery itself.
219     let mut lints_to_show = vec![
220         // it's unclear whether this should be part of rustdoc directly (#77364)
221         rustc_lint::builtin::MISSING_DOCS.name.to_string(),
222         // these are definitely not part of rustdoc, but we want to warn on them anyway.
223         rustc_lint::builtin::RENAMED_AND_REMOVED_LINTS.name.to_string(),
224         rustc_lint::builtin::UNKNOWN_LINTS.name.to_string(),
225     ];
226     lints_to_show.extend(crate::lint::RUSTDOC_LINTS.iter().map(|lint| lint.name.to_string()));
227
228     let (lint_opts, lint_caps) = crate::lint::init_lints(lints_to_show, lint_opts, |lint| {
229         // FIXME: why is this necessary?
230         if lint.name == crate::lint::BROKEN_INTRA_DOC_LINKS.name
231             || lint.name == crate::lint::INVALID_CODEBLOCK_ATTRIBUTES.name
232         {
233             None
234         } else {
235             Some((lint.name_lower(), lint::Allow))
236         }
237     });
238
239     let crate_types =
240         if proc_macro_crate { vec![CrateType::ProcMacro] } else { vec![CrateType::Rlib] };
241     // plays with error output here!
242     let sessopts = config::Options {
243         maybe_sysroot,
244         search_paths: libs,
245         crate_types,
246         lint_opts: if !display_warnings { lint_opts } else { vec![] },
247         lint_cap,
248         cg: codegen_options,
249         externs,
250         target_triple: target,
251         unstable_features: UnstableFeatures::from_environment(crate_name.as_deref()),
252         actually_rustdoc: true,
253         debugging_opts,
254         error_format,
255         edition,
256         describe_lints,
257         crate_name,
258         ..Options::default()
259     };
260
261     interface::Config {
262         opts: sessopts,
263         crate_cfg: interface::parse_cfgspecs(cfgs),
264         input,
265         input_path: cpath,
266         output_file: None,
267         output_dir: None,
268         file_loader: None,
269         diagnostic_output: DiagnosticOutput::Default,
270         stderr: None,
271         lint_caps,
272         parse_sess_created: None,
273         register_lints: Some(box crate::lint::register_lints),
274         override_queries: Some(|_sess, providers, _external_providers| {
275             // Most lints will require typechecking, so just don't run them.
276             providers.lint_mod = |_, _| {};
277             // Prevent `rustc_typeck::check_crate` from calling `typeck` on all bodies.
278             providers.typeck_item_bodies = |_, _| {};
279             // hack so that `used_trait_imports` won't try to call typeck
280             providers.used_trait_imports = |_, _| {
281                 lazy_static! {
282                     static ref EMPTY_SET: FxHashSet<LocalDefId> = FxHashSet::default();
283                 }
284                 &EMPTY_SET
285             };
286             // In case typeck does end up being called, don't ICE in case there were name resolution errors
287             providers.typeck = move |tcx, def_id| {
288                 // Closures' tables come from their outermost function,
289                 // as they are part of the same "inference environment".
290                 // This avoids emitting errors for the parent twice (see similar code in `typeck_with_fallback`)
291                 let outer_def_id = tcx.closure_base_def_id(def_id.to_def_id()).expect_local();
292                 if outer_def_id != def_id {
293                     return tcx.typeck(outer_def_id);
294                 }
295
296                 let hir = tcx.hir();
297                 let body = hir.body(hir.body_owned_by(hir.local_def_id_to_hir_id(def_id)));
298                 debug!("visiting body for {:?}", def_id);
299                 EmitIgnoredResolutionErrors::new(tcx).visit_body(body);
300                 (rustc_interface::DEFAULT_QUERY_PROVIDERS.typeck)(tcx, def_id)
301             };
302         }),
303         make_codegen_backend: None,
304         registry: rustc_driver::diagnostics_registry(),
305     }
306 }
307
308 crate fn create_resolver<'a>(
309     queries: &Queries<'a>,
310     sess: &Session,
311 ) -> Rc<RefCell<interface::BoxedResolver>> {
312     let parts = abort_on_err(queries.expansion(), sess).peek();
313     let (krate, resolver, _) = &*parts;
314     let resolver = resolver.borrow().clone();
315
316     let mut loader = crate::passes::collect_intra_doc_links::IntraLinkCrateLoader::new(resolver);
317     ast::visit::walk_crate(&mut loader, krate);
318
319     loader.resolver
320 }
321
322 crate fn run_global_ctxt(
323     tcx: TyCtxt<'_>,
324     resolver: Rc<RefCell<interface::BoxedResolver>>,
325     mut default_passes: passes::DefaultPassOption,
326     manual_passes: Vec<String>,
327     render_options: RenderOptions,
328     output_format: OutputFormat,
329 ) -> (clean::Crate, RenderOptions, Cache) {
330     // Certain queries assume that some checks were run elsewhere
331     // (see https://github.com/rust-lang/rust/pull/73566#issuecomment-656954425),
332     // so type-check everything other than function bodies in this crate before running lints.
333
334     // NOTE: this does not call `tcx.analysis()` so that we won't
335     // typeck function bodies or run the default rustc lints.
336     // (see `override_queries` in the `config`)
337
338     // HACK(jynelson) this calls an _extremely_ limited subset of `typeck`
339     // and might break if queries change their assumptions in the future.
340
341     // NOTE: This is copy/pasted from typeck/lib.rs and should be kept in sync with those changes.
342     tcx.sess.time("item_types_checking", || {
343         for &module in tcx.hir().krate().modules.keys() {
344             tcx.ensure().check_mod_item_types(module);
345         }
346     });
347     tcx.sess.abort_if_errors();
348     tcx.sess.time("missing_docs", || {
349         rustc_lint::check_crate(tcx, rustc_lint::builtin::MissingDoc::new);
350     });
351     tcx.sess.time("check_mod_attrs", || {
352         for &module in tcx.hir().krate().modules.keys() {
353             tcx.ensure().check_mod_attrs(module);
354         }
355     });
356     rustc_passes::stability::check_unused_or_stable_features(tcx);
357
358     let access_levels = tcx.privacy_access_levels(LOCAL_CRATE);
359     // Convert from a HirId set to a DefId set since we don't always have easy access
360     // to the map from defid -> hirid
361     let access_levels = AccessLevels {
362         map: access_levels
363             .map
364             .iter()
365             .map(|(&k, &v)| (tcx.hir().local_def_id(k).to_def_id(), v))
366             .collect(),
367     };
368
369     let mut ctxt = DocContext {
370         tcx,
371         resolver,
372         param_env: ParamEnv::empty(),
373         external_traits: Default::default(),
374         active_extern_traits: Default::default(),
375         ty_substs: Default::default(),
376         lt_substs: Default::default(),
377         ct_substs: Default::default(),
378         impl_trait_bounds: Default::default(),
379         generated_synthetics: Default::default(),
380         auto_traits: tcx
381             .all_traits(LOCAL_CRATE)
382             .iter()
383             .cloned()
384             .filter(|trait_def_id| tcx.trait_is_auto(*trait_def_id))
385             .collect(),
386         module_trait_cache: FxHashMap::default(),
387         cache: Cache::new(access_levels, render_options.document_private),
388         inlined: FxHashSet::default(),
389         output_format,
390         render_options,
391     };
392
393     // Small hack to force the Sized trait to be present.
394     //
395     // Note that in case of `#![no_core]`, the trait is not available.
396     if let Some(sized_trait_did) = ctxt.tcx.lang_items().sized_trait() {
397         let mut sized_trait = build_external_trait(&mut ctxt, sized_trait_did);
398         sized_trait.is_auto = true;
399         ctxt.external_traits
400             .borrow_mut()
401             .insert(sized_trait_did, TraitWithExtraInfo { trait_: sized_trait, is_notable: false });
402     }
403
404     debug!("crate: {:?}", tcx.hir().krate());
405
406     let mut krate = tcx.sess.time("clean_crate", || clean::krate(&mut ctxt));
407
408     if krate.module.doc_value().map(|d| d.is_empty()).unwrap_or(true) {
409         let help = "The following guide may be of use:\n\
410                 https://doc.rust-lang.org/nightly/rustdoc/how-to-write-documentation.html";
411         tcx.struct_lint_node(
412             crate::lint::MISSING_CRATE_LEVEL_DOCS,
413             DocContext::as_local_hir_id(tcx, krate.module.def_id).unwrap(),
414             |lint| {
415                 let mut diag =
416                     lint.build("no documentation found for this crate's top-level module");
417                 diag.help(help);
418                 diag.emit();
419             },
420         );
421     }
422
423     fn report_deprecated_attr(name: &str, diag: &rustc_errors::Handler, sp: Span) {
424         let mut msg =
425             diag.struct_span_warn(sp, &format!("the `#![doc({})]` attribute is deprecated", name));
426         msg.note(
427             "see issue #44136 <https://github.com/rust-lang/rust/issues/44136> \
428              for more information",
429         );
430
431         if name == "no_default_passes" {
432             msg.help("you may want to use `#![doc(document_private_items)]`");
433         } else if name.starts_with("plugins") {
434             msg.warn("`#![doc(plugins = \"...\")]` no longer functions; see CVE-2018-1000622 <https://nvd.nist.gov/vuln/detail/CVE-2018-1000622>");
435         }
436
437         msg.emit();
438     }
439
440     let parse_pass = |name: &str, sp: Option<Span>| {
441         if let Some(pass) = passes::find_pass(name) {
442             Some(ConditionalPass::always(pass))
443         } else {
444             let msg = &format!("ignoring unknown pass `{}`", name);
445             let mut warning = if let Some(sp) = sp {
446                 tcx.sess.struct_span_warn(sp, msg)
447             } else {
448                 tcx.sess.struct_warn(msg)
449             };
450             if name == "collapse-docs" {
451                 warning.note("the `collapse-docs` pass was removed in #80261 <https://github.com/rust-lang/rust/pull/80261>");
452             }
453             warning.emit();
454             None
455         }
456     };
457
458     let mut manual_passes: Vec<_> =
459         manual_passes.into_iter().flat_map(|name| parse_pass(&name, None)).collect();
460
461     // Process all of the crate attributes, extracting plugin metadata along
462     // with the passes which we are supposed to run.
463     for attr in krate.module.attrs.lists(sym::doc) {
464         let diag = ctxt.sess().diagnostic();
465
466         let name = attr.name_or_empty();
467         if attr.is_word() {
468             if name == sym::no_default_passes {
469                 report_deprecated_attr("no_default_passes", diag, attr.span());
470                 if default_passes == passes::DefaultPassOption::Default {
471                     default_passes = passes::DefaultPassOption::None;
472                 }
473             }
474         } else if let Some(value) = attr.value_str() {
475             match name {
476                 sym::passes => {
477                     report_deprecated_attr("passes = \"...\"", diag, attr.span());
478                 }
479                 sym::plugins => {
480                     report_deprecated_attr("plugins = \"...\"", diag, attr.span());
481                     continue;
482                 }
483                 _ => continue,
484             };
485             for name in value.as_str().split_whitespace() {
486                 let span = attr.name_value_literal_span().unwrap_or(attr.span());
487                 manual_passes.extend(parse_pass(name, Some(span)));
488             }
489         }
490
491         if attr.is_word() && name == sym::document_private_items {
492             ctxt.render_options.document_private = true;
493         }
494     }
495
496     let passes = passes::defaults(default_passes).iter().copied().chain(manual_passes);
497     info!("Executing passes");
498
499     for p in passes {
500         let run = match p.condition {
501             Always => true,
502             WhenDocumentPrivate => ctxt.render_options.document_private,
503             WhenNotDocumentPrivate => !ctxt.render_options.document_private,
504             WhenNotDocumentHidden => !ctxt.render_options.document_hidden,
505         };
506         if run {
507             debug!("running pass {}", p.pass.name);
508             krate = ctxt.tcx.sess.time(p.pass.name, || (p.pass.run)(krate, &mut ctxt));
509         }
510     }
511
512     ctxt.sess().abort_if_errors();
513
514     let render_options = ctxt.render_options;
515     let mut cache = ctxt.cache;
516     krate = tcx.sess.time("create_format_cache", || {
517         cache.populate(krate, tcx, &render_options.extern_html_root_urls, &render_options.output)
518     });
519
520     // The main crate doc comments are always collapsed.
521     krate.collapsed = true;
522
523     (krate, render_options, cache)
524 }
525
526 /// Due to <https://github.com/rust-lang/rust/pull/73566>,
527 /// the name resolution pass may find errors that are never emitted.
528 /// If typeck is called after this happens, then we'll get an ICE:
529 /// 'Res::Error found but not reported'. To avoid this, emit the errors now.
530 struct EmitIgnoredResolutionErrors<'tcx> {
531     tcx: TyCtxt<'tcx>,
532 }
533
534 impl<'tcx> EmitIgnoredResolutionErrors<'tcx> {
535     fn new(tcx: TyCtxt<'tcx>) -> Self {
536         Self { tcx }
537     }
538 }
539
540 impl<'tcx> Visitor<'tcx> for EmitIgnoredResolutionErrors<'tcx> {
541     type Map = Map<'tcx>;
542
543     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
544         // We need to recurse into nested closures,
545         // since those will fallback to the parent for type checking.
546         NestedVisitorMap::OnlyBodies(self.tcx.hir())
547     }
548
549     fn visit_path(&mut self, path: &'tcx Path<'_>, _id: HirId) {
550         debug!("visiting path {:?}", path);
551         if path.res == Res::Err {
552             // We have less context here than in rustc_resolve,
553             // so we can only emit the name and span.
554             // However we can give a hint that rustc_resolve will have more info.
555             let label = format!(
556                 "could not resolve path `{}`",
557                 path.segments
558                     .iter()
559                     .map(|segment| segment.ident.as_str().to_string())
560                     .collect::<Vec<_>>()
561                     .join("::")
562             );
563             let mut err = rustc_errors::struct_span_err!(
564                 self.tcx.sess,
565                 path.span,
566                 E0433,
567                 "failed to resolve: {}",
568                 label
569             );
570             err.span_label(path.span, label);
571             err.note("this error was originally ignored because you are running `rustdoc`");
572             err.note("try running again with `rustc` or `cargo check` and you may get a more detailed error");
573             err.emit();
574         }
575         // We could have an outer resolution that succeeded,
576         // but with generic parameters that failed.
577         // Recurse into the segments so we catch those too.
578         intravisit::walk_path(self, path);
579     }
580 }
581
582 /// `DefId` or parameter index (`ty::ParamTy.index`) of a synthetic type parameter
583 /// for `impl Trait` in argument position.
584 #[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
585 crate enum ImplTraitParam {
586     DefId(FakeDefId),
587     ParamIndex(u32),
588 }
589
590 impl From<FakeDefId> for ImplTraitParam {
591     fn from(did: FakeDefId) -> Self {
592         ImplTraitParam::DefId(did)
593     }
594 }
595
596 impl From<u32> for ImplTraitParam {
597     fn from(idx: u32) -> Self {
598         ImplTraitParam::ParamIndex(idx)
599     }
600 }