summaryrefslogtreecommitdiff
path: root/amdgcn/lib/workitem/get_group_id.ll
blob: 9d820e0b3e48f077cd9325a6fb65524d6611a42c (plain)
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
declare i32 @llvm.amdgcn.workgroup.id.x() #0
declare i32 @llvm.amdgcn.workgroup.id.y() #0
declare i32 @llvm.amdgcn.workgroup.id.z() #0

define i32 @get_group_id(i32 %dim) #1 {
  switch i32 %dim, label %default [
    i32 0, label %x_dim
    i32 1, label %y_dim
    i32 2, label %z_dim
  ]

x_dim:
  %x = tail call i32 @llvm.amdgcn.workgroup.id.x()
  ret i32 %x

y_dim:
  %y = tail call i32 @llvm.amdgcn.workgroup.id.y()
  ret i32 %y

z_dim:
  %z = tail call i32 @llvm.amdgcn.workgroup.id.z()
  ret i32 %z

default:
  ret i32 0
}

attributes #0 = { nounwind readnone }
attributes #1 = { alwaysinline norecurse nounwind readnone }