Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / instr-symbols.mir
blob7af6ca81810123f019cea9542d36b4628aa0228c
1 # RUN: llc -mtriple=x86_64-unknown-linux -start-before=x86-flags-copy-lowering -o - %s | FileCheck %s
3 # Test the emission of pre- and post-instruction labels.
5 --- |
6   declare void @f(i32 %x) nounwind
8   declare void @g(i32 %x) nounwind
10   declare void @h(i32 %x) nounwind
12   define i64 @test(i32 %x) nounwind {
13   entry:
14     call void @f(i32 %x)
15     call void @g(i32 %x)
16     call void @h(i32 %x)
17     ret i64 undef
18   }
20 ...
21 ---
22 name: test
23 # CHECK-LABEL: {{^}}test:
24 tracksRegLiveness: true
25 frameInfo:
26   adjustsStack:    true
27   hasCalls: true
28 body: |
29   bb.0.entry:
30     liveins: $edi
32     %0:gr32 = COPY $edi
33     %1:gr32 = COPY killed %0
34     ADJCALLSTACKDOWN64 0, 0, 0, implicit-def $rsp, implicit-def $eflags, implicit-def $ssp, implicit $rsp, implicit $ssp
35     $edi = COPY %1
37     CALL64pcrel32 @f, csr_64, implicit $rsp, implicit $ssp, implicit $edi, pre-instr-symbol <mcsymbol .Lpre_f>, post-instr-symbol <mcsymbol .Lpost_f>
38   ; CHECK:      .Lpre_f:
39   ; CHECK-NEXT:   callq f
40   ; CHECK-NEXT: .Lpost_f:
42     ADJCALLSTACKUP64 0, 0, implicit-def $rsp, implicit-def $eflags, implicit-def $ssp, implicit $rsp, implicit $ssp
43     ADJCALLSTACKDOWN64 0, 0, 0, implicit-def $rsp, implicit-def $eflags, implicit-def $ssp, implicit $rsp, implicit $ssp
44     $edi = COPY %1
46     CALL64pcrel32 @g, csr_64, implicit $rsp, implicit $ssp, implicit $edi, pre-instr-symbol <mcsymbol .Lpre_g>
47   ; CHECK:      .Lpre_g:
48   ; CHECK-NEXT:   callq g
50     ADJCALLSTACKUP64 0, 0, implicit-def $rsp, implicit-def $eflags, implicit-def $ssp, implicit $rsp, implicit $ssp
51     ADJCALLSTACKDOWN64 0, 0, 0, implicit-def $rsp, implicit-def $eflags, implicit-def $ssp, implicit $rsp, implicit $ssp
52     $edi = COPY %1
54     CALL64pcrel32 @h, csr_64, implicit $rsp, implicit $ssp, implicit $edi, post-instr-symbol <mcsymbol .Lpost_h>
55   ; CHECK:        callq h
56   ; CHECK-NEXT: .Lpost_h:
58     ADJCALLSTACKUP64 0, 0, implicit-def $rsp, implicit-def $eflags, implicit-def $ssp, implicit $rsp, implicit $ssp
60     %2:gr64 = MOV64ri32 <mcsymbol .Lpre_f>
61     %3:gr64 = MOV64ri32 <mcsymbol .Lpost_f>
62     %4:gr64 = MOV64ri32 <mcsymbol .Lpre_g>
63     %5:gr64 = MOV64ri32 <mcsymbol .Lpost_h>
64   ; CHECK:        movq $.Lpre_f, %{{.*}}
65   ; CHECK-NEXT:   movq $.Lpost_f, %{{.*}}
66   ; CHECK-NEXT:   movq $.Lpre_g, %{{.*}}
67   ; CHECK-NEXT:   movq $.Lpost_h, %{{.*}}
69     %6:gr64 = ADD64rr killed %2, killed %3, implicit-def $eflags
70     %7:gr64 = ADD64rr killed %4, killed %5, implicit-def $eflags
71     %8:gr64 = ADD64rr killed %6, killed %7, implicit-def $eflags
72     $rax = COPY %8
73     RET64 implicit $rax
75 ...