| /llvm-project-15.0.7/lldb/docs/ |
| H A D | python_api.rst | 27 :skip: SBDebugger_Create 28 :skip: SBDebugger_Create 29 :skip: SBDebugger_Destroy 43 :skip: SBDebugger_Terminate 46 :skip: SBFile_MakeBorrowed 49 :skip: SBHostOS_GetLLDBPath 57 :skip: SBHostOS_ThreadJoin 95 :skip: command 96 :skip: in_range 97 :skip: is_numeric_type [all …]
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | skip-function-bodies.mm | 1 #include "skip-function-bodies.h" 31 // CHECK: skip-function-bodies.mm:3:7: ClassDecl=A:3:7 (Definition) Extent=[3:1 - 14:2] 32 // CHECK: skip-function-bodies.mm:4:9: ClassDecl=B:4:9 (Definition) Extent=[4:3 - 4:13] 33 // CHECK: skip-function-bodies.mm:6:1: CXXAccessSpecifier=:6:1 (Definition) Extent=[6:1 - 6:8] 35 // CHECK-NOT: skip-function-bodies.mm:8:12: StructDecl=C:8:12 (Definition) Extent=[8:5 - 10:6] 36 // CHECK-NOT: skip-function-bodies.mm:9:12: CXXMethod=d:9:12 (Definition) Extent=[9:7 - 9:18] 38 // CHECK: skip-function-bodies.mm:13:11: TypeRef=class A::B:4:9 Extent=[13:11 - 13:12] 39 // CHECK: skip-function-bodies.mm:16:12: ObjCInterfaceDecl=F:16:12 Extent=[16:1 - 18:5] 44 // CHECK-NOT: skip-function-bodies.mm:21:11: TypeRef=class A:3:7 Extent=[21:11 - 21:12] 45 // CHECK: skip-function-bodies.mm:26:6: FunctionDecl=J:26:6 Extent=[26:1 - 26:9] [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | YAMLParser.h | 97 void skip(); 101 skip(); in validate() 175 virtual void skip() {} in skip() function 305 void skip() override { in skip() function 307 Key->skip(); in skip() 309 Val->skip(); in skip() 403 i->skip(); in skip() 438 void skip() override { yaml::skip(*this); } in skip() function 495 void skip() override { yaml::skip(*this); } in skip() function 539 bool skip(); [all …]
|
| /llvm-project-15.0.7/compiler-rt/test/profile/ |
| H A D | instrprof-dump.c | 15 int skip(int); 22 skip(0); /* skipped region */ in main() 28 skip(1); in main() 45 __attribute__((noinline)) int skip(int X) { in skip() function
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Affine/Analysis/ |
| H A D | NestedMatcher.cpp | 59 : nestedPatterns(), filter(std::move(filter)), skip(nullptr) { in NestedPattern() 64 : nestedPatterns(), filter(other.filter), skip(other.skip) { in NestedPattern() 71 skip = other.skip; in operator =() 99 if (skip == op) { in matchOne() 117 nestedPattern.skip = op; in matchOne()
|
| /llvm-project-15.0.7/llvm/test/Analysis/BasicAA/ |
| H A D | assume-index-positive.ll | 6 define void @test1(ptr %ptr, i32 %skip) { 10 %gt = icmp sgt i32 %skip, -1 12 %stride = add nsw nuw i32 %skip, 6 24 define void @test2(ptr %ptr, i32 %skip) { 28 %stride = add nsw nuw i32 %skip, 6 43 define void @test3(ptr %ptr, i32 %skip) { 47 %gt = icmp sgt i32 %skip, -3 49 %stride = add nsw nuw i32 %skip, 6 61 define void @test4(ptr %ptr, i32 %skip) { 65 %gt = icmp sge i32 %skip, 0 [all …]
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/ |
| H A D | symbolize-filter-markup-context-line-elision.test | 10 keep{{{module:0:a.o:elf:ab}}}skip 11 skip{{{mmap:0:1:load:0:r:0}}}skip 12 keep{{{module:1:b.o:elf:cd}}}skip
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | disasm-stress-test.py | 112 def __init__(self, byte_width, log_file, start=0, skip=1): argument 116 self.m_skip = skip 189 skip = 1 192 if args.skip is not None: 193 skip = args.skip 195 args.bytes, log_file, start, skip)
|
| /llvm-project-15.0.7/llvm/test/MC/AsmParser/ |
| H A D | directive_space.s | 21 .skip 1 26 .skip TEST0 - TEST1 31 .skip -((TEST0 - TEST1) > 0)
|
| /llvm-project-15.0.7/libcxx/benchmarks/ |
| H A D | CartesianBenchmarks.h | 31 static auto skip(const B& Bench, int) -> decltype(Bench.skip()) { 32 return Bench.skip(); 35 static auto skip(const B& Bench, char) { in skip() function 43 if (!internal::skip(Bench, 0)) { in makeBenchmarkFromValuesImpl()
|
| /llvm-project-15.0.7/mlir/docs/ |
| H A D | DebugActions.md | 184 a "skip" and "count" value. The "skip" value is used to skip a certain number of 187 including any executions that have been skipped). If the "skip" value is 189 action will always execute after the "skip" value has been reached. For example, 190 a counter for a debug action with `skip=47` and `count=2`, would skip the first 205 attach the counter, suffixed with either `-skip` or `-count`. A `-skip` suffix 206 will set the "skip" value of the counter. A `-count` suffix will set the "count" 212 $ mlir-opt foo.mlir -mlir-debug-counter=apply-pattern-skip=47,apply-pattern-count=2 215 The above configuration would skip the first 47 executions of 219 Note: Each counter currently only has one `skip` and one `count` value, meaning 220 that sequences of `skip`/`count` will not be chained. [all …]
|
| /llvm-project-15.0.7/lldb/test/Shell/Settings/ |
| H A D | TestSettingsSet.test | 7 settings set -g target.skip-prologue false 8 settings show target.skip-prologue 9 # CHECK: target.skip-prologue (boolean) = false
|
| /llvm-project-15.0.7/llvm/test/Transforms/GVN/PRE/ |
| H A D | load-pre-split-backedge.ll | 17 ; ON: skip: 20 ; ON: skip.header_crit_edge: 35 ; OFF: skip: 48 br i1 %b, label %skip, label %header 49 skip:
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | inline-asm-stack-realign3.ll | 9 br i1 %cond, label %doit, label %skip 15 br label %skip 17 skip:
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | StatusTest.cpp | 81 bool skip = wcscmp(L"en-US", name) != 0; in TEST() local 85 if (!skip) in TEST() 89 if (!skip) in TEST() 93 if (!skip) in TEST()
|
| /llvm-project-15.0.7/llvm/test/Analysis/BlockFrequencyInfo/ |
| H A D | loop_with_branch.ll | 9 br i1 %skip_loop, label %skip, label %header, !prof !0 11 ; CHECK-NEXT: skip: float = 0.25, 12 skip:
|
| /llvm-project-15.0.7/mlir/test/IR/ |
| H A D | visitors.mlir | 81 // CHECK-LABEL: Op post-order erasures (skip) 90 // CHECK-LABEL: Block post-order erasures (skip) 95 // CHECK-LABEL: Op post-order erasures (no skip) 106 // CHECK-LABEL: Block post-order erasures (no skip) 175 // CHECK-LABEL: Op pre-order erasures (skip) 179 // CHECK-LABEL: Block pre-order erasures (skip) 184 // CHECK-LABEL: Op post-order erasures (skip) 193 // CHECK-LABEL: Block post-order erasures (skip) 198 // CHECK-LABEL: Op post-order erasures (no skip) 207 // CHECK-LABEL: Block post-order erasures (no skip)
|
| /llvm-project-15.0.7/flang/include/flang/Common/ |
| H A D | interval.h | 114 auto skip{start_ - that.start_}; in Intersection() 115 return {start_, std::min(size_, that.size_ - skip)}; in Intersection() 119 auto skip{that.start_ - start_}; in Intersection() 120 return {that.start_, std::min(that.size_, size_ - skip)}; in Intersection()
|
| /llvm-project-15.0.7/llvm/test/Instrumentation/AddressSanitizer/ |
| H A D | debug_info_noninstrumented_alloca.ll | 13 ; Won't be instrumented because of asan-skip-promotable-allocas. 19 ; Won't be instrumented because of asan-skip-promotable-allocas. 25 ; Won't be instrumented because of asan-skip-promotable-allocas.
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | YAMLParser.cpp | 1240 skip(3); in scanDocumentIndicator() 1250 skip(1); in scanFlowCollectionStart() 1269 skip(1); in scanFlowCollectionEnd() 1282 skip(1); in scanFlowEntry() 1294 skip(1); in scanBlockEntry() 1309 skip(1); in scanKey() 1346 skip(1); in scanValue() 1384 skip(1); in scanFlowScalar() 1509 skip(1); in scanAliasOrAnchor() 1555 skip(1); in scanBlockStyleIndicator() [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/dd/ |
| H A D | dd_rtl.cpp | 21 static u32 CurrentStackTrace(Thread *thr, uptr skip) { in CurrentStackTrace() argument 26 if (stack.size <= skip) in CurrentStackTrace() 28 return StackDepotPut(StackTrace(stack.trace + skip, stack.size - skip)); in CurrentStackTrace()
|
| /llvm-project-15.0.7/libunwind/src/ |
| H A D | UnwindRegistersSave.S | 47 # skip ss 48 # skip eflags 51 # skip cs 52 # skip ds 53 # skip es 54 # skip fs 55 # skip gs 99 # skip rflags 100 # skip cs 101 # skip fs [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | extract-bits.ll | 62 %skip = zext i8 %numskipbits to i32 63 %shifted = lshr i32 %val, %skip 101 %shifted = lshr i32 %val, %skip 171 %shifted = lshr i64 %val, %skip 211 %shifted = lshr i64 %val, %skip 321 %shifted = lshr i32 %val, %skip 357 %shifted = lshr i32 %val, %skip 408 %shifted = lshr i64 %val, %skip 446 %shifted = lshr i64 %val, %skip 562 %shifted = lshr i32 %val, %skip [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/ |
| H A D | global.ll | 39 ; CHECK-NEXT: .skip 4{{$}} 81 ; CHECK-NEXT: .skip 8{{$}} 116 ; CHECK-NEXT: .skip 4{{$}} 151 ; CHECK-NEXT: .skip 8{{$}} 198 ; CHECK: .skip 512{{$}} 204 ; CHECK-NEXT: .skip 8
|
| /llvm-project-15.0.7/llvm/test/Other/ |
| H A D | debugcounter-dce.ll | 2 ; RUN: opt -dce -S -debug-counter=dce-transform-skip=1,dce-transform-count=2 < %s | FileCheck %s 3 ;; Test that, with debug counters on, we will skip the first DCE opportunity, perform next 2,
|