blob: 046228e7e248596d96fc47a78ef134d23a956b61 [file] [log] [blame]
Alexey Bataev9959db52014-05-06 10:08:46 +00001//===----- CGOpenMPRuntime.h - Interface to OpenMP Runtimes -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This provides a class for OpenMP runtime code generation.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramer2f5db8b2014-08-13 16:25:19 +000014#ifndef LLVM_CLANG_LIB_CODEGEN_CGOPENMPRUNTIME_H
15#define LLVM_CLANG_LIB_CODEGEN_CGOPENMPRUNTIME_H
Alexey Bataev9959db52014-05-06 10:08:46 +000016
Alexey Bataev7292c292016-04-25 12:22:29 +000017#include "CGValue.h"
Alexey Bataev62b63b12015-03-10 07:28:44 +000018#include "clang/AST/Type.h"
Alexander Musmanc6388682014-12-15 07:07:06 +000019#include "clang/Basic/OpenMPKinds.h"
Chandler Carruth0d9593d2015-01-14 11:29:14 +000020#include "clang/Basic/SourceLocation.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000021#include "llvm/ADT/DenseMap.h"
Benjamin Kramer8fdba912016-02-02 14:24:21 +000022#include "llvm/ADT/SmallPtrSet.h"
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +000023#include "llvm/ADT/StringMap.h"
Benjamin Kramer8fdba912016-02-02 14:24:21 +000024#include "llvm/IR/Function.h"
Alexey Bataev97720002014-11-11 04:05:39 +000025#include "llvm/IR/ValueHandle.h"
Alexey Bataev18095712014-10-10 12:19:54 +000026
27namespace llvm {
28class ArrayType;
29class Constant;
Alexey Bataev18095712014-10-10 12:19:54 +000030class FunctionType;
Alexey Bataev97720002014-11-11 04:05:39 +000031class GlobalVariable;
Alexey Bataev18095712014-10-10 12:19:54 +000032class StructType;
33class Type;
34class Value;
35} // namespace llvm
Alexey Bataev9959db52014-05-06 10:08:46 +000036
Alexey Bataev9959db52014-05-06 10:08:46 +000037namespace clang {
Alexey Bataevcc37cc12014-11-20 04:34:54 +000038class Expr;
Samuel Antaoee8fb302016-01-06 13:42:12 +000039class GlobalDecl;
Alexey Bataev8b427062016-05-25 12:36:08 +000040class OMPDependClause;
Alexey Bataev18095712014-10-10 12:19:54 +000041class OMPExecutableDirective;
Alexey Bataev7292c292016-04-25 12:22:29 +000042class OMPLoopDirective;
Alexey Bataev18095712014-10-10 12:19:54 +000043class VarDecl;
Alexey Bataevc5b1d322016-03-04 09:22:22 +000044class OMPDeclareReductionDecl;
45class IdentifierInfo;
Alexey Bataev18095712014-10-10 12:19:54 +000046
Alexey Bataev9959db52014-05-06 10:08:46 +000047namespace CodeGen {
John McCall7f416cc2015-09-08 08:05:57 +000048class Address;
Alexey Bataev18095712014-10-10 12:19:54 +000049class CodeGenFunction;
50class CodeGenModule;
Alexey Bataev9959db52014-05-06 10:08:46 +000051
Alexey Bataev14fa1c62016-03-29 05:34:15 +000052/// A basic class for pre|post-action for advanced codegen sequence for OpenMP
53/// region.
54class PrePostActionTy {
55public:
56 explicit PrePostActionTy() {}
57 virtual void Enter(CodeGenFunction &CGF) {}
58 virtual void Exit(CodeGenFunction &CGF) {}
59 virtual ~PrePostActionTy() {}
60};
61
62/// Class provides a way to call simple version of codegen for OpenMP region, or
63/// an advanced with possible pre|post-actions in codegen.
64class RegionCodeGenTy final {
65 intptr_t CodeGen;
66 typedef void (*CodeGenTy)(intptr_t, CodeGenFunction &, PrePostActionTy &);
67 CodeGenTy Callback;
68 mutable PrePostActionTy *PrePostAction;
69 RegionCodeGenTy() = delete;
70 RegionCodeGenTy &operator=(const RegionCodeGenTy &) = delete;
71 template <typename Callable>
72 static void CallbackFn(intptr_t CodeGen, CodeGenFunction &CGF,
73 PrePostActionTy &Action) {
74 return (*reinterpret_cast<Callable *>(CodeGen))(CGF, Action);
75 }
76
77public:
78 template <typename Callable>
79 RegionCodeGenTy(
80 Callable &&CodeGen,
81 typename std::enable_if<
82 !std::is_same<typename std::remove_reference<Callable>::type,
83 RegionCodeGenTy>::value>::type * = nullptr)
84 : CodeGen(reinterpret_cast<intptr_t>(&CodeGen)),
85 Callback(CallbackFn<typename std::remove_reference<Callable>::type>),
86 PrePostAction(nullptr) {}
87 void setAction(PrePostActionTy &Action) const { PrePostAction = &Action; }
88 void operator()(CodeGenFunction &CGF) const;
89};
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000090
Alexey Bataev24b5bae2016-04-28 09:23:51 +000091struct OMPTaskDataTy final {
92 SmallVector<const Expr *, 4> PrivateVars;
93 SmallVector<const Expr *, 4> PrivateCopies;
94 SmallVector<const Expr *, 4> FirstprivateVars;
95 SmallVector<const Expr *, 4> FirstprivateCopies;
96 SmallVector<const Expr *, 4> FirstprivateInits;
Alexey Bataevf93095a2016-05-05 08:46:22 +000097 SmallVector<const Expr *, 4> LastprivateVars;
98 SmallVector<const Expr *, 4> LastprivateCopies;
Alexey Bataevbe5a8b42017-07-17 13:30:36 +000099 SmallVector<const Expr *, 4> ReductionVars;
100 SmallVector<const Expr *, 4> ReductionCopies;
101 SmallVector<const Expr *, 4> ReductionOps;
Alexey Bataev24b5bae2016-04-28 09:23:51 +0000102 SmallVector<std::pair<OpenMPDependClauseKind, const Expr *>, 4> Dependences;
103 llvm::PointerIntPair<llvm::Value *, 1, bool> Final;
104 llvm::PointerIntPair<llvm::Value *, 1, bool> Schedule;
Alexey Bataev1e1e2862016-05-10 12:21:02 +0000105 llvm::PointerIntPair<llvm::Value *, 1, bool> Priority;
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000106 llvm::Value *Reductions = nullptr;
Alexey Bataev24b5bae2016-04-28 09:23:51 +0000107 unsigned NumberOfParts = 0;
108 bool Tied = true;
109 bool Nogroup = false;
110};
111
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000112/// Class intended to support codegen of all kind of the reduction clauses.
113class ReductionCodeGen {
114private:
Simon Pilgrim6c0eeff2017-07-13 17:34:44 +0000115 /// Data required for codegen of reduction clauses.
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000116 struct ReductionData {
117 /// Reference to the original shared item.
118 const Expr *Ref = nullptr;
119 /// Helper expression for generation of private copy.
120 const Expr *Private = nullptr;
121 /// Helper expression for generation reduction operation.
122 const Expr *ReductionOp = nullptr;
123 ReductionData(const Expr *Ref, const Expr *Private, const Expr *ReductionOp)
124 : Ref(Ref), Private(Private), ReductionOp(ReductionOp) {}
125 };
126 /// List of reduction-based clauses.
127 SmallVector<ReductionData, 4> ClausesData;
128
129 /// List of addresses of original shared variables/expressions.
130 SmallVector<std::pair<LValue, LValue>, 4> SharedAddresses;
131 /// Sizes of the reduction items in chars.
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000132 SmallVector<std::pair<llvm::Value *, llvm::Value *>, 4> Sizes;
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000133 /// Base declarations for the reduction items.
134 SmallVector<const VarDecl *, 4> BaseDecls;
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000135
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000136 /// Emits lvalue for shared expresion.
137 LValue emitSharedLValue(CodeGenFunction &CGF, const Expr *E);
138 /// Emits upper bound for shared expression (if array section).
139 LValue emitSharedLValueUB(CodeGenFunction &CGF, const Expr *E);
140 /// Performs aggregate initialization.
141 /// \param N Number of reduction item in the common list.
142 /// \param PrivateAddr Address of the corresponding private item.
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000143 /// \param SharedLVal Address of the original shared variable.
144 /// \param DRD Declare reduction construct used for reduction item.
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000145 void emitAggregateInitialization(CodeGenFunction &CGF, unsigned N,
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000146 Address PrivateAddr, LValue SharedLVal,
147 const OMPDeclareReductionDecl *DRD);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000148
149public:
150 ReductionCodeGen(ArrayRef<const Expr *> Shareds,
151 ArrayRef<const Expr *> Privates,
152 ArrayRef<const Expr *> ReductionOps);
153 /// Emits lvalue for a reduction item.
154 /// \param N Number of the reduction item.
155 void emitSharedLValue(CodeGenFunction &CGF, unsigned N);
156 /// Emits the code for the variable-modified type, if required.
157 /// \param N Number of the reduction item.
158 void emitAggregateType(CodeGenFunction &CGF, unsigned N);
159 /// Emits the code for the variable-modified type, if required.
160 /// \param N Number of the reduction item.
161 /// \param Size Size of the type in chars.
162 void emitAggregateType(CodeGenFunction &CGF, unsigned N, llvm::Value *Size);
163 /// Performs initialization of the private copy for the reduction item.
164 /// \param N Number of the reduction item.
165 /// \param PrivateAddr Address of the corresponding private item.
166 /// \param DefaultInit Default initialization sequence that should be
167 /// performed if no reduction specific initialization is found.
Simon Pilgrim6c0eeff2017-07-13 17:34:44 +0000168 /// \param SharedLVal Address of the original shared variable.
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000169 void
170 emitInitialization(CodeGenFunction &CGF, unsigned N, Address PrivateAddr,
171 LValue SharedLVal,
172 llvm::function_ref<bool(CodeGenFunction &)> DefaultInit);
Simon Pilgrim6c0eeff2017-07-13 17:34:44 +0000173 /// Returns true if the private copy requires cleanups.
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000174 bool needCleanups(unsigned N);
Simon Pilgrim6c0eeff2017-07-13 17:34:44 +0000175 /// Emits cleanup code for the reduction item.
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000176 /// \param N Number of the reduction item.
177 /// \param PrivateAddr Address of the corresponding private item.
178 void emitCleanups(CodeGenFunction &CGF, unsigned N, Address PrivateAddr);
Simon Pilgrim6c0eeff2017-07-13 17:34:44 +0000179 /// Adjusts \p PrivatedAddr for using instead of the original variable
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000180 /// address in normal operations.
181 /// \param N Number of the reduction item.
182 /// \param PrivateAddr Address of the corresponding private item.
183 Address adjustPrivateAddress(CodeGenFunction &CGF, unsigned N,
184 Address PrivateAddr);
185 /// Returns LValue for the reduction item.
186 LValue getSharedLValue(unsigned N) const { return SharedAddresses[N].first; }
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000187 /// Returns the size of the reduction item (in chars and total number of
188 /// elements in the item), or nullptr, if the size is a constant.
189 std::pair<llvm::Value *, llvm::Value *> getSizes(unsigned N) const {
190 return Sizes[N];
191 }
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000192 /// Returns the base declaration of the reduction item.
193 const VarDecl *getBaseDecl(unsigned N) const { return BaseDecls[N]; }
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000194 /// Returns true if the initialization of the reduction item uses initializer
195 /// from declare reduction construct.
196 bool usesReductionInitializer(unsigned N) const;
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000197};
198
Alexey Bataev9959db52014-05-06 10:08:46 +0000199class CGOpenMPRuntime {
Arpith Chacko Jacob5c309e42016-03-22 01:48:56 +0000200protected:
Alexey Bataev9959db52014-05-06 10:08:46 +0000201 CodeGenModule &CGM;
Arpith Chacko Jacob5c309e42016-03-22 01:48:56 +0000202
203 /// \brief Creates offloading entry for the provided entry ID \a ID,
Samuel Antaof83efdb2017-01-05 16:02:49 +0000204 /// address \a Addr, size \a Size, and flags \a Flags.
Arpith Chacko Jacob5c309e42016-03-22 01:48:56 +0000205 virtual void createOffloadEntry(llvm::Constant *ID, llvm::Constant *Addr,
Samuel Antaof83efdb2017-01-05 16:02:49 +0000206 uint64_t Size, int32_t Flags = 0);
Arpith Chacko Jacob5c309e42016-03-22 01:48:56 +0000207
208 /// \brief Helper to emit outlined function for 'target' directive.
209 /// \param D Directive to emit.
210 /// \param ParentName Name of the function that encloses the target region.
211 /// \param OutlinedFn Outlined function value to be defined by this call.
212 /// \param OutlinedFnID Outlined function ID value to be defined by this call.
213 /// \param IsOffloadEntry True if the outlined function is an offload entry.
214 /// \param CodeGen Lambda codegen specific to an accelerator device.
Simon Pilgrim6c0eeff2017-07-13 17:34:44 +0000215 /// An outlined function may not be an entry if, e.g. the if clause always
Arpith Chacko Jacob5c309e42016-03-22 01:48:56 +0000216 /// evaluates to false.
217 virtual void emitTargetOutlinedFunctionHelper(const OMPExecutableDirective &D,
218 StringRef ParentName,
219 llvm::Function *&OutlinedFn,
220 llvm::Constant *&OutlinedFnID,
221 bool IsOffloadEntry,
222 const RegionCodeGenTy &CodeGen);
223
Arpith Chacko Jacobbb36fe82017-01-10 15:42:51 +0000224 /// \brief Emits code for OpenMP 'if' clause using specified \a CodeGen
225 /// function. Here is the logic:
226 /// if (Cond) {
227 /// ThenGen();
228 /// } else {
229 /// ElseGen();
230 /// }
231 void emitOMPIfClause(CodeGenFunction &CGF, const Expr *Cond,
232 const RegionCodeGenTy &ThenGen,
233 const RegionCodeGenTy &ElseGen);
234
235 /// \brief Emits object of ident_t type with info for source location.
236 /// \param Flags Flags for OpenMP location.
237 ///
238 llvm::Value *emitUpdateLocation(CodeGenFunction &CGF, SourceLocation Loc,
239 unsigned Flags = 0);
240
241 /// \brief Returns pointer to ident_t type.
242 llvm::Type *getIdentTyPointerTy();
243
244 /// \brief Gets thread id value for the current thread.
245 ///
246 llvm::Value *getThreadID(CodeGenFunction &CGF, SourceLocation Loc);
247
248 /// \brief Get the function name of an outlined region.
249 // The name can be customized depending on the target.
250 //
251 virtual StringRef getOutlinedHelperName() const { return ".omp_outlined."; }
252
Alexey Bataev3c595a62017-08-14 15:01:03 +0000253 /// Emits \p Callee function call with arguments \p Args with location \p Loc.
Alexey Bataev7ef47a62018-02-22 18:33:31 +0000254 void emitCall(CodeGenFunction &CGF, SourceLocation Loc, llvm::Value *Callee,
255 ArrayRef<llvm::Value *> Args = llvm::None) const;
Alexey Bataev3c595a62017-08-14 15:01:03 +0000256
Arpith Chacko Jacob5c309e42016-03-22 01:48:56 +0000257private:
Alexey Bataev9959db52014-05-06 10:08:46 +0000258 /// \brief Default const ident_t object used for initialization of all other
259 /// ident_t objects.
Alexey Bataevc5b1d322016-03-04 09:22:22 +0000260 llvm::Constant *DefaultOpenMPPSource = nullptr;
Alexey Bataev18095712014-10-10 12:19:54 +0000261 /// \brief Map of flags and corresponding default locations.
Alexey Bataev15007ba2014-05-07 06:18:01 +0000262 typedef llvm::DenseMap<unsigned, llvm::Value *> OpenMPDefaultLocMapTy;
263 OpenMPDefaultLocMapTy OpenMPDefaultLocMap;
Alexey Bataev50b3c952016-02-19 10:38:26 +0000264 Address getOrCreateDefaultLocation(unsigned Flags);
John McCall7f416cc2015-09-08 08:05:57 +0000265
Alexey Bataev14fa1c62016-03-29 05:34:15 +0000266 llvm::StructType *IdentTy = nullptr;
Alexey Bataev18095712014-10-10 12:19:54 +0000267 /// \brief Map for SourceLocation and OpenMP runtime library debug locations.
Alexey Bataevf002aca2014-05-30 05:48:40 +0000268 typedef llvm::DenseMap<unsigned, llvm::Value *> OpenMPDebugLocMapTy;
269 OpenMPDebugLocMapTy OpenMPDebugLocMap;
Alexey Bataev9959db52014-05-06 10:08:46 +0000270 /// \brief The type for a microtask which gets passed to __kmpc_fork_call().
271 /// Original representation is:
272 /// typedef void (kmpc_micro)(kmp_int32 global_tid, kmp_int32 bound_tid,...);
Alexey Bataev14fa1c62016-03-29 05:34:15 +0000273 llvm::FunctionType *Kmpc_MicroTy = nullptr;
Alexey Bataev18095712014-10-10 12:19:54 +0000274 /// \brief Stores debug location and ThreadID for the function.
275 struct DebugLocThreadIdTy {
276 llvm::Value *DebugLoc;
277 llvm::Value *ThreadID;
278 };
279 /// \brief Map of local debug location, ThreadId and functions.
280 typedef llvm::DenseMap<llvm::Function *, DebugLocThreadIdTy>
281 OpenMPLocThreadIDMapTy;
282 OpenMPLocThreadIDMapTy OpenMPLocThreadIDMap;
Alexey Bataevc5b1d322016-03-04 09:22:22 +0000283 /// Map of UDRs and corresponding combiner/initializer.
284 typedef llvm::DenseMap<const OMPDeclareReductionDecl *,
285 std::pair<llvm::Function *, llvm::Function *>>
286 UDRMapTy;
287 UDRMapTy UDRMap;
288 /// Map of functions and locally defined UDRs.
289 typedef llvm::DenseMap<llvm::Function *,
290 SmallVector<const OMPDeclareReductionDecl *, 4>>
291 FunctionUDRMapTy;
292 FunctionUDRMapTy FunctionUDRMap;
293 IdentifierInfo *In = nullptr;
294 IdentifierInfo *Out = nullptr;
295 IdentifierInfo *Priv = nullptr;
296 IdentifierInfo *Orig = nullptr;
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +0000297 /// \brief Type kmp_critical_name, originally defined as typedef kmp_int32
298 /// kmp_critical_name[8];
299 llvm::ArrayType *KmpCriticalNameTy;
Alexey Bataev97720002014-11-11 04:05:39 +0000300 /// \brief An ordered map of auto-generated variables to their unique names.
301 /// It stores variables with the following names: 1) ".gomp_critical_user_" +
302 /// <critical_section_name> + ".var" for "omp critical" directives; 2)
303 /// <mangled_name_for_global_var> + ".cache." for cache for threadprivate
304 /// variables.
305 llvm::StringMap<llvm::AssertingVH<llvm::Constant>, llvm::BumpPtrAllocator>
306 InternalVars;
Alexey Bataev62b63b12015-03-10 07:28:44 +0000307 /// \brief Type typedef kmp_int32 (* kmp_routine_entry_t)(kmp_int32, void *);
Alexey Bataevc5b1d322016-03-04 09:22:22 +0000308 llvm::Type *KmpRoutineEntryPtrTy = nullptr;
Alexey Bataev62b63b12015-03-10 07:28:44 +0000309 QualType KmpRoutineEntryPtrQTy;
Alexey Bataev8fc69dc2015-05-18 07:54:53 +0000310 /// \brief Type typedef struct kmp_task {
311 /// void * shareds; /**< pointer to block of pointers to
312 /// shared vars */
313 /// kmp_routine_entry_t routine; /**< pointer to routine to call for
314 /// executing task */
315 /// kmp_int32 part_id; /**< part id for the task */
316 /// kmp_routine_entry_t destructors; /* pointer to function to invoke
317 /// deconstructors of firstprivate C++ objects */
318 /// } kmp_task_t;
319 QualType KmpTaskTQTy;
Alexey Bataeve213f3e2017-10-11 15:29:40 +0000320 /// Saved kmp_task_t for task directive.
321 QualType SavedKmpTaskTQTy;
322 /// Saved kmp_task_t for taskloop-based directive.
323 QualType SavedKmpTaskloopTQTy;
Alexey Bataev1d2353d2015-06-24 11:01:36 +0000324 /// \brief Type typedef struct kmp_depend_info {
325 /// kmp_intptr_t base_addr;
326 /// size_t len;
327 /// struct {
328 /// bool in:1;
329 /// bool out:1;
330 /// } flags;
331 /// } kmp_depend_info_t;
332 QualType KmpDependInfoTy;
Alexey Bataev8b427062016-05-25 12:36:08 +0000333 /// struct kmp_dim { // loop bounds info casted to kmp_int64
334 /// kmp_int64 lo; // lower
335 /// kmp_int64 up; // upper
336 /// kmp_int64 st; // stride
337 /// };
338 QualType KmpDimTy;
Samuel Antaoee8fb302016-01-06 13:42:12 +0000339 /// \brief Type struct __tgt_offload_entry{
340 /// void *addr; // Pointer to the offload entry info.
341 /// // (function or global)
342 /// char *name; // Name of the function or global.
343 /// size_t size; // Size of the entry info (0 if it a function).
344 /// };
345 QualType TgtOffloadEntryQTy;
346 /// struct __tgt_device_image{
347 /// void *ImageStart; // Pointer to the target code start.
348 /// void *ImageEnd; // Pointer to the target code end.
349 /// // We also add the host entries to the device image, as it may be useful
350 /// // for the target runtime to have access to that information.
351 /// __tgt_offload_entry *EntriesBegin; // Begin of the table with all
352 /// // the entries.
353 /// __tgt_offload_entry *EntriesEnd; // End of the table with all the
354 /// // entries (non inclusive).
355 /// };
356 QualType TgtDeviceImageQTy;
357 /// struct __tgt_bin_desc{
358 /// int32_t NumDevices; // Number of devices supported.
359 /// __tgt_device_image *DeviceImages; // Arrays of device images
360 /// // (one per device).
361 /// __tgt_offload_entry *EntriesBegin; // Begin of the table with all the
362 /// // entries.
363 /// __tgt_offload_entry *EntriesEnd; // End of the table with all the
364 /// // entries (non inclusive).
365 /// };
366 QualType TgtBinaryDescriptorQTy;
367 /// \brief Entity that registers the offloading constants that were emitted so
368 /// far.
369 class OffloadEntriesInfoManagerTy {
370 CodeGenModule &CGM;
Alexey Bataev1d2353d2015-06-24 11:01:36 +0000371
Samuel Antaoee8fb302016-01-06 13:42:12 +0000372 /// \brief Number of entries registered so far.
373 unsigned OffloadingEntriesNum;
374
375 public:
Samuel Antaof83efdb2017-01-05 16:02:49 +0000376 /// Base class of the entries info.
Samuel Antaoee8fb302016-01-06 13:42:12 +0000377 class OffloadEntryInfo {
378 public:
Samuel Antaof83efdb2017-01-05 16:02:49 +0000379 /// Kind of a given entry. Currently, only target regions are
Samuel Antaoee8fb302016-01-06 13:42:12 +0000380 /// supported.
Reid Klecknerdc78f952016-01-11 20:55:16 +0000381 enum OffloadingEntryInfoKinds : unsigned {
Samuel Antaoee8fb302016-01-06 13:42:12 +0000382 // Entry is a target region.
383 OFFLOAD_ENTRY_INFO_TARGET_REGION = 0,
384 // Invalid entry info.
385 OFFLOAD_ENTRY_INFO_INVALID = ~0u
386 };
387
Samuel Antaof83efdb2017-01-05 16:02:49 +0000388 OffloadEntryInfo()
389 : Flags(0), Order(~0u), Kind(OFFLOAD_ENTRY_INFO_INVALID) {}
390 explicit OffloadEntryInfo(OffloadingEntryInfoKinds Kind, unsigned Order,
391 int32_t Flags)
392 : Flags(Flags), Order(Order), Kind(Kind) {}
Samuel Antaoee8fb302016-01-06 13:42:12 +0000393
394 bool isValid() const { return Order != ~0u; }
395 unsigned getOrder() const { return Order; }
396 OffloadingEntryInfoKinds getKind() const { return Kind; }
Samuel Antaof83efdb2017-01-05 16:02:49 +0000397 int32_t getFlags() const { return Flags; }
398 void setFlags(int32_t NewFlags) { Flags = NewFlags; }
Samuel Antaoee8fb302016-01-06 13:42:12 +0000399 static bool classof(const OffloadEntryInfo *Info) { return true; }
400
Samuel Antaof83efdb2017-01-05 16:02:49 +0000401 private:
402 /// Flags associated with the device global.
403 int32_t Flags;
404
405 /// Order this entry was emitted.
Samuel Antaoee8fb302016-01-06 13:42:12 +0000406 unsigned Order;
407
408 OffloadingEntryInfoKinds Kind;
409 };
410
411 /// \brief Return true if a there are no entries defined.
412 bool empty() const;
413 /// \brief Return number of entries defined so far.
414 unsigned size() const { return OffloadingEntriesNum; }
415 OffloadEntriesInfoManagerTy(CodeGenModule &CGM)
416 : CGM(CGM), OffloadingEntriesNum(0) {}
417
418 ///
419 /// Target region entries related.
420 ///
421 /// \brief Target region entries info.
422 class OffloadEntryInfoTargetRegion : public OffloadEntryInfo {
423 // \brief Address of the entity that has to be mapped for offloading.
424 llvm::Constant *Addr;
425 // \brief Address that can be used as the ID of the entry.
426 llvm::Constant *ID;
427
428 public:
429 OffloadEntryInfoTargetRegion()
Samuel Antaof83efdb2017-01-05 16:02:49 +0000430 : OffloadEntryInfo(OFFLOAD_ENTRY_INFO_TARGET_REGION, ~0u,
431 /*Flags=*/0),
Samuel Antaoee8fb302016-01-06 13:42:12 +0000432 Addr(nullptr), ID(nullptr) {}
433 explicit OffloadEntryInfoTargetRegion(unsigned Order,
434 llvm::Constant *Addr,
Samuel Antaof83efdb2017-01-05 16:02:49 +0000435 llvm::Constant *ID, int32_t Flags)
436 : OffloadEntryInfo(OFFLOAD_ENTRY_INFO_TARGET_REGION, Order, Flags),
Samuel Antaoee8fb302016-01-06 13:42:12 +0000437 Addr(Addr), ID(ID) {}
438
439 llvm::Constant *getAddress() const { return Addr; }
440 llvm::Constant *getID() const { return ID; }
441 void setAddress(llvm::Constant *V) {
442 assert(!Addr && "Address as been set before!");
443 Addr = V;
444 }
445 void setID(llvm::Constant *V) {
446 assert(!ID && "ID as been set before!");
447 ID = V;
448 }
449 static bool classof(const OffloadEntryInfo *Info) {
450 return Info->getKind() == OFFLOAD_ENTRY_INFO_TARGET_REGION;
451 }
452 };
453 /// \brief Initialize target region entry.
454 void initializeTargetRegionEntryInfo(unsigned DeviceID, unsigned FileID,
455 StringRef ParentName, unsigned LineNum,
Samuel Antao2de62b02016-02-13 23:35:10 +0000456 unsigned Order);
Samuel Antaoee8fb302016-01-06 13:42:12 +0000457 /// \brief Register target region entry.
458 void registerTargetRegionEntryInfo(unsigned DeviceID, unsigned FileID,
459 StringRef ParentName, unsigned LineNum,
Samuel Antaof83efdb2017-01-05 16:02:49 +0000460 llvm::Constant *Addr, llvm::Constant *ID,
461 int32_t Flags);
Samuel Antaoee8fb302016-01-06 13:42:12 +0000462 /// \brief Return true if a target region entry with the provided
463 /// information exists.
464 bool hasTargetRegionEntryInfo(unsigned DeviceID, unsigned FileID,
Samuel Antao2de62b02016-02-13 23:35:10 +0000465 StringRef ParentName, unsigned LineNum) const;
Samuel Antaoee8fb302016-01-06 13:42:12 +0000466 /// brief Applies action \a Action on all registered entries.
467 typedef llvm::function_ref<void(unsigned, unsigned, StringRef, unsigned,
Samuel Antao2de62b02016-02-13 23:35:10 +0000468 OffloadEntryInfoTargetRegion &)>
Samuel Antaoee8fb302016-01-06 13:42:12 +0000469 OffloadTargetRegionEntryInfoActTy;
470 void actOnTargetRegionEntriesInfo(
471 const OffloadTargetRegionEntryInfoActTy &Action);
472
473 private:
474 // Storage for target region entries kind. The storage is to be indexed by
Samuel Antao2de62b02016-02-13 23:35:10 +0000475 // file ID, device ID, parent function name and line number.
Samuel Antaoee8fb302016-01-06 13:42:12 +0000476 typedef llvm::DenseMap<unsigned, OffloadEntryInfoTargetRegion>
Samuel Antaoee8fb302016-01-06 13:42:12 +0000477 OffloadEntriesTargetRegionPerLine;
478 typedef llvm::StringMap<OffloadEntriesTargetRegionPerLine>
479 OffloadEntriesTargetRegionPerParentName;
480 typedef llvm::DenseMap<unsigned, OffloadEntriesTargetRegionPerParentName>
481 OffloadEntriesTargetRegionPerFile;
482 typedef llvm::DenseMap<unsigned, OffloadEntriesTargetRegionPerFile>
483 OffloadEntriesTargetRegionPerDevice;
484 typedef OffloadEntriesTargetRegionPerDevice OffloadEntriesTargetRegionTy;
485 OffloadEntriesTargetRegionTy OffloadEntriesTargetRegion;
486 };
487 OffloadEntriesInfoManagerTy OffloadEntriesInfoManager;
488
489 /// \brief Creates and registers offloading binary descriptor for the current
490 /// compilation unit. The function that does the registration is returned.
491 llvm::Function *createOffloadingBinaryDescriptorRegistration();
492
Samuel Antaoee8fb302016-01-06 13:42:12 +0000493 /// \brief Creates all the offload entries in the current compilation unit
494 /// along with the associated metadata.
495 void createOffloadEntriesAndInfoMetadata();
496
497 /// \brief Loads all the offload entries information from the host IR
498 /// metadata.
499 void loadOffloadInfoMetadata();
500
501 /// \brief Returns __tgt_offload_entry type.
502 QualType getTgtOffloadEntryQTy();
503
504 /// \brief Returns __tgt_device_image type.
505 QualType getTgtDeviceImageQTy();
506
507 /// \brief Returns __tgt_bin_desc type.
508 QualType getTgtBinaryDescriptorQTy();
509
510 /// \brief Start scanning from statement \a S and and emit all target regions
511 /// found along the way.
512 /// \param S Starting statement.
513 /// \param ParentName Name of the function declaration that is being scanned.
514 void scanForTargetRegionsFunctions(const Stmt *S, StringRef ParentName);
Alexey Bataev62b63b12015-03-10 07:28:44 +0000515
516 /// \brief Build type kmp_routine_entry_t (if not built yet).
517 void emitKmpRoutineEntryT(QualType KmpInt32Ty);
Alexey Bataev9959db52014-05-06 10:08:46 +0000518
Alexey Bataevd74d0602014-10-13 06:02:40 +0000519 /// \brief Returns pointer to kmpc_micro type.
Alexey Bataev9959db52014-05-06 10:08:46 +0000520 llvm::Type *getKmpc_MicroPointerTy();
521
522 /// \brief Returns specified OpenMP runtime function.
523 /// \param Function OpenMP runtime function.
524 /// \return Specified function.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000525 llvm::Constant *createRuntimeFunction(unsigned Function);
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +0000526
Alexander Musman21212e42015-03-13 10:38:23 +0000527 /// \brief Returns __kmpc_for_static_init_* runtime function for the specified
528 /// size \a IVSize and sign \a IVSigned.
529 llvm::Constant *createForStaticInitFunction(unsigned IVSize, bool IVSigned);
530
Alexander Musman92bdaab2015-03-12 13:37:50 +0000531 /// \brief Returns __kmpc_dispatch_init_* runtime function for the specified
532 /// size \a IVSize and sign \a IVSigned.
533 llvm::Constant *createDispatchInitFunction(unsigned IVSize, bool IVSigned);
534
535 /// \brief Returns __kmpc_dispatch_next_* runtime function for the specified
536 /// size \a IVSize and sign \a IVSigned.
537 llvm::Constant *createDispatchNextFunction(unsigned IVSize, bool IVSigned);
538
Alexey Bataev98eb6e32015-04-22 11:15:40 +0000539 /// \brief Returns __kmpc_dispatch_fini_* runtime function for the specified
540 /// size \a IVSize and sign \a IVSigned.
541 llvm::Constant *createDispatchFiniFunction(unsigned IVSize, bool IVSigned);
542
Alexey Bataev97720002014-11-11 04:05:39 +0000543 /// \brief If the specified mangled name is not in the module, create and
544 /// return threadprivate cache object. This object is a pointer's worth of
545 /// storage that's reserved for use by the OpenMP runtime.
NAKAMURA Takumicdcbfba2014-11-11 07:58:06 +0000546 /// \param VD Threadprivate variable.
Alexey Bataev97720002014-11-11 04:05:39 +0000547 /// \return Cache variable for the specified threadprivate.
548 llvm::Constant *getOrCreateThreadPrivateCache(const VarDecl *VD);
549
Alexey Bataevd74d0602014-10-13 06:02:40 +0000550 /// \brief Emits address of the word in a memory where current thread id is
551 /// stored.
John McCall7f416cc2015-09-08 08:05:57 +0000552 virtual Address emitThreadIDAddress(CodeGenFunction &CGF, SourceLocation Loc);
Alexey Bataevd74d0602014-10-13 06:02:40 +0000553
Alexey Bataev97720002014-11-11 04:05:39 +0000554 /// \brief Gets (if variable with the given name already exist) or creates
555 /// internal global variable with the specified Name. The created variable has
556 /// linkage CommonLinkage by default and is initialized by null value.
557 /// \param Ty Type of the global variable. If it is exist already the type
558 /// must be the same.
559 /// \param Name Name of the variable.
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000560 llvm::Constant *getOrCreateInternalVariable(llvm::Type *Ty,
Alexey Bataev97720002014-11-11 04:05:39 +0000561 const llvm::Twine &Name);
562
563 /// \brief Set of threadprivate variables with the generated initializer.
Benjamin Kramer8fdba912016-02-02 14:24:21 +0000564 llvm::SmallPtrSet<const VarDecl *, 4> ThreadPrivateWithDefinition;
Alexey Bataev97720002014-11-11 04:05:39 +0000565
566 /// \brief Emits initialization code for the threadprivate variables.
567 /// \param VDAddr Address of the global variable \a VD.
568 /// \param Ctor Pointer to a global init function for \a VD.
569 /// \param CopyCtor Pointer to a global copy function for \a VD.
570 /// \param Dtor Pointer to a global destructor function for \a VD.
571 /// \param Loc Location of threadprivate declaration.
John McCall7f416cc2015-09-08 08:05:57 +0000572 void emitThreadPrivateVarInit(CodeGenFunction &CGF, Address VDAddr,
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000573 llvm::Value *Ctor, llvm::Value *CopyCtor,
574 llvm::Value *Dtor, SourceLocation Loc);
Alexey Bataev97720002014-11-11 04:05:39 +0000575
Alexey Bataev75ddfab2014-12-01 11:32:38 +0000576 /// \brief Returns corresponding lock object for the specified critical region
577 /// name. If the lock object does not exist it is created, otherwise the
578 /// reference to the existing copy is returned.
579 /// \param CriticalName Name of the critical region.
580 ///
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000581 llvm::Value *getCriticalRegionLock(StringRef CriticalName);
Alexey Bataev75ddfab2014-12-01 11:32:38 +0000582
Alexey Bataev24b5bae2016-04-28 09:23:51 +0000583 struct TaskResultTy {
584 llvm::Value *NewTask = nullptr;
585 llvm::Value *TaskEntry = nullptr;
586 llvm::Value *NewTaskNewTaskTTy = nullptr;
Alexey Bataev7292c292016-04-25 12:22:29 +0000587 LValue TDBase;
Alexey Bataev24b5bae2016-04-28 09:23:51 +0000588 RecordDecl *KmpTaskTQTyRD = nullptr;
Alexey Bataevf93095a2016-05-05 08:46:22 +0000589 llvm::Value *TaskDupFn = nullptr;
Alexey Bataev7292c292016-04-25 12:22:29 +0000590 };
591 /// Emit task region for the task directive. The task region is emitted in
592 /// several steps:
593 /// 1. Emit a call to kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32
594 /// gtid, kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds,
595 /// kmp_routine_entry_t *task_entry). Here task_entry is a pointer to the
596 /// function:
597 /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) {
598 /// TaskFunction(gtid, tt->part_id, tt->shareds);
599 /// return 0;
600 /// }
601 /// 2. Copy a list of shared variables to field shareds of the resulting
602 /// structure kmp_task_t returned by the previous call (if any).
603 /// 3. Copy a pointer to destructions function to field destructions of the
604 /// resulting structure kmp_task_t.
605 /// \param D Current task directive.
Alexey Bataev7292c292016-04-25 12:22:29 +0000606 /// \param TaskFunction An LLVM function with type void (*)(i32 /*gtid*/, i32
607 /// /*part_id*/, captured_struct */*__context*/);
608 /// \param SharedsTy A type which contains references the shared variables.
609 /// \param Shareds Context with the list of shared variables from the \p
610 /// TaskFunction.
Alexey Bataev24b5bae2016-04-28 09:23:51 +0000611 /// \param Data Additional data for task generation like tiednsee, final
612 /// state, list of privates etc.
613 TaskResultTy emitTaskInit(CodeGenFunction &CGF, SourceLocation Loc,
614 const OMPExecutableDirective &D,
615 llvm::Value *TaskFunction, QualType SharedsTy,
616 Address Shareds, const OMPTaskDataTy &Data);
Alexey Bataev7292c292016-04-25 12:22:29 +0000617
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000618public:
619 explicit CGOpenMPRuntime(CodeGenModule &CGM);
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +0000620 virtual ~CGOpenMPRuntime() {}
Alexey Bataev91797552015-03-18 04:13:55 +0000621 virtual void clear();
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000622
Alexey Bataevc5b1d322016-03-04 09:22:22 +0000623 /// Emit code for the specified user defined reduction construct.
624 virtual void emitUserDefinedReduction(CodeGenFunction *CGF,
625 const OMPDeclareReductionDecl *D);
Alexey Bataeva839ddd2016-03-17 10:19:46 +0000626 /// Get combiner/initializer for the specified user-defined reduction, if any.
627 virtual std::pair<llvm::Function *, llvm::Function *>
628 getUserDefinedReduction(const OMPDeclareReductionDecl *D);
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +0000629
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000630 /// \brief Emits outlined function for the specified OpenMP parallel directive
631 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
632 /// kmp_int32 BoundID, struct context_vars*).
Alexey Bataev18095712014-10-10 12:19:54 +0000633 /// \param D OpenMP directive.
634 /// \param ThreadIDVar Variable for thread id in the current OpenMP region.
Alexey Bataev81c7ea02015-07-03 09:56:58 +0000635 /// \param InnermostKind Kind of innermost directive (for simple directives it
636 /// is a directive itself, for combined - its innermost directive).
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000637 /// \param CodeGen Code generation sequence for the \a D directive.
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +0000638 virtual llvm::Value *emitParallelOutlinedFunction(
639 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
640 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen);
641
642 /// \brief Emits outlined function for the specified OpenMP teams directive
643 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
644 /// kmp_int32 BoundID, struct context_vars*).
645 /// \param D OpenMP directive.
646 /// \param ThreadIDVar Variable for thread id in the current OpenMP region.
647 /// \param InnermostKind Kind of innermost directive (for simple directives it
648 /// is a directive itself, for combined - its innermost directive).
649 /// \param CodeGen Code generation sequence for the \a D directive.
650 virtual llvm::Value *emitTeamsOutlinedFunction(
Alexey Bataev81c7ea02015-07-03 09:56:58 +0000651 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
652 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen);
Alexey Bataev18095712014-10-10 12:19:54 +0000653
Alexey Bataev62b63b12015-03-10 07:28:44 +0000654 /// \brief Emits outlined function for the OpenMP task directive \a D. This
Alexey Bataev48591dd2016-04-20 04:01:36 +0000655 /// outlined function has type void(*)(kmp_int32 ThreadID, struct task_t*
656 /// TaskT).
Alexey Bataev62b63b12015-03-10 07:28:44 +0000657 /// \param D OpenMP directive.
658 /// \param ThreadIDVar Variable for thread id in the current OpenMP region.
Alexey Bataev48591dd2016-04-20 04:01:36 +0000659 /// \param PartIDVar Variable for partition id in the current OpenMP untied
660 /// task region.
661 /// \param TaskTVar Variable for task_t argument.
Alexey Bataev81c7ea02015-07-03 09:56:58 +0000662 /// \param InnermostKind Kind of innermost directive (for simple directives it
663 /// is a directive itself, for combined - its innermost directive).
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000664 /// \param CodeGen Code generation sequence for the \a D directive.
Alexey Bataev48591dd2016-04-20 04:01:36 +0000665 /// \param Tied true if task is generated for tied task, false otherwise.
666 /// \param NumberOfParts Number of parts in untied task. Ignored for tied
667 /// tasks.
Alexey Bataev62b63b12015-03-10 07:28:44 +0000668 ///
Alexey Bataev81c7ea02015-07-03 09:56:58 +0000669 virtual llvm::Value *emitTaskOutlinedFunction(
670 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
Alexey Bataev48591dd2016-04-20 04:01:36 +0000671 const VarDecl *PartIDVar, const VarDecl *TaskTVar,
672 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen,
673 bool Tied, unsigned &NumberOfParts);
Alexey Bataev62b63b12015-03-10 07:28:44 +0000674
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000675 /// \brief Cleans up references to the objects in finished function.
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000676 ///
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000677 void functionFinished(CodeGenFunction &CGF);
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000678
Alexey Bataev1d677132015-04-22 13:57:31 +0000679 /// \brief Emits code for parallel or serial call of the \a OutlinedFn with
680 /// variables captured in a record which address is stored in \a
681 /// CapturedStruct.
Alexey Bataev18095712014-10-10 12:19:54 +0000682 /// \param OutlinedFn Outlined function to be run in parallel threads. Type of
Alexey Bataev62b63b12015-03-10 07:28:44 +0000683 /// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*).
NAKAMURA Takumi62f0eb52015-09-11 08:13:32 +0000684 /// \param CapturedVars A pointer to the record with the references to
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000685 /// variables used in \a OutlinedFn function.
Alexey Bataev1d677132015-04-22 13:57:31 +0000686 /// \param IfCond Condition in the associated 'if' clause, if it was
687 /// specified, nullptr otherwise.
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000688 ///
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000689 virtual void emitParallelCall(CodeGenFunction &CGF, SourceLocation Loc,
690 llvm::Value *OutlinedFn,
Alexey Bataev2377fe92015-09-10 08:12:02 +0000691 ArrayRef<llvm::Value *> CapturedVars,
692 const Expr *IfCond);
Alexey Bataevd74d0602014-10-13 06:02:40 +0000693
Alexey Bataev75ddfab2014-12-01 11:32:38 +0000694 /// \brief Emits a critical region.
Alexey Bataev18095712014-10-10 12:19:54 +0000695 /// \param CriticalName Name of the critical region.
Alexey Bataev75ddfab2014-12-01 11:32:38 +0000696 /// \param CriticalOpGen Generator for the statement associated with the given
697 /// critical region.
Alexey Bataevfc57d162015-12-15 10:55:09 +0000698 /// \param Hint Value of the 'hint' clause (optional).
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000699 virtual void emitCriticalRegion(CodeGenFunction &CGF, StringRef CriticalName,
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000700 const RegionCodeGenTy &CriticalOpGen,
Alexey Bataevfc57d162015-12-15 10:55:09 +0000701 SourceLocation Loc,
702 const Expr *Hint = nullptr);
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000703
Alexey Bataev8d690652014-12-04 07:23:53 +0000704 /// \brief Emits a master region.
705 /// \param MasterOpGen Generator for the statement associated with the given
706 /// master region.
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000707 virtual void emitMasterRegion(CodeGenFunction &CGF,
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000708 const RegionCodeGenTy &MasterOpGen,
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000709 SourceLocation Loc);
Alexey Bataev8d690652014-12-04 07:23:53 +0000710
Alexey Bataev9f797f32015-02-05 05:57:51 +0000711 /// \brief Emits code for a taskyield directive.
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000712 virtual void emitTaskyieldCall(CodeGenFunction &CGF, SourceLocation Loc);
Alexey Bataev9f797f32015-02-05 05:57:51 +0000713
Alexey Bataevc30dd2d2015-06-18 12:14:09 +0000714 /// \brief Emit a taskgroup region.
715 /// \param TaskgroupOpGen Generator for the statement associated with the
716 /// given taskgroup region.
717 virtual void emitTaskgroupRegion(CodeGenFunction &CGF,
718 const RegionCodeGenTy &TaskgroupOpGen,
719 SourceLocation Loc);
720
Alexey Bataev6956e2e2015-02-05 06:35:41 +0000721 /// \brief Emits a single region.
722 /// \param SingleOpGen Generator for the statement associated with the given
723 /// single region.
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000724 virtual void emitSingleRegion(CodeGenFunction &CGF,
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000725 const RegionCodeGenTy &SingleOpGen,
Alexey Bataeva63048e2015-03-23 06:18:07 +0000726 SourceLocation Loc,
727 ArrayRef<const Expr *> CopyprivateVars,
Alexey Bataev420d45b2015-04-14 05:11:24 +0000728 ArrayRef<const Expr *> DestExprs,
Alexey Bataeva63048e2015-03-23 06:18:07 +0000729 ArrayRef<const Expr *> SrcExprs,
Alexey Bataeva63048e2015-03-23 06:18:07 +0000730 ArrayRef<const Expr *> AssignmentOps);
Alexey Bataev6956e2e2015-02-05 06:35:41 +0000731
Alexey Bataev98eb6e32015-04-22 11:15:40 +0000732 /// \brief Emit an ordered region.
733 /// \param OrderedOpGen Generator for the statement associated with the given
Alexey Bataevc30dd2d2015-06-18 12:14:09 +0000734 /// ordered region.
Alexey Bataev98eb6e32015-04-22 11:15:40 +0000735 virtual void emitOrderedRegion(CodeGenFunction &CGF,
736 const RegionCodeGenTy &OrderedOpGen,
Alexey Bataev5f600d62015-09-29 03:48:57 +0000737 SourceLocation Loc, bool IsThreads);
Alexey Bataev98eb6e32015-04-22 11:15:40 +0000738
Alexey Bataevf2685682015-03-30 04:30:22 +0000739 /// \brief Emit an implicit/explicit barrier for OpenMP threads.
740 /// \param Kind Directive for which this implicit barrier call must be
741 /// generated. Must be OMPD_barrier for explicit barrier generation.
Alexey Bataev25e5b442015-09-15 12:52:43 +0000742 /// \param EmitChecks true if need to emit checks for cancellation barriers.
743 /// \param ForceSimpleCall true simple barrier call must be emitted, false if
744 /// runtime class decides which one to emit (simple or with cancellation
745 /// checks).
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000746 ///
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000747 virtual void emitBarrierCall(CodeGenFunction &CGF, SourceLocation Loc,
Alexey Bataev81c7ea02015-07-03 09:56:58 +0000748 OpenMPDirectiveKind Kind,
Alexey Bataev25e5b442015-09-15 12:52:43 +0000749 bool EmitChecks = true,
750 bool ForceSimpleCall = false);
Alexey Bataevb2059782014-10-13 08:23:51 +0000751
Alexander Musmanc6388682014-12-15 07:07:06 +0000752 /// \brief Check if the specified \a ScheduleKind is static non-chunked.
753 /// This kind of worksharing directive is emitted without outer loop.
754 /// \param ScheduleKind Schedule kind specified in the 'schedule' clause.
755 /// \param Chunked True if chunk is specified in the clause.
756 ///
757 virtual bool isStaticNonchunked(OpenMPScheduleClauseKind ScheduleKind,
758 bool Chunked) const;
759
Carlo Bertollifc35ad22016-03-07 16:04:49 +0000760 /// \brief Check if the specified \a ScheduleKind is static non-chunked.
761 /// This kind of distribute directive is emitted without outer loop.
762 /// \param ScheduleKind Schedule kind specified in the 'dist_schedule' clause.
763 /// \param Chunked True if chunk is specified in the clause.
764 ///
765 virtual bool isStaticNonchunked(OpenMPDistScheduleClauseKind ScheduleKind,
766 bool Chunked) const;
767
Alexander Musmandf7a8e22015-01-22 08:49:35 +0000768 /// \brief Check if the specified \a ScheduleKind is dynamic.
769 /// This kind of worksharing directive is emitted without outer loop.
770 /// \param ScheduleKind Schedule Kind specified in the 'schedule' clause.
771 ///
772 virtual bool isDynamic(OpenMPScheduleClauseKind ScheduleKind) const;
773
Carlo Bertollib0ff0a62017-04-25 17:52:12 +0000774 /// struct with the values to be passed to the dispatch runtime function
775 struct DispatchRTInput {
776 /// Loop lower bound
777 llvm::Value *LB = nullptr;
778 /// Loop upper bound
779 llvm::Value *UB = nullptr;
780 /// Chunk size specified using 'schedule' clause (nullptr if chunk
781 /// was not specified)
782 llvm::Value *Chunk = nullptr;
783 DispatchRTInput() = default;
784 DispatchRTInput(llvm::Value *LB, llvm::Value *UB, llvm::Value *Chunk)
785 : LB(LB), UB(UB), Chunk(Chunk) {}
786 };
787
788 /// Call the appropriate runtime routine to initialize it before start
789 /// of loop.
790
791 /// This is used for non static scheduled types and when the ordered
792 /// clause is present on the loop construct.
793 /// Depending on the loop schedule, it is necessary to call some runtime
794 /// routine before start of the OpenMP loop to get the loop upper / lower
795 /// bounds \a LB and \a UB and stride \a ST.
796 ///
797 /// \param CGF Reference to current CodeGenFunction.
798 /// \param Loc Clang source location.
799 /// \param ScheduleKind Schedule kind, specified by the 'schedule' clause.
800 /// \param IVSize Size of the iteration variable in bits.
Simon Pilgrim6c0eeff2017-07-13 17:34:44 +0000801 /// \param IVSigned Sign of the iteration variable.
Carlo Bertollib0ff0a62017-04-25 17:52:12 +0000802 /// \param Ordered true if loop is ordered, false otherwise.
803 /// \param DispatchValues struct containing llvm values for lower bound, upper
804 /// bound, and chunk expression.
805 /// For the default (nullptr) value, the chunk 1 will be used.
806 ///
NAKAMURA Takumiff7a9252015-09-08 09:42:41 +0000807 virtual void emitForDispatchInit(CodeGenFunction &CGF, SourceLocation Loc,
Alexey Bataev9ebd7422016-05-10 09:57:36 +0000808 const OpenMPScheduleTy &ScheduleKind,
809 unsigned IVSize, bool IVSigned, bool Ordered,
Carlo Bertollib0ff0a62017-04-25 17:52:12 +0000810 const DispatchRTInput &DispatchValues);
NAKAMURA Takumiff7a9252015-09-08 09:42:41 +0000811
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000812 /// Struct with the values to be passed to the static runtime function
813 struct StaticRTInput {
814 /// Size of the iteration variable in bits.
815 unsigned IVSize = 0;
816 /// Sign of the iteration variable.
817 bool IVSigned = false;
818 /// true if loop is ordered, false otherwise.
819 bool Ordered = false;
820 /// Address of the output variable in which the flag of the last iteration
821 /// is returned.
822 Address IL = Address::invalid();
823 /// Address of the output variable in which the lower iteration number is
824 /// returned.
825 Address LB = Address::invalid();
826 /// Address of the output variable in which the upper iteration number is
827 /// returned.
828 Address UB = Address::invalid();
829 /// Address of the output variable in which the stride value is returned
830 /// necessary to generated the static_chunked scheduled loop.
831 Address ST = Address::invalid();
832 /// Value of the chunk for the static_chunked scheduled loop. For the
833 /// default (nullptr) value, the chunk 1 will be used.
834 llvm::Value *Chunk = nullptr;
835 StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL,
836 Address LB, Address UB, Address ST,
837 llvm::Value *Chunk = nullptr)
838 : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB),
839 UB(UB), ST(ST), Chunk(Chunk) {}
840 };
Alexander Musmanc6388682014-12-15 07:07:06 +0000841 /// \brief Call the appropriate runtime routine to initialize it before start
842 /// of loop.
843 ///
Carlo Bertollib0ff0a62017-04-25 17:52:12 +0000844 /// This is used only in case of static schedule, when the user did not
845 /// specify a ordered clause on the loop construct.
846 /// Depending on the loop schedule, it is necessary to call some runtime
Alexander Musmanc6388682014-12-15 07:07:06 +0000847 /// routine before start of the OpenMP loop to get the loop upper / lower
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000848 /// bounds LB and UB and stride ST.
Alexander Musmanc6388682014-12-15 07:07:06 +0000849 ///
850 /// \param CGF Reference to current CodeGenFunction.
851 /// \param Loc Clang source location.
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000852 /// \param DKind Kind of the directive.
Alexey Bataev9ebd7422016-05-10 09:57:36 +0000853 /// \param ScheduleKind Schedule kind, specified by the 'schedule' clause.
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000854 /// \param Values Input arguments for the construct.
Alexander Musmanc6388682014-12-15 07:07:06 +0000855 ///
John McCall7f416cc2015-09-08 08:05:57 +0000856 virtual void emitForStaticInit(CodeGenFunction &CGF, SourceLocation Loc,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000857 OpenMPDirectiveKind DKind,
Alexey Bataev9ebd7422016-05-10 09:57:36 +0000858 const OpenMPScheduleTy &ScheduleKind,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000859 const StaticRTInput &Values);
Alexander Musmanc6388682014-12-15 07:07:06 +0000860
Carlo Bertollifc35ad22016-03-07 16:04:49 +0000861 ///
862 /// \param CGF Reference to current CodeGenFunction.
863 /// \param Loc Clang source location.
864 /// \param SchedKind Schedule kind, specified by the 'dist_schedule' clause.
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000865 /// \param Values Input arguments for the construct.
Carlo Bertollifc35ad22016-03-07 16:04:49 +0000866 ///
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000867 virtual void emitDistributeStaticInit(CodeGenFunction &CGF,
868 SourceLocation Loc,
Carlo Bertollifc35ad22016-03-07 16:04:49 +0000869 OpenMPDistScheduleClauseKind SchedKind,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000870 const StaticRTInput &Values);
Carlo Bertollifc35ad22016-03-07 16:04:49 +0000871
Alexander Musmanc6388682014-12-15 07:07:06 +0000872 /// \brief Call the appropriate runtime routine to notify that we finished
Alexey Bataev98eb6e32015-04-22 11:15:40 +0000873 /// iteration of the ordered loop with the dynamic scheduling.
874 ///
875 /// \param CGF Reference to current CodeGenFunction.
876 /// \param Loc Clang source location.
877 /// \param IVSize Size of the iteration variable in bits.
Simon Pilgrim6c0eeff2017-07-13 17:34:44 +0000878 /// \param IVSigned Sign of the iteration variable.
Alexey Bataev98eb6e32015-04-22 11:15:40 +0000879 ///
Alexey Bataevd7589ffe2015-05-20 13:12:48 +0000880 virtual void emitForOrderedIterationEnd(CodeGenFunction &CGF,
881 SourceLocation Loc, unsigned IVSize,
882 bool IVSigned);
Alexey Bataev98eb6e32015-04-22 11:15:40 +0000883
884 /// \brief Call the appropriate runtime routine to notify that we finished
Alexander Musmanc6388682014-12-15 07:07:06 +0000885 /// all the work with current loop.
886 ///
887 /// \param CGF Reference to current CodeGenFunction.
888 /// \param Loc Clang source location.
Alexey Bataevf43f7142017-09-06 16:17:35 +0000889 /// \param DKind Kind of the directive for which the static finish is emitted.
Alexander Musmanc6388682014-12-15 07:07:06 +0000890 ///
Alexey Bataevf43f7142017-09-06 16:17:35 +0000891 virtual void emitForStaticFinish(CodeGenFunction &CGF, SourceLocation Loc,
892 OpenMPDirectiveKind DKind);
Alexander Musmanc6388682014-12-15 07:07:06 +0000893
Alexander Musman92bdaab2015-03-12 13:37:50 +0000894 /// Call __kmpc_dispatch_next(
895 /// ident_t *loc, kmp_int32 tid, kmp_int32 *p_lastiter,
896 /// kmp_int[32|64] *p_lower, kmp_int[32|64] *p_upper,
897 /// kmp_int[32|64] *p_stride);
898 /// \param IVSize Size of the iteration variable in bits.
Simon Pilgrim6c0eeff2017-07-13 17:34:44 +0000899 /// \param IVSigned Sign of the iteration variable.
Alexander Musman92bdaab2015-03-12 13:37:50 +0000900 /// \param IL Address of the output variable in which the flag of the
901 /// last iteration is returned.
902 /// \param LB Address of the output variable in which the lower iteration
903 /// number is returned.
904 /// \param UB Address of the output variable in which the upper iteration
905 /// number is returned.
906 /// \param ST Address of the output variable in which the stride value is
907 /// returned.
908 virtual llvm::Value *emitForNext(CodeGenFunction &CGF, SourceLocation Loc,
909 unsigned IVSize, bool IVSigned,
John McCall7f416cc2015-09-08 08:05:57 +0000910 Address IL, Address LB,
911 Address UB, Address ST);
Alexander Musman92bdaab2015-03-12 13:37:50 +0000912
Alexey Bataevb2059782014-10-13 08:23:51 +0000913 /// \brief Emits call to void __kmpc_push_num_threads(ident_t *loc, kmp_int32
914 /// global_tid, kmp_int32 num_threads) to generate code for 'num_threads'
915 /// clause.
916 /// \param NumThreads An integer value of threads.
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000917 virtual void emitNumThreadsClause(CodeGenFunction &CGF,
918 llvm::Value *NumThreads,
919 SourceLocation Loc);
Alexey Bataev97720002014-11-11 04:05:39 +0000920
Alexey Bataev7f210c62015-06-18 13:40:03 +0000921 /// \brief Emit call to void __kmpc_push_proc_bind(ident_t *loc, kmp_int32
922 /// global_tid, int proc_bind) to generate code for 'proc_bind' clause.
923 virtual void emitProcBindClause(CodeGenFunction &CGF,
924 OpenMPProcBindClauseKind ProcBind,
925 SourceLocation Loc);
926
Alexey Bataev97720002014-11-11 04:05:39 +0000927 /// \brief Returns address of the threadprivate variable for the current
928 /// thread.
NAKAMURA Takumicdcbfba2014-11-11 07:58:06 +0000929 /// \param VD Threadprivate variable.
Alexey Bataev97720002014-11-11 04:05:39 +0000930 /// \param VDAddr Address of the global variable \a VD.
931 /// \param Loc Location of the reference to threadprivate var.
932 /// \return Address of the threadprivate variable for the current thread.
John McCall7f416cc2015-09-08 08:05:57 +0000933 virtual Address getAddrOfThreadPrivate(CodeGenFunction &CGF,
934 const VarDecl *VD,
935 Address VDAddr,
936 SourceLocation Loc);
Alexey Bataev97720002014-11-11 04:05:39 +0000937
938 /// \brief Emit a code for initialization of threadprivate variable. It emits
939 /// a call to runtime library which adds initial value to the newly created
940 /// threadprivate variable (if it is not constant) and registers destructor
941 /// for the variable (if any).
942 /// \param VD Threadprivate variable.
943 /// \param VDAddr Address of the global variable \a VD.
944 /// \param Loc Location of threadprivate declaration.
945 /// \param PerformInit true if initialization expression is not constant.
946 virtual llvm::Function *
John McCall7f416cc2015-09-08 08:05:57 +0000947 emitThreadPrivateVarDefinition(const VarDecl *VD, Address VDAddr,
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000948 SourceLocation Loc, bool PerformInit,
949 CodeGenFunction *CGF = nullptr);
Alexey Bataevcc37cc12014-11-20 04:34:54 +0000950
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000951 /// Creates artificial threadprivate variable with name \p Name and type \p
952 /// VarType.
953 /// \param VarType Type of the artificial threadprivate variable.
954 /// \param Name Name of the artificial threadprivate variable.
955 virtual Address getAddrOfArtificialThreadPrivate(CodeGenFunction &CGF,
956 QualType VarType,
957 StringRef Name);
958
Alexey Bataevcc37cc12014-11-20 04:34:54 +0000959 /// \brief Emit flush of the variables specified in 'omp flush' directive.
960 /// \param Vars List of variables to flush.
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000961 virtual void emitFlush(CodeGenFunction &CGF, ArrayRef<const Expr *> Vars,
962 SourceLocation Loc);
Alexey Bataev62b63b12015-03-10 07:28:44 +0000963
964 /// \brief Emit task region for the task directive. The task region is
Nico Weber20b0ce32015-04-28 18:19:18 +0000965 /// emitted in several steps:
Alexey Bataev62b63b12015-03-10 07:28:44 +0000966 /// 1. Emit a call to kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32
967 /// gtid, kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds,
968 /// kmp_routine_entry_t *task_entry). Here task_entry is a pointer to the
969 /// function:
970 /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) {
971 /// TaskFunction(gtid, tt->part_id, tt->shareds);
972 /// return 0;
973 /// }
974 /// 2. Copy a list of shared variables to field shareds of the resulting
975 /// structure kmp_task_t returned by the previous call (if any).
976 /// 3. Copy a pointer to destructions function to field destructions of the
977 /// resulting structure kmp_task_t.
978 /// 4. Emit a call to kmp_int32 __kmpc_omp_task(ident_t *, kmp_int32 gtid,
979 /// kmp_task_t *new_task), where new_task is a resulting structure from
980 /// previous items.
Alexey Bataev36c1eb92015-04-30 06:51:57 +0000981 /// \param D Current task directive.
Alexey Bataev62b63b12015-03-10 07:28:44 +0000982 /// \param TaskFunction An LLVM function with type void (*)(i32 /*gtid*/, i32
983 /// /*part_id*/, captured_struct */*__context*/);
984 /// \param SharedsTy A type which contains references the shared variables.
Alexey Bataev1d2353d2015-06-24 11:01:36 +0000985 /// \param Shareds Context with the list of shared variables from the \p
Alexey Bataev62b63b12015-03-10 07:28:44 +0000986 /// TaskFunction.
Alexey Bataev1d677132015-04-22 13:57:31 +0000987 /// \param IfCond Not a nullptr if 'if' clause was specified, nullptr
988 /// otherwise.
Alexey Bataev24b5bae2016-04-28 09:23:51 +0000989 /// \param Data Additional data for task generation like tiednsee, final
990 /// state, list of privates etc.
991 virtual void emitTaskCall(CodeGenFunction &CGF, SourceLocation Loc,
992 const OMPExecutableDirective &D,
993 llvm::Value *TaskFunction, QualType SharedsTy,
994 Address Shareds, const Expr *IfCond,
995 const OMPTaskDataTy &Data);
Alexey Bataev794ba0d2015-04-10 10:43:45 +0000996
Alexey Bataev7292c292016-04-25 12:22:29 +0000997 /// Emit task region for the taskloop directive. The taskloop region is
998 /// emitted in several steps:
999 /// 1. Emit a call to kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32
1000 /// gtid, kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds,
1001 /// kmp_routine_entry_t *task_entry). Here task_entry is a pointer to the
1002 /// function:
1003 /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) {
1004 /// TaskFunction(gtid, tt->part_id, tt->shareds);
1005 /// return 0;
1006 /// }
1007 /// 2. Copy a list of shared variables to field shareds of the resulting
1008 /// structure kmp_task_t returned by the previous call (if any).
1009 /// 3. Copy a pointer to destructions function to field destructions of the
1010 /// resulting structure kmp_task_t.
1011 /// 4. Emit a call to void __kmpc_taskloop(ident_t *loc, int gtid, kmp_task_t
1012 /// *task, int if_val, kmp_uint64 *lb, kmp_uint64 *ub, kmp_int64 st, int
1013 /// nogroup, int sched, kmp_uint64 grainsize, void *task_dup ), where new_task
1014 /// is a resulting structure from
1015 /// previous items.
1016 /// \param D Current task directive.
Alexey Bataev7292c292016-04-25 12:22:29 +00001017 /// \param TaskFunction An LLVM function with type void (*)(i32 /*gtid*/, i32
1018 /// /*part_id*/, captured_struct */*__context*/);
1019 /// \param SharedsTy A type which contains references the shared variables.
1020 /// \param Shareds Context with the list of shared variables from the \p
1021 /// TaskFunction.
1022 /// \param IfCond Not a nullptr if 'if' clause was specified, nullptr
1023 /// otherwise.
Alexey Bataev24b5bae2016-04-28 09:23:51 +00001024 /// \param Data Additional data for task generation like tiednsee, final
1025 /// state, list of privates etc.
Alexey Bataev7292c292016-04-25 12:22:29 +00001026 virtual void emitTaskLoopCall(
1027 CodeGenFunction &CGF, SourceLocation Loc, const OMPLoopDirective &D,
Alexey Bataev24b5bae2016-04-28 09:23:51 +00001028 llvm::Value *TaskFunction, QualType SharedsTy, Address Shareds,
1029 const Expr *IfCond, const OMPTaskDataTy &Data);
Alexey Bataev7292c292016-04-25 12:22:29 +00001030
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001031 /// \brief Emit code for the directive that does not require outlining.
1032 ///
Alexey Bataev81c7ea02015-07-03 09:56:58 +00001033 /// \param InnermostKind Kind of innermost directive (for simple directives it
1034 /// is a directive itself, for combined - its innermost directive).
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001035 /// \param CodeGen Code generation sequence for the \a D directive.
Alexey Bataev25e5b442015-09-15 12:52:43 +00001036 /// \param HasCancel true if region has inner cancel directive, false
1037 /// otherwise.
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001038 virtual void emitInlinedDirective(CodeGenFunction &CGF,
Alexey Bataev81c7ea02015-07-03 09:56:58 +00001039 OpenMPDirectiveKind InnermostKind,
Alexey Bataev25e5b442015-09-15 12:52:43 +00001040 const RegionCodeGenTy &CodeGen,
1041 bool HasCancel = false);
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00001042
1043 /// Emits reduction function.
1044 /// \param ArgsType Array type containing pointers to reduction variables.
1045 /// \param Privates List of private copies for original reduction arguments.
1046 /// \param LHSExprs List of LHS in \a ReductionOps reduction operations.
1047 /// \param RHSExprs List of RHS in \a ReductionOps reduction operations.
1048 /// \param ReductionOps List of reduction operations in form 'LHS binop RHS'
1049 /// or 'operator binop(LHS, RHS)'.
Alexey Bataev7cae94e2018-01-04 19:45:16 +00001050 llvm::Value *emitReductionFunction(CodeGenModule &CGM, SourceLocation Loc,
1051 llvm::Type *ArgsType,
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00001052 ArrayRef<const Expr *> Privates,
1053 ArrayRef<const Expr *> LHSExprs,
1054 ArrayRef<const Expr *> RHSExprs,
1055 ArrayRef<const Expr *> ReductionOps);
1056
1057 /// Emits single reduction combiner
1058 void emitSingleReductionCombiner(CodeGenFunction &CGF,
1059 const Expr *ReductionOp,
1060 const Expr *PrivateRef,
1061 const DeclRefExpr *LHS,
1062 const DeclRefExpr *RHS);
1063
1064 struct ReductionOptionsTy {
1065 bool WithNowait;
1066 bool SimpleReduction;
1067 OpenMPDirectiveKind ReductionKind;
1068 };
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001069 /// \brief Emit a code for reduction clause. Next code should be emitted for
1070 /// reduction:
1071 /// \code
1072 ///
1073 /// static kmp_critical_name lock = { 0 };
1074 ///
1075 /// void reduce_func(void *lhs[<n>], void *rhs[<n>]) {
1076 /// ...
1077 /// *(Type<i>*)lhs[i] = RedOp<i>(*(Type<i>*)lhs[i], *(Type<i>*)rhs[i]);
1078 /// ...
1079 /// }
1080 ///
1081 /// ...
1082 /// void *RedList[<n>] = {&<RHSExprs>[0], ..., &<RHSExprs>[<n>-1]};
1083 /// switch (__kmpc_reduce{_nowait}(<loc>, <gtid>, <n>, sizeof(RedList),
1084 /// RedList, reduce_func, &<lock>)) {
1085 /// case 1:
1086 /// ...
1087 /// <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]);
1088 /// ...
1089 /// __kmpc_end_reduce{_nowait}(<loc>, <gtid>, &<lock>);
1090 /// break;
1091 /// case 2:
1092 /// ...
1093 /// Atomic(<LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]));
1094 /// ...
1095 /// break;
1096 /// default:;
1097 /// }
1098 /// \endcode
1099 ///
Alexey Bataevf24e7b12015-10-08 09:10:53 +00001100 /// \param Privates List of private copies for original reduction arguments.
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001101 /// \param LHSExprs List of LHS in \a ReductionOps reduction operations.
1102 /// \param RHSExprs List of RHS in \a ReductionOps reduction operations.
1103 /// \param ReductionOps List of reduction operations in form 'LHS binop RHS'
1104 /// or 'operator binop(LHS, RHS)'.
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00001105 /// \param Options List of options for reduction codegen:
1106 /// WithNowait true if parent directive has also nowait clause, false
1107 /// otherwise.
1108 /// SimpleReduction Emit reduction operation only. Used for omp simd
1109 /// directive on the host.
1110 /// ReductionKind The kind of reduction to perform.
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001111 virtual void emitReduction(CodeGenFunction &CGF, SourceLocation Loc,
Alexey Bataevf24e7b12015-10-08 09:10:53 +00001112 ArrayRef<const Expr *> Privates,
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001113 ArrayRef<const Expr *> LHSExprs,
1114 ArrayRef<const Expr *> RHSExprs,
1115 ArrayRef<const Expr *> ReductionOps,
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00001116 ReductionOptionsTy Options);
Alexey Bataev8b8e2022015-04-27 05:22:09 +00001117
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00001118 /// Emit a code for initialization of task reduction clause. Next code
1119 /// should be emitted for reduction:
1120 /// \code
1121 ///
1122 /// _task_red_item_t red_data[n];
1123 /// ...
1124 /// red_data[i].shar = &origs[i];
1125 /// red_data[i].size = sizeof(origs[i]);
1126 /// red_data[i].f_init = (void*)RedInit<i>;
1127 /// red_data[i].f_fini = (void*)RedDest<i>;
1128 /// red_data[i].f_comb = (void*)RedOp<i>;
1129 /// red_data[i].flags = <Flag_i>;
1130 /// ...
1131 /// void* tg1 = __kmpc_task_reduction_init(gtid, n, red_data);
1132 /// \endcode
1133 ///
1134 /// \param LHSExprs List of LHS in \a Data.ReductionOps reduction operations.
1135 /// \param RHSExprs List of RHS in \a Data.ReductionOps reduction operations.
1136 /// \param Data Additional data for task generation like tiedness, final
1137 /// state, list of privates, reductions etc.
1138 virtual llvm::Value *emitTaskReductionInit(CodeGenFunction &CGF,
1139 SourceLocation Loc,
1140 ArrayRef<const Expr *> LHSExprs,
1141 ArrayRef<const Expr *> RHSExprs,
1142 const OMPTaskDataTy &Data);
1143
1144 /// Required to resolve existing problems in the runtime. Emits threadprivate
1145 /// variables to store the size of the VLAs/array sections for
1146 /// initializer/combiner/finalizer functions + emits threadprivate variable to
1147 /// store the pointer to the original reduction item for the custom
1148 /// initializer defined by declare reduction construct.
1149 /// \param RCG Allows to reuse an existing data for the reductions.
1150 /// \param N Reduction item for which fixups must be emitted.
1151 virtual void emitTaskReductionFixups(CodeGenFunction &CGF, SourceLocation Loc,
1152 ReductionCodeGen &RCG, unsigned N);
1153
1154 /// Get the address of `void *` type of the privatue copy of the reduction
1155 /// item specified by the \p SharedLVal.
1156 /// \param ReductionsPtr Pointer to the reduction data returned by the
1157 /// emitTaskReductionInit function.
1158 /// \param SharedLVal Address of the original reduction item.
1159 virtual Address getTaskReductionItem(CodeGenFunction &CGF, SourceLocation Loc,
1160 llvm::Value *ReductionsPtr,
1161 LValue SharedLVal);
1162
Alexey Bataev8b8e2022015-04-27 05:22:09 +00001163 /// \brief Emit code for 'taskwait' directive.
1164 virtual void emitTaskwaitCall(CodeGenFunction &CGF, SourceLocation Loc);
Alexey Bataev0f34da12015-07-02 04:17:07 +00001165
1166 /// \brief Emit code for 'cancellation point' construct.
1167 /// \param CancelRegion Region kind for which the cancellation point must be
1168 /// emitted.
1169 ///
1170 virtual void emitCancellationPointCall(CodeGenFunction &CGF,
1171 SourceLocation Loc,
1172 OpenMPDirectiveKind CancelRegion);
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00001173
1174 /// \brief Emit code for 'cancel' construct.
Alexey Bataev87933c72015-09-18 08:07:34 +00001175 /// \param IfCond Condition in the associated 'if' clause, if it was
1176 /// specified, nullptr otherwise.
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00001177 /// \param CancelRegion Region kind for which the cancel must be emitted.
1178 ///
1179 virtual void emitCancelCall(CodeGenFunction &CGF, SourceLocation Loc,
Alexey Bataev87933c72015-09-18 08:07:34 +00001180 const Expr *IfCond,
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00001181 OpenMPDirectiveKind CancelRegion);
Samuel Antaobed3c462015-10-02 16:14:20 +00001182
1183 /// \brief Emit outilined function for 'target' directive.
1184 /// \param D Directive to emit.
Samuel Antaoee8fb302016-01-06 13:42:12 +00001185 /// \param ParentName Name of the function that encloses the target region.
1186 /// \param OutlinedFn Outlined function value to be defined by this call.
1187 /// \param OutlinedFnID Outlined function ID value to be defined by this call.
1188 /// \param IsOffloadEntry True if the outlined function is an offload entry.
Alexey Bataev14fa1c62016-03-29 05:34:15 +00001189 /// \param CodeGen Code generation sequence for the \a D directive.
Simon Pilgrim6c0eeff2017-07-13 17:34:44 +00001190 /// An outlined function may not be an entry if, e.g. the if clause always
Samuel Antaoee8fb302016-01-06 13:42:12 +00001191 /// evaluates to false.
1192 virtual void emitTargetOutlinedFunction(const OMPExecutableDirective &D,
1193 StringRef ParentName,
1194 llvm::Function *&OutlinedFn,
1195 llvm::Constant *&OutlinedFnID,
Alexey Bataev14fa1c62016-03-29 05:34:15 +00001196 bool IsOffloadEntry,
1197 const RegionCodeGenTy &CodeGen);
Samuel Antaobed3c462015-10-02 16:14:20 +00001198
1199 /// \brief Emit the target offloading code associated with \a D. The emitted
1200 /// code attempts offloading the execution to the device, an the event of
1201 /// a failure it executes the host version outlined in \a OutlinedFn.
1202 /// \param D Directive to emit.
1203 /// \param OutlinedFn Host version of the code to be offloaded.
Samuel Antaoee8fb302016-01-06 13:42:12 +00001204 /// \param OutlinedFnID ID of host version of the code to be offloaded.
Samuel Antaobed3c462015-10-02 16:14:20 +00001205 /// \param IfCond Expression evaluated in if clause associated with the target
1206 /// directive, or null if no if clause is used.
1207 /// \param Device Expression evaluated in device clause associated with the
1208 /// target directive, or null if no device clause is used.
Samuel Antaobed3c462015-10-02 16:14:20 +00001209 virtual void emitTargetCall(CodeGenFunction &CGF,
1210 const OMPExecutableDirective &D,
Samuel Antaoee8fb302016-01-06 13:42:12 +00001211 llvm::Value *OutlinedFn,
1212 llvm::Value *OutlinedFnID, const Expr *IfCond,
Alexey Bataev8451efa2018-01-15 19:06:12 +00001213 const Expr *Device);
Samuel Antaoee8fb302016-01-06 13:42:12 +00001214
1215 /// \brief Emit the target regions enclosed in \a GD function definition or
1216 /// the function itself in case it is a valid device function. Returns true if
1217 /// \a GD was dealt with successfully.
Nico Webera2abe8c2016-01-06 19:13:49 +00001218 /// \param GD Function to scan.
Samuel Antaoee8fb302016-01-06 13:42:12 +00001219 virtual bool emitTargetFunctions(GlobalDecl GD);
1220
1221 /// \brief Emit the global variable if it is a valid device global variable.
1222 /// Returns true if \a GD was dealt with successfully.
1223 /// \param GD Variable declaration to emit.
1224 virtual bool emitTargetGlobalVariable(GlobalDecl GD);
1225
1226 /// \brief Emit the global \a GD if it is meaningful for the target. Returns
Simon Pilgrim2c518802017-03-30 14:13:19 +00001227 /// if it was emitted successfully.
Samuel Antaoee8fb302016-01-06 13:42:12 +00001228 /// \param GD Global to scan.
1229 virtual bool emitTargetGlobal(GlobalDecl GD);
1230
1231 /// \brief Creates the offloading descriptor in the event any target region
1232 /// was emitted in the current module and return the function that registers
1233 /// it.
1234 virtual llvm::Function *emitRegistrationFunction();
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00001235
1236 /// \brief Emits code for teams call of the \a OutlinedFn with
1237 /// variables captured in a record which address is stored in \a
1238 /// CapturedStruct.
1239 /// \param OutlinedFn Outlined function to be run by team masters. Type of
1240 /// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*).
1241 /// \param CapturedVars A pointer to the record with the references to
1242 /// variables used in \a OutlinedFn function.
1243 ///
1244 virtual void emitTeamsCall(CodeGenFunction &CGF,
1245 const OMPExecutableDirective &D,
1246 SourceLocation Loc, llvm::Value *OutlinedFn,
1247 ArrayRef<llvm::Value *> CapturedVars);
1248
1249 /// \brief Emits call to void __kmpc_push_num_teams(ident_t *loc, kmp_int32
1250 /// global_tid, kmp_int32 num_teams, kmp_int32 thread_limit) to generate code
1251 /// for num_teams clause.
Carlo Bertollic6872252016-04-04 15:55:02 +00001252 /// \param NumTeams An integer expression of teams.
1253 /// \param ThreadLimit An integer expression of threads.
1254 virtual void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams,
1255 const Expr *ThreadLimit, SourceLocation Loc);
Samuel Antaodf158d52016-04-27 22:58:19 +00001256
Samuel Antaocc10b852016-07-28 14:23:26 +00001257 /// Struct that keeps all the relevant information that should be kept
1258 /// throughout a 'target data' region.
1259 class TargetDataInfo {
1260 /// Set to true if device pointer information have to be obtained.
1261 bool RequiresDevicePointerInfo = false;
1262
1263 public:
1264 /// The array of base pointer passed to the runtime library.
1265 llvm::Value *BasePointersArray = nullptr;
1266 /// The array of section pointers passed to the runtime library.
1267 llvm::Value *PointersArray = nullptr;
1268 /// The array of sizes passed to the runtime library.
1269 llvm::Value *SizesArray = nullptr;
1270 /// The array of map types passed to the runtime library.
1271 llvm::Value *MapTypesArray = nullptr;
1272 /// The total number of pointers passed to the runtime library.
1273 unsigned NumberOfPtrs = 0u;
1274 /// Map between the a declaration of a capture and the corresponding base
1275 /// pointer address where the runtime returns the device pointers.
1276 llvm::DenseMap<const ValueDecl *, Address> CaptureDeviceAddrMap;
1277
1278 explicit TargetDataInfo() {}
1279 explicit TargetDataInfo(bool RequiresDevicePointerInfo)
1280 : RequiresDevicePointerInfo(RequiresDevicePointerInfo) {}
1281 /// Clear information about the data arrays.
1282 void clearArrayInfo() {
1283 BasePointersArray = nullptr;
1284 PointersArray = nullptr;
1285 SizesArray = nullptr;
1286 MapTypesArray = nullptr;
1287 NumberOfPtrs = 0u;
1288 }
1289 /// Return true if the current target data information has valid arrays.
1290 bool isValid() {
1291 return BasePointersArray && PointersArray && SizesArray &&
1292 MapTypesArray && NumberOfPtrs;
1293 }
1294 bool requiresDevicePointerInfo() { return RequiresDevicePointerInfo; }
1295 };
1296
Samuel Antaodf158d52016-04-27 22:58:19 +00001297 /// \brief Emit the target data mapping code associated with \a D.
1298 /// \param D Directive to emit.
Samuel Antaocc10b852016-07-28 14:23:26 +00001299 /// \param IfCond Expression evaluated in if clause associated with the
1300 /// target directive, or null if no device clause is used.
Samuel Antaodf158d52016-04-27 22:58:19 +00001301 /// \param Device Expression evaluated in device clause associated with the
1302 /// target directive, or null if no device clause is used.
Samuel Antaocc10b852016-07-28 14:23:26 +00001303 /// \param Info A record used to store information that needs to be preserved
1304 /// until the region is closed.
Samuel Antaodf158d52016-04-27 22:58:19 +00001305 virtual void emitTargetDataCalls(CodeGenFunction &CGF,
1306 const OMPExecutableDirective &D,
1307 const Expr *IfCond, const Expr *Device,
Samuel Antaocc10b852016-07-28 14:23:26 +00001308 const RegionCodeGenTy &CodeGen,
1309 TargetDataInfo &Info);
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00001310
Samuel Antao8d2d7302016-05-26 18:30:22 +00001311 /// \brief Emit the data mapping/movement code associated with the directive
1312 /// \a D that should be of the form 'target [{enter|exit} data | update]'.
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00001313 /// \param D Directive to emit.
1314 /// \param IfCond Expression evaluated in if clause associated with the target
1315 /// directive, or null if no if clause is used.
1316 /// \param Device Expression evaluated in device clause associated with the
1317 /// target directive, or null if no device clause is used.
Samuel Antao8d2d7302016-05-26 18:30:22 +00001318 virtual void emitTargetDataStandAloneCall(CodeGenFunction &CGF,
1319 const OMPExecutableDirective &D,
1320 const Expr *IfCond,
1321 const Expr *Device);
Alexey Bataevc7a82b42016-05-06 09:40:08 +00001322
1323 /// Marks function \a Fn with properly mangled versions of vector functions.
1324 /// \param FD Function marked as 'declare simd'.
1325 /// \param Fn LLVM function that must be marked with 'declare simd'
1326 /// attributes.
1327 virtual void emitDeclareSimdFunction(const FunctionDecl *FD,
1328 llvm::Function *Fn);
Alexey Bataev8b427062016-05-25 12:36:08 +00001329
1330 /// Emit initialization for doacross loop nesting support.
1331 /// \param D Loop-based construct used in doacross nesting construct.
1332 virtual void emitDoacrossInit(CodeGenFunction &CGF,
1333 const OMPLoopDirective &D);
1334
1335 /// Emit code for doacross ordered directive with 'depend' clause.
1336 /// \param C 'depend' clause with 'sink|source' dependency kind.
1337 virtual void emitDoacrossOrdered(CodeGenFunction &CGF,
1338 const OMPDependClause *C);
Alexey Bataev2c7eee52017-08-04 19:10:54 +00001339
Alexey Bataev3b8d5582017-08-08 18:04:06 +00001340 /// Translates the native parameter of outlined function if this is required
1341 /// for target.
1342 /// \param FD Field decl from captured record for the paramater.
1343 /// \param NativeParam Parameter itself.
1344 virtual const VarDecl *translateParameter(const FieldDecl *FD,
1345 const VarDecl *NativeParam) const {
1346 return NativeParam;
1347 }
1348
1349 /// Gets the address of the native argument basing on the address of the
1350 /// target-specific parameter.
1351 /// \param NativeParam Parameter itself.
1352 /// \param TargetParam Corresponding target-specific parameter.
1353 virtual Address getParameterAddress(CodeGenFunction &CGF,
1354 const VarDecl *NativeParam,
1355 const VarDecl *TargetParam) const;
1356
Alexey Bataev2c7eee52017-08-04 19:10:54 +00001357 /// Emits call of the outlined function with the provided arguments,
1358 /// translating these arguments to correct target-specific arguments.
1359 virtual void
Alexey Bataev3c595a62017-08-14 15:01:03 +00001360 emitOutlinedFunctionCall(CodeGenFunction &CGF, SourceLocation Loc,
1361 llvm::Value *OutlinedFn,
Alexey Bataev2c7eee52017-08-04 19:10:54 +00001362 ArrayRef<llvm::Value *> Args = llvm::None) const;
Alexey Bataev9959db52014-05-06 10:08:46 +00001363};
Alexey Bataev8cbe0a62015-02-26 10:27:34 +00001364
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00001365/// Class supports emissionof SIMD-only code.
1366class CGOpenMPSIMDRuntime final : public CGOpenMPRuntime {
1367public:
1368 explicit CGOpenMPSIMDRuntime(CodeGenModule &CGM) : CGOpenMPRuntime(CGM) {}
1369 ~CGOpenMPSIMDRuntime() override {}
1370
1371 /// \brief Emits outlined function for the specified OpenMP parallel directive
1372 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
1373 /// kmp_int32 BoundID, struct context_vars*).
1374 /// \param D OpenMP directive.
1375 /// \param ThreadIDVar Variable for thread id in the current OpenMP region.
1376 /// \param InnermostKind Kind of innermost directive (for simple directives it
1377 /// is a directive itself, for combined - its innermost directive).
1378 /// \param CodeGen Code generation sequence for the \a D directive.
1379 llvm::Value *
1380 emitParallelOutlinedFunction(const OMPExecutableDirective &D,
1381 const VarDecl *ThreadIDVar,
1382 OpenMPDirectiveKind InnermostKind,
1383 const RegionCodeGenTy &CodeGen) override;
1384
1385 /// \brief Emits outlined function for the specified OpenMP teams directive
1386 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
1387 /// kmp_int32 BoundID, struct context_vars*).
1388 /// \param D OpenMP directive.
1389 /// \param ThreadIDVar Variable for thread id in the current OpenMP region.
1390 /// \param InnermostKind Kind of innermost directive (for simple directives it
1391 /// is a directive itself, for combined - its innermost directive).
1392 /// \param CodeGen Code generation sequence for the \a D directive.
1393 llvm::Value *
1394 emitTeamsOutlinedFunction(const OMPExecutableDirective &D,
1395 const VarDecl *ThreadIDVar,
1396 OpenMPDirectiveKind InnermostKind,
1397 const RegionCodeGenTy &CodeGen) override;
1398
1399 /// \brief Emits outlined function for the OpenMP task directive \a D. This
1400 /// outlined function has type void(*)(kmp_int32 ThreadID, struct task_t*
1401 /// TaskT).
1402 /// \param D OpenMP directive.
1403 /// \param ThreadIDVar Variable for thread id in the current OpenMP region.
1404 /// \param PartIDVar Variable for partition id in the current OpenMP untied
1405 /// task region.
1406 /// \param TaskTVar Variable for task_t argument.
1407 /// \param InnermostKind Kind of innermost directive (for simple directives it
1408 /// is a directive itself, for combined - its innermost directive).
1409 /// \param CodeGen Code generation sequence for the \a D directive.
1410 /// \param Tied true if task is generated for tied task, false otherwise.
1411 /// \param NumberOfParts Number of parts in untied task. Ignored for tied
1412 /// tasks.
1413 ///
1414 llvm::Value *emitTaskOutlinedFunction(
1415 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
1416 const VarDecl *PartIDVar, const VarDecl *TaskTVar,
1417 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen,
1418 bool Tied, unsigned &NumberOfParts) override;
1419
1420 /// \brief Emits code for parallel or serial call of the \a OutlinedFn with
1421 /// variables captured in a record which address is stored in \a
1422 /// CapturedStruct.
1423 /// \param OutlinedFn Outlined function to be run in parallel threads. Type of
1424 /// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*).
1425 /// \param CapturedVars A pointer to the record with the references to
1426 /// variables used in \a OutlinedFn function.
1427 /// \param IfCond Condition in the associated 'if' clause, if it was
1428 /// specified, nullptr otherwise.
1429 ///
1430 void emitParallelCall(CodeGenFunction &CGF, SourceLocation Loc,
1431 llvm::Value *OutlinedFn,
1432 ArrayRef<llvm::Value *> CapturedVars,
1433 const Expr *IfCond) override;
1434
1435 /// \brief Emits a critical region.
1436 /// \param CriticalName Name of the critical region.
1437 /// \param CriticalOpGen Generator for the statement associated with the given
1438 /// critical region.
1439 /// \param Hint Value of the 'hint' clause (optional).
1440 void emitCriticalRegion(CodeGenFunction &CGF, StringRef CriticalName,
1441 const RegionCodeGenTy &CriticalOpGen,
1442 SourceLocation Loc,
1443 const Expr *Hint = nullptr) override;
1444
1445 /// \brief Emits a master region.
1446 /// \param MasterOpGen Generator for the statement associated with the given
1447 /// master region.
1448 void emitMasterRegion(CodeGenFunction &CGF,
1449 const RegionCodeGenTy &MasterOpGen,
1450 SourceLocation Loc) override;
1451
1452 /// \brief Emits code for a taskyield directive.
1453 void emitTaskyieldCall(CodeGenFunction &CGF, SourceLocation Loc) override;
1454
1455 /// \brief Emit a taskgroup region.
1456 /// \param TaskgroupOpGen Generator for the statement associated with the
1457 /// given taskgroup region.
1458 void emitTaskgroupRegion(CodeGenFunction &CGF,
1459 const RegionCodeGenTy &TaskgroupOpGen,
1460 SourceLocation Loc) override;
1461
1462 /// \brief Emits a single region.
1463 /// \param SingleOpGen Generator for the statement associated with the given
1464 /// single region.
1465 void emitSingleRegion(CodeGenFunction &CGF,
1466 const RegionCodeGenTy &SingleOpGen, SourceLocation Loc,
1467 ArrayRef<const Expr *> CopyprivateVars,
1468 ArrayRef<const Expr *> DestExprs,
1469 ArrayRef<const Expr *> SrcExprs,
1470 ArrayRef<const Expr *> AssignmentOps) override;
1471
1472 /// \brief Emit an ordered region.
1473 /// \param OrderedOpGen Generator for the statement associated with the given
1474 /// ordered region.
1475 void emitOrderedRegion(CodeGenFunction &CGF,
1476 const RegionCodeGenTy &OrderedOpGen,
1477 SourceLocation Loc, bool IsThreads) override;
1478
1479 /// \brief Emit an implicit/explicit barrier for OpenMP threads.
1480 /// \param Kind Directive for which this implicit barrier call must be
1481 /// generated. Must be OMPD_barrier for explicit barrier generation.
1482 /// \param EmitChecks true if need to emit checks for cancellation barriers.
1483 /// \param ForceSimpleCall true simple barrier call must be emitted, false if
1484 /// runtime class decides which one to emit (simple or with cancellation
1485 /// checks).
1486 ///
1487 void emitBarrierCall(CodeGenFunction &CGF, SourceLocation Loc,
1488 OpenMPDirectiveKind Kind, bool EmitChecks = true,
1489 bool ForceSimpleCall = false) override;
1490
1491 /// This is used for non static scheduled types and when the ordered
1492 /// clause is present on the loop construct.
1493 /// Depending on the loop schedule, it is necessary to call some runtime
1494 /// routine before start of the OpenMP loop to get the loop upper / lower
1495 /// bounds \a LB and \a UB and stride \a ST.
1496 ///
1497 /// \param CGF Reference to current CodeGenFunction.
1498 /// \param Loc Clang source location.
1499 /// \param ScheduleKind Schedule kind, specified by the 'schedule' clause.
1500 /// \param IVSize Size of the iteration variable in bits.
1501 /// \param IVSigned Sign of the iteration variable.
1502 /// \param Ordered true if loop is ordered, false otherwise.
1503 /// \param DispatchValues struct containing llvm values for lower bound, upper
1504 /// bound, and chunk expression.
1505 /// For the default (nullptr) value, the chunk 1 will be used.
1506 ///
1507 void emitForDispatchInit(CodeGenFunction &CGF, SourceLocation Loc,
1508 const OpenMPScheduleTy &ScheduleKind,
1509 unsigned IVSize, bool IVSigned, bool Ordered,
1510 const DispatchRTInput &DispatchValues) override;
1511
1512 /// \brief Call the appropriate runtime routine to initialize it before start
1513 /// of loop.
1514 ///
1515 /// This is used only in case of static schedule, when the user did not
1516 /// specify a ordered clause on the loop construct.
1517 /// Depending on the loop schedule, it is necessary to call some runtime
1518 /// routine before start of the OpenMP loop to get the loop upper / lower
1519 /// bounds LB and UB and stride ST.
1520 ///
1521 /// \param CGF Reference to current CodeGenFunction.
1522 /// \param Loc Clang source location.
1523 /// \param DKind Kind of the directive.
1524 /// \param ScheduleKind Schedule kind, specified by the 'schedule' clause.
1525 /// \param Values Input arguments for the construct.
1526 ///
1527 void emitForStaticInit(CodeGenFunction &CGF, SourceLocation Loc,
1528 OpenMPDirectiveKind DKind,
1529 const OpenMPScheduleTy &ScheduleKind,
1530 const StaticRTInput &Values) override;
1531
1532 ///
1533 /// \param CGF Reference to current CodeGenFunction.
1534 /// \param Loc Clang source location.
1535 /// \param SchedKind Schedule kind, specified by the 'dist_schedule' clause.
1536 /// \param Values Input arguments for the construct.
1537 ///
1538 void emitDistributeStaticInit(CodeGenFunction &CGF, SourceLocation Loc,
1539 OpenMPDistScheduleClauseKind SchedKind,
1540 const StaticRTInput &Values) override;
1541
1542 /// \brief Call the appropriate runtime routine to notify that we finished
1543 /// iteration of the ordered loop with the dynamic scheduling.
1544 ///
1545 /// \param CGF Reference to current CodeGenFunction.
1546 /// \param Loc Clang source location.
1547 /// \param IVSize Size of the iteration variable in bits.
1548 /// \param IVSigned Sign of the iteration variable.
1549 ///
1550 void emitForOrderedIterationEnd(CodeGenFunction &CGF, SourceLocation Loc,
1551 unsigned IVSize, bool IVSigned) override;
1552
1553 /// \brief Call the appropriate runtime routine to notify that we finished
1554 /// all the work with current loop.
1555 ///
1556 /// \param CGF Reference to current CodeGenFunction.
1557 /// \param Loc Clang source location.
1558 /// \param DKind Kind of the directive for which the static finish is emitted.
1559 ///
1560 void emitForStaticFinish(CodeGenFunction &CGF, SourceLocation Loc,
1561 OpenMPDirectiveKind DKind) override;
1562
1563 /// Call __kmpc_dispatch_next(
1564 /// ident_t *loc, kmp_int32 tid, kmp_int32 *p_lastiter,
1565 /// kmp_int[32|64] *p_lower, kmp_int[32|64] *p_upper,
1566 /// kmp_int[32|64] *p_stride);
1567 /// \param IVSize Size of the iteration variable in bits.
1568 /// \param IVSigned Sign of the iteration variable.
1569 /// \param IL Address of the output variable in which the flag of the
1570 /// last iteration is returned.
1571 /// \param LB Address of the output variable in which the lower iteration
1572 /// number is returned.
1573 /// \param UB Address of the output variable in which the upper iteration
1574 /// number is returned.
1575 /// \param ST Address of the output variable in which the stride value is
1576 /// returned.
1577 llvm::Value *emitForNext(CodeGenFunction &CGF, SourceLocation Loc,
1578 unsigned IVSize, bool IVSigned, Address IL,
1579 Address LB, Address UB, Address ST) override;
1580
1581 /// \brief Emits call to void __kmpc_push_num_threads(ident_t *loc, kmp_int32
1582 /// global_tid, kmp_int32 num_threads) to generate code for 'num_threads'
1583 /// clause.
1584 /// \param NumThreads An integer value of threads.
1585 void emitNumThreadsClause(CodeGenFunction &CGF, llvm::Value *NumThreads,
1586 SourceLocation Loc) override;
1587
1588 /// \brief Emit call to void __kmpc_push_proc_bind(ident_t *loc, kmp_int32
1589 /// global_tid, int proc_bind) to generate code for 'proc_bind' clause.
1590 void emitProcBindClause(CodeGenFunction &CGF,
1591 OpenMPProcBindClauseKind ProcBind,
1592 SourceLocation Loc) override;
1593
1594 /// \brief Returns address of the threadprivate variable for the current
1595 /// thread.
1596 /// \param VD Threadprivate variable.
1597 /// \param VDAddr Address of the global variable \a VD.
1598 /// \param Loc Location of the reference to threadprivate var.
1599 /// \return Address of the threadprivate variable for the current thread.
1600 Address getAddrOfThreadPrivate(CodeGenFunction &CGF, const VarDecl *VD,
1601 Address VDAddr, SourceLocation Loc) override;
1602
1603 /// \brief Emit a code for initialization of threadprivate variable. It emits
1604 /// a call to runtime library which adds initial value to the newly created
1605 /// threadprivate variable (if it is not constant) and registers destructor
1606 /// for the variable (if any).
1607 /// \param VD Threadprivate variable.
1608 /// \param VDAddr Address of the global variable \a VD.
1609 /// \param Loc Location of threadprivate declaration.
1610 /// \param PerformInit true if initialization expression is not constant.
1611 llvm::Function *
1612 emitThreadPrivateVarDefinition(const VarDecl *VD, Address VDAddr,
1613 SourceLocation Loc, bool PerformInit,
1614 CodeGenFunction *CGF = nullptr) override;
1615
1616 /// Creates artificial threadprivate variable with name \p Name and type \p
1617 /// VarType.
1618 /// \param VarType Type of the artificial threadprivate variable.
1619 /// \param Name Name of the artificial threadprivate variable.
1620 Address getAddrOfArtificialThreadPrivate(CodeGenFunction &CGF,
1621 QualType VarType,
1622 StringRef Name) override;
1623
1624 /// \brief Emit flush of the variables specified in 'omp flush' directive.
1625 /// \param Vars List of variables to flush.
1626 void emitFlush(CodeGenFunction &CGF, ArrayRef<const Expr *> Vars,
1627 SourceLocation Loc) override;
1628
1629 /// \brief Emit task region for the task directive. The task region is
1630 /// emitted in several steps:
1631 /// 1. Emit a call to kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32
1632 /// gtid, kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds,
1633 /// kmp_routine_entry_t *task_entry). Here task_entry is a pointer to the
1634 /// function:
1635 /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) {
1636 /// TaskFunction(gtid, tt->part_id, tt->shareds);
1637 /// return 0;
1638 /// }
1639 /// 2. Copy a list of shared variables to field shareds of the resulting
1640 /// structure kmp_task_t returned by the previous call (if any).
1641 /// 3. Copy a pointer to destructions function to field destructions of the
1642 /// resulting structure kmp_task_t.
1643 /// 4. Emit a call to kmp_int32 __kmpc_omp_task(ident_t *, kmp_int32 gtid,
1644 /// kmp_task_t *new_task), where new_task is a resulting structure from
1645 /// previous items.
1646 /// \param D Current task directive.
1647 /// \param TaskFunction An LLVM function with type void (*)(i32 /*gtid*/, i32
1648 /// /*part_id*/, captured_struct */*__context*/);
1649 /// \param SharedsTy A type which contains references the shared variables.
1650 /// \param Shareds Context with the list of shared variables from the \p
1651 /// TaskFunction.
1652 /// \param IfCond Not a nullptr if 'if' clause was specified, nullptr
1653 /// otherwise.
1654 /// \param Data Additional data for task generation like tiednsee, final
1655 /// state, list of privates etc.
1656 void emitTaskCall(CodeGenFunction &CGF, SourceLocation Loc,
1657 const OMPExecutableDirective &D, llvm::Value *TaskFunction,
1658 QualType SharedsTy, Address Shareds, const Expr *IfCond,
1659 const OMPTaskDataTy &Data) override;
1660
1661 /// Emit task region for the taskloop directive. The taskloop region is
1662 /// emitted in several steps:
1663 /// 1. Emit a call to kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32
1664 /// gtid, kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds,
1665 /// kmp_routine_entry_t *task_entry). Here task_entry is a pointer to the
1666 /// function:
1667 /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) {
1668 /// TaskFunction(gtid, tt->part_id, tt->shareds);
1669 /// return 0;
1670 /// }
1671 /// 2. Copy a list of shared variables to field shareds of the resulting
1672 /// structure kmp_task_t returned by the previous call (if any).
1673 /// 3. Copy a pointer to destructions function to field destructions of the
1674 /// resulting structure kmp_task_t.
1675 /// 4. Emit a call to void __kmpc_taskloop(ident_t *loc, int gtid, kmp_task_t
1676 /// *task, int if_val, kmp_uint64 *lb, kmp_uint64 *ub, kmp_int64 st, int
1677 /// nogroup, int sched, kmp_uint64 grainsize, void *task_dup ), where new_task
1678 /// is a resulting structure from
1679 /// previous items.
1680 /// \param D Current task directive.
1681 /// \param TaskFunction An LLVM function with type void (*)(i32 /*gtid*/, i32
1682 /// /*part_id*/, captured_struct */*__context*/);
1683 /// \param SharedsTy A type which contains references the shared variables.
1684 /// \param Shareds Context with the list of shared variables from the \p
1685 /// TaskFunction.
1686 /// \param IfCond Not a nullptr if 'if' clause was specified, nullptr
1687 /// otherwise.
1688 /// \param Data Additional data for task generation like tiednsee, final
1689 /// state, list of privates etc.
1690 void emitTaskLoopCall(CodeGenFunction &CGF, SourceLocation Loc,
1691 const OMPLoopDirective &D, llvm::Value *TaskFunction,
1692 QualType SharedsTy, Address Shareds, const Expr *IfCond,
1693 const OMPTaskDataTy &Data) override;
1694
1695 /// \brief Emit a code for reduction clause. Next code should be emitted for
1696 /// reduction:
1697 /// \code
1698 ///
1699 /// static kmp_critical_name lock = { 0 };
1700 ///
1701 /// void reduce_func(void *lhs[<n>], void *rhs[<n>]) {
1702 /// ...
1703 /// *(Type<i>*)lhs[i] = RedOp<i>(*(Type<i>*)lhs[i], *(Type<i>*)rhs[i]);
1704 /// ...
1705 /// }
1706 ///
1707 /// ...
1708 /// void *RedList[<n>] = {&<RHSExprs>[0], ..., &<RHSExprs>[<n>-1]};
1709 /// switch (__kmpc_reduce{_nowait}(<loc>, <gtid>, <n>, sizeof(RedList),
1710 /// RedList, reduce_func, &<lock>)) {
1711 /// case 1:
1712 /// ...
1713 /// <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]);
1714 /// ...
1715 /// __kmpc_end_reduce{_nowait}(<loc>, <gtid>, &<lock>);
1716 /// break;
1717 /// case 2:
1718 /// ...
1719 /// Atomic(<LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]));
1720 /// ...
1721 /// break;
1722 /// default:;
1723 /// }
1724 /// \endcode
1725 ///
1726 /// \param Privates List of private copies for original reduction arguments.
1727 /// \param LHSExprs List of LHS in \a ReductionOps reduction operations.
1728 /// \param RHSExprs List of RHS in \a ReductionOps reduction operations.
1729 /// \param ReductionOps List of reduction operations in form 'LHS binop RHS'
1730 /// or 'operator binop(LHS, RHS)'.
1731 /// \param Options List of options for reduction codegen:
1732 /// WithNowait true if parent directive has also nowait clause, false
1733 /// otherwise.
1734 /// SimpleReduction Emit reduction operation only. Used for omp simd
1735 /// directive on the host.
1736 /// ReductionKind The kind of reduction to perform.
1737 void emitReduction(CodeGenFunction &CGF, SourceLocation Loc,
1738 ArrayRef<const Expr *> Privates,
1739 ArrayRef<const Expr *> LHSExprs,
1740 ArrayRef<const Expr *> RHSExprs,
1741 ArrayRef<const Expr *> ReductionOps,
1742 ReductionOptionsTy Options) override;
1743
1744 /// Emit a code for initialization of task reduction clause. Next code
1745 /// should be emitted for reduction:
1746 /// \code
1747 ///
1748 /// _task_red_item_t red_data[n];
1749 /// ...
1750 /// red_data[i].shar = &origs[i];
1751 /// red_data[i].size = sizeof(origs[i]);
1752 /// red_data[i].f_init = (void*)RedInit<i>;
1753 /// red_data[i].f_fini = (void*)RedDest<i>;
1754 /// red_data[i].f_comb = (void*)RedOp<i>;
1755 /// red_data[i].flags = <Flag_i>;
1756 /// ...
1757 /// void* tg1 = __kmpc_task_reduction_init(gtid, n, red_data);
1758 /// \endcode
1759 ///
1760 /// \param LHSExprs List of LHS in \a Data.ReductionOps reduction operations.
1761 /// \param RHSExprs List of RHS in \a Data.ReductionOps reduction operations.
1762 /// \param Data Additional data for task generation like tiedness, final
1763 /// state, list of privates, reductions etc.
1764 llvm::Value *emitTaskReductionInit(CodeGenFunction &CGF, SourceLocation Loc,
1765 ArrayRef<const Expr *> LHSExprs,
1766 ArrayRef<const Expr *> RHSExprs,
1767 const OMPTaskDataTy &Data) override;
1768
1769 /// Required to resolve existing problems in the runtime. Emits threadprivate
1770 /// variables to store the size of the VLAs/array sections for
1771 /// initializer/combiner/finalizer functions + emits threadprivate variable to
1772 /// store the pointer to the original reduction item for the custom
1773 /// initializer defined by declare reduction construct.
1774 /// \param RCG Allows to reuse an existing data for the reductions.
1775 /// \param N Reduction item for which fixups must be emitted.
1776 void emitTaskReductionFixups(CodeGenFunction &CGF, SourceLocation Loc,
1777 ReductionCodeGen &RCG, unsigned N) override;
1778
1779 /// Get the address of `void *` type of the privatue copy of the reduction
1780 /// item specified by the \p SharedLVal.
1781 /// \param ReductionsPtr Pointer to the reduction data returned by the
1782 /// emitTaskReductionInit function.
1783 /// \param SharedLVal Address of the original reduction item.
1784 Address getTaskReductionItem(CodeGenFunction &CGF, SourceLocation Loc,
1785 llvm::Value *ReductionsPtr,
1786 LValue SharedLVal) override;
1787
1788 /// \brief Emit code for 'taskwait' directive.
1789 void emitTaskwaitCall(CodeGenFunction &CGF, SourceLocation Loc) override;
1790
1791 /// \brief Emit code for 'cancellation point' construct.
1792 /// \param CancelRegion Region kind for which the cancellation point must be
1793 /// emitted.
1794 ///
1795 void emitCancellationPointCall(CodeGenFunction &CGF, SourceLocation Loc,
1796 OpenMPDirectiveKind CancelRegion) override;
1797
1798 /// \brief Emit code for 'cancel' construct.
1799 /// \param IfCond Condition in the associated 'if' clause, if it was
1800 /// specified, nullptr otherwise.
1801 /// \param CancelRegion Region kind for which the cancel must be emitted.
1802 ///
1803 void emitCancelCall(CodeGenFunction &CGF, SourceLocation Loc,
1804 const Expr *IfCond,
1805 OpenMPDirectiveKind CancelRegion) override;
1806
1807 /// \brief Emit outilined function for 'target' directive.
1808 /// \param D Directive to emit.
1809 /// \param ParentName Name of the function that encloses the target region.
1810 /// \param OutlinedFn Outlined function value to be defined by this call.
1811 /// \param OutlinedFnID Outlined function ID value to be defined by this call.
1812 /// \param IsOffloadEntry True if the outlined function is an offload entry.
1813 /// \param CodeGen Code generation sequence for the \a D directive.
1814 /// An outlined function may not be an entry if, e.g. the if clause always
1815 /// evaluates to false.
1816 void emitTargetOutlinedFunction(const OMPExecutableDirective &D,
1817 StringRef ParentName,
1818 llvm::Function *&OutlinedFn,
1819 llvm::Constant *&OutlinedFnID,
1820 bool IsOffloadEntry,
1821 const RegionCodeGenTy &CodeGen) override;
1822
1823 /// \brief Emit the target offloading code associated with \a D. The emitted
1824 /// code attempts offloading the execution to the device, an the event of
1825 /// a failure it executes the host version outlined in \a OutlinedFn.
1826 /// \param D Directive to emit.
1827 /// \param OutlinedFn Host version of the code to be offloaded.
1828 /// \param OutlinedFnID ID of host version of the code to be offloaded.
1829 /// \param IfCond Expression evaluated in if clause associated with the target
1830 /// directive, or null if no if clause is used.
1831 /// \param Device Expression evaluated in device clause associated with the
1832 /// target directive, or null if no device clause is used.
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00001833 void emitTargetCall(CodeGenFunction &CGF, const OMPExecutableDirective &D,
1834 llvm::Value *OutlinedFn, llvm::Value *OutlinedFnID,
Alexey Bataev8451efa2018-01-15 19:06:12 +00001835 const Expr *IfCond, const Expr *Device) override;
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00001836
1837 /// \brief Emit the target regions enclosed in \a GD function definition or
1838 /// the function itself in case it is a valid device function. Returns true if
1839 /// \a GD was dealt with successfully.
1840 /// \param GD Function to scan.
1841 bool emitTargetFunctions(GlobalDecl GD) override;
1842
1843 /// \brief Emit the global variable if it is a valid device global variable.
1844 /// Returns true if \a GD was dealt with successfully.
1845 /// \param GD Variable declaration to emit.
1846 bool emitTargetGlobalVariable(GlobalDecl GD) override;
1847
1848 /// \brief Emit the global \a GD if it is meaningful for the target. Returns
1849 /// if it was emitted successfully.
1850 /// \param GD Global to scan.
1851 bool emitTargetGlobal(GlobalDecl GD) override;
1852
1853 /// \brief Creates the offloading descriptor in the event any target region
1854 /// was emitted in the current module and return the function that registers
1855 /// it.
1856 llvm::Function *emitRegistrationFunction() override;
1857
1858 /// \brief Emits code for teams call of the \a OutlinedFn with
1859 /// variables captured in a record which address is stored in \a
1860 /// CapturedStruct.
1861 /// \param OutlinedFn Outlined function to be run by team masters. Type of
1862 /// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*).
1863 /// \param CapturedVars A pointer to the record with the references to
1864 /// variables used in \a OutlinedFn function.
1865 ///
1866 void emitTeamsCall(CodeGenFunction &CGF, const OMPExecutableDirective &D,
1867 SourceLocation Loc, llvm::Value *OutlinedFn,
1868 ArrayRef<llvm::Value *> CapturedVars) override;
1869
1870 /// \brief Emits call to void __kmpc_push_num_teams(ident_t *loc, kmp_int32
1871 /// global_tid, kmp_int32 num_teams, kmp_int32 thread_limit) to generate code
1872 /// for num_teams clause.
1873 /// \param NumTeams An integer expression of teams.
1874 /// \param ThreadLimit An integer expression of threads.
1875 void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams,
1876 const Expr *ThreadLimit, SourceLocation Loc) override;
1877
1878 /// \brief Emit the target data mapping code associated with \a D.
1879 /// \param D Directive to emit.
1880 /// \param IfCond Expression evaluated in if clause associated with the
1881 /// target directive, or null if no device clause is used.
1882 /// \param Device Expression evaluated in device clause associated with the
1883 /// target directive, or null if no device clause is used.
1884 /// \param Info A record used to store information that needs to be preserved
1885 /// until the region is closed.
1886 void emitTargetDataCalls(CodeGenFunction &CGF,
1887 const OMPExecutableDirective &D, const Expr *IfCond,
1888 const Expr *Device, const RegionCodeGenTy &CodeGen,
1889 TargetDataInfo &Info) override;
1890
1891 /// \brief Emit the data mapping/movement code associated with the directive
1892 /// \a D that should be of the form 'target [{enter|exit} data | update]'.
1893 /// \param D Directive to emit.
1894 /// \param IfCond Expression evaluated in if clause associated with the target
1895 /// directive, or null if no if clause is used.
1896 /// \param Device Expression evaluated in device clause associated with the
1897 /// target directive, or null if no device clause is used.
1898 void emitTargetDataStandAloneCall(CodeGenFunction &CGF,
1899 const OMPExecutableDirective &D,
1900 const Expr *IfCond,
1901 const Expr *Device) override;
1902
1903 /// Emit initialization for doacross loop nesting support.
1904 /// \param D Loop-based construct used in doacross nesting construct.
1905 void emitDoacrossInit(CodeGenFunction &CGF,
1906 const OMPLoopDirective &D) override;
1907
1908 /// Emit code for doacross ordered directive with 'depend' clause.
1909 /// \param C 'depend' clause with 'sink|source' dependency kind.
1910 void emitDoacrossOrdered(CodeGenFunction &CGF,
1911 const OMPDependClause *C) override;
1912
1913 /// Translates the native parameter of outlined function if this is required
1914 /// for target.
1915 /// \param FD Field decl from captured record for the paramater.
1916 /// \param NativeParam Parameter itself.
1917 const VarDecl *translateParameter(const FieldDecl *FD,
1918 const VarDecl *NativeParam) const override;
1919
1920 /// Gets the address of the native argument basing on the address of the
1921 /// target-specific parameter.
1922 /// \param NativeParam Parameter itself.
1923 /// \param TargetParam Corresponding target-specific parameter.
1924 Address getParameterAddress(CodeGenFunction &CGF, const VarDecl *NativeParam,
1925 const VarDecl *TargetParam) const override;
1926};
1927
Alexey Bataev23b69422014-06-18 07:08:49 +00001928} // namespace CodeGen
1929} // namespace clang
Alexey Bataev9959db52014-05-06 10:08:46 +00001930
1931#endif