Home
last modified time | relevance | path

Searched refs:StartI (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterferenceCache.cpp167 SlotIndex StartI = I.start(); in update() local
168 if (StartI >= Stop) in update()
170 if (!BI->First.isValid() || StartI < BI->First) in update()
171 BI->First = StartI; in update()
180 SlotIndex StartI = I->start; in update() local
181 if (StartI >= Stop) in update()
183 if (!BI->First.isValid() || StartI < BI->First) in update()
184 BI->First = StartI; in update()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp854 MachineBasicBlock::iterator StartI = IsDown ? TheI : ToI; in canMoveMemTo() local
859 for (MachineInstr &MI : llvm::make_range(std::next(StartI), EndI)) { in canMoveMemTo()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp1920 const_iterator StartI = begin(); in getImplicitDSA() local
1922 if (FromParent && StartI != EndI) in getImplicitDSA()
1923 ++StartI; in getImplicitDSA()
1924 return getDSA(StartI, D); in getImplicitDSA()
1932 const_iterator StartI = std::next(begin(), getStackSize() - 1 - Level); in getImplicitDSA() local
1933 return getDSA(StartI, D); in getImplicitDSA()
1969 const_iterator StartI = begin(); in hasInnermostDSA() local
1971 if (FromParent && StartI != EndI) in hasInnermostDSA()
1972 ++StartI; in hasInnermostDSA()
1973 if (StartI == EndI || !DPred(StartI->Directive)) in hasInnermostDSA()
[all …]