This pull request aims to remove any dependency on OpenCL/SPIR-V type information in LLVM IR metadata. While, using metadata might simplify and prettify the resulting SPIR-V output (and restore some of the information missed in the transformation to opaque pointers), the overall methodology for resolving kernel parameter types is highly inefficient. The high-level strategy is to assign kernel parameter types in this order: 1. Resolving the types using builtin function calls as mangled names must contain type information or by looking up builtin definition in SPIRVBuiltins.td. Then: - Assigning the type temporarily using an intrinsic and later setting the right SPIR-V type in SPIRVGlobalRegistry after IRTranslation - Inserting a bitcast 2. Defaulting to LLVM IR types (in case of pointers the generic i8* type or types from byval/byref attributes) In case of type incompatibility (e.g. parameter defined initially as sampler_t and later used as image_t) the error will be found early on before IRTranslation (in the SPIRVEmitIntrinsics pass).
62 lines
1.9 KiB
LLVM
62 lines
1.9 KiB
LLVM
; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s
|
|
|
|
; CHECK-DAG: OpName %[[#BAR:]] "bar"
|
|
; CHECK-DAG: OpName %[[#FOO:]] "foo"
|
|
; CHECK-DAG: OpName %[[#GOO:]] "goo"
|
|
|
|
; CHECK-DAG: %[[#INT:]] = OpTypeInt 32
|
|
; CHECK-DAG: %[[#STACK_PTR_INT:]] = OpTypePointer Function %[[#INT]]
|
|
; CHECK-DAG: %[[#GLOBAL_PTR_INT:]] = OpTypePointer CrossWorkgroup %[[#INT]]
|
|
; CHECK-DAG: %[[#FN1:]] = OpTypeFunction %[[#INT]] %[[#INT]]
|
|
; CHECK-DAG: %[[#FN2:]] = OpTypeFunction %[[#INT]] %[[#INT]] %[[#GLOBAL_PTR_INT]]
|
|
|
|
define i32 @bar(i32 %a) {
|
|
%p = alloca i32
|
|
store i32 %a, i32* %p
|
|
%b = load i32, i32* %p
|
|
ret i32 %b
|
|
}
|
|
|
|
; CHECK: %[[#BAR]] = OpFunction %[[#INT]] None %[[#FN1]]
|
|
; CHECK: %[[#A:]] = OpFunctionParameter %[[#INT]]
|
|
; CHECK: OpLabel
|
|
; CHECK: %[[#P:]] = OpVariable %[[#STACK_PTR_INT]] Function
|
|
; CHECK: OpStore %[[#P]] %[[#A]]
|
|
; CHECK: %[[#B:]] = OpLoad %[[#INT]] %[[#P]]
|
|
; CHECK: OpReturnValue %[[#B]]
|
|
; CHECK: OpFunctionEnd
|
|
|
|
|
|
define i32 @foo(i32 %a) {
|
|
%p = alloca i32
|
|
store volatile i32 %a, i32* %p
|
|
%b = load volatile i32, i32* %p
|
|
ret i32 %b
|
|
}
|
|
|
|
; CHECK: %[[#FOO]] = OpFunction %[[#INT]] None %[[#FN1]]
|
|
; CHECK: %[[#A:]] = OpFunctionParameter %[[#INT]]
|
|
; CHECK: OpLabel
|
|
; CHECK: %[[#P:]] = OpVariable %[[#STACK_PTR_INT]] Function
|
|
; CHECK: OpStore %[[#P]] %[[#A]] Volatile
|
|
; CHECK: %[[#B:]] = OpLoad %[[#INT]] %[[#P]] Volatile
|
|
; CHECK: OpReturnValue %[[#B]]
|
|
; CHECK: OpFunctionEnd
|
|
|
|
|
|
;; Test load and store in global address space.
|
|
define i32 @goo(i32 %a, ptr addrspace(1) %p) {
|
|
store i32 %a, i32 addrspace(1)* %p
|
|
%b = load i32, i32 addrspace(1)* %p
|
|
ret i32 %b
|
|
}
|
|
|
|
; CHECK: %[[#GOO]] = OpFunction %[[#INT]] None %[[#FN2]]
|
|
; CHECK: %[[#A:]] = OpFunctionParameter %[[#INT]]
|
|
; CHECK: %[[#P:]] = OpFunctionParameter %[[#GLOBAL_PTR_INT]]
|
|
; CHECK: OpLabel
|
|
; CHECK: OpStore %[[#P]] %[[#A]]
|
|
; CHECK: %[[#B:]] = OpLoad %[[#INT]] %[[#P]]
|
|
; CHECK: OpReturnValue %[[#B]]
|
|
; CHECK: OpFunctionEnd
|