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

  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 38 DefIndices(TRI->getNumRegs(), 0),
52 DefIndices[i] = BBSize;
68 DefIndices[Reg] = ~0u;
75 DefIndices[AliasReg] = ~0u;
90 DefIndices[Reg] = ~0u;
97 DefIndices[AliasReg] = ~0u;
111 DefIndices[Reg] = ~0u;
118 DefIndices[AliasReg] = ~0u;
141 } else if (DefIndices[Reg] < InsertPosIndex && 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; }
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...]
CriticalAntiDepBreaker.h 62 /// DefIndices - The index of the most recent complete def (proceding bottom
64 std::vector<unsigned> DefIndices;

Completed in 69 milliseconds