forked from KhronosGroup/SPIRV-LLVM-Translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entry_point_func.ll
58 lines (48 loc) · 1.91 KB
/
entry_point_func.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
;; Test to check that an LLVM spir_kernel gets translated into an
;; Entrypoint wrapper and Function with LinkageAttributes
; RUN: llvm-as %s -o %t.bc
; RUN: llvm-spirv %t.bc -o - -spirv-text | FileCheck %s --check-prefix=CHECK-SPIRV
; RUN: llvm-spirv %t.bc -o %t.spv
; RUN: spirv-val %t.spv
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"
define spir_kernel void @testfunction() {
ret void
}
define spir_kernel void @callerfunction() {
call spir_kernel void @testfunction()
call spir_kernel void @testdeclaration()
ret void
}
declare spir_kernel void @testdeclaration()
; Check there is an entrypoint and a function produced.
; CHECK-SPIRV: EntryPoint 6 [[#CallerEn:]] "callerfunction"
; CHECK-SPIRV: EntryPoint 6 [[#TestEn:]] "testfunction"
; CHECK-SPIRV: Name [[#TestDecl:]] "testdeclaration"
; CHECK-SPIRV: Name [[#TestFn:]] "testfunction"
; CHECK-SPIRV: Decorate [[#TestDecl]] LinkageAttributes "testdeclaration" Import
; CHECK-SPIRV: Decorate [[#TestFn]] LinkageAttributes "testfunction" Export
; CHECK-SPIRV: Function [[#]] [[#TestDecl]] [[#]] [[#]]
; CHECK-SPIRV-EMPTY:
; CHECK-SPIRV-NEXT: FunctionEnd
; CHECK-SPIRV: Function [[#]] [[#TestFn]] [[#]] [[#]]
; CHECK-SPIRV-EMPTY:
; CHECK-SPIRV-NEXT: Label
; CHECK-SPIRV-NEXT: Return
; CHECK-SPIRV-EMPTY:
; CHECK-SPIRV-NEXT: FunctionEnd
; CHECK-SPIRV: Function [[#]] [[#CallerEn]] [[#]] [[#]]
; CHECK-SPIRV-EMPTY:
; CHECK-SPIRV-NEXT: Label
; CHECK-SPIRV-NEXT: FunctionCall [[#]] [[#]] [[#TestFn]]
; CHECK-SPIRV-NEXT: FunctionCall [[#]] [[#]] [[#TestDecl]]
; CHECK-SPIRV-NEXT: Return
; CHECK-SPIRV-EMPTY:
; CHECK-SPIRV-NEXT: FunctionEnd
; CHECK-SPIRV: Function [[#]] [[#TestEn]] [[#]] [[#]]
; CHECK-SPIRV-EMPTY:
; CHECK-SPIRV-NEXT: Label
; CHECK-SPIRV-NEXT: FunctionCall [[#]] [[#]] [[#TestFn]]
; CHECK-SPIRV-NEXT: Return
; CHECK-SPIRV-EMPTY:
; CHECK-SPIRV-NEXT: FunctionEnd