Skip to content

Commit 45b1e13

Browse files
committed
Auto merge of #17439 - Veykril:paralleler-prime-caches, r=Veykril
Properly prime all crate def maps in parallel_prime_caches
2 parents 13a4f23 + ffb00fd commit 45b1e13

File tree

2 files changed

+138
-35
lines changed

2 files changed

+138
-35
lines changed

src/tools/rust-analyzer/crates/hir-expand/src/fixup.rs

+122-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ pub(crate) fn fixup_syntax(
9191
preorder.skip_subtree();
9292
continue;
9393
}
94-
9594
// In some other situations, we can fix things by just appending some tokens.
9695
match_ast! {
9796
match node {
@@ -276,6 +275,62 @@ pub(crate) fn fixup_syntax(
276275
]);
277276
}
278277
},
278+
ast::RecordExprField(it) => {
279+
if let Some(colon) = it.colon_token() {
280+
if it.name_ref().is_some() {
281+
append.insert(colon.into(), vec![
282+
Leaf::Ident(Ident {
283+
text: "__ra_fixup".into(),
284+
span: fake_span(node_range)
285+
})
286+
]);
287+
}
288+
}
289+
},
290+
ast::Path(it) => {
291+
if let Some(colon) = it.coloncolon_token() {
292+
if it.segment().is_none() {
293+
append.insert(colon.into(), vec![
294+
Leaf::Ident(Ident {
295+
text: "__ra_fixup".into(),
296+
span: fake_span(node_range)
297+
})
298+
]);
299+
}
300+
}
301+
},
302+
ast::ArgList(it) => {
303+
if it.r_paren_token().is_none() {
304+
append.insert(node.into(), vec![
305+
Leaf::Punct(Punct {
306+
span: fake_span(node_range),
307+
char: ')',
308+
spacing: Spacing::Alone
309+
})
310+
]);
311+
}
312+
},
313+
ast::ArgList(it) => {
314+
if it.r_paren_token().is_none() {
315+
append.insert(node.into(), vec![
316+
Leaf::Punct(Punct {
317+
span: fake_span(node_range),
318+
char: ')',
319+
spacing: Spacing::Alone
320+
})
321+
]);
322+
}
323+
},
324+
ast::ClosureExpr(it) => {
325+
if it.body().is_none() {
326+
append.insert(node.into(), vec![
327+
Leaf::Ident(Ident {
328+
text: "__ra_fixup".into(),
329+
span: fake_span(node_range)
330+
})
331+
]);
332+
}
333+
},
279334
_ => (),
280335
}
281336
}
@@ -759,4 +814,70 @@ fn foo () {loop { }}
759814
"#]],
760815
)
761816
}
817+
818+
#[test]
819+
fn fixup_path() {
820+
check(
821+
r#"
822+
fn foo() {
823+
path::
824+
}
825+
"#,
826+
expect![[r#"
827+
fn foo () {path :: __ra_fixup}
828+
"#]],
829+
)
830+
}
831+
832+
#[test]
833+
fn fixup_record_ctor_field() {
834+
check(
835+
r#"
836+
fn foo() {
837+
R { f: }
838+
}
839+
"#,
840+
expect![[r#"
841+
fn foo () {R {f : __ra_fixup}}
842+
"#]],
843+
)
844+
}
845+
846+
#[test]
847+
fn fixup_arg_list() {
848+
check(
849+
r#"
850+
fn foo() {
851+
foo(a
852+
}
853+
"#,
854+
expect![[r#"
855+
fn foo () { foo ( a ) }
856+
"#]],
857+
);
858+
check(
859+
r#"
860+
fn foo() {
861+
bar.foo(a
862+
}
863+
"#,
864+
expect![[r#"
865+
fn foo () { bar . foo ( a ) }
866+
"#]],
867+
);
868+
}
869+
870+
#[test]
871+
fn fixup_closure() {
872+
check(
873+
r#"
874+
fn foo() {
875+
||
876+
}
877+
"#,
878+
expect![[r#"
879+
fn foo () {|| __ra_fixup}
880+
"#]],
881+
);
882+
}
762883
}

src/tools/rust-analyzer/crates/ide-db/src/prime_caches.rs

+16-34
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ use hir::db::DefDatabase;
1111
use crate::{
1212
base_db::{
1313
salsa::{Database, ParallelDatabase, Snapshot},
14-
Cancelled, CrateGraph, CrateId, SourceDatabase, SourceDatabaseExt,
14+
Cancelled, CrateId, SourceDatabase, SourceDatabaseExt,
1515
},
16-
FxHashSet, FxIndexMap, RootDatabase,
16+
FxIndexMap, RootDatabase,
1717
};
1818

1919
/// We're indexing many crates.
@@ -36,19 +36,10 @@ pub fn parallel_prime_caches(
3636

3737
let graph = db.crate_graph();
3838
let mut crates_to_prime = {
39-
let crate_ids = compute_crates_to_prime(db, &graph);
40-
4139
let mut builder = topologic_sort::TopologicalSortIter::builder();
4240

43-
for &crate_id in &crate_ids {
44-
let crate_data = &graph[crate_id];
45-
let dependencies = crate_data
46-
.dependencies
47-
.iter()
48-
.map(|d| d.crate_id)
49-
.filter(|i| crate_ids.contains(i));
50-
51-
builder.add(crate_id, dependencies);
41+
for crate_id in graph.iter() {
42+
builder.add(crate_id, graph[crate_id].dependencies.iter().map(|d| d.crate_id));
5243
}
5344

5445
builder.build()
@@ -62,27 +53,34 @@ pub fn parallel_prime_caches(
6253
let (work_sender, progress_receiver) = {
6354
let (progress_sender, progress_receiver) = crossbeam_channel::unbounded();
6455
let (work_sender, work_receiver) = crossbeam_channel::unbounded();
56+
let graph = graph.clone();
6557
let prime_caches_worker = move |db: Snapshot<RootDatabase>| {
6658
while let Ok((crate_id, crate_name)) = work_receiver.recv() {
6759
progress_sender
6860
.send(ParallelPrimeCacheWorkerProgress::BeginCrate { crate_id, crate_name })?;
6961

70-
// This also computes the DefMap
71-
db.import_map(crate_id);
62+
let file_id = graph[crate_id].root_file_id;
63+
let root_id = db.file_source_root(file_id);
64+
if db.source_root(root_id).is_library {
65+
db.crate_def_map(crate_id);
66+
} else {
67+
// This also computes the DefMap
68+
db.import_map(crate_id);
69+
}
7270

7371
progress_sender.send(ParallelPrimeCacheWorkerProgress::EndCrate { crate_id })?;
7472
}
7573

7674
Ok::<_, crossbeam_channel::SendError<_>>(())
7775
};
7876

79-
for _ in 0..num_worker_threads {
77+
for id in 0..num_worker_threads {
8078
let worker = prime_caches_worker.clone();
8179
let db = db.snapshot();
8280

8381
stdx::thread::Builder::new(stdx::thread::ThreadIntent::Worker)
8482
.allow_leak(true)
85-
.name("PrimeCaches".to_owned())
83+
.name(format!("PrimeCaches#{id}"))
8684
.spawn(move || Cancelled::catch(|| worker(db)))
8785
.expect("failed to spawn thread");
8886
}
@@ -96,7 +94,7 @@ pub fn parallel_prime_caches(
9694
// an index map is used to preserve ordering so we can sort the progress report in order of
9795
// "longest crate to index" first
9896
let mut crates_currently_indexing =
99-
FxIndexMap::with_capacity_and_hasher(num_worker_threads as _, Default::default());
97+
FxIndexMap::with_capacity_and_hasher(num_worker_threads, Default::default());
10098

10199
while crates_done < crates_total {
102100
db.unwind_if_cancelled();
@@ -144,19 +142,3 @@ pub fn parallel_prime_caches(
144142
cb(progress);
145143
}
146144
}
147-
148-
fn compute_crates_to_prime(db: &RootDatabase, graph: &CrateGraph) -> FxHashSet<CrateId> {
149-
// We're only interested in the workspace crates and the `ImportMap`s of their direct
150-
// dependencies, though in practice the latter also compute the `DefMap`s.
151-
// We don't prime transitive dependencies because they're generally not visible in
152-
// the current workspace.
153-
graph
154-
.iter()
155-
.filter(|&id| {
156-
let file_id = graph[id].root_file_id;
157-
let root_id = db.file_source_root(file_id);
158-
!db.source_root(root_id).is_library
159-
})
160-
.flat_map(|id| graph[id].dependencies.iter().map(|krate| krate.crate_id))
161-
.collect()
162-
}

0 commit comments

Comments
 (0)