496
497 let disable_incr_cache = disable_incr_cache();
498▶ let (todo_cgus, done_cgus) =
499 cgus.iter().enumerate().partition::<Vec<_>, _>(|&(i, _)| match cgu_reuse[i] {
500 _ if disable_incr_cache => true,
· · ·
503 });
504
505▶ let concurrency_limiter = IntoDynSyncSend(ConcurrencyLimiter::new(todo_cgus.len()));
506
507 let modules: Vec<_> =
· · ·
508 tcx.sess.time("codegen mono items", || {
509▶ let modules: Vec<_> = par_map(todo_cgus, |(_, cgu)| {
510 let dep_node = cgu.codegen_dep_node(tcx);
511 let (module, _) = tcx.dep_graph.with_task(