forked from KhronosGroup/SPIRV-LLVM-Translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpSwitch32.ll
100 lines (88 loc) · 3.5 KB
/
OpSwitch32.ll
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
;__kernel void test_32(__global int* res)
;{
; int tid = get_global_id(0);
;
; switch(tid)
; {
; case 0:
; res[tid] = 1;
; break;
; case 1:
; res[tid] = 2;
; break;
; }
;}
; bash$ clang -cc1 -triple spir64-unknown-unknown -x cl -cl-std=CL2.0 -O0 -include opencl.h -emit-llvm OpSwitch.cl -o test_32.ll
; RUN: llvm-as %s -o %t.bc
; RUN: llvm-spirv %t.bc -spirv-text -o %t.spt
; RUN: FileCheck < %t.spt %s --check-prefix=CHECK-SPIRV
; RUN: llvm-spirv %t.bc -o %t.spv
; RUN: llvm-spirv -r %t.spv -o %t.bc
; RUN: llvm-dis < %t.bc | FileCheck %s --check-prefix=CHECK-LLVM
; CHECK-SPIRV: 7 Switch {{[0-9]+}} {{[0-9]+}} 0 {{[0-9]+}} 1 {{[0-9]+}}
; ModuleID = 'main'
target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-n8:16:32:64"
target triple = "spir64-unknown-unknown"
;CHECK-LLVM: test_32
;CHECK-LLVM: entry
;CHECK-LLVM: switch i32 %conv, label %sw.epilog
;CHECK-LLVM: i32 0, label %sw.bb
;CHECK-LLVM: i32 1, label %sw.bb1
; Function Attrs: nounwind
define spir_kernel void @test_32(i32 addrspace(1)* %res) #0 !kernel_arg_addr_space !1 !kernel_arg_access_qual !2 !kernel_arg_type !3 !kernel_arg_base_type !4 !kernel_arg_type_qual !5 {
entry:
%res.addr = alloca i32 addrspace(1)*, align 8
%tid = alloca i32, align 4
store i32 addrspace(1)* %res, i32 addrspace(1)** %res.addr, align 8
%call = call spir_func i64 @_Z13get_global_idj(i32 0) #2
%conv = trunc i64 %call to i32
store i32 %conv, i32* %tid, align 4
%0 = load i32, i32* %tid, align 4
switch i32 %0, label %sw.epilog [
i32 0, label %sw.bb
i32 1, label %sw.bb1
]
;CHECK-LLVM: sw.bb
;CHECK-LLVM: preds = %entry
sw.bb: ; preds = %entry
%1 = load i32, i32* %tid, align 4
%idxprom = sext i32 %1 to i64
%2 = load i32 addrspace(1)*, i32 addrspace(1)** %res.addr, align 8
%arrayidx = getelementptr inbounds i32, i32 addrspace(1)* %2, i64 %idxprom
store i32 1, i32 addrspace(1)* %arrayidx, align 4
br label %sw.epilog
;CHECK-LLVM: sw.bb1
;CHECK-LLVM: preds = %entry
sw.bb1: ; preds = %entry
%3 = load i32, i32* %tid, align 4
%idxprom2 = sext i32 %3 to i64
%4 = load i32 addrspace(1)*, i32 addrspace(1)** %res.addr, align 8
%arrayidx3 = getelementptr inbounds i32, i32 addrspace(1)* %4, i64 %idxprom2
store i32 2, i32 addrspace(1)* %arrayidx3, align 4
br label %sw.epilog
;CHECK-LLVM: sw.epilog
;CHECK-LLVM: preds = %sw.bb1, %sw.bb, %entry
sw.epilog: ; preds = %entry, %sw.bb1, %sw.bb
ret void
}
; Function Attrs: nounwind readnone
declare spir_func i64 @_Z13get_global_idj(i32) #1
attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-realign-stack" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
attributes #1 = { nounwind readnone "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-realign-stack" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
attributes #2 = { nounwind readnone }
!opencl.enable.FP_CONTRACT = !{}
!opencl.spir.version = !{!6}
!opencl.ocl.version = !{!7}
!opencl.used.extensions = !{!8}
!opencl.used.optional.core.features = !{!8}
!opencl.compiler.options = !{!8}
!llvm.ident = !{!9}
!1 = !{i32 1}
!2 = !{!"none"}
!3 = !{!"int*"}
!4 = !{!"int*"}
!5 = !{!""}
!6 = !{i32 1, i32 2}
!7 = !{i32 2, i32 0}
!8 = !{}
!9 = !{!"clang version 3.6.1"}