diff options
| author | bors <bors@rust-lang.org> | 2025-04-30 23:57:22 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-04-30 23:57:22 +0000 |
| commit | 0c33fe2c3d3eecadd17a84b110bb067288a64f1c (patch) | |
| tree | 902822b48623953361aa74bf42e6ea71d623f1e7 /compiler/rustc_interface | |
| parent | b45dd71d1824f176fba88f6c40467030a16afa2c (diff) | |
| parent | ef9403371f2d4759cd7b0d0a276e63aae2ce68fe (diff) | |
| download | rust-0c33fe2c3d3eecadd17a84b110bb067288a64f1c.tar.gz rust-0c33fe2c3d3eecadd17a84b110bb067288a64f1c.zip | |
Auto merge of #121909 - Zoxc:drop-ast-task, r=petrochenkov
Drop AST on a separate thread and prefetch `hir_crate` This drop AST on a separate thread and prefetches `hir_crate`. A `spawn` function is added to the `parallel` module which spawn some work on the Rayon thread pool.
Diffstat (limited to 'compiler/rustc_interface')
| -rw-r--r-- | compiler/rustc_interface/src/passes.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs index 66d2a79b93a..aad63f4edcf 100644 --- a/compiler/rustc_interface/src/passes.rs +++ b/compiler/rustc_interface/src/passes.rs @@ -900,6 +900,12 @@ fn run_required_analyses(tcx: TyCtxt<'_>) { // is not defined. So we need to cfg it out. #[cfg(all(not(doc), debug_assertions))] rustc_passes::hir_id_validator::check_crate(tcx); + + // Prefetch this to prevent multiple threads from blocking on it later. + // This is needed since the `hir_id_validator::check_crate` call above is not guaranteed + // to use `hir_crate`. + tcx.ensure_done().hir_crate(()); + let sess = tcx.sess; sess.time("misc_checking_1", || { parallel!( |
