/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | InterferenceCache.cpp | 133 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 D | SplitKit.cpp | 219 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 D | LiveDebugVariables.cpp | 968 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 D | FuzzerTracePC.cpp | 39 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 D | FuzzerTracePC.h | 72 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 D | CoalescingBitVector.h | 148 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 D | IntervalMap.h | 751 /// @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 D | Parallel.cpp | 64 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 D | FormatStringParsing.h | 75 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 D | Use.cpp | 35 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 D | SBTrace.cpp | 121 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 D | M68kCollapseMOVEMPass.cpp | 47 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 D | InfoStream.cpp | 53 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 D | SBTrace.h | 75 /// 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 D | SIOptimizeExecMasking.cpp | 46 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 D | sanitizer_stackdepot.cpp | 98 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 D | callout.cc | 72 Callout::Stop() in Stop() function in Callout 107 cancelled = Stop(); in Reset()
|
/freebsd/usr.bin/bmake/tests/archives/fmt_44bsd_mod/ |
H A D | expected.stderr.7 | 1 make: don't know how to make #1/20. Stop
|
H A D | expected.stderr.5 | 1 make: don't know how to make verylongobjectna. Stop
|
H A D | expected.stderr.6 | 1 make: don't know how to make verylongobjectn. Stop
|
/freebsd/usr.bin/bmake/tests/archives/fmt_44bsd/ |
H A D | expected.stderr.7 | 1 make: don't know how to make #1/20. Stop
|
H A D | expected.stderr.5 | 1 make: don't know how to make verylongobjectna. Stop
|
H A D | expected.stderr.6 | 1 make: don't know how to make verylongobjectn. Stop
|
/freebsd/usr.bin/bmake/tests/archives/fmt_oldbsd/ |
H A D | expected.stderr.7 | 1 make: don't know how to make #1/20. Stop
|
H A D | expected.stderr.6 | 1 make: don't know how to make verylongobjectn. Stop
|