From af4d244462c17540ce91af6d42ccbd1b50ad756d Mon Sep 17 00:00:00 2001 From: Lukas Wirth Date: Fri, 5 Nov 2021 14:25:47 +0100 Subject: [PATCH] Cache ast::MacroCalls to their expansions in Semantics::descend_into_macros_impl --- crates/hir/src/semantics.rs | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/crates/hir/src/semantics.rs b/crates/hir/src/semantics.rs index 4f481613dd8..1acad1ae396 100644 --- a/crates/hir/src/semantics.rs +++ b/crates/hir/src/semantics.rs @@ -121,7 +121,10 @@ pub struct SemanticsImpl<'db> { pub db: &'db dyn HirDatabase, s2d_cache: RefCell, expansion_info_cache: RefCell>>, + // Rootnode to HirFileId cache cache: RefCell>, + // MacroCall to its expansion's HirFileId cache + macro_call_cache: RefCell, HirFileId>>, } impl fmt::Debug for Semantics<'_, DB> { @@ -396,6 +399,7 @@ fn new(db: &'db dyn HirDatabase) -> Self { s2d_cache: Default::default(), cache: Default::default(), expansion_info_cache: Default::default(), + macro_call_cache: Default::default(), } } @@ -554,6 +558,7 @@ fn descend_into_macros_impl(&self, token: SyntaxToken, mut f: impl FnMut(InFile< let sa = self.analyze(&parent); let mut stack: SmallVec<[_; 1]> = smallvec![InFile::new(sa.file_id, token)]; let mut cache = self.expansion_info_cache.borrow_mut(); + let mut mcache = self.macro_call_cache.borrow_mut(); let mut process_expansion_for_token = |stack: &mut SmallVec<_>, file_id, item, token: InFile<&_>| { @@ -582,14 +587,10 @@ fn descend_into_macros_impl(&self, token: SyntaxToken, mut f: impl FnMut(InFile< let was_not_remapped = (|| { // are we inside an attribute macro call let containing_attribute_macro_call = self.with_ctx(|ctx| { - token - .value - .ancestors() - .filter_map(ast::Item::cast) - .filter_map(|item| { - Some((ctx.item_to_macro_call(token.with_value(item.clone()))?, item)) - }) - .last() + token.value.ancestors().filter_map(ast::Item::cast).find_map(|item| { + // investigate this, seems to be VERY(250ms) expensive in rust-analyzer/src/config.rs? + Some((ctx.item_to_macro_call(token.with_value(item.clone()))?, item)) + }) }); if let Some((call_id, item)) = containing_attribute_macro_call { let file_id = call_id.as_file(); @@ -616,7 +617,15 @@ fn descend_into_macros_impl(&self, token: SyntaxToken, mut f: impl FnMut(InFile< return None; } - let file_id = sa.expand(self.db, token.with_value(¯o_call))?; + let mcall = token.with_value(macro_call); + let file_id = match mcache.get(&mcall) { + Some(&it) => it, + None => { + let it = sa.expand(self.db, mcall.as_ref())?; + mcache.insert(mcall, it); + it + } + }; return process_expansion_for_token(&mut stack, file_id, None, token.as_ref()); } -- 2.44.0