Searched refs:DefIndices (Results 1 - 8 of 8) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp38 DefIndices(TRI->getNumRegs(), 0) {}
51 DefIndices[i] = BBSize;
67 DefIndices[Reg] = ~0u;
74 DefIndices[AliasReg] = ~0u;
89 DefIndices[Reg] = ~0u;
96 DefIndices[AliasReg] = ~0u;
110 DefIndices[Reg] = ~0u;
117 DefIndices[AliasReg] = ~0u;
140 } else if (DefIndices[Reg] < InsertPosIndex && DefIndices[Re
[all...]
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[Reg] = ~0u;
196 DefIndices[AliasReg] = ~0u;
219 std::vector<unsigned> &DefIndices = State->GetDefIndices();
232 } else if ((DefIndices[Reg] < InsertPosIndex)
233 && (DefIndices[Re
[all...]
H A DCriticalAntiDepBreaker.h63 /// DefIndices - The index of the most recent complete def (proceding bottom
65 std::vector<unsigned> DefIndices; member in class:llvm::CriticalAntiDepBreaker
/external/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp36 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;
251 DefIndices[i] = Count;
275 DefIndices[SubregReg] = Count;
313 DefIndices[AliasRe
[all...]
H A DAggressiveAntiDepBreaker.cpp47 DefIndices(TargetRegs, 0)
56 DefIndices[i] = BBSize;
110 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
147 std::vector<unsigned> &DefIndices = State->GetDefIndices(); local
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[Re
[all...]
H A DAggressiveAntiDepBreaker.h72 std::vector<unsigned> DefIndices; member in class:llvm::AggressiveAntiDepState
81 std::vector<unsigned> &GetDefIndices() { return DefIndices; }
H A DCriticalAntiDepBreaker.h62 std::vector<unsigned> DefIndices; member in class:llvm::CriticalAntiDepBreaker

Completed in 284 milliseconds