Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Kills

65   /// being captured by the Kills set.  In these blocks, the value is live into
68 /// value whose Kills set contains two instructions from the same basic block.
71 /// value in one of its predecessor blocks, it is not listed in the kills set,
76 /// not live across any blocks) and Kills is empty (phi nodes are not
86 /// Kills - List of MachineInstruction's which are the last use of this
89 std::vector<MachineInstr*> Kills;
96 I = std::find(Kills.begin(), Kills.end(), MI);
97 if (I == Kills.end())
99 Kills.erase(I);
150 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
201 getVarInfo(IncomingReg).Kills.push_back(MI);
237 getVarInfo(IncomingReg).Kills.push_back(MI);