Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp46 DefIndices(TRI->getNumRegs(), 0), KeepRegs(TRI->getNumRegs(), false) {} in CriticalAntiDepBreaker()
58 DefIndices[i] = BBSize; in StartBlock()
73 DefIndices[Reg] = ~0u; in StartBlock()
91 DefIndices[Reg.id()] = ~0u; in StartBlock()
121 } else if (DefIndices[Reg] < InsertPosIndex && DefIndices[Reg] >= Count) { in Observe()
130 DefIndices[Reg] = InsertPosIndex; in Observe()
271 DefIndices[i] = Count; in ScanInstruction()
297 DefIndices[SubregReg] = Count; in ScanInstruction()
336 DefIndices[AliasReg.id()] = ~0u; in ScanInstruction()
413 (DefIndices[AntiDepReg.id()] == ~0u)) && in findSuitableFreeRegister()
[all …]
H A DAggressiveAntiDepBreaker.cpp58 DefIndices(TargetRegs, 0) { in AggressiveAntiDepState()
66 DefIndices[i] = BBSize; in AggressiveAntiDepState()
116 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u)); in IsLive()
151 std::vector<unsigned> &DefIndices = State->GetDefIndices(); in StartBlock() local
160 DefIndices[Reg] = ~0u; in StartBlock()
178 DefIndices[AliasReg] = ~0u; in StartBlock()
201 std::vector<unsigned> &DefIndices = State->GetDefIndices(); in Observe() local
214 } else if ((DefIndices[Reg] < InsertPosIndex) in Observe()
215 && (DefIndices[Reg] >= Count)) { in Observe()
216 DefIndices[Reg] = Count; in Observe()
[all …]
H A DAggressiveAntiDepBreaker.h77 std::vector<unsigned> DefIndices; variable
86 std::vector<unsigned> &GetDefIndices() { return DefIndices; } in GetDefIndices()
H A DCriticalAntiDepBreaker.h67 std::vector<unsigned> DefIndices; variable