Home
last modified time | relevance | path

Searched refs:Stop (Results 1 – 25 of 123) sorted by relevance

12345

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterferenceCache.cpp133 SlotIndex Start, Stop; in update() local
134 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update()
168 if (StartI >= Stop) in update()
181 if (StartI >= Stop) in update()
190 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; in update()
199 PrevPos = Stop; in update()
210 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update()
216 if (!I.valid() || I.start() >= Stop) in update()
218 I.advanceTo(Stop); in update()
219 bool Backup = !I.valid() || I.start() >= Stop; in update()
[all …]
H A DSplitKit.cpp219 SlotIndex Start, Stop; in calcLiveBlockInfo() local
220 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB); in calcLiveBlockInfo()
225 if (UseI == UseE || *UseI >= Stop) { in calcLiveBlockInfo()
230 assert(LVI->end >= Stop && "range ends mid block with no uses"); in calcLiveBlockInfo()
236 while (UseI != UseE && *UseI < Stop); in calcLiveBlockInfo()
238 assert(BI.LastInstr < Stop); in calcLiveBlockInfo()
252 while (LVI->end < Stop) { in calcLiveBlockInfo()
254 if (++LVI == LVE || LVI->start >= Stop) { in calcLiveBlockInfo()
290 if (LVI->end == Stop && ++LVI == LVE) in calcLiveBlockInfo()
294 if (LVI->start < Stop) in calcLiveBlockInfo()
[all …]
H A DLiveDebugVariables.cpp968 SlotIndex Stop = LIS.getMBBEndIdx(MBB); in extendDef() local
978 if (Segment->end < Stop) { in extendDef()
979 Stop = Segment->end; in extendDef()
980 Kills = {Stop, {LII.first}}; in extendDef()
981 } else if (Segment->end == Stop && Kills) { in extendDef()
1002 if (I.valid() && I.start() < Stop) { in extendDef()
1003 Stop = I.start(); in extendDef()
1008 if (Start < Stop) { in extendDef()
1010 I.insert(Start, Stop, std::move(ExtDbgValue)); in extendDef()
1752 SlotIndex Stop = I.stop(); in emitDebugValues() local
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerTracePC.cpp39 void TracePC::HandleInline8bitCountersInit(uint8_t *Start, uint8_t *Stop) { in HandleInline8bitCountersInit() argument
40 if (Start == Stop) return; in HandleInline8bitCountersInit()
48 uint8_t *AlignedStop = RoundDownByPage(Stop); in HandleInline8bitCountersInit()
52 bool NeedLast = Stop > AlignedStop && AlignedStop >= AlignedStart; in HandleInline8bitCountersInit()
59 M.Regions[R++] = {Start, std::min(Stop, AlignedStart), true, false}; in HandleInline8bitCountersInit()
63 M.Regions[R++] = {AlignedStop, Stop, true, false}; in HandleInline8bitCountersInit()
65 assert(M.Size() == (size_t)(Stop - Start)); in HandleInline8bitCountersInit()
66 assert(M.Stop() == Stop); in HandleInline8bitCountersInit()
71 void TracePC::HandlePCsInit(const uintptr_t *Start, const uintptr_t *Stop) { in HandlePCsInit() argument
73 const PCTableEntry *E = reinterpret_cast<const PCTableEntry *>(Stop); in HandlePCsInit()
[all …]
H A DFuzzerTracePC.h72 void HandleInline8bitCountersInit(uint8_t *Start, uint8_t *Stop);
73 void HandlePCsInit(const uintptr_t *Start, const uintptr_t *Stop);
142 uint8_t *Start, *Stop; member
149 uint8_t *Stop() { return Regions[NumRegions - 1].Stop; } in Stop() function
150 size_t Size() { return Stop() - Start(); } in Size()
152 assert(P >= Start() && P < Stop()); in Idx()
168 struct { const PCTableEntry *Start, *Stop; } ModulePCTable[4096]; member
255 Modules[i].Regions[r].Stop, in CollectFeatures()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h148 IndexT Stop = It.stop(); in reset() local
149 assert(Index <= Stop && "Wrong interval for index"); in reset()
153 if (Index < Stop) in reset()
154 insert(Index + 1, Stop); in reset()
168 IndexT Stop = It.stop();
170 getNonOverlappingParts(Start, Stop, Overlaps, NonOverlappingParts);
419 void getNonOverlappingParts(IndexT Start, IndexT Stop, in getNonOverlappingParts() argument
429 bool DoesOverlap = OlapStart <= Stop && Start <= OlapStop; in getNonOverlappingParts()
438 if (NextUncoveredBit > Stop) in getNonOverlappingParts()
441 if (NextUncoveredBit <= Stop) in getNonOverlappingParts()
[all …]
H A DIntervalMap.h751 /// @param Stop Last key in subtree.
752 void insert(unsigned i, unsigned Size, NodeRef Node, KeyT Stop) { in insert() argument
757 stop(i) = Stop; in insert()
1579 void setNodeStop(unsigned Level, KeyT Stop);
1580 bool insertNode(unsigned Level, IntervalMapImpl::NodeRef Node, KeyT Stop);
1586 bool canCoalesceRight(KeyT Stop, ValT x);
1688 /// @param Stop New stop of current interval.
1693 iterator::canCoalesceRight(KeyT Stop, ValT Value) { in canCoalesceRight() argument
1701 return Node.value(i) == Value && Traits::adjacent(Stop, Node.start(i)); in canCoalesceRight()
1706 return Node.value(i) == Value && Traits::adjacent(Stop, Nod in canCoalesceRight()
1717 setNodeStop(unsigned Level,KeyT Stop) setNodeStop() argument
1788 insertNode(unsigned Level,IntervalMapImpl::NodeRef Node,KeyT Stop) insertNode() argument
2070 KeyT Stop = Node[Pos]->stop(NewSize[Pos]-1); overflow() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DParallel.cpp64 if (Stop) in ThreadPoolExecutor()
75 if (Stop) in stop()
77 Stop = true; in stop()
116 Cond.wait(Lock, [&] { return Stop || !WorkStack.empty(); }); in work()
117 if (Stop) in work()
126 std::atomic<bool> Stop{false}; member in llvm::parallel::detail::__anoncc39f2690111::ThreadPoolExecutor
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DFormatStringParsing.h75 bool Stop; variable
78 : Start(nullptr), Stop(stop) {} in Start()
81 : FS(fs), Start(start), Stop(false) {} in SpecifierResult()
84 bool shouldStop() const { return Stop; } in shouldStop()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DUse.cpp35 void Use::zap(Use *Start, const Use *Stop, bool del) { in zap() argument
36 while (Start != Stop) in zap()
37 (--Stop)->~Use(); in zap()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTrace.cpp121 SBError SBTrace::Stop() { in Stop() function in SBTrace
126 else if (llvm::Error err = m_opaque_sp->Stop()) in Stop()
131 SBError SBTrace::Stop(const SBThread &thread) { in Stop() function in SBTrace
136 else if (llvm::Error err = m_opaque_sp->Stop({thread.GetThreadID()})) in Stop()
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kCollapseMOVEMPass.cpp47 int Stop; member in __anon143e10ef0111::MOVEMState
56 : Begin(nullptr), End(nullptr), Base(0), Start(INT_MIN), Stop(INT_MAX), in MOVEMState()
111 Start = Stop = O; in update()
118 } else if (Type == Ascending && O == Stop + 4) { in update()
119 Stop += 4; in update()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInfoStream.cpp53 bool Stop = false; in reload() local
54 while (!Stop && !Reader.empty()) { in reload()
65 Stop = true; in reload()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTrace.h75 /// first stopping the process trace with \a SBTrace::Stop().
112 /// Stop tracing all threads in a live process.
122 SBError Stop();
124 /// Stop tracing a specific thread in a live process regardless of whether the
131 SBError Stop(const SBThread &thread);
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIOptimizeExecMasking.cpp46 bool isRegisterInUseBetween(MachineInstr &Stop, MachineInstr &Start,
49 bool isRegisterInUseAfter(MachineInstr &Stop, MCRegister Reg) const;
381 bool SIOptimizeExecMasking::isRegisterInUseBetween(MachineInstr &Stop, in isRegisterInUseBetween() argument
388 LR.addLiveOuts(*Stop.getParent()); in isRegisterInUseBetween()
395 for (; A != Stop.getParent()->rend() && A != Stop; ++A) { in isRegisterInUseBetween()
404 bool SIOptimizeExecMasking::isRegisterInUseAfter(MachineInstr &Stop, in isRegisterInUseAfter() argument
406 return isRegisterInUseBetween(Stop, *Stop.getParent()->rbegin(), Reg, true); in isRegisterInUseAfter()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepot.cpp98 void Stop();
157 void CompressThread::Stop() { in Stop() function in __sanitizer::__anon95470afd0111::CompressThread
236 void StackDepotStopBackgroundThread() { compress_thread.Stop(); } in StackDepotStopBackgroundThread()
/freebsd/cddl/usr.sbin/zfsd/
H A Dcallout.cc72 Callout::Stop() in Stop() function in Callout
107 cancelled = Stop(); in Reset()
/freebsd/usr.bin/bmake/tests/archives/fmt_44bsd_mod/
H A Dexpected.stderr.71 make: don't know how to make #1/20. Stop
H A Dexpected.stderr.51 make: don't know how to make verylongobjectna. Stop
H A Dexpected.stderr.61 make: don't know how to make verylongobjectn. Stop
/freebsd/usr.bin/bmake/tests/archives/fmt_44bsd/
H A Dexpected.stderr.71 make: don't know how to make #1/20. Stop
H A Dexpected.stderr.51 make: don't know how to make verylongobjectna. Stop
H A Dexpected.stderr.61 make: don't know how to make verylongobjectn. Stop
/freebsd/usr.bin/bmake/tests/archives/fmt_oldbsd/
H A Dexpected.stderr.71 make: don't know how to make #1/20. Stop
H A Dexpected.stderr.61 make: don't know how to make verylongobjectn. Stop

12345