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 3 4;CHECK-LABEL: {{^}}buffer_load: 5;CHECK: buffer_load_format_xyzw v[0:3], off, s[0:3], 0 6;CHECK: buffer_load_format_xyzw v[4:7], off, s[0:3], 0 glc 7;CHECK: buffer_load_format_xyzw v[8:11], off, s[0:3], 0 slc 8define amdgpu_ps {<4 x float>, <4 x float>, <4 x float>} @buffer_load(<4 x i32> inreg) { 9main_body: 10 %data = call <4 x float> @llvm.amdgcn.raw.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 0, i32 0) 11 %data_glc = call <4 x float> @llvm.amdgcn.raw.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 0, i32 1) 12 %data_slc = call <4 x float> @llvm.amdgcn.raw.buffer.load.format.v4f32(<4 x i32> %0, i32 0, i32 0, i32 2) 13 %r0 = insertvalue {<4 x float>, <4 x float>, <4 x float>} undef, <4 x float> %data, 0 14 %r1 = insertvalue {<4 x float>, <4 x float>, <4 x float>} %r0, <4 x float> %data_glc, 1 15 %r2 = insertvalue {<4 x float>, <4 x float>, <4 x float>} %r1, <4 x float> %data_slc, 2 16 ret {<4 x float>, <4 x float>, <4 x float>} %r2 17} 18 19;CHECK-LABEL: {{^}}buffer_load_immoffs: 20;CHECK: buffer_load_format_xyzw v[0:3], off, s[0:3], 0 offset:42 21define amdgpu_ps <4 x float> @buffer_load_immoffs(<4 x i32> inreg) { 22main_body: 23 %data = call <4 x float> @llvm.amdgcn.raw.buffer.load.format.v4f32(<4 x i32> %0, i32 42, i32 0, i32 0) 24 ret <4 x float> %data 25} 26 27;CHECK-LABEL: {{^}}buffer_load_immoffs_large: 28;CHECK-DAG: buffer_load_format_xyzw {{v\[[0-9]+:[0-9]+\]}}, off, s[0:3], 60 offset:4092 29;CHECK-DAG: s_movk_i32 [[OFS1:s[0-9]+]], 0x7ffc 30;CHECK-DAG: buffer_load_format_xyzw {{v\[[0-9]+:[0-9]+\]}}, off, s[0:3], [[OFS1]] offset:4092 31;CHECK-DAG: s_mov_b32 [[OFS2:s[0-9]+]], 0x8ffc 32;CHECK-DAG: buffer_load_format_xyzw {{v\[[0-9]+:[0-9]+\]}}, off, s[0:3], [[OFS2]] offset:4 33define amdgpu_ps <4 x float> @buffer_load_immoffs_large(<4 x i32> inreg) { 34main_body: 35 %d.0 = call <4 x float> @llvm.amdgcn.raw.buffer.load.format.v4f32(<4 x i32> %0, i32 4092, i32 60, i32 0) 36 %d.1 = call <4 x float> @llvm.amdgcn.raw.buffer.load.format.v4f32(<4 x i32> %0, i32 4092, i32 32764, i32 0) 37 %d.2 = call <4 x float> @llvm.amdgcn.raw.buffer.load.format.v4f32(<4 x i32> %0, i32 4, i32 36860, i32 0) 38 %d.3 = fadd <4 x float> %d.0, %d.1 39 %data = fadd <4 x float> %d.2, %d.3 40 ret <4 x float> %data 41} 42 43;CHECK-LABEL: {{^}}buffer_load_ofs: 44;CHECK: buffer_load_format_xyzw v[0:3], v0, s[0:3], 0 offen 45define amdgpu_ps <4 x float> @buffer_load_ofs(<4 x i32> inreg, i32) { 46main_body: 47 %data = call <4 x float> @llvm.amdgcn.raw.buffer.load.format.v4f32(<4 x i32> %0, i32 %1, i32 0, i32 0) 48 ret <4 x float> %data 49} 50 51;CHECK-LABEL: {{^}}buffer_load_ofs_imm: 52;CHECK: buffer_load_format_xyzw v[0:3], v0, s[0:3], 0 offen offset:60 53define amdgpu_ps <4 x float> @buffer_load_ofs_imm(<4 x i32> inreg, i32) { 54main_body: 55 %ofs = add i32 %1, 60 56 %data = call <4 x float> @llvm.amdgcn.raw.buffer.load.format.v4f32(<4 x i32> %0, i32 %ofs, i32 0, i32 0) 57 ret <4 x float> %data 58} 59 60;CHECK-LABEL: {{^}}buffer_load_x: 61;CHECK: buffer_load_format_x v0, off, s[0:3], 0 62define amdgpu_ps float @buffer_load_x(<4 x i32> inreg %rsrc) { 63main_body: 64 %data = call float @llvm.amdgcn.raw.buffer.load.format.f32(<4 x i32> %rsrc, i32 0, i32 0, i32 0) 65 ret float %data 66} 67 68;CHECK-LABEL: {{^}}buffer_load_xy: 69;CHECK: buffer_load_format_xy v[0:1], off, s[0:3], 0 70define amdgpu_ps <2 x float> @buffer_load_xy(<4 x i32> inreg %rsrc) { 71main_body: 72 %data = call <2 x float> @llvm.amdgcn.raw.buffer.load.format.v2f32(<4 x i32> %rsrc, i32 0, i32 0, i32 0) 73 ret <2 x float> %data 74} 75 76declare float @llvm.amdgcn.raw.buffer.load.format.f32(<4 x i32>, i32, i32, i32) #0 77declare <2 x float> @llvm.amdgcn.raw.buffer.load.format.v2f32(<4 x i32>, i32, i32, i32) #0 78declare <4 x float> @llvm.amdgcn.raw.buffer.load.format.v4f32(<4 x i32>, i32, i32, i32) #0 79 80attributes #0 = { nounwind readonly } 81