Skip to content

Commit 6b733ea

Browse files
bors[bot]matklad
andauthored
Merge #9743
9743: internal: a bit of completion profiling r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
2 parents 3236845 + a5049e1 commit 6b733ea

File tree

2 files changed

+33
-8
lines changed

2 files changed

+33
-8
lines changed

crates/ide_completion/src/render/function.rs

+16-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use hir::{AsAssocItem, HasSource, HirDisplay};
44
use ide_db::SymbolKind;
55
use itertools::Itertools;
6-
use syntax::ast::Fn;
6+
use syntax::ast;
77

88
use crate::{
99
item::{CompletionItem, CompletionItemKind, CompletionKind, CompletionRelevance, ImportEdit},
@@ -40,7 +40,21 @@ struct FunctionRender<'a> {
4040
name: String,
4141
receiver: Option<hir::Name>,
4242
func: hir::Function,
43-
ast_node: Fn,
43+
/// NB: having `ast::Fn` here might or might not be a good idea. The problem
44+
/// with it is that, to get an `ast::`, you want to parse the corresponding
45+
/// source file. So, when flyimport completions suggest a bunch of
46+
/// functions, we spend quite some time parsing many files.
47+
///
48+
/// We need ast because we want to access parameter names (patterns). We can
49+
/// add them to the hir of the function itself, but parameter names are not
50+
/// something hir cares otherwise.
51+
///
52+
/// Alternatively we can reconstruct params from the function body, but that
53+
/// would require parsing anyway.
54+
///
55+
/// It seems that just using `ast` is the best choice -- most of parses
56+
/// should be cached anyway.
57+
ast_node: ast::Fn,
4458
is_method: bool,
4559
}
4660

crates/profile/src/hprof.rs

+17-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
use std::{
33
cell::RefCell,
44
collections::{BTreeMap, HashSet},
5-
env,
5+
env, fmt,
66
io::{stderr, Write},
77
sync::{
88
atomic::{AtomicBool, Ordering},
@@ -278,9 +278,9 @@ fn print(
278278
let detail = tree[curr].detail.as_ref().map(|it| format!(" @ {}", it)).unwrap_or_default();
279279
writeln!(
280280
out,
281-
"{}{:5}ms - {}{}",
281+
"{}{} - {}{}",
282282
current_indent,
283-
tree[curr].duration.as_millis(),
283+
ms(tree[curr].duration),
284284
tree[curr].label,
285285
detail,
286286
)
@@ -302,14 +302,25 @@ fn print(
302302
}
303303

304304
for (child_msg, (duration, count)) in short_children.iter() {
305-
let millis = duration.as_millis();
306-
writeln!(out, " {}{:5}ms - {} ({} calls)", current_indent, millis, child_msg, count)
305+
writeln!(out, " {}{} - {} ({} calls)", current_indent, ms(*duration), child_msg, count)
307306
.expect("printing profiling info");
308307
}
309308

310309
let unaccounted = tree[curr].duration - accounted_for;
311310
if tree.children(curr).next().is_some() && unaccounted > longer_than {
312-
writeln!(out, " {}{:5}ms - ???", current_indent, unaccounted.as_millis())
311+
writeln!(out, " {}{} - ???", current_indent, ms(unaccounted))
313312
.expect("printing profiling info");
314313
}
315314
}
315+
316+
#[allow(non_camel_case_types)]
317+
struct ms(Duration);
318+
319+
impl fmt::Display for ms {
320+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
321+
match self.0.as_millis() {
322+
0 => f.write_str(" 0 "),
323+
n => write!(f, "{:5}ms", n),
324+
}
325+
}
326+
}

0 commit comments

Comments
 (0)