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

/external/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.h62 /// DefIndices - The index of the most recent complete def (proceeding
64 std::vector<unsigned> DefIndices; member in class:llvm::CriticalAntiDepBreaker
H A DAggressiveAntiDepBreaker.h73 /// DefIndices - The index of the most recent complete def (proceding bottom
75 std::vector<unsigned> DefIndices; member in class:llvm::AggressiveAntiDepState
84 std::vector<unsigned> &GetDefIndices() { return DefIndices; }
H A DAggressiveAntiDepBreaker.cpp48 DefIndices(TargetRegs, 0)
57 DefIndices[i] = BBSize;
111 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
153 std::vector<unsigned> &DefIndices = State->GetDefIndices(); local
164 DefIndices[Reg] = ~0u;
180 DefIndices[AliasReg] = ~0u;
203 std::vector<unsigned> &DefIndices = State->GetDefIndices();
216 } else if ((DefIndices[Reg] < InsertPosIndex)
217 && (DefIndices[Reg] >= Count)) {
218 DefIndices[Re
[all...]

Completed in 57 milliseconds