rust/src/librustdoc/core.rs

678 lines
26 KiB
Rust
Raw Normal View History

use rustc_attr as attr;
2019-12-24 05:02:53 +01:00
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
use rustc_data_structures::sync::{self, Lrc};
use rustc_driver::abort_on_err;
use rustc_errors::emitter::{Emitter, EmitterWriter};
use rustc_errors::json::JsonEmitter;
2019-11-30 02:50:47 +01:00
use rustc_feature::UnstableFeatures;
use rustc_hir::def::Namespace::TypeNS;
use rustc_hir::def_id::{CrateNum, DefId, DefIndex, LocalDefId, CRATE_DEF_INDEX, LOCAL_CRATE};
use rustc_hir::HirId;
2019-12-22 17:42:04 -05:00
use rustc_interface::interface;
2020-03-29 17:19:48 +02:00
use rustc_middle::middle::cstore::CrateStore;
use rustc_middle::middle::privacy::AccessLevels;
use rustc_middle::ty::{Ty, TyCtxt};
use rustc_resolve as resolve;
use rustc_session::config::{self, CrateType, ErrorOutputType};
use rustc_session::lint;
use rustc_session::DiagnosticOutput;
use rustc_session::Session;
use rustc_span::source_map;
2020-01-01 19:30:57 +01:00
use rustc_span::symbol::sym;
use rustc_span::DUMMY_SP;
2013-08-15 16:28:54 -04:00
use std::cell::RefCell;
2016-09-01 10:21:12 +03:00
use std::mem;
use std::rc::Rc;
2013-08-15 16:28:54 -04:00
2019-02-23 16:40:07 +09:00
use crate::clean;
2019-12-22 17:42:04 -05:00
use crate::clean::{AttributesExt, MAX_DEF_ID};
use crate::config::{Options as RustdocOptions, RenderOptions};
2019-02-23 16:40:07 +09:00
use crate::html::render::RenderInfo;
use crate::passes::{self, Condition::*, ConditionalPass};
2013-08-15 16:28:54 -04:00
pub use rustc_session::config::{CodegenOptions, DebuggingOptions, Input, Options};
pub use rustc_session::search_paths::SearchPath;
2015-01-17 21:23:05 -08:00
pub type ExternalPaths = FxHashMap<DefId, (Vec<String>, clean::TypeKind)>;
pub struct DocContext<'tcx> {
2019-06-14 00:48:52 +03:00
pub tcx: TyCtxt<'tcx>,
2019-07-24 14:43:40 -04:00
pub resolver: Rc<RefCell<interface::BoxedResolver>>,
/// Later on moved into `html::render::CACHE_KEY`
pub renderinfo: RefCell<RenderInfo>,
/// Later on moved through `clean::Crate` into `html::render::CACHE_KEY`
pub external_traits: Rc<RefCell<FxHashMap<DefId, clean::Trait>>>,
2018-02-21 18:33:42 -06:00
/// Used while populating `external_traits` to ensure we don't process the same trait twice at
/// the same time.
2019-08-10 17:10:13 -04:00
pub active_extern_traits: RefCell<FxHashSet<DefId>>,
2016-09-01 10:21:12 +03:00
// The current set of type and lifetime substitutions,
// for expanding type aliases at the HIR level:
/// Table `DefId` of type parameter -> substituted type
pub ty_substs: RefCell<FxHashMap<DefId, clean::Type>>,
/// Table `DefId` of lifetime parameter -> substituted lifetime
pub lt_substs: RefCell<FxHashMap<DefId, clean::Lifetime>>,
/// Table `DefId` of const parameter -> substituted const
pub ct_substs: RefCell<FxHashMap<DefId, clean::Constant>>,
/// Table synthetic type parameter for `impl Trait` in argument position -> bounds
pub impl_trait_bounds: RefCell<FxHashMap<ImplTraitParam, Vec<clean::GenericBound>>>,
Generate documentation for auto-trait impls A new section is added to both both struct and trait doc pages. On struct/enum pages, a new 'Auto Trait Implementations' section displays any synthetic implementations for auto traits. Currently, this is only done for Send and Sync. On trait pages, a new 'Auto Implementors' section displays all types which automatically implement the trait. Effectively, this is a list of all public types in the standard library. Synthesized impls for a particular auto trait ('synthetic impls') take into account generic bounds. For example, a type 'struct Foo<T>(T)' will have 'impl<T> Send for Foo<T> where T: Send' generated for it. Manual implementations of auto traits are also taken into account. If we have the following types: 'struct Foo<T>(T)' 'struct Wrapper<T>(Foo<T>)' 'unsafe impl<T> Send for Wrapper<T>' // pretend that Wrapper<T> makes this sound somehow Then Wrapper will have the following impl generated: 'impl<T> Send for Wrapper<T>' reflecting the fact that 'T: Send' need not hold for 'Wrapper<T>: Send' to hold Lifetimes, HRTBS, and projections (e.g. '<T as Iterator>::Item') are taken into account by synthetic impls However, if a type can *never* implement a particular auto trait (e.g. 'struct MyStruct<T>(*const T)'), then a negative impl will be generated (in this case, 'impl<T> !Send for MyStruct<T>') All of this means that a user should be able to copy-paste a synthetic impl into their code, without any observable changes in behavior (assuming the rest of the program remains unchanged).
2017-11-22 16:16:55 -05:00
pub fake_def_ids: RefCell<FxHashMap<CrateNum, DefId>>,
pub all_fake_def_ids: RefCell<FxHashSet<DefId>>,
/// Auto-trait or blanket impls processed so far, as `(self_ty, trait_def_id)`.
// FIXME(eddyb) make this a `ty::TraitRef<'tcx>` set.
pub generated_synthetics: RefCell<FxHashSet<(Ty<'tcx>, DefId)>>,
pub auto_traits: Vec<DefId>,
/// The options given to rustdoc that could be relevant to a pass.
pub render_options: RenderOptions,
2014-03-05 16:36:01 +02:00
}
impl<'tcx> DocContext<'tcx> {
pub fn sess(&self) -> &Session {
&self.tcx.sess
}
2016-09-01 10:21:12 +03:00
pub fn enter_resolver<F, R>(&self, f: F) -> R
2019-12-22 17:42:04 -05:00
where
F: FnOnce(&mut resolve::Resolver<'_>) -> R,
{
2019-07-24 14:43:40 -04:00
self.resolver.borrow_mut().access(f)
}
2016-09-01 10:21:12 +03:00
/// Call the closure with the given parameters set as
/// the substitutions for a type alias' RHS.
2019-12-22 17:42:04 -05:00
pub fn enter_alias<F, R>(
&self,
ty_substs: FxHashMap<DefId, clean::Type>,
lt_substs: FxHashMap<DefId, clean::Lifetime>,
ct_substs: FxHashMap<DefId, clean::Constant>,
f: F,
) -> R
where
F: FnOnce() -> R,
{
let (old_tys, old_lts, old_cts) = (
mem::replace(&mut *self.ty_substs.borrow_mut(), ty_substs),
mem::replace(&mut *self.lt_substs.borrow_mut(), lt_substs),
mem::replace(&mut *self.ct_substs.borrow_mut(), ct_substs),
);
2016-09-01 10:21:12 +03:00
let r = f();
*self.ty_substs.borrow_mut() = old_tys;
*self.lt_substs.borrow_mut() = old_lts;
*self.ct_substs.borrow_mut() = old_cts;
2016-09-01 10:21:12 +03:00
r
}
// This is an ugly hack, but it's the simplest way to handle synthetic impls without greatly
2020-03-29 15:24:45 +02:00
// refactoring either librustdoc or librustc_middle. In particular, allowing new DefIds to be
// registered after the AST is constructed would require storing the defid mapping in a
// RefCell, decreasing the performance for normal compilation for very little gain.
//
2019-05-08 22:07:12 +03:00
// Instead, we construct 'fake' def ids, which start immediately after the last DefId.
// In the Debug impl for clean::Item, we explicitly check for fake
// def ids, as we'll end up with a panic if we use the DefId Debug impl for fake DefIds
pub fn next_def_id(&self, crate_num: CrateNum) -> DefId {
let start_def_id = {
let next_id = if crate_num == LOCAL_CRATE {
2019-12-22 17:42:04 -05:00
self.tcx.hir().definitions().def_path_table().next_id()
} else {
self.enter_resolver(|r| r.cstore().def_path_table(crate_num).next_id())
};
2019-12-22 17:42:04 -05:00
DefId { krate: crate_num, index: next_id }
};
let mut fake_ids = self.fake_def_ids.borrow_mut();
let def_id = *fake_ids.entry(crate_num).or_insert(start_def_id);
fake_ids.insert(
crate_num,
2019-12-22 17:42:04 -05:00
DefId { krate: crate_num, index: DefIndex::from(def_id.index.index() + 1) },
);
MAX_DEF_ID.with(|m| {
m.borrow_mut().entry(def_id.krate).or_insert(start_def_id);
});
self.all_fake_def_ids.borrow_mut().insert(def_id);
def_id
}
2018-09-19 09:28:49 -05:00
/// Like the function of the same name on the HIR map, but skips calling it on fake DefIds.
/// (This avoids a slice-index-out-of-bounds panic.)
pub fn as_local_hir_id(&self, def_id: DefId) -> Option<HirId> {
if self.all_fake_def_ids.borrow().contains(&def_id) {
None
} else {
def_id.as_local().map(|def_id| self.tcx.hir().as_local_hir_id(def_id))
}
}
pub fn stability(&self, id: HirId) -> Option<attr::Stability> {
2019-12-22 17:42:04 -05:00
self.tcx
.hir()
.opt_local_def_id(id)
.and_then(|def_id| self.tcx.lookup_stability(def_id.to_def_id()))
2019-12-22 17:42:04 -05:00
.cloned()
}
pub fn deprecation(&self, id: HirId) -> Option<attr::Deprecation> {
self.tcx
.hir()
.opt_local_def_id(id)
.and_then(|def_id| self.tcx.lookup_deprecation(def_id.to_def_id()))
}
2013-08-15 16:28:54 -04:00
}
/// Creates a new diagnostic `Handler` that can be used to emit warnings and errors.
///
2018-08-18 12:13:35 +02:00
/// If the given `error_format` is `ErrorOutputType::Json` and no `SourceMap` is given, a new one
/// will be created for the handler.
2019-12-22 17:42:04 -05:00
pub fn new_handler(
error_format: ErrorOutputType,
source_map: Option<Lrc<source_map::SourceMap>>,
debugging_opts: &DebuggingOptions,
) -> rustc_errors::Handler {
let emitter: Box<dyn Emitter + sync::Send> = match error_format {
ErrorOutputType::HumanReadable(kind) => {
let (short, color_config) = kind.unzip();
Box::new(
EmitterWriter::stderr(
color_config,
2020-02-22 16:07:05 +02:00
source_map.map(|sm| sm as _),
short,
debugging_opts.teach,
debugging_opts.terminal_width,
false,
2019-12-22 17:42:04 -05:00
)
.ui_testing(debugging_opts.ui_testing),
)
2019-12-22 17:42:04 -05:00
}
ErrorOutputType::Json { pretty, json_rendered } => {
2019-12-22 17:42:04 -05:00
let source_map = source_map.unwrap_or_else(|| {
Lrc::new(source_map::SourceMap::new(source_map::FilePathMapping::empty()))
2019-12-22 17:42:04 -05:00
});
Box::new(
JsonEmitter::stderr(
None,
source_map,
pretty,
json_rendered,
debugging_opts.terminal_width,
false,
)
.ui_testing(debugging_opts.ui_testing),
)
2019-12-22 17:42:04 -05:00
}
};
rustc_errors::Handler::with_emitter_and_flags(
emitter,
debugging_opts.diagnostic_handler_flags(true),
)
}
2020-04-26 14:07:13 +02:00
/// This function is used to setup the lint initialization. By default, in rustdoc, everything
/// is "allowed". Depending if we run in test mode or not, we want some of them to be at their
/// default level. For example, the "INVALID_CODEBLOCK_ATTRIBUTES" lint is activated in both
2020-04-26 14:07:13 +02:00
/// modes.
///
/// A little detail easy to forget is that there is a way to set the lint level for all lints
/// through the "WARNINGS" lint. To prevent this to happen, we set it back to its "normal" level
/// inside this function.
///
/// It returns a tuple containing:
/// * Vector of tuples of lints' name and their associated "max" level
/// * HashMap of lint id with their associated "max" level
pub fn init_lints<F>(
mut allowed_lints: Vec<String>,
2020-04-26 14:07:13 +02:00
lint_opts: Vec<(String, lint::Level)>,
filter_call: F,
) -> (Vec<(String, lint::Level)>, FxHashMap<lint::LintId, lint::Level>)
where
F: Fn(&lint::Lint) -> Option<(String, lint::Level)>,
{
let warnings_lint_name = lint::builtin::WARNINGS.name;
allowed_lints.push(warnings_lint_name.to_owned());
allowed_lints.extend(lint_opts.iter().map(|(lint, _)| lint).cloned());
2020-04-26 14:07:13 +02:00
let lints = || {
lint::builtin::HardwiredLints::get_lints()
.into_iter()
.chain(rustc_lint::SoftLints::get_lints().into_iter())
};
let lint_opts = lints()
.filter_map(|lint| {
// Permit feature-gated lints to avoid feature errors when trying to
// allow all lints.
if lint.name == warnings_lint_name || lint.feature_gate.is_some() {
None
} else {
filter_call(lint)
}
})
2020-04-26 14:07:13 +02:00
.chain(lint_opts.into_iter())
.collect::<Vec<_>>();
let lint_caps = lints()
.filter_map(|lint| {
// We don't want to allow *all* lints so let's ignore
// those ones.
if allowed_lints.iter().any(|l| lint.name == l) {
2020-04-26 14:07:13 +02:00
None
} else {
Some((lint::LintId::of(lint), lint::Allow))
}
})
.collect();
(lint_opts, lint_caps)
}
2019-08-10 16:43:39 -04:00
pub fn run_core(options: RustdocOptions) -> (clean::Crate, RenderInfo, RenderOptions) {
// Parse, resolve, and typecheck the given crate.
let RustdocOptions {
input,
crate_name,
proc_macro_crate,
error_format,
libs,
externs,
mut cfgs,
codegen_options,
debugging_options,
target,
edition,
maybe_sysroot,
lint_opts,
describe_lints,
lint_cap,
mut default_passes,
mut manual_passes,
display_warnings,
render_options,
output_format,
..
} = options;
2019-12-22 17:42:04 -05:00
let extern_names: Vec<String> = externs
.iter()
2019-12-05 14:43:53 -08:00
.filter(|(_, entry)| entry.add_prelude)
2019-12-22 17:42:04 -05:00
.map(|(name, _)| name)
.cloned()
.collect();
// Add the doc cfg into the doc build.
2019-11-06 18:32:51 +01:00
cfgs.push("doc".to_string());
let cpath = Some(input.clone());
let input = Input::File(input);
2013-08-15 16:28:54 -04:00
2018-06-13 21:17:15 +02:00
let intra_link_resolution_failure_name = lint::builtin::INTRA_DOC_LINK_RESOLUTION_FAILURE.name;
2018-07-05 20:06:33 +02:00
let missing_docs = rustc_lint::builtin::MISSING_DOCS.name;
let missing_doc_example = rustc_lint::builtin::MISSING_DOC_CODE_EXAMPLES.name;
2018-10-26 00:55:12 +02:00
let private_doc_tests = rustc_lint::builtin::PRIVATE_DOC_TESTS.name;
2020-03-22 13:04:23 +01:00
let no_crate_level_docs = rustc_lint::builtin::MISSING_CRATE_LEVEL_DOCS.name;
let invalid_codeblock_attribute_name = rustc_lint::builtin::INVALID_CODEBLOCK_ATTRIBUTES.name;
2018-07-11 00:36:31 +02:00
// In addition to those specific lints, we also need to allow those given through
2018-07-11 00:36:31 +02:00
// command line, otherwise they'll get ignored and we don't want that.
let allowed_lints = vec![
2019-12-22 17:42:04 -05:00
intra_link_resolution_failure_name.to_owned(),
missing_docs.to_owned(),
missing_doc_example.to_owned(),
private_doc_tests.to_owned(),
2020-03-22 13:04:23 +01:00
no_crate_level_docs.to_owned(),
invalid_codeblock_attribute_name.to_owned(),
2019-12-22 17:42:04 -05:00
];
2018-07-11 00:36:31 +02:00
let (lint_opts, lint_caps) = init_lints(allowed_lints, lint_opts, |lint| {
2020-04-26 14:07:13 +02:00
if lint.name == intra_link_resolution_failure_name
|| lint.name == invalid_codeblock_attribute_name
{
None
} else {
Some((lint.name_lower(), lint::Allow))
}
});
let crate_types =
if proc_macro_crate { vec![CrateType::ProcMacro] } else { vec![CrateType::Rlib] };
// plays with error output here!
let sessopts = config::Options {
maybe_sysroot,
search_paths: libs,
crate_types,
2019-12-22 17:42:04 -05:00
lint_opts: if !display_warnings { lint_opts } else { vec![] },
lint_cap: Some(lint_cap.unwrap_or_else(|| lint::Forbid)),
cg: codegen_options,
externs,
target_triple: target,
unstable_features: UnstableFeatures::from_environment(),
actually_rustdoc: true,
2019-06-08 19:06:58 +09:00
debugging_opts: debugging_options,
error_format,
2018-04-20 14:47:23 -07:00
edition,
describe_lints,
2018-07-26 12:36:11 -06:00
..Options::default()
2013-08-15 16:28:54 -04:00
};
let config = interface::Config {
opts: sessopts,
2019-10-11 23:48:16 +02:00
crate_cfg: interface::parse_cfgspecs(cfgs),
input,
input_path: cpath,
output_file: None,
output_dir: None,
file_loader: None,
diagnostic_output: DiagnosticOutput::Default,
stderr: None,
crate_name,
lint_caps,
register_lints: None,
override_queries: Some(|_sess, local_providers, external_providers| {
local_providers.lint_mod = |_, _| {};
external_providers.lint_mod = |_, _| {};
local_providers.typeck_tables_of = move |tcx, def_id| {
// Closures' tables come from their outermost function,
// as they are part of the same "inference environment".
// This avoids emitting errors for the parent twice (see similar code in `typeck_tables_of_with_fallback`)
let outer_def_id = tcx.closure_base_def_id(def_id.to_def_id()).expect_local();
if outer_def_id != def_id {
return tcx.typeck_tables_of(outer_def_id);
}
let hir = tcx.hir();
let body = hir.body(hir.body_owned_by(hir.as_local_hir_id(def_id)));
debug!("visiting body for {:?}", def_id);
EmitIgnoredResolutionErrors::new(&tcx.sess, hir).visit_body(body);
2020-07-09 22:11:15 -04:00
DEFAULT_TYPECK.with(|typeck| typeck(tcx, def_id))
};
}),
2019-11-15 19:41:50 +01:00
registry: rustc_driver::diagnostics_registry(),
};
2018-04-26 00:49:52 +02:00
interface::create_compiler_and_run(config, |compiler| {
2019-12-22 17:42:04 -05:00
compiler.enter(|queries| {
let sess = compiler.session();
// We need to hold on to the complete resolver, so we cause everything to be
// cloned for the analysis passes to use. Suboptimal, but necessary in the
// current architecture.
let resolver = {
let parts = abort_on_err(queries.expansion(), sess).peek();
let resolver = parts.1.borrow();
// Before we actually clone it, let's force all the extern'd crates to
// actually be loaded, just in case they're only referred to inside
// intra-doc-links
resolver.borrow_mut().access(|resolver| {
for extern_name in &extern_names {
resolver
.resolve_str_path_error(
DUMMY_SP,
extern_name,
TypeNS,
LocalDefId { local_def_index: CRATE_DEF_INDEX },
)
2019-12-22 17:42:04 -05:00
.unwrap_or_else(|()| {
panic!("Unable to resolve external crate {}", extern_name)
});
}
});
2019-12-22 17:42:04 -05:00
// Now we're good to clone the resolver because everything should be loaded
resolver.clone()
2019-11-26 12:16:36 +01:00
};
2019-12-22 17:42:04 -05:00
if sess.has_errors() {
sess.fatal("Compilation failed, aborting rustdoc");
}
2019-11-26 12:16:36 +01:00
2019-12-22 17:42:04 -05:00
let mut global_ctxt = abort_on_err(queries.global_ctxt(), sess).take();
global_ctxt.enter(|tcx| {
sess.time("missing_docs", || {
rustc_lint::check_crate(tcx, rustc_lint::builtin::MissingDoc::new);
});
2019-12-22 17:42:04 -05:00
let access_levels = tcx.privacy_access_levels(LOCAL_CRATE);
// Convert from a HirId set to a DefId set since we don't always have easy access
// to the map from defid -> hirid
let access_levels = AccessLevels {
map: access_levels
.map
.iter()
.map(|(&k, &v)| (tcx.hir().local_def_id(k).to_def_id(), v))
2019-12-22 17:42:04 -05:00
.collect(),
};
let mut renderinfo = RenderInfo::default();
renderinfo.access_levels = access_levels;
renderinfo.output_format = output_format;
2019-12-22 17:42:04 -05:00
let mut ctxt = DocContext {
tcx,
resolver,
external_traits: Default::default(),
active_extern_traits: Default::default(),
renderinfo: RefCell::new(renderinfo),
ty_substs: Default::default(),
lt_substs: Default::default(),
ct_substs: Default::default(),
impl_trait_bounds: Default::default(),
fake_def_ids: Default::default(),
all_fake_def_ids: Default::default(),
generated_synthetics: Default::default(),
auto_traits: tcx
.all_traits(LOCAL_CRATE)
.iter()
.cloned()
.filter(|trait_def_id| tcx.trait_is_auto(*trait_def_id))
.collect(),
render_options,
2019-12-22 17:42:04 -05:00
};
debug!("crate: {:?}", tcx.hir().krate());
let mut krate = clean::krate(&mut ctxt);
if let Some(ref m) = krate.module {
2020-02-11 13:16:38 +01:00
if let None | Some("") = m.doc_value() {
2020-02-12 15:48:08 +01:00
let help = "The following guide may be of use:\n\
https://doc.rust-lang.org/nightly/rustdoc/how-to-write-documentation\
.html";
tcx.struct_lint_node(
2020-03-22 13:04:23 +01:00
rustc_lint::builtin::MISSING_CRATE_LEVEL_DOCS,
2020-02-11 13:16:38 +01:00
ctxt.as_local_hir_id(m.def_id).unwrap(),
2020-02-12 15:48:08 +01:00
|lint| {
let mut diag = lint.build(
"no documentation found for this crate's top-level module",
);
diag.help(help);
diag.emit();
},
2020-02-11 13:16:38 +01:00
);
}
}
fn report_deprecated_attr(name: &str, diag: &rustc_errors::Handler) {
2019-12-22 17:42:04 -05:00
let mut msg = diag.struct_warn(&format!(
"the `#![doc({})]` attribute is considered deprecated",
2019-12-22 17:42:04 -05:00
name
));
2020-02-07 13:06:35 +01:00
msg.warn(
"see issue #44136 <https://github.com/rust-lang/rust/issues/44136> \
for more information",
);
2019-12-22 17:42:04 -05:00
if name == "no_default_passes" {
msg.help("you may want to use `#![doc(document_private_items)]`");
}
2019-12-22 17:42:04 -05:00
msg.emit();
}
2019-12-22 17:42:04 -05:00
// Process all of the crate attributes, extracting plugin metadata along
// with the passes which we are supposed to run.
for attr in krate.module.as_ref().unwrap().attrs.lists(sym::doc) {
let diag = ctxt.sess().diagnostic();
let name = attr.name_or_empty();
if attr.is_word() {
if name == sym::no_default_passes {
report_deprecated_attr("no_default_passes", diag);
if default_passes == passes::DefaultPassOption::Default {
default_passes = passes::DefaultPassOption::None;
}
}
} else if let Some(value) = attr.value_str() {
let sink = match name {
sym::passes => {
report_deprecated_attr("passes = \"...\"", diag);
&mut manual_passes
}
sym::plugins => {
report_deprecated_attr("plugins = \"...\"", diag);
eprintln!(
"WARNING: `#![doc(plugins = \"...\")]` \
no longer functions; see CVE-2018-1000622"
);
continue;
}
_ => continue,
};
for name in value.as_str().split_whitespace() {
sink.push(name.to_string());
}
}
2019-12-22 17:42:04 -05:00
if attr.is_word() && name == sym::document_private_items {
ctxt.render_options.document_private = true;
2019-11-26 12:16:36 +01:00
}
}
let passes = passes::defaults(default_passes).iter().copied().chain(
2019-12-22 17:42:04 -05:00
manual_passes.into_iter().flat_map(|name| {
if let Some(pass) = passes::find_pass(&name) {
Some(ConditionalPass::always(pass))
2019-12-22 17:42:04 -05:00
} else {
error!("unknown pass {}, skipping", name);
None
}
}),
);
2019-12-22 17:42:04 -05:00
info!("Executing passes");
for p in passes {
let run = match p.condition {
Always => true,
WhenDocumentPrivate => ctxt.render_options.document_private,
WhenNotDocumentPrivate => !ctxt.render_options.document_private,
WhenNotDocumentHidden => !ctxt.render_options.document_hidden,
};
if run {
debug!("running pass {}", p.pass.name);
krate = (p.pass.run)(krate, &ctxt);
}
2019-12-22 17:42:04 -05:00
}
2019-12-22 17:42:04 -05:00
ctxt.sess().abort_if_errors();
(krate, ctxt.renderinfo.into_inner(), ctxt.render_options)
2019-12-22 17:42:04 -05:00
})
})
2019-12-22 17:42:04 -05:00
})
2013-08-15 16:28:54 -04:00
}
use rustc_hir::def::Res;
use rustc_hir::{
intravisit::{NestedVisitorMap, Visitor},
Path,
};
use rustc_middle::hir::map::Map;
thread_local!(static DEFAULT_TYPECK: for<'tcx> fn(rustc_middle::ty::TyCtxt<'tcx>, rustc_span::def_id::LocalDefId) -> &'tcx rustc_middle::ty::TypeckTables<'tcx> = {
let mut providers = rustc_middle::ty::query::Providers::default();
rustc_typeck::provide(&mut providers);
providers.typeck_tables_of
});
/// Due to https://github.com/rust-lang/rust/pull/73566,
/// the name resolution pass may find errors that are never emitted.
/// If typeck is called after this happens, then we'll get an ICE:
/// 'Res::Error found but not reported'. To avoid this, emit the errors now.
struct EmitIgnoredResolutionErrors<'a, 'hir> {
session: &'a Session,
hir_map: Map<'hir>,
}
impl<'a, 'hir> EmitIgnoredResolutionErrors<'a, 'hir> {
fn new(session: &'a Session, hir_map: Map<'hir>) -> Self {
Self { session, hir_map }
}
}
impl<'hir> Visitor<'hir> for EmitIgnoredResolutionErrors<'_, 'hir> {
type Map = Map<'hir>;
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
// We need to recurse into nested closures,
// since those will fallback to the parent for type checking.
NestedVisitorMap::OnlyBodies(self.hir_map)
}
fn visit_path(&mut self, path: &'v Path<'v>, _id: HirId) {
log::debug!("visiting path {:?}", path);
if path.res == Res::Err {
// We have less context here than in rustc_resolve,
// so we can only emit the name and span.
// However we can give a hint that rustc_resolve will have more info.
// NOTE: this is a very rare case (only 4 out of several hundred thousand crates in a crater run)
// NOTE: so it's ok for it to be slow
let label = format!(
"could not resolve path `{}`",
path.segments
.iter()
.map(|segment| segment.ident.as_str().to_string())
.collect::<Vec<_>>()
.join("::")
);
let mut err = rustc_errors::struct_span_err!(
self.session,
path.span,
E0433,
"failed to resolve: {}",
label
);
err.span_label(path.span, label);
err.note("this error was originally ignored because you are running `rustdoc`");
err.note("try running again with `rustc` and you may get a more detailed error");
err.emit();
}
// NOTE: this does _not_ visit the path segments
}
}
/// `DefId` or parameter index (`ty::ParamTy.index`) of a synthetic type parameter
/// for `impl Trait` in argument position.
#[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub enum ImplTraitParam {
DefId(DefId),
ParamIndex(u32),
}
impl From<DefId> for ImplTraitParam {
fn from(did: DefId) -> Self {
ImplTraitParam::DefId(did)
}
}
impl From<u32> for ImplTraitParam {
fn from(idx: u32) -> Self {
ImplTraitParam::ParamIndex(idx)
}
}