Home
last modified time | relevance | path

Searched refs:Iter (Results 1 – 25 of 182) sorted by relevance

12345678

/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVEVPTBlockPass.cpp108 while (Iter != EndIter) { in StepOverPredicatedInstrs()
109 if (Iter->isDebugInstr()) { in StepOverPredicatedInstrs()
111 ++Iter; in StepOverPredicatedInstrs()
121 ++Iter; in StepOverPredicatedInstrs()
133 for (; Iter != End; ++Iter) in IsVPRDefinedOrKilledByBlock()
134 if (Iter->definesRegister(ARM::VPR) || Iter->killsRegister(ARM::VPR)) in IsVPRDefinedOrKilledByBlock()
190 while (BlockSize < 4 && Iter != EndIter && in CreateVPTBlock()
214 DeadInstructions.push_back(&*Iter); in CreateVPTBlock()
215 ++Iter; in CreateVPTBlock()
220 for (; Iter != VPNOTBlockEndIter; ++Iter) { in CreateVPTBlock()
[all …]
H A DMVETPAndVPTOptimisationsPass.cpp660 MachineInstr &VPNOT = *Iter; in MoveVPNOTBeforeFirstUser()
668 for (; Iter != MBB.end(); ++Iter) { in MoveVPNOTBeforeFirstUser()
689 Iter->dump()); in MoveVPNOTBeforeFirstUser()
719 while (Iter != End) { in ReduceOldVCCRValueUses()
724 for (; Iter != End; ++Iter) { in ReduceOldVCCRValueUses()
726 if (!IsWritingToVCCR(*Iter) || in ReduceOldVCCRValueUses()
741 ++Iter; in ReduceOldVCCRValueUses()
750 if (Iter == End) in ReduceOldVCCRValueUses()
763 for (; Iter != End; ++Iter) { in ReduceOldVCCRValueUses()
776 DeadInstructions.push_back(&*Iter); in ReduceOldVCCRValueUses()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp91 return Iter != SymbolNames.end() ? Iter->second : Empty; in getEntry()
95 return Iter != SymbolNames.end() ? Iter->second.Address : 0; in getAddress()
99 return Iter != SymbolNames.end() ? Iter->second.SectionIndex in getIndex()
104 return Iter != SymbolNames.end() ? Iter->second.IsComdat : false; in getIsComdat()
337 --Iter; in getSection()
338 return std::make_pair(Iter->first, Iter->second); in getSection()
595 ++Iter; in processLines()
620 ++Iter; in processLines()
649 Iter = DebugLines->insert(Iter, InstructionLine); in processLines()
852 for (LVLines::iterator Iter = IterStart; Iter < IterEnd; ++Iter) in processLines() local
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DGsymReader.h271 auto Iter = std::lower_bound(Begin, End, AddrOffset); in getAddressOffsetIndex() local
274 if (Iter == Begin && AddrOffset < *Begin) in getAddressOffsetIndex()
276 if (Iter == End || AddrOffset < *Iter) in getAddressOffsetIndex()
277 --Iter; in getAddressOffsetIndex()
283 while (Iter != Begin) { in getAddressOffsetIndex()
284 auto Prev = Iter - 1; in getAddressOffsetIndex()
285 if (*Prev == *Iter) in getAddressOffsetIndex()
286 Iter = Prev; in getAddressOffsetIndex()
291 return std::distance(Begin, Iter); in getAddressOffsetIndex()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryProfileInfo.h124 IteratorT Iter; member
127 bool operator==(const CallStackIterator &rhs) { return Iter == rhs.Iter; }
129 void operator++() { ++Iter; }
148 Iter = nullptr; in CallStackIterator()
151 Iter = End ? N->StackIdIndices.end() : N->StackIdIndices.begin(); in CallStackIterator()
156 assert(Iter != N->StackIdIndices.end());
157 return *Iter;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugStringTableSubsection.cpp98 auto Iter = StringToId.find(S); in getIdForString() local
99 assert(Iter != StringToId.end()); in getIdForString()
100 return Iter->second; in getIdForString()
104 auto Iter = IdToString.find(Id); in getStringForId() local
105 assert(Iter != IdToString.end()); in getStringForId()
106 return Iter->second; in getStringForId()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp107 void handleIncrement(CheckerContext &C, SVal RetVal, SVal Iter,
109 void handleDecrement(CheckerContext &C, SVal RetVal, SVal Iter,
540 const auto *Pos = getIteratorPosition(State, Iter); in handleIncrement()
545 advancePosition(State, Iter, OO_Plus, in handleIncrement()
550 const auto *NewPos = getIteratorPosition(NewState, Iter); in handleIncrement()
554 State = setIteratorPosition(State, Iter, *NewPos); in handleIncrement()
566 const auto *Pos = getIteratorPosition(State, Iter); in handleDecrement()
571 advancePosition(State, Iter, OO_Minus, in handleDecrement()
576 const auto *NewPos = getIteratorPosition(NewState, Iter); in handleDecrement()
580 State = setIteratorPosition(State, Iter, *NewPos); in handleDecrement()
[all …]
H A DCastSizeChecker.cpp57 RecordDecl::field_iterator Iter(RD->field_begin()); in evenFlexibleArraySize() local
60 for (; Iter != End; ++Iter) in evenFlexibleArraySize()
61 Last = *Iter; in evenFlexibleArraySize()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DUnresolvedSet.h40 explicit UnresolvedSetIterator(DeclAccessPair *Iter) in UnresolvedSetIterator() argument
41 : iterator_adaptor_base(Iter) {} in UnresolvedSetIterator()
42 explicit UnresolvedSetIterator(const DeclAccessPair *Iter) in UnresolvedSetIterator() argument
43 : iterator_adaptor_base(const_cast<DeclAccessPair *>(Iter)) {} in UnresolvedSetIterator()
139 template<typename Iter> void assign(Iter I, Iter E) { decls().assign(I, E); } in assign()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseBitVector.h326 ElementListConstIter Iter; variable
345 Iter = BitVector->Elements.begin(); in AdvanceToFirstNonZero()
347 unsigned BitPos = Iter->find_first(); in AdvanceToFirstNonZero()
350 Bits = Iter->word(WordNumber); in AdvanceToFirstNonZero()
369 ++Iter; in AdvanceToNextNonZero()
382 Bits = Iter->word(WordNumber); in AdvanceToNextNonZero()
386 Bits = Iter->word(WordNumber); in AdvanceToNextNonZero()
399 Iter = BitVector->Elements.begin(); in BitVector()
803 Iter != Elements.end(); in count()
804 ++Iter) in count()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVRange.cpp90 for (LVRangesTree::find_iterator Iter = RangesTree.find(Address), in getEntry() local
92 Iter != End; ++Iter) { in getEntry()
94 { dbgs() << format("[0x%08x,0x%08x] ", Iter->left(), Iter->right()); }); in getEntry()
95 Scope = Iter->value(); in getEntry()
H A DLVSymbol.cpp114 LVLocations::iterator Iter = Locations->insert(Pos, Gap); in addLocationGap() local
122 return Iter; in addLocationGap()
144 for (LVLocations::iterator Iter = Locations->begin(); in fillLocationGaps() local
145 Iter != Locations->end(); ++Iter) { in fillLocationGaps()
146 Location = *Iter; in fillLocationGaps()
150 Iter = addLocationGap(Iter, Marker, LowPC - 1); in fillLocationGaps()
151 ++Iter; in fillLocationGaps()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DHTMLLogger.cpp154 unsigned Iter; member
212 JOS->attribute("iter", E.Iter); in endAnalysis()
246 static std::string iterID(unsigned Block, unsigned Iter) { in iterID() argument
247 return llvm::formatv("B{0}:{1}", Block, Iter); in iterID()
249 static std::string elementIterID(unsigned Block, unsigned Iter, in elementIterID() argument
262 unsigned Iter = Iters.back().Iter; in recordState() local
266 JOS->attribute("iter", Iter); in recordState()
313 const Iteration &Iter = Iters[IterIdx]; in writeBlock() local
315 JOS->attribute("iter", Iter.Iter); in writeBlock()
316 JOS->attribute("post_visit", Iter.PostVisit); in writeBlock()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Testing/Annotations/
H A DAnnotations.cpp107 auto Iter = Points.find(Name); in pointsWithPayload() local
108 if (Iter == Points.end()) in pointsWithPayload()
112 Res.reserve(Iter->getValue().size()); in pointsWithPayload()
113 for (size_t I : Iter->getValue()) in pointsWithPayload()
152 auto Iter = Ranges.find(Name); in rangesWithPayload() local
153 if (Iter == Ranges.end()) in rangesWithPayload()
157 Res.reserve(Iter->getValue().size()); in rangesWithPayload()
158 for (size_t I : Iter->getValue()) in rangesWithPayload()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DRawMemProfReader.h45 Iter = FunctionProfileData.begin(); in begin()
66 if (Iter == FunctionProfileData.end())
73 const IndexedMemProfRecord &IndexedRecord = Iter->second;
74 GuidRecord = {Iter->first, MemProfRecord(IndexedRecord, Callback)};
75 Iter++;
104 llvm::MapVector<GlobalValue::GUID, IndexedMemProfRecord>::iterator Iter; variable
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DAnnotationRemarks.cpp55 auto Iter = DebugLoc2Annotated.insert({I.getDebugLoc().getAsMDNode(), {}}); in runImpl() local
56 Iter.first->second.push_back(&I); in runImpl()
65 auto Iter = Mapping.insert({AnnotationStr, 0}); in runImpl() local
66 Iter.first->second++; in runImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DSymbol.h72 auto Iter = in addEntry() local
76 if ((Iter != std::end(Container)) && !(Targ < *Iter)) in addEntry()
77 return Iter; in addEntry()
79 return Container.insert(Iter, Targ); in addEntry()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInputFile.cpp245 auto Iter = SC.checksums().getArray().at(Offset); in getNameFromChecksums() local
246 if (Iter == SC.checksums().getArray().end()) { in getNameFromChecksums()
250 uint32_t FO = Iter->FileNameOffset; in getNameFromChecksums()
280 auto Iter = SC.checksums().getArray().at(Offset); in formatFromChecksumsOffset() local
281 if (Iter == SC.checksums().getArray().end()) { in formatFromChecksumsOffset()
286 uint32_t FO = Iter->FileNameOffset; in formatFromChecksumsOffset()
293 if (Iter->Kind == FileChecksumKind::None) { in formatFromChecksumsOffset()
297 formatChecksumKind(Iter->Kind), toHex(Iter->Checksum)); in formatFromChecksumsOffset()
531 auto &Iter = *SectionIter; in scanToNextDebugS() local
534 while (++Iter != End) { in scanToNextDebugS()
[all …]
H A DSymbolCache.cpp275 auto Iter = GlobalOffsetToSymbolId.find(Offset); in getOrCreateGlobalSymbolByOffset() local
276 if (Iter != GlobalOffsetToSymbolId.end()) in getOrCreateGlobalSymbolByOffset()
277 return Iter->second; in getOrCreateGlobalSymbolByOffset()
305 if (Iter != SymTabOffsetToSymbolId.end()) in getOrCreateInlineSymbol()
306 return Iter->second; in getOrCreateInlineSymbol()
342 if (Iter != AddressToSymbolId.end()) in findFunctionSymbolBySectOffset()
343 return getSymbolById(Iter->second); in findFunctionSymbolBySectOffset()
387 if (Iter != AddressToPublicSymId.end()) in findPublicSymbolBySectOffset()
388 return getSymbolById(Iter->second); in findPublicSymbolBySectOffset()
628 if (Iter != FileNameOffsetToId.end()) in getOrCreateSourceFile()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterUtilities.cpp36 auto Iter = llvm::find_if( in getRegset() local
38 return Iter == Notes.end() ? DataExtractor() : DataExtractor(Iter->data); in getRegset()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp105 using Iter = MachineBasicBlock::iterator; typedef
248 Iter replaceWithCompactBranch(MachineBasicBlock &MBB, Iter Branch,
270 bool searchForward(MachineBasicBlock &MBB, Iter Slot) const;
275 bool searchSuccBBs(MachineBasicBlock &MBB, Iter Slot) const;
323 static void addLiveInRegs(Iter Filler, MachineBasicBlock &MBB) { in addLiveInRegs()
557 Iter Branch, in replaceWithCompactBranch()
608 for (Iter I = MBB.begin(); I != MBB.end(); ++I) { in runOnMachineBasicBlock()
799 Iter Slot) const { in searchForward()
806 Iter Filler; in searchForward()
823 Iter Slot) const { in searchSuccBBs()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DSourceMgr.h66 CircularSourceMgr(ArrayRef<UniqueInst> S, unsigned Iter) in CircularSourceMgr() argument
67 : Sequence(S), Current(0U), Iterations(Iter ? Iter : DefaultIterations) {} in CircularSourceMgr()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp331 auto Iter = in addExistingInclude() local
333 Iter->second.push_back(std::move(IncludeToAdd)); in addExistingInclude()
334 auto &CurInclude = Iter->second.back(); in addExistingInclude()
372 auto Iter = IncludesByPriority.find(Priority); in insert() local
373 if (Iter != IncludesByPriority.end()) { in insert()
374 for (const auto *Inc : Iter->second) { in insert()
399 auto Iter = ExistingIncludes.find(IncludeName); in remove() local
400 if (Iter == ExistingIncludes.end()) in remove()
402 for (const auto &Inc : Iter->second) { in remove()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DInterfaceFile.cpp44 auto Iter = lower_bound(ParentUmbrellas, Target_, in addParentUmbrella() local
48 if ((Iter != ParentUmbrellas.end()) && !(Target_ < Iter->first)) { in addParentUmbrella()
49 Iter->second = std::string(Parent); in addParentUmbrella()
53 ParentUmbrellas.emplace(Iter, Target_, std::string(Parent)); in addParentUmbrella()
61 auto Iter = in addRPath() local
65 if ((Iter != RPaths.end()) && (*Iter == Entry)) in addRPath()
68 RPaths.emplace(Iter, Entry); in addRPath()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp137 auto Iter = CountFrequencies.begin(); in computeDetailedSummary() local
152 while (CurrSum < DesiredCount && Iter != End) { in computeDetailedSummary()
153 Count = Iter->first; in computeDetailedSummary()
154 uint32_t Freq = Iter->second; in computeDetailedSummary()
157 Iter++; in computeDetailedSummary()

12345678