The patch adds SPIRVPrepareFunctions pass, which modifies function signatures containing aggregate arguments and/or return values before IR translation. Information about the original signatures is stored in metadata. It is used during call lowering to restore correct SPIR-V types of function arguments and return values. This pass also substitutes some llvm intrinsic calls to function calls, generating the necessary functions in the module, as the SPIRV translator does. The patch also includes changes in other modules, fixing errors and enabling many SPIR-V features that were omitted earlier. And 15 LIT tests are also added to demonstrate the new functionality. Differential Revision: https://reviews.llvm.org/D129730 Co-authored-by: Aleksandr Bezzubikov <zuban32s@gmail.com> Co-authored-by: Michal Paszkowski <michal.paszkowski@outlook.com> Co-authored-by: Andrey Tretyakov <andrey1.tretyakov@intel.com> Co-authored-by: Konrad Trifunovic <konrad.trifunovic@intel.com>
22 lines
846 B
LLVM
22 lines
846 B
LLVM
; RUN: llc -O0 -mtriple=spirv64-unknown-unknown %s -o - | FileCheck %s --check-prefix=CHECK
|
|
|
|
; CHECK: %[[#Int8Ty:]] = OpTypeInt 8 0
|
|
; CHECK: %[[#PtrTy:]] = OpTypePointer Function %[[#Int8Ty]]
|
|
; CHECK: %[[#Int64Ty:]] = OpTypeInt 64 0
|
|
; CHECK: %[[#FTy:]] = OpTypeFunction %[[#Int64Ty]] %[[#PtrTy]]
|
|
; CHECK: %[[#Int32Ty:]] = OpTypeInt 32 0
|
|
; CHECK: %[[#Const:]] = OpConstant %[[#Int32Ty]] 0
|
|
; CHECK: OpFunction %[[#Int64Ty]] None %[[#FTy]]
|
|
; CHECK: %[[#Parm:]] = OpFunctionParameter %[[#PtrTy]]
|
|
; CHECK: OpStore %[[#Parm]] %[[#Const]] Aligned 4
|
|
; CHECK: %[[#Res:]] = OpLoad %[[#Int64Ty]] %[[#Parm]] Aligned 8
|
|
; CHECK: OpReturnValue %[[#Res]]
|
|
|
|
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"
|
|
|
|
define i64 @test(ptr %p) {
|
|
store i32 0, ptr %p
|
|
%v = load i64, ptr %p
|
|
ret i64 %v
|
|
}
|