fn compute_storage_conflicts<'mir, 'tcx>(
    body: &'mir Body<'tcx>,
    saved_locals: &CoroutineSavedLocals,
    always_live_locals: BitSet<Local>,
    requires_storage: Results<'tcx, MaybeRequiresStorage<'mir, 'tcx>>
) -> BitMatrix<CoroutineSavedLocal, CoroutineSavedLocal>
Expand description

For every saved local, looks for which locals are StorageLive at the same time. Generates a bitset for every local of all the other locals that may be StorageLive simultaneously with that local. This is used in the layout computation; see CoroutineLayout for more.