[RISCV] Support 'f' Inline Assembly Constraint
[llvm-core.git] / test / CodeGen / AMDGPU / smrd-gfx10.ll
blobbb52ac8cb39e86ec34cd51081fd1dd47d8f71da1
1 ; RUN: llc -march=amdgcn -mcpu=gfx1010 -verify-machineinstrs -show-mc-encoding < %s | FileCheck -check-prefixes=GCN %s
3 ; GCN-LABEL: {{^}}smrd_imm_dlc:
4 ; GCN: s_buffer_load_dword s0, s[0:3], 0x0 dlc ; encoding: [0x00,0x40,0x20,0xf4,0x00,0x00,0x00,0xfa]
5 define amdgpu_ps float @smrd_imm_dlc(<4 x i32> inreg %desc) #0 {
6 main_body:
7   %r = call float @llvm.amdgcn.s.buffer.load.f32(<4 x i32> %desc, i32 0, i32 4)
8   ret float %r
11 ; GCN-LABEL: {{^}}smrd_sgpr_dlc:
12 ; GCN: s_buffer_load_dword s0, s[0:3], s4 dlc ; encoding: [0x00,0x40,0x20,0xf4,0x00,0x00,0x00,0x08]
13 define amdgpu_ps float @smrd_sgpr_dlc(<4 x i32> inreg %desc, i32 inreg %offset) #0 {
14 main_body:
15   %r = call float @llvm.amdgcn.s.buffer.load.f32(<4 x i32> %desc, i32 %offset, i32 4)
16   ret float %r
19 ; GCN-LABEL: {{^}}smrd_imm_glc_dlc:
20 ; GCN: s_buffer_load_dword s0, s[0:3], 0x0 glc dlc ; encoding: [0x00,0x40,0x21,0xf4,0x00,0x00,0x00,0xfa]
21 define amdgpu_ps float @smrd_imm_glc_dlc(<4 x i32> inreg %desc) #0 {
22 main_body:
23   %r = call float @llvm.amdgcn.s.buffer.load.f32(<4 x i32> %desc, i32 0, i32 5)
24   ret float %r
27 ; GCN-LABEL: {{^}}smrd_sgpr_glc_dlc:
28 ; GCN: s_buffer_load_dword s0, s[0:3], s4 glc dlc ; encoding: [0x00,0x40,0x21,0xf4,0x00,0x00,0x00,0x08]
29 define amdgpu_ps float @smrd_sgpr_glc_dlc(<4 x i32> inreg %desc, i32 inreg %offset) #0 {
30 main_body:
31   %r = call float @llvm.amdgcn.s.buffer.load.f32(<4 x i32> %desc, i32 %offset, i32 5)
32   ret float %r
35 declare float @llvm.amdgcn.s.buffer.load.f32(<4 x i32>, i32, i32)
37 !0 = !{}