| /llvm-project-15.0.7/llvm/test/MC/Mips/ |
| H A D | module-directive-bad.s | 6 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 10 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 14 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 18 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 22 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 30 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 38 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 46 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 54 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 62 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code [all …]
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | lifetime-extension.cpp | 71 C(bool x, C **after, C **before) : x(x), after(after), before(before) { in C() argument 72 *before = this; in C() 86 C *after, *before; in f1() local 99 C *after, *before; in f2() local 107 C *after, *before; in f3() local 120 C *after, *before; in f4() local 123 const C &c = C(coin, &after, &before) ?: C(false, &after, &before); in f4() 148 C *after, *before; in f5() local 165 C *after, *before; in f6() local 174 C *after, *before; in f7() local [all …]
|
| /llvm-project-15.0.7/mlir/test/IR/ |
| H A D | generic-visitors-interrupt.mlir | 3 // Walk is interrupted before visiting "foo" 25 // CHECK: step 2 op 'foo' before all regions 26 // CHECK: step 3 op 'bar' before all regions 44 // CHECK: step 2 op 'foo' before all regions 45 // CHECK: step 3 op 'bar0' before all regions 63 // CHECK: step 2 op 'foo' before all regions 65 // CHECK: step 4 op 'work' before all regions 67 // CHECK: step 6 op 'work' before all regions 87 // CHECK: step 2 op 'foo' before all regions 97 // Walk is skipped before visiting "foo". [all …]
|
| H A D | generic-visitors.mlir | 23 // CHECK: step 1 op 'func.func' before all regions 27 // CHECK: step 5 op 'scf.for' before all regions 28 // CHECK: step 6 op 'use0' before all regions 29 // CHECK: step 7 op 'scf.if' before all regions 30 // CHECK: step 8 op 'use1' before all regions 31 // CHECK: step 9 op 'scf.yield' before all regions 32 // CHECK: step 10 op 'scf.if' before region #1 33 // CHECK: step 11 op 'use2' before all regions 34 // CHECK: step 12 op 'scf.yield' before all regions 36 // CHECK: step 14 op 'use3' before all regions [all …]
|
| /llvm-project-15.0.7/llvm/test/Transforms/Inline/ |
| H A D | debuginline-cost-delta.ll | 5 ; CHECK-NEXT: cost before = {{.*}}, cost after = {{.*}}, threshold before = {{.*}}, threshold after… 7 ; CHECK-NEXT: cost before = {{.*}}, cost after = {{.*}}, threshold before = {{.*}}, threshold after… 9 ; CHECK-NEXT: cost before = {{.*}}, cost after = {{.*}}, threshold before = {{.*}}, threshold after… 11 ; CHECK-NEXT: cost before = {{.*}}, cost after = {{.*}}, threshold before = {{.*}}, threshold after…
|
| H A D | inline-cost-annotation-pass.ll | 5 ; CHECK: cost before = {{.*}}, cost after = {{.*}}, threshold before = {{.*}}, threshold after = {… 7 ; CHECK: cost before = {{.*}}, cost after = {{.*}}, threshold before = {{.*}}, threshold after = {…
|
| /llvm-project-15.0.7/mlir/lib/Analysis/DataFlow/ |
| H A D | DenseAnalysis.cpp | 74 const AbstractDenseLattice *before; in visitOperation() local 76 before = getLatticeFor(op, prev); in visitOperation() 78 before = getLatticeFor(op, op->getBlock()); in visitOperation() 80 if (before->isUninitialized()) in visitOperation() 84 visitOperationImpl(op, *before, after); in visitOperation() 150 const AbstractDenseLattice *before; in visitRegionBranchOperation() local 154 before = getLatticeFor(point, prev); in visitRegionBranchOperation() 156 before = getLatticeFor(point, op->getBlock()); in visitRegionBranchOperation() 160 before = getLatticeFor(point, op); in visitRegionBranchOperation() 162 join(after, *before); in visitRegionBranchOperation()
|
| /llvm-project-15.0.7/llvm/test/MC/COFF/ |
| H A D | cv-def-range-errors.s | 4 # CHECK: error: expected comma before def_range type in .cv_def_range directive 11 # CHECK: error: expected comma before register number in .cv_def_range directive 19 # CHECK: error: expected comma before offset in .cv_def_range directive 30 # CHECK: error: expected comma before def_range type in .cv_def_range directive 37 # CHECK: error: expected comma before register number in .cv_def_range directive 48 # CHECK: error: expected comma before def_range type in .cv_def_range directive 55 # CHECK: error: expected comma before offset in .cv_def_range directive 67 # CHECK: error: expected comma before def_range type in .cv_def_range directive 74 # CHECK: error: expected comma before register number in .cv_def_range directive 82 # CHECK: error: expected comma before flag value in .cv_def_range directive [all …]
|
| /llvm-project-15.0.7/mlir/lib/IR/ |
| H A D | PatternMatch.cpp | 321 return block->splitBlock(before); in splitBlock() 340 Region::iterator before) { in inlineRegionBefore() argument 341 parent.getBlocks().splice(before, region.getBlocks()); in inlineRegionBefore() 343 void RewriterBase::inlineRegionBefore(Region ®ion, Block *before) { in inlineRegionBefore() argument 344 inlineRegionBefore(region, *before->getParent(), before->getIterator()); in inlineRegionBefore() 352 Region::iterator before, in cloneRegionBefore() argument 354 region.cloneInto(&parent, before, mapping); in cloneRegionBefore() 357 Region::iterator before) { in cloneRegionBefore() argument 359 cloneRegionBefore(region, parent, before, mapping); in cloneRegionBefore() 361 void RewriterBase::cloneRegionBefore(Region ®ion, Block *before) { in cloneRegionBefore() argument [all …]
|
| /llvm-project-15.0.7/polly/test/Support/ |
| H A D | dumpmodule.ll | 2 … -polly-dump-before-file=%t-legacy-before-early.ll --disable-output < %s && FileCheck … 3 …-position=before-vectorizer -polly-dump-before-file=%t-legacy-before-late.ll --disable-output < %… 5 ; RUN: opt %loadPolly -enable-new-pm=0 -O3 -polly -polly-position=before-vectorizer -polly-dump-aft… 8 …ly -polly-dump-before-file=%t-npm-before-early.ll --disable-output < %s && FileChec… 11 ; Check the module dumping before Polly at specific positions in the
|
| H A D | dumpfunction.ll | 2 …%loadNPMPolly -enable-new-pm=1 -O3 -polly -polly-position=before-vectorizer -polly-dump-before --d… 3 ; RUN: FileCheck --input-file=dumpfunction-callee-before.ll --check-prefix=CHECK --check-prefix=CAL… 4 ; RUN: FileCheck --input-file=dumpfunction-caller-before.ll --check-prefix=CHECK --check-prefix=CAL… 6 ; RUN: opt %loadNPMPolly -enable-new-pm=1 -O3 -polly -polly-position=before-vectorizer -polly-dump-…
|
| /llvm-project-15.0.7/llvm/test/Analysis/AliasSet/ |
| H A D | argmemonly.ll | 9 …}}, 2] may alias, Mod/Ref Pointers: (i8* %d, unknown before-or-after), (i8* %s, unknown before-… 20 ; CHECK-NEXT: AliasSet[0x{{[0-9a-f]+}}, 1] must alias, Mod Pointers: (i8* %d, unknown before-… 21 ; CHECK-NEXT: AliasSet[0x{{[0-9a-f]+}}, 1] must alias, Ref Pointers: (i8* %s, unknown before-… 32 …}}, 2] may alias, Mod/Ref Pointers: (i8* %d, unknown before-or-after), (i8* %s, unknown before-… 42 ; CHECK-NEXT: AliasSet[0x{{[0-9a-f]+}}, 1] must alias, Mod/Ref Pointers: (i8* %a, unknown before-or… 43 ; CHECK-NEXT: AliasSet[0x{{[0-9a-f]+}}, 1] must alias, Mod Pointers: (i8* %b, unknown before-or-aft… 77 ; CHECK-NEXT: AliasSet[0x{{[0-9a-f]+}}, 1] must alias, Mod Pointers: (i8* %a, unknown before-or-aft… 87 ; CHECK-NEXT: AliasSet[0x{{[0-9a-f]+}}, 1] must alias, Mod Pointers: (i8* %a, unknown before-or-aft… 96 …-9a-f]+}}, 2] may alias, Mod Pointers: (i8* %a, unknown before-or-after), (i8* %b, unknown before-… 108 ; CHECK-NEXT: AliasSet[0x{{[0-9a-f]+}}, 1] must alias, Mod Pointers: (i8* %a, unknown before-or-aft… [all …]
|
| /llvm-project-15.0.7/compiler-rt/test/dfsan/ |
| H A D | release_shadow_space.c | 39 size_t before = get_rss_kb(); in main() local 72 before, after_mmap, after_mmap_and_set_label, after_fixed_mmap, in main() 84 assert(after_mmap >= before + mmap_cost_kb); in main() 88 before + mmap_cost_kb + mmap_shadow_cost_kb + mmap_origin_cost_kb); in main() 102 assert(after_fixed_mmap <= before + delta + mmap_origin_chain_kb); in main() 103 assert(after_munmap <= before + delta + mmap_origin_chain_kb); in main()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/Generic/ |
| H A D | llc-start-stop.ll | 13 ; RUN: llc < %s -debug-pass=Structure -stop-before=loop-reduce -o /dev/null 2>&1 | FileCheck %s -ch… 23 ; RUN: llc < %s -debug-pass=Structure -start-before=loop-reduce -o /dev/null 2>&1 | FileCheck %s -c… 29 ; RUN: not --crash llc < %s -start-before=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefi… 30 ; RUN: not --crash llc < %s -stop-before=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix… 38 ; RUN: not --crash llc < %s -start-before=loop-reduce -start-after=loop-reduce -o /dev/null 2>&1 | … 39 ; RUN: not --crash llc < %s -stop-before=loop-reduce -stop-after=loop-reduce -o /dev/null 2>&1 | Fi… 40 ; DOUBLE-START: start-before and start-after specified! 41 ; DOUBLE-STOP: stop-before and stop-after specified!
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | argument-comment.rst | 9 that are placed right before the argument. 38 ``/*ParameterName=*/`` right before the boolean literal argument. 59 ``/*ParameterName=*/`` right before the integer literal argument. 80 ``/*ParameterName=*/`` right before the float/double literal argument. 101 ``/*ParameterName=*/`` right before the string literal argument. 126 ``/*ParameterName=*/`` right before the character literal argument. 147 ``/*ParameterName=*/`` right before the user defined literal argument. 172 ``/*ParameterName=*/`` right before the nullptr literal argument.
|
| /llvm-project-15.0.7/llvm/test/Assembler/ |
| H A D | metadata-function-local.ll | 8 %before = alloca i32 11 call void @llvm.metadata(metadata i32* %before) 15 ; CHECK: %before = alloca i32 18 ; CHECK: call void @llvm.metadata(metadata i32* %before)
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | dead-lane.mir | 1 # RUN: llc -march=amdgcn -mcpu=tonga %s -start-before detect-dead-lanes -stop-before machine-schedu… 2 # RUN: llc -march=amdgcn -mcpu=tonga %s -start-before detect-dead-lanes -stop-before machine-schedu…
|
| /llvm-project-15.0.7/llvm/test/Other/ |
| H A D | print-before-after.ll | 1 ; RUN: opt < %s -disable-output -passes='no-op-module' -print-before=bleh 2>&1 | FileCheck %s --che… 3 ; RUN: opt < %s -disable-output -passes='no-op-module' -print-before=no-op-function 2>&1 | FileChec… 5 ; RUN: opt < %s -disable-output -passes='no-op-module,no-op-function' -print-before=no-op-module 2>… 7 ; RUN: opt < %s -disable-output -passes='no-op-function' -print-before=no-op-function 2>&1 | FileCh… 9 ; RUN: opt < %s -disable-output -passes='no-op-module,no-op-function' -print-before=no-op-function … 11 ; RUN: opt < %s -disable-output -passes='loop-vectorize' -print-before=loop-vectorize -print-after=… 12 …le-loop-unswitch<nontrivial>,simple-loop-unswitch<no-nontrivial>' -print-before=simple-loop-unswit…
|
| /llvm-project-15.0.7/mlir/include/mlir/Analysis/DataFlow/ |
| H A D | DenseAnalysis.h | 84 const AbstractDenseLattice &before, 145 virtual void visitOperation(Operation *op, const LatticeT &before, 157 void visitOperationImpl(Operation *op, const AbstractDenseLattice &before, in visitOperationImpl() argument 159 visitOperation(op, static_cast<const LatticeT &>(before), in visitOperationImpl()
|
| /llvm-project-15.0.7/llvm/test/Transforms/Inline/X86/ |
| H A D | extractvalue.ll | 13 ; CHECK-NEXT: ; cost before = -35, cost after = -35, threshold before = 0, threshold after = 0, cos… 15 ; CHECK-NEXT: ; cost before = -35, cost after = -35, threshold before = 0, threshold after = 0, cos…
|
| H A D | insertvalue.ll | 13 ; CHECK-NEXT: ; cost before = -40, cost after = -35, threshold before = 0, threshold after = 0, cos… 15 ; CHECK-NEXT: ; cost before = -35, cost after = -35, threshold before = 0, threshold after = 0, cos…
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | warn-semicolon-before-method-body.m | 1 // RUN: %clang_cc1 -fsyntax-only -Wsemicolon-before-method-body -verify %s 2 // RUN: %clang_cc1 -fsyntax-only -Wsemicolon-before-method-body -fdiagnostics-parseable-fixits %s 2… 15 - (int)z; // expected-warning {{semicolon before method body is ignored}}
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/ |
| H A D | debugify-each.ll | 22 ; Check that stripped textual IR compares equal before and after applying 24 ; RUN: opt -O1 < %s -S -o %t.before 26 ; RUN: diff %t.before %t.after 28 ; Check that stripped IR compares equal before and after applying debugify. 29 ; RUN: opt -O1 < %s | llvm-dis -o %t.before 31 ; RUN: diff %t.before %t.after
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-ar/ |
| H A D | mri-end.test | 39 ## Use of END before saving. 40 # RUN: llvm-ar -M < end-before-save.mri 41 # RUN: llvm-ar t end-before-save.ar | FileCheck %s 88 #--- end-before-save.mri 89 create end-before-save.ar
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
| H A D | run.py | 117 child_result_list.append(child.before + child.after) 121 child_result_list.append(child.before) 138 child_result_list.append(child.before) 141 child_result_list.append(child.before)
|