xref: /aosp_15_r20/external/llvm/test/CodeGen/AMDGPU/wait.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc -march=amdgcn -mcpu=SI -verify-machineinstrs < %s | FileCheck -strict-whitespace %s --check-prefix=DEFAULT
2*9880d681SAndroid Build Coastguard Worker; RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs < %s | FileCheck -strict-whitespace %s --check-prefix=DEFAULT
3*9880d681SAndroid Build Coastguard Worker; RUN: llc -march=amdgcn --misched=ilpmax -mcpu=SI -verify-machineinstrs < %s | FileCheck -strict-whitespace %s --check-prefix=ILPMAX
4*9880d681SAndroid Build Coastguard Worker; RUN: llc -march=amdgcn --misched=ilpmax -mcpu=tonga -verify-machineinstrs < %s | FileCheck -strict-whitespace %s --check-prefix=ILPMAX
5*9880d681SAndroid Build Coastguard Worker; The ilpmax scheduler is used for the second test to get the ordering we want for the test.
6*9880d681SAndroid Build Coastguard Worker
7*9880d681SAndroid Build Coastguard Worker; DEFAULT-LABEL: {{^}}main:
8*9880d681SAndroid Build Coastguard Worker; DEFAULT: s_load_dwordx4
9*9880d681SAndroid Build Coastguard Worker; DEFAULT: s_load_dwordx4
10*9880d681SAndroid Build Coastguard Worker; DEFAULT: s_waitcnt vmcnt(0)
11*9880d681SAndroid Build Coastguard Worker; DEFAULT: exp
12*9880d681SAndroid Build Coastguard Worker; DEFAULT: s_waitcnt lgkmcnt(0)
13*9880d681SAndroid Build Coastguard Worker; DEFAULT: s_endpgm
14*9880d681SAndroid Build Coastguard Workerdefine amdgpu_vs void @main(<16 x i8> addrspace(2)* inreg %arg, <16 x i8> addrspace(2)* inreg %arg1, <32 x i8> addrspace(2)* inreg %arg2, <16 x i8> addrspace(2)* inreg %arg3, <16 x i8> addrspace(2)* inreg %arg4, i32 inreg %arg5, i32 %arg6, i32 %arg7, i32 %arg8, i32 %arg9, float addrspace(2)* inreg %constptr) {
15*9880d681SAndroid Build Coastguard Workermain_body:
16*9880d681SAndroid Build Coastguard Worker  %tmp = getelementptr <16 x i8>, <16 x i8> addrspace(2)* %arg3, i32 0
17*9880d681SAndroid Build Coastguard Worker  %tmp10 = load <16 x i8>, <16 x i8> addrspace(2)* %tmp, !tbaa !0
18*9880d681SAndroid Build Coastguard Worker  %tmp11 = call <4 x float> @llvm.SI.vs.load.input(<16 x i8> %tmp10, i32 0, i32 %arg6)
19*9880d681SAndroid Build Coastguard Worker  %tmp12 = extractelement <4 x float> %tmp11, i32 0
20*9880d681SAndroid Build Coastguard Worker  %tmp13 = extractelement <4 x float> %tmp11, i32 1
21*9880d681SAndroid Build Coastguard Worker  call void @llvm.amdgcn.s.barrier() #1
22*9880d681SAndroid Build Coastguard Worker  %tmp14 = extractelement <4 x float> %tmp11, i32 2
23*9880d681SAndroid Build Coastguard Worker;  %tmp15 = extractelement <4 x float> %tmp11, i32 3
24*9880d681SAndroid Build Coastguard Worker  %tmp15 = load float, float addrspace(2)* %constptr, align 4 ; Force waiting for expcnt and lgkmcnt
25*9880d681SAndroid Build Coastguard Worker  %tmp16 = getelementptr <16 x i8>, <16 x i8> addrspace(2)* %arg3, i32 1
26*9880d681SAndroid Build Coastguard Worker  %tmp17 = load <16 x i8>, <16 x i8> addrspace(2)* %tmp16, !tbaa !0
27*9880d681SAndroid Build Coastguard Worker  %tmp18 = call <4 x float> @llvm.SI.vs.load.input(<16 x i8> %tmp17, i32 0, i32 %arg6)
28*9880d681SAndroid Build Coastguard Worker  %tmp19 = extractelement <4 x float> %tmp18, i32 0
29*9880d681SAndroid Build Coastguard Worker  %tmp20 = extractelement <4 x float> %tmp18, i32 1
30*9880d681SAndroid Build Coastguard Worker  %tmp21 = extractelement <4 x float> %tmp18, i32 2
31*9880d681SAndroid Build Coastguard Worker  %tmp22 = extractelement <4 x float> %tmp18, i32 3
32*9880d681SAndroid Build Coastguard Worker  call void @llvm.SI.export(i32 15, i32 0, i32 0, i32 32, i32 0, float %tmp19, float %tmp20, float %tmp21, float %tmp22)
33*9880d681SAndroid Build Coastguard Worker  call void @llvm.SI.export(i32 15, i32 0, i32 1, i32 12, i32 0, float %tmp12, float %tmp13, float %tmp14, float %tmp15)
34*9880d681SAndroid Build Coastguard Worker  ret void
35*9880d681SAndroid Build Coastguard Worker}
36*9880d681SAndroid Build Coastguard Worker
37*9880d681SAndroid Build Coastguard Worker; ILPMAX-LABEL: {{^}}main2:
38*9880d681SAndroid Build Coastguard Worker; ILPMAX: s_load_dwordx4
39*9880d681SAndroid Build Coastguard Worker; ILPMAX: s_waitcnt lgkmcnt(0)
40*9880d681SAndroid Build Coastguard Worker; ILPMAX: buffer_load
41*9880d681SAndroid Build Coastguard Worker; ILPMAX: s_load_dwordx4
42*9880d681SAndroid Build Coastguard Worker; ILPMAX: s_waitcnt lgkmcnt(0)
43*9880d681SAndroid Build Coastguard Worker; ILPMAX: buffer_load
44*9880d681SAndroid Build Coastguard Worker; ILPMAX: s_waitcnt vmcnt(1)
45*9880d681SAndroid Build Coastguard Worker; ILPMAX: s_waitcnt vmcnt(0)
46*9880d681SAndroid Build Coastguard Worker; ILPMAX: s_endpgm
47*9880d681SAndroid Build Coastguard Worker
48*9880d681SAndroid Build Coastguard Workerdefine amdgpu_vs void @main2([6 x <16 x i8>] addrspace(2)* byval, [17 x <16 x i8>] addrspace(2)* byval, [17 x <4 x i32>] addrspace(2)* byval, [34 x <8 x i32>] addrspace(2)* byval, [16 x <16 x i8>] addrspace(2)*
49*9880d681SAndroid Build Coastguard Workerbyval, i32 inreg, i32 inreg, i32, i32, i32, i32) {
50*9880d681SAndroid Build Coastguard Workermain_body:
51*9880d681SAndroid Build Coastguard Worker  %11 = getelementptr [16 x <16 x i8>], [16 x <16 x i8>] addrspace(2)* %4, i64 0, i64 0
52*9880d681SAndroid Build Coastguard Worker  %12 = load <16 x i8>, <16 x i8> addrspace(2)* %11, align 16, !tbaa !0
53*9880d681SAndroid Build Coastguard Worker  %13 = add i32 %5, %7
54*9880d681SAndroid Build Coastguard Worker  %14 = call <4 x float> @llvm.SI.vs.load.input(<16 x i8> %12, i32 0, i32 %13)
55*9880d681SAndroid Build Coastguard Worker  %15 = extractelement <4 x float> %14, i32 0
56*9880d681SAndroid Build Coastguard Worker  %16 = extractelement <4 x float> %14, i32 1
57*9880d681SAndroid Build Coastguard Worker  %17 = extractelement <4 x float> %14, i32 2
58*9880d681SAndroid Build Coastguard Worker  %18 = extractelement <4 x float> %14, i32 3
59*9880d681SAndroid Build Coastguard Worker  %19 = getelementptr [16 x <16 x i8>], [16 x <16 x i8>] addrspace(2)* %4, i64 0, i64 1
60*9880d681SAndroid Build Coastguard Worker  %20 = load <16 x i8>, <16 x i8> addrspace(2)* %19, align 16, !tbaa !0
61*9880d681SAndroid Build Coastguard Worker  %21 = add i32 %5, %7
62*9880d681SAndroid Build Coastguard Worker  %22 = call <4 x float> @llvm.SI.vs.load.input(<16 x i8> %20, i32 0, i32 %21)
63*9880d681SAndroid Build Coastguard Worker  %23 = extractelement <4 x float> %22, i32 0
64*9880d681SAndroid Build Coastguard Worker  %24 = extractelement <4 x float> %22, i32 1
65*9880d681SAndroid Build Coastguard Worker  %25 = extractelement <4 x float> %22, i32 2
66*9880d681SAndroid Build Coastguard Worker  %26 = extractelement <4 x float> %22, i32 3
67*9880d681SAndroid Build Coastguard Worker  call void @llvm.SI.export(i32 15, i32 0, i32 1, i32 12, i32 0, float %15, float %16, float %17, float %18)
68*9880d681SAndroid Build Coastguard Worker  call void @llvm.SI.export(i32 15, i32 0, i32 0, i32 32, i32 0, float %23, float %24, float %25, float %26)
69*9880d681SAndroid Build Coastguard Worker  ret void
70*9880d681SAndroid Build Coastguard Worker}
71*9880d681SAndroid Build Coastguard Worker
72*9880d681SAndroid Build Coastguard Worker
73*9880d681SAndroid Build Coastguard Worker; Function Attrs: convergent nounwind
74*9880d681SAndroid Build Coastguard Workerdeclare void @llvm.amdgcn.s.barrier() #1
75*9880d681SAndroid Build Coastguard Worker
76*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind readnone
77*9880d681SAndroid Build Coastguard Workerdeclare <4 x float> @llvm.SI.vs.load.input(<16 x i8>, i32, i32) #2
78*9880d681SAndroid Build Coastguard Worker
79*9880d681SAndroid Build Coastguard Workerdeclare void @llvm.SI.export(i32, i32, i32, i32, i32, float, float, float, float)
80*9880d681SAndroid Build Coastguard Worker
81*9880d681SAndroid Build Coastguard Workerattributes #1 = { convergent nounwind }
82*9880d681SAndroid Build Coastguard Workerattributes #2 = { nounwind readnone }
83*9880d681SAndroid Build Coastguard Worker
84*9880d681SAndroid Build Coastguard Worker!0 = !{!1, !1, i64 0, i32 1}
85*9880d681SAndroid Build Coastguard Worker!1 = !{!"const", null}
86