Home
last modified time | relevance | path

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

12345

/llvm-project-15.0.7/lldb/test/API/lang/objc/direct-dispatch-step/
H A Dstepping-tests.m94 [obj release]; // Stop Location 2
97 [obj release]; // Stop Location 4
99 obj = [OverridesALot new]; // Stop Location 5
100 [obj release]; // Stop Location 6
102 obj = [[OverridesALot alloc] init]; // Stop Location 7
103 [obj self]; // Stop Location 8
106 [obj retain]; // Stop Location 11
107 [obj autorelease]; // Stop Location 12
108 [obj boring]; // Stop Location 13
109 [obj release]; // Stop Location 14
[all …]
/llvm-project-15.0.7/compiler-rt/lib/fuzzer/
H A DFuzzerTracePC.cpp40 if (Start == Stop) return; in HandleInline8bitCountersInit()
48 uint8_t *AlignedStop = RoundDownByPage(Stop); in HandleInline8bitCountersInit()
65 assert(M.Size() == (size_t)(Stop - Start)); in HandleInline8bitCountersInit()
66 assert(M.Stop() == Stop); in HandleInline8bitCountersInit()
86 Modules[i].Stop()); in PrintModuleInfo()
206 if (TE >= M.Start && TE < M.Stop) in PCTableEntryIdx()
208 TotalTEs += M.Stop - M.Start; in PCTableEntryIdx()
217 size_t Size = M.Stop - M.Start; in PCTableEntryByIdx()
238 assert(M.Start < M.Stop); in IterateCoveredFunctions()
260 size_t N = PCTE.Stop - PCTE.Start; in SetFocusFunction()
[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()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DInterferenceCache.cpp132 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()
200 PrevPos = Stop; 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()
234 if (I == LR->end() || I->start >= Stop) in update()
236 I = LR->advanceTo(I, Stop); in update()
[all …]
H A DSplitKit.cpp217 SlotIndex Start, Stop; in calcLiveBlockInfo() local
250 while (LVI->end < Stop) { in calcLiveBlockInfo()
292 if (LVI->start < Stop) in calcLiveBlockInfo()
1623 SlotIndex Start, Stop; in splitLiveThroughBlock() local
1673 useIntv(Start, Stop); in splitLiveThroughBlock()
1693 useIntv(Idx, Stop); in splitLiveThroughBlock()
1714 useIntv(Idx, Stop); in splitLiveThroughBlock()
1725 SlotIndex Start, Stop; in splitRegInBlock() local
1818 SlotIndex Start, Stop; in splitRegOutBlock() local
1854 useIntv(Idx, Stop); in splitRegOutBlock()
[all …]
/llvm-project-15.0.7/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.h752 void insert(unsigned i, unsigned Size, NodeRef Node, KeyT Stop) { in insert() argument
757 stop(i) = Stop; in insert()
1540 void setNodeStop(unsigned Level, KeyT Stop);
1547 bool canCoalesceRight(KeyT Stop, ValT x);
1654 iterator::canCoalesceRight(KeyT Stop, ValT Value) { in canCoalesceRight() argument
1678 iterator::setNodeStop(unsigned Level, KeyT Stop) { in setNodeStop() argument
1685 P.node<Branch>(Level).stop(P.offset(Level)) = Stop; in setNodeStop()
1690 P.node<RootBranch>(Level).stop(P.offset(Level)) = Stop; in setNodeStop()
1786 setNodeStop(Level, Stop); in insertNode()
2031 KeyT Stop = Node[Pos]->stop(NewSize[Pos]-1); in overflow() local
[all …]
/llvm-project-15.0.7/llvm/lib/Support/
H A DParallel.cpp53 if (Stop) in ThreadPoolExecutor()
64 if (Stop) in stop()
66 Stop = true; in stop()
102 Cond.wait(Lock, [&] { return Stop || !WorkStack.empty(); }); in work()
103 if (Stop) in work()
112 std::atomic<bool> Stop{false}; member in llvm::parallel::detail::__anond7d369990111::ThreadPoolExecutor
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/libcxxabi/test/
H A Dforced_unwind2.pass.cpp26 struct Stop;
29 struct Stop<R (*)(Args...)> { struct
47 _Unwind_ForcedUnwind(exc, Stop<_Unwind_Stop_Fn>::stop, 0); in forced_unwind() argument
H A Dforced_unwind3.pass.cpp42 struct Stop;
45 struct Stop<R (*)(Args...)> { struct
64 _Unwind_ForcedUnwind(exc, Stop<_Unwind_Stop_Fn>::stop, 0); in forced_unwind() argument
H A Dforced_unwind1.pass.cpp33 struct Stop;
36 struct Stop<R (*)(Args...)> { struct
59 _Unwind_ForcedUnwind(exc, Stop<_Unwind_Stop_Fn>::stop, 0); in forced_unwind() argument
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/source/API/
H A DSBTrace.cpp97 SBError SBTrace::Stop() { in Stop() function in SBTrace
102 else if (llvm::Error err = m_opaque_sp->Stop()) in Stop()
107 SBError SBTrace::Stop(const SBThread &thread) { in Stop() function in SBTrace
112 else if (llvm::Error err = m_opaque_sp->Stop({thread.GetThreadID()})) in Stop()
/llvm-project-15.0.7/llvm/test/Transforms/GlobalOpt/
H A D2009-03-05-dbg.ll7 @Stop = internal global i32 0, !dbg !0
18 store i32 0, i32* @Stop, align 4, !dbg !15
24 store i32 1, i32* @Stop, align 4, !dbg !17
43 %0 = load i32, i32* @Stop, align 4, !dbg !19
72 !1 = !DIGlobalVariable(name: "Stop", scope: !2, file: !3, line: 2, type: !5, isLocal: true, isDefin…
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/tests/
H A Dwrappers_cpp_test.cpp151 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()
/llvm-project-15.0.7/llvm/lib/Target/M68k/
H A DM68kCollapseMOVEMPass.cpp46 int Stop; member in __anond2face1f0111::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()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBTrace.i26 SBError Stop();
28 SBError Stop(const SBThread &thread);
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBTrace.h109 SBError Stop();
118 SBError Stop(const SBThread &thread);
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSIOptimizeExecMasking.cpp45 bool isRegisterInUseBetween(MachineInstr &Stop, MachineInstr &Start,
48 bool isRegisterInUseAfter(MachineInstr &Stop, MCRegister Reg) const;
363 bool SIOptimizeExecMasking::isRegisterInUseBetween(MachineInstr &Stop, in isRegisterInUseBetween() argument
370 LR.addLiveOuts(*Stop.getParent()); in isRegisterInUseBetween()
373 MachineBasicBlock::reverse_iterator E(Stop); in isRegisterInUseBetween()
378 for (; A != Stop.getParent()->rend() && A != Stop; ++A) { in isRegisterInUseBetween()
387 bool SIOptimizeExecMasking::isRegisterInUseAfter(MachineInstr &Stop, in isRegisterInUseAfter() argument
389 return isRegisterInUseBetween(Stop, *Stop.getParent()->rbegin(), Reg, true); in isRegisterInUseAfter()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepot.cpp98 void Stop();
157 void CompressThread::Stop() { in Stop() function in __sanitizer::__anon00152a2d0111::CompressThread
236 void StackDepotStopBackgroundThread() { compress_thread.Stop(); } in StackDepotStopBackgroundThread()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dtypo-correction.cpp549 static void Stop(); // expected-note {{'Thread::Stop' declared here}}
555 void Stop(int); // expected-note {{'Stop' declared here}}
563 m->Stop(); // expected-error-re {{too few arguments to function call, expected 1, have 0{{$}}}} in test()
564 Stop(); // expected-error {{use of undeclared identifier 'Stop'; did you mean 'Thread::Stop'?}} in test()
/llvm-project-15.0.7/lldb/test/API/commands/expression/po_verbosity/
H A Dmain.m8 return 0; // Stop here
/llvm-project-15.0.7/lldb/test/API/lang/objc/modules-auto-import/
H A Dmain.m5 size_t ret = printf("Stop here\n"); // Set breakpoint 0 here.

12345