Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAddressRanges.h126 auto It2 = It; in insert() local
127 while (It2 != Ranges.end() && It2->start() <= Range.end()) in insert()
128 ++It2; in insert()
129 if (It != It2) { in insert()
130 Range = {Range.start(), std::max(Range.end(), std::prev(It2)->end())}; in insert()
131 It = Ranges.erase(It, It2); in insert()
H A DSmallVector.h348 template<typename It1, typename It2>
349 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
355 template<typename It1, typename It2>
356 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
495 template<typename It1, typename It2>
496 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move()
503 template<typename It1, typename It2>
504 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { in uninitialized_copy()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/
H A DInstrMaps.h78 auto It2 = OrigToLaneMap.find(Orig); in getOrigLane() local
79 if (It2 == OrigToLaneMap.end()) in getOrigLane()
81 return It2->second; in getOrigLane()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmInfo.cpp133 [[maybe_unused]] auto It2 = in initializeAtSpecifiers() local
135 assert(It2.second); in initializeAtSpecifiers()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenMux.cpp286 MachineBasicBlock::iterator It1 = B.begin(), It2 = B.begin(); in genMuxInBlock() local
288 std::advance(It2, MaxX); in genMuxInBlock()
289 MachineInstr &Def1 = *It1, &Def2 = *It2; in genMuxInBlock()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.cpp1018 SmallPtrSetIterator<VNInfo *> It2 = It1; in computeRedundantBackCopies() local
1020 It2 = It1; in computeRedundantBackCopies()
1021 for (++It2; It2 != EqualVNs[ParentVNI->id].end(); ++It2) { in computeRedundantBackCopies()
1022 if (DominatedVNIs.count(*It1) || DominatedVNIs.count(*It2)) in computeRedundantBackCopies()
1026 MachineBasicBlock *MBB2 = LIS.getMBBFromIndex((*It2)->def); in computeRedundantBackCopies()
1028 DominatedVNIs.insert((*It1)->def < (*It2)->def ? (*It2) : (*It1)); in computeRedundantBackCopies()
1030 DominatedVNIs.insert(*It2); in computeRedundantBackCopies()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVIRMapping.h204 [[maybe_unused]] auto It2 = Defs.try_emplace(MI, HandleMF); in add() local
205 assert(It2.second); in add()
/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.cpp960 auto It2 = Config.SetSectionType.find(Sec.Name); in handleArgs() local
961 if (It2 != Config.SetSectionType.end()) in handleArgs()
962 setSectionType(Sec, It2->second); in handleArgs()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h238 template <class It1, class It2>
239 LoopData(LoopData *Parent, It1 FirstHeader, It1 LastHeader, It2 FirstOther, in LoopData()
240 It2 LastOther) in LoopData()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp1377 auto It2 = find_if(MachOConfig.RPathsToRemove, Match); in parseInstallNameToolOptions() local
1378 if (It2 != MachOConfig.RPathsToRemove.end()) in parseInstallNameToolOptions()
1380 "cannot specify both -delete_rpath '" + *It2 + in parseInstallNameToolOptions()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.cpp2140 const MachineBasicBlock::const_reverse_iterator It2(&Prev); in areRVVInstsReassociable() local
2145 if (It == It2) { in areRVVInstsReassociable()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp5208 nodes_iterator(const ItTy &It2) : It(It2) {} in nodes_iterator() argument
22834 auto It2 = TrackedVals.find(RdxVal2); in tryToReduce() local
22835 if (It2 != TrackedVals.end()) in tryToReduce()
22836 StableRdxVal2 = It2->second; in tryToReduce()