Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / statepoint-vreg-twoaddr.mir
blob9e29739812d32bc809736495cf4290cb280e9b06
1 # RUN: llc -x mir -run-pass=twoaddressinstruction < %s | FileCheck %s
3 # This test checks that TwoAddressInstruction pass does not create redundate COPY
4 # instruction for STATEPOINT tied operands.
6 --- |
7   ; ModuleID = 'statepoint-vreg-twoaddr.ll'
8   source_filename = "statepoint-vreg-twoaddr.ll"
9   target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
10   target triple = "x86_64-pc-linux-gnu"
12   declare i1 @return_i1()
14   declare void @consume(ptr addrspace(1))
15   declare void @consume1(ptr addrspace(1), ptr addrspace(1))
17   define i1 @test_relocate(ptr addrspace(1) %a) gc "statepoint-example" {
18   entry:
19     %safepoint_token = tail call token (i64, i32, ptr, i32, i32, ...) @llvm.experimental.gc.statepoint.p0(i64 0, i32 0, ptr elementtype(i1 ()) @return_i1, i32 0, i32 0, i32 0, i32 0) [ "gc-live"(ptr addrspace(1) %a) ]
20     %rel1 = call ptr addrspace(1) @llvm.experimental.gc.relocate.p1(token %safepoint_token, i32 0, i32 0) ; (%a, %a)
21     %res1 = call zeroext i1 @llvm.experimental.gc.result.i1(token %safepoint_token)
22     call void @consume(ptr addrspace(1) %rel1)
23     ret i1 %res1
24   }
26   define void @test_duplicate_gcregs(ptr addrspace(1) %a) gc "statepoint-example" {
27     ret void
28   }
30   ; Function Attrs: nounwind readnone
31   declare ptr addrspace(1) @llvm.experimental.gc.relocate.p1(token, i32 immarg, i32 immarg) #0
33   declare token @llvm.experimental.gc.statepoint.p0(i64 immarg, i32 immarg, ptr, i32 immarg, i32 immarg, ...)
35   ; Function Attrs: nounwind readnone
36   declare i1 @llvm.experimental.gc.result.i1(token) #0
38   attributes #0 = { nounwind readnone }
40 ...
41 ---
42 name:            test_relocate
43 alignment:       16
44 tracksRegLiveness: true
45 registers:
46   - { id: 0, class: gr64 }
47   - { id: 1, class: gr64 }
48   - { id: 2, class: gr8 }
49 machineFunctionInfo: {}
50 body:             |
51   bb.0:
52     liveins: $rdi
54     ; CHECK-LABEL: name: test_relocate
55     ; CHECK: [[VREG1:%[0-9]+]]:gr64 = COPY killed $rdi
56     ; CHECK-NOT: [[VREG2:%[0-9]+]]:gr64 = COPY [[VREG1]]
57     ; CHECK: [[VREG1]]:gr64 = STATEPOINT 0, 0, 0, target-flags(x86-plt) @return_i1, 2, 0, 2, 0, 2, 0, 2, 1, killed [[VREG1]](tied-def 0), 2, 0, 2, 1, 0, 0, csr_64, implicit-def $rsp, implicit-def $ssp, implicit-def $al
58     ; CHECK: $rdi = COPY killed [[VREG1]]
59     ; CHECK: CALL64pcrel32 target-flags(x86-plt) @consume, csr_64, implicit $rsp, implicit $ssp, implicit killed $rdi, implicit-def $rsp, implicit-def $ssp
61     %0:gr64 = COPY killed $rdi
62     %1:gr64 = STATEPOINT 0, 0, 0, target-flags(x86-plt) @return_i1, 2, 0, 2, 0, 2, 0, 2, 1, killed %0(tied-def 0), 2, 0, 2, 1, 0, 0, csr_64, implicit-def $rsp, implicit-def $ssp, implicit-def $al
63     %2:gr8 = COPY killed $al
64     $rdi = COPY killed %1
65     CALL64pcrel32 target-flags(x86-plt) @consume, csr_64, implicit $rsp, implicit $ssp, implicit killed $rdi, implicit-def $rsp, implicit-def $ssp
66     $al = COPY killed %2
67     RET 0, killed $al
69 ...
70 ---
71 name:            test_duplicate_gcregs
72 alignment:       16
73 tracksRegLiveness: true
74 liveins:
75   - { reg: '$rdi', virtual-reg: '%0' }
76 body:             |
77   bb.0 (%ir-block.0):
78     liveins: $rdi
80     ; CHECK-LABEL: name: test_duplicate_gcregs
81     ; CHECK:   %1:gr64 = COPY %0
82     ; CHECK:   %2:gr64 = COPY %0
83     ; CHECK:   %1:gr64, %2:gr64 = STATEPOINT 0, 0, 0, target-flags(x86-plt) @return_i1, 2, 0, 2, 0, 2, 0, 2, 2, %1(tied-def 0), %2(tied-def 1), 2, 0, 2, 2, 0, 0, 1, 1, csr_64
84     ; CHECK:   $rdi = COPY killed %1
85     ; CHECK:   $rsi = COPY killed %2
86     ; CHECK:   CALL64pcrel32 target-flags(x86-plt) @consume1, csr_64, implicit $rsp, implicit $ssp, implicit killed $rdi, implicit killed $rsi, implicit-def $rsp, implicit-def $ssp
87     ; CHECK:   RET 0
88     %0:gr64 = COPY killed $rdi
89     %1:gr64, %2:gr64 = STATEPOINT 0, 0, 0, target-flags(x86-plt) @return_i1, 2, 0, 2, 0, 2, 0, 2, 2, killed %0(tied-def 0), killed %0(tied-def 1), 2, 0, 2, 2, 0, 0, 1, 1, csr_64, implicit-def $rsp, implicit-def $ssp, implicit-def dead $al
90     $rdi = COPY killed %1
91     $rsi = COPY killed %2
92     CALL64pcrel32 target-flags(x86-plt) @consume1, csr_64, implicit $rsp, implicit $ssp, implicit killed $rdi, implicit killed $rsi, implicit-def $rsp, implicit-def $ssp
93     RET 0
94 ...