Home
last modified time | relevance | path

Searched refs:CurrentIndex (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h488 const NameIndex *CurrentIndex = nullptr;
533 return A.CurrentIndex == B.CurrentIndex && A.DataOffset == B.DataOffset;
543 const NameIndex *CurrentIndex; variable
549 assert(CurrentName <= CurrentIndex->getNameCount()); in next()
562 NameIterator(const NameIndex *CurrentIndex, uint32_t CurrentName) in NameIterator() argument
563 : CurrentIndex(CurrentIndex), CurrentName(CurrentName) {} in NameIterator()
566 return CurrentIndex->getNameTableEntry(CurrentName);
579 return A.CurrentIndex == B.CurrentIndex && A.CurrentName == B.CurrentName;
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp798 const Header &Hdr = CurrentIndex->Hdr; in findEntryOffsetInCurrentIndex()
801 for (const NameTableEntry &NTE : *CurrentIndex) { in findEntryOffsetInCurrentIndex()
813 uint32_t Index = CurrentIndex->getBucketArrayEntry(Bucket); in findEntryOffsetInCurrentIndex()
818 uint32_t Hash = CurrentIndex->getHashArrayEntry(Index); in findEntryOffsetInCurrentIndex()
822 NameTableEntry NTE = CurrentIndex->getNameTableEntry(Index); in findEntryOffsetInCurrentIndex()
830 auto EntryOr = CurrentIndex->getEntry(&DataOffset); in getEntryAtCurrentOffset()
849 CurrentIndex != End; ++CurrentIndex) { in searchFromStartOfCurrentIndex()
857 assert(CurrentIndex && "Incrementing an end() iterator?"); in next()
864 if (IsLocal || CurrentIndex == &CurrentIndex->Section.NameIndices.back()) { in next()
870 ++CurrentIndex; in next()
[all …]
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DStratifiedSets.h318 auto CurrentIndex = getHighestParentAbove(I); in propagateAttrs() local
319 if (!Visited.insert(CurrentIndex).second) in propagateAttrs()
322 while (Links[CurrentIndex].hasBelow()) { in propagateAttrs()
323 auto &CurrentBits = Links[CurrentIndex].Attrs; in propagateAttrs()
324 auto NextIndex = Links[CurrentIndex].Below; in propagateAttrs()
327 CurrentIndex = NextIndex; in propagateAttrs()
/llvm-project-15.0.7/bolt/lib/Passes/
H A DLongJmp.cpp317 uint32_t CurrentIndex = 0; in tentativeLayoutRelocMode() local
321 LastHotIndex = CurrentIndex; in tentativeLayoutRelocMode()
325 ++CurrentIndex; in tentativeLayoutRelocMode()
330 LastHotIndex = CurrentIndex; in tentativeLayoutRelocMode()
334 ++CurrentIndex; in tentativeLayoutRelocMode()
339 CurrentIndex = 0; in tentativeLayoutRelocMode()
347 if (!ColdLayoutDone && CurrentIndex >= LastHotIndex) { in tentativeLayoutRelocMode()
370 ++CurrentIndex; in tentativeLayoutRelocMode()
/llvm-project-15.0.7/compiler-rt/lib/scudo/
H A Dscudo_tsd_shared.cpp22 static atomic_uint32_t CurrentIndex; variable
63 u32 Index = atomic_fetch_add(&CurrentIndex, 1, memory_order_relaxed); in initThread()
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/
H A Dtsd_shared.h156 const u32 Index = atomic_fetch_add(&CurrentIndex, 1U, memory_order_relaxed); in initThread()
204 atomic_u32 CurrentIndex = {}; member
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DDebugData.h341 while (IndexToAddress.count(CurrentIndex)) in getNextIndex()
342 ++CurrentIndex; in getNextIndex()
343 return CurrentIndex; in getNextIndex()
371 uint32_t CurrentIndex{0};
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp3227 size_t CurrentIndex = 0; member in __anon78e22a880c11::PhiNodeSetIterator
3327 void SkipRemovedElements(size_t &CurrentIndex) { in SkipRemovedElements() argument
3328 while (CurrentIndex < NodeList.size()) { in SkipRemovedElements()
3334 ++CurrentIndex; in SkipRemovedElements()
3340 : Set(Set), CurrentIndex(Start) {} in PhiNodeSetIterator()
3343 assert(CurrentIndex < Set->NodeList.size() && in operator *()
3345 return Set->NodeList[CurrentIndex]; in operator *()
3349 assert(CurrentIndex < Set->NodeList.size() && in operator ++()
3351 ++CurrentIndex; in operator ++()
3352 Set->SkipRemovedElements(CurrentIndex); in operator ++()
[all …]
/llvm-project-15.0.7/llvm/lib/IR/
H A DInstructions.cpp411 unsigned CurrentIndex = BeginIndex; in populateBundleOperandInfos() local
417 BOI.Begin = CurrentIndex; in populateBundleOperandInfos()
418 BOI.End = CurrentIndex + BI->input_size(); in populateBundleOperandInfos()
419 CurrentIndex = BOI.End; in populateBundleOperandInfos()