Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DCriticalAntiDepBreaker.cpp36 DefIndices(TRI->getNumRegs(), 0), KeepRegs(TRI->getNumRegs(), false) {} in CriticalAntiDepBreaker()
49 DefIndices[i] = BBSize; in StartBlock()
65 DefIndices[Reg] = ~0u; in StartBlock()
80 DefIndices[Reg] = ~0u; in StartBlock()
110 } else if (DefIndices[Reg] < InsertPosIndex && DefIndices[Reg] >= Count) { in Observe()
119 DefIndices[Reg] = InsertPosIndex; in Observe()
251 DefIndices[i] = Count; in ScanInstruction()
275 DefIndices[SubregReg] = Count; in ScanInstruction()
313 DefIndices[AliasReg] = ~0u; in ScanInstruction()
398 assert(((KillIndices[AntiDepReg] == ~0u) != (DefIndices[AntiDepReg] == ~0u)) in findSuitableFreeRegister()
[all …]
DAggressiveAntiDepBreaker.cpp47 DefIndices(TargetRegs, 0) in AggressiveAntiDepState()
56 DefIndices[i] = BBSize; in AggressiveAntiDepState()
110 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u)); in IsLive()
147 std::vector<unsigned> &DefIndices = State->GetDefIndices(); in StartBlock() local
157 DefIndices[Reg] = ~0u; in StartBlock()
173 DefIndices[AliasReg] = ~0u; in StartBlock()
196 std::vector<unsigned> &DefIndices = State->GetDefIndices(); in Observe() local
209 } else if ((DefIndices[Reg] < InsertPosIndex) in Observe()
210 && (DefIndices[Reg] >= Count)) { in Observe()
211 DefIndices[Reg] = Count; in Observe()
[all …]
DAggressiveAntiDepBreaker.h72 std::vector<unsigned> DefIndices; variable
81 std::vector<unsigned> &GetDefIndices() { return DefIndices; } in GetDefIndices()
DCriticalAntiDepBreaker.h62 std::vector<unsigned> DefIndices; variable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DCriticalAntiDepBreaker.cpp51 DefIndices(TRI->getNumRegs(), 0), KeepRegs(TRI->getNumRegs(), false) {} in CriticalAntiDepBreaker()
63 DefIndices[i] = BBSize; in StartBlock()
79 DefIndices[Reg] = ~0u; in StartBlock()
97 DefIndices[Reg] = ~0u; in StartBlock()
127 } else if (DefIndices[Reg] < InsertPosIndex && DefIndices[Reg] >= Count) { in Observe()
136 DefIndices[Reg] = InsertPosIndex; in Observe()
268 DefIndices[i] = Count; in ScanInstruction()
292 DefIndices[SubregReg] = Count; in ScanInstruction()
330 DefIndices[AliasReg] = ~0u; in ScanInstruction()
413 assert(((KillIndices[AntiDepReg] == ~0u) != (DefIndices[AntiDepReg] == ~0u)) in findSuitableFreeRegister()
[all …]
DAggressiveAntiDepBreaker.cpp64 DefIndices(TargetRegs, 0) { in AggressiveAntiDepState()
72 DefIndices[i] = BBSize; in AggressiveAntiDepState()
123 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u)); in IsLive()
159 std::vector<unsigned> &DefIndices = State->GetDefIndices(); in StartBlock() local
169 DefIndices[Reg] = ~0u; in StartBlock()
187 DefIndices[AliasReg] = ~0u; in StartBlock()
210 std::vector<unsigned> &DefIndices = State->GetDefIndices(); in Observe() local
223 } else if ((DefIndices[Reg] < InsertPosIndex) in Observe()
224 && (DefIndices[Reg] >= Count)) { in Observe()
225 DefIndices[Reg] = Count; in Observe()
[all …]
DAggressiveAntiDepBreaker.h78 std::vector<unsigned> DefIndices; variable
87 std::vector<unsigned> &GetDefIndices() { return DefIndices; } in GetDefIndices()
DCriticalAntiDepBreaker.h68 std::vector<unsigned> DefIndices; variable