Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 1 | //===----- CGOpenCLRuntime.h - Interface to OpenCL Runtimes -----*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This provides an abstract class for OpenCL code generation. Concrete |
| 11 | // subclasses of this implement code generation for specific OpenCL |
| 12 | // runtime libraries. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Benjamin Kramer | 2f5db8b | 2014-08-13 16:25:19 +0000 | [diff] [blame] | 16 | #ifndef LLVM_CLANG_LIB_CODEGEN_CGOPENCLRUNTIME_H |
| 17 | #define LLVM_CLANG_LIB_CODEGEN_CGOPENCLRUNTIME_H |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 18 | |
Guy Benyei | d8a08ea | 2012-12-18 14:38:23 +0000 | [diff] [blame] | 19 | #include "clang/AST/Type.h" |
Chandler Carruth | ffd5551 | 2013-01-02 11:45:17 +0000 | [diff] [blame] | 20 | #include "llvm/IR/Type.h" |
| 21 | #include "llvm/IR/Value.h" |
Guy Benyei | d8a08ea | 2012-12-18 14:38:23 +0000 | [diff] [blame] | 22 | |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 23 | namespace clang { |
| 24 | |
| 25 | class VarDecl; |
| 26 | |
| 27 | namespace CodeGen { |
| 28 | |
| 29 | class CodeGenFunction; |
| 30 | class CodeGenModule; |
| 31 | |
| 32 | class CGOpenCLRuntime { |
| 33 | protected: |
| 34 | CodeGenModule &CGM; |
Xiuli Pan | 9c14e28 | 2016-01-09 12:53:17 +0000 | [diff] [blame] | 35 | llvm::Type *PipeTy; |
Yaxun Liu | 0bc4b2d | 2016-07-28 19:26:30 +0000 | [diff] [blame] | 36 | llvm::PointerType *SamplerTy; |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 37 | |
| 38 | public: |
Yaxun Liu | 0bc4b2d | 2016-07-28 19:26:30 +0000 | [diff] [blame] | 39 | CGOpenCLRuntime(CodeGenModule &CGM) : CGM(CGM), PipeTy(nullptr), |
| 40 | SamplerTy(nullptr) {} |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 41 | virtual ~CGOpenCLRuntime(); |
| 42 | |
| 43 | /// Emit the IR required for a work-group-local variable declaration, and add |
| 44 | /// an entry to CGF's LocalDeclMap for D. The base class does this using |
| 45 | /// CodeGenFunction::EmitStaticVarDecl to emit an internal global for D. |
| 46 | virtual void EmitWorkGroupLocalVarDecl(CodeGenFunction &CGF, |
| 47 | const VarDecl &D); |
Guy Benyei | d8a08ea | 2012-12-18 14:38:23 +0000 | [diff] [blame] | 48 | |
| 49 | virtual llvm::Type *convertOpenCLSpecificType(const Type *T); |
Xiuli Pan | 9c14e28 | 2016-01-09 12:53:17 +0000 | [diff] [blame] | 50 | |
Sven van Haastregt | efb4d4c | 2017-08-15 09:38:18 +0000 | [diff] [blame] | 51 | virtual llvm::Type *getPipeType(const PipeType *T); |
Yaxun Liu | 0bc4b2d | 2016-07-28 19:26:30 +0000 | [diff] [blame] | 52 | |
Sven van Haastregt | efb4d4c | 2017-08-15 09:38:18 +0000 | [diff] [blame] | 53 | llvm::PointerType *getSamplerType(const Type *T); |
Alexey Bader | 465c189 | 2016-09-23 14:20:00 +0000 | [diff] [blame] | 54 | |
| 55 | // \brief Returnes a value which indicates the size in bytes of the pipe |
| 56 | // element. |
| 57 | virtual llvm::Value *getPipeElemSize(const Expr *PipeArg); |
| 58 | |
| 59 | // \brief Returnes a value which indicates the alignment in bytes of the pipe |
| 60 | // element. |
| 61 | virtual llvm::Value *getPipeElemAlign(const Expr *PipeArg); |
Yaxun Liu | 10712d9 | 2017-10-04 20:32:17 +0000 | [diff] [blame^] | 62 | |
| 63 | /// \return __generic void* type. |
| 64 | llvm::PointerType *getGenericVoidPointerType(); |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 65 | }; |
| 66 | |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 67 | } |
| 68 | } |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 69 | |
| 70 | #endif |