| /llvm-project-15.0.7/lldb/test/Shell/ExecControl/StopHook/ |
| H A D | stop-hook.test | 2 # Test setting stop-hook per-function 15 break set -f stop-hook.c -p "// Set breakpoint here to test target stop-hook" 16 break set -f stop-hook.c -p "// Another breakpoint which is outside of the stop-hook range" 17 target stop-hook list 26 target stop-hook disable 28 target stop-hook list 36 target stop-hook enable 38 target stop-hook list 69 target stop-hook delete 71 target stop-hook list [all …]
|
| H A D | stop-hook-threads.test | 1 # RUN: %clangxx_host -std=c++11 %p/Inputs/stop-hook-threads.cpp -g -o %t 2 # RUN: %lldb -b -s %p/Inputs/stop-hook-threads-1.lldbinit -s %s -f %t \ 4 # RUN: %lldb -b -s %p/Inputs/stop-hook-threads-2.lldbinit -s %s -f %t \ 13 break set -f stop-hook-threads.cpp -p "Set break point at this line" 14 target stop-hook list 29 # CHECK-FILTER-NEXT: script print('Hit stop hook')
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | IntervalMapTest.cpp | 104 EXPECT_EQ(150u, I.stop()); in TEST() 117 EXPECT_EQ(150u, I.stop()); in TEST() 126 EXPECT_EQ(150u, I.stop()); in TEST() 133 EXPECT_EQ(150u, I.stop()); in TEST() 139 EXPECT_EQ(200u, I.stop()); in TEST() 146 EXPECT_EQ(200u, I.stop()); in TEST() 153 EXPECT_EQ(150u, I.stop()); in TEST() 159 EXPECT_EQ(160u, I.stop()); in TEST() 166 EXPECT_EQ(160u, I.stop()); in TEST() 189 EXPECT_EQ(150u, I.stop()); in TEST() [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/ |
| H A D | warn-on-out-of-range-start-stop-address.test | 1 ## This test checks warning messages if --start-address/--stop-address 15 # RUN: llvm-objdump --file-headers --start-address=0x1004 --stop-address=0x1006 %t 2>&1 \ 21 # RUN: llvm-objdump --file-headers --start-address=0x1005 --stop-address=0x1006 %t 2>&1 \ 27 # RUN: llvm-objdump --file-headers --start-address=0x1405 --stop-address=0x1406 %t 2>&1 \ 31 # RUN: llvm-objdump --file-headers --stop-address=0x1000 %t 2>&1 \ 34 ## - Range ends at UINT64_MAX. (--stop-address defaults to UINT64_MAX) 43 # RUN: llvm-objdump --file-headers --start-address=0x1000 --stop-address=0x1004 %t 2>&1 \ 49 # RUN: llvm-objdump --file-headers --start-address=0x1001 --stop-address=0x1003 %t 2>&1 \ 55 # RUN: llvm-objdump --file-headers --start-address=0xfff --stop-address=0x1005 %t 2>&1 \ 113 # RUN: llvm-objdump --file-headers --start-address=0x1 --stop-address=0x3 %t.3 2>&1 \ [all …]
|
| /llvm-project-15.0.7/openmp/runtime/src/ |
| H A D | extractExternal.cpp | 36 void stop(char *errorMsg) { in stop() function 72 stop("rstream.getBuf: Error opening file"); in getBuf() 152 stop("StringTable: Unexpected EOF"); in StringTable() 168 stop("StringTable: String too long"); in StringTable() 307 stop("hideSymbols: Unexpected EOF"); in hideSymbols() 319 stop("hideSymbols: Unexpected EOF"); in hideSymbols() 322 stop("hideSymbols: File read error"); in hideSymbols() 352 stop("hideSymbols: Unexpected EOF"); in hideSymbols() 355 stop("hideSymbols: File read error"); in hideSymbols() 362 stop("hideSymbols: File write error"); in hideSymbols() [all …]
|
| /llvm-project-15.0.7/lldb/test/Shell/ExecControl/StopHook/Inputs/ |
| H A D | stop-hook-threads-2.lldbinit | 1 break set -f stop-hook-threads.cpp -p "Break here to set up the stop hook" 2 break set -f stop-hook-threads.cpp -p "Break here to test that the stop-hook" 4 target stop-hook add -x 2 -o "expr lldb_val += 1" -o "thread list" 5 target stop-hook add -G true -o "script print('Hit stop hook')
|
| H A D | stop-hook-threads-1.lldbinit | 1 break set -f stop-hook-threads.cpp -p "Break here to set up the stop hook" 2 break set -f stop-hook-threads.cpp -p "Break here to test that the stop-hook" 4 target stop-hook add -G true
|
| /llvm-project-15.0.7/compiler-rt/test/tsan/ |
| H A D | fd_close_norace3.cpp | 8 void *Thread(void *stop) { in Thread() argument 9 while (!__atomic_load_n((int *)stop, __ATOMIC_RELAXED)) in Thread() 15 int stop = 0; in main() local 19 pthread_create(&th[i], 0, Thread, &stop); in main() 21 __atomic_store_n(&stop, 1, __ATOMIC_RELAXED); in main()
|
| H A D | stress.cpp | 9 volatile long stop; variable 22 while (!stop) { in Thread() 74 ANNOTATE_BENIGN_RACE(stop); in main() 91 stop = 1; in main()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | IntervalMap.h | 645 stop(i - 1) = stop(i); in insertFrom() 649 stop(i - 1) = b; in insertFrom() 660 stop(i) = b; in insertFrom() 678 stop(i) = b; in insertFrom() 757 stop(i) = Stop; in insert() 1073 KeyT stop() const { in stop() function 1205 rootBranch().stop(n) = node[n].template get<Leaf>().stop(size[n]-1); in branchRoot() 1244 rootBranch().stop(n) = Node[n].template get<Branch>().stop(Size[n]-1); in splitRoot() 2136 KeyType stop() const { in stop() function 2137 KeyType ak = a().stop(); in stop() [all …]
|
| H A D | CoalescingBitVector.h | 88 Bits += 1 + It.stop() - It.start(); in count() 110 insert(It.start(), It.stop()); in set() 124 assert(It.stop() >= Index && "Interval must end after Index"); in test() 148 IndexT Stop = It.stop(); in reset() 168 IndexT Stop = It.stop(); 203 IndexT CurrStop = It.stop(); in intersectWithComplement() 226 ItL.start() == ItR.start() && ItL.stop() == ItR.stop()) { 270 CachedStop = MapIterator.stop(); in resetCache() 381 if (It.start() != It.stop()) in print() 382 OS << ", " << It.stop(); in print() [all …]
|
| /llvm-project-15.0.7/libc/test/src/math/exhaustive/ |
| H A D | exhaustive_test.cpp | 24 T start, T stop, mpfr::RoundingMode rounding) { in test_full_range() argument 38 if (current_value == stop) in test_full_range() 42 if (stop >= increment && stop - increment >= current_value) { in test_full_range() 45 range_end = stop; in test_full_range() 47 int pc = 100.0 * double(range_end - start) / double(stop - start); in test_full_range()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | regengine.inc | 145 const char *stop; 157 if (stop < start) 177 m->endp = stop; 385 stp = stop; 392 if (tail == stop) 410 stp = stop; 449 stp = stop; 509 assert(sp == stop); 545 if (sp == stop) 607 if (sp != stop) [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | ppc-passname.ll | 2 ; RUN: llc -mtriple=powerpc64le-unknown-unknown < %s -debug-pass=Structure -stop-before=ppc-loop-in… 14 ; RUN: llc -mtriple=powerpc64le-unknown-unknown < %s -debug-pass=Structure -stop-before=ppc-toc-reg… 19 ; RUN: llc -mtriple=powerpc64le-unknown-unknown < %s -debug-pass=Structure -stop-after=ppc-toc-reg-… 26 ; RUN: llc -mtriple=powerpc64le-unknown-unknown < %s -debug-pass=Structure -stop-before=ppc-vsx-cop… 31 ; RUN: llc -mtriple=powerpc64le-unknown-unknown < %s -debug-pass=Structure -stop-after=ppc-vsx-copy… 38 ; RUN: llc -mtriple=powerpc64le-unknown-unknown < %s -debug-pass=Structure -stop-before=ppc-early-r… 43 ; RUN: llc -mtriple=powerpc64le-unknown-unknown < %s -debug-pass=Structure -stop-after=ppc-early-re… 55 ; RUN: llc -mtriple=powerpc64le-unknown-unknown < %s -debug-pass=Structure -stop-after=ppc-vsx-fma-… 62 ; RUN: llc -mtriple=powerpc64le-unknown-unknown < %s -debug-pass=Structure -stop-before=ppc-vsx-swa… 67 ; RUN: llc -mtriple=powerpc64le-unknown-unknown < %s -debug-pass=Structure -stop-after=ppc-vsx-swap… [all …]
|
| /llvm-project-15.0.7/lldb/test/Shell/Watchpoint/ |
| H A D | netbsd-nouserdbregs.test | 6 # RUN: %lldb -b -o 'settings set interpreter.stop-command-source-on-error false' -s %s %t.out 2>&1 … 8 settings show interpreter.stop-command-source-on-error 9 # CHECK: interpreter.stop-command-source-on-error (boolean) = false 16 # CHECK: stop reason = breakpoint 20 # CHECK: stop reason = breakpoint
|
| H A D | SetErrorCases.test | 2 # RUN: %lldb -b -o 'settings set interpreter.stop-command-source-on-error false' -s %s %t.out 2>&1 … 4 settings show interpreter.stop-command-source-on-error 5 # CHECK: interpreter.stop-command-source-on-error (boolean) = false 10 # CHECK-NEXT: stop reason = breakpoint
|
| /llvm-project-15.0.7/llvm/test/CodeGen/Generic/ |
| H A D | llc-start-stop.ll | 5 ; RUN: llc < %s -debug-pass=Structure -stop-after=loop-reduce -verify-machineinstrs -o /dev/null 2>… 13 ; RUN: llc < %s -debug-pass=Structure -stop-before=loop-reduce -o /dev/null 2>&1 | FileCheck %s -ch… 30 ; RUN: not --crash llc < %s -stop-before=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix… 32 ; RUN: not --crash llc < %s -stop-after=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix=… 39 ; RUN: not --crash llc < %s -stop-before=loop-reduce -stop-after=loop-reduce -o /dev/null 2>&1 | Fi… 41 ; DOUBLE-STOP: stop-before and stop-after specified!
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | startstop-visibility.s | 11 # RUN: ld.lld -z start-stop-visibility=default %t.o -o %t1 17 # RUN: ld.lld -z start-stop-visibility=internal %t.o -o %t2 23 # RUN: ld.lld -z start-stop-visibility=hidden %t.o -o %t3 29 # RUN: ld.lld -z start-stop-visibility=protected %t.o -o %t4 35 # RUN: not ld.lld -z start-stop-visibility=aaa %t.o -o /dev/null 36 # CHECK-ERROR: error: unknown -z start-stop-visibility= value: aaa
|
| /llvm-project-15.0.7/lld/docs/ELF/ |
| H A D | start-stop-gc.rst | 1 -z start-stop-gc 8 …ned under --gc-sections properly; consider -z nostart-stop-gc (see https://lld.llvm.org/start-stop… 20 GNU ld 2.37 added ``-z start-stop-gc`` to restore the traditional behavior 21 ld.lld 13.0.0 defaults to ``-z start-stop-gc`` and supports ``-z nostart-stop-gc`` 25 allowed GC (like ``-z start-stop-gc``).
|
| /llvm-project-15.0.7/lldb/test/Shell/Settings/ |
| H A D | TestLineMarkerColor.test | 4 settings set stop-show-line-ansi-prefix "prefix" 5 settings set stop-show-line-ansi-suffix "suffix" 9 settings set stop-show-line-ansi-prefix ${ansi.fg.green} 10 settings set stop-show-line-ansi-suffix ${ansi.normal}
|
| /llvm-project-15.0.7/lldb/test/Shell/Register/Core/ |
| H A D | x86-32-netbsd-multithread.test | 4 # CHECK: * thread #1: tid = 2, 0x08048db9, stop reason = signal SIGSEGV 5 # CHECK-NEXT: thread #2: tid = 4, 0x08048dbf, stop reason = signal 0 6 # CHECK-NEXT: thread #3: tid = 3, 0x08048dbf, stop reason = signal 0 7 # CHECK-NEXT: thread #4: tid = 1, 0xf876a147, stop reason = signal 0
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/X86/ |
| H A D | start-stop-address.test | 2 // RUN: llvm-objdump -d %t.out --start-address=0x18 --stop-address=0x2f | FileCheck %s 3 // RUN: llvm-objdump -d %t.out --start-address=0xc --stop-address=0x11 | FileCheck %s --check-prefi… 4 // RUN: llvm-objdump -d %t.out --start-address=0x40 --stop-address=0x47 | FileCheck %s --check-pref… 6 // RUN: llvm-objdump -d %t.out --stop-address=0x11 | FileCheck %s --check-prefix STOP 70 // RUN: not llvm-objdump %t.out --start-address=0x40 --stop-address=0x3f 2>&1 | FileCheck %s --chec… 71 // RUN: not llvm-objdump %t.out --start-address=0x40 --stop-address=0x40 2>&1 | FileCheck %s --chec… 72 // ERRMSG: start address should be less than stop address
|
| /llvm-project-15.0.7/lldb/test/API/api/multithreaded/ |
| H A D | test_stop-hook.cpp.template | 3 // python command in a stop hook. 44 // one that runs in the stop hook and sets a variable when it 46 // that we did indeed run the stop hook. 67 // Now add the stop hook: 68 interp.HandleCommand("target stop-hook add -o some-cmd", result); 70 throw Exception("Couldn't add a stop hook."); 128 throw Exception("Event wasn't a stop event."); 130 // At this point the stop hook should have run. Check that: 133 throw Exception("Didn't actually call stop hook.");
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/X86/ |
| H A D | instr-ref-opt-bisect.ll | 1 ; RUN: llc %s -o - -stop-after=livedebugvalues -opt-bisect-limit=0 \ 3 ; RUN: llc %s -o - -stop-after=livedebugvalues -opt-bisect-limit=10 \ 5 ; RUN: llc %s -o - -stop-after=livedebugvalues -opt-bisect-limit=20 \ 7 ; RUN: llc %s -o - -stop-after=livedebugvalues -opt-bisect-limit=30 \ 9 ; RUN: llc %s -o - -stop-after=livedebugvalues -opt-bisect-limit=40 \ 11 ; RUN: llc %s -o - -stop-after=livedebugvalues -opt-bisect-limit=100 \ 14 ; RUN: llc %s -o - -stop-after=livedebugvalues -fast-isel=true \ 16 ; RUN: llc %s -o - -stop-after=livedebugvalues -fast-isel=true \ 18 ; RUN: llc %s -o - -stop-after=livedebugvalues -fast-isel=true \ 20 ; RUN: llc %s -o - -stop-after=livedebugvalues -fast-isel=true \
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | bb_rotate.ll | 13 ; CHECK: %.stop 20 br i1 %val2, label %.stop, label %.exit, !prof !10 44 br label %.stop 46 .stop:
|