Auto merge of #14857 - Veykril:perf, r=Veykril

internal: Shrink ProcMacroExpander from 8 to 4 bytes
This commit is contained in:
bors 2023-05-20 10:00:43 +00:00
commit 4de8c0980e
2 changed files with 14 additions and 11 deletions

View File

@ -7,20 +7,23 @@
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)] #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub struct ProcMacroExpander { pub struct ProcMacroExpander {
proc_macro_id: Option<ProcMacroId>, proc_macro_id: ProcMacroId,
} }
const DUMMY_ID: u32 = !0;
impl ProcMacroExpander { impl ProcMacroExpander {
pub fn new(proc_macro_id: ProcMacroId) -> Self { pub fn new(proc_macro_id: ProcMacroId) -> Self {
Self { proc_macro_id: Some(proc_macro_id) } assert_ne!(proc_macro_id.0, DUMMY_ID);
Self { proc_macro_id }
} }
pub fn dummy() -> Self { pub fn dummy() -> Self {
Self { proc_macro_id: None } Self { proc_macro_id: ProcMacroId(DUMMY_ID) }
} }
pub fn is_dummy(&self) -> bool { pub fn is_dummy(&self) -> bool {
self.proc_macro_id.is_none() self.proc_macro_id.0 == DUMMY_ID
} }
pub fn expand( pub fn expand(
@ -32,7 +35,10 @@ pub fn expand(
attr_arg: Option<&tt::Subtree>, attr_arg: Option<&tt::Subtree>,
) -> ExpandResult<tt::Subtree> { ) -> ExpandResult<tt::Subtree> {
match self.proc_macro_id { match self.proc_macro_id {
Some(id) => { ProcMacroId(DUMMY_ID) => {
ExpandResult::new(tt::Subtree::empty(), ExpandError::UnresolvedProcMacro(def_crate))
}
ProcMacroId(id) => {
let proc_macros = db.proc_macros(); let proc_macros = db.proc_macros();
let proc_macros = match proc_macros.get(&def_crate) { let proc_macros = match proc_macros.get(&def_crate) {
Some(Ok(proc_macros)) => proc_macros, Some(Ok(proc_macros)) => proc_macros,
@ -44,13 +50,13 @@ pub fn expand(
); );
} }
}; };
let proc_macro = match proc_macros.get(id.0 as usize) { let proc_macro = match proc_macros.get(id as usize) {
Some(proc_macro) => proc_macro, Some(proc_macro) => proc_macro,
None => { None => {
never!( never!(
"Proc macro index out of bounds: the length is {} but the index is {}", "Proc macro index out of bounds: the length is {} but the index is {}",
proc_macros.len(), proc_macros.len(),
id.0 id
); );
return ExpandResult::new( return ExpandResult::new(
tt::Subtree::empty(), tt::Subtree::empty(),
@ -81,9 +87,6 @@ pub fn expand(
}, },
} }
} }
None => {
ExpandResult::new(tt::Subtree::empty(), ExpandError::UnresolvedProcMacro(def_crate))
}
} }
} }
} }

View File

@ -50,7 +50,7 @@ pub fn original_range(&self, db: &dyn HirDatabase) -> FileRange {
pub fn original_name_range(&self, db: &dyn HirDatabase) -> Option<FileRange> { pub fn original_name_range(&self, db: &dyn HirDatabase) -> Option<FileRange> {
if let Some(file_id) = self.hir_file_id.file_id() { if let Some(file_id) = self.hir_file_id.file_id() {
// fast path to prevent parsing // fast path to prevent parsing
return Some(FileRange { file_id, range: self.ptr.text_range() }); return Some(FileRange { file_id, range: self.name_ptr.text_range() });
} }
let node = resolve_node(db, self.hir_file_id, &self.name_ptr); let node = resolve_node(db, self.hir_file_id, &self.name_ptr);
node.as_ref().original_file_range_opt(db.upcast()) node.as_ref().original_file_range_opt(db.upcast())