about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/sync
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-04-30 23:57:22 +0000
committerbors <bors@rust-lang.org>2025-04-30 23:57:22 +0000
commit0c33fe2c3d3eecadd17a84b110bb067288a64f1c (patch)
tree902822b48623953361aa74bf42e6ea71d623f1e7 /compiler/rustc_data_structures/src/sync
parentb45dd71d1824f176fba88f6c40467030a16afa2c (diff)
parentef9403371f2d4759cd7b0d0a276e63aae2ce68fe (diff)
downloadrust-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_data_structures/src/sync')
-rw-r--r--compiler/rustc_data_structures/src/sync/parallel.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/compiler/rustc_data_structures/src/sync/parallel.rs b/compiler/rustc_data_structures/src/sync/parallel.rs
index ba3c85ef5b1..64db39cc4c6 100644
--- a/compiler/rustc_data_structures/src/sync/parallel.rs
+++ b/compiler/rustc_data_structures/src/sync/parallel.rs
@@ -93,6 +93,17 @@ macro_rules! parallel {
         };
     }
 
+pub fn spawn(func: impl FnOnce() + DynSend + 'static) {
+    if mode::is_dyn_thread_safe() {
+        let func = FromDyn::from(func);
+        rayon_core::spawn(|| {
+            (func.into_inner())();
+        });
+    } else {
+        func()
+    }
+}
+
 // This function only works when `mode::is_dyn_thread_safe()`.
 pub fn scope<'scope, OP, R>(op: OP) -> R
 where