1 //===----- CGOpenCLRuntime.h - Interface to OpenCL Runtimes -----*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This provides an abstract class for OpenCL code generation. Concrete
10 // subclasses of this implement code generation for specific OpenCL
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_CLANG_LIB_CODEGEN_CGOPENCLRUNTIME_H
16 #define LLVM_CLANG_LIB_CODEGEN_CGOPENCLRUNTIME_H
18 #include "clang/AST/Expr.h"
19 #include "clang/AST/Type.h"
20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/ADT/StringMap.h"
22 #include "llvm/IR/Type.h"
23 #include "llvm/IR/Value.h"
33 class CodeGenFunction
;
36 class CGOpenCLRuntime
{
41 llvm::Type
*SamplerTy
;
43 /// Structure for enqueued block information.
44 struct EnqueuedBlockInfo
{
45 llvm::Function
*InvokeFunc
; /// Block invoke function.
46 llvm::Value
*KernelHandle
; /// Enqueued block kernel reference.
47 llvm::Value
*BlockArg
; /// The first argument to enqueued block kernel.
48 llvm::Type
*BlockTy
; /// Type of the block argument.
50 /// Maps block expression to block information.
51 llvm::DenseMap
<const Expr
*, EnqueuedBlockInfo
> EnqueuedBlockMap
;
53 virtual llvm::Type
*getPipeType(const PipeType
*T
, StringRef Name
,
55 llvm::PointerType
*getPointerType(const Type
*T
);
58 CGOpenCLRuntime(CodeGenModule
&CGM
) : CGM(CGM
),
59 PipeROTy(nullptr), PipeWOTy(nullptr), SamplerTy(nullptr) {}
60 virtual ~CGOpenCLRuntime();
62 /// Emit the IR required for a work-group-local variable declaration, and add
63 /// an entry to CGF's LocalDeclMap for D. The base class does this using
64 /// CodeGenFunction::EmitStaticVarDecl to emit an internal global for D.
65 virtual void EmitWorkGroupLocalVarDecl(CodeGenFunction
&CGF
,
68 virtual llvm::Type
*convertOpenCLSpecificType(const Type
*T
);
70 virtual llvm::Type
*getPipeType(const PipeType
*T
);
72 llvm::Type
*getSamplerType(const Type
*T
);
74 // Returns a value which indicates the size in bytes of the pipe
76 virtual llvm::Value
*getPipeElemSize(const Expr
*PipeArg
);
78 // Returns a value which indicates the alignment in bytes of the pipe
80 virtual llvm::Value
*getPipeElemAlign(const Expr
*PipeArg
);
82 /// \return __generic void* type.
83 llvm::PointerType
*getGenericVoidPointerType();
85 /// \return enqueued block information for enqueued block.
86 EnqueuedBlockInfo
emitOpenCLEnqueuedBlock(CodeGenFunction
&CGF
,
89 /// Record invoke function and block literal emitted during normal
90 /// codegen for a block expression. The information is used by
91 /// emitOpenCLEnqueuedBlock to emit wrapper kernel.
93 /// \param InvokeF invoke function emitted for the block expression.
94 /// \param Block block literal emitted for the block expression.
95 void recordBlockInfo(const BlockExpr
*E
, llvm::Function
*InvokeF
,
96 llvm::Value
*Block
, llvm::Type
*BlockTy
);
98 /// \return LLVM block invoke function emitted for an expression derived from
99 /// the block expression.
100 llvm::Function
*getInvokeFunction(const Expr
*E
);