Searched defs:KillIndices (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.h58 /// KillIndices - The index of the most recent kill (proceeding bottom-up),
60 std::vector<unsigned> KillIndices; member in class:llvm::CriticalAntiDepBreaker
H A DAggressiveAntiDepBreaker.h69 /// KillIndices - The index of the most recent kill (proceding bottom-up),
71 std::vector<unsigned> KillIndices; member in class:llvm::AggressiveAntiDepState
81 std::vector<unsigned> &GetKillIndices() { return KillIndices; }
H A DAggressiveAntiDepBreaker.cpp47 KillIndices(TargetRegs, 0),
56 KillIndices[i] = ~0u;
111 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
152 std::vector<unsigned> &KillIndices = State->GetKillIndices(); local
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
[all...]

Completed in 943 milliseconds