mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
3f71d5838c
Author: Samuel Pitoiset ds_read_b128 and ds_write_b128 have been recently enabled under the amdgpu-ds128 option because the performance benefit is unclear. Though, using 128-bit loads/stores for the local address space appears to introduce regressions in tessellation shaders. Not sure what is broken, but as ds_read_b128/ds_write_b128 are not enabled by default, just introduce a global option and enable 128-bit only if requested (until it's fixed/used correctly). v2: - fix regressions in merge-stores.ll and multiple_tails.ll Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=105464 llvm-svn: 329764
191 lines
4.7 KiB
LLVM
191 lines
4.7 KiB
LLVM
; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefixes=GCN,SICIVI,FUNC %s
|
|
; RUN: llc -mtriple=amdgcn--amdhsa -mcpu=kaveri -verify-machineinstrs < %s | FileCheck -check-prefixes=GCN,SICIVI,FUNC %s
|
|
; RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefixes=GCN,SICIVI,FUNC %s
|
|
; RUN: llc -march=amdgcn -mcpu=gfx900 -verify-machineinstrs < %s | FileCheck -check-prefixes=GCN,GFX9,FUNC %s
|
|
; RUN: llc -march=r600 -mcpu=redwood < %s | FileCheck -check-prefixes=EG,FUNC %s
|
|
|
|
; Testing for ds_read/write_b128
|
|
; RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs -mattr=+enable-ds128 < %s | FileCheck -check-prefixes=CIVI,FUNC %s
|
|
; RUN: llc -march=amdgcn -mcpu=gfx900 -verify-machineinstrs -mattr=+enable-ds128 < %s | FileCheck -check-prefixes=CIVI,FUNC %s
|
|
|
|
; FUNC-LABEL: {{^}}local_load_i64:
|
|
; SICIVI: s_mov_b32 m0
|
|
; GFX9-NOT: m0
|
|
|
|
; GCN: ds_read_b64 [[VAL:v\[[0-9]+:[0-9]+\]]], v{{[0-9]+}}{{$}}
|
|
; GCN: ds_write_b64 v{{[0-9]+}}, [[VAL]]
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
define amdgpu_kernel void @local_load_i64(i64 addrspace(3)* %out, i64 addrspace(3)* %in) #0 {
|
|
%ld = load i64, i64 addrspace(3)* %in
|
|
store i64 %ld, i64 addrspace(3)* %out
|
|
ret void
|
|
}
|
|
|
|
; FUNC-LABEL: {{^}}local_load_v2i64:
|
|
; SICIVI: s_mov_b32 m0
|
|
; GFX9-NOT: m0
|
|
|
|
; GCN: ds_read2_b64
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
define amdgpu_kernel void @local_load_v2i64(<2 x i64> addrspace(3)* %out, <2 x i64> addrspace(3)* %in) #0 {
|
|
entry:
|
|
%ld = load <2 x i64>, <2 x i64> addrspace(3)* %in
|
|
store <2 x i64> %ld, <2 x i64> addrspace(3)* %out
|
|
ret void
|
|
}
|
|
|
|
; Tests if ds_read/write_b128 gets generated for the 16 byte aligned load.
|
|
; FUNC-LABEL: {{^}}local_load_v2i64_to_128:
|
|
|
|
; CIVI: ds_read_b128
|
|
; CIVI: ds_write_b128
|
|
|
|
define amdgpu_kernel void @local_load_v2i64_to_128(<2 x i64> addrspace(3)* %out, <2 x i64> addrspace(3)* %in) {
|
|
entry:
|
|
%ld = load <2 x i64>, <2 x i64> addrspace(3)* %in, align 16
|
|
store <2 x i64> %ld, <2 x i64> addrspace(3)* %out, align 16
|
|
ret void
|
|
}
|
|
|
|
; FUNC-LABEL: {{^}}local_load_v3i64:
|
|
; SICIVI: s_mov_b32 m0
|
|
; GFX9-NOT: m0
|
|
|
|
; GCN-DAG: ds_read2_b64
|
|
; GCN-DAG: ds_read_b64
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
define amdgpu_kernel void @local_load_v3i64(<3 x i64> addrspace(3)* %out, <3 x i64> addrspace(3)* %in) #0 {
|
|
entry:
|
|
%ld = load <3 x i64>, <3 x i64> addrspace(3)* %in
|
|
store <3 x i64> %ld, <3 x i64> addrspace(3)* %out
|
|
ret void
|
|
}
|
|
|
|
; FUNC-LABEL: {{^}}local_load_v4i64:
|
|
; SICIVI: s_mov_b32 m0
|
|
; GFX9-NOT: m0
|
|
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
define amdgpu_kernel void @local_load_v4i64(<4 x i64> addrspace(3)* %out, <4 x i64> addrspace(3)* %in) #0 {
|
|
entry:
|
|
%ld = load <4 x i64>, <4 x i64> addrspace(3)* %in
|
|
store <4 x i64> %ld, <4 x i64> addrspace(3)* %out
|
|
ret void
|
|
}
|
|
|
|
; FUNC-LABEL: {{^}}local_load_v8i64:
|
|
; SICIVI: s_mov_b32 m0
|
|
; GFX9-NOT: m0
|
|
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
define amdgpu_kernel void @local_load_v8i64(<8 x i64> addrspace(3)* %out, <8 x i64> addrspace(3)* %in) #0 {
|
|
entry:
|
|
%ld = load <8 x i64>, <8 x i64> addrspace(3)* %in
|
|
store <8 x i64> %ld, <8 x i64> addrspace(3)* %out
|
|
ret void
|
|
}
|
|
|
|
; FUNC-LABEL: {{^}}local_load_v16i64:
|
|
; SICIVI: s_mov_b32 m0
|
|
; GFX9-NOT: m0
|
|
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
; GCN: ds_read2_b64
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
; EG: LDS_READ_RET
|
|
define amdgpu_kernel void @local_load_v16i64(<16 x i64> addrspace(3)* %out, <16 x i64> addrspace(3)* %in) #0 {
|
|
entry:
|
|
%ld = load <16 x i64>, <16 x i64> addrspace(3)* %in
|
|
store <16 x i64> %ld, <16 x i64> addrspace(3)* %out
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { nounwind }
|