-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rustdoc: calculate visibility on-demand #91408
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ use rustc_data_structures::fx::{FxHashMap, FxHashSet}; | |
use rustc_data_structures::thin_vec::ThinVec; | ||
use rustc_hir as hir; | ||
use rustc_hir::def::{CtorKind, DefKind, Res}; | ||
use rustc_hir::def_id::{CrateNum, DefId, DefIndex, CRATE_DEF_INDEX, LOCAL_CRATE}; | ||
use rustc_hir::def_id::{CrateNum, DefId, DefIndex, LocalDefId, CRATE_DEF_INDEX, LOCAL_CRATE}; | ||
use rustc_hir::lang_items::LangItem; | ||
use rustc_hir::{BodyId, Mutability}; | ||
use rustc_index::vec::IndexVec; | ||
|
@@ -32,10 +32,10 @@ use rustc_target::abi::VariantIdx; | |
use rustc_target::spec::abi::Abi; | ||
|
||
use crate::clean::cfg::Cfg; | ||
use crate::clean::external_path; | ||
use crate::clean::inline::{self, print_inlined_const}; | ||
use crate::clean::utils::{is_literal_expr, print_const_expr, print_evaluated_const}; | ||
use crate::clean::Clean; | ||
use crate::clean::{external_path, is_field_vis_inherited}; | ||
use crate::core::DocContext; | ||
use crate::formats::cache::Cache; | ||
use crate::formats::item_type::ItemType; | ||
|
@@ -348,12 +348,12 @@ crate struct Item { | |
/// Optional because not every item has a name, e.g. impls. | ||
crate name: Option<Symbol>, | ||
crate attrs: Box<Attributes>, | ||
crate visibility: Visibility, | ||
/// Information about this item that is specific to what kind of item it is. | ||
/// E.g., struct vs enum vs function. | ||
crate kind: Box<ItemKind>, | ||
crate def_id: ItemId, | ||
|
||
/// If this item was inlined, the DefId of the `use` statement. | ||
crate inline_stmt_id: Option<DefId>, | ||
crate cfg: Option<Arc<Cfg>>, | ||
} | ||
|
||
|
@@ -388,6 +388,42 @@ impl Item { | |
self.def_id.as_def_id().map(|did| tcx.get_attrs(did).inner_docs()).unwrap_or(false) | ||
} | ||
|
||
crate fn visibility(&self, tcx: TyCtxt<'_>) -> Visibility { | ||
let mut def_id = match self.def_id { | ||
// Anything but DefId *shouldn't* matter, but return a reasonable value anyway. | ||
ItemId::Auto { .. } | ItemId::Blanket { .. } => return Visibility::Inherited, | ||
ItemId::Primitive(..) => return Visibility::Public, | ||
ItemId::DefId(did) => did, | ||
}; | ||
match *self.kind { | ||
// Variant fields inherit their enum's visibility. | ||
StructFieldItem(..) if is_field_vis_inherited(tcx, def_id) => { | ||
return Visibility::Inherited; | ||
} | ||
// Variants always inherit visibility | ||
VariantItem(..) => return Visibility::Inherited, | ||
// Return the visibility of `extern crate` statement, not the crate itself (which will always be public). | ||
ExternCrateItem { crate_stmt_id, .. } => def_id = crate_stmt_id.to_def_id(), | ||
// Trait items inherit the trait's visibility | ||
AssocConstItem(..) | AssocTypeItem(..) | TyMethodItem(..) | MethodItem(..) => { | ||
let is_trait_item = match tcx.associated_item(def_id).container { | ||
ty::TraitContainer(_) => true, | ||
ty::ImplContainer(impl_id) => tcx.impl_trait_ref(impl_id).is_some(), | ||
}; | ||
if is_trait_item { | ||
return Visibility::Inherited; | ||
} | ||
} | ||
_ => {} | ||
} | ||
// If this item was inlined, show the visibility of the `use` statement, not the definition. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't seem quite correct. Take this code for example: // crate a
pub struct S {
pub x: i32,
y: i32,
}
// crate b
pub(crate) use a::S; If pub(crate) struct S {
pub(crate) x: i32,
y: i32,
} But with your change, I think it will look like this: pub(crate) struct S {
pub(crate) x: i32,
pub(crate) y: i32,
} Can you test that code (or a variant of it to get the inlining to happen) before and after this change to check? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Or perhaps this won't happen because inlining doesn't occur for struct fields? But I feel like this sort of bug could probably occur with other items. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is exactly the same behavior as before, whatever that happened to be. I just moved the logic from There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. also, I don't think this can happen for struct fields because you can't import them directly, only the struct itself. Enum variants can be imported, but they're special-cased earlier anyway. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I couldn't get There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Ah, I see. |
||
let def_id = match self.inline_stmt_id { | ||
Some(inlined) => inlined, | ||
None => def_id, | ||
}; | ||
Comment on lines
+420
to
+423
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't this check be done before the big There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, because then all the uses of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. also I'm not sure what you mean by extra work - this isn't doing an early return, it's just reassigning There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What I'm suggesting is changing this to be an early return. What's the point of calculating |
||
super::clean_vis(tcx.visibility(def_id)) | ||
} | ||
|
||
crate fn span(&self, tcx: TyCtxt<'_>) -> Span { | ||
let kind = match &*self.kind { | ||
ItemKind::StrippedItem(k) => k, | ||
|
@@ -443,7 +479,6 @@ impl Item { | |
name, | ||
kind, | ||
box ast_attrs.clean(cx), | ||
cx, | ||
ast_attrs.cfg(cx.tcx, &cx.cache.hidden_cfg), | ||
) | ||
} | ||
|
@@ -453,19 +488,11 @@ impl Item { | |
name: Option<Symbol>, | ||
kind: ItemKind, | ||
attrs: Box<Attributes>, | ||
cx: &mut DocContext<'_>, | ||
cfg: Option<Arc<Cfg>>, | ||
) -> Item { | ||
trace!("name={:?}, def_id={:?}", name, def_id); | ||
|
||
Item { | ||
def_id: def_id.into(), | ||
kind: box kind, | ||
name, | ||
attrs, | ||
visibility: cx.tcx.visibility(def_id).clean(cx), | ||
cfg, | ||
} | ||
Item { def_id: def_id.into(), kind: box kind, name, attrs, cfg, inline_stmt_id: None } | ||
} | ||
|
||
/// Finds all `doc` attributes as NameValues and returns their corresponding values, joined | ||
|
@@ -640,6 +667,8 @@ crate enum ItemKind { | |
ExternCrateItem { | ||
/// The crate's name, *not* the name it's imported as. | ||
src: Option<Symbol>, | ||
/// The id of the `extern crate` statement, not the crate itself. | ||
crate_stmt_id: LocalDefId, | ||
Comment on lines
+670
to
+671
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why can't this use |
||
}, | ||
ImportItem(Import), | ||
StructItem(Struct), | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
boooooo