blob: 9b9d844cb0c6d69b840fbf6c73651221bf06b40e [file] [log] [blame]
Nicolai Haehnle2857dc32016-12-08 14:08:02 +00001;RUN: llc < %s -march=amdgcn -mcpu=verde -mattr=+vgpr-spilling -mattr=-promote-alloca -verify-machineinstrs | FileCheck %s -check-prefix=CHECK
Matt Arsenault7aad8fd2017-01-24 22:02:15 +00002;RUN: llc < %s -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -mattr=+vgpr-spilling -mattr=-promote-alloca -verify-machineinstrs | FileCheck %s -check-prefix=CHECK
Nicolai Haehnle2857dc32016-12-08 14:08:02 +00003
4; Allocate two stack slots of 2052 bytes each requiring a total of 4104 bytes.
5; Extracting the last element of each does not fit into the offset field of
6; MUBUF instructions, so a new base register is needed. This used to not
7; happen, leading to an assertion.
8
9; CHECK-LABEL: {{^}}main:
10; CHECK: buffer_store_dword
11; CHECK: buffer_store_dword
12; CHECK: buffer_load_dword
13; CHECK: buffer_load_dword
14define amdgpu_gs float @main(float %v1, float %v2, i32 %idx1, i32 %idx2) {
15main_body:
16 %m1 = alloca [513 x float]
17 %m2 = alloca [513 x float]
18
19 %gep1.store = getelementptr [513 x float], [513 x float]* %m1, i32 0, i32 %idx1
20 store float %v1, float* %gep1.store
21
22 %gep2.store = getelementptr [513 x float], [513 x float]* %m2, i32 0, i32 %idx2
23 store float %v2, float* %gep2.store
24
25; This used to use a base reg equal to 0.
26 %gep1.load = getelementptr [513 x float], [513 x float]* %m1, i32 0, i32 0
27 %out1 = load float, float* %gep1.load
28
29; This used to attempt to re-use the base reg at 0, generating an out-of-bounds instruction offset.
30 %gep2.load = getelementptr [513 x float], [513 x float]* %m2, i32 0, i32 512
31 %out2 = load float, float* %gep2.load
32
33 %r = fadd float %out1, %out2
34 ret float %r
35}