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.cpp166 SlotIndex StartI = I.start(); in update() local
167 if (StartI >= Stop) in update()
169 if (!BI->First.isValid() || StartI < BI->First) in update()
170 BI->First = StartI; in update()
179 SlotIndex StartI = I->start; in update() local
180 if (StartI >= Stop) in update()
182 if (!BI->First.isValid() || StartI < BI->First) in update()
183 BI->First = StartI; in update()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp837 MachineBasicBlock::iterator StartI = IsDown ? TheI : ToI; in canMoveMemTo() local
842 for (MachineInstr &MI : llvm::make_range(std::next(StartI), EndI)) { in canMoveMemTo()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp1896 const_iterator StartI = begin(); in getImplicitDSA() local
1898 if (FromParent && StartI != EndI) in getImplicitDSA()
1899 ++StartI; in getImplicitDSA()
1900 return getDSA(StartI, D); in getImplicitDSA()
1908 const_iterator StartI = std::next(begin(), getStackSize() - 1 - Level); in getImplicitDSA() local
1909 return getDSA(StartI, D); in getImplicitDSA()
1945 const_iterator StartI = begin(); in hasInnermostDSA() local
1947 if (FromParent && StartI != EndI) in hasInnermostDSA()
1948 ++StartI; in hasInnermostDSA()
1949 if (StartI == EndI || !DPred(StartI->Directive)) in hasInnermostDSA()
[all …]