Lines Matching full:start
21 ; RUN: llc < %s -debug-pass=Structure -start-after=loop-reduce -o /dev/null 2>&1 | FileCheck %s -check-prefix=START-AFTER
22 ; START-AFTER: -aa -mergeicmps
23 ; START-AFTER: FunctionPass Manager
24 ; START-AFTER-NEXT: Dominator Tree Construction
26 ; RUN: llc < %s -debug-pass=Structure -start-before=loop-reduce -o /dev/null 2>&1 | FileCheck %s -check-prefix=START-BEFORE
27 ; START-BEFORE: -machine-branch-prob -regalloc-evict -regalloc-priority -domtree
28 ; START-BEFORE: FunctionPass Manager
29 ; START-BEFORE: Loop Strength Reduction
30 ; START-BEFORE-NEXT: {{Loop Terminator Folding|Basic Alias Analysis \(stateless AA impl\)}}
32 ; RUN: not --crash llc < %s -start-before=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix=NONEXISTENT-START-BEFORE
34 ; RUN: not --crash llc < %s -start-after=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix=NONEXISTENT-START-AFTER
36 ; NONEXISTENT-START-BEFORE: "nonexistent" pass is not registered.
38 ; NONEXISTENT-START-AFTER: "nonexistent" pass is not registered.
41 ; RUN: not --crash llc < %s -start-before=loop-reduce -start-after=loop-reduce -o /dev/null 2>&1 | FileCheck %s -check-prefix=DOUBLE-START
43 ; DOUBLE-START: start-before and start-after specified!