Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:KillIndices

46   KillIndices(TargetRegs, 0),
55 KillIndices[i] = ~0u;
110 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
146 std::vector<unsigned> &KillIndices = State->GetKillIndices();
156 KillIndices[Reg] = BB->size();
172 KillIndices[AliasReg] = BB->size();
293 std::vector<unsigned> &KillIndices = State->GetKillIndices();
309 KillIndices[Reg] = KillIdx;
321 KillIndices[SubregReg] = KillIdx;
536 std::vector<unsigned> &KillIndices = State->GetKillIndices();
663 if (State->IsLive(NewReg) || (KillIndices[Reg] > DefIndices[NewReg])) {
671 (KillIndices[Reg] > DefIndices[AliasReg])) {
740 std::vector<unsigned> &KillIndices = State->GetKillIndices();
950 KillIndices[NewReg] = KillIndices[CurrReg];
954 DefIndices[CurrReg] = KillIndices[CurrReg];
955 KillIndices[CurrReg] = ~0u;
956 assert(((KillIndices[CurrReg] == ~0u) !=