From 7f6e5de37c3c5a73865350cab1c976291be56fe2 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 11 Jul 2020 03:41:52 +0200 Subject: disable profiling --- crates/ra_hir_ty/src/infer.rs | 5 ----- crates/ra_ide/src/completion.rs | 1 - crates/ra_prof/Cargo.toml | 2 +- 3 files changed, 1 insertion(+), 7 deletions(-) (limited to 'crates') diff --git a/crates/ra_hir_ty/src/infer.rs b/crates/ra_hir_ty/src/infer.rs index d8888e050..5c56c2eb0 100644 --- a/crates/ra_hir_ty/src/infer.rs +++ b/crates/ra_hir_ty/src/infer.rs @@ -65,11 +65,6 @@ mod coerce; /// The entry point of type inference. pub(crate) fn infer_query(db: &dyn HirDatabase, def: DefWithBodyId) -> Arc { let _p = profile("infer_query"); - let _cpu_profieler; - if ra_prof::Scope::is_active() { - _cpu_profieler = ra_prof::cpu_profiler(); - } - let resolver = def.resolver(db.upcast()); let mut ctx = InferenceContext::new(db, def, resolver); diff --git a/crates/ra_ide/src/completion.rs b/crates/ra_ide/src/completion.rs index 2a285718e..f3a5e9573 100644 --- a/crates/ra_ide/src/completion.rs +++ b/crates/ra_ide/src/completion.rs @@ -106,7 +106,6 @@ pub(crate) fn completions( config: &CompletionConfig, position: FilePosition, ) -> Option { - let _s = ra_prof::Scope::enter(); let ctx = CompletionContext::new(db, position, config)?; let mut acc = Completions::default(); diff --git a/crates/ra_prof/Cargo.toml b/crates/ra_prof/Cargo.toml index db9b59ed6..eabfcebb0 100644 --- a/crates/ra_prof/Cargo.toml +++ b/crates/ra_prof/Cargo.toml @@ -24,4 +24,4 @@ cpu_profiler = [] # Uncomment to enable for the whole crate graph # default = [ "backtrace" ] # default = [ "jemalloc" ] -default = [ "cpu_profiler" ] +# default = [ "cpu_profiler" ] -- cgit v1.2.3