mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
------------------------------------------------------------------------ r292982 | arsenm | 2017-01-24 14:02:15 -0800 (Tue, 24 Jan 2017) | 8 lines Enable FeatureFlatForGlobal on Volcanic Islands This switches to the workaround that HSA defaults to for the mesa path. This should be applied to the 4.0 branch. Patch by Vedran Miletić <vedran@miletic.net> ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_40@293326 91177308-0d34-0410-b5e6-96231b3b80d8
41 lines
1.5 KiB
LLVM
41 lines
1.5 KiB
LLVM
; RUN: llc -march=amdgcn -mcpu=verde -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=SI %s
|
|
; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=VI %s
|
|
|
|
declare i32 @llvm.amdgcn.workitem.id.x() nounwind readnone
|
|
declare i32 @llvm.amdgcn.workitem.id.y() nounwind readnone
|
|
|
|
; GCN-LABEL: {{^}}anyext_i1_i32:
|
|
; GCN: v_cndmask_b32_e64
|
|
define void @anyext_i1_i32(i32 addrspace(1)* %out, i32 %cond) {
|
|
entry:
|
|
%tmp = icmp eq i32 %cond, 0
|
|
%tmp1 = zext i1 %tmp to i8
|
|
%tmp2 = xor i8 %tmp1, -1
|
|
%tmp3 = and i8 %tmp2, 1
|
|
%tmp4 = zext i8 %tmp3 to i32
|
|
store i32 %tmp4, i32 addrspace(1)* %out
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}s_anyext_i16_i32:
|
|
; VI: v_add_u16_e32 [[ADD:v[0-9]+]],
|
|
; VI: v_xor_b32_e32 [[XOR:v[0-9]+]], -1, [[ADD]]
|
|
; VI: v_and_b32_e32 [[AND:v[0-9]+]], 1, [[XOR]]
|
|
; VI: buffer_store_dword [[AND]]
|
|
define void @s_anyext_i16_i32(i32 addrspace(1)* %out, i16 addrspace(1)* %a, i16 addrspace(1)* %b) {
|
|
entry:
|
|
%tid.x = call i32 @llvm.amdgcn.workitem.id.x()
|
|
%tid.y = call i32 @llvm.amdgcn.workitem.id.y()
|
|
%a.ptr = getelementptr i16, i16 addrspace(1)* %a, i32 %tid.x
|
|
%b.ptr = getelementptr i16, i16 addrspace(1)* %b, i32 %tid.y
|
|
%a.l = load i16, i16 addrspace(1)* %a.ptr
|
|
%b.l = load i16, i16 addrspace(1)* %b.ptr
|
|
%tmp = add i16 %a.l, %b.l
|
|
%tmp1 = trunc i16 %tmp to i8
|
|
%tmp2 = xor i8 %tmp1, -1
|
|
%tmp3 = and i8 %tmp2, 1
|
|
%tmp4 = zext i8 %tmp3 to i32
|
|
store i32 %tmp4, i32 addrspace(1)* %out
|
|
ret void
|
|
}
|