; RUN: opt -data-layout=A5 -S -mtriple=amdgcn-unknown-unknown -passes=amdgpu-promote-alloca -disable-promote-alloca-to-vector < %s | FileCheck -check-prefix=IR %s ; RUN: llc -mtriple=amdgcn -mcpu=fiji -disable-promote-alloca-to-vector < %s | FileCheck -check-prefix=ASM %s ; IR-LABEL: define amdgpu_vs void @promote_alloca_shaders(ptr addrspace(1) inreg %out, ptr addrspace(1) inreg %in) #0 { ; IR: alloca [5 x i32] ; ASM-LABEL: {{^}}promote_alloca_shaders: ; ASM: ; ScratchSize: 24 define amdgpu_vs void @promote_alloca_shaders(ptr addrspace(1) inreg %out, ptr addrspace(1) inreg %in) #0 { entry: %stack = alloca [5 x i32], align 4, addrspace(5) %tmp0 = load i32, ptr addrspace(1) %in, align 4 %arrayidx1 = getelementptr inbounds [5 x i32], ptr addrspace(5) %stack, i32 0, i32 %tmp0 store i32 4, ptr addrspace(5) %arrayidx1, align 4 %arrayidx2 = getelementptr inbounds i32, ptr addrspace(1) %in, i32 1 %tmp1 = load i32, ptr addrspace(1) %arrayidx2, align 4 %arrayidx3 = getelementptr inbounds [5 x i32], ptr addrspace(5) %stack, i32 0, i32 %tmp1 store i32 5, ptr addrspace(5) %arrayidx3, align 4 %tmp2 = load i32, ptr addrspace(5) %stack, align 4 store i32 %tmp2, ptr addrspace(1) %out, align 4 %arrayidx5 = getelementptr inbounds [5 x i32], ptr addrspace(5) %stack, i32 0, i32 1 %tmp3 = load i32, ptr addrspace(5) %arrayidx5 %arrayidx6 = getelementptr inbounds i32, ptr addrspace(1) %out, i32 1 store i32 %tmp3, ptr addrspace(1) %arrayidx6 ret void } ; OPT-LABEL: @promote_to_vector_call_c( ; OPT-NOT: alloca ; OPT: extractelement <2 x i32> %{{[0-9]+}}, i32 %in ; ASM-LABEL: {{^}}promote_to_vector_call_c: ; ASM-NOT: LDSByteSize ; ASM: ; ScratchSize: 12 define void @promote_to_vector_call_c(ptr addrspace(1) %out, i32 %in) #0 { entry: %tmp = alloca [2 x i32], addrspace(5) %tmp2 = getelementptr [2 x i32], ptr addrspace(5) %tmp, i32 0, i32 1 store i32 0, ptr addrspace(5) %tmp store i32 1, ptr addrspace(5) %tmp2 %tmp3 = getelementptr [2 x i32], ptr addrspace(5) %tmp, i32 0, i32 %in %tmp4 = load i32, ptr addrspace(5) %tmp3 %tmp5 = load volatile i32, ptr addrspace(1) undef %tmp6 = add i32 %tmp4, %tmp5 store i32 %tmp6, ptr addrspace(1) %out ret void } ; OPT-LABEL: @no_promote_to_lds_c( ; OPT: alloca ; ASM-LABEL: {{^}}no_promote_to_lds_c: ; ASM-NOT: LDSByteSize ; ASM: ; ScratchSize: 24 define void @no_promote_to_lds_c(ptr addrspace(1) nocapture %out, ptr addrspace(1) nocapture %in) #0 { entry: %stack = alloca [5 x i32], align 4, addrspace(5) %0 = load i32, ptr addrspace(1) %in, align 4 %arrayidx1 = getelementptr inbounds [5 x i32], ptr addrspace(5) %stack, i32 0, i32 %0 store i32 4, ptr addrspace(5) %arrayidx1, align 4 %arrayidx2 = getelementptr inbounds i32, ptr addrspace(1) %in, i32 1 %1 = load i32, ptr addrspace(1) %arrayidx2, align 4 %arrayidx3 = getelementptr inbounds [5 x i32], ptr addrspace(5) %stack, i32 0, i32 %1 store i32 5, ptr addrspace(5) %arrayidx3, align 4 %2 = load i32, ptr addrspace(5) %stack, align 4 store i32 %2, ptr addrspace(1) %out, align 4 %arrayidx12 = getelementptr inbounds [5 x i32], ptr addrspace(5) %stack, i32 0, i32 1 %3 = load i32, ptr addrspace(5) %arrayidx12 %arrayidx13 = getelementptr inbounds i32, ptr addrspace(1) %out, i32 1 store i32 %3, ptr addrspace(1) %arrayidx13 ret void } declare i32 @foo(ptr addrspace(5)) #0 ; ASM-LABEL: {{^}}call_private: ; ASM: buffer_store_dword ; ASM: buffer_store_dword ; ASM: s_swappc_b64 ; ASM: ScratchSize: 16 define amdgpu_kernel void @call_private(ptr addrspace(1) %out, i32 %in) #0 { entry: %tmp = alloca [2 x i32], addrspace(5) %tmp2 = getelementptr [2 x i32], ptr addrspace(5) %tmp, i32 0, i32 1 store i32 0, ptr addrspace(5) %tmp store i32 1, ptr addrspace(5) %tmp2 %tmp3 = getelementptr [2 x i32], ptr addrspace(5) %tmp, i32 0, i32 %in %val = call i32 @foo(ptr addrspace(5) %tmp3) store i32 %val, ptr addrspace(1) %out ret void } declare i32 @llvm.amdgcn.workitem.id.x() #1 attributes #0 = { nounwind "amdgpu-flat-work-group-size"="64,64" } attributes #1 = { nounwind readnone } !llvm.module.flags = !{!0} !0 = !{i32 1, !"amdgpu_code_object_version", i32 500}