Lines Matching defs:InstrMap
2656 // or more registers in the RegisterMap, the RegisterMap and InstrMap are
2685 // registers %2, and %3, the DbgValueSinkCandidates and the InstrMap will be
2687 // InstrMap {}
2696 // DbgValueSinkCandidates and InstrMap will be populated and the RegisterMap
2698 // RegisterMap = {2 -> {X}, 3 -> {}}, InstrMap {X -> 2}
2711 // InstrMap = {X-> 2}
2720 // hold Z fr A, the RegisterMap is updated to hold Z for %3, and the InstrMap
2725 // InstrMap = {X -> 2, Z -> 3}
2735 // InstrMap = {X -> 2, Z -> 3}
2748 // InstrMap = {X -> 2, Z -> 3}
2760 // InstrMap = {X -> 2, Z -> 3}
2775 SmallDenseMap<MachineInstr *, SmallVector<Register>, 8> InstrMap;
2785 InstrMap[&MI].push_back(Reg);
2796 // RegisterMap and InstrMap.
2809 auto RegIt = InstrMap.find(Instr);
2810 if (RegIt != InstrMap.end()) {