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
|
; RUN: llvm-as %s -o %t.bc
; RUN: llvm-spirv %t.bc --spirv-ext=+SPV_INTEL_kernel_attributes -o %t.spv
; RUN: llvm-spirv %t.spv -to-text -o %t.spt
; RUN: FileCheck < %t.spt %s --check-prefix=CHECK-SPIRV
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc
; RUN: llvm-dis < %t.rev.bc | FileCheck %s --check-prefix=CHECK-LLVM
; CHECK-SPIRV: Capability FPGAKernelAttributesINTEL
; CHECK-SPIRV: Extension "SPV_INTEL_kernel_attributes"
; CHECK-SPIRV: EntryPoint [[#]] [[#KERNEL1:]] "test_1"
; CHECK-SPIRV: EntryPoint [[#]] [[#KERNEL2:]] "test_2"
; CHECK-SPIRV: ExecutionMode [[#KERNEL1]] 6154 0
; CHECK-SPIRV: ExecutionMode [[#KERNEL2]] 6154 1
; CHECK-SPIRV: Function [[#]] [[#KERNEL1]]
; CHECK-SPIRV: Function [[#]] [[#KERNEL2]]
; CHECK-LLVM: define spir_kernel void @test_1{{.*}} !ip_interface ![[#NOSTALLFREE:]]
; CHECK-LLVM: define spir_kernel void @test_2{{.*}} !ip_interface ![[#STALLFREE:]]
; CHECK-LLVM: ![[#NOSTALLFREE:]] = !{!"streaming"}
; CHECK-LLVM: ![[#STALLFREE:]] = !{!"streaming", !"stall_free_return"}
; ModuleID = 'test.bc'
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v16:16:16-v24:32:32-v32:32:32-v48:64:64-v64:64:64-v96:128:128-v128:128:128-v192:256:256-v256:256:256-v512:512:512-v1024:1024:1024"
target triple = "spir64-unknown-unknown"
; Function Attrs: nounwind
define spir_kernel void @test_1() #0 !ip_interface !0
{
entry:
ret void
}
; Function Attrs: nounwind
define spir_kernel void @test_2() #0 !ip_interface !1
{
entry:
ret void
}
attributes #0 = { nounwind }
!0 = !{!"streaming"}
!1 = !{!"streaming", !"stall_free_return"}
|