[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AMDGPU / GlobalISel / inst-select-inttoptr.mir
blob410190e7bc1577e2c642920243e93552bf20358f
1 # RUN: llc -march=amdgcn -mcpu=hawaii -run-pass=instruction-select -verify-machineinstrs -o - %s | FileCheck %s -check-prefixes=GCN
3 ---
5 name:            inttoptr
6 legalized:       true
7 regBankSelected: true
9 # GCN-LABEL: name: inttoptr
10 # GCN: [[S64:%[0-9]+]]:sreg_64_xexec = COPY $sgpr0_sgpr1
11 # GCN: [[V64:%[0-9]+]]:vreg_64 = COPY $vgpr0_vgpr1
12 # FIXME: This extra copy is unnecessary, but is it the instruction selector's
13 # job to clean this up?
14 # GCN: [[S64_COPY:%[0-9]+]]:sreg_64 = COPY [[S64]]
15 # GCN: [[VAL:%[0-9]+]]:sreg_32_xm0_xexec = S_LOAD_DWORD_IMM [[S64_COPY]], 0, 0
16 # GCN: [[V_VAL:%[0-9]+]]:vgpr_32 = COPY [[VAL]]
17 # GCN: FLAT_STORE_DWORD [[V64]], [[V_VAL]]
20 body: |
21   bb.0:
22     liveins: $sgpr0_sgpr1, $vgpr0_vgpr1
23     %0:sgpr(s64) = COPY $sgpr0_sgpr1
24     %1:vgpr(s64) = COPY $vgpr0_vgpr1
25     %2:sgpr(p4) = G_INTTOPTR %0
26     %3:sgpr(s32) = G_LOAD %2 :: (load 4, addrspace 1)
27     %4:vgpr(p0) = G_INTTOPTR %1
28     %5:vgpr(s32) = COPY %3
29     G_STORE %5, %4 :: (store 4, addrspace 1)
30 ...