File: entry_point_func.ll

package info (click to toggle)
spirv-llvm-translator-15 15.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,028 kB
  • sloc: cpp: 43,715; lisp: 3,497; sh: 153; python: 43; makefile: 26
file content (21 lines) | stat: -rw-r--r-- 862 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;; 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
}

; Check there is an entrypoint and a function produced.
; CHECK-SPIRV: EntryPoint 6 [[EP:[0-9]+]] "testfunction"
; CHECK-SPIRV: Name [[FUNC:[0-9]+]] "testfunction"
; CHECK-SPIRV: Decorate [[FUNC]] LinkageAttributes "testfunction" Export
; CHECK-SPIRV: Function 2 [[FUNC]] 0 3
; CHECK-SPIRV: Function 2 [[EP]] 0 3
; CHECK-SPIRV: FunctionCall 2 8 [[FUNC]]