Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Feature / optnone-llc.ll
blob7e6678f9cdc42bd173ec6fdeecbf7dca7df5a744
1 ; RUN: llc -O1 -debug %s -o /dev/null 2>&1 | FileCheck %s --check-prefix=LLC-Ox
2 ; RUN: llc -O2 -debug %s -o /dev/null 2>&1 | FileCheck %s --check-prefix=LLC-Ox
3 ; RUN: llc -O3 -debug %s -o /dev/null 2>&1 | FileCheck %s --check-prefix=LLC-Ox
4 ; RUN: llc -misched-postra -debug %s -o /dev/null 2>&1 | FileCheck %s --check-prefix=LLC-MORE
5 ; RUN: llc -O1 -debug-only=isel %s -o /dev/null 2>&1 | FileCheck %s --check-prefix=FAST
6 ; RUN: llc -O1 -debug-only=isel -fast-isel=false %s -o /dev/null 2>&1 | FileCheck %s --check-prefix=NOFAST
8 ; REQUIRES: asserts, default_triple
9 ; UNSUPPORTED: target=nvptx{{.*}}
11 ; This test verifies that we don't run Machine Function optimizations
12 ; on optnone functions, and that we can turn off FastISel.
14 ; Function Attrs: noinline optnone
15 define i32 @_Z3fooi(i32 %x) #0 {
16 entry:
17   %x.addr = alloca i32, align 4
18   store i32 %x, ptr %x.addr, align 4
19   br label %while.cond
21 while.cond:                                       ; preds = %while.body, %entry
22   %0 = load i32, ptr %x.addr, align 4
23   %dec = add nsw i32 %0, -1
24   store i32 %dec, ptr %x.addr, align 4
25   %tobool = icmp ne i32 %0, 0
26   br i1 %tobool, label %while.body, label %while.end
28 while.body:                                       ; preds = %while.cond
29   br label %while.cond
31 while.end:                                        ; preds = %while.cond
32   ret i32 0
35 attributes #0 = { optnone noinline }
37 ; Nothing that runs at -O0 gets skipped.
38 ; LLC-O0-NOT: Skipping pass
40 ; Machine Function passes run at -O1 and higher.
41 ; LLC-Ox-DAG: Skipping pass 'Branch Probability Basic Block Placement'
42 ; LLC-Ox-DAG: Skipping pass 'CodeGen Prepare'
43 ; LLC-Ox-DAG: Skipping pass 'Control Flow Optimizer'
44 ; LLC-Ox-DAG: Skipping pass 'Machine code sinking'
45 ; LLC-Ox-DAG: Skipping pass 'Machine Common Subexpression Elimination'
46 ; LLC-Ox-DAG: Skipping pass 'Shrink Wrapping analysis'
47 ; LLC-Ox-DAG: Skipping pass 'Machine Copy Propagation Pass'
48 ; LLC-Ox-DAG: Skipping pass 'Machine Instruction Scheduler'
49 ; LLC-Ox-DAG: Skipping pass 'Machine Loop Invariant Code Motion'
50 ; LLC-Ox-DAG: Skipping pass 'Optimize machine instruction PHIs'
51 ; LLC-Ox-DAG: Skipping pass 'Peephole Optimizations'
52 ; LLC-Ox-DAG: Skipping pass 'Post{{.*}}RA{{.*}}{{[Ss]}}cheduler'
53 ; LLC-Ox-DAG: Skipping pass 'Remove dead machine instructions'
54 ; LLC-Ox-DAG: Skipping pass 'Tail Duplication'
56 ; Alternate post-RA scheduler.
57 ; LLC-MORE: Skipping pass 'PostRA Machine Instruction Scheduler'
59 ; Selectively disable FastISel for optnone functions.
60 ; FAST:   FastISel is enabled
61 ; NOFAST: FastISel is disabled