1# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2# RUN: llc -march=amdgcn -mcpu=fiji -run-pass=instruction-select -verify-machineinstrs %s -o - | FileCheck %s
3# RUN: llc -march=amdgcn -mcpu=tahiti -run-pass=instruction-select -verify-machineinstrs -global-isel-abort=2 -pass-remarks-missed='gisel*'  %s -o /dev/null 2>&1 | FileCheck -check-prefix=SI-ERR %s
4
5# SI-ERR: remark: <unknown>:0:0: cannot select: %2:vgpr(s16) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), %1:sgpr(s16) (in function: fract_s16_vs)
6# SI-ERR: remark: <unknown>:0:0: cannot select: %2:vgpr(s16) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), %1:vgpr(s16) (in function: fract_s16_vv)
7
8---
9
10name: fract_s16_vs
11legalized: true
12regBankSelected: true
13tracksRegLiveness: true
14
15body: |
16  bb.0:
17    liveins: $sgpr0
18
19    ; CHECK-LABEL: name: fract_s16_vs
20    ; CHECK: liveins: $sgpr0
21    ; CHECK: [[COPY:%[0-9]+]]:sreg_32 = COPY $sgpr0
22    ; CHECK: %2:vgpr_32 = nofpexcept V_FRACT_F16_e64 0, [[COPY]], 0, 0, implicit $mode, implicit $exec
23    ; CHECK: S_ENDPGM 0, implicit %2
24    %0:sgpr(s32) = COPY $sgpr0
25    %1:sgpr(s16) = G_TRUNC %0
26    %2:vgpr(s16) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), %1
27    S_ENDPGM 0, implicit %2
28...
29
30---
31name: fract_s16_vv
32legalized: true
33regBankSelected: true
34tracksRegLiveness: true
35
36body: |
37  bb.0:
38    liveins: $vgpr0
39
40    ; CHECK-LABEL: name: fract_s16_vv
41    ; CHECK: liveins: $vgpr0
42    ; CHECK: [[COPY:%[0-9]+]]:vgpr_32 = COPY $vgpr0
43    ; CHECK: %2:vgpr_32 = nofpexcept V_FRACT_F16_e64 0, [[COPY]], 0, 0, implicit $mode, implicit $exec
44    ; CHECK: S_ENDPGM 0, implicit %2
45    %0:vgpr(s32) = COPY $vgpr0
46    %1:vgpr(s16) = G_TRUNC %0
47    %2:vgpr(s16) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), %1
48    S_ENDPGM 0, implicit %2
49...
50