rustc_mir_transform::sroa

Function compute_flattening

Source
fn compute_flattening<'tcx>(
    tcx: TyCtxt<'tcx>,
    typing_env: TypingEnv<'tcx>,
    body: &mut Body<'tcx>,
    escaping: BitSet<Local>,
) -> ReplacementMap<'tcx>
Expand description

Compute the replacement of flattened places into locals.

For each eligible place, we assign a new local to each accessed field. The replacement will be done later in ReplacementVisitor.