Skip to content

Commit 2fe9b7e

Browse files
committed
Properly prime all crate def maps in parallel_prime_caches
1 parent 51ea7e8 commit 2fe9b7e

File tree

1 file changed

+16
-34
lines changed

1 file changed

+16
-34
lines changed

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)