Home
last modified time | relevance | path

Searched refs:DefIndices (Results 1 – 4 of 4) 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()
253 DefIndices[i] = Count; in ScanInstruction()
275 DefIndices[SubregReg] = Count; in ScanInstruction()
312 DefIndices[AliasReg] = ~0u; in ScanInstruction()
397 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.h64 std::vector<unsigned> DefIndices; variable