| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 1 | //===----- CGOpenMPRuntime.h - Interface to OpenMP Runtimes -----*- C++ -*-===// |
| 2 | // |
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This provides a class for OpenMP runtime code generation. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| Benjamin Kramer | 2f5db8b | 2014-08-13 16:25:19 +0000 | [diff] [blame] | 13 | #ifndef LLVM_CLANG_LIB_CODEGEN_CGOPENMPRUNTIME_H |
| 14 | #define LLVM_CLANG_LIB_CODEGEN_CGOPENMPRUNTIME_H |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 15 | |
| Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 16 | #include "CGValue.h" |
| Richard Trieu | f8b8b39 | 2019-01-11 01:32:35 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclOpenMP.h" |
| Jordan Rupprecht | 5269091 | 2019-10-01 22:30:10 +0000 | [diff] [blame] | 18 | #include "clang/AST/GlobalDecl.h" |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 19 | #include "clang/AST/Type.h" |
| Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 20 | #include "clang/Basic/OpenMPKinds.h" |
| Chandler Carruth | 0d9593d | 2015-01-14 11:29:14 +0000 | [diff] [blame] | 21 | #include "clang/Basic/SourceLocation.h" |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/DenseMap.h" |
| Alexey Bataev | 3a3bf0b | 2014-09-22 10:01:53 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/StringMap.h" |
| Alexey Bataev | 2a6f3f5 | 2018-11-07 19:11:14 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/StringSet.h" |
| Johannes Doerfert | 6c5d1f40 | 2019-12-25 18:15:36 -0600 | [diff] [blame^] | 25 | #include "llvm/Frontend/OpenMP/OMPConstants.h" |
| Benjamin Kramer | 8fdba91 | 2016-02-02 14:24:21 +0000 | [diff] [blame] | 26 | #include "llvm/IR/Function.h" |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 27 | #include "llvm/IR/ValueHandle.h" |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 28 | |
| 29 | namespace llvm { |
| 30 | class ArrayType; |
| 31 | class Constant; |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 32 | class FunctionType; |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 33 | class GlobalVariable; |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 34 | class StructType; |
| 35 | class Type; |
| 36 | class Value; |
| 37 | } // namespace llvm |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 38 | |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 39 | namespace clang { |
| Alexey Bataev | cc37cc1 | 2014-11-20 04:34:54 +0000 | [diff] [blame] | 40 | class Expr; |
| Alexey Bataev | 8b42706 | 2016-05-25 12:36:08 +0000 | [diff] [blame] | 41 | class OMPDependClause; |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 42 | class OMPExecutableDirective; |
| Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 43 | class OMPLoopDirective; |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 44 | class VarDecl; |
| Alexey Bataev | c5b1d32 | 2016-03-04 09:22:22 +0000 | [diff] [blame] | 45 | class OMPDeclareReductionDecl; |
| 46 | class IdentifierInfo; |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 47 | |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 48 | namespace CodeGen { |
| John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 49 | class Address; |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 50 | class CodeGenFunction; |
| 51 | class CodeGenModule; |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 52 | |
| Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 53 | /// A basic class for pre|post-action for advanced codegen sequence for OpenMP |
| 54 | /// region. |
| 55 | class PrePostActionTy { |
| 56 | public: |
| 57 | explicit PrePostActionTy() {} |
| 58 | virtual void Enter(CodeGenFunction &CGF) {} |
| 59 | virtual void Exit(CodeGenFunction &CGF) {} |
| 60 | virtual ~PrePostActionTy() {} |
| 61 | }; |
| 62 | |
| 63 | /// Class provides a way to call simple version of codegen for OpenMP region, or |
| 64 | /// an advanced with possible pre|post-actions in codegen. |
| 65 | class RegionCodeGenTy final { |
| 66 | intptr_t CodeGen; |
| 67 | typedef void (*CodeGenTy)(intptr_t, CodeGenFunction &, PrePostActionTy &); |
| 68 | CodeGenTy Callback; |
| 69 | mutable PrePostActionTy *PrePostAction; |
| 70 | RegionCodeGenTy() = delete; |
| 71 | RegionCodeGenTy &operator=(const RegionCodeGenTy &) = delete; |
| 72 | template <typename Callable> |
| 73 | static void CallbackFn(intptr_t CodeGen, CodeGenFunction &CGF, |
| 74 | PrePostActionTy &Action) { |
| 75 | return (*reinterpret_cast<Callable *>(CodeGen))(CGF, Action); |
| 76 | } |
| 77 | |
| 78 | public: |
| 79 | template <typename Callable> |
| 80 | RegionCodeGenTy( |
| 81 | Callable &&CodeGen, |
| 82 | typename std::enable_if< |
| 83 | !std::is_same<typename std::remove_reference<Callable>::type, |
| 84 | RegionCodeGenTy>::value>::type * = nullptr) |
| 85 | : CodeGen(reinterpret_cast<intptr_t>(&CodeGen)), |
| 86 | Callback(CallbackFn<typename std::remove_reference<Callable>::type>), |
| 87 | PrePostAction(nullptr) {} |
| 88 | void setAction(PrePostActionTy &Action) const { PrePostAction = &Action; } |
| 89 | void operator()(CodeGenFunction &CGF) const; |
| 90 | }; |
| Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 91 | |
| Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 92 | struct OMPTaskDataTy final { |
| 93 | SmallVector<const Expr *, 4> PrivateVars; |
| 94 | SmallVector<const Expr *, 4> PrivateCopies; |
| 95 | SmallVector<const Expr *, 4> FirstprivateVars; |
| 96 | SmallVector<const Expr *, 4> FirstprivateCopies; |
| 97 | SmallVector<const Expr *, 4> FirstprivateInits; |
| Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 98 | SmallVector<const Expr *, 4> LastprivateVars; |
| 99 | SmallVector<const Expr *, 4> LastprivateCopies; |
| Alexey Bataev | be5a8b4 | 2017-07-17 13:30:36 +0000 | [diff] [blame] | 100 | SmallVector<const Expr *, 4> ReductionVars; |
| 101 | SmallVector<const Expr *, 4> ReductionCopies; |
| 102 | SmallVector<const Expr *, 4> ReductionOps; |
| Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 103 | SmallVector<std::pair<OpenMPDependClauseKind, const Expr *>, 4> Dependences; |
| 104 | llvm::PointerIntPair<llvm::Value *, 1, bool> Final; |
| 105 | llvm::PointerIntPair<llvm::Value *, 1, bool> Schedule; |
| Alexey Bataev | 1e1e286 | 2016-05-10 12:21:02 +0000 | [diff] [blame] | 106 | llvm::PointerIntPair<llvm::Value *, 1, bool> Priority; |
| Alexey Bataev | be5a8b4 | 2017-07-17 13:30:36 +0000 | [diff] [blame] | 107 | llvm::Value *Reductions = nullptr; |
| Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 108 | unsigned NumberOfParts = 0; |
| 109 | bool Tied = true; |
| 110 | bool Nogroup = false; |
| 111 | }; |
| 112 | |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 113 | /// Class intended to support codegen of all kind of the reduction clauses. |
| 114 | class ReductionCodeGen { |
| 115 | private: |
| Simon Pilgrim | 6c0eeff | 2017-07-13 17:34:44 +0000 | [diff] [blame] | 116 | /// Data required for codegen of reduction clauses. |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 117 | struct ReductionData { |
| 118 | /// Reference to the original shared item. |
| 119 | const Expr *Ref = nullptr; |
| 120 | /// Helper expression for generation of private copy. |
| 121 | const Expr *Private = nullptr; |
| 122 | /// Helper expression for generation reduction operation. |
| 123 | const Expr *ReductionOp = nullptr; |
| 124 | ReductionData(const Expr *Ref, const Expr *Private, const Expr *ReductionOp) |
| 125 | : Ref(Ref), Private(Private), ReductionOp(ReductionOp) {} |
| 126 | }; |
| 127 | /// List of reduction-based clauses. |
| 128 | SmallVector<ReductionData, 4> ClausesData; |
| 129 | |
| 130 | /// List of addresses of original shared variables/expressions. |
| 131 | SmallVector<std::pair<LValue, LValue>, 4> SharedAddresses; |
| 132 | /// Sizes of the reduction items in chars. |
| Alexey Bataev | be5a8b4 | 2017-07-17 13:30:36 +0000 | [diff] [blame] | 133 | SmallVector<std::pair<llvm::Value *, llvm::Value *>, 4> Sizes; |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 134 | /// Base declarations for the reduction items. |
| 135 | SmallVector<const VarDecl *, 4> BaseDecls; |
| Alexey Bataev | be5a8b4 | 2017-07-17 13:30:36 +0000 | [diff] [blame] | 136 | |
| Alexander Kornienko | 2a8c18d | 2018-04-06 15:14:32 +0000 | [diff] [blame] | 137 | /// Emits lvalue for shared expression. |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 138 | LValue emitSharedLValue(CodeGenFunction &CGF, const Expr *E); |
| 139 | /// Emits upper bound for shared expression (if array section). |
| 140 | LValue emitSharedLValueUB(CodeGenFunction &CGF, const Expr *E); |
| 141 | /// Performs aggregate initialization. |
| 142 | /// \param N Number of reduction item in the common list. |
| 143 | /// \param PrivateAddr Address of the corresponding private item. |
| Alexey Bataev | be5a8b4 | 2017-07-17 13:30:36 +0000 | [diff] [blame] | 144 | /// \param SharedLVal Address of the original shared variable. |
| 145 | /// \param DRD Declare reduction construct used for reduction item. |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 146 | void emitAggregateInitialization(CodeGenFunction &CGF, unsigned N, |
| Alexey Bataev | be5a8b4 | 2017-07-17 13:30:36 +0000 | [diff] [blame] | 147 | Address PrivateAddr, LValue SharedLVal, |
| 148 | const OMPDeclareReductionDecl *DRD); |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 149 | |
| 150 | public: |
| 151 | ReductionCodeGen(ArrayRef<const Expr *> Shareds, |
| 152 | ArrayRef<const Expr *> Privates, |
| 153 | ArrayRef<const Expr *> ReductionOps); |
| 154 | /// Emits lvalue for a reduction item. |
| 155 | /// \param N Number of the reduction item. |
| 156 | void emitSharedLValue(CodeGenFunction &CGF, unsigned N); |
| 157 | /// Emits the code for the variable-modified type, if required. |
| 158 | /// \param N Number of the reduction item. |
| 159 | void emitAggregateType(CodeGenFunction &CGF, unsigned N); |
| 160 | /// Emits the code for the variable-modified type, if required. |
| 161 | /// \param N Number of the reduction item. |
| 162 | /// \param Size Size of the type in chars. |
| 163 | void emitAggregateType(CodeGenFunction &CGF, unsigned N, llvm::Value *Size); |
| 164 | /// Performs initialization of the private copy for the reduction item. |
| 165 | /// \param N Number of the reduction item. |
| 166 | /// \param PrivateAddr Address of the corresponding private item. |
| 167 | /// \param DefaultInit Default initialization sequence that should be |
| 168 | /// performed if no reduction specific initialization is found. |
| Simon Pilgrim | 6c0eeff | 2017-07-13 17:34:44 +0000 | [diff] [blame] | 169 | /// \param SharedLVal Address of the original shared variable. |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 170 | void |
| 171 | emitInitialization(CodeGenFunction &CGF, unsigned N, Address PrivateAddr, |
| 172 | LValue SharedLVal, |
| 173 | llvm::function_ref<bool(CodeGenFunction &)> DefaultInit); |
| Simon Pilgrim | 6c0eeff | 2017-07-13 17:34:44 +0000 | [diff] [blame] | 174 | /// Returns true if the private copy requires cleanups. |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 175 | bool needCleanups(unsigned N); |
| Simon Pilgrim | 6c0eeff | 2017-07-13 17:34:44 +0000 | [diff] [blame] | 176 | /// Emits cleanup code for the reduction item. |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 177 | /// \param N Number of the reduction item. |
| 178 | /// \param PrivateAddr Address of the corresponding private item. |
| 179 | void emitCleanups(CodeGenFunction &CGF, unsigned N, Address PrivateAddr); |
| Simon Pilgrim | 6c0eeff | 2017-07-13 17:34:44 +0000 | [diff] [blame] | 180 | /// Adjusts \p PrivatedAddr for using instead of the original variable |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 181 | /// address in normal operations. |
| 182 | /// \param N Number of the reduction item. |
| 183 | /// \param PrivateAddr Address of the corresponding private item. |
| 184 | Address adjustPrivateAddress(CodeGenFunction &CGF, unsigned N, |
| 185 | Address PrivateAddr); |
| 186 | /// Returns LValue for the reduction item. |
| 187 | LValue getSharedLValue(unsigned N) const { return SharedAddresses[N].first; } |
| Alexey Bataev | be5a8b4 | 2017-07-17 13:30:36 +0000 | [diff] [blame] | 188 | /// Returns the size of the reduction item (in chars and total number of |
| 189 | /// elements in the item), or nullptr, if the size is a constant. |
| 190 | std::pair<llvm::Value *, llvm::Value *> getSizes(unsigned N) const { |
| 191 | return Sizes[N]; |
| 192 | } |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 193 | /// Returns the base declaration of the reduction item. |
| 194 | const VarDecl *getBaseDecl(unsigned N) const { return BaseDecls[N]; } |
| Alexey Bataev | 1c44e15 | 2018-03-06 18:59:43 +0000 | [diff] [blame] | 195 | /// Returns the base declaration of the reduction item. |
| 196 | const Expr *getRefExpr(unsigned N) const { return ClausesData[N].Ref; } |
| Alexey Bataev | be5a8b4 | 2017-07-17 13:30:36 +0000 | [diff] [blame] | 197 | /// Returns true if the initialization of the reduction item uses initializer |
| 198 | /// from declare reduction construct. |
| 199 | bool usesReductionInitializer(unsigned N) const; |
| Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame] | 200 | }; |
| 201 | |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 202 | class CGOpenMPRuntime { |
| Alexey Bataev | 4f4bf7c | 2018-03-15 15:47:20 +0000 | [diff] [blame] | 203 | public: |
| 204 | /// Allows to disable automatic handling of functions used in target regions |
| 205 | /// as those marked as `omp declare target`. |
| 206 | class DisableAutoDeclareTargetRAII { |
| 207 | CodeGenModule &CGM; |
| 208 | bool SavedShouldMarkAsGlobal; |
| 209 | |
| 210 | public: |
| 211 | DisableAutoDeclareTargetRAII(CodeGenModule &CGM); |
| 212 | ~DisableAutoDeclareTargetRAII(); |
| 213 | }; |
| 214 | |
| Alexey Bataev | 0860db9 | 2019-12-19 10:01:10 -0500 | [diff] [blame] | 215 | /// Manages list of nontemporal decls for the specified directive. |
| 216 | class NontemporalDeclsRAII { |
| 217 | CodeGenModule &CGM; |
| 218 | const bool NeedToPush; |
| 219 | |
| 220 | public: |
| 221 | NontemporalDeclsRAII(CodeGenModule &CGM, const OMPLoopDirective &S); |
| 222 | ~NontemporalDeclsRAII(); |
| 223 | }; |
| 224 | |
| Arpith Chacko Jacob | 5c309e4 | 2016-03-22 01:48:56 +0000 | [diff] [blame] | 225 | protected: |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 226 | CodeGenModule &CGM; |
| Alexey Bataev | 18fa232 | 2018-05-02 14:20:50 +0000 | [diff] [blame] | 227 | StringRef FirstSeparator, Separator; |
| 228 | |
| 229 | /// Constructor allowing to redefine the name separator for the variables. |
| 230 | explicit CGOpenMPRuntime(CodeGenModule &CGM, StringRef FirstSeparator, |
| 231 | StringRef Separator); |
| Arpith Chacko Jacob | 5c309e4 | 2016-03-22 01:48:56 +0000 | [diff] [blame] | 232 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 233 | /// Creates offloading entry for the provided entry ID \a ID, |
| Samuel Antao | f83efdb | 2017-01-05 16:02:49 +0000 | [diff] [blame] | 234 | /// address \a Addr, size \a Size, and flags \a Flags. |
| Arpith Chacko Jacob | 5c309e4 | 2016-03-22 01:48:56 +0000 | [diff] [blame] | 235 | virtual void createOffloadEntry(llvm::Constant *ID, llvm::Constant *Addr, |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 236 | uint64_t Size, int32_t Flags, |
| 237 | llvm::GlobalValue::LinkageTypes Linkage); |
| Arpith Chacko Jacob | 5c309e4 | 2016-03-22 01:48:56 +0000 | [diff] [blame] | 238 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 239 | /// Helper to emit outlined function for 'target' directive. |
| Arpith Chacko Jacob | 5c309e4 | 2016-03-22 01:48:56 +0000 | [diff] [blame] | 240 | /// \param D Directive to emit. |
| 241 | /// \param ParentName Name of the function that encloses the target region. |
| 242 | /// \param OutlinedFn Outlined function value to be defined by this call. |
| 243 | /// \param OutlinedFnID Outlined function ID value to be defined by this call. |
| 244 | /// \param IsOffloadEntry True if the outlined function is an offload entry. |
| 245 | /// \param CodeGen Lambda codegen specific to an accelerator device. |
| Simon Pilgrim | 6c0eeff | 2017-07-13 17:34:44 +0000 | [diff] [blame] | 246 | /// An outlined function may not be an entry if, e.g. the if clause always |
| Arpith Chacko Jacob | 5c309e4 | 2016-03-22 01:48:56 +0000 | [diff] [blame] | 247 | /// evaluates to false. |
| 248 | virtual void emitTargetOutlinedFunctionHelper(const OMPExecutableDirective &D, |
| 249 | StringRef ParentName, |
| 250 | llvm::Function *&OutlinedFn, |
| 251 | llvm::Constant *&OutlinedFnID, |
| 252 | bool IsOffloadEntry, |
| 253 | const RegionCodeGenTy &CodeGen); |
| 254 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 255 | /// Emits object of ident_t type with info for source location. |
| Arpith Chacko Jacob | bb36fe8 | 2017-01-10 15:42:51 +0000 | [diff] [blame] | 256 | /// \param Flags Flags for OpenMP location. |
| 257 | /// |
| 258 | llvm::Value *emitUpdateLocation(CodeGenFunction &CGF, SourceLocation Loc, |
| 259 | unsigned Flags = 0); |
| 260 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 261 | /// Returns pointer to ident_t type. |
| Arpith Chacko Jacob | bb36fe8 | 2017-01-10 15:42:51 +0000 | [diff] [blame] | 262 | llvm::Type *getIdentTyPointerTy(); |
| 263 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 264 | /// Gets thread id value for the current thread. |
| Arpith Chacko Jacob | bb36fe8 | 2017-01-10 15:42:51 +0000 | [diff] [blame] | 265 | /// |
| 266 | llvm::Value *getThreadID(CodeGenFunction &CGF, SourceLocation Loc); |
| 267 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 268 | /// Get the function name of an outlined region. |
| Arpith Chacko Jacob | bb36fe8 | 2017-01-10 15:42:51 +0000 | [diff] [blame] | 269 | // The name can be customized depending on the target. |
| 270 | // |
| 271 | virtual StringRef getOutlinedHelperName() const { return ".omp_outlined."; } |
| 272 | |
| Alexey Bataev | 3c595a6 | 2017-08-14 15:01:03 +0000 | [diff] [blame] | 273 | /// Emits \p Callee function call with arguments \p Args with location \p Loc. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 274 | void emitCall(CodeGenFunction &CGF, SourceLocation Loc, |
| 275 | llvm::FunctionCallee Callee, |
| Alexey Bataev | 7ef47a6 | 2018-02-22 18:33:31 +0000 | [diff] [blame] | 276 | ArrayRef<llvm::Value *> Args = llvm::None) const; |
| Alexey Bataev | 3c595a6 | 2017-08-14 15:01:03 +0000 | [diff] [blame] | 277 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 278 | /// Emits address of the word in a memory where current thread id is |
| Alexey Bataev | b7f3cba | 2018-03-19 17:04:07 +0000 | [diff] [blame] | 279 | /// stored. |
| 280 | virtual Address emitThreadIDAddress(CodeGenFunction &CGF, SourceLocation Loc); |
| 281 | |
| Alexey Bataev | fd006c4 | 2018-10-05 15:08:53 +0000 | [diff] [blame] | 282 | void setLocThreadIdInsertPt(CodeGenFunction &CGF, |
| 283 | bool AtCurrentPoint = false); |
| 284 | void clearLocThreadIdInsertPt(CodeGenFunction &CGF); |
| 285 | |
| Alexey Bataev | ceeaa48 | 2018-11-21 21:04:34 +0000 | [diff] [blame] | 286 | /// Check if the default location must be constant. |
| 287 | /// Default is false to support OMPT/OMPD. |
| 288 | virtual bool isDefaultLocationConstant() const { return false; } |
| 289 | |
| 290 | /// Returns additional flags that can be stored in reserved_2 field of the |
| 291 | /// default location. |
| 292 | virtual unsigned getDefaultLocationReserved2Flags() const { return 0; } |
| 293 | |
| Alexey Bataev | c2cd2d4 | 2019-10-10 17:28:10 +0000 | [diff] [blame] | 294 | /// Tries to emit declare variant function for \p OldGD from \p NewGD. |
| 295 | /// \param OrigAddr LLVM IR value for \p OldGD. |
| 296 | /// \param IsForDefinition true, if requested emission for the definition of |
| 297 | /// \p OldGD. |
| 298 | /// \returns true, was able to emit a definition function for \p OldGD, which |
| 299 | /// points to \p NewGD. |
| 300 | virtual bool tryEmitDeclareVariant(const GlobalDecl &NewGD, |
| 301 | const GlobalDecl &OldGD, |
| 302 | llvm::GlobalValue *OrigAddr, |
| 303 | bool IsForDefinition); |
| 304 | |
| Alexey Bataev | c3028ca | 2018-12-04 15:03:25 +0000 | [diff] [blame] | 305 | /// Returns default flags for the barriers depending on the directive, for |
| 306 | /// which this barier is going to be emitted. |
| 307 | static unsigned getDefaultFlagsForBarriers(OpenMPDirectiveKind Kind); |
| 308 | |
| Alexey Bataev | a116602 | 2018-11-27 21:24:54 +0000 | [diff] [blame] | 309 | /// Get the LLVM type for the critical name. |
| 310 | llvm::ArrayType *getKmpCriticalNameTy() const {return KmpCriticalNameTy;} |
| 311 | |
| 312 | /// Returns corresponding lock object for the specified critical region |
| 313 | /// name. If the lock object does not exist it is created, otherwise the |
| 314 | /// reference to the existing copy is returned. |
| 315 | /// \param CriticalName Name of the critical region. |
| 316 | /// |
| 317 | llvm::Value *getCriticalRegionLock(StringRef CriticalName); |
| 318 | |
| Arpith Chacko Jacob | 5c309e4 | 2016-03-22 01:48:56 +0000 | [diff] [blame] | 319 | private: |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 320 | /// Default const ident_t object used for initialization of all other |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 321 | /// ident_t objects. |
| Alexey Bataev | c5b1d32 | 2016-03-04 09:22:22 +0000 | [diff] [blame] | 322 | llvm::Constant *DefaultOpenMPPSource = nullptr; |
| Alexey Bataev | ceeaa48 | 2018-11-21 21:04:34 +0000 | [diff] [blame] | 323 | using FlagsTy = std::pair<unsigned, unsigned>; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 324 | /// Map of flags and corresponding default locations. |
| Alexey Bataev | ceeaa48 | 2018-11-21 21:04:34 +0000 | [diff] [blame] | 325 | using OpenMPDefaultLocMapTy = llvm::DenseMap<FlagsTy, llvm::Value *>; |
| Alexey Bataev | 15007ba | 2014-05-07 06:18:01 +0000 | [diff] [blame] | 326 | OpenMPDefaultLocMapTy OpenMPDefaultLocMap; |
| Alexey Bataev | 50b3c95 | 2016-02-19 10:38:26 +0000 | [diff] [blame] | 327 | Address getOrCreateDefaultLocation(unsigned Flags); |
| John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 328 | |
| Alexey Bataev | a4fa0b8 | 2018-04-16 17:59:34 +0000 | [diff] [blame] | 329 | QualType IdentQTy; |
| Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 330 | llvm::StructType *IdentTy = nullptr; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 331 | /// Map for SourceLocation and OpenMP runtime library debug locations. |
| Alexey Bataev | f002aca | 2014-05-30 05:48:40 +0000 | [diff] [blame] | 332 | typedef llvm::DenseMap<unsigned, llvm::Value *> OpenMPDebugLocMapTy; |
| 333 | OpenMPDebugLocMapTy OpenMPDebugLocMap; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 334 | /// The type for a microtask which gets passed to __kmpc_fork_call(). |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 335 | /// Original representation is: |
| 336 | /// typedef void (kmpc_micro)(kmp_int32 global_tid, kmp_int32 bound_tid,...); |
| Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 337 | llvm::FunctionType *Kmpc_MicroTy = nullptr; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 338 | /// Stores debug location and ThreadID for the function. |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 339 | struct DebugLocThreadIdTy { |
| 340 | llvm::Value *DebugLoc; |
| 341 | llvm::Value *ThreadID; |
| Alexey Bataev | fd006c4 | 2018-10-05 15:08:53 +0000 | [diff] [blame] | 342 | /// Insert point for the service instructions. |
| 343 | llvm::AssertingVH<llvm::Instruction> ServiceInsertPt = nullptr; |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 344 | }; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 345 | /// Map of local debug location, ThreadId and functions. |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 346 | typedef llvm::DenseMap<llvm::Function *, DebugLocThreadIdTy> |
| 347 | OpenMPLocThreadIDMapTy; |
| 348 | OpenMPLocThreadIDMapTy OpenMPLocThreadIDMap; |
| Alexey Bataev | c5b1d32 | 2016-03-04 09:22:22 +0000 | [diff] [blame] | 349 | /// Map of UDRs and corresponding combiner/initializer. |
| 350 | typedef llvm::DenseMap<const OMPDeclareReductionDecl *, |
| 351 | std::pair<llvm::Function *, llvm::Function *>> |
| 352 | UDRMapTy; |
| 353 | UDRMapTy UDRMap; |
| 354 | /// Map of functions and locally defined UDRs. |
| 355 | typedef llvm::DenseMap<llvm::Function *, |
| 356 | SmallVector<const OMPDeclareReductionDecl *, 4>> |
| 357 | FunctionUDRMapTy; |
| 358 | FunctionUDRMapTy FunctionUDRMap; |
| Michael Kruse | d47b943 | 2019-08-05 18:43:21 +0000 | [diff] [blame] | 359 | /// Map from the user-defined mapper declaration to its corresponding |
| 360 | /// functions. |
| 361 | llvm::DenseMap<const OMPDeclareMapperDecl *, llvm::Function *> UDMMap; |
| 362 | /// Map of functions and their local user-defined mappers. |
| 363 | using FunctionUDMMapTy = |
| 364 | llvm::DenseMap<llvm::Function *, |
| 365 | SmallVector<const OMPDeclareMapperDecl *, 4>>; |
| 366 | FunctionUDMMapTy FunctionUDMMap; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 367 | /// Type kmp_critical_name, originally defined as typedef kmp_int32 |
| Alexey Bataev | 3a3bf0b | 2014-09-22 10:01:53 +0000 | [diff] [blame] | 368 | /// kmp_critical_name[8]; |
| 369 | llvm::ArrayType *KmpCriticalNameTy; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 370 | /// An ordered map of auto-generated variables to their unique names. |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 371 | /// It stores variables with the following names: 1) ".gomp_critical_user_" + |
| 372 | /// <critical_section_name> + ".var" for "omp critical" directives; 2) |
| 373 | /// <mangled_name_for_global_var> + ".cache." for cache for threadprivate |
| 374 | /// variables. |
| 375 | llvm::StringMap<llvm::AssertingVH<llvm::Constant>, llvm::BumpPtrAllocator> |
| 376 | InternalVars; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 377 | /// Type typedef kmp_int32 (* kmp_routine_entry_t)(kmp_int32, void *); |
| Alexey Bataev | c5b1d32 | 2016-03-04 09:22:22 +0000 | [diff] [blame] | 378 | llvm::Type *KmpRoutineEntryPtrTy = nullptr; |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 379 | QualType KmpRoutineEntryPtrQTy; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 380 | /// Type typedef struct kmp_task { |
| Alexey Bataev | 8fc69dc | 2015-05-18 07:54:53 +0000 | [diff] [blame] | 381 | /// void * shareds; /**< pointer to block of pointers to |
| 382 | /// shared vars */ |
| 383 | /// kmp_routine_entry_t routine; /**< pointer to routine to call for |
| 384 | /// executing task */ |
| 385 | /// kmp_int32 part_id; /**< part id for the task */ |
| 386 | /// kmp_routine_entry_t destructors; /* pointer to function to invoke |
| 387 | /// deconstructors of firstprivate C++ objects */ |
| 388 | /// } kmp_task_t; |
| 389 | QualType KmpTaskTQTy; |
| Alexey Bataev | e213f3e | 2017-10-11 15:29:40 +0000 | [diff] [blame] | 390 | /// Saved kmp_task_t for task directive. |
| 391 | QualType SavedKmpTaskTQTy; |
| 392 | /// Saved kmp_task_t for taskloop-based directive. |
| 393 | QualType SavedKmpTaskloopTQTy; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 394 | /// Type typedef struct kmp_depend_info { |
| Alexey Bataev | 1d2353d | 2015-06-24 11:01:36 +0000 | [diff] [blame] | 395 | /// kmp_intptr_t base_addr; |
| 396 | /// size_t len; |
| 397 | /// struct { |
| 398 | /// bool in:1; |
| 399 | /// bool out:1; |
| 400 | /// } flags; |
| 401 | /// } kmp_depend_info_t; |
| 402 | QualType KmpDependInfoTy; |
| Alexey Bataev | 8b42706 | 2016-05-25 12:36:08 +0000 | [diff] [blame] | 403 | /// struct kmp_dim { // loop bounds info casted to kmp_int64 |
| 404 | /// kmp_int64 lo; // lower |
| 405 | /// kmp_int64 up; // upper |
| 406 | /// kmp_int64 st; // stride |
| 407 | /// }; |
| 408 | QualType KmpDimTy; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 409 | /// Type struct __tgt_offload_entry{ |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 410 | /// void *addr; // Pointer to the offload entry info. |
| 411 | /// // (function or global) |
| 412 | /// char *name; // Name of the function or global. |
| 413 | /// size_t size; // Size of the entry info (0 if it a function). |
| 414 | /// }; |
| 415 | QualType TgtOffloadEntryQTy; |
| 416 | /// struct __tgt_device_image{ |
| 417 | /// void *ImageStart; // Pointer to the target code start. |
| 418 | /// void *ImageEnd; // Pointer to the target code end. |
| 419 | /// // We also add the host entries to the device image, as it may be useful |
| 420 | /// // for the target runtime to have access to that information. |
| 421 | /// __tgt_offload_entry *EntriesBegin; // Begin of the table with all |
| 422 | /// // the entries. |
| 423 | /// __tgt_offload_entry *EntriesEnd; // End of the table with all the |
| 424 | /// // entries (non inclusive). |
| 425 | /// }; |
| 426 | QualType TgtDeviceImageQTy; |
| 427 | /// struct __tgt_bin_desc{ |
| 428 | /// int32_t NumDevices; // Number of devices supported. |
| 429 | /// __tgt_device_image *DeviceImages; // Arrays of device images |
| 430 | /// // (one per device). |
| 431 | /// __tgt_offload_entry *EntriesBegin; // Begin of the table with all the |
| 432 | /// // entries. |
| 433 | /// __tgt_offload_entry *EntriesEnd; // End of the table with all the |
| 434 | /// // entries (non inclusive). |
| 435 | /// }; |
| 436 | QualType TgtBinaryDescriptorQTy; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 437 | /// Entity that registers the offloading constants that were emitted so |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 438 | /// far. |
| 439 | class OffloadEntriesInfoManagerTy { |
| 440 | CodeGenModule &CGM; |
| Alexey Bataev | 1d2353d | 2015-06-24 11:01:36 +0000 | [diff] [blame] | 441 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 442 | /// Number of entries registered so far. |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 443 | unsigned OffloadingEntriesNum = 0; |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 444 | |
| 445 | public: |
| Samuel Antao | f83efdb | 2017-01-05 16:02:49 +0000 | [diff] [blame] | 446 | /// Base class of the entries info. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 447 | class OffloadEntryInfo { |
| 448 | public: |
| Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 449 | /// Kind of a given entry. |
| Reid Kleckner | dc78f95 | 2016-01-11 20:55:16 +0000 | [diff] [blame] | 450 | enum OffloadingEntryInfoKinds : unsigned { |
| Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 451 | /// Entry is a target region. |
| 452 | OffloadingEntryInfoTargetRegion = 0, |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 453 | /// Entry is a declare target variable. |
| 454 | OffloadingEntryInfoDeviceGlobalVar = 1, |
| Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 455 | /// Invalid entry info. |
| 456 | OffloadingEntryInfoInvalid = ~0u |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 457 | }; |
| 458 | |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 459 | protected: |
| 460 | OffloadEntryInfo() = delete; |
| 461 | explicit OffloadEntryInfo(OffloadingEntryInfoKinds Kind) : Kind(Kind) {} |
| Samuel Antao | f83efdb | 2017-01-05 16:02:49 +0000 | [diff] [blame] | 462 | explicit OffloadEntryInfo(OffloadingEntryInfoKinds Kind, unsigned Order, |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 463 | uint32_t Flags) |
| Samuel Antao | f83efdb | 2017-01-05 16:02:49 +0000 | [diff] [blame] | 464 | : Flags(Flags), Order(Order), Kind(Kind) {} |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 465 | ~OffloadEntryInfo() = default; |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 466 | |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 467 | public: |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 468 | bool isValid() const { return Order != ~0u; } |
| 469 | unsigned getOrder() const { return Order; } |
| 470 | OffloadingEntryInfoKinds getKind() const { return Kind; } |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 471 | uint32_t getFlags() const { return Flags; } |
| 472 | void setFlags(uint32_t NewFlags) { Flags = NewFlags; } |
| 473 | llvm::Constant *getAddress() const { |
| 474 | return cast_or_null<llvm::Constant>(Addr); |
| 475 | } |
| 476 | void setAddress(llvm::Constant *V) { |
| 477 | assert(!Addr.pointsToAliveValue() && "Address has been set before!"); |
| 478 | Addr = V; |
| 479 | } |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 480 | static bool classof(const OffloadEntryInfo *Info) { return true; } |
| 481 | |
| Samuel Antao | f83efdb | 2017-01-05 16:02:49 +0000 | [diff] [blame] | 482 | private: |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 483 | /// Address of the entity that has to be mapped for offloading. |
| 484 | llvm::WeakTrackingVH Addr; |
| 485 | |
| Samuel Antao | f83efdb | 2017-01-05 16:02:49 +0000 | [diff] [blame] | 486 | /// Flags associated with the device global. |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 487 | uint32_t Flags = 0u; |
| Samuel Antao | f83efdb | 2017-01-05 16:02:49 +0000 | [diff] [blame] | 488 | |
| 489 | /// Order this entry was emitted. |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 490 | unsigned Order = ~0u; |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 491 | |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 492 | OffloadingEntryInfoKinds Kind = OffloadingEntryInfoInvalid; |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 493 | }; |
| 494 | |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 495 | /// Return true if a there are no entries defined. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 496 | bool empty() const; |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 497 | /// Return number of entries defined so far. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 498 | unsigned size() const { return OffloadingEntriesNum; } |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 499 | OffloadEntriesInfoManagerTy(CodeGenModule &CGM) : CGM(CGM) {} |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 500 | |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 501 | // |
| 502 | // Target region entries related. |
| 503 | // |
| 504 | |
| 505 | /// Kind of the target registry entry. |
| 506 | enum OMPTargetRegionEntryKind : uint32_t { |
| 507 | /// Mark the entry as target region. |
| 508 | OMPTargetRegionEntryTargetRegion = 0x0, |
| 509 | /// Mark the entry as a global constructor. |
| 510 | OMPTargetRegionEntryCtor = 0x02, |
| 511 | /// Mark the entry as a global destructor. |
| 512 | OMPTargetRegionEntryDtor = 0x04, |
| 513 | }; |
| 514 | |
| 515 | /// Target region entries info. |
| 516 | class OffloadEntryInfoTargetRegion final : public OffloadEntryInfo { |
| 517 | /// Address that can be used as the ID of the entry. |
| 518 | llvm::Constant *ID = nullptr; |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 519 | |
| 520 | public: |
| 521 | OffloadEntryInfoTargetRegion() |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 522 | : OffloadEntryInfo(OffloadingEntryInfoTargetRegion) {} |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 523 | explicit OffloadEntryInfoTargetRegion(unsigned Order, |
| 524 | llvm::Constant *Addr, |
| Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 525 | llvm::Constant *ID, |
| 526 | OMPTargetRegionEntryKind Flags) |
| 527 | : OffloadEntryInfo(OffloadingEntryInfoTargetRegion, Order, Flags), |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 528 | ID(ID) { |
| 529 | setAddress(Addr); |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 530 | } |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 531 | |
| 532 | llvm::Constant *getID() const { return ID; } |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 533 | void setID(llvm::Constant *V) { |
| Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 534 | assert(!ID && "ID has been set before!"); |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 535 | ID = V; |
| 536 | } |
| 537 | static bool classof(const OffloadEntryInfo *Info) { |
| Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 538 | return Info->getKind() == OffloadingEntryInfoTargetRegion; |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 539 | } |
| 540 | }; |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 541 | |
| 542 | /// Initialize target region entry. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 543 | void initializeTargetRegionEntryInfo(unsigned DeviceID, unsigned FileID, |
| 544 | StringRef ParentName, unsigned LineNum, |
| Samuel Antao | 2de62b0 | 2016-02-13 23:35:10 +0000 | [diff] [blame] | 545 | unsigned Order); |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 546 | /// Register target region entry. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 547 | void registerTargetRegionEntryInfo(unsigned DeviceID, unsigned FileID, |
| 548 | StringRef ParentName, unsigned LineNum, |
| Samuel Antao | f83efdb | 2017-01-05 16:02:49 +0000 | [diff] [blame] | 549 | llvm::Constant *Addr, llvm::Constant *ID, |
| Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 550 | OMPTargetRegionEntryKind Flags); |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 551 | /// Return true if a target region entry with the provided information |
| 552 | /// exists. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 553 | bool hasTargetRegionEntryInfo(unsigned DeviceID, unsigned FileID, |
| Samuel Antao | 2de62b0 | 2016-02-13 23:35:10 +0000 | [diff] [blame] | 554 | StringRef ParentName, unsigned LineNum) const; |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 555 | /// brief Applies action \a Action on all registered entries. |
| 556 | typedef llvm::function_ref<void(unsigned, unsigned, StringRef, unsigned, |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 557 | const OffloadEntryInfoTargetRegion &)> |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 558 | OffloadTargetRegionEntryInfoActTy; |
| 559 | void actOnTargetRegionEntriesInfo( |
| 560 | const OffloadTargetRegionEntryInfoActTy &Action); |
| 561 | |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 562 | // |
| 563 | // Device global variable entries related. |
| 564 | // |
| 565 | |
| 566 | /// Kind of the global variable entry.. |
| 567 | enum OMPTargetGlobalVarEntryKind : uint32_t { |
| 568 | /// Mark the entry as a to declare target. |
| 569 | OMPTargetGlobalVarEntryTo = 0x0, |
| Alexey Bataev | c52f01d | 2018-07-16 20:05:25 +0000 | [diff] [blame] | 570 | /// Mark the entry as a to declare target link. |
| 571 | OMPTargetGlobalVarEntryLink = 0x1, |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 572 | }; |
| 573 | |
| 574 | /// Device global variable entries info. |
| 575 | class OffloadEntryInfoDeviceGlobalVar final : public OffloadEntryInfo { |
| 576 | /// Type of the global variable. |
| 577 | CharUnits VarSize; |
| 578 | llvm::GlobalValue::LinkageTypes Linkage; |
| 579 | |
| 580 | public: |
| 581 | OffloadEntryInfoDeviceGlobalVar() |
| 582 | : OffloadEntryInfo(OffloadingEntryInfoDeviceGlobalVar) {} |
| 583 | explicit OffloadEntryInfoDeviceGlobalVar(unsigned Order, |
| 584 | OMPTargetGlobalVarEntryKind Flags) |
| 585 | : OffloadEntryInfo(OffloadingEntryInfoDeviceGlobalVar, Order, Flags) {} |
| 586 | explicit OffloadEntryInfoDeviceGlobalVar( |
| 587 | unsigned Order, llvm::Constant *Addr, CharUnits VarSize, |
| 588 | OMPTargetGlobalVarEntryKind Flags, |
| 589 | llvm::GlobalValue::LinkageTypes Linkage) |
| 590 | : OffloadEntryInfo(OffloadingEntryInfoDeviceGlobalVar, Order, Flags), |
| 591 | VarSize(VarSize), Linkage(Linkage) { |
| 592 | setAddress(Addr); |
| 593 | } |
| 594 | |
| 595 | CharUnits getVarSize() const { return VarSize; } |
| 596 | void setVarSize(CharUnits Size) { VarSize = Size; } |
| 597 | llvm::GlobalValue::LinkageTypes getLinkage() const { return Linkage; } |
| 598 | void setLinkage(llvm::GlobalValue::LinkageTypes LT) { Linkage = LT; } |
| 599 | static bool classof(const OffloadEntryInfo *Info) { |
| 600 | return Info->getKind() == OffloadingEntryInfoDeviceGlobalVar; |
| 601 | } |
| 602 | }; |
| 603 | |
| 604 | /// Initialize device global variable entry. |
| 605 | void initializeDeviceGlobalVarEntryInfo(StringRef Name, |
| 606 | OMPTargetGlobalVarEntryKind Flags, |
| 607 | unsigned Order); |
| 608 | |
| 609 | /// Register device global variable entry. |
| 610 | void |
| 611 | registerDeviceGlobalVarEntryInfo(StringRef VarName, llvm::Constant *Addr, |
| 612 | CharUnits VarSize, |
| 613 | OMPTargetGlobalVarEntryKind Flags, |
| 614 | llvm::GlobalValue::LinkageTypes Linkage); |
| 615 | /// Checks if the variable with the given name has been registered already. |
| 616 | bool hasDeviceGlobalVarEntryInfo(StringRef VarName) const { |
| 617 | return OffloadEntriesDeviceGlobalVar.count(VarName) > 0; |
| 618 | } |
| 619 | /// Applies action \a Action on all registered entries. |
| 620 | typedef llvm::function_ref<void(StringRef, |
| 621 | const OffloadEntryInfoDeviceGlobalVar &)> |
| 622 | OffloadDeviceGlobalVarEntryInfoActTy; |
| 623 | void actOnDeviceGlobalVarEntriesInfo( |
| 624 | const OffloadDeviceGlobalVarEntryInfoActTy &Action); |
| 625 | |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 626 | private: |
| 627 | // Storage for target region entries kind. The storage is to be indexed by |
| Samuel Antao | 2de62b0 | 2016-02-13 23:35:10 +0000 | [diff] [blame] | 628 | // file ID, device ID, parent function name and line number. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 629 | typedef llvm::DenseMap<unsigned, OffloadEntryInfoTargetRegion> |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 630 | OffloadEntriesTargetRegionPerLine; |
| 631 | typedef llvm::StringMap<OffloadEntriesTargetRegionPerLine> |
| 632 | OffloadEntriesTargetRegionPerParentName; |
| 633 | typedef llvm::DenseMap<unsigned, OffloadEntriesTargetRegionPerParentName> |
| 634 | OffloadEntriesTargetRegionPerFile; |
| 635 | typedef llvm::DenseMap<unsigned, OffloadEntriesTargetRegionPerFile> |
| 636 | OffloadEntriesTargetRegionPerDevice; |
| 637 | typedef OffloadEntriesTargetRegionPerDevice OffloadEntriesTargetRegionTy; |
| 638 | OffloadEntriesTargetRegionTy OffloadEntriesTargetRegion; |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 639 | /// Storage for device global variable entries kind. The storage is to be |
| 640 | /// indexed by mangled name. |
| 641 | typedef llvm::StringMap<OffloadEntryInfoDeviceGlobalVar> |
| 642 | OffloadEntriesDeviceGlobalVarTy; |
| 643 | OffloadEntriesDeviceGlobalVarTy OffloadEntriesDeviceGlobalVar; |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 644 | }; |
| 645 | OffloadEntriesInfoManagerTy OffloadEntriesInfoManager; |
| 646 | |
| Alexey Bataev | 4f4bf7c | 2018-03-15 15:47:20 +0000 | [diff] [blame] | 647 | bool ShouldMarkAsGlobal = true; |
| Alexey Bataev | 2a6f3f5 | 2018-11-07 19:11:14 +0000 | [diff] [blame] | 648 | /// List of the emitted functions. |
| 649 | llvm::StringSet<> AlreadyEmittedTargetFunctions; |
| 650 | /// List of the global variables with their addresses that should not be |
| 651 | /// emitted for the target. |
| 652 | llvm::StringMap<llvm::WeakTrackingVH> EmittedNonTargetVariables; |
| Alexey Bataev | 4f4bf7c | 2018-03-15 15:47:20 +0000 | [diff] [blame] | 653 | |
| Alexey Bataev | bf8fe71 | 2018-08-07 16:14:36 +0000 | [diff] [blame] | 654 | /// List of variables that can become declare target implicitly and, thus, |
| 655 | /// must be emitted. |
| 656 | llvm::SmallDenseSet<const VarDecl *> DeferredGlobalVariables; |
| 657 | |
| Alexey Bataev | 2df5f12 | 2019-10-01 20:18:32 +0000 | [diff] [blame] | 658 | /// Mapping of the original functions to their variants and original global |
| 659 | /// decl. |
| 660 | llvm::MapVector<CanonicalDeclPtr<const FunctionDecl>, |
| 661 | std::pair<GlobalDecl, GlobalDecl>> |
| 662 | DeferredVariantFunction; |
| 663 | |
| Alexey Bataev | 0860db9 | 2019-12-19 10:01:10 -0500 | [diff] [blame] | 664 | using NontemporalDeclsSet = llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>>; |
| 665 | /// Stack for list of declarations in current context marked as nontemporal. |
| 666 | /// The set is the union of all current stack elements. |
| 667 | llvm::SmallVector<NontemporalDeclsSet, 4> NontemporalDeclsStack; |
| 668 | |
| Gheorghe-Teodor Bercea | 66cdbb47 | 2019-05-21 19:42:01 +0000 | [diff] [blame] | 669 | /// Flag for keeping track of weather a requires unified_shared_memory |
| 670 | /// directive is present. |
| 671 | bool HasRequiresUnifiedSharedMemory = false; |
| 672 | |
| 673 | /// Flag for keeping track of weather a target region has been emitted. |
| 674 | bool HasEmittedTargetRegion = false; |
| 675 | |
| 676 | /// Flag for keeping track of weather a device routine has been emitted. |
| 677 | /// Device routines are specific to the |
| 678 | bool HasEmittedDeclareTargetRegion = false; |
| 679 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 680 | /// Loads all the offload entries information from the host IR |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 681 | /// metadata. |
| 682 | void loadOffloadInfoMetadata(); |
| 683 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 684 | /// Returns __tgt_offload_entry type. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 685 | QualType getTgtOffloadEntryQTy(); |
| 686 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 687 | /// Returns __tgt_device_image type. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 688 | QualType getTgtDeviceImageQTy(); |
| 689 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 690 | /// Returns __tgt_bin_desc type. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 691 | QualType getTgtBinaryDescriptorQTy(); |
| 692 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 693 | /// Start scanning from statement \a S and and emit all target regions |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 694 | /// found along the way. |
| 695 | /// \param S Starting statement. |
| 696 | /// \param ParentName Name of the function declaration that is being scanned. |
| 697 | void scanForTargetRegionsFunctions(const Stmt *S, StringRef ParentName); |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 698 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 699 | /// Build type kmp_routine_entry_t (if not built yet). |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 700 | void emitKmpRoutineEntryT(QualType KmpInt32Ty); |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 701 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 702 | /// Returns pointer to kmpc_micro type. |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 703 | llvm::Type *getKmpc_MicroPointerTy(); |
| 704 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 705 | /// Returns specified OpenMP runtime function. |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 706 | /// \param Function OpenMP runtime function. |
| 707 | /// \return Specified function. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 708 | llvm::FunctionCallee createRuntimeFunction(unsigned Function); |
| Alexey Bataev | 3a3bf0b | 2014-09-22 10:01:53 +0000 | [diff] [blame] | 709 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 710 | /// Returns __kmpc_for_static_init_* runtime function for the specified |
| Alexander Musman | 21212e4 | 2015-03-13 10:38:23 +0000 | [diff] [blame] | 711 | /// size \a IVSize and sign \a IVSigned. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 712 | llvm::FunctionCallee createForStaticInitFunction(unsigned IVSize, |
| 713 | bool IVSigned); |
| Alexander Musman | 21212e4 | 2015-03-13 10:38:23 +0000 | [diff] [blame] | 714 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 715 | /// Returns __kmpc_dispatch_init_* runtime function for the specified |
| Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 716 | /// size \a IVSize and sign \a IVSigned. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 717 | llvm::FunctionCallee createDispatchInitFunction(unsigned IVSize, |
| 718 | bool IVSigned); |
| Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 719 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 720 | /// Returns __kmpc_dispatch_next_* runtime function for the specified |
| Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 721 | /// size \a IVSize and sign \a IVSigned. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 722 | llvm::FunctionCallee createDispatchNextFunction(unsigned IVSize, |
| 723 | bool IVSigned); |
| Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 724 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 725 | /// Returns __kmpc_dispatch_fini_* runtime function for the specified |
| Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 726 | /// size \a IVSize and sign \a IVSigned. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 727 | llvm::FunctionCallee createDispatchFiniFunction(unsigned IVSize, |
| 728 | bool IVSigned); |
| Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 729 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 730 | /// If the specified mangled name is not in the module, create and |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 731 | /// return threadprivate cache object. This object is a pointer's worth of |
| 732 | /// storage that's reserved for use by the OpenMP runtime. |
| NAKAMURA Takumi | cdcbfba | 2014-11-11 07:58:06 +0000 | [diff] [blame] | 733 | /// \param VD Threadprivate variable. |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 734 | /// \return Cache variable for the specified threadprivate. |
| 735 | llvm::Constant *getOrCreateThreadPrivateCache(const VarDecl *VD); |
| 736 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 737 | /// Gets (if variable with the given name already exist) or creates |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 738 | /// internal global variable with the specified Name. The created variable has |
| 739 | /// linkage CommonLinkage by default and is initialized by null value. |
| 740 | /// \param Ty Type of the global variable. If it is exist already the type |
| 741 | /// must be the same. |
| 742 | /// \param Name Name of the variable. |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 743 | llvm::Constant *getOrCreateInternalVariable(llvm::Type *Ty, |
| Alexey Bataev | 1af5bd5 | 2019-03-05 17:47:18 +0000 | [diff] [blame] | 744 | const llvm::Twine &Name, |
| 745 | unsigned AddressSpace = 0); |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 746 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 747 | /// Set of threadprivate variables with the generated initializer. |
| Alexey Bataev | 2a6f3f5 | 2018-11-07 19:11:14 +0000 | [diff] [blame] | 748 | llvm::StringSet<> ThreadPrivateWithDefinition; |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 749 | |
| Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 750 | /// Set of declare target variables with the generated initializer. |
| Alexey Bataev | 2a6f3f5 | 2018-11-07 19:11:14 +0000 | [diff] [blame] | 751 | llvm::StringSet<> DeclareTargetWithDefinition; |
| Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 752 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 753 | /// Emits initialization code for the threadprivate variables. |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 754 | /// \param VDAddr Address of the global variable \a VD. |
| 755 | /// \param Ctor Pointer to a global init function for \a VD. |
| 756 | /// \param CopyCtor Pointer to a global copy function for \a VD. |
| 757 | /// \param Dtor Pointer to a global destructor function for \a VD. |
| 758 | /// \param Loc Location of threadprivate declaration. |
| John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 759 | void emitThreadPrivateVarInit(CodeGenFunction &CGF, Address VDAddr, |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 760 | llvm::Value *Ctor, llvm::Value *CopyCtor, |
| 761 | llvm::Value *Dtor, SourceLocation Loc); |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 762 | |
| Michael Kruse | d47b943 | 2019-08-05 18:43:21 +0000 | [diff] [blame] | 763 | /// Emit the array initialization or deletion portion for user-defined mapper |
| 764 | /// code generation. |
| 765 | void emitUDMapperArrayInitOrDel(CodeGenFunction &MapperCGF, |
| 766 | llvm::Value *Handle, llvm::Value *BasePtr, |
| 767 | llvm::Value *Ptr, llvm::Value *Size, |
| 768 | llvm::Value *MapType, CharUnits ElementSize, |
| 769 | llvm::BasicBlock *ExitBB, bool IsInit); |
| 770 | |
| Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 771 | struct TaskResultTy { |
| 772 | llvm::Value *NewTask = nullptr; |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 773 | llvm::Function *TaskEntry = nullptr; |
| Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 774 | llvm::Value *NewTaskNewTaskTTy = nullptr; |
| Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 775 | LValue TDBase; |
| Alexey Bataev | a4fa0b8 | 2018-04-16 17:59:34 +0000 | [diff] [blame] | 776 | const RecordDecl *KmpTaskTQTyRD = nullptr; |
| Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 777 | llvm::Value *TaskDupFn = nullptr; |
| Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 778 | }; |
| 779 | /// Emit task region for the task directive. The task region is emitted in |
| 780 | /// several steps: |
| 781 | /// 1. Emit a call to kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32 |
| 782 | /// gtid, kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds, |
| 783 | /// kmp_routine_entry_t *task_entry). Here task_entry is a pointer to the |
| 784 | /// function: |
| 785 | /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) { |
| 786 | /// TaskFunction(gtid, tt->part_id, tt->shareds); |
| 787 | /// return 0; |
| 788 | /// } |
| 789 | /// 2. Copy a list of shared variables to field shareds of the resulting |
| 790 | /// structure kmp_task_t returned by the previous call (if any). |
| 791 | /// 3. Copy a pointer to destructions function to field destructions of the |
| 792 | /// resulting structure kmp_task_t. |
| 793 | /// \param D Current task directive. |
| Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 794 | /// \param TaskFunction An LLVM function with type void (*)(i32 /*gtid*/, i32 |
| 795 | /// /*part_id*/, captured_struct */*__context*/); |
| 796 | /// \param SharedsTy A type which contains references the shared variables. |
| 797 | /// \param Shareds Context with the list of shared variables from the \p |
| 798 | /// TaskFunction. |
| Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 799 | /// \param Data Additional data for task generation like tiednsee, final |
| 800 | /// state, list of privates etc. |
| 801 | TaskResultTy emitTaskInit(CodeGenFunction &CGF, SourceLocation Loc, |
| 802 | const OMPExecutableDirective &D, |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 803 | llvm::Function *TaskFunction, QualType SharedsTy, |
| Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 804 | Address Shareds, const OMPTaskDataTy &Data); |
| Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 805 | |
| Alexey Bataev | 1af5bd5 | 2019-03-05 17:47:18 +0000 | [diff] [blame] | 806 | /// Returns default address space for the constant firstprivates, 0 by |
| 807 | /// default. |
| 808 | virtual unsigned getDefaultFirstprivateAddressSpace() const { return 0; } |
| 809 | |
| Alexey Bataev | ec7946e | 2019-09-23 14:06:51 +0000 | [diff] [blame] | 810 | /// Emit code that pushes the trip count of loops associated with constructs |
| 811 | /// 'target teams distribute' and 'teams distribute parallel for'. |
| 812 | /// \param SizeEmitter Emits the int64 value for the number of iterations of |
| 813 | /// the associated loop. |
| 814 | void emitTargetNumIterationsCall( |
| 815 | CodeGenFunction &CGF, const OMPExecutableDirective &D, |
| 816 | llvm::Value *DeviceID, |
| 817 | llvm::function_ref<llvm::Value *(CodeGenFunction &CGF, |
| 818 | const OMPLoopDirective &D)> |
| 819 | SizeEmitter); |
| 820 | |
| Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 821 | public: |
| Alexey Bataev | 18fa232 | 2018-05-02 14:20:50 +0000 | [diff] [blame] | 822 | explicit CGOpenMPRuntime(CodeGenModule &CGM) |
| 823 | : CGOpenMPRuntime(CGM, ".", ".") {} |
| Angel Garcia Gomez | 637d1e6 | 2015-10-20 13:23:58 +0000 | [diff] [blame] | 824 | virtual ~CGOpenMPRuntime() {} |
| Alexey Bataev | 9179755 | 2015-03-18 04:13:55 +0000 | [diff] [blame] | 825 | virtual void clear(); |
| Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 826 | |
| Alexey Bataev | d08c056 | 2019-11-19 12:07:54 -0500 | [diff] [blame] | 827 | /// Emits code for OpenMP 'if' clause using specified \a CodeGen |
| 828 | /// function. Here is the logic: |
| 829 | /// if (Cond) { |
| 830 | /// ThenGen(); |
| 831 | /// } else { |
| 832 | /// ElseGen(); |
| 833 | /// } |
| 834 | void emitIfClause(CodeGenFunction &CGF, const Expr *Cond, |
| 835 | const RegionCodeGenTy &ThenGen, |
| 836 | const RegionCodeGenTy &ElseGen); |
| 837 | |
| Alexey Bataev | 5c42736 | 2019-04-10 19:11:33 +0000 | [diff] [blame] | 838 | /// Checks if the \p Body is the \a CompoundStmt and returns its child |
| 839 | /// statement iff there is only one that is not evaluatable at the compile |
| 840 | /// time. |
| 841 | static const Stmt *getSingleCompoundChild(ASTContext &Ctx, const Stmt *Body); |
| 842 | |
| Alexey Bataev | 18fa232 | 2018-05-02 14:20:50 +0000 | [diff] [blame] | 843 | /// Get the platform-specific name separator. |
| 844 | std::string getName(ArrayRef<StringRef> Parts) const; |
| 845 | |
| Alexey Bataev | c5b1d32 | 2016-03-04 09:22:22 +0000 | [diff] [blame] | 846 | /// Emit code for the specified user defined reduction construct. |
| 847 | virtual void emitUserDefinedReduction(CodeGenFunction *CGF, |
| 848 | const OMPDeclareReductionDecl *D); |
| Alexey Bataev | a839ddd | 2016-03-17 10:19:46 +0000 | [diff] [blame] | 849 | /// Get combiner/initializer for the specified user-defined reduction, if any. |
| 850 | virtual std::pair<llvm::Function *, llvm::Function *> |
| 851 | getUserDefinedReduction(const OMPDeclareReductionDecl *D); |
| Arpith Chacko Jacob | 19b911c | 2017-01-18 18:18:53 +0000 | [diff] [blame] | 852 | |
| Michael Kruse | d47b943 | 2019-08-05 18:43:21 +0000 | [diff] [blame] | 853 | /// Emit the function for the user defined mapper construct. |
| 854 | void emitUserDefinedMapper(const OMPDeclareMapperDecl *D, |
| 855 | CodeGenFunction *CGF = nullptr); |
| 856 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 857 | /// Emits outlined function for the specified OpenMP parallel directive |
| Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 858 | /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID, |
| 859 | /// kmp_int32 BoundID, struct context_vars*). |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 860 | /// \param D OpenMP directive. |
| 861 | /// \param ThreadIDVar Variable for thread id in the current OpenMP region. |
| Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 862 | /// \param InnermostKind Kind of innermost directive (for simple directives it |
| 863 | /// is a directive itself, for combined - its innermost directive). |
| Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 864 | /// \param CodeGen Code generation sequence for the \a D directive. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 865 | virtual llvm::Function *emitParallelOutlinedFunction( |
| Arpith Chacko Jacob | 19b911c | 2017-01-18 18:18:53 +0000 | [diff] [blame] | 866 | const OMPExecutableDirective &D, const VarDecl *ThreadIDVar, |
| 867 | OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen); |
| 868 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 869 | /// Emits outlined function for the specified OpenMP teams directive |
| Arpith Chacko Jacob | 19b911c | 2017-01-18 18:18:53 +0000 | [diff] [blame] | 870 | /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID, |
| 871 | /// kmp_int32 BoundID, struct context_vars*). |
| 872 | /// \param D OpenMP directive. |
| 873 | /// \param ThreadIDVar Variable for thread id in the current OpenMP region. |
| 874 | /// \param InnermostKind Kind of innermost directive (for simple directives it |
| 875 | /// is a directive itself, for combined - its innermost directive). |
| 876 | /// \param CodeGen Code generation sequence for the \a D directive. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 877 | virtual llvm::Function *emitTeamsOutlinedFunction( |
| Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 878 | const OMPExecutableDirective &D, const VarDecl *ThreadIDVar, |
| 879 | OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen); |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 880 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 881 | /// Emits outlined function for the OpenMP task directive \a D. This |
| Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 882 | /// outlined function has type void(*)(kmp_int32 ThreadID, struct task_t* |
| 883 | /// TaskT). |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 884 | /// \param D OpenMP directive. |
| 885 | /// \param ThreadIDVar Variable for thread id in the current OpenMP region. |
| Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 886 | /// \param PartIDVar Variable for partition id in the current OpenMP untied |
| 887 | /// task region. |
| 888 | /// \param TaskTVar Variable for task_t argument. |
| Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 889 | /// \param InnermostKind Kind of innermost directive (for simple directives it |
| 890 | /// is a directive itself, for combined - its innermost directive). |
| Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 891 | /// \param CodeGen Code generation sequence for the \a D directive. |
| Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 892 | /// \param Tied true if task is generated for tied task, false otherwise. |
| 893 | /// \param NumberOfParts Number of parts in untied task. Ignored for tied |
| 894 | /// tasks. |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 895 | /// |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 896 | virtual llvm::Function *emitTaskOutlinedFunction( |
| Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 897 | const OMPExecutableDirective &D, const VarDecl *ThreadIDVar, |
| Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 898 | const VarDecl *PartIDVar, const VarDecl *TaskTVar, |
| 899 | OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen, |
| 900 | bool Tied, unsigned &NumberOfParts); |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 901 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 902 | /// Cleans up references to the objects in finished function. |
| Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 903 | /// |
| Gheorghe-Teodor Bercea | d3dcf2f | 2018-03-14 14:17:45 +0000 | [diff] [blame] | 904 | virtual void functionFinished(CodeGenFunction &CGF); |
| Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 905 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 906 | /// Emits code for parallel or serial call of the \a OutlinedFn with |
| Alexey Bataev | 1d67713 | 2015-04-22 13:57:31 +0000 | [diff] [blame] | 907 | /// variables captured in a record which address is stored in \a |
| 908 | /// CapturedStruct. |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 909 | /// \param OutlinedFn Outlined function to be run in parallel threads. Type of |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 910 | /// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*). |
| NAKAMURA Takumi | 62f0eb5 | 2015-09-11 08:13:32 +0000 | [diff] [blame] | 911 | /// \param CapturedVars A pointer to the record with the references to |
| Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 912 | /// variables used in \a OutlinedFn function. |
| Alexey Bataev | 1d67713 | 2015-04-22 13:57:31 +0000 | [diff] [blame] | 913 | /// \param IfCond Condition in the associated 'if' clause, if it was |
| 914 | /// specified, nullptr otherwise. |
| Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 915 | /// |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 916 | virtual void emitParallelCall(CodeGenFunction &CGF, SourceLocation Loc, |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 917 | llvm::Function *OutlinedFn, |
| Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 918 | ArrayRef<llvm::Value *> CapturedVars, |
| 919 | const Expr *IfCond); |
| Alexey Bataev | d74d060 | 2014-10-13 06:02:40 +0000 | [diff] [blame] | 920 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 921 | /// Emits a critical region. |
| Alexey Bataev | 1809571 | 2014-10-10 12:19:54 +0000 | [diff] [blame] | 922 | /// \param CriticalName Name of the critical region. |
| Alexey Bataev | 75ddfab | 2014-12-01 11:32:38 +0000 | [diff] [blame] | 923 | /// \param CriticalOpGen Generator for the statement associated with the given |
| 924 | /// critical region. |
| Alexey Bataev | fc57d16 | 2015-12-15 10:55:09 +0000 | [diff] [blame] | 925 | /// \param Hint Value of the 'hint' clause (optional). |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 926 | virtual void emitCriticalRegion(CodeGenFunction &CGF, StringRef CriticalName, |
| Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 927 | const RegionCodeGenTy &CriticalOpGen, |
| Alexey Bataev | fc57d16 | 2015-12-15 10:55:09 +0000 | [diff] [blame] | 928 | SourceLocation Loc, |
| 929 | const Expr *Hint = nullptr); |
| Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 930 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 931 | /// Emits a master region. |
| Alexey Bataev | 8d69065 | 2014-12-04 07:23:53 +0000 | [diff] [blame] | 932 | /// \param MasterOpGen Generator for the statement associated with the given |
| 933 | /// master region. |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 934 | virtual void emitMasterRegion(CodeGenFunction &CGF, |
| Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 935 | const RegionCodeGenTy &MasterOpGen, |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 936 | SourceLocation Loc); |
| Alexey Bataev | 8d69065 | 2014-12-04 07:23:53 +0000 | [diff] [blame] | 937 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 938 | /// Emits code for a taskyield directive. |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 939 | virtual void emitTaskyieldCall(CodeGenFunction &CGF, SourceLocation Loc); |
| Alexey Bataev | 9f797f3 | 2015-02-05 05:57:51 +0000 | [diff] [blame] | 940 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 941 | /// Emit a taskgroup region. |
| Alexey Bataev | c30dd2d | 2015-06-18 12:14:09 +0000 | [diff] [blame] | 942 | /// \param TaskgroupOpGen Generator for the statement associated with the |
| 943 | /// given taskgroup region. |
| 944 | virtual void emitTaskgroupRegion(CodeGenFunction &CGF, |
| 945 | const RegionCodeGenTy &TaskgroupOpGen, |
| 946 | SourceLocation Loc); |
| 947 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 948 | /// Emits a single region. |
| Alexey Bataev | 6956e2e | 2015-02-05 06:35:41 +0000 | [diff] [blame] | 949 | /// \param SingleOpGen Generator for the statement associated with the given |
| 950 | /// single region. |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 951 | virtual void emitSingleRegion(CodeGenFunction &CGF, |
| Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 952 | const RegionCodeGenTy &SingleOpGen, |
| Alexey Bataev | a63048e | 2015-03-23 06:18:07 +0000 | [diff] [blame] | 953 | SourceLocation Loc, |
| 954 | ArrayRef<const Expr *> CopyprivateVars, |
| Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 955 | ArrayRef<const Expr *> DestExprs, |
| Alexey Bataev | a63048e | 2015-03-23 06:18:07 +0000 | [diff] [blame] | 956 | ArrayRef<const Expr *> SrcExprs, |
| Alexey Bataev | a63048e | 2015-03-23 06:18:07 +0000 | [diff] [blame] | 957 | ArrayRef<const Expr *> AssignmentOps); |
| Alexey Bataev | 6956e2e | 2015-02-05 06:35:41 +0000 | [diff] [blame] | 958 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 959 | /// Emit an ordered region. |
| Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 960 | /// \param OrderedOpGen Generator for the statement associated with the given |
| Alexey Bataev | c30dd2d | 2015-06-18 12:14:09 +0000 | [diff] [blame] | 961 | /// ordered region. |
| Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 962 | virtual void emitOrderedRegion(CodeGenFunction &CGF, |
| 963 | const RegionCodeGenTy &OrderedOpGen, |
| Alexey Bataev | 5f600d6 | 2015-09-29 03:48:57 +0000 | [diff] [blame] | 964 | SourceLocation Loc, bool IsThreads); |
| Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 965 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 966 | /// Emit an implicit/explicit barrier for OpenMP threads. |
| Alexey Bataev | f268568 | 2015-03-30 04:30:22 +0000 | [diff] [blame] | 967 | /// \param Kind Directive for which this implicit barrier call must be |
| 968 | /// generated. Must be OMPD_barrier for explicit barrier generation. |
| Alexey Bataev | 25e5b44 | 2015-09-15 12:52:43 +0000 | [diff] [blame] | 969 | /// \param EmitChecks true if need to emit checks for cancellation barriers. |
| 970 | /// \param ForceSimpleCall true simple barrier call must be emitted, false if |
| 971 | /// runtime class decides which one to emit (simple or with cancellation |
| 972 | /// checks). |
| Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 973 | /// |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 974 | virtual void emitBarrierCall(CodeGenFunction &CGF, SourceLocation Loc, |
| Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 975 | OpenMPDirectiveKind Kind, |
| Alexey Bataev | 25e5b44 | 2015-09-15 12:52:43 +0000 | [diff] [blame] | 976 | bool EmitChecks = true, |
| 977 | bool ForceSimpleCall = false); |
| Alexey Bataev | b205978 | 2014-10-13 08:23:51 +0000 | [diff] [blame] | 978 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 979 | /// Check if the specified \a ScheduleKind is static non-chunked. |
| Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 980 | /// This kind of worksharing directive is emitted without outer loop. |
| 981 | /// \param ScheduleKind Schedule kind specified in the 'schedule' clause. |
| 982 | /// \param Chunked True if chunk is specified in the clause. |
| 983 | /// |
| 984 | virtual bool isStaticNonchunked(OpenMPScheduleClauseKind ScheduleKind, |
| 985 | bool Chunked) const; |
| 986 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 987 | /// Check if the specified \a ScheduleKind is static non-chunked. |
| Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 988 | /// This kind of distribute directive is emitted without outer loop. |
| 989 | /// \param ScheduleKind Schedule kind specified in the 'dist_schedule' clause. |
| 990 | /// \param Chunked True if chunk is specified in the clause. |
| 991 | /// |
| 992 | virtual bool isStaticNonchunked(OpenMPDistScheduleClauseKind ScheduleKind, |
| 993 | bool Chunked) const; |
| 994 | |
| Gheorghe-Teodor Bercea | e925676 | 2018-10-29 15:45:47 +0000 | [diff] [blame] | 995 | /// Check if the specified \a ScheduleKind is static chunked. |
| 996 | /// \param ScheduleKind Schedule kind specified in the 'schedule' clause. |
| 997 | /// \param Chunked True if chunk is specified in the clause. |
| 998 | /// |
| 999 | virtual bool isStaticChunked(OpenMPScheduleClauseKind ScheduleKind, |
| 1000 | bool Chunked) const; |
| 1001 | |
| 1002 | /// Check if the specified \a ScheduleKind is static non-chunked. |
| 1003 | /// \param ScheduleKind Schedule kind specified in the 'dist_schedule' clause. |
| 1004 | /// \param Chunked True if chunk is specified in the clause. |
| 1005 | /// |
| 1006 | virtual bool isStaticChunked(OpenMPDistScheduleClauseKind ScheduleKind, |
| 1007 | bool Chunked) const; |
| 1008 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1009 | /// Check if the specified \a ScheduleKind is dynamic. |
| Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 1010 | /// This kind of worksharing directive is emitted without outer loop. |
| 1011 | /// \param ScheduleKind Schedule Kind specified in the 'schedule' clause. |
| 1012 | /// |
| 1013 | virtual bool isDynamic(OpenMPScheduleClauseKind ScheduleKind) const; |
| 1014 | |
| Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1015 | /// struct with the values to be passed to the dispatch runtime function |
| 1016 | struct DispatchRTInput { |
| 1017 | /// Loop lower bound |
| 1018 | llvm::Value *LB = nullptr; |
| 1019 | /// Loop upper bound |
| 1020 | llvm::Value *UB = nullptr; |
| 1021 | /// Chunk size specified using 'schedule' clause (nullptr if chunk |
| 1022 | /// was not specified) |
| 1023 | llvm::Value *Chunk = nullptr; |
| 1024 | DispatchRTInput() = default; |
| 1025 | DispatchRTInput(llvm::Value *LB, llvm::Value *UB, llvm::Value *Chunk) |
| 1026 | : LB(LB), UB(UB), Chunk(Chunk) {} |
| 1027 | }; |
| 1028 | |
| 1029 | /// Call the appropriate runtime routine to initialize it before start |
| 1030 | /// of loop. |
| 1031 | |
| 1032 | /// This is used for non static scheduled types and when the ordered |
| 1033 | /// clause is present on the loop construct. |
| 1034 | /// Depending on the loop schedule, it is necessary to call some runtime |
| 1035 | /// routine before start of the OpenMP loop to get the loop upper / lower |
| 1036 | /// bounds \a LB and \a UB and stride \a ST. |
| 1037 | /// |
| 1038 | /// \param CGF Reference to current CodeGenFunction. |
| 1039 | /// \param Loc Clang source location. |
| 1040 | /// \param ScheduleKind Schedule kind, specified by the 'schedule' clause. |
| 1041 | /// \param IVSize Size of the iteration variable in bits. |
| Simon Pilgrim | 6c0eeff | 2017-07-13 17:34:44 +0000 | [diff] [blame] | 1042 | /// \param IVSigned Sign of the iteration variable. |
| Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1043 | /// \param Ordered true if loop is ordered, false otherwise. |
| 1044 | /// \param DispatchValues struct containing llvm values for lower bound, upper |
| 1045 | /// bound, and chunk expression. |
| 1046 | /// For the default (nullptr) value, the chunk 1 will be used. |
| 1047 | /// |
| NAKAMURA Takumi | ff7a925 | 2015-09-08 09:42:41 +0000 | [diff] [blame] | 1048 | virtual void emitForDispatchInit(CodeGenFunction &CGF, SourceLocation Loc, |
| Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 1049 | const OpenMPScheduleTy &ScheduleKind, |
| 1050 | unsigned IVSize, bool IVSigned, bool Ordered, |
| Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1051 | const DispatchRTInput &DispatchValues); |
| NAKAMURA Takumi | ff7a925 | 2015-09-08 09:42:41 +0000 | [diff] [blame] | 1052 | |
| Alexey Bataev | 0f87dbe | 2017-08-14 17:56:13 +0000 | [diff] [blame] | 1053 | /// Struct with the values to be passed to the static runtime function |
| 1054 | struct StaticRTInput { |
| 1055 | /// Size of the iteration variable in bits. |
| 1056 | unsigned IVSize = 0; |
| 1057 | /// Sign of the iteration variable. |
| 1058 | bool IVSigned = false; |
| 1059 | /// true if loop is ordered, false otherwise. |
| 1060 | bool Ordered = false; |
| 1061 | /// Address of the output variable in which the flag of the last iteration |
| 1062 | /// is returned. |
| 1063 | Address IL = Address::invalid(); |
| 1064 | /// Address of the output variable in which the lower iteration number is |
| 1065 | /// returned. |
| 1066 | Address LB = Address::invalid(); |
| 1067 | /// Address of the output variable in which the upper iteration number is |
| 1068 | /// returned. |
| 1069 | Address UB = Address::invalid(); |
| 1070 | /// Address of the output variable in which the stride value is returned |
| 1071 | /// necessary to generated the static_chunked scheduled loop. |
| 1072 | Address ST = Address::invalid(); |
| 1073 | /// Value of the chunk for the static_chunked scheduled loop. For the |
| 1074 | /// default (nullptr) value, the chunk 1 will be used. |
| 1075 | llvm::Value *Chunk = nullptr; |
| 1076 | StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL, |
| 1077 | Address LB, Address UB, Address ST, |
| 1078 | llvm::Value *Chunk = nullptr) |
| 1079 | : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB), |
| 1080 | UB(UB), ST(ST), Chunk(Chunk) {} |
| 1081 | }; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1082 | /// Call the appropriate runtime routine to initialize it before start |
| Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 1083 | /// of loop. |
| 1084 | /// |
| Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1085 | /// This is used only in case of static schedule, when the user did not |
| 1086 | /// specify a ordered clause on the loop construct. |
| 1087 | /// Depending on the loop schedule, it is necessary to call some runtime |
| Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 1088 | /// routine before start of the OpenMP loop to get the loop upper / lower |
| Alexey Bataev | 0f87dbe | 2017-08-14 17:56:13 +0000 | [diff] [blame] | 1089 | /// bounds LB and UB and stride ST. |
| Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 1090 | /// |
| 1091 | /// \param CGF Reference to current CodeGenFunction. |
| 1092 | /// \param Loc Clang source location. |
| Alexey Bataev | 0f87dbe | 2017-08-14 17:56:13 +0000 | [diff] [blame] | 1093 | /// \param DKind Kind of the directive. |
| Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 1094 | /// \param ScheduleKind Schedule kind, specified by the 'schedule' clause. |
| Alexey Bataev | 0f87dbe | 2017-08-14 17:56:13 +0000 | [diff] [blame] | 1095 | /// \param Values Input arguments for the construct. |
| Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 1096 | /// |
| John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1097 | virtual void emitForStaticInit(CodeGenFunction &CGF, SourceLocation Loc, |
| Alexey Bataev | 0f87dbe | 2017-08-14 17:56:13 +0000 | [diff] [blame] | 1098 | OpenMPDirectiveKind DKind, |
| Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 1099 | const OpenMPScheduleTy &ScheduleKind, |
| Alexey Bataev | 0f87dbe | 2017-08-14 17:56:13 +0000 | [diff] [blame] | 1100 | const StaticRTInput &Values); |
| Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 1101 | |
| Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1102 | /// |
| 1103 | /// \param CGF Reference to current CodeGenFunction. |
| 1104 | /// \param Loc Clang source location. |
| 1105 | /// \param SchedKind Schedule kind, specified by the 'dist_schedule' clause. |
| Alexey Bataev | 0f87dbe | 2017-08-14 17:56:13 +0000 | [diff] [blame] | 1106 | /// \param Values Input arguments for the construct. |
| Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1107 | /// |
| Alexey Bataev | 0f87dbe | 2017-08-14 17:56:13 +0000 | [diff] [blame] | 1108 | virtual void emitDistributeStaticInit(CodeGenFunction &CGF, |
| 1109 | SourceLocation Loc, |
| Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1110 | OpenMPDistScheduleClauseKind SchedKind, |
| Alexey Bataev | 0f87dbe | 2017-08-14 17:56:13 +0000 | [diff] [blame] | 1111 | const StaticRTInput &Values); |
| Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1112 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1113 | /// Call the appropriate runtime routine to notify that we finished |
| Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 1114 | /// iteration of the ordered loop with the dynamic scheduling. |
| 1115 | /// |
| 1116 | /// \param CGF Reference to current CodeGenFunction. |
| 1117 | /// \param Loc Clang source location. |
| 1118 | /// \param IVSize Size of the iteration variable in bits. |
| Simon Pilgrim | 6c0eeff | 2017-07-13 17:34:44 +0000 | [diff] [blame] | 1119 | /// \param IVSigned Sign of the iteration variable. |
| Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 1120 | /// |
| Alexey Bataev | d7589ffe | 2015-05-20 13:12:48 +0000 | [diff] [blame] | 1121 | virtual void emitForOrderedIterationEnd(CodeGenFunction &CGF, |
| 1122 | SourceLocation Loc, unsigned IVSize, |
| 1123 | bool IVSigned); |
| Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 1124 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1125 | /// Call the appropriate runtime routine to notify that we finished |
| Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 1126 | /// all the work with current loop. |
| 1127 | /// |
| 1128 | /// \param CGF Reference to current CodeGenFunction. |
| 1129 | /// \param Loc Clang source location. |
| Alexey Bataev | f43f714 | 2017-09-06 16:17:35 +0000 | [diff] [blame] | 1130 | /// \param DKind Kind of the directive for which the static finish is emitted. |
| Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 1131 | /// |
| Alexey Bataev | f43f714 | 2017-09-06 16:17:35 +0000 | [diff] [blame] | 1132 | virtual void emitForStaticFinish(CodeGenFunction &CGF, SourceLocation Loc, |
| 1133 | OpenMPDirectiveKind DKind); |
| Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 1134 | |
| Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1135 | /// Call __kmpc_dispatch_next( |
| 1136 | /// ident_t *loc, kmp_int32 tid, kmp_int32 *p_lastiter, |
| 1137 | /// kmp_int[32|64] *p_lower, kmp_int[32|64] *p_upper, |
| 1138 | /// kmp_int[32|64] *p_stride); |
| 1139 | /// \param IVSize Size of the iteration variable in bits. |
| Simon Pilgrim | 6c0eeff | 2017-07-13 17:34:44 +0000 | [diff] [blame] | 1140 | /// \param IVSigned Sign of the iteration variable. |
| Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1141 | /// \param IL Address of the output variable in which the flag of the |
| 1142 | /// last iteration is returned. |
| 1143 | /// \param LB Address of the output variable in which the lower iteration |
| 1144 | /// number is returned. |
| 1145 | /// \param UB Address of the output variable in which the upper iteration |
| 1146 | /// number is returned. |
| 1147 | /// \param ST Address of the output variable in which the stride value is |
| 1148 | /// returned. |
| 1149 | virtual llvm::Value *emitForNext(CodeGenFunction &CGF, SourceLocation Loc, |
| 1150 | unsigned IVSize, bool IVSigned, |
| John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1151 | Address IL, Address LB, |
| 1152 | Address UB, Address ST); |
| Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1153 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1154 | /// Emits call to void __kmpc_push_num_threads(ident_t *loc, kmp_int32 |
| Alexey Bataev | b205978 | 2014-10-13 08:23:51 +0000 | [diff] [blame] | 1155 | /// global_tid, kmp_int32 num_threads) to generate code for 'num_threads' |
| 1156 | /// clause. |
| 1157 | /// \param NumThreads An integer value of threads. |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 1158 | virtual void emitNumThreadsClause(CodeGenFunction &CGF, |
| 1159 | llvm::Value *NumThreads, |
| 1160 | SourceLocation Loc); |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 1161 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1162 | /// Emit call to void __kmpc_push_proc_bind(ident_t *loc, kmp_int32 |
| Alexey Bataev | 7f210c6 | 2015-06-18 13:40:03 +0000 | [diff] [blame] | 1163 | /// global_tid, int proc_bind) to generate code for 'proc_bind' clause. |
| 1164 | virtual void emitProcBindClause(CodeGenFunction &CGF, |
| Johannes Doerfert | 6c5d1f40 | 2019-12-25 18:15:36 -0600 | [diff] [blame^] | 1165 | llvm::omp::ProcBindKind ProcBind, |
| Alexey Bataev | 7f210c6 | 2015-06-18 13:40:03 +0000 | [diff] [blame] | 1166 | SourceLocation Loc); |
| 1167 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1168 | /// Returns address of the threadprivate variable for the current |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 1169 | /// thread. |
| NAKAMURA Takumi | cdcbfba | 2014-11-11 07:58:06 +0000 | [diff] [blame] | 1170 | /// \param VD Threadprivate variable. |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 1171 | /// \param VDAddr Address of the global variable \a VD. |
| 1172 | /// \param Loc Location of the reference to threadprivate var. |
| 1173 | /// \return Address of the threadprivate variable for the current thread. |
| John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1174 | virtual Address getAddrOfThreadPrivate(CodeGenFunction &CGF, |
| 1175 | const VarDecl *VD, |
| 1176 | Address VDAddr, |
| 1177 | SourceLocation Loc); |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 1178 | |
| Alexey Bataev | 92327c5 | 2018-03-26 16:40:55 +0000 | [diff] [blame] | 1179 | /// Returns the address of the variable marked as declare target with link |
| Gheorghe-Teodor Bercea | 0034e84 | 2019-06-20 18:04:47 +0000 | [diff] [blame] | 1180 | /// clause OR as declare target with to clause and unified memory. |
| 1181 | virtual Address getAddrOfDeclareTargetVar(const VarDecl *VD); |
| Alexey Bataev | 92327c5 | 2018-03-26 16:40:55 +0000 | [diff] [blame] | 1182 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1183 | /// Emit a code for initialization of threadprivate variable. It emits |
| Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 1184 | /// a call to runtime library which adds initial value to the newly created |
| 1185 | /// threadprivate variable (if it is not constant) and registers destructor |
| 1186 | /// for the variable (if any). |
| 1187 | /// \param VD Threadprivate variable. |
| 1188 | /// \param VDAddr Address of the global variable \a VD. |
| 1189 | /// \param Loc Location of threadprivate declaration. |
| 1190 | /// \param PerformInit true if initialization expression is not constant. |
| 1191 | virtual llvm::Function * |
| John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1192 | emitThreadPrivateVarDefinition(const VarDecl *VD, Address VDAddr, |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 1193 | SourceLocation Loc, bool PerformInit, |
| 1194 | CodeGenFunction *CGF = nullptr); |
| Alexey Bataev | cc37cc1 | 2014-11-20 04:34:54 +0000 | [diff] [blame] | 1195 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1196 | /// Emit a code for initialization of declare target variable. |
| Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 1197 | /// \param VD Declare target variable. |
| 1198 | /// \param Addr Address of the global variable \a VD. |
| 1199 | /// \param PerformInit true if initialization expression is not constant. |
| 1200 | virtual bool emitDeclareTargetVarDefinition(const VarDecl *VD, |
| 1201 | llvm::GlobalVariable *Addr, |
| 1202 | bool PerformInit); |
| 1203 | |
| Alexey Bataev | be5a8b4 | 2017-07-17 13:30:36 +0000 | [diff] [blame] | 1204 | /// Creates artificial threadprivate variable with name \p Name and type \p |
| 1205 | /// VarType. |
| 1206 | /// \param VarType Type of the artificial threadprivate variable. |
| 1207 | /// \param Name Name of the artificial threadprivate variable. |
| 1208 | virtual Address getAddrOfArtificialThreadPrivate(CodeGenFunction &CGF, |
| 1209 | QualType VarType, |
| 1210 | StringRef Name); |
| 1211 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1212 | /// Emit flush of the variables specified in 'omp flush' directive. |
| Alexey Bataev | cc37cc1 | 2014-11-20 04:34:54 +0000 | [diff] [blame] | 1213 | /// \param Vars List of variables to flush. |
| Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 1214 | virtual void emitFlush(CodeGenFunction &CGF, ArrayRef<const Expr *> Vars, |
| 1215 | SourceLocation Loc); |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 1216 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1217 | /// Emit task region for the task directive. The task region is |
| Nico Weber | 20b0ce3 | 2015-04-28 18:19:18 +0000 | [diff] [blame] | 1218 | /// emitted in several steps: |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 1219 | /// 1. Emit a call to kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32 |
| 1220 | /// gtid, kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds, |
| 1221 | /// kmp_routine_entry_t *task_entry). Here task_entry is a pointer to the |
| 1222 | /// function: |
| 1223 | /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) { |
| 1224 | /// TaskFunction(gtid, tt->part_id, tt->shareds); |
| 1225 | /// return 0; |
| 1226 | /// } |
| 1227 | /// 2. Copy a list of shared variables to field shareds of the resulting |
| 1228 | /// structure kmp_task_t returned by the previous call (if any). |
| 1229 | /// 3. Copy a pointer to destructions function to field destructions of the |
| 1230 | /// resulting structure kmp_task_t. |
| 1231 | /// 4. Emit a call to kmp_int32 __kmpc_omp_task(ident_t *, kmp_int32 gtid, |
| 1232 | /// kmp_task_t *new_task), where new_task is a resulting structure from |
| 1233 | /// previous items. |
| Alexey Bataev | 36c1eb9 | 2015-04-30 06:51:57 +0000 | [diff] [blame] | 1234 | /// \param D Current task directive. |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 1235 | /// \param TaskFunction An LLVM function with type void (*)(i32 /*gtid*/, i32 |
| 1236 | /// /*part_id*/, captured_struct */*__context*/); |
| 1237 | /// \param SharedsTy A type which contains references the shared variables. |
| Alexey Bataev | 1d2353d | 2015-06-24 11:01:36 +0000 | [diff] [blame] | 1238 | /// \param Shareds Context with the list of shared variables from the \p |
| Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 1239 | /// TaskFunction. |
| Alexey Bataev | 1d67713 | 2015-04-22 13:57:31 +0000 | [diff] [blame] | 1240 | /// \param IfCond Not a nullptr if 'if' clause was specified, nullptr |
| 1241 | /// otherwise. |
| Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 1242 | /// \param Data Additional data for task generation like tiednsee, final |
| 1243 | /// state, list of privates etc. |
| 1244 | virtual void emitTaskCall(CodeGenFunction &CGF, SourceLocation Loc, |
| 1245 | const OMPExecutableDirective &D, |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 1246 | llvm::Function *TaskFunction, QualType SharedsTy, |
| Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 1247 | Address Shareds, const Expr *IfCond, |
| 1248 | const OMPTaskDataTy &Data); |
| Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1249 | |
| Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 1250 | /// Emit task region for the taskloop directive. The taskloop region is |
| 1251 | /// emitted in several steps: |
| 1252 | /// 1. Emit a call to kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32 |
| 1253 | /// gtid, kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds, |
| 1254 | /// kmp_routine_entry_t *task_entry). Here task_entry is a pointer to the |
| 1255 | /// function: |
| 1256 | /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) { |
| 1257 | /// TaskFunction(gtid, tt->part_id, tt->shareds); |
| 1258 | /// return 0; |
| 1259 | /// } |
| 1260 | /// 2. Copy a list of shared variables to field shareds of the resulting |
| 1261 | /// structure kmp_task_t returned by the previous call (if any). |
| 1262 | /// 3. Copy a pointer to destructions function to field destructions of the |
| 1263 | /// resulting structure kmp_task_t. |
| 1264 | /// 4. Emit a call to void __kmpc_taskloop(ident_t *loc, int gtid, kmp_task_t |
| 1265 | /// *task, int if_val, kmp_uint64 *lb, kmp_uint64 *ub, kmp_int64 st, int |
| 1266 | /// nogroup, int sched, kmp_uint64 grainsize, void *task_dup ), where new_task |
| 1267 | /// is a resulting structure from |
| 1268 | /// previous items. |
| 1269 | /// \param D Current task directive. |
| Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 1270 | /// \param TaskFunction An LLVM function with type void (*)(i32 /*gtid*/, i32 |
| 1271 | /// /*part_id*/, captured_struct */*__context*/); |
| 1272 | /// \param SharedsTy A type which contains references the shared variables. |
| 1273 | /// \param Shareds Context with the list of shared variables from the \p |
| 1274 | /// TaskFunction. |
| 1275 | /// \param IfCond Not a nullptr if 'if' clause was specified, nullptr |
| 1276 | /// otherwise. |
| Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 1277 | /// \param Data Additional data for task generation like tiednsee, final |
| 1278 | /// state, list of privates etc. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 1279 | virtual void emitTaskLoopCall(CodeGenFunction &CGF, SourceLocation Loc, |
| 1280 | const OMPLoopDirective &D, |
| 1281 | llvm::Function *TaskFunction, |
| 1282 | QualType SharedsTy, Address Shareds, |
| 1283 | const Expr *IfCond, const OMPTaskDataTy &Data); |
| Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 1284 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1285 | /// Emit code for the directive that does not require outlining. |
| Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1286 | /// |
| Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 1287 | /// \param InnermostKind Kind of innermost directive (for simple directives it |
| 1288 | /// is a directive itself, for combined - its innermost directive). |
| Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1289 | /// \param CodeGen Code generation sequence for the \a D directive. |
| Alexey Bataev | 25e5b44 | 2015-09-15 12:52:43 +0000 | [diff] [blame] | 1290 | /// \param HasCancel true if region has inner cancel directive, false |
| 1291 | /// otherwise. |
| Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1292 | virtual void emitInlinedDirective(CodeGenFunction &CGF, |
| Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 1293 | OpenMPDirectiveKind InnermostKind, |
| Alexey Bataev | 25e5b44 | 2015-09-15 12:52:43 +0000 | [diff] [blame] | 1294 | const RegionCodeGenTy &CodeGen, |
| 1295 | bool HasCancel = false); |
| Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 1296 | |
| 1297 | /// Emits reduction function. |
| 1298 | /// \param ArgsType Array type containing pointers to reduction variables. |
| 1299 | /// \param Privates List of private copies for original reduction arguments. |
| 1300 | /// \param LHSExprs List of LHS in \a ReductionOps reduction operations. |
| 1301 | /// \param RHSExprs List of RHS in \a ReductionOps reduction operations. |
| 1302 | /// \param ReductionOps List of reduction operations in form 'LHS binop RHS' |
| 1303 | /// or 'operator binop(LHS, RHS)'. |
| Alexey Bataev | 982a35e | 2019-03-19 17:09:52 +0000 | [diff] [blame] | 1304 | llvm::Function *emitReductionFunction(SourceLocation Loc, |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 1305 | llvm::Type *ArgsType, |
| 1306 | ArrayRef<const Expr *> Privates, |
| 1307 | ArrayRef<const Expr *> LHSExprs, |
| 1308 | ArrayRef<const Expr *> RHSExprs, |
| 1309 | ArrayRef<const Expr *> ReductionOps); |
| Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 1310 | |
| 1311 | /// Emits single reduction combiner |
| 1312 | void emitSingleReductionCombiner(CodeGenFunction &CGF, |
| 1313 | const Expr *ReductionOp, |
| 1314 | const Expr *PrivateRef, |
| 1315 | const DeclRefExpr *LHS, |
| 1316 | const DeclRefExpr *RHS); |
| 1317 | |
| 1318 | struct ReductionOptionsTy { |
| 1319 | bool WithNowait; |
| 1320 | bool SimpleReduction; |
| 1321 | OpenMPDirectiveKind ReductionKind; |
| 1322 | }; |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1323 | /// Emit a code for reduction clause. Next code should be emitted for |
| Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1324 | /// reduction: |
| 1325 | /// \code |
| 1326 | /// |
| 1327 | /// static kmp_critical_name lock = { 0 }; |
| 1328 | /// |
| 1329 | /// void reduce_func(void *lhs[<n>], void *rhs[<n>]) { |
| 1330 | /// ... |
| 1331 | /// *(Type<i>*)lhs[i] = RedOp<i>(*(Type<i>*)lhs[i], *(Type<i>*)rhs[i]); |
| 1332 | /// ... |
| 1333 | /// } |
| 1334 | /// |
| 1335 | /// ... |
| 1336 | /// void *RedList[<n>] = {&<RHSExprs>[0], ..., &<RHSExprs>[<n>-1]}; |
| 1337 | /// switch (__kmpc_reduce{_nowait}(<loc>, <gtid>, <n>, sizeof(RedList), |
| 1338 | /// RedList, reduce_func, &<lock>)) { |
| 1339 | /// case 1: |
| 1340 | /// ... |
| 1341 | /// <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]); |
| 1342 | /// ... |
| 1343 | /// __kmpc_end_reduce{_nowait}(<loc>, <gtid>, &<lock>); |
| 1344 | /// break; |
| 1345 | /// case 2: |
| 1346 | /// ... |
| 1347 | /// Atomic(<LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i])); |
| 1348 | /// ... |
| 1349 | /// break; |
| 1350 | /// default:; |
| 1351 | /// } |
| 1352 | /// \endcode |
| 1353 | /// |
| Alexey Bataev | f24e7b1 | 2015-10-08 09:10:53 +0000 | [diff] [blame] | 1354 | /// \param Privates List of private copies for original reduction arguments. |
| Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1355 | /// \param LHSExprs List of LHS in \a ReductionOps reduction operations. |
| 1356 | /// \param RHSExprs List of RHS in \a ReductionOps reduction operations. |
| 1357 | /// \param ReductionOps List of reduction operations in form 'LHS binop RHS' |
| 1358 | /// or 'operator binop(LHS, RHS)'. |
| Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 1359 | /// \param Options List of options for reduction codegen: |
| 1360 | /// WithNowait true if parent directive has also nowait clause, false |
| 1361 | /// otherwise. |
| 1362 | /// SimpleReduction Emit reduction operation only. Used for omp simd |
| 1363 | /// directive on the host. |
| 1364 | /// ReductionKind The kind of reduction to perform. |
| Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1365 | virtual void emitReduction(CodeGenFunction &CGF, SourceLocation Loc, |
| Alexey Bataev | f24e7b1 | 2015-10-08 09:10:53 +0000 | [diff] [blame] | 1366 | ArrayRef<const Expr *> Privates, |
| Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1367 | ArrayRef<const Expr *> LHSExprs, |
| 1368 | ArrayRef<const Expr *> RHSExprs, |
| 1369 | ArrayRef<const Expr *> ReductionOps, |
| Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 1370 | ReductionOptionsTy Options); |
| Alexey Bataev | 8b8e202 | 2015-04-27 05:22:09 +0000 | [diff] [blame] | 1371 | |
| Alexey Bataev | be5a8b4 | 2017-07-17 13:30:36 +0000 | [diff] [blame] | 1372 | /// Emit a code for initialization of task reduction clause. Next code |
| 1373 | /// should be emitted for reduction: |
| 1374 | /// \code |
| 1375 | /// |
| 1376 | /// _task_red_item_t red_data[n]; |
| 1377 | /// ... |
| 1378 | /// red_data[i].shar = &origs[i]; |
| 1379 | /// red_data[i].size = sizeof(origs[i]); |
| 1380 | /// red_data[i].f_init = (void*)RedInit<i>; |
| 1381 | /// red_data[i].f_fini = (void*)RedDest<i>; |
| 1382 | /// red_data[i].f_comb = (void*)RedOp<i>; |
| 1383 | /// red_data[i].flags = <Flag_i>; |
| 1384 | /// ... |
| 1385 | /// void* tg1 = __kmpc_task_reduction_init(gtid, n, red_data); |
| 1386 | /// \endcode |
| 1387 | /// |
| 1388 | /// \param LHSExprs List of LHS in \a Data.ReductionOps reduction operations. |
| 1389 | /// \param RHSExprs List of RHS in \a Data.ReductionOps reduction operations. |
| 1390 | /// \param Data Additional data for task generation like tiedness, final |
| 1391 | /// state, list of privates, reductions etc. |
| 1392 | virtual llvm::Value *emitTaskReductionInit(CodeGenFunction &CGF, |
| 1393 | SourceLocation Loc, |
| 1394 | ArrayRef<const Expr *> LHSExprs, |
| 1395 | ArrayRef<const Expr *> RHSExprs, |
| 1396 | const OMPTaskDataTy &Data); |
| 1397 | |
| 1398 | /// Required to resolve existing problems in the runtime. Emits threadprivate |
| 1399 | /// variables to store the size of the VLAs/array sections for |
| 1400 | /// initializer/combiner/finalizer functions + emits threadprivate variable to |
| 1401 | /// store the pointer to the original reduction item for the custom |
| 1402 | /// initializer defined by declare reduction construct. |
| 1403 | /// \param RCG Allows to reuse an existing data for the reductions. |
| 1404 | /// \param N Reduction item for which fixups must be emitted. |
| 1405 | virtual void emitTaskReductionFixups(CodeGenFunction &CGF, SourceLocation Loc, |
| 1406 | ReductionCodeGen &RCG, unsigned N); |
| 1407 | |
| 1408 | /// Get the address of `void *` type of the privatue copy of the reduction |
| 1409 | /// item specified by the \p SharedLVal. |
| 1410 | /// \param ReductionsPtr Pointer to the reduction data returned by the |
| 1411 | /// emitTaskReductionInit function. |
| 1412 | /// \param SharedLVal Address of the original reduction item. |
| 1413 | virtual Address getTaskReductionItem(CodeGenFunction &CGF, SourceLocation Loc, |
| 1414 | llvm::Value *ReductionsPtr, |
| 1415 | LValue SharedLVal); |
| 1416 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1417 | /// Emit code for 'taskwait' directive. |
| Alexey Bataev | 8b8e202 | 2015-04-27 05:22:09 +0000 | [diff] [blame] | 1418 | virtual void emitTaskwaitCall(CodeGenFunction &CGF, SourceLocation Loc); |
| Alexey Bataev | 0f34da1 | 2015-07-02 04:17:07 +0000 | [diff] [blame] | 1419 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1420 | /// Emit code for 'cancellation point' construct. |
| Alexey Bataev | 0f34da1 | 2015-07-02 04:17:07 +0000 | [diff] [blame] | 1421 | /// \param CancelRegion Region kind for which the cancellation point must be |
| 1422 | /// emitted. |
| 1423 | /// |
| 1424 | virtual void emitCancellationPointCall(CodeGenFunction &CGF, |
| 1425 | SourceLocation Loc, |
| 1426 | OpenMPDirectiveKind CancelRegion); |
| Alexey Bataev | 7d5d33e | 2015-07-06 05:50:32 +0000 | [diff] [blame] | 1427 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1428 | /// Emit code for 'cancel' construct. |
| Alexey Bataev | 87933c7 | 2015-09-18 08:07:34 +0000 | [diff] [blame] | 1429 | /// \param IfCond Condition in the associated 'if' clause, if it was |
| 1430 | /// specified, nullptr otherwise. |
| Alexey Bataev | 7d5d33e | 2015-07-06 05:50:32 +0000 | [diff] [blame] | 1431 | /// \param CancelRegion Region kind for which the cancel must be emitted. |
| 1432 | /// |
| 1433 | virtual void emitCancelCall(CodeGenFunction &CGF, SourceLocation Loc, |
| Alexey Bataev | 87933c7 | 2015-09-18 08:07:34 +0000 | [diff] [blame] | 1434 | const Expr *IfCond, |
| Alexey Bataev | 7d5d33e | 2015-07-06 05:50:32 +0000 | [diff] [blame] | 1435 | OpenMPDirectiveKind CancelRegion); |
| Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 1436 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1437 | /// Emit outilined function for 'target' directive. |
| Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 1438 | /// \param D Directive to emit. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 1439 | /// \param ParentName Name of the function that encloses the target region. |
| 1440 | /// \param OutlinedFn Outlined function value to be defined by this call. |
| 1441 | /// \param OutlinedFnID Outlined function ID value to be defined by this call. |
| 1442 | /// \param IsOffloadEntry True if the outlined function is an offload entry. |
| Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 1443 | /// \param CodeGen Code generation sequence for the \a D directive. |
| Simon Pilgrim | 6c0eeff | 2017-07-13 17:34:44 +0000 | [diff] [blame] | 1444 | /// An outlined function may not be an entry if, e.g. the if clause always |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 1445 | /// evaluates to false. |
| 1446 | virtual void emitTargetOutlinedFunction(const OMPExecutableDirective &D, |
| 1447 | StringRef ParentName, |
| 1448 | llvm::Function *&OutlinedFn, |
| 1449 | llvm::Constant *&OutlinedFnID, |
| Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 1450 | bool IsOffloadEntry, |
| 1451 | const RegionCodeGenTy &CodeGen); |
| Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 1452 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1453 | /// Emit the target offloading code associated with \a D. The emitted |
| Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 1454 | /// code attempts offloading the execution to the device, an the event of |
| 1455 | /// a failure it executes the host version outlined in \a OutlinedFn. |
| 1456 | /// \param D Directive to emit. |
| 1457 | /// \param OutlinedFn Host version of the code to be offloaded. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 1458 | /// \param OutlinedFnID ID of host version of the code to be offloaded. |
| Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 1459 | /// \param IfCond Expression evaluated in if clause associated with the target |
| 1460 | /// directive, or null if no if clause is used. |
| 1461 | /// \param Device Expression evaluated in device clause associated with the |
| 1462 | /// target directive, or null if no device clause is used. |
| Alexey Bataev | ec7946e | 2019-09-23 14:06:51 +0000 | [diff] [blame] | 1463 | /// \param SizeEmitter Callback to emit number of iterations for loop-based |
| 1464 | /// directives. |
| 1465 | virtual void |
| 1466 | emitTargetCall(CodeGenFunction &CGF, const OMPExecutableDirective &D, |
| 1467 | llvm::Function *OutlinedFn, llvm::Value *OutlinedFnID, |
| 1468 | const Expr *IfCond, const Expr *Device, |
| 1469 | llvm::function_ref<llvm::Value *(CodeGenFunction &CGF, |
| 1470 | const OMPLoopDirective &D)> |
| 1471 | SizeEmitter); |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 1472 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1473 | /// Emit the target regions enclosed in \a GD function definition or |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 1474 | /// the function itself in case it is a valid device function. Returns true if |
| 1475 | /// \a GD was dealt with successfully. |
| Nico Weber | a2abe8c | 2016-01-06 19:13:49 +0000 | [diff] [blame] | 1476 | /// \param GD Function to scan. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 1477 | virtual bool emitTargetFunctions(GlobalDecl GD); |
| 1478 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1479 | /// Emit the global variable if it is a valid device global variable. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 1480 | /// Returns true if \a GD was dealt with successfully. |
| 1481 | /// \param GD Variable declaration to emit. |
| 1482 | virtual bool emitTargetGlobalVariable(GlobalDecl GD); |
| 1483 | |
| Alexey Bataev | 03f270c | 2018-03-30 18:31:07 +0000 | [diff] [blame] | 1484 | /// Checks if the provided global decl \a GD is a declare target variable and |
| 1485 | /// registers it when emitting code for the host. |
| 1486 | virtual void registerTargetGlobalVariable(const VarDecl *VD, |
| 1487 | llvm::Constant *Addr); |
| 1488 | |
| Alexey Bataev | 1af5bd5 | 2019-03-05 17:47:18 +0000 | [diff] [blame] | 1489 | /// Registers provided target firstprivate variable as global on the |
| 1490 | /// target. |
| 1491 | llvm::Constant *registerTargetFirstprivateCopy(CodeGenFunction &CGF, |
| 1492 | const VarDecl *VD); |
| 1493 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1494 | /// Emit the global \a GD if it is meaningful for the target. Returns |
| Simon Pilgrim | 2c51880 | 2017-03-30 14:13:19 +0000 | [diff] [blame] | 1495 | /// if it was emitted successfully. |
| Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 1496 | /// \param GD Global to scan. |
| 1497 | virtual bool emitTargetGlobal(GlobalDecl GD); |
| 1498 | |
| Gheorghe-Teodor Bercea | 66cdbb47 | 2019-05-21 19:42:01 +0000 | [diff] [blame] | 1499 | /// Creates and returns a registration function for when at least one |
| 1500 | /// requires directives was used in the current module. |
| 1501 | llvm::Function *emitRequiresDirectiveRegFun(); |
| 1502 | |
| Sergey Dmitriev | 5836c35 | 2019-10-15 18:42:47 +0000 | [diff] [blame] | 1503 | /// Creates all the offload entries in the current compilation unit |
| 1504 | /// along with the associated metadata. |
| 1505 | void createOffloadEntriesAndInfoMetadata(); |
| Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 1506 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1507 | /// Emits code for teams call of the \a OutlinedFn with |
| Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 1508 | /// variables captured in a record which address is stored in \a |
| 1509 | /// CapturedStruct. |
| 1510 | /// \param OutlinedFn Outlined function to be run by team masters. Type of |
| 1511 | /// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*). |
| 1512 | /// \param CapturedVars A pointer to the record with the references to |
| 1513 | /// variables used in \a OutlinedFn function. |
| 1514 | /// |
| 1515 | virtual void emitTeamsCall(CodeGenFunction &CGF, |
| 1516 | const OMPExecutableDirective &D, |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 1517 | SourceLocation Loc, llvm::Function *OutlinedFn, |
| Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 1518 | ArrayRef<llvm::Value *> CapturedVars); |
| 1519 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1520 | /// Emits call to void __kmpc_push_num_teams(ident_t *loc, kmp_int32 |
| Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 1521 | /// global_tid, kmp_int32 num_teams, kmp_int32 thread_limit) to generate code |
| 1522 | /// for num_teams clause. |
| Carlo Bertolli | c687225 | 2016-04-04 15:55:02 +0000 | [diff] [blame] | 1523 | /// \param NumTeams An integer expression of teams. |
| 1524 | /// \param ThreadLimit An integer expression of threads. |
| 1525 | virtual void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams, |
| 1526 | const Expr *ThreadLimit, SourceLocation Loc); |
| Samuel Antao | df158d5 | 2016-04-27 22:58:19 +0000 | [diff] [blame] | 1527 | |
| Samuel Antao | cc10b85 | 2016-07-28 14:23:26 +0000 | [diff] [blame] | 1528 | /// Struct that keeps all the relevant information that should be kept |
| 1529 | /// throughout a 'target data' region. |
| 1530 | class TargetDataInfo { |
| 1531 | /// Set to true if device pointer information have to be obtained. |
| 1532 | bool RequiresDevicePointerInfo = false; |
| 1533 | |
| 1534 | public: |
| 1535 | /// The array of base pointer passed to the runtime library. |
| 1536 | llvm::Value *BasePointersArray = nullptr; |
| 1537 | /// The array of section pointers passed to the runtime library. |
| 1538 | llvm::Value *PointersArray = nullptr; |
| 1539 | /// The array of sizes passed to the runtime library. |
| 1540 | llvm::Value *SizesArray = nullptr; |
| 1541 | /// The array of map types passed to the runtime library. |
| 1542 | llvm::Value *MapTypesArray = nullptr; |
| 1543 | /// The total number of pointers passed to the runtime library. |
| 1544 | unsigned NumberOfPtrs = 0u; |
| 1545 | /// Map between the a declaration of a capture and the corresponding base |
| 1546 | /// pointer address where the runtime returns the device pointers. |
| 1547 | llvm::DenseMap<const ValueDecl *, Address> CaptureDeviceAddrMap; |
| 1548 | |
| 1549 | explicit TargetDataInfo() {} |
| 1550 | explicit TargetDataInfo(bool RequiresDevicePointerInfo) |
| 1551 | : RequiresDevicePointerInfo(RequiresDevicePointerInfo) {} |
| 1552 | /// Clear information about the data arrays. |
| 1553 | void clearArrayInfo() { |
| 1554 | BasePointersArray = nullptr; |
| 1555 | PointersArray = nullptr; |
| 1556 | SizesArray = nullptr; |
| 1557 | MapTypesArray = nullptr; |
| 1558 | NumberOfPtrs = 0u; |
| 1559 | } |
| 1560 | /// Return true if the current target data information has valid arrays. |
| 1561 | bool isValid() { |
| 1562 | return BasePointersArray && PointersArray && SizesArray && |
| 1563 | MapTypesArray && NumberOfPtrs; |
| 1564 | } |
| 1565 | bool requiresDevicePointerInfo() { return RequiresDevicePointerInfo; } |
| 1566 | }; |
| 1567 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1568 | /// Emit the target data mapping code associated with \a D. |
| Samuel Antao | df158d5 | 2016-04-27 22:58:19 +0000 | [diff] [blame] | 1569 | /// \param D Directive to emit. |
| Samuel Antao | cc10b85 | 2016-07-28 14:23:26 +0000 | [diff] [blame] | 1570 | /// \param IfCond Expression evaluated in if clause associated with the |
| 1571 | /// target directive, or null if no device clause is used. |
| Samuel Antao | df158d5 | 2016-04-27 22:58:19 +0000 | [diff] [blame] | 1572 | /// \param Device Expression evaluated in device clause associated with the |
| 1573 | /// target directive, or null if no device clause is used. |
| Samuel Antao | cc10b85 | 2016-07-28 14:23:26 +0000 | [diff] [blame] | 1574 | /// \param Info A record used to store information that needs to be preserved |
| 1575 | /// until the region is closed. |
| Samuel Antao | df158d5 | 2016-04-27 22:58:19 +0000 | [diff] [blame] | 1576 | virtual void emitTargetDataCalls(CodeGenFunction &CGF, |
| 1577 | const OMPExecutableDirective &D, |
| 1578 | const Expr *IfCond, const Expr *Device, |
| Samuel Antao | cc10b85 | 2016-07-28 14:23:26 +0000 | [diff] [blame] | 1579 | const RegionCodeGenTy &CodeGen, |
| 1580 | TargetDataInfo &Info); |
| Samuel Antao | bd0ae2e | 2016-04-27 23:07:29 +0000 | [diff] [blame] | 1581 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1582 | /// Emit the data mapping/movement code associated with the directive |
| Samuel Antao | 8d2d730 | 2016-05-26 18:30:22 +0000 | [diff] [blame] | 1583 | /// \a D that should be of the form 'target [{enter|exit} data | update]'. |
| Samuel Antao | bd0ae2e | 2016-04-27 23:07:29 +0000 | [diff] [blame] | 1584 | /// \param D Directive to emit. |
| 1585 | /// \param IfCond Expression evaluated in if clause associated with the target |
| 1586 | /// directive, or null if no if clause is used. |
| 1587 | /// \param Device Expression evaluated in device clause associated with the |
| 1588 | /// target directive, or null if no device clause is used. |
| Samuel Antao | 8d2d730 | 2016-05-26 18:30:22 +0000 | [diff] [blame] | 1589 | virtual void emitTargetDataStandAloneCall(CodeGenFunction &CGF, |
| 1590 | const OMPExecutableDirective &D, |
| 1591 | const Expr *IfCond, |
| 1592 | const Expr *Device); |
| Alexey Bataev | c7a82b4 | 2016-05-06 09:40:08 +0000 | [diff] [blame] | 1593 | |
| 1594 | /// Marks function \a Fn with properly mangled versions of vector functions. |
| 1595 | /// \param FD Function marked as 'declare simd'. |
| 1596 | /// \param Fn LLVM function that must be marked with 'declare simd' |
| 1597 | /// attributes. |
| 1598 | virtual void emitDeclareSimdFunction(const FunctionDecl *FD, |
| 1599 | llvm::Function *Fn); |
| Alexey Bataev | 8b42706 | 2016-05-25 12:36:08 +0000 | [diff] [blame] | 1600 | |
| 1601 | /// Emit initialization for doacross loop nesting support. |
| 1602 | /// \param D Loop-based construct used in doacross nesting construct. |
| Alexey Bataev | f138fda | 2018-08-13 19:04:24 +0000 | [diff] [blame] | 1603 | virtual void emitDoacrossInit(CodeGenFunction &CGF, const OMPLoopDirective &D, |
| 1604 | ArrayRef<Expr *> NumIterations); |
| Alexey Bataev | 8b42706 | 2016-05-25 12:36:08 +0000 | [diff] [blame] | 1605 | |
| 1606 | /// Emit code for doacross ordered directive with 'depend' clause. |
| 1607 | /// \param C 'depend' clause with 'sink|source' dependency kind. |
| 1608 | virtual void emitDoacrossOrdered(CodeGenFunction &CGF, |
| 1609 | const OMPDependClause *C); |
| Alexey Bataev | 2c7eee5 | 2017-08-04 19:10:54 +0000 | [diff] [blame] | 1610 | |
| Alexey Bataev | 3b8d558 | 2017-08-08 18:04:06 +0000 | [diff] [blame] | 1611 | /// Translates the native parameter of outlined function if this is required |
| 1612 | /// for target. |
| Alexander Kornienko | 2a8c18d | 2018-04-06 15:14:32 +0000 | [diff] [blame] | 1613 | /// \param FD Field decl from captured record for the parameter. |
| Alexey Bataev | 3b8d558 | 2017-08-08 18:04:06 +0000 | [diff] [blame] | 1614 | /// \param NativeParam Parameter itself. |
| 1615 | virtual const VarDecl *translateParameter(const FieldDecl *FD, |
| 1616 | const VarDecl *NativeParam) const { |
| 1617 | return NativeParam; |
| 1618 | } |
| 1619 | |
| 1620 | /// Gets the address of the native argument basing on the address of the |
| 1621 | /// target-specific parameter. |
| 1622 | /// \param NativeParam Parameter itself. |
| 1623 | /// \param TargetParam Corresponding target-specific parameter. |
| 1624 | virtual Address getParameterAddress(CodeGenFunction &CGF, |
| 1625 | const VarDecl *NativeParam, |
| 1626 | const VarDecl *TargetParam) const; |
| 1627 | |
| Gheorghe-Teodor Bercea | 02650d4 | 2018-09-27 19:22:56 +0000 | [diff] [blame] | 1628 | /// Choose default schedule type and chunk value for the |
| 1629 | /// dist_schedule clause. |
| 1630 | virtual void getDefaultDistScheduleAndChunk(CodeGenFunction &CGF, |
| 1631 | const OMPLoopDirective &S, OpenMPDistScheduleClauseKind &ScheduleKind, |
| 1632 | llvm::Value *&Chunk) const {} |
| 1633 | |
| Gheorghe-Teodor Bercea | 8233af9 | 2018-09-27 20:29:00 +0000 | [diff] [blame] | 1634 | /// Choose default schedule type and chunk value for the |
| 1635 | /// schedule clause. |
| 1636 | virtual void getDefaultScheduleAndChunk(CodeGenFunction &CGF, |
| 1637 | const OMPLoopDirective &S, OpenMPScheduleClauseKind &ScheduleKind, |
| Alexey Bataev | f6a53d6 | 2019-03-18 18:40:00 +0000 | [diff] [blame] | 1638 | const Expr *&ChunkExpr) const; |
| Gheorghe-Teodor Bercea | 8233af9 | 2018-09-27 20:29:00 +0000 | [diff] [blame] | 1639 | |
| Alexey Bataev | 2c7eee5 | 2017-08-04 19:10:54 +0000 | [diff] [blame] | 1640 | /// Emits call of the outlined function with the provided arguments, |
| 1641 | /// translating these arguments to correct target-specific arguments. |
| 1642 | virtual void |
| Alexey Bataev | 3c595a6 | 2017-08-14 15:01:03 +0000 | [diff] [blame] | 1643 | emitOutlinedFunctionCall(CodeGenFunction &CGF, SourceLocation Loc, |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 1644 | llvm::FunctionCallee OutlinedFn, |
| Alexey Bataev | 2c7eee5 | 2017-08-04 19:10:54 +0000 | [diff] [blame] | 1645 | ArrayRef<llvm::Value *> Args = llvm::None) const; |
| Gheorghe-Teodor Bercea | d3dcf2f | 2018-03-14 14:17:45 +0000 | [diff] [blame] | 1646 | |
| 1647 | /// Emits OpenMP-specific function prolog. |
| 1648 | /// Required for device constructs. |
| Gheorghe-Teodor Bercea | 66cdbb47 | 2019-05-21 19:42:01 +0000 | [diff] [blame] | 1649 | virtual void emitFunctionProlog(CodeGenFunction &CGF, const Decl *D); |
| Gheorghe-Teodor Bercea | d3dcf2f | 2018-03-14 14:17:45 +0000 | [diff] [blame] | 1650 | |
| 1651 | /// Gets the OpenMP-specific address of the local variable. |
| 1652 | virtual Address getAddressOfLocalVariable(CodeGenFunction &CGF, |
| 1653 | const VarDecl *VD); |
| Alexey Bataev | 4f4bf7c | 2018-03-15 15:47:20 +0000 | [diff] [blame] | 1654 | |
| Raphael Isemann | b23ccec | 2018-12-10 12:37:46 +0000 | [diff] [blame] | 1655 | /// Marks the declaration as already emitted for the device code and returns |
| Alexey Bataev | 4f4bf7c | 2018-03-15 15:47:20 +0000 | [diff] [blame] | 1656 | /// true, if it was marked already, and false, otherwise. |
| Alexey Bataev | 6d94410 | 2018-05-02 15:45:28 +0000 | [diff] [blame] | 1657 | bool markAsGlobalTarget(GlobalDecl GD); |
| Alexey Bataev | 4f4bf7c | 2018-03-15 15:47:20 +0000 | [diff] [blame] | 1658 | |
| Alexey Bataev | bf8fe71 | 2018-08-07 16:14:36 +0000 | [diff] [blame] | 1659 | /// Emit deferred declare target variables marked for deferred emission. |
| 1660 | void emitDeferredTargetDecls() const; |
| Alexey Bataev | 6070542 | 2018-10-30 15:50:12 +0000 | [diff] [blame] | 1661 | |
| 1662 | /// Adjust some parameters for the target-based directives, like addresses of |
| 1663 | /// the variables captured by reference in lambdas. |
| 1664 | virtual void |
| 1665 | adjustTargetSpecificDataForLambdas(CodeGenFunction &CGF, |
| 1666 | const OMPExecutableDirective &D) const; |
| Patrick Lyster | 8f7f586 | 2018-11-19 15:09:33 +0000 | [diff] [blame] | 1667 | |
| 1668 | /// Perform check on requires decl to ensure that target architecture |
| 1669 | /// supports unified addressing |
| Gheorghe-Teodor Bercea | 66cdbb47 | 2019-05-21 19:42:01 +0000 | [diff] [blame] | 1670 | virtual void checkArchForUnifiedAddressing(const OMPRequiresDecl *D); |
| Alexey Bataev | c568725 | 2019-03-21 19:35:27 +0000 | [diff] [blame] | 1671 | |
| 1672 | /// Checks if the variable has associated OMPAllocateDeclAttr attribute with |
| 1673 | /// the predefined allocator and translates it into the corresponding address |
| 1674 | /// space. |
| 1675 | virtual bool hasAllocateAttributeForGlobalVar(const VarDecl *VD, LangAS &AS); |
| Gheorghe-Teodor Bercea | 5254f0a | 2019-06-14 17:58:26 +0000 | [diff] [blame] | 1676 | |
| 1677 | /// Return whether the unified_shared_memory has been specified. |
| 1678 | bool hasRequiresUnifiedSharedMemory() const; |
| Alexey Bataev | 2df5f12 | 2019-10-01 20:18:32 +0000 | [diff] [blame] | 1679 | |
| 1680 | /// Emits the definition of the declare variant function. |
| 1681 | virtual bool emitDeclareVariant(GlobalDecl GD, bool IsForDefinition); |
| Alexey Bataev | 0860db9 | 2019-12-19 10:01:10 -0500 | [diff] [blame] | 1682 | |
| 1683 | /// Checks if the \p VD variable is marked as nontemporal declaration in |
| 1684 | /// current context. |
| 1685 | bool isNontemporalDecl(const ValueDecl *VD) const; |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 1686 | }; |
| Alexey Bataev | 8cbe0a6 | 2015-02-26 10:27:34 +0000 | [diff] [blame] | 1687 | |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1688 | /// Class supports emissionof SIMD-only code. |
| 1689 | class CGOpenMPSIMDRuntime final : public CGOpenMPRuntime { |
| 1690 | public: |
| 1691 | explicit CGOpenMPSIMDRuntime(CodeGenModule &CGM) : CGOpenMPRuntime(CGM) {} |
| 1692 | ~CGOpenMPSIMDRuntime() override {} |
| 1693 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1694 | /// Emits outlined function for the specified OpenMP parallel directive |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1695 | /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID, |
| 1696 | /// kmp_int32 BoundID, struct context_vars*). |
| 1697 | /// \param D OpenMP directive. |
| 1698 | /// \param ThreadIDVar Variable for thread id in the current OpenMP region. |
| 1699 | /// \param InnermostKind Kind of innermost directive (for simple directives it |
| 1700 | /// is a directive itself, for combined - its innermost directive). |
| 1701 | /// \param CodeGen Code generation sequence for the \a D directive. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 1702 | llvm::Function * |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1703 | emitParallelOutlinedFunction(const OMPExecutableDirective &D, |
| 1704 | const VarDecl *ThreadIDVar, |
| 1705 | OpenMPDirectiveKind InnermostKind, |
| 1706 | const RegionCodeGenTy &CodeGen) override; |
| 1707 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1708 | /// Emits outlined function for the specified OpenMP teams directive |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1709 | /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID, |
| 1710 | /// kmp_int32 BoundID, struct context_vars*). |
| 1711 | /// \param D OpenMP directive. |
| 1712 | /// \param ThreadIDVar Variable for thread id in the current OpenMP region. |
| 1713 | /// \param InnermostKind Kind of innermost directive (for simple directives it |
| 1714 | /// is a directive itself, for combined - its innermost directive). |
| 1715 | /// \param CodeGen Code generation sequence for the \a D directive. |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 1716 | llvm::Function * |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1717 | emitTeamsOutlinedFunction(const OMPExecutableDirective &D, |
| 1718 | const VarDecl *ThreadIDVar, |
| 1719 | OpenMPDirectiveKind InnermostKind, |
| 1720 | const RegionCodeGenTy &CodeGen) override; |
| 1721 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1722 | /// Emits outlined function for the OpenMP task directive \a D. This |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1723 | /// outlined function has type void(*)(kmp_int32 ThreadID, struct task_t* |
| 1724 | /// TaskT). |
| 1725 | /// \param D OpenMP directive. |
| 1726 | /// \param ThreadIDVar Variable for thread id in the current OpenMP region. |
| 1727 | /// \param PartIDVar Variable for partition id in the current OpenMP untied |
| 1728 | /// task region. |
| 1729 | /// \param TaskTVar Variable for task_t argument. |
| 1730 | /// \param InnermostKind Kind of innermost directive (for simple directives it |
| 1731 | /// is a directive itself, for combined - its innermost directive). |
| 1732 | /// \param CodeGen Code generation sequence for the \a D directive. |
| 1733 | /// \param Tied true if task is generated for tied task, false otherwise. |
| 1734 | /// \param NumberOfParts Number of parts in untied task. Ignored for tied |
| 1735 | /// tasks. |
| 1736 | /// |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 1737 | llvm::Function *emitTaskOutlinedFunction( |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1738 | const OMPExecutableDirective &D, const VarDecl *ThreadIDVar, |
| 1739 | const VarDecl *PartIDVar, const VarDecl *TaskTVar, |
| 1740 | OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen, |
| 1741 | bool Tied, unsigned &NumberOfParts) override; |
| 1742 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1743 | /// Emits code for parallel or serial call of the \a OutlinedFn with |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1744 | /// variables captured in a record which address is stored in \a |
| 1745 | /// CapturedStruct. |
| 1746 | /// \param OutlinedFn Outlined function to be run in parallel threads. Type of |
| 1747 | /// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*). |
| 1748 | /// \param CapturedVars A pointer to the record with the references to |
| 1749 | /// variables used in \a OutlinedFn function. |
| 1750 | /// \param IfCond Condition in the associated 'if' clause, if it was |
| 1751 | /// specified, nullptr otherwise. |
| 1752 | /// |
| 1753 | void emitParallelCall(CodeGenFunction &CGF, SourceLocation Loc, |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 1754 | llvm::Function *OutlinedFn, |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1755 | ArrayRef<llvm::Value *> CapturedVars, |
| 1756 | const Expr *IfCond) override; |
| 1757 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1758 | /// Emits a critical region. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1759 | /// \param CriticalName Name of the critical region. |
| 1760 | /// \param CriticalOpGen Generator for the statement associated with the given |
| 1761 | /// critical region. |
| 1762 | /// \param Hint Value of the 'hint' clause (optional). |
| 1763 | void emitCriticalRegion(CodeGenFunction &CGF, StringRef CriticalName, |
| 1764 | const RegionCodeGenTy &CriticalOpGen, |
| 1765 | SourceLocation Loc, |
| 1766 | const Expr *Hint = nullptr) override; |
| 1767 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1768 | /// Emits a master region. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1769 | /// \param MasterOpGen Generator for the statement associated with the given |
| 1770 | /// master region. |
| 1771 | void emitMasterRegion(CodeGenFunction &CGF, |
| 1772 | const RegionCodeGenTy &MasterOpGen, |
| 1773 | SourceLocation Loc) override; |
| 1774 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1775 | /// Emits code for a taskyield directive. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1776 | void emitTaskyieldCall(CodeGenFunction &CGF, SourceLocation Loc) override; |
| 1777 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1778 | /// Emit a taskgroup region. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1779 | /// \param TaskgroupOpGen Generator for the statement associated with the |
| 1780 | /// given taskgroup region. |
| 1781 | void emitTaskgroupRegion(CodeGenFunction &CGF, |
| 1782 | const RegionCodeGenTy &TaskgroupOpGen, |
| 1783 | SourceLocation Loc) override; |
| 1784 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1785 | /// Emits a single region. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1786 | /// \param SingleOpGen Generator for the statement associated with the given |
| 1787 | /// single region. |
| 1788 | void emitSingleRegion(CodeGenFunction &CGF, |
| 1789 | const RegionCodeGenTy &SingleOpGen, SourceLocation Loc, |
| 1790 | ArrayRef<const Expr *> CopyprivateVars, |
| 1791 | ArrayRef<const Expr *> DestExprs, |
| 1792 | ArrayRef<const Expr *> SrcExprs, |
| 1793 | ArrayRef<const Expr *> AssignmentOps) override; |
| 1794 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1795 | /// Emit an ordered region. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1796 | /// \param OrderedOpGen Generator for the statement associated with the given |
| 1797 | /// ordered region. |
| 1798 | void emitOrderedRegion(CodeGenFunction &CGF, |
| 1799 | const RegionCodeGenTy &OrderedOpGen, |
| 1800 | SourceLocation Loc, bool IsThreads) override; |
| 1801 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1802 | /// Emit an implicit/explicit barrier for OpenMP threads. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1803 | /// \param Kind Directive for which this implicit barrier call must be |
| 1804 | /// generated. Must be OMPD_barrier for explicit barrier generation. |
| 1805 | /// \param EmitChecks true if need to emit checks for cancellation barriers. |
| 1806 | /// \param ForceSimpleCall true simple barrier call must be emitted, false if |
| 1807 | /// runtime class decides which one to emit (simple or with cancellation |
| 1808 | /// checks). |
| 1809 | /// |
| 1810 | void emitBarrierCall(CodeGenFunction &CGF, SourceLocation Loc, |
| 1811 | OpenMPDirectiveKind Kind, bool EmitChecks = true, |
| 1812 | bool ForceSimpleCall = false) override; |
| 1813 | |
| 1814 | /// This is used for non static scheduled types and when the ordered |
| 1815 | /// clause is present on the loop construct. |
| 1816 | /// Depending on the loop schedule, it is necessary to call some runtime |
| 1817 | /// routine before start of the OpenMP loop to get the loop upper / lower |
| 1818 | /// bounds \a LB and \a UB and stride \a ST. |
| 1819 | /// |
| 1820 | /// \param CGF Reference to current CodeGenFunction. |
| 1821 | /// \param Loc Clang source location. |
| 1822 | /// \param ScheduleKind Schedule kind, specified by the 'schedule' clause. |
| 1823 | /// \param IVSize Size of the iteration variable in bits. |
| 1824 | /// \param IVSigned Sign of the iteration variable. |
| 1825 | /// \param Ordered true if loop is ordered, false otherwise. |
| 1826 | /// \param DispatchValues struct containing llvm values for lower bound, upper |
| 1827 | /// bound, and chunk expression. |
| 1828 | /// For the default (nullptr) value, the chunk 1 will be used. |
| 1829 | /// |
| 1830 | void emitForDispatchInit(CodeGenFunction &CGF, SourceLocation Loc, |
| 1831 | const OpenMPScheduleTy &ScheduleKind, |
| 1832 | unsigned IVSize, bool IVSigned, bool Ordered, |
| 1833 | const DispatchRTInput &DispatchValues) override; |
| 1834 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1835 | /// Call the appropriate runtime routine to initialize it before start |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1836 | /// of loop. |
| 1837 | /// |
| 1838 | /// This is used only in case of static schedule, when the user did not |
| 1839 | /// specify a ordered clause on the loop construct. |
| 1840 | /// Depending on the loop schedule, it is necessary to call some runtime |
| 1841 | /// routine before start of the OpenMP loop to get the loop upper / lower |
| 1842 | /// bounds LB and UB and stride ST. |
| 1843 | /// |
| 1844 | /// \param CGF Reference to current CodeGenFunction. |
| 1845 | /// \param Loc Clang source location. |
| 1846 | /// \param DKind Kind of the directive. |
| 1847 | /// \param ScheduleKind Schedule kind, specified by the 'schedule' clause. |
| 1848 | /// \param Values Input arguments for the construct. |
| 1849 | /// |
| 1850 | void emitForStaticInit(CodeGenFunction &CGF, SourceLocation Loc, |
| 1851 | OpenMPDirectiveKind DKind, |
| 1852 | const OpenMPScheduleTy &ScheduleKind, |
| 1853 | const StaticRTInput &Values) override; |
| 1854 | |
| 1855 | /// |
| 1856 | /// \param CGF Reference to current CodeGenFunction. |
| 1857 | /// \param Loc Clang source location. |
| 1858 | /// \param SchedKind Schedule kind, specified by the 'dist_schedule' clause. |
| 1859 | /// \param Values Input arguments for the construct. |
| 1860 | /// |
| 1861 | void emitDistributeStaticInit(CodeGenFunction &CGF, SourceLocation Loc, |
| 1862 | OpenMPDistScheduleClauseKind SchedKind, |
| 1863 | const StaticRTInput &Values) override; |
| 1864 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1865 | /// Call the appropriate runtime routine to notify that we finished |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1866 | /// iteration of the ordered loop with the dynamic scheduling. |
| 1867 | /// |
| 1868 | /// \param CGF Reference to current CodeGenFunction. |
| 1869 | /// \param Loc Clang source location. |
| 1870 | /// \param IVSize Size of the iteration variable in bits. |
| 1871 | /// \param IVSigned Sign of the iteration variable. |
| 1872 | /// |
| 1873 | void emitForOrderedIterationEnd(CodeGenFunction &CGF, SourceLocation Loc, |
| 1874 | unsigned IVSize, bool IVSigned) override; |
| 1875 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1876 | /// Call the appropriate runtime routine to notify that we finished |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1877 | /// all the work with current loop. |
| 1878 | /// |
| 1879 | /// \param CGF Reference to current CodeGenFunction. |
| 1880 | /// \param Loc Clang source location. |
| 1881 | /// \param DKind Kind of the directive for which the static finish is emitted. |
| 1882 | /// |
| 1883 | void emitForStaticFinish(CodeGenFunction &CGF, SourceLocation Loc, |
| 1884 | OpenMPDirectiveKind DKind) override; |
| 1885 | |
| 1886 | /// Call __kmpc_dispatch_next( |
| 1887 | /// ident_t *loc, kmp_int32 tid, kmp_int32 *p_lastiter, |
| 1888 | /// kmp_int[32|64] *p_lower, kmp_int[32|64] *p_upper, |
| 1889 | /// kmp_int[32|64] *p_stride); |
| 1890 | /// \param IVSize Size of the iteration variable in bits. |
| 1891 | /// \param IVSigned Sign of the iteration variable. |
| 1892 | /// \param IL Address of the output variable in which the flag of the |
| 1893 | /// last iteration is returned. |
| 1894 | /// \param LB Address of the output variable in which the lower iteration |
| 1895 | /// number is returned. |
| 1896 | /// \param UB Address of the output variable in which the upper iteration |
| 1897 | /// number is returned. |
| 1898 | /// \param ST Address of the output variable in which the stride value is |
| 1899 | /// returned. |
| 1900 | llvm::Value *emitForNext(CodeGenFunction &CGF, SourceLocation Loc, |
| 1901 | unsigned IVSize, bool IVSigned, Address IL, |
| 1902 | Address LB, Address UB, Address ST) override; |
| 1903 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1904 | /// Emits call to void __kmpc_push_num_threads(ident_t *loc, kmp_int32 |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1905 | /// global_tid, kmp_int32 num_threads) to generate code for 'num_threads' |
| 1906 | /// clause. |
| 1907 | /// \param NumThreads An integer value of threads. |
| 1908 | void emitNumThreadsClause(CodeGenFunction &CGF, llvm::Value *NumThreads, |
| 1909 | SourceLocation Loc) override; |
| 1910 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1911 | /// Emit call to void __kmpc_push_proc_bind(ident_t *loc, kmp_int32 |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1912 | /// global_tid, int proc_bind) to generate code for 'proc_bind' clause. |
| 1913 | void emitProcBindClause(CodeGenFunction &CGF, |
| Johannes Doerfert | 6c5d1f40 | 2019-12-25 18:15:36 -0600 | [diff] [blame^] | 1914 | llvm::omp::ProcBindKind ProcBind, |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1915 | SourceLocation Loc) override; |
| 1916 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1917 | /// Returns address of the threadprivate variable for the current |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1918 | /// thread. |
| 1919 | /// \param VD Threadprivate variable. |
| 1920 | /// \param VDAddr Address of the global variable \a VD. |
| 1921 | /// \param Loc Location of the reference to threadprivate var. |
| 1922 | /// \return Address of the threadprivate variable for the current thread. |
| 1923 | Address getAddrOfThreadPrivate(CodeGenFunction &CGF, const VarDecl *VD, |
| 1924 | Address VDAddr, SourceLocation Loc) override; |
| 1925 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1926 | /// Emit a code for initialization of threadprivate variable. It emits |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1927 | /// a call to runtime library which adds initial value to the newly created |
| 1928 | /// threadprivate variable (if it is not constant) and registers destructor |
| 1929 | /// for the variable (if any). |
| 1930 | /// \param VD Threadprivate variable. |
| 1931 | /// \param VDAddr Address of the global variable \a VD. |
| 1932 | /// \param Loc Location of threadprivate declaration. |
| 1933 | /// \param PerformInit true if initialization expression is not constant. |
| 1934 | llvm::Function * |
| 1935 | emitThreadPrivateVarDefinition(const VarDecl *VD, Address VDAddr, |
| 1936 | SourceLocation Loc, bool PerformInit, |
| 1937 | CodeGenFunction *CGF = nullptr) override; |
| 1938 | |
| 1939 | /// Creates artificial threadprivate variable with name \p Name and type \p |
| 1940 | /// VarType. |
| 1941 | /// \param VarType Type of the artificial threadprivate variable. |
| 1942 | /// \param Name Name of the artificial threadprivate variable. |
| 1943 | Address getAddrOfArtificialThreadPrivate(CodeGenFunction &CGF, |
| 1944 | QualType VarType, |
| 1945 | StringRef Name) override; |
| 1946 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1947 | /// Emit flush of the variables specified in 'omp flush' directive. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1948 | /// \param Vars List of variables to flush. |
| 1949 | void emitFlush(CodeGenFunction &CGF, ArrayRef<const Expr *> Vars, |
| 1950 | SourceLocation Loc) override; |
| 1951 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1952 | /// Emit task region for the task directive. The task region is |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1953 | /// emitted in several steps: |
| 1954 | /// 1. Emit a call to kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32 |
| 1955 | /// gtid, kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds, |
| 1956 | /// kmp_routine_entry_t *task_entry). Here task_entry is a pointer to the |
| 1957 | /// function: |
| 1958 | /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) { |
| 1959 | /// TaskFunction(gtid, tt->part_id, tt->shareds); |
| 1960 | /// return 0; |
| 1961 | /// } |
| 1962 | /// 2. Copy a list of shared variables to field shareds of the resulting |
| 1963 | /// structure kmp_task_t returned by the previous call (if any). |
| 1964 | /// 3. Copy a pointer to destructions function to field destructions of the |
| 1965 | /// resulting structure kmp_task_t. |
| 1966 | /// 4. Emit a call to kmp_int32 __kmpc_omp_task(ident_t *, kmp_int32 gtid, |
| 1967 | /// kmp_task_t *new_task), where new_task is a resulting structure from |
| 1968 | /// previous items. |
| 1969 | /// \param D Current task directive. |
| 1970 | /// \param TaskFunction An LLVM function with type void (*)(i32 /*gtid*/, i32 |
| 1971 | /// /*part_id*/, captured_struct */*__context*/); |
| 1972 | /// \param SharedsTy A type which contains references the shared variables. |
| 1973 | /// \param Shareds Context with the list of shared variables from the \p |
| 1974 | /// TaskFunction. |
| 1975 | /// \param IfCond Not a nullptr if 'if' clause was specified, nullptr |
| 1976 | /// otherwise. |
| 1977 | /// \param Data Additional data for task generation like tiednsee, final |
| 1978 | /// state, list of privates etc. |
| 1979 | void emitTaskCall(CodeGenFunction &CGF, SourceLocation Loc, |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 1980 | const OMPExecutableDirective &D, |
| 1981 | llvm::Function *TaskFunction, QualType SharedsTy, |
| 1982 | Address Shareds, const Expr *IfCond, |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 1983 | const OMPTaskDataTy &Data) override; |
| 1984 | |
| 1985 | /// Emit task region for the taskloop directive. The taskloop region is |
| 1986 | /// emitted in several steps: |
| 1987 | /// 1. Emit a call to kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32 |
| 1988 | /// gtid, kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds, |
| 1989 | /// kmp_routine_entry_t *task_entry). Here task_entry is a pointer to the |
| 1990 | /// function: |
| 1991 | /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) { |
| 1992 | /// TaskFunction(gtid, tt->part_id, tt->shareds); |
| 1993 | /// return 0; |
| 1994 | /// } |
| 1995 | /// 2. Copy a list of shared variables to field shareds of the resulting |
| 1996 | /// structure kmp_task_t returned by the previous call (if any). |
| 1997 | /// 3. Copy a pointer to destructions function to field destructions of the |
| 1998 | /// resulting structure kmp_task_t. |
| 1999 | /// 4. Emit a call to void __kmpc_taskloop(ident_t *loc, int gtid, kmp_task_t |
| 2000 | /// *task, int if_val, kmp_uint64 *lb, kmp_uint64 *ub, kmp_int64 st, int |
| 2001 | /// nogroup, int sched, kmp_uint64 grainsize, void *task_dup ), where new_task |
| 2002 | /// is a resulting structure from |
| 2003 | /// previous items. |
| 2004 | /// \param D Current task directive. |
| 2005 | /// \param TaskFunction An LLVM function with type void (*)(i32 /*gtid*/, i32 |
| 2006 | /// /*part_id*/, captured_struct */*__context*/); |
| 2007 | /// \param SharedsTy A type which contains references the shared variables. |
| 2008 | /// \param Shareds Context with the list of shared variables from the \p |
| 2009 | /// TaskFunction. |
| 2010 | /// \param IfCond Not a nullptr if 'if' clause was specified, nullptr |
| 2011 | /// otherwise. |
| 2012 | /// \param Data Additional data for task generation like tiednsee, final |
| 2013 | /// state, list of privates etc. |
| 2014 | void emitTaskLoopCall(CodeGenFunction &CGF, SourceLocation Loc, |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 2015 | const OMPLoopDirective &D, llvm::Function *TaskFunction, |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2016 | QualType SharedsTy, Address Shareds, const Expr *IfCond, |
| 2017 | const OMPTaskDataTy &Data) override; |
| 2018 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2019 | /// Emit a code for reduction clause. Next code should be emitted for |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2020 | /// reduction: |
| 2021 | /// \code |
| 2022 | /// |
| 2023 | /// static kmp_critical_name lock = { 0 }; |
| 2024 | /// |
| 2025 | /// void reduce_func(void *lhs[<n>], void *rhs[<n>]) { |
| 2026 | /// ... |
| 2027 | /// *(Type<i>*)lhs[i] = RedOp<i>(*(Type<i>*)lhs[i], *(Type<i>*)rhs[i]); |
| 2028 | /// ... |
| 2029 | /// } |
| 2030 | /// |
| 2031 | /// ... |
| 2032 | /// void *RedList[<n>] = {&<RHSExprs>[0], ..., &<RHSExprs>[<n>-1]}; |
| 2033 | /// switch (__kmpc_reduce{_nowait}(<loc>, <gtid>, <n>, sizeof(RedList), |
| 2034 | /// RedList, reduce_func, &<lock>)) { |
| 2035 | /// case 1: |
| 2036 | /// ... |
| 2037 | /// <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]); |
| 2038 | /// ... |
| 2039 | /// __kmpc_end_reduce{_nowait}(<loc>, <gtid>, &<lock>); |
| 2040 | /// break; |
| 2041 | /// case 2: |
| 2042 | /// ... |
| 2043 | /// Atomic(<LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i])); |
| 2044 | /// ... |
| 2045 | /// break; |
| 2046 | /// default:; |
| 2047 | /// } |
| 2048 | /// \endcode |
| 2049 | /// |
| 2050 | /// \param Privates List of private copies for original reduction arguments. |
| 2051 | /// \param LHSExprs List of LHS in \a ReductionOps reduction operations. |
| 2052 | /// \param RHSExprs List of RHS in \a ReductionOps reduction operations. |
| 2053 | /// \param ReductionOps List of reduction operations in form 'LHS binop RHS' |
| 2054 | /// or 'operator binop(LHS, RHS)'. |
| 2055 | /// \param Options List of options for reduction codegen: |
| 2056 | /// WithNowait true if parent directive has also nowait clause, false |
| 2057 | /// otherwise. |
| 2058 | /// SimpleReduction Emit reduction operation only. Used for omp simd |
| 2059 | /// directive on the host. |
| 2060 | /// ReductionKind The kind of reduction to perform. |
| 2061 | void emitReduction(CodeGenFunction &CGF, SourceLocation Loc, |
| 2062 | ArrayRef<const Expr *> Privates, |
| 2063 | ArrayRef<const Expr *> LHSExprs, |
| 2064 | ArrayRef<const Expr *> RHSExprs, |
| 2065 | ArrayRef<const Expr *> ReductionOps, |
| 2066 | ReductionOptionsTy Options) override; |
| 2067 | |
| 2068 | /// Emit a code for initialization of task reduction clause. Next code |
| 2069 | /// should be emitted for reduction: |
| 2070 | /// \code |
| 2071 | /// |
| 2072 | /// _task_red_item_t red_data[n]; |
| 2073 | /// ... |
| 2074 | /// red_data[i].shar = &origs[i]; |
| 2075 | /// red_data[i].size = sizeof(origs[i]); |
| 2076 | /// red_data[i].f_init = (void*)RedInit<i>; |
| 2077 | /// red_data[i].f_fini = (void*)RedDest<i>; |
| 2078 | /// red_data[i].f_comb = (void*)RedOp<i>; |
| 2079 | /// red_data[i].flags = <Flag_i>; |
| 2080 | /// ... |
| 2081 | /// void* tg1 = __kmpc_task_reduction_init(gtid, n, red_data); |
| 2082 | /// \endcode |
| 2083 | /// |
| 2084 | /// \param LHSExprs List of LHS in \a Data.ReductionOps reduction operations. |
| 2085 | /// \param RHSExprs List of RHS in \a Data.ReductionOps reduction operations. |
| 2086 | /// \param Data Additional data for task generation like tiedness, final |
| 2087 | /// state, list of privates, reductions etc. |
| 2088 | llvm::Value *emitTaskReductionInit(CodeGenFunction &CGF, SourceLocation Loc, |
| 2089 | ArrayRef<const Expr *> LHSExprs, |
| 2090 | ArrayRef<const Expr *> RHSExprs, |
| 2091 | const OMPTaskDataTy &Data) override; |
| 2092 | |
| 2093 | /// Required to resolve existing problems in the runtime. Emits threadprivate |
| 2094 | /// variables to store the size of the VLAs/array sections for |
| 2095 | /// initializer/combiner/finalizer functions + emits threadprivate variable to |
| 2096 | /// store the pointer to the original reduction item for the custom |
| 2097 | /// initializer defined by declare reduction construct. |
| 2098 | /// \param RCG Allows to reuse an existing data for the reductions. |
| 2099 | /// \param N Reduction item for which fixups must be emitted. |
| 2100 | void emitTaskReductionFixups(CodeGenFunction &CGF, SourceLocation Loc, |
| 2101 | ReductionCodeGen &RCG, unsigned N) override; |
| 2102 | |
| 2103 | /// Get the address of `void *` type of the privatue copy of the reduction |
| 2104 | /// item specified by the \p SharedLVal. |
| 2105 | /// \param ReductionsPtr Pointer to the reduction data returned by the |
| 2106 | /// emitTaskReductionInit function. |
| 2107 | /// \param SharedLVal Address of the original reduction item. |
| 2108 | Address getTaskReductionItem(CodeGenFunction &CGF, SourceLocation Loc, |
| 2109 | llvm::Value *ReductionsPtr, |
| 2110 | LValue SharedLVal) override; |
| 2111 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2112 | /// Emit code for 'taskwait' directive. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2113 | void emitTaskwaitCall(CodeGenFunction &CGF, SourceLocation Loc) override; |
| 2114 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2115 | /// Emit code for 'cancellation point' construct. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2116 | /// \param CancelRegion Region kind for which the cancellation point must be |
| 2117 | /// emitted. |
| 2118 | /// |
| 2119 | void emitCancellationPointCall(CodeGenFunction &CGF, SourceLocation Loc, |
| 2120 | OpenMPDirectiveKind CancelRegion) override; |
| 2121 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2122 | /// Emit code for 'cancel' construct. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2123 | /// \param IfCond Condition in the associated 'if' clause, if it was |
| 2124 | /// specified, nullptr otherwise. |
| 2125 | /// \param CancelRegion Region kind for which the cancel must be emitted. |
| 2126 | /// |
| 2127 | void emitCancelCall(CodeGenFunction &CGF, SourceLocation Loc, |
| 2128 | const Expr *IfCond, |
| 2129 | OpenMPDirectiveKind CancelRegion) override; |
| 2130 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2131 | /// Emit outilined function for 'target' directive. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2132 | /// \param D Directive to emit. |
| 2133 | /// \param ParentName Name of the function that encloses the target region. |
| 2134 | /// \param OutlinedFn Outlined function value to be defined by this call. |
| 2135 | /// \param OutlinedFnID Outlined function ID value to be defined by this call. |
| 2136 | /// \param IsOffloadEntry True if the outlined function is an offload entry. |
| 2137 | /// \param CodeGen Code generation sequence for the \a D directive. |
| 2138 | /// An outlined function may not be an entry if, e.g. the if clause always |
| 2139 | /// evaluates to false. |
| 2140 | void emitTargetOutlinedFunction(const OMPExecutableDirective &D, |
| 2141 | StringRef ParentName, |
| 2142 | llvm::Function *&OutlinedFn, |
| 2143 | llvm::Constant *&OutlinedFnID, |
| 2144 | bool IsOffloadEntry, |
| 2145 | const RegionCodeGenTy &CodeGen) override; |
| 2146 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2147 | /// Emit the target offloading code associated with \a D. The emitted |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2148 | /// code attempts offloading the execution to the device, an the event of |
| 2149 | /// a failure it executes the host version outlined in \a OutlinedFn. |
| 2150 | /// \param D Directive to emit. |
| 2151 | /// \param OutlinedFn Host version of the code to be offloaded. |
| 2152 | /// \param OutlinedFnID ID of host version of the code to be offloaded. |
| 2153 | /// \param IfCond Expression evaluated in if clause associated with the target |
| 2154 | /// directive, or null if no if clause is used. |
| 2155 | /// \param Device Expression evaluated in device clause associated with the |
| 2156 | /// target directive, or null if no device clause is used. |
| Alexey Bataev | ec7946e | 2019-09-23 14:06:51 +0000 | [diff] [blame] | 2157 | void |
| 2158 | emitTargetCall(CodeGenFunction &CGF, const OMPExecutableDirective &D, |
| 2159 | llvm::Function *OutlinedFn, llvm::Value *OutlinedFnID, |
| 2160 | const Expr *IfCond, const Expr *Device, |
| 2161 | llvm::function_ref<llvm::Value *(CodeGenFunction &CGF, |
| 2162 | const OMPLoopDirective &D)> |
| 2163 | SizeEmitter) override; |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2164 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2165 | /// Emit the target regions enclosed in \a GD function definition or |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2166 | /// the function itself in case it is a valid device function. Returns true if |
| 2167 | /// \a GD was dealt with successfully. |
| 2168 | /// \param GD Function to scan. |
| 2169 | bool emitTargetFunctions(GlobalDecl GD) override; |
| 2170 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2171 | /// Emit the global variable if it is a valid device global variable. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2172 | /// Returns true if \a GD was dealt with successfully. |
| 2173 | /// \param GD Variable declaration to emit. |
| 2174 | bool emitTargetGlobalVariable(GlobalDecl GD) override; |
| 2175 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2176 | /// Emit the global \a GD if it is meaningful for the target. Returns |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2177 | /// if it was emitted successfully. |
| 2178 | /// \param GD Global to scan. |
| 2179 | bool emitTargetGlobal(GlobalDecl GD) override; |
| 2180 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2181 | /// Emits code for teams call of the \a OutlinedFn with |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2182 | /// variables captured in a record which address is stored in \a |
| 2183 | /// CapturedStruct. |
| 2184 | /// \param OutlinedFn Outlined function to be run by team masters. Type of |
| 2185 | /// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*). |
| 2186 | /// \param CapturedVars A pointer to the record with the references to |
| 2187 | /// variables used in \a OutlinedFn function. |
| 2188 | /// |
| 2189 | void emitTeamsCall(CodeGenFunction &CGF, const OMPExecutableDirective &D, |
| James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 2190 | SourceLocation Loc, llvm::Function *OutlinedFn, |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2191 | ArrayRef<llvm::Value *> CapturedVars) override; |
| 2192 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2193 | /// Emits call to void __kmpc_push_num_teams(ident_t *loc, kmp_int32 |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2194 | /// global_tid, kmp_int32 num_teams, kmp_int32 thread_limit) to generate code |
| 2195 | /// for num_teams clause. |
| 2196 | /// \param NumTeams An integer expression of teams. |
| 2197 | /// \param ThreadLimit An integer expression of threads. |
| 2198 | void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams, |
| 2199 | const Expr *ThreadLimit, SourceLocation Loc) override; |
| 2200 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2201 | /// Emit the target data mapping code associated with \a D. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2202 | /// \param D Directive to emit. |
| 2203 | /// \param IfCond Expression evaluated in if clause associated with the |
| 2204 | /// target directive, or null if no device clause is used. |
| 2205 | /// \param Device Expression evaluated in device clause associated with the |
| 2206 | /// target directive, or null if no device clause is used. |
| 2207 | /// \param Info A record used to store information that needs to be preserved |
| 2208 | /// until the region is closed. |
| 2209 | void emitTargetDataCalls(CodeGenFunction &CGF, |
| 2210 | const OMPExecutableDirective &D, const Expr *IfCond, |
| 2211 | const Expr *Device, const RegionCodeGenTy &CodeGen, |
| 2212 | TargetDataInfo &Info) override; |
| 2213 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2214 | /// Emit the data mapping/movement code associated with the directive |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2215 | /// \a D that should be of the form 'target [{enter|exit} data | update]'. |
| 2216 | /// \param D Directive to emit. |
| 2217 | /// \param IfCond Expression evaluated in if clause associated with the target |
| 2218 | /// directive, or null if no if clause is used. |
| 2219 | /// \param Device Expression evaluated in device clause associated with the |
| 2220 | /// target directive, or null if no device clause is used. |
| 2221 | void emitTargetDataStandAloneCall(CodeGenFunction &CGF, |
| 2222 | const OMPExecutableDirective &D, |
| 2223 | const Expr *IfCond, |
| 2224 | const Expr *Device) override; |
| 2225 | |
| 2226 | /// Emit initialization for doacross loop nesting support. |
| 2227 | /// \param D Loop-based construct used in doacross nesting construct. |
| Alexey Bataev | f138fda | 2018-08-13 19:04:24 +0000 | [diff] [blame] | 2228 | void emitDoacrossInit(CodeGenFunction &CGF, const OMPLoopDirective &D, |
| 2229 | ArrayRef<Expr *> NumIterations) override; |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2230 | |
| 2231 | /// Emit code for doacross ordered directive with 'depend' clause. |
| 2232 | /// \param C 'depend' clause with 'sink|source' dependency kind. |
| 2233 | void emitDoacrossOrdered(CodeGenFunction &CGF, |
| 2234 | const OMPDependClause *C) override; |
| 2235 | |
| 2236 | /// Translates the native parameter of outlined function if this is required |
| 2237 | /// for target. |
| Alexander Kornienko | 2a8c18d | 2018-04-06 15:14:32 +0000 | [diff] [blame] | 2238 | /// \param FD Field decl from captured record for the parameter. |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2239 | /// \param NativeParam Parameter itself. |
| 2240 | const VarDecl *translateParameter(const FieldDecl *FD, |
| 2241 | const VarDecl *NativeParam) const override; |
| 2242 | |
| 2243 | /// Gets the address of the native argument basing on the address of the |
| 2244 | /// target-specific parameter. |
| 2245 | /// \param NativeParam Parameter itself. |
| 2246 | /// \param TargetParam Corresponding target-specific parameter. |
| 2247 | Address getParameterAddress(CodeGenFunction &CGF, const VarDecl *NativeParam, |
| 2248 | const VarDecl *TargetParam) const override; |
| Alexey Bataev | 4f680db | 2019-03-19 16:41:16 +0000 | [diff] [blame] | 2249 | |
| 2250 | /// Gets the OpenMP-specific address of the local variable. |
| 2251 | Address getAddressOfLocalVariable(CodeGenFunction &CGF, |
| 2252 | const VarDecl *VD) override { |
| 2253 | return Address::invalid(); |
| 2254 | } |
| Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 2255 | }; |
| 2256 | |
| Alexey Bataev | 23b6942 | 2014-06-18 07:08:49 +0000 | [diff] [blame] | 2257 | } // namespace CodeGen |
| 2258 | } // namespace clang |
| Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 2259 | |
| 2260 | #endif |