| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | InterferenceCache.cpp | 132 SlotIndex Start, Stop; in update() local 133 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update() 169 if (StartI >= Stop) in update() 182 if (StartI >= Stop) in update() 191 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; in update() 200 PrevPos = Stop; in update() 211 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update() 217 if (!I.valid() || I.start() >= Stop) in update() 219 I.advanceTo(Stop); in update() 220 bool Backup = !I.valid() || I.start() >= Stop; in update() [all …]
|
| H A D | SplitKit.cpp | 216 SlotIndex Start, Stop; in calcLiveBlockInfo() local 217 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB); in calcLiveBlockInfo() 222 if (UseI == UseE || *UseI >= Stop) { in calcLiveBlockInfo() 227 assert(LVI->end >= Stop && "range ends mid block with no uses"); in calcLiveBlockInfo() 233 while (UseI != UseE && *UseI < Stop); in calcLiveBlockInfo() 235 assert(BI.LastInstr < Stop); in calcLiveBlockInfo() 249 while (LVI->end < Stop) { in calcLiveBlockInfo() 251 if (++LVI == LVE || LVI->start >= Stop) { in calcLiveBlockInfo() 287 if (LVI->end == Stop && ++LVI == LVE) in calcLiveBlockInfo() 291 if (LVI->start < Stop) in calcLiveBlockInfo() [all …]
|
| H A D | LiveDebugVariables.cpp | 967 SlotIndex Stop = LIS.getMBBEndIdx(MBB); in extendDef() local 977 if (Segment->end < Stop) { in extendDef() 978 Stop = Segment->end; in extendDef() 979 Kills = {Stop, {LII.first}}; in extendDef() 980 } else if (Segment->end == Stop && Kills) { in extendDef() 1001 if (I.valid() && I.start() < Stop) { in extendDef() 1002 Stop = I.start(); in extendDef() 1007 if (Start < Stop) { in extendDef() 1009 I.insert(Start, Stop, std::move(ExtDbgValue)); in extendDef() 1751 SlotIndex Stop = I.stop(); in emitDebugValues() local [all …]
|
| /openbsd-src/gnu/llvm/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 | 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); 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, Node.start(i)); in canCoalesceRight() 1709 return Node.value(0) == Value && Traits::adjacent(Stop, Node.start(0)); in canCoalesceRight() 1717 iterator::setNodeStop(unsigned Level, KeyT Stop) { in setNodeStop() argument [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | Parallel.cpp | 61 if (Stop) in ThreadPoolExecutor() 72 if (Stop) in stop() 74 Stop = true; in stop() 111 Cond.wait(Lock, [&] { return Stop || !WorkStack.empty(); }); in work() 112 if (Stop) in work() 121 std::atomic<bool> Stop{false}; member in llvm::parallel::detail::__anon2cb6b1800111::ThreadPoolExecutor
|
| H A D | StringRef.cpp | 148 const char *Stop = Start + (Size - N + 1); in find() local 158 } while (Start < Stop); in find() 168 } while (Start < Stop); in find() 186 } while (Start < Stop); in find()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBTrace.cpp | 118 SBError SBTrace::Stop() { in Stop() function in SBTrace 123 else if (llvm::Error err = m_opaque_sp->Stop()) in Stop() 128 SBError SBTrace::Stop(const SBThread &thread) { in Stop() function in SBTrace 133 else if (llvm::Error err = m_opaque_sp->Stop({thread.GetThreadID()})) in Stop()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/ |
| H A D | wrappers_cpp_test.cpp | 151 std::atomic_bool Stop; in TEST() local 156 std::thread *T = new std::thread([&Stop] { in TEST() 157 while (!Stop) { in TEST() 194 Stop = true; in TEST()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/M68k/ |
| H A D | M68kCollapseMOVEMPass.cpp | 46 int Stop; member in __anone3adc0e60111::MOVEMState 55 : Begin(nullptr), End(nullptr), Base(0), Start(INT_MIN), Stop(INT_MAX), in MOVEMState() 110 Start = Stop = O; in update() 117 } else if (Type == Ascending && O == Stop + 4) { in update() 118 Stop += 4; in update()
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBTrace.i | 28 SBError Stop(); 30 SBError Stop(const SBThread &thread);
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBTrace.h | 124 SBError Stop(); 133 SBError Stop(const SBThread &thread);
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/ |
| H A D | crash1.C | 18 const Date& Stop() const { return stop; } in Stop() function 42 Date(&period,source->Dates().Stop()))) in Raw_Data()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | SIOptimizeExecMasking.cpp | 45 bool isRegisterInUseBetween(MachineInstr &Stop, MachineInstr &Start, 48 bool isRegisterInUseAfter(MachineInstr &Stop, MCRegister Reg) const; 361 bool SIOptimizeExecMasking::isRegisterInUseBetween(MachineInstr &Stop, in isRegisterInUseBetween() argument 368 LR.addLiveOuts(*Stop.getParent()); in isRegisterInUseBetween() 375 for (; A != Stop.getParent()->rend() && A != Stop; ++A) { in isRegisterInUseBetween() 384 bool SIOptimizeExecMasking::isRegisterInUseAfter(MachineInstr &Stop, in isRegisterInUseAfter() argument 386 return isRegisterInUseBetween(Stop, *Stop.getParent()->rbegin(), Reg, true); in isRegisterInUseAfter()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stackdepot.cpp | 98 void Stop(); 157 void CompressThread::Stop() { in Stop() function in __sanitizer::__anon18fa72940111::CompressThread 236 void StackDepotStopBackgroundThread() { compress_thread.Stop(); } in StackDepotStopBackgroundThread()
|
| /openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/intelpt/ |
| H A D | intelpt_testcase.py | 123 self.assertSuccess(self.target().GetTrace().Stop()) 130 self.assertSBError(self.target().GetTrace().Stop(thread), error)
|
| /openbsd-src/gnu/llvm/lldb/source/Host/common/ |
| H A D | Host.cpp | 572 return {Stop, uint8_t(WSTOPSIG(wstatus))}; in Decode() 589 case WaitStatus::Stop: in format() 606 case WaitStatus::Stop: in format()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptedProcessPythonInterface.h | 38 Status Stop() override;
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | Trace.h | 243 llvm::Error Stop(llvm::ArrayRef<lldb::tid_t> tids); 253 llvm::Error Stop();
|
| /openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/ |
| H A D | test_discovery.py | 233 class Stop(Exception): class 237 raise Stop 242 self.assertRaises(Stop,
|