Skip to content

Commit 88fde7f

Browse files
Don't process cycles when stalled
This improves the `inflate-0.1.0` benchmark by about 10% for me.
1 parent 6dc035e commit 88fde7f

File tree

1 file changed

+10
-0
lines changed
  • src/librustc_data_structures/obligation_forest

1 file changed

+10
-0
lines changed

src/librustc_data_structures/obligation_forest/mod.rs

+10
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,16 @@ impl<O: ForestObligation> ObligationForest<O> {
342342
}
343343
}
344344

345+
if stalled {
346+
// There's no need to perform marking, cycle processing and compression when nothing
347+
// changed.
348+
return Outcome {
349+
completed: vec![],
350+
errors: errors,
351+
stalled: stalled,
352+
};
353+
}
354+
345355
self.mark_as_waiting();
346356
self.process_cycles(processor);
347357

0 commit comments

Comments
 (0)