[llvm-objdump] - Remove one overload of reportError. NFCI.
[llvm-complete.git] / test / CodeGen / AMDGPU / GlobalISel / regbankselect-fsub.mir
bloba924e5ee49769ea7a72e93eb8679dee4b854e556
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -march=amdgcn -mcpu=fiji -run-pass=regbankselect %s -verify-machineinstrs -o - -regbankselect-fast | FileCheck %s
3 # RUN: llc -march=amdgcn -mcpu=fiji -run-pass=regbankselect %s -verify-machineinstrs -o - -regbankselect-greedy | FileCheck %s
5 ---
6 name: fsub_ss
7 legalized: true
9 body: |
10   bb.0:
11     liveins: $sgpr0, $sgpr1
12     ; CHECK-LABEL: name: fsub_ss
13     ; CHECK: [[COPY:%[0-9]+]]:sgpr(s32) = COPY $sgpr0
14     ; CHECK: [[COPY1:%[0-9]+]]:sgpr(s32) = COPY $sgpr1
15     ; CHECK: [[COPY2:%[0-9]+]]:vgpr(s32) = COPY [[COPY1]](s32)
16     ; CHECK: [[FSUB:%[0-9]+]]:vgpr(s32) = G_FSUB [[COPY]], [[COPY2]]
17     %0:_(s32) = COPY $sgpr0
18     %1:_(s32) = COPY $sgpr1
19     %2:_(s32) = G_FSUB %0, %1
20 ...
22 ---
23 name: fsub_sv
24 legalized: true
26 body: |
27   bb.0:
28     liveins: $sgpr0, $vgpr0
29     ; CHECK-LABEL: name: fsub_sv
30     ; CHECK: [[COPY:%[0-9]+]]:sgpr(s32) = COPY $sgpr0
31     ; CHECK: [[COPY1:%[0-9]+]]:vgpr(s32) = COPY $vgpr0
32     ; CHECK: [[FSUB:%[0-9]+]]:vgpr(s32) = G_FSUB [[COPY]], [[COPY1]]
33     %0:_(s32) = COPY $sgpr0
34     %1:_(s32) = COPY $vgpr0
35     %2:_(s32) = G_FSUB %0, %1
36 ...
38 ---
39 name: fsub_vs
40 legalized: true
42 body: |
43   bb.0:
44     liveins: $sgpr0, $vgpr0
45     ; CHECK-LABEL: name: fsub_vs
46     ; CHECK: [[COPY:%[0-9]+]]:vgpr(s32) = COPY $vgpr0
47     ; CHECK: [[COPY1:%[0-9]+]]:sgpr(s32) = COPY $sgpr0
48     ; CHECK: [[COPY2:%[0-9]+]]:vgpr(s32) = COPY [[COPY1]](s32)
49     ; CHECK: [[FSUB:%[0-9]+]]:vgpr(s32) = G_FSUB [[COPY]], [[COPY2]]
50     %0:_(s32) = COPY $vgpr0
51     %1:_(s32) = COPY $sgpr0
52     %2:_(s32) = G_FSUB %0, %1
53 ...
55 ---
56 name: fsub_vv
57 legalized: true
59 body: |
60   bb.0:
61     liveins: $vgpr0, $vgpr1
62     ; CHECK-LABEL: name: fsub_vv
63     ; CHECK: [[COPY:%[0-9]+]]:vgpr(s32) = COPY $vgpr0
64     ; CHECK: [[COPY1:%[0-9]+]]:vgpr(s32) = COPY $vgpr1
65     ; CHECK: [[FSUB:%[0-9]+]]:vgpr(s32) = G_FSUB [[COPY]], [[COPY1]]
66     %0:_(s32) = COPY $vgpr0
67     %1:_(s32) = COPY $vgpr1
68     %2:_(s32) = G_FSUB %0, %1
69 ...