HomeSort by relevance Sort by last modified time
    Searched refs:KillIndices (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 38 KillIndices(TRI->getNumRegs(), 0),
52 KillIndices[i] = ~0u;
69 KillIndices[Reg] = BBSize;
84 KillIndices[Reg] = BBSize;
109 if (KillIndices[Reg] != ~0u) {
114 KillIndices[Reg] = Count;
259 KillIndices[i] = ~0u;
279 KillIndices[Reg] = ~0u;
280 assert(((KillIndices[Reg] == ~0u) !=
290 KillIndices[SubregReg] = ~0u
    [all...]
AggressiveAntiDepBreaker.h 69 /// KillIndices - The index of the most recent kill (proceding bottom-up),
71 std::vector<unsigned> KillIndices;
81 std::vector<unsigned> &GetKillIndices() { return KillIndices; }
AggressiveAntiDepBreaker.cpp 47 KillIndices(TargetRegs, 0),
56 KillIndices[i] = ~0u;
111 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
152 std::vector<unsigned> &KillIndices = State->GetKillIndices();
163 KillIndices[Reg] = BB->size();
179 KillIndices[AliasReg] = BB->size();
303 std::vector<unsigned> &KillIndices = State->GetKillIndices();
309 KillIndices[Reg] = KillIdx;
321 KillIndices[SubregReg] = KillIdx;
540 std::vector<unsigned> &KillIndices = State->GetKillIndices()
    [all...]
CriticalAntiDepBreaker.h 58 /// KillIndices - The index of the most recent kill (proceeding bottom-up),
60 std::vector<unsigned> KillIndices;

Completed in 53 milliseconds