[llvm-objdump] - Remove one overload of reportError. NFCI.
[llvm-complete.git] / test / CodeGen / AMDGPU / llvm.amdgcn.struct.buffer.load.format.ll
blob6aee3827e9c7eab155ae0a3836e345c6ed9d27fb
1 ;RUN: llc < %s -march=amdgcn -mcpu=verde -verify-machineinstrs | FileCheck %s -check-prefix=CHECK -check-prefix=SICI
2 ;RUN: llc < %s -march=amdgcn -mcpu=tonga -verify-machineinstrs | FileCheck %s -check-prefix=CHECK -check-prefix=VI
4 ;CHECK-LABEL: {{^}}buffer_load:
5 ;CHECK: buffer_load_format_xyzw v[0:3], {{v[0-9]+}}, s[0:3], 0 idxen
6 ;CHECK: buffer_load_format_xyzw v[4:7], {{v[0-9]+}}, s[0:3], 0 idxen glc
7 ;CHECK: buffer_load_format_xyzw v[8:11], {{v[0-9]+}}, s[0:3], 0 idxen slc
8 ;CHECK: s_waitcnt
9 define amdgpu_ps {<4 x float>, <4 x float>, <4 x float>} @buffer_load(<4 x i32> inreg) {
10 main_body:
11   %data = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 0, i32 0, i32 0)
12   %data_glc = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 0, i32 0, i32 1)
13   %data_slc = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 0, i32 0, i32 2)
14   %r0 = insertvalue {<4 x float>, <4 x float>, <4 x float>} undef, <4 x float> %data, 0
15   %r1 = insertvalue {<4 x float>, <4 x float>, <4 x float>} %r0, <4 x float> %data_glc, 1
16   %r2 = insertvalue {<4 x float>, <4 x float>, <4 x float>} %r1, <4 x float> %data_slc, 2
17   ret {<4 x float>, <4 x float>, <4 x float>} %r2
20 ;CHECK-LABEL: {{^}}buffer_load_immoffs:
21 ;CHECK: buffer_load_format_xyzw v[0:3], {{v[0-9]+}}, s[0:3], 0 idxen offset:42
22 ;CHECK: s_waitcnt
23 define amdgpu_ps <4 x float> @buffer_load_immoffs(<4 x i32> inreg) {
24 main_body:
25   %data = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 42, i32 0, i32 0)
26   ret <4 x float> %data
29 ;CHECK-LABEL: {{^}}buffer_load_immoffs_large:
30 ;CHECK-DAG: buffer_load_format_xyzw {{v\[[0-9]+:[0-9]+\]}}, {{v[0-9]+}}, s[0:3], 60 idxen offset:4092
31 ;CHECK-DAG: s_movk_i32 [[OFS1:s[0-9]+]], 0x7ffc
32 ;CHECK-DAG: buffer_load_format_xyzw {{v\[[0-9]+:[0-9]+\]}}, {{v[0-9]+}}, s[0:3], [[OFS1]] idxen offset:4092
33 ;CHECK-DAG: s_mov_b32 [[OFS2:s[0-9]+]], 0x8ffc
34 ;CHECK-DAG: buffer_load_format_xyzw {{v\[[0-9]+:[0-9]+\]}}, {{v[0-9]+}}, s[0:3], [[OFS2]] idxen offset:4
35 ;CHECK: s_waitcnt
36 define amdgpu_ps <4 x float> @buffer_load_immoffs_large(<4 x i32> inreg) {
37 main_body:
38   %d.0 = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 4092, i32 60, i32 0)
39   %d.1 = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 4092, i32 32764, i32 0)
40   %d.2 = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 4, i32 36860, i32 0)
41   %d.3 = fadd <4 x float> %d.0, %d.1
42   %data = fadd <4 x float> %d.2, %d.3
43   ret <4 x float> %data
46 ;CHECK-LABEL: {{^}}buffer_load_idx:
47 ;CHECK: buffer_load_format_xyzw v[0:3], v0, s[0:3], 0 idxen
48 ;CHECK: s_waitcnt
49 define amdgpu_ps <4 x float> @buffer_load_idx(<4 x i32> inreg, i32) {
50 main_body:
51   %data = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 %1, i32 0, i32 0, i32 0)
52   ret <4 x float> %data
55 ;CHECK-LABEL: {{^}}buffer_load_ofs:
56 ;CHECK: buffer_load_format_xyzw v[0:3], v[0:1], s[0:3], 0 idxen offen
57 ;CHECK: s_waitcnt
58 define amdgpu_ps <4 x float> @buffer_load_ofs(<4 x i32> inreg, i32) {
59 main_body:
60   %data = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 %1, i32 0, i32 0)
61   ret <4 x float> %data
64 ;CHECK-LABEL: {{^}}buffer_load_ofs_imm:
65 ;CHECK: buffer_load_format_xyzw v[0:3], v[0:1], s[0:3], 0 idxen offen offset:60
66 ;CHECK: s_waitcnt
67 define amdgpu_ps <4 x float> @buffer_load_ofs_imm(<4 x i32> inreg, i32) {
68 main_body:
69   %ofs = add i32 %1, 60
70   %data = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 %ofs, i32 0, i32 0)
71   ret <4 x float> %data
74 ;CHECK-LABEL: {{^}}buffer_load_both:
75 ;CHECK: buffer_load_format_xyzw v[0:3], v[0:1], s[0:3], 0 idxen offen
76 ;CHECK: s_waitcnt
77 define amdgpu_ps <4 x float> @buffer_load_both(<4 x i32> inreg, i32, i32) {
78 main_body:
79   %data = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 %1, i32 %2, i32 0, i32 0)
80   ret <4 x float> %data
83 ;CHECK-LABEL: {{^}}buffer_load_both_reversed:
84 ;CHECK: v_mov_b32_e32 v2, v0
85 ;CHECK: buffer_load_format_xyzw v[0:3], v[1:2], s[0:3], 0 idxen offen
86 ;CHECK: s_waitcnt
87 define amdgpu_ps <4 x float> @buffer_load_both_reversed(<4 x i32> inreg, i32, i32) {
88 main_body:
89   %data = call <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32> %0, i32 %2, i32 %1, i32 0, i32 0)
90   ret <4 x float> %data
93 ;CHECK-LABEL: {{^}}buffer_load_x:
94 ;CHECK: buffer_load_format_x v0, {{v[0-9]+}}, s[0:3], 0 idxen
95 ;CHECK: s_waitcnt
96 define amdgpu_ps float @buffer_load_x(<4 x i32> inreg %rsrc) {
97 main_body:
98   %data = call float @llvm.amdgcn.struct.buffer.load.format.f32(<4 x i32> %rsrc, i32 0, i32 0, i32 0, i32 0)
99   ret float %data
102 ;CHECK-LABEL: {{^}}buffer_load_xy:
103 ;CHECK: buffer_load_format_xy v[0:1], {{v[0-9]+}}, s[0:3], 0 idxen
104 ;CHECK: s_waitcnt
105 define amdgpu_ps <2 x float> @buffer_load_xy(<4 x i32> inreg %rsrc) {
106 main_body:
107   %data = call <2 x float> @llvm.amdgcn.struct.buffer.load.format.v2f32(<4 x i32> %rsrc, i32 0, i32 0, i32 0, i32 0)
108   ret <2 x float> %data
111 declare float @llvm.amdgcn.struct.buffer.load.format.f32(<4 x i32>, i32, i32, i32, i32) #0
112 declare <2 x float> @llvm.amdgcn.struct.buffer.load.format.v2f32(<4 x i32>, i32, i32, i32, i32) #0
113 declare <4 x float> @llvm.amdgcn.struct.buffer.load.format.v4f32(<4 x i32>, i32, i32, i32, i32) #0
115 attributes #0 = { nounwind readonly }