-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
rustc: factor out most of hir::def::Def's variants into DefKind, and rename to Res. #60462
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ use syntax::ext::base::MacroKind; | |
use syntax_pos::{Span, DUMMY_SP}; | ||
|
||
use crate::hir::*; | ||
use crate::hir::DefKind; | ||
use crate::hir::itemlikevisit::ItemLikeVisitor; | ||
use crate::hir::print::Nested; | ||
use crate::util::nodemap::FxHashMap; | ||
|
@@ -309,74 +310,68 @@ impl<'hir> Map<'hir> { | |
self.definitions.as_local_node_id(def_id.to_def_id()).unwrap() | ||
} | ||
|
||
pub fn describe_def(&self, node_id: NodeId) -> Option<Def> { | ||
fn def_kind(&self, node_id: NodeId) -> Option<DefKind> { | ||
let node = if let Some(node) = self.find(node_id) { | ||
node | ||
} else { | ||
return None | ||
}; | ||
|
||
match node { | ||
Some(match node { | ||
Node::Item(item) => { | ||
let def_id = || self.local_def_id_from_hir_id(item.hir_id); | ||
|
||
match item.node { | ||
ItemKind::Static(..) => Some(Def::Static(def_id())), | ||
ItemKind::Const(..) => Some(Def::Const(def_id())), | ||
ItemKind::Fn(..) => Some(Def::Fn(def_id())), | ||
ItemKind::Mod(..) => Some(Def::Mod(def_id())), | ||
ItemKind::Existential(..) => Some(Def::Existential(def_id())), | ||
ItemKind::Ty(..) => Some(Def::TyAlias(def_id())), | ||
ItemKind::Enum(..) => Some(Def::Enum(def_id())), | ||
ItemKind::Struct(..) => Some(Def::Struct(def_id())), | ||
ItemKind::Union(..) => Some(Def::Union(def_id())), | ||
ItemKind::Trait(..) => Some(Def::Trait(def_id())), | ||
ItemKind::TraitAlias(..) => Some(Def::TraitAlias(def_id())), | ||
ItemKind::Static(..) => DefKind::Static, | ||
ItemKind::Const(..) => DefKind::Const, | ||
ItemKind::Fn(..) => DefKind::Fn, | ||
ItemKind::Mod(..) => DefKind::Mod, | ||
ItemKind::Existential(..) => DefKind::Existential, | ||
ItemKind::Ty(..) => DefKind::TyAlias, | ||
ItemKind::Enum(..) => DefKind::Enum, | ||
ItemKind::Struct(..) => DefKind::Struct, | ||
ItemKind::Union(..) => DefKind::Union, | ||
ItemKind::Trait(..) => DefKind::Trait, | ||
ItemKind::TraitAlias(..) => DefKind::TraitAlias, | ||
ItemKind::ExternCrate(_) | | ||
ItemKind::Use(..) | | ||
ItemKind::ForeignMod(..) | | ||
ItemKind::GlobalAsm(..) | | ||
ItemKind::Impl(..) => None, | ||
ItemKind::Impl(..) => return None, | ||
} | ||
} | ||
Node::ForeignItem(item) => { | ||
let def_id = self.local_def_id_from_hir_id(item.hir_id); | ||
match item.node { | ||
ForeignItemKind::Fn(..) => Some(Def::Fn(def_id)), | ||
ForeignItemKind::Static(..) => Some(Def::Static(def_id)), | ||
ForeignItemKind::Type => Some(Def::ForeignTy(def_id)), | ||
ForeignItemKind::Fn(..) => DefKind::Fn, | ||
ForeignItemKind::Static(..) => DefKind::Static, | ||
ForeignItemKind::Type => DefKind::ForeignTy, | ||
} | ||
} | ||
Node::TraitItem(item) => { | ||
let def_id = self.local_def_id_from_hir_id(item.hir_id); | ||
match item.node { | ||
TraitItemKind::Const(..) => Some(Def::AssociatedConst(def_id)), | ||
TraitItemKind::Method(..) => Some(Def::Method(def_id)), | ||
TraitItemKind::Type(..) => Some(Def::AssociatedTy(def_id)), | ||
TraitItemKind::Const(..) => DefKind::AssociatedConst, | ||
TraitItemKind::Method(..) => DefKind::Method, | ||
TraitItemKind::Type(..) => DefKind::AssociatedTy, | ||
} | ||
} | ||
Node::ImplItem(item) => { | ||
let def_id = self.local_def_id_from_hir_id(item.hir_id); | ||
match item.node { | ||
ImplItemKind::Const(..) => Some(Def::AssociatedConst(def_id)), | ||
ImplItemKind::Method(..) => Some(Def::Method(def_id)), | ||
ImplItemKind::Type(..) => Some(Def::AssociatedTy(def_id)), | ||
ImplItemKind::Existential(..) => Some(Def::AssociatedExistential(def_id)), | ||
ImplItemKind::Const(..) => DefKind::AssociatedConst, | ||
ImplItemKind::Method(..) => DefKind::Method, | ||
ImplItemKind::Type(..) => DefKind::AssociatedTy, | ||
ImplItemKind::Existential(..) => DefKind::AssociatedExistential, | ||
} | ||
} | ||
Node::Variant(variant) => { | ||
let def_id = self.local_def_id_from_hir_id(variant.node.id); | ||
Some(Def::Variant(def_id)) | ||
} | ||
Node::Variant(_) => DefKind::Variant, | ||
Node::Ctor(variant_data) => { | ||
// FIXME(eddyb) is this even possible, if we have a `Node::Ctor`? | ||
if variant_data.ctor_hir_id().is_none() { | ||
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. Insert an assert to find out? |
||
return None; | ||
} | ||
let ctor_of = match self.find(self.get_parent_node(node_id)) { | ||
Some(Node::Item(..)) => def::CtorOf::Struct, | ||
Some(Node::Variant(..)) => def::CtorOf::Variant, | ||
_ => unreachable!(), | ||
}; | ||
variant_data.ctor_hir_id() | ||
.map(|hir_id| self.local_def_id_from_hir_id(hir_id)) | ||
.map(|def_id| Def::Ctor(def_id, ctor_of, def::CtorKind::from_hir(variant_data))) | ||
DefKind::Ctor(ctor_of, def::CtorKind::from_hir(variant_data)) | ||
} | ||
Node::AnonConst(_) | | ||
Node::Field(_) | | ||
|
@@ -387,35 +382,20 @@ impl<'hir> Map<'hir> { | |
Node::TraitRef(_) | | ||
Node::Pat(_) | | ||
Node::Binding(_) | | ||
Node::Local(_) | | ||
Node::Lifetime(_) | | ||
Node::Visibility(_) | | ||
Node::Block(_) | | ||
Node::Crate => None, | ||
Node::Local(local) => { | ||
Some(Def::Local(local.hir_id)) | ||
} | ||
Node::MacroDef(macro_def) => { | ||
Some(Def::Macro(self.local_def_id_from_hir_id(macro_def.hir_id), | ||
MacroKind::Bang)) | ||
} | ||
Node::Crate => return None, | ||
Node::MacroDef(_) => DefKind::Macro(MacroKind::Bang), | ||
Node::GenericParam(param) => { | ||
Some(match param.kind { | ||
GenericParamKind::Lifetime { .. } => { | ||
Def::Local(param.hir_id) | ||
}, | ||
GenericParamKind::Type { .. } => Def::TyParam( | ||
self.local_def_id_from_hir_id(param.hir_id)), | ||
GenericParamKind::Const { .. } => Def::ConstParam( | ||
self.local_def_id_from_hir_id(param.hir_id)), | ||
}) | ||
match param.kind { | ||
GenericParamKind::Lifetime { .. } => return None, | ||
GenericParamKind::Type { .. } => DefKind::TyParam, | ||
GenericParamKind::Const { .. } => DefKind::ConstParam, | ||
} | ||
} | ||
} | ||
} | ||
|
||
// FIXME(@ljedrz): replace the NodeId variant | ||
pub fn describe_def_by_hir_id(&self, hir_id: HirId) -> Option<Def> { | ||
let node_id = self.hir_to_node_id(hir_id); | ||
self.describe_def(node_id) | ||
}) | ||
} | ||
|
||
fn entry_count(&self) -> usize { | ||
|
@@ -1473,11 +1453,11 @@ fn hir_id_to_string(map: &Map<'_>, id: HirId, include_id: bool) -> String { | |
node_id_to_string(map, node_id, include_id) | ||
} | ||
|
||
pub fn describe_def(tcx: TyCtxt<'_, '_, '_>, def_id: DefId) -> Option<Def> { | ||
pub fn def_kind(tcx: TyCtxt<'_, '_, '_>, def_id: DefId) -> Option<DefKind> { | ||
if let Some(node_id) = tcx.hir().as_local_node_id(def_id) { | ||
tcx.hir().describe_def(node_id) | ||
tcx.hir().def_kind(node_id) | ||
} else { | ||
bug!("Calling local describe_def query provider for upstream DefId: {:?}", | ||
bug!("Calling local def_kind query provider for upstream DefId: {:?}", | ||
def_id) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I was surprised that this worked and users of
describe_def
never needed theDefId
-less variants, but if it's called only from aDefId
-based query, then it's understandable.