Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Kills

214   // Find the instruction that kills SavedReg.
241 // If we find the instruction that kills SavedReg, and it is in an
279 // Save the operand that kills the register. We want to unset the kill
399 /// If allowFalsePositives is true then likely kills are treated as kills even
400 /// if it can't be proven that they are kills.
408 // All uses of physical registers are likely to be kills.
742 /// 'Reg' and it kills 'Reg, consider moving the instruction below the kill
749 // kills efficiently.
797 SmallSet<unsigned, 2> Kills;
812 Kills.insert(MOReg);
864 ((isKill && Uses.count(MOReg)) || Kills.count(MOReg)))
865 // Don't want to extend other live ranges and update kills.
872 "Found multiple kills of a register in a basic block");
933 /// 'Reg' and it kills 'Reg, consider moving the kill instruction above the
941 // kills efficiently.
980 SmallSet<unsigned, 2> Kills;
998 Kills.insert(MOReg);
1034 if (Kills.count(MOReg))
1035 // Don't want to extend other live ranges and update kills.