[InstCombine] Signed saturation patterns
[llvm-core.git] / test / CodeGen / MIR / X86 / frame-info-save-restore-points.mir
blobba991fcc510eb03d03133867f2190b00893441b6
1 # RUN: llc -march=x86-64 -run-pass none -o - %s | FileCheck %s
2 # This test ensures that the MIR parser parses the save and restore points in
3 # the machine frame info correctly.
5 --- |
7   define i32 @foo(i32 %a, i32 %b) {
8   entry:
9     %tmp = alloca i32, align 4
10     %tmp2 = icmp slt i32 %a, %b
11     br i1 %tmp2, label %true, label %false
13   true:
14     store i32 %a, i32* %tmp, align 4
15     %tmp4 = call i32 @doSomething(i32 0, i32* %tmp)
16     br label %false
18   false:
19     %tmp.0 = phi i32 [ %tmp4, %true ], [ %a, %entry ]
20     ret i32 %tmp.0
21   }
23   declare i32 @doSomething(i32, i32*)
25 ...
26 ---
27 name:            foo
28 tracksRegLiveness: true
29 liveins:
30   - { reg: '$edi' }
31   - { reg: '$esi' }
32 # CHECK: frameInfo:
33 # CHECK:      savePoint: '%bb.2'
34 # CHECK-NEXT: restorePoint: '%bb.2'
35 # CHECK: stack
36 frameInfo:
37   maxAlignment:  4
38   hasCalls:      true
39   savePoint:     '%bb.2'
40   restorePoint:  '%bb.2'
41 stack:
42   - { id: 0, name: tmp, offset: 0, size: 4, alignment: 4 }
43 body: |
44   bb.0:
45     successors: %bb.2, %bb.1
46     liveins: $edi, $esi
48     $eax = COPY $edi
49     CMP32rr $eax, killed $esi, implicit-def $eflags
50     JCC_1 %bb.2, 12, implicit killed $eflags
52   bb.1:
53     successors: %bb.3
54     liveins: $eax
56     JMP_1 %bb.3
58   bb.2.true:
59     successors: %bb.3
60     liveins: $eax
62     MOV32mr %stack.0.tmp, 1, _, 0, _, killed $eax
63     ADJCALLSTACKDOWN64 0, 0, 0, implicit-def $rsp, implicit-def $ssp, implicit-def dead $eflags, implicit $rsp, implicit $ssp
64     $rsi = LEA64r %stack.0.tmp, 1, _, 0, _
65     $edi = MOV32r0 implicit-def dead $eflags
66     CALL64pcrel32 @doSomething, csr_64, implicit $rsp, implicit $ssp, implicit $edi, implicit $rsi, implicit-def $rsp, implicit-def $ssp, implicit-def $eax
67     ADJCALLSTACKUP64 0, 0, implicit-def $rsp, implicit-def $ssp, implicit-def dead $eflags, implicit $rsp, implicit $ssp
69   bb.3.false:
70     liveins: $eax
72     RETQ $eax
73 ...