HomeSort by relevance Sort by last modified time
    Searched defs:DefIndices (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.h 62 /// DefIndices - The index of the most recent complete def (proceding bottom
64 std::vector<unsigned> DefIndices;
AggressiveAntiDepBreaker.cpp 48 DefIndices(TargetRegs, 0)
57 DefIndices[i] = BBSize;
111 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
153 std::vector<unsigned> &DefIndices = State->GetDefIndices();
164 DefIndices[Reg] = ~0u;
180 DefIndices[Reg] = ~0u;
196 DefIndices[AliasReg] = ~0u;
219 std::vector<unsigned> &DefIndices = State->GetDefIndices();
232 } else if ((DefIndices[Reg] < InsertPosIndex)
233 && (DefIndices[Reg] >= Count))
    [all...]
AggressiveAntiDepBreaker.h 73 /// DefIndices - The index of the most recent complete def (proceding bottom
75 std::vector<unsigned> DefIndices;
84 std::vector<unsigned> &GetDefIndices() { return DefIndices; }

Completed in 36 milliseconds