From ab49f762a94104125f5878e53a2725fe8f7ddaeb Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Mon, 5 Apr 2021 01:42:19 +0200 Subject: analysis-stats: allow skipping type inference This removes "noise" from memory profiles since it avoids lowering function bodies and types --- crates/rust-analyzer/src/bin/flags.rs | 3 ++ crates/rust-analyzer/src/bin/main.rs | 1 + crates/rust-analyzer/src/cli/analysis_stats.rs | 60 ++++++++++++++++---------- 3 files changed, 42 insertions(+), 22 deletions(-) diff --git a/crates/rust-analyzer/src/bin/flags.rs b/crates/rust-analyzer/src/bin/flags.rs index b05fc00b9..63953098a 100644 --- a/crates/rust-analyzer/src/bin/flags.rs +++ b/crates/rust-analyzer/src/bin/flags.rs @@ -71,6 +71,8 @@ xflags::xflags! { optional --load-output-dirs /// Use proc-macro-srv for proc-macro expanding. optional --with-proc-macro + /// Only resolve names, don't run type inference. + optional --skip-inference } cmd diagnostics @@ -158,6 +160,7 @@ pub struct AnalysisStats { pub no_sysroot: bool, pub load_output_dirs: bool, pub with_proc_macro: bool, + pub skip_inference: bool, } #[derive(Debug)] diff --git a/crates/rust-analyzer/src/bin/main.rs b/crates/rust-analyzer/src/bin/main.rs index 3b9b9e8b4..873e82c7b 100644 --- a/crates/rust-analyzer/src/bin/main.rs +++ b/crates/rust-analyzer/src/bin/main.rs @@ -78,6 +78,7 @@ fn try_main() -> Result<()> { path: cmd.path, load_output_dirs: cmd.load_output_dirs, with_proc_macro: cmd.with_proc_macro, + skip_inference: cmd.skip_inference, } .run(verbosity)?, diff --git a/crates/rust-analyzer/src/cli/analysis_stats.rs b/crates/rust-analyzer/src/cli/analysis_stats.rs index 9c59e7ee4..18fd7ea74 100644 --- a/crates/rust-analyzer/src/cli/analysis_stats.rs +++ b/crates/rust-analyzer/src/cli/analysis_stats.rs @@ -9,10 +9,11 @@ use std::{ use hir::{ db::{AstDatabase, DefDatabase, HirDatabase}, - AssocItem, Crate, HasSource, HirDisplay, ModuleDef, + AssocItem, Crate, Function, HasSource, HirDisplay, ModuleDef, }; use hir_def::FunctionId; use hir_ty::TypeWalk; +use ide::{AnalysisHost, RootDatabase}; use ide_db::base_db::{ salsa::{self, ParallelDatabase}, SourceDatabaseExt, @@ -24,6 +25,7 @@ use rayon::prelude::*; use rustc_hash::FxHashSet; use stdx::format_to; use syntax::AstNode; +use vfs::Vfs; use crate::cli::{ load_cargo::{load_workspace_at, LoadCargoConfig}, @@ -51,6 +53,7 @@ pub struct AnalysisStatsCmd { pub path: PathBuf, pub load_output_dirs: bool, pub with_proc_macro: bool, + pub skip_inference: bool, } impl AnalysisStatsCmd { @@ -128,6 +131,39 @@ impl AnalysisStatsCmd { shuffle(&mut rng, &mut funcs); } + if !self.skip_inference { + self.run_inference(&host, db, &vfs, &funcs, verbosity); + } + + let total_span = analysis_sw.elapsed(); + eprintln!("{:<20} {}", "Total:", total_span); + report_metric("total time", total_span.time.as_millis() as u64, "ms"); + if let Some(instructions) = total_span.instructions { + report_metric("total instructions", instructions, "#instr"); + } + if let Some(memory) = total_span.memory { + report_metric("total memory", memory.allocated.megabytes() as u64, "MB"); + } + + if env::var("RA_COUNT").is_ok() { + eprintln!("{}", profile::countme::get_all()); + } + + if self.memory_usage && verbosity.is_verbose() { + print_memory_usage(host, vfs); + } + + Ok(()) + } + + fn run_inference( + &self, + host: &AnalysisHost, + db: &RootDatabase, + vfs: &Vfs, + funcs: &[Function], + verbosity: Verbosity, + ) { let mut bar = match verbosity { Verbosity::Quiet | Verbosity::Spammy => ProgressReport::hidden(), _ if self.parallel => ProgressReport::hidden(), @@ -154,7 +190,7 @@ impl AnalysisStatsCmd { let mut num_exprs_unknown = 0; let mut num_exprs_partially_unknown = 0; let mut num_type_mismatches = 0; - for f in funcs { + for f in funcs.iter().copied() { let name = f.name(db); let full_name = f .module(db) @@ -296,26 +332,6 @@ impl AnalysisStatsCmd { report_metric("type mismatches", num_type_mismatches, "#"); eprintln!("{:<20} {}", "Inference:", inference_sw.elapsed()); - - let total_span = analysis_sw.elapsed(); - eprintln!("{:<20} {}", "Total:", total_span); - report_metric("total time", total_span.time.as_millis() as u64, "ms"); - if let Some(instructions) = total_span.instructions { - report_metric("total instructions", instructions, "#instr"); - } - if let Some(memory) = total_span.memory { - report_metric("total memory", memory.allocated.megabytes() as u64, "MB"); - } - - if env::var("RA_COUNT").is_ok() { - eprintln!("{}", profile::countme::get_all()); - } - - if self.memory_usage && verbosity.is_verbose() { - print_memory_usage(host, vfs); - } - - Ok(()) } fn stop_watch(&self) -> StopWatch { -- cgit v1.2.3