aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src
diff options
context:
space:
mode:
authorMichal Terepeta <[email protected]>2020-01-03 12:59:46 +0000
committerMichal Terepeta <[email protected]>2020-01-03 12:59:46 +0000
commit7cd6f12926295476d162e21e315ee72671985cd2 (patch)
tree56f4a050e3c9b57d829a7ff9998a939bee4cd480 /crates/ra_ide/src
parente423cfe383a4a1f9f0b5459810587d50bf2a2b2d (diff)
Split `crate_def_map` into two methods
This change: - introduces `compute_crate_def_map` query and renames `CrateDefMap::crate_def_map_query` for consistency, - annotates `crate_def_map` as `salsa::transparent` and adds a top-level `crate_def_map` wrapper function around that starts the profiler and immediately calls into `compute_crate_def_map` query. This allows us to better understand where we spent the time, in particular, how much is spent in the recomputaiton and how much in salsa. Example output (where we don't actually re-compute anything, but the query still takes a non-trivial amount of time): ``` 211ms - handle_inlay_hints 150ms - get_inlay_hints 150ms - SourceAnalyzer::new 65ms - def_with_body_from_child_node 65ms - analyze_container 65ms - analyze_container 65ms - Module::from_definition 65ms - Module::from_file 65ms - crate_def_map 1ms - parse_macro_query (6 calls) 0ms - raw_items_query (1 calls) 64ms - ??? ``` Signed-off-by: Michal Terepeta <[email protected]>
Diffstat (limited to 'crates/ra_ide/src')
-rw-r--r--crates/ra_ide/src/change.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide/src/change.rs b/crates/ra_ide/src/change.rs
index 387a9cafb..4585bf522 100644
--- a/crates/ra_ide/src/change.rs
+++ b/crates/ra_ide/src/change.rs
@@ -309,7 +309,7 @@ impl RootDatabase {
309 hir::db::EnumDataQuery 309 hir::db::EnumDataQuery
310 hir::db::TraitDataQuery 310 hir::db::TraitDataQuery
311 hir::db::RawItemsQuery 311 hir::db::RawItemsQuery
312 hir::db::CrateDefMapQuery 312 hir::db::ComputeCrateDefMapQuery
313 hir::db::GenericParamsQuery 313 hir::db::GenericParamsQuery
314 hir::db::FunctionDataQuery 314 hir::db::FunctionDataQuery
315 hir::db::TypeAliasDataQuery 315 hir::db::TypeAliasDataQuery