mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-20 03:06:21 +00:00
This improves parallel rustc parallelism by avoiding the bottleneck after each individual `par_body_owners` (because it needs to wait for queries to finish, so if there is one long running one, a lot of cores will be idle while waiting for the single query).
For high-level intro to how type checking works in rustc, see the type checking chapter of the rustc dev guide.