1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
; RUN: llc -mcpu=gfx942 < %s | FileCheck %s
target triple = "amdgcn-amd-amdhsa"
define protected amdgpu_kernel void @test_valu(ptr addrspace(1) noalias noundef writeonly captures(none) %to.coerce, ptr addrspace(1) noalias noundef readonly captures(none) %from.coerce, i32 noundef %k, ptr addrspace(1) noundef writeonly captures(none) %ret.coerce, i32 noundef %length) local_unnamed_addr #0 {
; CHECK-LABEL: test_valu
; CHECK: s_mul_i32
; CHECK: ASMSTART
entry:
%a0 = tail call i32 @llvm.amdgcn.workgroup.id.x()
%mul = shl i32 %a0, 6
%a1 = tail call i32 @llvm.amdgcn.workitem.id.x()
%add = add i32 %mul, %a1
%cmp = icmp slt i32 %add, %length
br i1 %cmp, label %if.then, label %if.end
if.then: ; preds = %entry
%idx.ext = sext i32 %add to i64
%add.ptr = getelementptr inbounds float, ptr addrspace(1) %to.coerce, i64 %idx.ext
%mul4 = shl nsw i32 %add, 2
%idx.ext5 = sext i32 %mul4 to i64
%add.ptr6 = getelementptr inbounds float, ptr addrspace(1) %from.coerce, i64 %idx.ext5
%a2 = load <4 x float>, ptr addrspace(1) %add.ptr6, align 16
%a3 = extractelement <4 x float> %a2, i64 3
%a4 = extractelement <4 x float> %a2, i64 0
%a5 = tail call contract noundef float asm "v_add_f32_e32 $0, $1, $2", "=v,v,v"(float %a3, float %a4) #3
%a6 = extractelement <4 x float> %a2, i64 1
%a7 = extractelement <4 x float> %a2, i64 2
%add7 = fadd contract float %a6, %a7
%add8 = fadd contract float %a5, %add7
store float %add8, ptr addrspace(1) %add.ptr, align 4
%mul9 = mul nsw i32 %k, 3
store i32 %mul9, ptr addrspace(1) %ret.coerce, align 4
tail call void @llvm.amdgcn.sched.group.barrier(i32 2, i32 7, i32 0)
tail call void @llvm.amdgcn.sched.group.barrier(i32 4, i32 1, i32 0)
tail call void @llvm.amdgcn.sched.group.barrier(i32 2, i32 4, i32 0)
br label %if.end
if.end: ; preds = %if.then, %entry
ret void
}
define protected amdgpu_kernel void @test_salu(ptr addrspace(1) noalias noundef writeonly captures(none) %to.coerce, ptr addrspace(1) noalias noundef readonly captures(none) %from.coerce, i32 noundef %k, ptr addrspace(1) noundef writeonly captures(none) %ret.coerce, i32 noundef %length) local_unnamed_addr #0 {
; CHECK-LABEL: test_salu
; CHECK: %bb.1
; CHECK-NEXT: s_load
; CHECK-NEXT: s_load
; CHECK-NEXT: s_waitcnt
; CHECK-NEXT: ASMSTART
entry:
%a0 = tail call i32 @llvm.amdgcn.workgroup.id.x()
%mul = shl i32 %a0, 6
%a1 = tail call i32 @llvm.amdgcn.workitem.id.x()
%add = add i32 %mul, %a1
%cmp = icmp slt i32 %add, %length
br i1 %cmp, label %if.then, label %if.end
if.then: ; preds = %entry
%idx.ext = sext i32 %add to i64
%add.ptr = getelementptr inbounds float, ptr addrspace(1) %to.coerce, i64 %idx.ext
%mul4 = shl nsw i32 %add, 2
%idx.ext5 = sext i32 %mul4 to i64
%add.ptr6 = getelementptr inbounds float, ptr addrspace(1) %from.coerce, i64 %idx.ext5
%a2 = load <4 x float>, ptr addrspace(1) %add.ptr6, align 16
%a3 = extractelement <4 x float> %a2, i64 3
%a4 = extractelement <4 x float> %a2, i64 0
%a5 = fadd contract float %a3, %a4
%a6 = extractelement <4 x float> %a2, i64 1
%a7 = extractelement <4 x float> %a2, i64 2
%add7 = fadd contract float %a6, %a7
%add8 = fadd contract float %a5, %add7
store float %add8, ptr addrspace(1) %add.ptr, align 4
%mul9 = tail call noundef i32 asm "s_mul_i32, $0, $1, 3", "=s,s"(i32 %k) #3
store i32 %mul9, ptr addrspace(1) %ret.coerce, align 4
tail call void @llvm.amdgcn.sched.group.barrier(i32 4, i32 1, i32 0)
tail call void @llvm.amdgcn.sched.group.barrier(i32 2, i32 10, i32 0)
br label %if.end
if.end: ; preds = %if.then, %entry
ret void
}
define protected amdgpu_kernel void @test_mfma(ptr addrspace(1) noalias noundef writeonly captures(none) %to.coerce, ptr addrspace(1) noalias noundef readonly captures(none) %from.coerce, i32 noundef %length) local_unnamed_addr #0 {
; CHECK-LABEL: test_mfma
; CHECK: v_add_f32_e32
; CHECK-NEXT: ;;#ASMSTART
; CHECK-NEXT: v_mfma_f64
; CHECK-NEXT: ;;#ASMEND
; CHECK: v_add_f32_e32
entry:
%a0 = tail call i32 @llvm.amdgcn.workgroup.id.x()
%mul = shl i32 %a0, 6
%a1 = tail call i32 @llvm.amdgcn.workitem.id.x()
%add = add i32 %mul, %a1
%cmp = icmp slt i32 %add, %length
br i1 %cmp, label %if.then, label %if.end
if.then: ; preds = %entry
%idx.ext = sext i32 %add to i64
%add.ptr = getelementptr inbounds float, ptr addrspace(1) %to.coerce, i64 %idx.ext
%mul3 = shl nsw i32 %add, 2
%idx.ext4 = sext i32 %mul3 to i64
%add.ptr5 = getelementptr inbounds float, ptr addrspace(1) %from.coerce, i64 %idx.ext4
%a2 = load <2 x float>, ptr addrspace(1) %add.ptr5, align 16
%a20 = add i64 %idx.ext4, 2
%a21 = getelementptr inbounds float, ptr addrspace(1) %from.coerce, i64 %a20
%a22 = load <2 x float>, ptr addrspace(1) %a21, align 16
%a3 = extractelement <2 x float> %a22, i64 1
%a4 = extractelement <2 x float> %a2, i64 0
%a5 = tail call contract noundef float asm "v_mfma_f64_4x4x4f64 $0, $1, $2, 0", "=a,v,v"(<2 x float> %a2, <2 x float> %a22) #3
%a6 = extractelement <2 x float> %a2, i64 1
%a7 = extractelement <2 x float> %a22, i64 0
%add6 = fadd contract float %a6, %a7
%add7 = fadd contract float %a5, %add6
store float %add7, ptr addrspace(1) %add.ptr, align 4
tail call void @llvm.amdgcn.sched.group.barrier(i32 16, i32 1, i32 0)
tail call void @llvm.amdgcn.sched.group.barrier(i32 2, i32 9, i32 0)
tail call void @llvm.amdgcn.sched.group.barrier(i32 16, i32 1, i32 0)
tail call void @llvm.amdgcn.sched.group.barrier(i32 2, i32 1, i32 0)
tail call void @llvm.amdgcn.sched.group.barrier(i32 8, i32 1, i32 0)
tail call void @llvm.amdgcn.sched.group.barrier(i32 2, i32 1, i32 0)
br label %if.end
if.end: ; preds = %if.then, %entry
ret void
}
@_ZZ16group4_sum_floatPfPKfE6cpymem = internal addrspace(3) global [8 x float] undef, align 16
define protected amdgpu_kernel void @test_ds(ptr addrspace(1) noalias noundef writeonly captures(none) %to.coerce, ptr addrspace(1) noalias noundef readonly captures(none) %from.coerce, i32 noundef %length) local_unnamed_addr #0 {
; CHECK-LABEL: test_ds
; CHECK-DAG: v_lshl_add_u64
; CHECK-DAG: v_add_f32_e32
; CHECK-NEXT: ASMSTART
entry:
%a0 = tail call i32 @llvm.amdgcn.workgroup.id.x()
%mul = shl i32 %a0, 6
%a1 = tail call i32 @llvm.amdgcn.workitem.id.x()
%add = add i32 %mul, %a1
%cmp = icmp slt i32 %add, %length
br i1 %cmp, label %if.then, label %if.end
if.then: ; preds = %entry
%idx.ext = sext i32 %add to i64
%add.ptr = getelementptr inbounds float, ptr addrspace(1) %to.coerce, i64 %idx.ext
%mul3 = shl nsw i32 %add, 2
%idx.ext4 = sext i32 %mul3 to i64
%add.ptr5 = getelementptr inbounds float, ptr addrspace(1) %from.coerce, i64 %idx.ext4
%a2 = load <2 x float>, ptr addrspace(1) %add.ptr5, align 16
%a20 = add i64 %idx.ext4, 2
%a21 = getelementptr inbounds float, ptr addrspace(1) %from.coerce, i64 %a20
%a22 = load <2 x float>, ptr addrspace(1) %a21, align 16
%a3 = extractelement <2 x float> %a22, i64 1
%a4 = extractelement <2 x float> %a2, i64 0
%a5 = tail call contract noundef float asm "ds_read_b32 $0, $1 offset:0", "=v,v,~{memory}"(i32 ptrtoint (ptr addrspacecast (ptr addrspace(3) @_ZZ16group4_sum_floatPfPKfE6cpymem to ptr) to i32)) #4
%a6 = extractelement <2 x float> %a2, i64 1
%a7 = extractelement <2 x float> %a22, i64 0
%add6 = fadd contract float %a6, %a7
%add7 = fadd contract float %a5, %add6
store float %add7, ptr addrspace(1) %add.ptr, align 4
tail call void @llvm.amdgcn.sched.group.barrier(i32 2, i32 11, i32 0)
tail call void @llvm.amdgcn.sched.group.barrier(i32 128, i32 1, i32 0)
tail call void @llvm.amdgcn.sched.group.barrier(i32 2, i32 1, i32 0)
br label %if.end
if.end: ; preds = %if.then, %entry
ret void
}
declare noundef i32 @llvm.amdgcn.workgroup.id.x() #1
declare noundef range(i32 0, 1024) i32 @llvm.amdgcn.workitem.id.x() #1
declare void @llvm.amdgcn.sched.group.barrier(i32 immarg, i32 immarg, i32 immarg) #2
attributes #0 = { convergent mustprogress norecurse nounwind "amdgpu-agpr-alloc"="1" "amdgpu-flat-work-group-size"="1,1024" "amdgpu-no-completion-action" "amdgpu-no-default-queue" "amdgpu-no-dispatch-id" "amdgpu-no-dispatch-ptr" "amdgpu-no-flat-scratch-init" "amdgpu-no-heap-ptr" "amdgpu-no-hostcall-ptr" "amdgpu-no-implicitarg-ptr" "amdgpu-no-lds-kernel-id" "amdgpu-no-multigrid-sync-arg" "amdgpu-no-queue-ptr" "amdgpu-no-workgroup-id-x" "amdgpu-no-workgroup-id-y" "amdgpu-no-workgroup-id-z" "amdgpu-no-workitem-id-x" "amdgpu-no-workitem-id-y" "amdgpu-no-workitem-id-z" "amdgpu-waves-per-eu"="4,8" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="gfx942" "target-features"="+16-bit-insts,+atomic-buffer-global-pk-add-f16-insts,+atomic-ds-pk-add-16-insts,+atomic-fadd-rtn-insts,+atomic-flat-pk-add-16-insts,+atomic-fmin-fmax-global-f64,+atomic-global-pk-add-bf16-inst,+ci-insts,+dl-insts,+dot1-insts,+dot10-insts,+dot2-insts,+dot3-insts,+dot4-insts,+dot5-insts,+dot6-insts,+dot7-insts,+dpp,+fp8-conversion-insts,+fp8-insts,+gfx8-insts,+gfx9-insts,+gfx90a-insts,+gfx940-insts,+mai-insts,+s-memrealtime,+s-memtime-inst,+wavefrontsize64,+xf32-insts" "uniform-work-group-size"="true" }
attributes #1 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) }
attributes #2 = { convergent nocallback nofree nounwind willreturn }
attributes #3 = { convergent nounwind memory(none) }
attributes #4 = { convergent nounwind }
|