Lines Matching full:kills
218 // Find the instruction that kills SavedReg.
245 // If we find the instruction that kills SavedReg, and it is in an
283 // Save the operand that kills the register. We want to unset the kill
442 /// If allowFalsePositives is true then likely kills are treated as kills even
443 /// if it can't be proven that they are kills.
451 // All uses of physical registers are likely to be kills.
817 /// 'Reg' and it kills 'Reg, consider moving the instruction below the kill
824 // kills efficiently.
872 SmallSet<unsigned, 2> Kills;
887 Kills.insert(MOReg);
939 ((isKill && Uses.count(MOReg)) || Kills.count(MOReg)))
940 // Don't want to extend other live ranges and update kills.
947 "Found multiple kills of a register in a basic block");
1008 /// 'Reg' and it kills 'Reg, consider moving the kill instruction above the
1016 // kills efficiently.
1055 SmallSet<unsigned, 2> Kills;
1073 Kills.insert(MOReg);
1109 if (Kills.count(MOReg))
1110 // Don't want to extend other live ranges and update kills.