Home
last modified time | relevance | path

Searched refs:find_first (Results 1 – 25 of 36) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenInsert.cpp102 unsigned find_first() const { in find_first() function
103 int First = BitVector::find_first(); in find_first()
192 for (unsigned R = P.RS.find_first(); R; R = P.RS.find_next(R)) in operator <<()
940 for (unsigned VR = InsDefs.find_first(); VR; VR = InsDefs.find_next(VR)) { in collectInBlock()
961 for (unsigned VR = InsDefs.find_first(); VR; VR = InsDefs.find_next(VR)) in collectInBlock()
971 for (unsigned VR = BlockDefs.find_first(); VR; VR = BlockDefs.find_next(VR)) in collectInBlock()
990 for (unsigned R = Regs[S].find_first(); R; R = Regs[S].find_next(R)) { in findRemovableRegisters()
1250 for (unsigned R = Rs.find_first(); R; R = Rs.find_next(R)) { in stats()
1277 for (unsigned R = TT.find_first(); R; R = TT.find_next(R)) in selectCandidates()
1282 for (unsigned R = AllRMs.find_first(); R; R = AllRMs.find_next(R)) { in selectCandidates()
[all …]
H A DHexagonBitSimplify.cpp93 unsigned find_first() const { in find_first() function
94 int First = Bits.find_first(); in find_first()
137 for (unsigned R = Rs.find_first(); R; R = Rs.find_next(R)) in insert()
142 for (unsigned R = Rs.find_first(); R; R = Rs.find_next(R)) in remove()
203 for (unsigned R = P.RS.find_first(); R; R = P.RS.find_next(R)) in operator <<()
1507 Register DR = Defs.find_first(); in processBlock()
1583 for (Register R = AVs.find_first(); R; R = AVs.find_next(R)) { in findMatch()
1640 for (Register R = Defs.find_first(); R; R = Defs.find_next(R)) { in processBlock()
2260 for (unsigned S = AVs.find_first(); S; S = AVs.find_next(S)) { in genBitSplit()
2505 for (unsigned R = AVs.find_first(); R != 0; R = AVs.find_next(R)) { in simplifyExtractLow()
[all …]
H A DHexagonFrameLowering.cpp328 for (int x = CSR.find_first(); x >= 0; x = CSR.find_next(x)) { in needsStackFrame()
1550 for (int x = Regs.find_first(); x >= 0; x = Regs.find_next(x)) { in dump_registers()
1604 for (int x = Reserved.find_first(); x >= 0; x = Reserved.find_next(x)) { in assignCalleeSavedSpillSlots()
1619 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
1624 for (int x = TmpSup.find_first(); x >= 0; x = TmpSup.find_next(x)) { in assignCalleeSavedSpillSlots()
1643 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
1677 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
1706 for (int x = SRegs.find_first(); x >= 0; x = SRegs.find_next(x)) { in assignCalleeSavedSpillSlots()
2598 int F = Regs.find_first(); in shouldInlineCSR()
H A DHexagonSplitDouble.cpp233 for (int x = DoubleRegs.find_first(); x >= 0; x = DoubleRegs.find_next(x)) { in partitionRegisters()
244 for (int x = DoubleRegs.find_first(); x >= 0; x = DoubleRegs.find_next(x)) { in partitionRegisters()
282 for (int x = DoubleRegs.find_first(); x >= 0; x = DoubleRegs.find_next(x)) { in partitionRegisters()
H A DHexagonRegisterInfo.cpp202 for (int x = Reserved.find_first(); x >= 0; x = Reserved.find_next(x)) in getReservedRegs()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseBitVector.h127 /// find_first - Returns the index of the first set bit.
128 int find_first() const { in find_first() function
347 unsigned BitPos = Iter->find_first(); in AdvanceToFirstNonZero()
379 NextSetBitNumber = Iter->find_first(); in AdvanceToNextNonZero()
780 int find_first() const { in find_first() function
784 return (First.index() * ElementSize) + First.find_first(); in find_first()
H A DSmallBitVector.h230 int find_first() const { in find_first() function
237 return getPointer()->find_first(); in find_first()
H A DBitVector.h53 : const_set_bits_iterator_impl(Parent, Parent.find_first()) {} in const_set_bits_iterator_impl()
300 int find_first() const { return find_first_in(0, Size); } in find_first() function
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16InstrInfo.cpp385 Reg = Available.find_first(); in loadImmediate()
388 Reg = Candidates.find_first(); in loadImmediate()
401 SpReg = Available.find_first(); in loadImmediate()
403 SpReg = Candidates.find_first(); in loadImmediate()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFRegisters.cpp359 int U = Units.find_first();
381 int F = Regs.find_first(); in makeRegRef()
396 for (int U = RG.Units.find_first(); U >= 0; U = RG.Units.find_next(U)) { in makeRegRef()
H A DStackSlotColoring.cpp297 NextColors[I] = AllColors[I].find_first(); in InitializeSlots()
310 Color = UsedColors[StackID].find_first(); in ColorSlot()
H A DGlobalMerge.cpp478 << GlobalSet.find_first() << "\n"); in doMerge()
481 ssize_t i = GlobalSet.find_first(); in doMerge()
H A DShrinkWrap.cpp185 for (int Reg = SavedRegs.find_first(); Reg != -1; in getCurrentCSRs()
H A DStackColoring.cpp843 for (int pos = MBBLiveness.LiveIn.find_first(); pos != -1; in calculateLiveIntervals()
H A DPrologEpilogInserter.cpp790 for (FreeStart = StackBytesFree.find_first(); FreeStart != -1; in scavengeStackSlot()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DStackLifetime.h172 for (int Idx = V.find_first(); Idx >= 0; Idx = V.find_next(Idx))
/freebsd/contrib/dialog/
H A Dtextbox.c212 find_first(MY_OBJ * obj, char *buffer, long length) in find_first() function
257 *first_pos = find_first(obj, buftab, i); in tabize()
481 first = find_first(obj, obj->buf, size = obj->in_buf); in print_position()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DImmutableGraph.h195 iterator begin() const { return iterator{*this, V.find_first()}; } in begin()
283 iterator begin() const { return iterator{*this, V.find_first()}; } in begin()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DTypeSystem.cpp30 return (LanguageType)bitvector.find_first(); in GetSingularLanguage()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h47 int I = Map.Present.find_first(); in HashTableIterator()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMSFBuilder.cpp134 int Block = FreeBlocks.find_first(); in allocateBlocks()
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DConstructCompositionT.h208 int Idx = clausePresence[llvm::omp::Clause::OMPC_if].find_first(); in mergeIf()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp475 {AB.find_first(), std::make_pair(J + 1, I + 1)}); in findIndependencePairs()
1377 int I = IsNotExpandedFile.find_first(); in findMainViewFileID()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCFrameLowering.cpp504 int FirstScratchReg = BV.find_first(); in findScratchRegister()
2397 unsigned VolatileVFReg = BVAllocatable.find_first(); in assignCalleeSavedSpillSlots()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DThumb1FrameLowering.cpp774 PopReg = PopFriendly.find_first(); in emitPopSpecialFixUp()

12