clang 23.0.0git
CGOpenCLRuntime.h
Go to the documentation of this file.
1//===----- CGOpenCLRuntime.h - Interface to OpenCL Runtimes -----*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// This provides an abstract class for OpenCL code generation. Concrete
10// subclasses of this implement code generation for specific OpenCL
11// runtime libraries.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_LIB_CODEGEN_CGOPENCLRUNTIME_H
16#define LLVM_CLANG_LIB_CODEGEN_CGOPENCLRUNTIME_H
17
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"
24
25namespace clang {
26
27class BlockExpr;
28class Expr;
29class VarDecl;
30
31namespace CodeGen {
32
33class CodeGenFunction;
34class CodeGenModule;
35
37protected:
39 llvm::Type *PipeTy;
40 llvm::Type *SamplerTy;
41
42 /// Structure for enqueued block information.
44 llvm::Function *InvokeFunc; /// Block invoke function.
45 llvm::Value *KernelHandle; /// Enqueued block kernel reference.
46 llvm::Value *BlockArg; /// The first argument to enqueued block kernel.
47 llvm::Type *BlockTy; /// Type of the block argument.
48 };
49 /// Maps block expression to block information.
50 llvm::DenseMap<const Expr *, EnqueuedBlockInfo> EnqueuedBlockMap;
51
52 llvm::PointerType *getPointerType(const Type *T);
53
54public:
58
59 /// Emit the IR required for a work-group-local variable declaration, and add
60 /// an entry to CGF's LocalDeclMap for D. The base class does this using
61 /// CodeGenFunction::EmitStaticVarDecl to emit an internal global for D.
63
64 llvm::Type *convertOpenCLSpecificType(const Type *T);
65
66 llvm::Type *getPipeType(const PipeType *T);
67
68 llvm::Type *getSamplerType(const Type *T);
69
70 // Returns a value which indicates the size in bytes of the pipe
71 // element.
72 llvm::Value *getPipeElemSize(const Expr *PipeArg);
73
74 // Returns a value which indicates the alignment in bytes of the pipe
75 // element.
76 llvm::Value *getPipeElemAlign(const Expr *PipeArg);
77
78 /// \return __generic void* type.
79 llvm::PointerType *getGenericVoidPointerType();
80
81 /// \return enqueued block information for enqueued block.
82 EnqueuedBlockInfo emitOpenCLEnqueuedBlock(CodeGenFunction &CGF,
83 const Expr *E);
84
85 /// Record invoke function and block literal emitted during normal
86 /// codegen for a block expression. The information is used by
87 /// emitOpenCLEnqueuedBlock to emit wrapper kernel.
88 ///
89 /// \param InvokeF invoke function emitted for the block expression.
90 /// \param Block block literal emitted for the block expression.
91 void recordBlockInfo(const BlockExpr *E, llvm::Function *InvokeF,
92 llvm::Value *Block, llvm::Type *BlockTy);
93
94 /// \return LLVM block invoke function emitted for an expression derived from
95 /// the block expression.
96 llvm::Function *getInvokeFunction(const Expr *E);
97};
98
99}
100}
101
102#endif
C Language Family Type Representation.
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
Definition Expr.h:6671
EnqueuedBlockInfo emitOpenCLEnqueuedBlock(CodeGenFunction &CGF, const Expr *E)
llvm::PointerType * getPointerType(const Type *T)
llvm::Value * getPipeElemAlign(const Expr *PipeArg)
llvm::Function * getInvokeFunction(const Expr *E)
void recordBlockInfo(const BlockExpr *E, llvm::Function *InvokeF, llvm::Value *Block, llvm::Type *BlockTy)
Record invoke function and block literal emitted during normal codegen for a block expression.
llvm::PointerType * getGenericVoidPointerType()
llvm::DenseMap< const Expr *, EnqueuedBlockInfo > EnqueuedBlockMap
Maps block expression to block information.
CGOpenCLRuntime(CodeGenModule &CGM)
llvm::Type * convertOpenCLSpecificType(const Type *T)
llvm::Type * getPipeType(const PipeType *T)
llvm::Value * getPipeElemSize(const Expr *PipeArg)
void EmitWorkGroupLocalVarDecl(CodeGenFunction &CGF, const VarDecl &D)
Emit the IR required for a work-group-local variable declaration, and add an entry to CGF's LocalDecl...
llvm::Type * getSamplerType(const Type *T)
CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code...
This class organizes the cross-function state that is used while generating LLVM code.
This represents one expression.
Definition Expr.h:112
PipeType - OpenCL20.
Definition TypeBase.h:8206
Represents a variable declaration or definition.
Definition Decl.h:926
@ Type
The l-value was considered opaque, so the alignment was determined from a type.
Definition CGValue.h:155
The JSON file list parser is used to communicate input to InstallAPI.
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
Structure for enqueued block information.
llvm::Type * BlockTy
The first argument to enqueued block kernel.
llvm::Value * BlockArg
Enqueued block kernel reference.
llvm::Value * KernelHandle
Block invoke function.