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 36 DefIndices(TRI->getNumRegs(), 0), KeepRegs(TRI->getNumRegs(), false) {}
49 DefIndices[i] = BBSize;
65 DefIndices[Reg] = ~0u;
80 DefIndices[Reg] = ~0u;
110 } else if (DefIndices[Reg] < InsertPosIndex && DefIndices[Reg] >= Count) {
119 DefIndices[Reg] = InsertPosIndex;
253 DefIndices[i] = Count;
275 DefIndices[SubregReg] = Count;
312 DefIndices[AliasReg] = ~0u
    [all...]
AggressiveAntiDepBreaker.h 72 std::vector<unsigned> DefIndices;
81 std::vector<unsigned> &GetDefIndices() { return DefIndices; }
AggressiveAntiDepBreaker.cpp 47 DefIndices(TargetRegs, 0)
56 DefIndices[i] = BBSize;
110 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
147 std::vector<unsigned> &DefIndices = State->GetDefIndices();
157 DefIndices[Reg] = ~0u;
173 DefIndices[AliasReg] = ~0u;
196 std::vector<unsigned> &DefIndices = State->GetDefIndices();
209 } else if ((DefIndices[Reg] < InsertPosIndex)
210 && (DefIndices[Reg] >= Count)) {
211 DefIndices[Reg] = Count
    [all...]
CriticalAntiDepBreaker.h 64 std::vector<unsigned> DefIndices;

Completed in 297 milliseconds