blob: 79450b97c218ae0b04ce005d1b094f6deda4469e [file] [log] [blame]
Matt Arsenault7f9eabd2016-05-21 03:55:07 +00001; RUN: llc -mattr=+promote-alloca -verify-machineinstrs -march=amdgcn < %s | FileCheck -check-prefix=GCN -check-prefix=GCN-PROMOTE %s
2; RUN: llc -mattr=+promote-alloca,-flat-for-global -verify-machineinstrs -mtriple=amdgcn--amdhsa -mcpu=kaveri < %s | FileCheck -check-prefix=GCN -check-prefix=GCN-PROMOTE -check-prefix=HSA %s
3; RUN: llc -mattr=-promote-alloca -verify-machineinstrs -march=amdgcn < %s | FileCheck -check-prefix=GCN -check-prefix=GCN-ALLOCA %s
4; RUN: llc -mattr=-promote-alloca,-flat-for-global -verify-machineinstrs -mtriple=amdgcn-amdhsa -mcpu=kaveri < %s | FileCheck -check-prefix=GCN -check-prefix=GCN-ALLOCA -check-prefix=HSA %s
Matt Arsenault7aad8fd2017-01-24 22:02:15 +00005; RUN: llc -mattr=+promote-alloca -verify-machineinstrs -march=amdgcn -mcpu=tonga -mattr=-flat-for-global < %s | FileCheck -check-prefix=GCN -check-prefix=GCN-PROMOTE %s
6; RUN: llc -mattr=-promote-alloca -verify-machineinstrs -march=amdgcn -mcpu=tonga -mattr=-flat-for-global < %s | FileCheck -check-prefix=GCN -check-prefix=GCN-ALLOCA %s
Jan Vesely23dcd6e2016-05-11 17:24:45 +00007
8
9declare i32 @llvm.amdgcn.workitem.id.x() nounwind readnone
10
11
12; Make sure we don't overwrite workitem information with private memory
13
Matt Arsenault7f9eabd2016-05-21 03:55:07 +000014; GCN-LABEL: {{^}}work_item_info:
15; GCN-NOT: v0
16; GCN: v_add_i32_e32 [[RESULT:v[0-9]+]], vcc, v0, v{{[0-9]+}}
17; GCN: buffer_store_dword [[RESULT]]
Matt Arsenault3dbeefa2017-03-21 21:39:51 +000018define amdgpu_kernel void @work_item_info(i32 addrspace(1)* %out, i32 %in) {
Jan Vesely23dcd6e2016-05-11 17:24:45 +000019entry:
20 %0 = alloca [2 x i32]
21 %1 = getelementptr [2 x i32], [2 x i32]* %0, i32 0, i32 0
22 %2 = getelementptr [2 x i32], [2 x i32]* %0, i32 0, i32 1
23 store i32 0, i32* %1
24 store i32 1, i32* %2
25 %3 = getelementptr [2 x i32], [2 x i32]* %0, i32 0, i32 %in
26 %4 = load i32, i32* %3
27 %5 = call i32 @llvm.amdgcn.workitem.id.x()
28 %6 = add i32 %4, %5
29 store i32 %6, i32 addrspace(1)* %out
30 ret void
31}