Home
last modified time | relevance | path

Searched refs:It2 (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAddressRanges.h128 auto It2 = It; in insert() local
129 while (It2 != Ranges.end() && It2->start() <= Range.end()) in insert()
130 ++It2; in insert()
131 if (It != It2) { in insert()
132 Range = {Range.start(), std::max(Range.end(), std::prev(It2)->end())}; in insert()
133 It = Ranges.erase(It, It2); in insert()
H A DSmallVector.h361 template<typename It1, typename It2>
362 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
368 template<typename It1, typename It2>
369 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
508 template<typename It1, typename It2>
509 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
516 template<typename It1, typename It2>
517 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenMux.cpp295 MachineBasicBlock::iterator It1 = B.begin(), It2 = B.begin(); in genMuxInBlock() local
297 std::advance(It2, MaxX); in genMuxInBlock()
298 MachineInstr &Def1 = *It1, &Def2 = *It2; in genMuxInBlock()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.cpp982 SmallPtrSetIterator<VNInfo *> It2 = It1; in computeRedundantBackCopies() local
984 It2 = It1; in computeRedundantBackCopies()
985 for (++It2; It2 != EqualVNs[ParentVNI->id].end(); ++It2) { in computeRedundantBackCopies()
986 if (DominatedVNIs.count(*It1) || DominatedVNIs.count(*It2)) in computeRedundantBackCopies()
990 MachineBasicBlock *MBB2 = LIS.getMBBFromIndex((*It2)->def); in computeRedundantBackCopies()
992 DominatedVNIs.insert((*It1)->def < (*It2)->def ? (*It2) : (*It1)); in computeRedundantBackCopies()
994 DominatedVNIs.insert(*It2); in computeRedundantBackCopies()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTVector.h214 template<typename It1, typename It2>
215 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp802 auto It2 = Config.SetSectionType.find(Sec.Name); in handleArgs() local
803 if (It2 != Config.SetSectionType.end()) in handleArgs()
804 setSectionType(Sec, It2->second); in handleArgs()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h241 template <class It1, class It2>
242 LoopData(LoopData *Parent, It1 FirstHeader, It1 LastHeader, It2 FirstOther, in LoopData()
243 It2 LastOther) in LoopData()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp1246 auto It2 = find_if(MachOConfig.RPathsToRemove, Match); in parseInstallNameToolOptions() local
1247 if (It2 != MachOConfig.RPathsToRemove.end()) in parseInstallNameToolOptions()
1249 "cannot specify both -delete_rpath '" + *It2 + in parseInstallNameToolOptions()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.cpp1736 const MachineBasicBlock::const_reverse_iterator It2(&Prev); in areRVVInstsReassociable() local
1741 if (It == It2) { in areRVVInstsReassociable()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp4067 nodes_iterator(const ItTy &It2) : It(It2) {} in nodes_iterator() argument
17696 auto It2 = TrackedVals.find(RdxVal2); in tryToReduce() local
17697 if (It2 != TrackedVals.end()) in tryToReduce()
17698 StableRdxVal2 = It2->second; in tryToReduce()