blob: 1efb054bc127100a14731688759eeed220314f36 [file] [log] [blame]
Alexey Bataev9959db52014-05-06 10:08:46 +00001//===----- CGOpenMPRuntime.cpp - Interface to OpenMP Runtimes -------------===//
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
Samuel Antaoee8fb302016-01-06 13:42:12 +000014#include "CGCXXABI.h"
15#include "CGCleanup.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000016#include "CGOpenMPRuntime.h"
Alexey Bataeva4fa0b82018-04-16 17:59:34 +000017#include "CGRecordLayout.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000018#include "CodeGenFunction.h"
John McCall5ad74072017-03-02 20:04:19 +000019#include "clang/CodeGen/ConstantInitBuilder.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000020#include "clang/AST/Decl.h"
Chandler Carruth0d9593d2015-01-14 11:29:14 +000021#include "clang/AST/StmtOpenMP.h"
Richard Smithbf5bcf22018-06-26 23:20:26 +000022#include "clang/Basic/BitmaskEnum.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000023#include "llvm/ADT/ArrayRef.h"
Teresa Johnsonffc4e242016-11-11 05:35:12 +000024#include "llvm/Bitcode/BitcodeReader.h"
Alexey Bataevd74d0602014-10-13 06:02:40 +000025#include "llvm/IR/CallSite.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000026#include "llvm/IR/DerivedTypes.h"
27#include "llvm/IR/GlobalValue.h"
28#include "llvm/IR/Value.h"
Samuel Antaoee8fb302016-01-06 13:42:12 +000029#include "llvm/Support/Format.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000030#include "llvm/Support/raw_ostream.h"
Alexey Bataev23b69422014-06-18 07:08:49 +000031#include <cassert>
Alexey Bataev9959db52014-05-06 10:08:46 +000032
33using namespace clang;
34using namespace CodeGen;
35
Benjamin Kramerc52193f2014-10-10 13:57:57 +000036namespace {
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000037/// Base class for handling code generation inside OpenMP regions.
Alexey Bataev18095712014-10-10 12:19:54 +000038class CGOpenMPRegionInfo : public CodeGenFunction::CGCapturedStmtInfo {
39public:
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000040 /// Kinds of OpenMP regions used in codegen.
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000041 enum CGOpenMPRegionKind {
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000042 /// Region with outlined function for standalone 'parallel'
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000043 /// directive.
44 ParallelOutlinedRegion,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000045 /// Region with outlined function for standalone 'task' directive.
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000046 TaskOutlinedRegion,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000047 /// Region for constructs that do not require function outlining,
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000048 /// like 'for', 'sections', 'atomic' etc. directives.
49 InlinedRegion,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000050 /// Region with outlined function for standalone 'target' directive.
Samuel Antaobed3c462015-10-02 16:14:20 +000051 TargetRegion,
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000052 };
Alexey Bataev18095712014-10-10 12:19:54 +000053
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000054 CGOpenMPRegionInfo(const CapturedStmt &CS,
55 const CGOpenMPRegionKind RegionKind,
Alexey Bataev25e5b442015-09-15 12:52:43 +000056 const RegionCodeGenTy &CodeGen, OpenMPDirectiveKind Kind,
57 bool HasCancel)
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000058 : CGCapturedStmtInfo(CS, CR_OpenMP), RegionKind(RegionKind),
Alexey Bataev25e5b442015-09-15 12:52:43 +000059 CodeGen(CodeGen), Kind(Kind), HasCancel(HasCancel) {}
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000060
61 CGOpenMPRegionInfo(const CGOpenMPRegionKind RegionKind,
Alexey Bataev25e5b442015-09-15 12:52:43 +000062 const RegionCodeGenTy &CodeGen, OpenMPDirectiveKind Kind,
63 bool HasCancel)
Alexey Bataev81c7ea02015-07-03 09:56:58 +000064 : CGCapturedStmtInfo(CR_OpenMP), RegionKind(RegionKind), CodeGen(CodeGen),
Alexey Bataev25e5b442015-09-15 12:52:43 +000065 Kind(Kind), HasCancel(HasCancel) {}
Alexey Bataev8cbe0a62015-02-26 10:27:34 +000066
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000067 /// Get a variable or parameter for storing global thread id
Alexey Bataev18095712014-10-10 12:19:54 +000068 /// inside OpenMP construct.
Alexey Bataev8cbe0a62015-02-26 10:27:34 +000069 virtual const VarDecl *getThreadIDVariable() const = 0;
Alexey Bataev18095712014-10-10 12:19:54 +000070
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000071 /// Emit the captured statement body.
Hans Wennborg7eb54642015-09-10 17:07:54 +000072 void EmitBody(CodeGenFunction &CGF, const Stmt *S) override;
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000073
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000074 /// Get an LValue for the current ThreadID variable.
Alexey Bataev62b63b12015-03-10 07:28:44 +000075 /// \return LValue for thread id variable. This LValue always has type int32*.
76 virtual LValue getThreadIDVariableLValue(CodeGenFunction &CGF);
Alexey Bataev18095712014-10-10 12:19:54 +000077
Alexey Bataev48591dd2016-04-20 04:01:36 +000078 virtual void emitUntiedSwitch(CodeGenFunction & /*CGF*/) {}
79
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000080 CGOpenMPRegionKind getRegionKind() const { return RegionKind; }
Alexey Bataev8cbe0a62015-02-26 10:27:34 +000081
Alexey Bataev81c7ea02015-07-03 09:56:58 +000082 OpenMPDirectiveKind getDirectiveKind() const { return Kind; }
83
Alexey Bataev25e5b442015-09-15 12:52:43 +000084 bool hasCancel() const { return HasCancel; }
85
Alexey Bataev18095712014-10-10 12:19:54 +000086 static bool classof(const CGCapturedStmtInfo *Info) {
87 return Info->getKind() == CR_OpenMP;
88 }
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000089
Alexey Bataev48591dd2016-04-20 04:01:36 +000090 ~CGOpenMPRegionInfo() override = default;
91
Alexey Bataev8cbe0a62015-02-26 10:27:34 +000092protected:
Alexey Bataev6f1ffc02015-04-10 04:50:10 +000093 CGOpenMPRegionKind RegionKind;
Hans Wennborg45c74392016-01-12 20:54:36 +000094 RegionCodeGenTy CodeGen;
Alexey Bataev81c7ea02015-07-03 09:56:58 +000095 OpenMPDirectiveKind Kind;
Alexey Bataev25e5b442015-09-15 12:52:43 +000096 bool HasCancel;
Alexey Bataev8cbe0a62015-02-26 10:27:34 +000097};
Alexey Bataev18095712014-10-10 12:19:54 +000098
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000099/// API for captured statement code generation in OpenMP constructs.
Alexey Bataev48591dd2016-04-20 04:01:36 +0000100class CGOpenMPOutlinedRegionInfo final : public CGOpenMPRegionInfo {
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000101public:
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000102 CGOpenMPOutlinedRegionInfo(const CapturedStmt &CS, const VarDecl *ThreadIDVar,
Alexey Bataev81c7ea02015-07-03 09:56:58 +0000103 const RegionCodeGenTy &CodeGen,
Arpith Chacko Jacobbb36fe82017-01-10 15:42:51 +0000104 OpenMPDirectiveKind Kind, bool HasCancel,
105 StringRef HelperName)
Alexey Bataev25e5b442015-09-15 12:52:43 +0000106 : CGOpenMPRegionInfo(CS, ParallelOutlinedRegion, CodeGen, Kind,
107 HasCancel),
Arpith Chacko Jacobbb36fe82017-01-10 15:42:51 +0000108 ThreadIDVar(ThreadIDVar), HelperName(HelperName) {
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000109 assert(ThreadIDVar != nullptr && "No ThreadID in OpenMP region.");
110 }
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +0000111
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000112 /// Get a variable or parameter for storing global thread id
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000113 /// inside OpenMP construct.
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000114 const VarDecl *getThreadIDVariable() const override { return ThreadIDVar; }
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000115
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000116 /// Get the name of the capture helper.
Arpith Chacko Jacobbb36fe82017-01-10 15:42:51 +0000117 StringRef getHelperName() const override { return HelperName; }
Alexey Bataev18095712014-10-10 12:19:54 +0000118
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000119 static bool classof(const CGCapturedStmtInfo *Info) {
120 return CGOpenMPRegionInfo::classof(Info) &&
121 cast<CGOpenMPRegionInfo>(Info)->getRegionKind() ==
122 ParallelOutlinedRegion;
123 }
124
Alexey Bataev18095712014-10-10 12:19:54 +0000125private:
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000126 /// A variable or parameter storing global thread id for OpenMP
Alexey Bataev18095712014-10-10 12:19:54 +0000127 /// constructs.
128 const VarDecl *ThreadIDVar;
Arpith Chacko Jacobbb36fe82017-01-10 15:42:51 +0000129 StringRef HelperName;
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000130};
131
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000132/// API for captured statement code generation in OpenMP constructs.
Alexey Bataev48591dd2016-04-20 04:01:36 +0000133class CGOpenMPTaskOutlinedRegionInfo final : public CGOpenMPRegionInfo {
Alexey Bataev62b63b12015-03-10 07:28:44 +0000134public:
Alexey Bataev48591dd2016-04-20 04:01:36 +0000135 class UntiedTaskActionTy final : public PrePostActionTy {
136 bool Untied;
137 const VarDecl *PartIDVar;
138 const RegionCodeGenTy UntiedCodeGen;
139 llvm::SwitchInst *UntiedSwitch = nullptr;
140
141 public:
142 UntiedTaskActionTy(bool Tied, const VarDecl *PartIDVar,
143 const RegionCodeGenTy &UntiedCodeGen)
144 : Untied(!Tied), PartIDVar(PartIDVar), UntiedCodeGen(UntiedCodeGen) {}
145 void Enter(CodeGenFunction &CGF) override {
146 if (Untied) {
147 // Emit task switching point.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000148 LValue PartIdLVal = CGF.EmitLoadOfPointerLValue(
Alexey Bataev48591dd2016-04-20 04:01:36 +0000149 CGF.GetAddrOfLocalVar(PartIDVar),
150 PartIDVar->getType()->castAs<PointerType>());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000151 llvm::Value *Res =
152 CGF.EmitLoadOfScalar(PartIdLVal, PartIDVar->getLocation());
153 llvm::BasicBlock *DoneBB = CGF.createBasicBlock(".untied.done.");
Alexey Bataev48591dd2016-04-20 04:01:36 +0000154 UntiedSwitch = CGF.Builder.CreateSwitch(Res, DoneBB);
155 CGF.EmitBlock(DoneBB);
156 CGF.EmitBranchThroughCleanup(CGF.ReturnBlock);
157 CGF.EmitBlock(CGF.createBasicBlock(".untied.jmp."));
158 UntiedSwitch->addCase(CGF.Builder.getInt32(0),
159 CGF.Builder.GetInsertBlock());
160 emitUntiedSwitch(CGF);
161 }
162 }
163 void emitUntiedSwitch(CodeGenFunction &CGF) const {
164 if (Untied) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000165 LValue PartIdLVal = CGF.EmitLoadOfPointerLValue(
Alexey Bataev48591dd2016-04-20 04:01:36 +0000166 CGF.GetAddrOfLocalVar(PartIDVar),
167 PartIDVar->getType()->castAs<PointerType>());
168 CGF.EmitStoreOfScalar(CGF.Builder.getInt32(UntiedSwitch->getNumCases()),
169 PartIdLVal);
170 UntiedCodeGen(CGF);
171 CodeGenFunction::JumpDest CurPoint =
172 CGF.getJumpDestInCurrentScope(".untied.next.");
173 CGF.EmitBranchThroughCleanup(CGF.ReturnBlock);
174 CGF.EmitBlock(CGF.createBasicBlock(".untied.jmp."));
175 UntiedSwitch->addCase(CGF.Builder.getInt32(UntiedSwitch->getNumCases()),
176 CGF.Builder.GetInsertBlock());
177 CGF.EmitBranchThroughCleanup(CurPoint);
178 CGF.EmitBlock(CurPoint.getBlock());
179 }
180 }
181 unsigned getNumberOfParts() const { return UntiedSwitch->getNumCases(); }
182 };
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000183 CGOpenMPTaskOutlinedRegionInfo(const CapturedStmt &CS,
Alexey Bataev62b63b12015-03-10 07:28:44 +0000184 const VarDecl *ThreadIDVar,
Alexey Bataev81c7ea02015-07-03 09:56:58 +0000185 const RegionCodeGenTy &CodeGen,
Alexey Bataev48591dd2016-04-20 04:01:36 +0000186 OpenMPDirectiveKind Kind, bool HasCancel,
187 const UntiedTaskActionTy &Action)
Alexey Bataev25e5b442015-09-15 12:52:43 +0000188 : CGOpenMPRegionInfo(CS, TaskOutlinedRegion, CodeGen, Kind, HasCancel),
Alexey Bataev48591dd2016-04-20 04:01:36 +0000189 ThreadIDVar(ThreadIDVar), Action(Action) {
Alexey Bataev62b63b12015-03-10 07:28:44 +0000190 assert(ThreadIDVar != nullptr && "No ThreadID in OpenMP region.");
191 }
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +0000192
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000193 /// Get a variable or parameter for storing global thread id
Alexey Bataev62b63b12015-03-10 07:28:44 +0000194 /// inside OpenMP construct.
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000195 const VarDecl *getThreadIDVariable() const override { return ThreadIDVar; }
Alexey Bataev62b63b12015-03-10 07:28:44 +0000196
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000197 /// Get an LValue for the current ThreadID variable.
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000198 LValue getThreadIDVariableLValue(CodeGenFunction &CGF) override;
Alexey Bataev62b63b12015-03-10 07:28:44 +0000199
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000200 /// Get the name of the capture helper.
Alexey Bataev62b63b12015-03-10 07:28:44 +0000201 StringRef getHelperName() const override { return ".omp_outlined."; }
202
Alexey Bataev48591dd2016-04-20 04:01:36 +0000203 void emitUntiedSwitch(CodeGenFunction &CGF) override {
204 Action.emitUntiedSwitch(CGF);
205 }
206
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000207 static bool classof(const CGCapturedStmtInfo *Info) {
208 return CGOpenMPRegionInfo::classof(Info) &&
209 cast<CGOpenMPRegionInfo>(Info)->getRegionKind() ==
210 TaskOutlinedRegion;
211 }
212
Alexey Bataev62b63b12015-03-10 07:28:44 +0000213private:
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000214 /// A variable or parameter storing global thread id for OpenMP
Alexey Bataev62b63b12015-03-10 07:28:44 +0000215 /// constructs.
216 const VarDecl *ThreadIDVar;
Alexey Bataev48591dd2016-04-20 04:01:36 +0000217 /// Action for emitting code for untied tasks.
218 const UntiedTaskActionTy &Action;
Alexey Bataev62b63b12015-03-10 07:28:44 +0000219};
220
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000221/// API for inlined captured statement code generation in OpenMP
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000222/// constructs.
223class CGOpenMPInlinedRegionInfo : public CGOpenMPRegionInfo {
224public:
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000225 CGOpenMPInlinedRegionInfo(CodeGenFunction::CGCapturedStmtInfo *OldCSI,
Alexey Bataev81c7ea02015-07-03 09:56:58 +0000226 const RegionCodeGenTy &CodeGen,
Alexey Bataev25e5b442015-09-15 12:52:43 +0000227 OpenMPDirectiveKind Kind, bool HasCancel)
228 : CGOpenMPRegionInfo(InlinedRegion, CodeGen, Kind, HasCancel),
229 OldCSI(OldCSI),
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000230 OuterRegionInfo(dyn_cast_or_null<CGOpenMPRegionInfo>(OldCSI)) {}
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +0000231
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000232 // Retrieve the value of the context parameter.
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000233 llvm::Value *getContextValue() const override {
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000234 if (OuterRegionInfo)
235 return OuterRegionInfo->getContextValue();
236 llvm_unreachable("No context value for inlined OpenMP region");
237 }
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +0000238
Hans Wennborg7eb54642015-09-10 17:07:54 +0000239 void setContextValue(llvm::Value *V) override {
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000240 if (OuterRegionInfo) {
241 OuterRegionInfo->setContextValue(V);
242 return;
243 }
244 llvm_unreachable("No context value for inlined OpenMP region");
245 }
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +0000246
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000247 /// Lookup the captured field decl for a variable.
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000248 const FieldDecl *lookup(const VarDecl *VD) const override {
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000249 if (OuterRegionInfo)
250 return OuterRegionInfo->lookup(VD);
Alexey Bataev69c62a92015-04-15 04:52:20 +0000251 // If there is no outer outlined region,no need to lookup in a list of
252 // captured variables, we can use the original one.
253 return nullptr;
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000254 }
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +0000255
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000256 FieldDecl *getThisFieldDecl() const override {
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000257 if (OuterRegionInfo)
258 return OuterRegionInfo->getThisFieldDecl();
259 return nullptr;
260 }
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +0000261
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000262 /// Get a variable or parameter for storing global thread id
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000263 /// inside OpenMP construct.
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000264 const VarDecl *getThreadIDVariable() const override {
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000265 if (OuterRegionInfo)
266 return OuterRegionInfo->getThreadIDVariable();
267 return nullptr;
268 }
Alexey Bataev62b63b12015-03-10 07:28:44 +0000269
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000270 /// Get an LValue for the current ThreadID variable.
Alexey Bataev311a9282017-10-12 13:51:32 +0000271 LValue getThreadIDVariableLValue(CodeGenFunction &CGF) override {
272 if (OuterRegionInfo)
273 return OuterRegionInfo->getThreadIDVariableLValue(CGF);
274 llvm_unreachable("No LValue for inlined OpenMP construct");
275 }
276
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000277 /// Get the name of the capture helper.
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000278 StringRef getHelperName() const override {
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000279 if (auto *OuterRegionInfo = getOldCSI())
280 return OuterRegionInfo->getHelperName();
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000281 llvm_unreachable("No helper name for inlined OpenMP construct");
282 }
283
Alexey Bataev48591dd2016-04-20 04:01:36 +0000284 void emitUntiedSwitch(CodeGenFunction &CGF) override {
285 if (OuterRegionInfo)
286 OuterRegionInfo->emitUntiedSwitch(CGF);
287 }
288
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000289 CodeGenFunction::CGCapturedStmtInfo *getOldCSI() const { return OldCSI; }
290
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000291 static bool classof(const CGCapturedStmtInfo *Info) {
292 return CGOpenMPRegionInfo::classof(Info) &&
293 cast<CGOpenMPRegionInfo>(Info)->getRegionKind() == InlinedRegion;
294 }
295
Alexey Bataev48591dd2016-04-20 04:01:36 +0000296 ~CGOpenMPInlinedRegionInfo() override = default;
297
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000298private:
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000299 /// CodeGen info about outer OpenMP region.
Alexey Bataev8cbe0a62015-02-26 10:27:34 +0000300 CodeGenFunction::CGCapturedStmtInfo *OldCSI;
301 CGOpenMPRegionInfo *OuterRegionInfo;
Alexey Bataev18095712014-10-10 12:19:54 +0000302};
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000303
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000304/// API for captured statement code generation in OpenMP target
Samuel Antaobed3c462015-10-02 16:14:20 +0000305/// constructs. For this captures, implicit parameters are used instead of the
Samuel Antaoee8fb302016-01-06 13:42:12 +0000306/// captured fields. The name of the target region has to be unique in a given
307/// application so it is provided by the client, because only the client has
308/// the information to generate that.
Alexey Bataev48591dd2016-04-20 04:01:36 +0000309class CGOpenMPTargetRegionInfo final : public CGOpenMPRegionInfo {
Samuel Antaobed3c462015-10-02 16:14:20 +0000310public:
311 CGOpenMPTargetRegionInfo(const CapturedStmt &CS,
Samuel Antaoee8fb302016-01-06 13:42:12 +0000312 const RegionCodeGenTy &CodeGen, StringRef HelperName)
Samuel Antaobed3c462015-10-02 16:14:20 +0000313 : CGOpenMPRegionInfo(CS, TargetRegion, CodeGen, OMPD_target,
Samuel Antaoee8fb302016-01-06 13:42:12 +0000314 /*HasCancel=*/false),
315 HelperName(HelperName) {}
Samuel Antaobed3c462015-10-02 16:14:20 +0000316
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000317 /// This is unused for target regions because each starts executing
Samuel Antaobed3c462015-10-02 16:14:20 +0000318 /// with a single thread.
319 const VarDecl *getThreadIDVariable() const override { return nullptr; }
320
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000321 /// Get the name of the capture helper.
Samuel Antaoee8fb302016-01-06 13:42:12 +0000322 StringRef getHelperName() const override { return HelperName; }
Samuel Antaobed3c462015-10-02 16:14:20 +0000323
324 static bool classof(const CGCapturedStmtInfo *Info) {
325 return CGOpenMPRegionInfo::classof(Info) &&
326 cast<CGOpenMPRegionInfo>(Info)->getRegionKind() == TargetRegion;
327 }
Samuel Antaoee8fb302016-01-06 13:42:12 +0000328
329private:
330 StringRef HelperName;
Samuel Antaobed3c462015-10-02 16:14:20 +0000331};
332
Alexey Bataev14fa1c62016-03-29 05:34:15 +0000333static void EmptyCodeGen(CodeGenFunction &, PrePostActionTy &) {
Samuel Antaob68e2db2016-03-03 16:20:23 +0000334 llvm_unreachable("No codegen for expressions");
335}
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000336/// API for generation of expressions captured in a innermost OpenMP
Samuel Antaob68e2db2016-03-03 16:20:23 +0000337/// region.
Alexey Bataev48591dd2016-04-20 04:01:36 +0000338class CGOpenMPInnerExprInfo final : public CGOpenMPInlinedRegionInfo {
Samuel Antaob68e2db2016-03-03 16:20:23 +0000339public:
340 CGOpenMPInnerExprInfo(CodeGenFunction &CGF, const CapturedStmt &CS)
341 : CGOpenMPInlinedRegionInfo(CGF.CapturedStmtInfo, EmptyCodeGen,
342 OMPD_unknown,
343 /*HasCancel=*/false),
344 PrivScope(CGF) {
345 // Make sure the globals captured in the provided statement are local by
346 // using the privatization logic. We assume the same variable is not
347 // captured more than once.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000348 for (const auto &C : CS.captures()) {
Samuel Antaob68e2db2016-03-03 16:20:23 +0000349 if (!C.capturesVariable() && !C.capturesVariableByCopy())
350 continue;
351
352 const VarDecl *VD = C.getCapturedVar();
353 if (VD->isLocalVarDeclOrParm())
354 continue;
355
356 DeclRefExpr DRE(const_cast<VarDecl *>(VD),
357 /*RefersToEnclosingVariableOrCapture=*/false,
358 VD->getType().getNonReferenceType(), VK_LValue,
Alexey Bataeva9b9cc02018-01-23 18:12:38 +0000359 C.getLocation());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000360 PrivScope.addPrivate(
361 VD, [&CGF, &DRE]() { return CGF.EmitLValue(&DRE).getAddress(); });
Samuel Antaob68e2db2016-03-03 16:20:23 +0000362 }
363 (void)PrivScope.Privatize();
364 }
365
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000366 /// Lookup the captured field decl for a variable.
Samuel Antaob68e2db2016-03-03 16:20:23 +0000367 const FieldDecl *lookup(const VarDecl *VD) const override {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000368 if (const FieldDecl *FD = CGOpenMPInlinedRegionInfo::lookup(VD))
Samuel Antaob68e2db2016-03-03 16:20:23 +0000369 return FD;
370 return nullptr;
371 }
372
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000373 /// Emit the captured statement body.
Samuel Antaob68e2db2016-03-03 16:20:23 +0000374 void EmitBody(CodeGenFunction &CGF, const Stmt *S) override {
375 llvm_unreachable("No body for expressions");
376 }
377
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000378 /// Get a variable or parameter for storing global thread id
Samuel Antaob68e2db2016-03-03 16:20:23 +0000379 /// inside OpenMP construct.
380 const VarDecl *getThreadIDVariable() const override {
381 llvm_unreachable("No thread id for expressions");
382 }
383
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000384 /// Get the name of the capture helper.
Samuel Antaob68e2db2016-03-03 16:20:23 +0000385 StringRef getHelperName() const override {
386 llvm_unreachable("No helper name for expressions");
387 }
388
389 static bool classof(const CGCapturedStmtInfo *Info) { return false; }
390
391private:
392 /// Private scope to capture global variables.
393 CodeGenFunction::OMPPrivateScope PrivScope;
394};
395
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000396/// RAII for emitting code of OpenMP constructs.
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000397class InlinedOpenMPRegionRAII {
398 CodeGenFunction &CGF;
Alexey Bataev4ba78a42016-04-27 07:56:03 +0000399 llvm::DenseMap<const VarDecl *, FieldDecl *> LambdaCaptureFields;
400 FieldDecl *LambdaThisCaptureField = nullptr;
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000401 const CodeGen::CGBlockInfo *BlockInfo = nullptr;
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000402
403public:
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000404 /// Constructs region for combined constructs.
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000405 /// \param CodeGen Code generation sequence for combined directives. Includes
406 /// a list of functions used for code generation of implicitly inlined
407 /// regions.
Alexey Bataev81c7ea02015-07-03 09:56:58 +0000408 InlinedOpenMPRegionRAII(CodeGenFunction &CGF, const RegionCodeGenTy &CodeGen,
Alexey Bataev25e5b442015-09-15 12:52:43 +0000409 OpenMPDirectiveKind Kind, bool HasCancel)
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000410 : CGF(CGF) {
411 // Start emission for the construct.
Alexey Bataev25e5b442015-09-15 12:52:43 +0000412 CGF.CapturedStmtInfo = new CGOpenMPInlinedRegionInfo(
413 CGF.CapturedStmtInfo, CodeGen, Kind, HasCancel);
Alexey Bataev4ba78a42016-04-27 07:56:03 +0000414 std::swap(CGF.LambdaCaptureFields, LambdaCaptureFields);
415 LambdaThisCaptureField = CGF.LambdaThisCaptureField;
416 CGF.LambdaThisCaptureField = nullptr;
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000417 BlockInfo = CGF.BlockInfo;
418 CGF.BlockInfo = nullptr;
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000419 }
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +0000420
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000421 ~InlinedOpenMPRegionRAII() {
422 // Restore original CapturedStmtInfo only if we're done with code emission.
423 auto *OldCSI =
424 cast<CGOpenMPInlinedRegionInfo>(CGF.CapturedStmtInfo)->getOldCSI();
425 delete CGF.CapturedStmtInfo;
426 CGF.CapturedStmtInfo = OldCSI;
Alexey Bataev4ba78a42016-04-27 07:56:03 +0000427 std::swap(CGF.LambdaCaptureFields, LambdaCaptureFields);
428 CGF.LambdaThisCaptureField = LambdaThisCaptureField;
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000429 CGF.BlockInfo = BlockInfo;
Alexey Bataev6f1ffc02015-04-10 04:50:10 +0000430 }
431};
432
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000433/// Values for bit flags used in the ident_t to describe the fields.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000434/// All enumeric elements are named and described in accordance with the code
435/// from http://llvm.org/svn/llvm-project/openmp/trunk/runtime/src/kmp.h
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000436enum OpenMPLocationFlags : unsigned {
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000437 /// Use trampoline for internal microtask.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000438 OMP_IDENT_IMD = 0x01,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000439 /// Use c-style ident structure.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000440 OMP_IDENT_KMPC = 0x02,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000441 /// Atomic reduction option for kmpc_reduce.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000442 OMP_ATOMIC_REDUCE = 0x10,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000443 /// Explicit 'barrier' directive.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000444 OMP_IDENT_BARRIER_EXPL = 0x20,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000445 /// Implicit barrier in code.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000446 OMP_IDENT_BARRIER_IMPL = 0x40,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000447 /// Implicit barrier in 'for' directive.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000448 OMP_IDENT_BARRIER_IMPL_FOR = 0x40,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000449 /// Implicit barrier in 'sections' directive.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000450 OMP_IDENT_BARRIER_IMPL_SECTIONS = 0xC0,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000451 /// Implicit barrier in 'single' directive.
Alexey Bataev0f87dbe2017-08-14 17:56:13 +0000452 OMP_IDENT_BARRIER_IMPL_SINGLE = 0x140,
453 /// Call of __kmp_for_static_init for static loop.
454 OMP_IDENT_WORK_LOOP = 0x200,
455 /// Call of __kmp_for_static_init for sections.
456 OMP_IDENT_WORK_SECTIONS = 0x400,
457 /// Call of __kmp_for_static_init for distribute.
458 OMP_IDENT_WORK_DISTRIBUTE = 0x800,
459 LLVM_MARK_AS_BITMASK_ENUM(/*LargestValue=*/OMP_IDENT_WORK_DISTRIBUTE)
Alexey Bataev50b3c952016-02-19 10:38:26 +0000460};
461
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000462/// Describes ident structure that describes a source location.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000463/// All descriptions are taken from
464/// http://llvm.org/svn/llvm-project/openmp/trunk/runtime/src/kmp.h
465/// Original structure:
466/// typedef struct ident {
467/// kmp_int32 reserved_1; /**< might be used in Fortran;
468/// see above */
469/// kmp_int32 flags; /**< also f.flags; KMP_IDENT_xxx flags;
470/// KMP_IDENT_KMPC identifies this union
471/// member */
472/// kmp_int32 reserved_2; /**< not really used in Fortran any more;
473/// see above */
474///#if USE_ITT_BUILD
475/// /* but currently used for storing
476/// region-specific ITT */
477/// /* contextual information. */
478///#endif /* USE_ITT_BUILD */
479/// kmp_int32 reserved_3; /**< source[4] in Fortran, do not use for
480/// C++ */
481/// char const *psource; /**< String describing the source location.
482/// The string is composed of semi-colon separated
483// fields which describe the source file,
484/// the function and a pair of line numbers that
485/// delimit the construct.
486/// */
487/// } ident_t;
488enum IdentFieldIndex {
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000489 /// might be used in Fortran
Alexey Bataev50b3c952016-02-19 10:38:26 +0000490 IdentField_Reserved_1,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000491 /// OMP_IDENT_xxx flags; OMP_IDENT_KMPC identifies this union member.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000492 IdentField_Flags,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000493 /// Not really used in Fortran any more
Alexey Bataev50b3c952016-02-19 10:38:26 +0000494 IdentField_Reserved_2,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000495 /// Source[4] in Fortran, do not use for C++
Alexey Bataev50b3c952016-02-19 10:38:26 +0000496 IdentField_Reserved_3,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000497 /// String describing the source location. The string is composed of
Alexey Bataev50b3c952016-02-19 10:38:26 +0000498 /// semi-colon separated fields which describe the source file, the function
499 /// and a pair of line numbers that delimit the construct.
500 IdentField_PSource
501};
502
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000503/// Schedule types for 'omp for' loops (these enumerators are taken from
Alexey Bataev50b3c952016-02-19 10:38:26 +0000504/// the enum sched_type in kmp.h).
505enum OpenMPSchedType {
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000506 /// Lower bound for default (unordered) versions.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000507 OMP_sch_lower = 32,
508 OMP_sch_static_chunked = 33,
509 OMP_sch_static = 34,
510 OMP_sch_dynamic_chunked = 35,
511 OMP_sch_guided_chunked = 36,
512 OMP_sch_runtime = 37,
513 OMP_sch_auto = 38,
Alexey Bataev6cff6242016-05-30 13:05:14 +0000514 /// static with chunk adjustment (e.g., simd)
Samuel Antao4c8035b2016-12-12 18:00:20 +0000515 OMP_sch_static_balanced_chunked = 45,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000516 /// Lower bound for 'ordered' versions.
Alexey Bataev50b3c952016-02-19 10:38:26 +0000517 OMP_ord_lower = 64,
518 OMP_ord_static_chunked = 65,
519 OMP_ord_static = 66,
520 OMP_ord_dynamic_chunked = 67,
521 OMP_ord_guided_chunked = 68,
522 OMP_ord_runtime = 69,
523 OMP_ord_auto = 70,
524 OMP_sch_default = OMP_sch_static,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000525 /// dist_schedule types
Carlo Bertollifc35ad22016-03-07 16:04:49 +0000526 OMP_dist_sch_static_chunked = 91,
527 OMP_dist_sch_static = 92,
Alexey Bataev9ebd7422016-05-10 09:57:36 +0000528 /// Support for OpenMP 4.5 monotonic and nonmonotonic schedule modifiers.
529 /// Set if the monotonic schedule modifier was present.
530 OMP_sch_modifier_monotonic = (1 << 29),
531 /// Set if the nonmonotonic schedule modifier was present.
532 OMP_sch_modifier_nonmonotonic = (1 << 30),
Alexey Bataev50b3c952016-02-19 10:38:26 +0000533};
534
535enum OpenMPRTLFunction {
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000536 /// Call to void __kmpc_fork_call(ident_t *loc, kmp_int32 argc,
Alexey Bataev50b3c952016-02-19 10:38:26 +0000537 /// kmpc_micro microtask, ...);
538 OMPRTL__kmpc_fork_call,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000539 /// Call to void *__kmpc_threadprivate_cached(ident_t *loc,
Alexey Bataev50b3c952016-02-19 10:38:26 +0000540 /// kmp_int32 global_tid, void *data, size_t size, void ***cache);
541 OMPRTL__kmpc_threadprivate_cached,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000542 /// Call to void __kmpc_threadprivate_register( ident_t *,
Alexey Bataev50b3c952016-02-19 10:38:26 +0000543 /// void *data, kmpc_ctor ctor, kmpc_cctor cctor, kmpc_dtor dtor);
544 OMPRTL__kmpc_threadprivate_register,
545 // Call to __kmpc_int32 kmpc_global_thread_num(ident_t *loc);
546 OMPRTL__kmpc_global_thread_num,
547 // Call to void __kmpc_critical(ident_t *loc, kmp_int32 global_tid,
548 // kmp_critical_name *crit);
549 OMPRTL__kmpc_critical,
550 // Call to void __kmpc_critical_with_hint(ident_t *loc, kmp_int32
551 // global_tid, kmp_critical_name *crit, uintptr_t hint);
552 OMPRTL__kmpc_critical_with_hint,
553 // Call to void __kmpc_end_critical(ident_t *loc, kmp_int32 global_tid,
554 // kmp_critical_name *crit);
555 OMPRTL__kmpc_end_critical,
556 // Call to kmp_int32 __kmpc_cancel_barrier(ident_t *loc, kmp_int32
557 // global_tid);
558 OMPRTL__kmpc_cancel_barrier,
559 // Call to void __kmpc_barrier(ident_t *loc, kmp_int32 global_tid);
560 OMPRTL__kmpc_barrier,
561 // Call to void __kmpc_for_static_fini(ident_t *loc, kmp_int32 global_tid);
562 OMPRTL__kmpc_for_static_fini,
563 // Call to void __kmpc_serialized_parallel(ident_t *loc, kmp_int32
564 // global_tid);
565 OMPRTL__kmpc_serialized_parallel,
566 // Call to void __kmpc_end_serialized_parallel(ident_t *loc, kmp_int32
567 // global_tid);
568 OMPRTL__kmpc_end_serialized_parallel,
569 // Call to void __kmpc_push_num_threads(ident_t *loc, kmp_int32 global_tid,
570 // kmp_int32 num_threads);
571 OMPRTL__kmpc_push_num_threads,
572 // Call to void __kmpc_flush(ident_t *loc);
573 OMPRTL__kmpc_flush,
574 // Call to kmp_int32 __kmpc_master(ident_t *, kmp_int32 global_tid);
575 OMPRTL__kmpc_master,
576 // Call to void __kmpc_end_master(ident_t *, kmp_int32 global_tid);
577 OMPRTL__kmpc_end_master,
578 // Call to kmp_int32 __kmpc_omp_taskyield(ident_t *, kmp_int32 global_tid,
579 // int end_part);
580 OMPRTL__kmpc_omp_taskyield,
581 // Call to kmp_int32 __kmpc_single(ident_t *, kmp_int32 global_tid);
582 OMPRTL__kmpc_single,
583 // Call to void __kmpc_end_single(ident_t *, kmp_int32 global_tid);
584 OMPRTL__kmpc_end_single,
585 // Call to kmp_task_t * __kmpc_omp_task_alloc(ident_t *, kmp_int32 gtid,
586 // kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds,
587 // kmp_routine_entry_t *task_entry);
588 OMPRTL__kmpc_omp_task_alloc,
589 // Call to kmp_int32 __kmpc_omp_task(ident_t *, kmp_int32 gtid, kmp_task_t *
590 // new_task);
591 OMPRTL__kmpc_omp_task,
592 // Call to void __kmpc_copyprivate(ident_t *loc, kmp_int32 global_tid,
593 // size_t cpy_size, void *cpy_data, void(*cpy_func)(void *, void *),
594 // kmp_int32 didit);
595 OMPRTL__kmpc_copyprivate,
596 // Call to kmp_int32 __kmpc_reduce(ident_t *loc, kmp_int32 global_tid,
597 // kmp_int32 num_vars, size_t reduce_size, void *reduce_data, void
598 // (*reduce_func)(void *lhs_data, void *rhs_data), kmp_critical_name *lck);
599 OMPRTL__kmpc_reduce,
600 // Call to kmp_int32 __kmpc_reduce_nowait(ident_t *loc, kmp_int32
601 // global_tid, kmp_int32 num_vars, size_t reduce_size, void *reduce_data,
602 // void (*reduce_func)(void *lhs_data, void *rhs_data), kmp_critical_name
603 // *lck);
604 OMPRTL__kmpc_reduce_nowait,
605 // Call to void __kmpc_end_reduce(ident_t *loc, kmp_int32 global_tid,
606 // kmp_critical_name *lck);
607 OMPRTL__kmpc_end_reduce,
608 // Call to void __kmpc_end_reduce_nowait(ident_t *loc, kmp_int32 global_tid,
609 // kmp_critical_name *lck);
610 OMPRTL__kmpc_end_reduce_nowait,
611 // Call to void __kmpc_omp_task_begin_if0(ident_t *, kmp_int32 gtid,
612 // kmp_task_t * new_task);
613 OMPRTL__kmpc_omp_task_begin_if0,
614 // Call to void __kmpc_omp_task_complete_if0(ident_t *, kmp_int32 gtid,
615 // kmp_task_t * new_task);
616 OMPRTL__kmpc_omp_task_complete_if0,
617 // Call to void __kmpc_ordered(ident_t *loc, kmp_int32 global_tid);
618 OMPRTL__kmpc_ordered,
619 // Call to void __kmpc_end_ordered(ident_t *loc, kmp_int32 global_tid);
620 OMPRTL__kmpc_end_ordered,
621 // Call to kmp_int32 __kmpc_omp_taskwait(ident_t *loc, kmp_int32
622 // global_tid);
623 OMPRTL__kmpc_omp_taskwait,
624 // Call to void __kmpc_taskgroup(ident_t *loc, kmp_int32 global_tid);
625 OMPRTL__kmpc_taskgroup,
626 // Call to void __kmpc_end_taskgroup(ident_t *loc, kmp_int32 global_tid);
627 OMPRTL__kmpc_end_taskgroup,
628 // Call to void __kmpc_push_proc_bind(ident_t *loc, kmp_int32 global_tid,
629 // int proc_bind);
630 OMPRTL__kmpc_push_proc_bind,
631 // Call to kmp_int32 __kmpc_omp_task_with_deps(ident_t *loc_ref, kmp_int32
632 // gtid, kmp_task_t * new_task, kmp_int32 ndeps, kmp_depend_info_t
633 // *dep_list, kmp_int32 ndeps_noalias, kmp_depend_info_t *noalias_dep_list);
634 OMPRTL__kmpc_omp_task_with_deps,
635 // Call to void __kmpc_omp_wait_deps(ident_t *loc_ref, kmp_int32
636 // gtid, kmp_int32 ndeps, kmp_depend_info_t *dep_list, kmp_int32
637 // ndeps_noalias, kmp_depend_info_t *noalias_dep_list);
638 OMPRTL__kmpc_omp_wait_deps,
639 // Call to kmp_int32 __kmpc_cancellationpoint(ident_t *loc, kmp_int32
640 // global_tid, kmp_int32 cncl_kind);
641 OMPRTL__kmpc_cancellationpoint,
642 // Call to kmp_int32 __kmpc_cancel(ident_t *loc, kmp_int32 global_tid,
643 // kmp_int32 cncl_kind);
644 OMPRTL__kmpc_cancel,
Carlo Bertolli430d8ec2016-03-03 20:34:23 +0000645 // Call to void __kmpc_push_num_teams(ident_t *loc, kmp_int32 global_tid,
646 // kmp_int32 num_teams, kmp_int32 thread_limit);
647 OMPRTL__kmpc_push_num_teams,
Alexey Bataev7292c292016-04-25 12:22:29 +0000648 // Call to void __kmpc_fork_teams(ident_t *loc, kmp_int32 argc, kmpc_micro
649 // microtask, ...);
Carlo Bertolli430d8ec2016-03-03 20:34:23 +0000650 OMPRTL__kmpc_fork_teams,
Alexey Bataev7292c292016-04-25 12:22:29 +0000651 // Call to void __kmpc_taskloop(ident_t *loc, int gtid, kmp_task_t *task, int
652 // if_val, kmp_uint64 *lb, kmp_uint64 *ub, kmp_int64 st, int nogroup, int
653 // sched, kmp_uint64 grainsize, void *task_dup);
654 OMPRTL__kmpc_taskloop,
Alexey Bataev8b427062016-05-25 12:36:08 +0000655 // Call to void __kmpc_doacross_init(ident_t *loc, kmp_int32 gtid, kmp_int32
656 // num_dims, struct kmp_dim *dims);
657 OMPRTL__kmpc_doacross_init,
658 // Call to void __kmpc_doacross_fini(ident_t *loc, kmp_int32 gtid);
659 OMPRTL__kmpc_doacross_fini,
660 // Call to void __kmpc_doacross_post(ident_t *loc, kmp_int32 gtid, kmp_int64
661 // *vec);
662 OMPRTL__kmpc_doacross_post,
663 // Call to void __kmpc_doacross_wait(ident_t *loc, kmp_int32 gtid, kmp_int64
664 // *vec);
665 OMPRTL__kmpc_doacross_wait,
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000666 // Call to void *__kmpc_task_reduction_init(int gtid, int num_data, void
667 // *data);
668 OMPRTL__kmpc_task_reduction_init,
669 // Call to void *__kmpc_task_reduction_get_th_data(int gtid, void *tg, void
670 // *d);
671 OMPRTL__kmpc_task_reduction_get_th_data,
Alexey Bataev50b3c952016-02-19 10:38:26 +0000672
673 //
674 // Offloading related calls
675 //
George Rokos63bc9d62017-11-21 18:25:12 +0000676 // Call to int32_t __tgt_target(int64_t device_id, void *host_ptr, int32_t
677 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t
Alexey Bataev50b3c952016-02-19 10:38:26 +0000678 // *arg_types);
679 OMPRTL__tgt_target,
Alexey Bataeva9f77c62017-12-13 21:04:20 +0000680 // Call to int32_t __tgt_target_nowait(int64_t device_id, void *host_ptr,
681 // int32_t arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t
682 // *arg_types);
683 OMPRTL__tgt_target_nowait,
George Rokos63bc9d62017-11-21 18:25:12 +0000684 // Call to int32_t __tgt_target_teams(int64_t device_id, void *host_ptr,
685 // int32_t arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t
686 // *arg_types, int32_t num_teams, int32_t thread_limit);
Samuel Antaob68e2db2016-03-03 16:20:23 +0000687 OMPRTL__tgt_target_teams,
Alexey Bataeva9f77c62017-12-13 21:04:20 +0000688 // Call to int32_t __tgt_target_teams_nowait(int64_t device_id, void
689 // *host_ptr, int32_t arg_num, void** args_base, void **args, size_t
690 // *arg_sizes, int64_t *arg_types, int32_t num_teams, int32_t thread_limit);
691 OMPRTL__tgt_target_teams_nowait,
Alexey Bataev50b3c952016-02-19 10:38:26 +0000692 // Call to void __tgt_register_lib(__tgt_bin_desc *desc);
693 OMPRTL__tgt_register_lib,
694 // Call to void __tgt_unregister_lib(__tgt_bin_desc *desc);
695 OMPRTL__tgt_unregister_lib,
George Rokos63bc9d62017-11-21 18:25:12 +0000696 // Call to void __tgt_target_data_begin(int64_t device_id, int32_t arg_num,
697 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types);
Samuel Antaodf158d52016-04-27 22:58:19 +0000698 OMPRTL__tgt_target_data_begin,
Alexey Bataev0cc6b8e2017-12-14 17:00:17 +0000699 // Call to void __tgt_target_data_begin_nowait(int64_t device_id, int32_t
700 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t
701 // *arg_types);
702 OMPRTL__tgt_target_data_begin_nowait,
George Rokos63bc9d62017-11-21 18:25:12 +0000703 // Call to void __tgt_target_data_end(int64_t device_id, int32_t arg_num,
704 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types);
Samuel Antaodf158d52016-04-27 22:58:19 +0000705 OMPRTL__tgt_target_data_end,
Alexey Bataev0cc6b8e2017-12-14 17:00:17 +0000706 // Call to void __tgt_target_data_end_nowait(int64_t device_id, int32_t
707 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t
708 // *arg_types);
709 OMPRTL__tgt_target_data_end_nowait,
George Rokos63bc9d62017-11-21 18:25:12 +0000710 // Call to void __tgt_target_data_update(int64_t device_id, int32_t arg_num,
711 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types);
Samuel Antao8d2d7302016-05-26 18:30:22 +0000712 OMPRTL__tgt_target_data_update,
Alexey Bataev0cc6b8e2017-12-14 17:00:17 +0000713 // Call to void __tgt_target_data_update_nowait(int64_t device_id, int32_t
714 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t
715 // *arg_types);
716 OMPRTL__tgt_target_data_update_nowait,
Alexey Bataev50b3c952016-02-19 10:38:26 +0000717};
718
Alexey Bataev14fa1c62016-03-29 05:34:15 +0000719/// A basic class for pre|post-action for advanced codegen sequence for OpenMP
720/// region.
721class CleanupTy final : public EHScopeStack::Cleanup {
722 PrePostActionTy *Action;
723
724public:
725 explicit CleanupTy(PrePostActionTy *Action) : Action(Action) {}
726 void Emit(CodeGenFunction &CGF, Flags /*flags*/) override {
727 if (!CGF.HaveInsertPoint())
728 return;
729 Action->Exit(CGF);
730 }
731};
732
Hans Wennborg7eb54642015-09-10 17:07:54 +0000733} // anonymous namespace
Alexey Bataev18095712014-10-10 12:19:54 +0000734
Alexey Bataev14fa1c62016-03-29 05:34:15 +0000735void RegionCodeGenTy::operator()(CodeGenFunction &CGF) const {
736 CodeGenFunction::RunCleanupsScope Scope(CGF);
737 if (PrePostAction) {
738 CGF.EHStack.pushCleanup<CleanupTy>(NormalAndEHCleanup, PrePostAction);
739 Callback(CodeGen, CGF, *PrePostAction);
740 } else {
741 PrePostActionTy Action;
742 Callback(CodeGen, CGF, Action);
743 }
744}
745
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000746/// Check if the combiner is a call to UDR combiner and if it is so return the
747/// UDR decl used for reduction.
748static const OMPDeclareReductionDecl *
749getReductionInit(const Expr *ReductionOp) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000750 if (const auto *CE = dyn_cast<CallExpr>(ReductionOp))
751 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(CE->getCallee()))
752 if (const auto *DRE =
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000753 dyn_cast<DeclRefExpr>(OVE->getSourceExpr()->IgnoreImpCasts()))
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000754 if (const auto *DRD = dyn_cast<OMPDeclareReductionDecl>(DRE->getDecl()))
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000755 return DRD;
756 return nullptr;
757}
758
759static void emitInitWithReductionInitializer(CodeGenFunction &CGF,
760 const OMPDeclareReductionDecl *DRD,
761 const Expr *InitOp,
762 Address Private, Address Original,
763 QualType Ty) {
764 if (DRD->getInitializer()) {
765 std::pair<llvm::Function *, llvm::Function *> Reduction =
766 CGF.CGM.getOpenMPRuntime().getUserDefinedReduction(DRD);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000767 const auto *CE = cast<CallExpr>(InitOp);
768 const auto *OVE = cast<OpaqueValueExpr>(CE->getCallee());
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000769 const Expr *LHS = CE->getArg(/*Arg=*/0)->IgnoreParenImpCasts();
770 const Expr *RHS = CE->getArg(/*Arg=*/1)->IgnoreParenImpCasts();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000771 const auto *LHSDRE =
772 cast<DeclRefExpr>(cast<UnaryOperator>(LHS)->getSubExpr());
773 const auto *RHSDRE =
774 cast<DeclRefExpr>(cast<UnaryOperator>(RHS)->getSubExpr());
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000775 CodeGenFunction::OMPPrivateScope PrivateScope(CGF);
776 PrivateScope.addPrivate(cast<VarDecl>(LHSDRE->getDecl()),
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000777 [=]() { return Private; });
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000778 PrivateScope.addPrivate(cast<VarDecl>(RHSDRE->getDecl()),
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000779 [=]() { return Original; });
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000780 (void)PrivateScope.Privatize();
781 RValue Func = RValue::get(Reduction.second);
782 CodeGenFunction::OpaqueValueMapping Map(CGF, OVE, Func);
783 CGF.EmitIgnoredExpr(InitOp);
784 } else {
785 llvm::Constant *Init = CGF.CGM.EmitNullConstant(Ty);
Alexey Bataev18fa2322018-05-02 14:20:50 +0000786 std::string Name = CGF.CGM.getOpenMPRuntime().getName({"init"});
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000787 auto *GV = new llvm::GlobalVariable(
788 CGF.CGM.getModule(), Init->getType(), /*isConstant=*/true,
Alexey Bataev18fa2322018-05-02 14:20:50 +0000789 llvm::GlobalValue::PrivateLinkage, Init, Name);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000790 LValue LV = CGF.MakeNaturalAlignAddrLValue(GV, Ty);
791 RValue InitRVal;
792 switch (CGF.getEvaluationKind(Ty)) {
793 case TEK_Scalar:
Alexey Bataeva9b9cc02018-01-23 18:12:38 +0000794 InitRVal = CGF.EmitLoadOfLValue(LV, DRD->getLocation());
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000795 break;
796 case TEK_Complex:
797 InitRVal =
Alexey Bataeva9b9cc02018-01-23 18:12:38 +0000798 RValue::getComplex(CGF.EmitLoadOfComplex(LV, DRD->getLocation()));
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000799 break;
800 case TEK_Aggregate:
801 InitRVal = RValue::getAggregate(LV.getAddress());
802 break;
803 }
Alexey Bataeva9b9cc02018-01-23 18:12:38 +0000804 OpaqueValueExpr OVE(DRD->getLocation(), Ty, VK_RValue);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000805 CodeGenFunction::OpaqueValueMapping OpaqueMap(CGF, &OVE, InitRVal);
806 CGF.EmitAnyExprToMem(&OVE, Private, Ty.getQualifiers(),
807 /*IsInitializer=*/false);
808 }
809}
810
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000811/// Emit initialization of arrays of complex types.
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000812/// \param DestAddr Address of the array.
813/// \param Type Type of array.
814/// \param Init Initial expression of array.
815/// \param SrcAddr Address of the original array.
816static void EmitOMPAggregateInit(CodeGenFunction &CGF, Address DestAddr,
Alexey Bataeva7b19152017-10-12 20:03:39 +0000817 QualType Type, bool EmitDeclareReductionInit,
818 const Expr *Init,
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000819 const OMPDeclareReductionDecl *DRD,
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000820 Address SrcAddr = Address::invalid()) {
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000821 // Perform element-by-element initialization.
822 QualType ElementTy;
823
824 // Drill down to the base element type on both arrays.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000825 const ArrayType *ArrayTy = Type->getAsArrayTypeUnsafe();
826 llvm::Value *NumElements = CGF.emitArrayLength(ArrayTy, ElementTy, DestAddr);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000827 DestAddr =
828 CGF.Builder.CreateElementBitCast(DestAddr, DestAddr.getElementType());
829 if (DRD)
830 SrcAddr =
831 CGF.Builder.CreateElementBitCast(SrcAddr, DestAddr.getElementType());
832
833 llvm::Value *SrcBegin = nullptr;
834 if (DRD)
835 SrcBegin = SrcAddr.getPointer();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000836 llvm::Value *DestBegin = DestAddr.getPointer();
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000837 // Cast from pointer to array type to pointer to single element.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000838 llvm::Value *DestEnd = CGF.Builder.CreateGEP(DestBegin, NumElements);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000839 // The basic structure here is a while-do loop.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000840 llvm::BasicBlock *BodyBB = CGF.createBasicBlock("omp.arrayinit.body");
841 llvm::BasicBlock *DoneBB = CGF.createBasicBlock("omp.arrayinit.done");
842 llvm::Value *IsEmpty =
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000843 CGF.Builder.CreateICmpEQ(DestBegin, DestEnd, "omp.arrayinit.isempty");
844 CGF.Builder.CreateCondBr(IsEmpty, DoneBB, BodyBB);
845
846 // Enter the loop body, making that address the current address.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000847 llvm::BasicBlock *EntryBB = CGF.Builder.GetInsertBlock();
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000848 CGF.EmitBlock(BodyBB);
849
850 CharUnits ElementSize = CGF.getContext().getTypeSizeInChars(ElementTy);
851
852 llvm::PHINode *SrcElementPHI = nullptr;
853 Address SrcElementCurrent = Address::invalid();
854 if (DRD) {
855 SrcElementPHI = CGF.Builder.CreatePHI(SrcBegin->getType(), 2,
856 "omp.arraycpy.srcElementPast");
857 SrcElementPHI->addIncoming(SrcBegin, EntryBB);
858 SrcElementCurrent =
859 Address(SrcElementPHI,
860 SrcAddr.getAlignment().alignmentOfArrayElement(ElementSize));
861 }
862 llvm::PHINode *DestElementPHI = CGF.Builder.CreatePHI(
863 DestBegin->getType(), 2, "omp.arraycpy.destElementPast");
864 DestElementPHI->addIncoming(DestBegin, EntryBB);
865 Address DestElementCurrent =
866 Address(DestElementPHI,
867 DestAddr.getAlignment().alignmentOfArrayElement(ElementSize));
868
869 // Emit copy.
870 {
871 CodeGenFunction::RunCleanupsScope InitScope(CGF);
Alexey Bataeva7b19152017-10-12 20:03:39 +0000872 if (EmitDeclareReductionInit) {
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000873 emitInitWithReductionInitializer(CGF, DRD, Init, DestElementCurrent,
874 SrcElementCurrent, ElementTy);
875 } else
876 CGF.EmitAnyExprToMem(Init, DestElementCurrent, ElementTy.getQualifiers(),
877 /*IsInitializer=*/false);
878 }
879
880 if (DRD) {
881 // Shift the address forward by one element.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000882 llvm::Value *SrcElementNext = CGF.Builder.CreateConstGEP1_32(
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000883 SrcElementPHI, /*Idx0=*/1, "omp.arraycpy.dest.element");
884 SrcElementPHI->addIncoming(SrcElementNext, CGF.Builder.GetInsertBlock());
885 }
886
887 // Shift the address forward by one element.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000888 llvm::Value *DestElementNext = CGF.Builder.CreateConstGEP1_32(
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000889 DestElementPHI, /*Idx0=*/1, "omp.arraycpy.dest.element");
890 // Check whether we've reached the end.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000891 llvm::Value *Done =
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000892 CGF.Builder.CreateICmpEQ(DestElementNext, DestEnd, "omp.arraycpy.done");
893 CGF.Builder.CreateCondBr(Done, DoneBB, BodyBB);
894 DestElementPHI->addIncoming(DestElementNext, CGF.Builder.GetInsertBlock());
895
896 // Done.
897 CGF.EmitBlock(DoneBB, /*IsFinished=*/true);
898}
899
Alexey Bataev92327c52018-03-26 16:40:55 +0000900static llvm::Optional<OMPDeclareTargetDeclAttr::MapTypeTy>
901isDeclareTargetDeclaration(const ValueDecl *VD) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000902 for (const Decl *D : VD->redecls()) {
Alexey Bataev92327c52018-03-26 16:40:55 +0000903 if (!D->hasAttrs())
904 continue;
905 if (const auto *Attr = D->getAttr<OMPDeclareTargetDeclAttr>())
906 return Attr->getMapType();
907 }
Alexey Bataevfb388282018-05-01 14:09:46 +0000908 if (const auto *V = dyn_cast<VarDecl>(VD)) {
909 if (const VarDecl *TD = V->getTemplateInstantiationPattern())
910 return isDeclareTargetDeclaration(TD);
911 } else if (const auto *FD = dyn_cast<FunctionDecl>(VD)) {
912 if (const auto *TD = FD->getTemplateInstantiationPattern())
913 return isDeclareTargetDeclaration(TD);
914 }
915
Alexey Bataev92327c52018-03-26 16:40:55 +0000916 return llvm::None;
917}
918
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000919LValue ReductionCodeGen::emitSharedLValue(CodeGenFunction &CGF, const Expr *E) {
Alexey Bataevf47c4b42017-09-26 13:47:31 +0000920 return CGF.EmitOMPSharedLValue(E);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000921}
922
923LValue ReductionCodeGen::emitSharedLValueUB(CodeGenFunction &CGF,
924 const Expr *E) {
925 if (const auto *OASE = dyn_cast<OMPArraySectionExpr>(E))
926 return CGF.EmitOMPArraySectionExpr(OASE, /*IsLowerBound=*/false);
927 return LValue();
928}
929
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000930void ReductionCodeGen::emitAggregateInitialization(
931 CodeGenFunction &CGF, unsigned N, Address PrivateAddr, LValue SharedLVal,
932 const OMPDeclareReductionDecl *DRD) {
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000933 // Emit VarDecl with copy init for arrays.
934 // Get the address of the original variable captured in current
935 // captured region.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000936 const auto *PrivateVD =
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000937 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl());
Alexey Bataeva7b19152017-10-12 20:03:39 +0000938 bool EmitDeclareReductionInit =
939 DRD && (DRD->getInitializer() || !PrivateVD->hasInit());
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000940 EmitOMPAggregateInit(CGF, PrivateAddr, PrivateVD->getType(),
Alexey Bataeva7b19152017-10-12 20:03:39 +0000941 EmitDeclareReductionInit,
942 EmitDeclareReductionInit ? ClausesData[N].ReductionOp
943 : PrivateVD->getInit(),
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000944 DRD, SharedLVal.getAddress());
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000945}
946
947ReductionCodeGen::ReductionCodeGen(ArrayRef<const Expr *> Shareds,
948 ArrayRef<const Expr *> Privates,
949 ArrayRef<const Expr *> ReductionOps) {
950 ClausesData.reserve(Shareds.size());
951 SharedAddresses.reserve(Shareds.size());
952 Sizes.reserve(Shareds.size());
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000953 BaseDecls.reserve(Shareds.size());
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000954 auto IPriv = Privates.begin();
955 auto IRed = ReductionOps.begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000956 for (const Expr *Ref : Shareds) {
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000957 ClausesData.emplace_back(Ref, *IPriv, *IRed);
958 std::advance(IPriv, 1);
959 std::advance(IRed, 1);
960 }
961}
962
963void ReductionCodeGen::emitSharedLValue(CodeGenFunction &CGF, unsigned N) {
964 assert(SharedAddresses.size() == N &&
965 "Number of generated lvalues must be exactly N.");
Jonas Hahnfeld4525c822017-10-23 19:01:35 +0000966 LValue First = emitSharedLValue(CGF, ClausesData[N].Ref);
967 LValue Second = emitSharedLValueUB(CGF, ClausesData[N].Ref);
968 SharedAddresses.emplace_back(First, Second);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000969}
970
971void ReductionCodeGen::emitAggregateType(CodeGenFunction &CGF, unsigned N) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000972 const auto *PrivateVD =
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000973 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl());
974 QualType PrivateType = PrivateVD->getType();
975 bool AsArraySection = isa<OMPArraySectionExpr>(ClausesData[N].Ref);
Jonas Hahnfeld4525c822017-10-23 19:01:35 +0000976 if (!PrivateType->isVariablyModifiedType()) {
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000977 Sizes.emplace_back(
978 CGF.getTypeSize(
979 SharedAddresses[N].first.getType().getNonReferenceType()),
980 nullptr);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000981 return;
982 }
983 llvm::Value *Size;
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000984 llvm::Value *SizeInChars;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +0000985 auto *ElemType =
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000986 cast<llvm::PointerType>(SharedAddresses[N].first.getPointer()->getType())
987 ->getElementType();
988 auto *ElemSizeOf = llvm::ConstantExpr::getSizeOf(ElemType);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000989 if (AsArraySection) {
990 Size = CGF.Builder.CreatePtrDiff(SharedAddresses[N].second.getPointer(),
991 SharedAddresses[N].first.getPointer());
992 Size = CGF.Builder.CreateNUWAdd(
993 Size, llvm::ConstantInt::get(Size->getType(), /*V=*/1));
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000994 SizeInChars = CGF.Builder.CreateNUWMul(Size, ElemSizeOf);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000995 } else {
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000996 SizeInChars = CGF.getTypeSize(
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000997 SharedAddresses[N].first.getType().getNonReferenceType());
Alexey Bataevbe5a8b42017-07-17 13:30:36 +0000998 Size = CGF.Builder.CreateExactUDiv(SizeInChars, ElemSizeOf);
Alexey Bataev5c40bec2017-07-13 13:36:14 +0000999 }
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00001000 Sizes.emplace_back(SizeInChars, Size);
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001001 CodeGenFunction::OpaqueValueMapping OpaqueMap(
1002 CGF,
1003 cast<OpaqueValueExpr>(
1004 CGF.getContext().getAsVariableArrayType(PrivateType)->getSizeExpr()),
1005 RValue::get(Size));
1006 CGF.EmitVariablyModifiedType(PrivateType);
1007}
1008
1009void ReductionCodeGen::emitAggregateType(CodeGenFunction &CGF, unsigned N,
1010 llvm::Value *Size) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001011 const auto *PrivateVD =
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001012 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl());
1013 QualType PrivateType = PrivateVD->getType();
Jonas Hahnfeld4525c822017-10-23 19:01:35 +00001014 if (!PrivateType->isVariablyModifiedType()) {
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00001015 assert(!Size && !Sizes[N].second &&
Jonas Hahnfeld4525c822017-10-23 19:01:35 +00001016 "Size should be nullptr for non-variably modified reduction "
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001017 "items.");
1018 return;
1019 }
1020 CodeGenFunction::OpaqueValueMapping OpaqueMap(
1021 CGF,
1022 cast<OpaqueValueExpr>(
1023 CGF.getContext().getAsVariableArrayType(PrivateType)->getSizeExpr()),
1024 RValue::get(Size));
1025 CGF.EmitVariablyModifiedType(PrivateType);
1026}
1027
1028void ReductionCodeGen::emitInitialization(
1029 CodeGenFunction &CGF, unsigned N, Address PrivateAddr, LValue SharedLVal,
1030 llvm::function_ref<bool(CodeGenFunction &)> DefaultInit) {
1031 assert(SharedAddresses.size() > N && "No variable was generated");
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001032 const auto *PrivateVD =
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001033 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001034 const OMPDeclareReductionDecl *DRD =
1035 getReductionInit(ClausesData[N].ReductionOp);
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001036 QualType PrivateType = PrivateVD->getType();
1037 PrivateAddr = CGF.Builder.CreateElementBitCast(
1038 PrivateAddr, CGF.ConvertTypeForMem(PrivateType));
1039 QualType SharedType = SharedAddresses[N].first.getType();
1040 SharedLVal = CGF.MakeAddrLValue(
1041 CGF.Builder.CreateElementBitCast(SharedLVal.getAddress(),
1042 CGF.ConvertTypeForMem(SharedType)),
Ivan A. Kosarevf5f20462017-10-12 11:29:46 +00001043 SharedType, SharedAddresses[N].first.getBaseInfo(),
Ivan A. Kosarevb9c59f32017-10-31 11:05:34 +00001044 CGF.CGM.getTBAAInfoForSubobject(SharedAddresses[N].first, SharedType));
Jonas Hahnfeld4525c822017-10-23 19:01:35 +00001045 if (CGF.getContext().getAsArrayType(PrivateVD->getType())) {
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00001046 emitAggregateInitialization(CGF, N, PrivateAddr, SharedLVal, DRD);
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001047 } else if (DRD && (DRD->getInitializer() || !PrivateVD->hasInit())) {
1048 emitInitWithReductionInitializer(CGF, DRD, ClausesData[N].ReductionOp,
1049 PrivateAddr, SharedLVal.getAddress(),
1050 SharedLVal.getType());
1051 } else if (!DefaultInit(CGF) && PrivateVD->hasInit() &&
1052 !CGF.isTrivialInitializer(PrivateVD->getInit())) {
1053 CGF.EmitAnyExprToMem(PrivateVD->getInit(), PrivateAddr,
1054 PrivateVD->getType().getQualifiers(),
1055 /*IsInitializer=*/false);
1056 }
1057}
1058
1059bool ReductionCodeGen::needCleanups(unsigned N) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001060 const auto *PrivateVD =
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001061 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl());
1062 QualType PrivateType = PrivateVD->getType();
1063 QualType::DestructionKind DTorKind = PrivateType.isDestructedType();
1064 return DTorKind != QualType::DK_none;
1065}
1066
1067void ReductionCodeGen::emitCleanups(CodeGenFunction &CGF, unsigned N,
1068 Address PrivateAddr) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001069 const auto *PrivateVD =
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001070 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl());
1071 QualType PrivateType = PrivateVD->getType();
1072 QualType::DestructionKind DTorKind = PrivateType.isDestructedType();
1073 if (needCleanups(N)) {
1074 PrivateAddr = CGF.Builder.CreateElementBitCast(
1075 PrivateAddr, CGF.ConvertTypeForMem(PrivateType));
1076 CGF.pushDestroy(DTorKind, PrivateAddr, PrivateType);
1077 }
1078}
1079
1080static LValue loadToBegin(CodeGenFunction &CGF, QualType BaseTy, QualType ElTy,
1081 LValue BaseLV) {
1082 BaseTy = BaseTy.getNonReferenceType();
1083 while ((BaseTy->isPointerType() || BaseTy->isReferenceType()) &&
1084 !CGF.getContext().hasSameType(BaseTy, ElTy)) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001085 if (const auto *PtrTy = BaseTy->getAs<PointerType>()) {
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001086 BaseLV = CGF.EmitLoadOfPointerLValue(BaseLV.getAddress(), PtrTy);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001087 } else {
Ivan A. Kosarev9f9d1572017-10-30 11:49:31 +00001088 LValue RefLVal = CGF.MakeAddrLValue(BaseLV.getAddress(), BaseTy);
1089 BaseLV = CGF.EmitLoadOfReferenceLValue(RefLVal);
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001090 }
1091 BaseTy = BaseTy->getPointeeType();
1092 }
1093 return CGF.MakeAddrLValue(
1094 CGF.Builder.CreateElementBitCast(BaseLV.getAddress(),
1095 CGF.ConvertTypeForMem(ElTy)),
Ivan A. Kosarevf5f20462017-10-12 11:29:46 +00001096 BaseLV.getType(), BaseLV.getBaseInfo(),
Ivan A. Kosarevb9c59f32017-10-31 11:05:34 +00001097 CGF.CGM.getTBAAInfoForSubobject(BaseLV, BaseLV.getType()));
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001098}
1099
1100static Address castToBase(CodeGenFunction &CGF, QualType BaseTy, QualType ElTy,
1101 llvm::Type *BaseLVType, CharUnits BaseLVAlignment,
1102 llvm::Value *Addr) {
1103 Address Tmp = Address::invalid();
1104 Address TopTmp = Address::invalid();
1105 Address MostTopTmp = Address::invalid();
1106 BaseTy = BaseTy.getNonReferenceType();
1107 while ((BaseTy->isPointerType() || BaseTy->isReferenceType()) &&
1108 !CGF.getContext().hasSameType(BaseTy, ElTy)) {
1109 Tmp = CGF.CreateMemTemp(BaseTy);
1110 if (TopTmp.isValid())
1111 CGF.Builder.CreateStore(Tmp.getPointer(), TopTmp);
1112 else
1113 MostTopTmp = Tmp;
1114 TopTmp = Tmp;
1115 BaseTy = BaseTy->getPointeeType();
1116 }
1117 llvm::Type *Ty = BaseLVType;
1118 if (Tmp.isValid())
1119 Ty = Tmp.getElementType();
1120 Addr = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(Addr, Ty);
1121 if (Tmp.isValid()) {
1122 CGF.Builder.CreateStore(Addr, Tmp);
1123 return MostTopTmp;
1124 }
1125 return Address(Addr, BaseLVAlignment);
1126}
1127
Alexey Bataev1c44e152018-03-06 18:59:43 +00001128static const VarDecl *getBaseDecl(const Expr *Ref, const DeclRefExpr *&DE) {
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001129 const VarDecl *OrigVD = nullptr;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001130 if (const auto *OASE = dyn_cast<OMPArraySectionExpr>(Ref)) {
1131 const Expr *Base = OASE->getBase()->IgnoreParenImpCasts();
1132 while (const auto *TempOASE = dyn_cast<OMPArraySectionExpr>(Base))
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001133 Base = TempOASE->getBase()->IgnoreParenImpCasts();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001134 while (const auto *TempASE = dyn_cast<ArraySubscriptExpr>(Base))
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001135 Base = TempASE->getBase()->IgnoreParenImpCasts();
1136 DE = cast<DeclRefExpr>(Base);
1137 OrigVD = cast<VarDecl>(DE->getDecl());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001138 } else if (const auto *ASE = dyn_cast<ArraySubscriptExpr>(Ref)) {
1139 const Expr *Base = ASE->getBase()->IgnoreParenImpCasts();
1140 while (const auto *TempASE = dyn_cast<ArraySubscriptExpr>(Base))
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001141 Base = TempASE->getBase()->IgnoreParenImpCasts();
1142 DE = cast<DeclRefExpr>(Base);
1143 OrigVD = cast<VarDecl>(DE->getDecl());
1144 }
Alexey Bataev1c44e152018-03-06 18:59:43 +00001145 return OrigVD;
1146}
1147
1148Address ReductionCodeGen::adjustPrivateAddress(CodeGenFunction &CGF, unsigned N,
1149 Address PrivateAddr) {
1150 const DeclRefExpr *DE;
1151 if (const VarDecl *OrigVD = ::getBaseDecl(ClausesData[N].Ref, DE)) {
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001152 BaseDecls.emplace_back(OrigVD);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001153 LValue OriginalBaseLValue = CGF.EmitLValue(DE);
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001154 LValue BaseLValue =
1155 loadToBegin(CGF, OrigVD->getType(), SharedAddresses[N].first.getType(),
1156 OriginalBaseLValue);
1157 llvm::Value *Adjustment = CGF.Builder.CreatePtrDiff(
1158 BaseLValue.getPointer(), SharedAddresses[N].first.getPointer());
Jonas Hahnfeld273d2612017-12-06 19:15:28 +00001159 llvm::Value *PrivatePointer =
1160 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
1161 PrivateAddr.getPointer(),
1162 SharedAddresses[N].first.getAddress().getType());
1163 llvm::Value *Ptr = CGF.Builder.CreateGEP(PrivatePointer, Adjustment);
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001164 return castToBase(CGF, OrigVD->getType(),
1165 SharedAddresses[N].first.getType(),
Jonas Hahnfeld273d2612017-12-06 19:15:28 +00001166 OriginalBaseLValue.getAddress().getType(),
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001167 OriginalBaseLValue.getAlignment(), Ptr);
1168 }
1169 BaseDecls.emplace_back(
1170 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Ref)->getDecl()));
1171 return PrivateAddr;
1172}
1173
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00001174bool ReductionCodeGen::usesReductionInitializer(unsigned N) const {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001175 const OMPDeclareReductionDecl *DRD =
1176 getReductionInit(ClausesData[N].ReductionOp);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00001177 return DRD && DRD->getInitializer();
1178}
1179
Alexey Bataev18095712014-10-10 12:19:54 +00001180LValue CGOpenMPRegionInfo::getThreadIDVariableLValue(CodeGenFunction &CGF) {
Alexey Bataev31300ed2016-02-04 11:27:03 +00001181 return CGF.EmitLoadOfPointerLValue(
1182 CGF.GetAddrOfLocalVar(getThreadIDVariable()),
1183 getThreadIDVariable()->getType()->castAs<PointerType>());
Alexey Bataev18095712014-10-10 12:19:54 +00001184}
1185
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001186void CGOpenMPRegionInfo::EmitBody(CodeGenFunction &CGF, const Stmt * /*S*/) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00001187 if (!CGF.HaveInsertPoint())
1188 return;
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001189 // 1.2.2 OpenMP Language Terminology
1190 // Structured block - An executable statement with a single entry at the
1191 // top and a single exit at the bottom.
1192 // The point of exit cannot be a branch out of the structured block.
1193 // longjmp() and throw() must not violate the entry/exit criteria.
1194 CGF.EHStack.pushTerminate();
Alexey Bataev14fa1c62016-03-29 05:34:15 +00001195 CodeGen(CGF);
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001196 CGF.EHStack.popTerminate();
Alexey Bataev4a5bb772014-10-08 14:01:46 +00001197}
1198
Alexey Bataev62b63b12015-03-10 07:28:44 +00001199LValue CGOpenMPTaskOutlinedRegionInfo::getThreadIDVariableLValue(
1200 CodeGenFunction &CGF) {
Alexey Bataev2377fe92015-09-10 08:12:02 +00001201 return CGF.MakeAddrLValue(CGF.GetAddrOfLocalVar(getThreadIDVariable()),
1202 getThreadIDVariable()->getType(),
Ivan A. Kosarev5f8c0ca2017-10-10 09:39:32 +00001203 AlignmentSource::Decl);
Alexey Bataev62b63b12015-03-10 07:28:44 +00001204}
1205
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001206static FieldDecl *addFieldToRecordDecl(ASTContext &C, DeclContext *DC,
1207 QualType FieldTy) {
1208 auto *Field = FieldDecl::Create(
1209 C, DC, SourceLocation(), SourceLocation(), /*Id=*/nullptr, FieldTy,
1210 C.getTrivialTypeSourceInfo(FieldTy, SourceLocation()),
1211 /*BW=*/nullptr, /*Mutable=*/false, /*InitStyle=*/ICIS_NoInit);
1212 Field->setAccess(AS_public);
1213 DC->addDecl(Field);
1214 return Field;
1215}
1216
Alexey Bataev18fa2322018-05-02 14:20:50 +00001217CGOpenMPRuntime::CGOpenMPRuntime(CodeGenModule &CGM, StringRef FirstSeparator,
1218 StringRef Separator)
1219 : CGM(CGM), FirstSeparator(FirstSeparator), Separator(Separator),
1220 OffloadEntriesInfoManager(CGM) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001221 ASTContext &C = CGM.getContext();
1222 RecordDecl *RD = C.buildImplicitRecord("ident_t");
1223 QualType KmpInt32Ty = C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/1);
1224 RD->startDefinition();
1225 // reserved_1
1226 addFieldToRecordDecl(C, RD, KmpInt32Ty);
1227 // flags
1228 addFieldToRecordDecl(C, RD, KmpInt32Ty);
1229 // reserved_2
1230 addFieldToRecordDecl(C, RD, KmpInt32Ty);
1231 // reserved_3
1232 addFieldToRecordDecl(C, RD, KmpInt32Ty);
1233 // psource
1234 addFieldToRecordDecl(C, RD, C.VoidPtrTy);
1235 RD->completeDefinition();
1236 IdentQTy = C.getRecordType(RD);
1237 IdentTy = CGM.getTypes().ConvertRecordDeclType(RD);
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00001238 KmpCriticalNameTy = llvm::ArrayType::get(CGM.Int32Ty, /*NumElements*/ 8);
Samuel Antaoee8fb302016-01-06 13:42:12 +00001239
1240 loadOffloadInfoMetadata();
Alexey Bataev9959db52014-05-06 10:08:46 +00001241}
1242
Alexey Bataev91797552015-03-18 04:13:55 +00001243void CGOpenMPRuntime::clear() {
1244 InternalVars.clear();
1245}
1246
Alexey Bataev18fa2322018-05-02 14:20:50 +00001247std::string CGOpenMPRuntime::getName(ArrayRef<StringRef> Parts) const {
1248 SmallString<128> Buffer;
1249 llvm::raw_svector_ostream OS(Buffer);
1250 StringRef Sep = FirstSeparator;
1251 for (StringRef Part : Parts) {
1252 OS << Sep << Part;
1253 Sep = Separator;
1254 }
1255 return OS.str();
1256}
1257
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001258static llvm::Function *
1259emitCombinerOrInitializer(CodeGenModule &CGM, QualType Ty,
1260 const Expr *CombinerInitializer, const VarDecl *In,
1261 const VarDecl *Out, bool IsCombiner) {
1262 // void .omp_combiner.(Ty *in, Ty *out);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001263 ASTContext &C = CGM.getContext();
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001264 QualType PtrTy = C.getPointerType(Ty).withRestrict();
1265 FunctionArgList Args;
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001266 ImplicitParamDecl OmpOutParm(C, /*DC=*/nullptr, Out->getLocation(),
Alexey Bataev56223232017-06-09 13:40:18 +00001267 /*Id=*/nullptr, PtrTy, ImplicitParamDecl::Other);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00001268 ImplicitParamDecl OmpInParm(C, /*DC=*/nullptr, In->getLocation(),
Alexey Bataev56223232017-06-09 13:40:18 +00001269 /*Id=*/nullptr, PtrTy, ImplicitParamDecl::Other);
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001270 Args.push_back(&OmpOutParm);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00001271 Args.push_back(&OmpInParm);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001272 const CGFunctionInfo &FnInfo =
John McCallc56a8b32016-03-11 04:30:31 +00001273 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001274 llvm::FunctionType *FnTy = CGM.getTypes().GetFunctionType(FnInfo);
Alexey Bataev18fa2322018-05-02 14:20:50 +00001275 std::string Name = CGM.getOpenMPRuntime().getName(
1276 {IsCombiner ? "omp_combiner" : "omp_initializer", ""});
1277 auto *Fn = llvm::Function::Create(FnTy, llvm::GlobalValue::InternalLinkage,
1278 Name, &CGM.getModule());
Rafael Espindola51ec5a92018-02-28 23:46:35 +00001279 CGM.SetInternalFunctionAttributes(GlobalDecl(), Fn, FnInfo);
Chandler Carruthfcd33142016-12-23 01:24:49 +00001280 Fn->removeFnAttr(llvm::Attribute::NoInline);
Mehdi Amini6aa9e9b2017-05-29 05:38:20 +00001281 Fn->removeFnAttr(llvm::Attribute::OptimizeNone);
Alexey Bataeva839ddd2016-03-17 10:19:46 +00001282 Fn->addFnAttr(llvm::Attribute::AlwaysInline);
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001283 CodeGenFunction CGF(CGM);
1284 // Map "T omp_in;" variable to "*omp_in_parm" value in all expressions.
1285 // Map "T omp_out;" variable to "*omp_out_parm" value in all expressions.
Alexey Bataev7cae94e2018-01-04 19:45:16 +00001286 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FnInfo, Args, In->getLocation(),
1287 Out->getLocation());
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001288 CodeGenFunction::OMPPrivateScope Scope(CGF);
1289 Address AddrIn = CGF.GetAddrOfLocalVar(&OmpInParm);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001290 Scope.addPrivate(In, [&CGF, AddrIn, PtrTy]() {
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001291 return CGF.EmitLoadOfPointerLValue(AddrIn, PtrTy->castAs<PointerType>())
1292 .getAddress();
1293 });
1294 Address AddrOut = CGF.GetAddrOfLocalVar(&OmpOutParm);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001295 Scope.addPrivate(Out, [&CGF, AddrOut, PtrTy]() {
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001296 return CGF.EmitLoadOfPointerLValue(AddrOut, PtrTy->castAs<PointerType>())
1297 .getAddress();
1298 });
1299 (void)Scope.Privatize();
Alexey Bataev070f43a2017-09-06 14:49:58 +00001300 if (!IsCombiner && Out->hasInit() &&
1301 !CGF.isTrivialInitializer(Out->getInit())) {
1302 CGF.EmitAnyExprToMem(Out->getInit(), CGF.GetAddrOfLocalVar(Out),
1303 Out->getType().getQualifiers(),
1304 /*IsInitializer=*/true);
1305 }
1306 if (CombinerInitializer)
1307 CGF.EmitIgnoredExpr(CombinerInitializer);
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001308 Scope.ForceCleanup();
1309 CGF.FinishFunction();
1310 return Fn;
1311}
1312
1313void CGOpenMPRuntime::emitUserDefinedReduction(
1314 CodeGenFunction *CGF, const OMPDeclareReductionDecl *D) {
1315 if (UDRMap.count(D) > 0)
1316 return;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001317 ASTContext &C = CGM.getContext();
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001318 if (!In || !Out) {
1319 In = &C.Idents.get("omp_in");
1320 Out = &C.Idents.get("omp_out");
1321 }
1322 llvm::Function *Combiner = emitCombinerOrInitializer(
1323 CGM, D->getType(), D->getCombiner(), cast<VarDecl>(D->lookup(In).front()),
1324 cast<VarDecl>(D->lookup(Out).front()),
1325 /*IsCombiner=*/true);
1326 llvm::Function *Initializer = nullptr;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001327 if (const Expr *Init = D->getInitializer()) {
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001328 if (!Priv || !Orig) {
1329 Priv = &C.Idents.get("omp_priv");
1330 Orig = &C.Idents.get("omp_orig");
1331 }
1332 Initializer = emitCombinerOrInitializer(
Alexey Bataev070f43a2017-09-06 14:49:58 +00001333 CGM, D->getType(),
1334 D->getInitializerKind() == OMPDeclareReductionDecl::CallInit ? Init
1335 : nullptr,
1336 cast<VarDecl>(D->lookup(Orig).front()),
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001337 cast<VarDecl>(D->lookup(Priv).front()),
1338 /*IsCombiner=*/false);
1339 }
Alexey Bataev43a919f2018-04-13 17:48:43 +00001340 UDRMap.try_emplace(D, Combiner, Initializer);
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001341 if (CGF) {
1342 auto &Decls = FunctionUDRMap.FindAndConstruct(CGF->CurFn);
1343 Decls.second.push_back(D);
1344 }
1345}
1346
Alexey Bataeva839ddd2016-03-17 10:19:46 +00001347std::pair<llvm::Function *, llvm::Function *>
1348CGOpenMPRuntime::getUserDefinedReduction(const OMPDeclareReductionDecl *D) {
1349 auto I = UDRMap.find(D);
1350 if (I != UDRMap.end())
1351 return I->second;
1352 emitUserDefinedReduction(/*CGF=*/nullptr, D);
1353 return UDRMap.lookup(D);
1354}
1355
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00001356static llvm::Value *emitParallelOrTeamsOutlinedFunction(
1357 CodeGenModule &CGM, const OMPExecutableDirective &D, const CapturedStmt *CS,
1358 const VarDecl *ThreadIDVar, OpenMPDirectiveKind InnermostKind,
1359 const StringRef OutlinedHelperName, const RegionCodeGenTy &CodeGen) {
Alexey Bataev62b63b12015-03-10 07:28:44 +00001360 assert(ThreadIDVar->getType()->isPointerType() &&
1361 "thread id variable must be of type kmp_int32 *");
Alexey Bataev18095712014-10-10 12:19:54 +00001362 CodeGenFunction CGF(CGM, true);
Alexey Bataev25e5b442015-09-15 12:52:43 +00001363 bool HasCancel = false;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001364 if (const auto *OPD = dyn_cast<OMPParallelDirective>(&D))
Alexey Bataev25e5b442015-09-15 12:52:43 +00001365 HasCancel = OPD->hasCancel();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001366 else if (const auto *OPSD = dyn_cast<OMPParallelSectionsDirective>(&D))
Alexey Bataev25e5b442015-09-15 12:52:43 +00001367 HasCancel = OPSD->hasCancel();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001368 else if (const auto *OPFD = dyn_cast<OMPParallelForDirective>(&D))
Alexey Bataev25e5b442015-09-15 12:52:43 +00001369 HasCancel = OPFD->hasCancel();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001370 else if (const auto *OPFD = dyn_cast<OMPTargetParallelForDirective>(&D))
Alexey Bataev2139ed62017-11-16 18:20:21 +00001371 HasCancel = OPFD->hasCancel();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001372 else if (const auto *OPFD = dyn_cast<OMPDistributeParallelForDirective>(&D))
Alexey Bataev10a54312017-11-27 16:54:08 +00001373 HasCancel = OPFD->hasCancel();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001374 else if (const auto *OPFD =
1375 dyn_cast<OMPTeamsDistributeParallelForDirective>(&D))
Alexey Bataev10a54312017-11-27 16:54:08 +00001376 HasCancel = OPFD->hasCancel();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001377 else if (const auto *OPFD =
Alexey Bataev10a54312017-11-27 16:54:08 +00001378 dyn_cast<OMPTargetTeamsDistributeParallelForDirective>(&D))
1379 HasCancel = OPFD->hasCancel();
Alexey Bataev25e5b442015-09-15 12:52:43 +00001380 CGOpenMPOutlinedRegionInfo CGInfo(*CS, ThreadIDVar, CodeGen, InnermostKind,
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00001381 HasCancel, OutlinedHelperName);
Alexey Bataevd157d472015-06-24 03:35:38 +00001382 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CGInfo);
Alexey Bataev2377fe92015-09-10 08:12:02 +00001383 return CGF.GenerateOpenMPCapturedStmtFunction(*CS);
Alexey Bataev18095712014-10-10 12:19:54 +00001384}
1385
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00001386llvm::Value *CGOpenMPRuntime::emitParallelOutlinedFunction(
1387 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
1388 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen) {
1389 const CapturedStmt *CS = D.getCapturedStmt(OMPD_parallel);
1390 return emitParallelOrTeamsOutlinedFunction(
1391 CGM, D, CS, ThreadIDVar, InnermostKind, getOutlinedHelperName(), CodeGen);
1392}
1393
1394llvm::Value *CGOpenMPRuntime::emitTeamsOutlinedFunction(
1395 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
1396 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen) {
1397 const CapturedStmt *CS = D.getCapturedStmt(OMPD_teams);
1398 return emitParallelOrTeamsOutlinedFunction(
1399 CGM, D, CS, ThreadIDVar, InnermostKind, getOutlinedHelperName(), CodeGen);
1400}
1401
Alexey Bataev81c7ea02015-07-03 09:56:58 +00001402llvm::Value *CGOpenMPRuntime::emitTaskOutlinedFunction(
1403 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
Alexey Bataev48591dd2016-04-20 04:01:36 +00001404 const VarDecl *PartIDVar, const VarDecl *TaskTVar,
1405 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen,
1406 bool Tied, unsigned &NumberOfParts) {
1407 auto &&UntiedCodeGen = [this, &D, TaskTVar](CodeGenFunction &CGF,
1408 PrePostActionTy &) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001409 llvm::Value *ThreadID = getThreadID(CGF, D.getBeginLoc());
1410 llvm::Value *UpLoc = emitUpdateLocation(CGF, D.getBeginLoc());
Alexey Bataev48591dd2016-04-20 04:01:36 +00001411 llvm::Value *TaskArgs[] = {
1412 UpLoc, ThreadID,
1413 CGF.EmitLoadOfPointerLValue(CGF.GetAddrOfLocalVar(TaskTVar),
1414 TaskTVar->getType()->castAs<PointerType>())
1415 .getPointer()};
1416 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_omp_task), TaskArgs);
1417 };
1418 CGOpenMPTaskOutlinedRegionInfo::UntiedTaskActionTy Action(Tied, PartIDVar,
1419 UntiedCodeGen);
1420 CodeGen.setAction(Action);
Alexey Bataev62b63b12015-03-10 07:28:44 +00001421 assert(!ThreadIDVar->getType()->isPointerType() &&
1422 "thread id variable must be of type kmp_int32 for tasks");
Alexey Bataev475a7442018-01-12 19:39:11 +00001423 const OpenMPDirectiveKind Region =
1424 isOpenMPTaskLoopDirective(D.getDirectiveKind()) ? OMPD_taskloop
1425 : OMPD_task;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001426 const CapturedStmt *CS = D.getCapturedStmt(Region);
1427 const auto *TD = dyn_cast<OMPTaskDirective>(&D);
Alexey Bataev62b63b12015-03-10 07:28:44 +00001428 CodeGenFunction CGF(CGM, true);
Alexey Bataev7292c292016-04-25 12:22:29 +00001429 CGOpenMPTaskOutlinedRegionInfo CGInfo(*CS, ThreadIDVar, CodeGen,
1430 InnermostKind,
1431 TD ? TD->hasCancel() : false, Action);
Alexey Bataevd157d472015-06-24 03:35:38 +00001432 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CGInfo);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001433 llvm::Value *Res = CGF.GenerateCapturedStmtFunction(*CS);
Alexey Bataev48591dd2016-04-20 04:01:36 +00001434 if (!Tied)
1435 NumberOfParts = Action.getNumberOfParts();
1436 return Res;
Alexey Bataev62b63b12015-03-10 07:28:44 +00001437}
1438
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001439static void buildStructValue(ConstantStructBuilder &Fields, CodeGenModule &CGM,
1440 const RecordDecl *RD, const CGRecordLayout &RL,
1441 ArrayRef<llvm::Constant *> Data) {
1442 llvm::StructType *StructTy = RL.getLLVMType();
1443 unsigned PrevIdx = 0;
1444 ConstantInitBuilder CIBuilder(CGM);
1445 auto DI = Data.begin();
1446 for (const FieldDecl *FD : RD->fields()) {
1447 unsigned Idx = RL.getLLVMFieldNo(FD);
1448 // Fill the alignment.
1449 for (unsigned I = PrevIdx; I < Idx; ++I)
1450 Fields.add(llvm::Constant::getNullValue(StructTy->getElementType(I)));
1451 PrevIdx = Idx + 1;
1452 Fields.add(*DI);
1453 ++DI;
1454 }
1455}
1456
1457template <class... As>
1458static llvm::GlobalVariable *
1459createConstantGlobalStruct(CodeGenModule &CGM, QualType Ty,
1460 ArrayRef<llvm::Constant *> Data, const Twine &Name,
1461 As &&... Args) {
1462 const auto *RD = cast<RecordDecl>(Ty->getAsTagDecl());
1463 const CGRecordLayout &RL = CGM.getTypes().getCGRecordLayout(RD);
1464 ConstantInitBuilder CIBuilder(CGM);
1465 ConstantStructBuilder Fields = CIBuilder.beginStruct(RL.getLLVMType());
1466 buildStructValue(Fields, CGM, RD, RL, Data);
1467 return Fields.finishAndCreateGlobal(
1468 Name, CGM.getContext().getAlignOfGlobalVarInChars(Ty),
1469 /*isConstant=*/true, std::forward<As>(Args)...);
1470}
1471
1472template <typename T>
Benjamin Kramer651d0bf2018-05-15 21:26:47 +00001473static void
1474createConstantGlobalStructAndAddToParent(CodeGenModule &CGM, QualType Ty,
1475 ArrayRef<llvm::Constant *> Data,
1476 T &Parent) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001477 const auto *RD = cast<RecordDecl>(Ty->getAsTagDecl());
1478 const CGRecordLayout &RL = CGM.getTypes().getCGRecordLayout(RD);
1479 ConstantStructBuilder Fields = Parent.beginStruct(RL.getLLVMType());
1480 buildStructValue(Fields, CGM, RD, RL, Data);
1481 Fields.finishAndAddTo(Parent);
1482}
1483
Alexey Bataev50b3c952016-02-19 10:38:26 +00001484Address CGOpenMPRuntime::getOrCreateDefaultLocation(unsigned Flags) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001485 CharUnits Align = CGM.getContext().getTypeAlignInChars(IdentQTy);
Alexey Bataev15007ba2014-05-07 06:18:01 +00001486 llvm::Value *Entry = OpenMPDefaultLocMap.lookup(Flags);
Alexey Bataev9959db52014-05-06 10:08:46 +00001487 if (!Entry) {
1488 if (!DefaultOpenMPPSource) {
1489 // Initialize default location for psource field of ident_t structure of
1490 // all ident_t objects. Format is ";file;function;line;column;;".
1491 // Taken from
1492 // http://llvm.org/svn/llvm-project/openmp/trunk/runtime/src/kmp_str.c
1493 DefaultOpenMPPSource =
John McCall7f416cc2015-09-08 08:05:57 +00001494 CGM.GetAddrOfConstantCString(";unknown;unknown;0;0;;").getPointer();
Alexey Bataev9959db52014-05-06 10:08:46 +00001495 DefaultOpenMPPSource =
1496 llvm::ConstantExpr::getBitCast(DefaultOpenMPPSource, CGM.Int8PtrTy);
1497 }
Alexey Bataev9959db52014-05-06 10:08:46 +00001498
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001499 llvm::Constant *Data[] = {llvm::ConstantInt::getNullValue(CGM.Int32Ty),
1500 llvm::ConstantInt::get(CGM.Int32Ty, Flags),
1501 llvm::ConstantInt::getNullValue(CGM.Int32Ty),
1502 llvm::ConstantInt::getNullValue(CGM.Int32Ty),
1503 DefaultOpenMPPSource};
1504 llvm::GlobalValue *DefaultOpenMPLocation = createConstantGlobalStruct(
1505 CGM, IdentQTy, Data, "", llvm::GlobalValue::PrivateLinkage);
1506 DefaultOpenMPLocation->setUnnamedAddr(
1507 llvm::GlobalValue::UnnamedAddr::Global);
John McCall6c9f1fdb2016-11-19 08:17:24 +00001508
John McCall7f416cc2015-09-08 08:05:57 +00001509 OpenMPDefaultLocMap[Flags] = Entry = DefaultOpenMPLocation;
Alexey Bataev9959db52014-05-06 10:08:46 +00001510 }
John McCall7f416cc2015-09-08 08:05:57 +00001511 return Address(Entry, Align);
Alexey Bataev9959db52014-05-06 10:08:46 +00001512}
1513
Alexey Bataev3eff5f42015-02-25 08:32:46 +00001514llvm::Value *CGOpenMPRuntime::emitUpdateLocation(CodeGenFunction &CGF,
1515 SourceLocation Loc,
Alexey Bataev50b3c952016-02-19 10:38:26 +00001516 unsigned Flags) {
1517 Flags |= OMP_IDENT_KMPC;
Alexey Bataev9959db52014-05-06 10:08:46 +00001518 // If no debug info is generated - return global default location.
Benjamin Kramer8c305922016-02-02 11:06:51 +00001519 if (CGM.getCodeGenOpts().getDebugInfo() == codegenoptions::NoDebugInfo ||
Alexey Bataev9959db52014-05-06 10:08:46 +00001520 Loc.isInvalid())
John McCall7f416cc2015-09-08 08:05:57 +00001521 return getOrCreateDefaultLocation(Flags).getPointer();
Alexey Bataev9959db52014-05-06 10:08:46 +00001522
1523 assert(CGF.CurFn && "No function in current CodeGenFunction.");
1524
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001525 CharUnits Align = CGM.getContext().getTypeAlignInChars(IdentQTy);
John McCall7f416cc2015-09-08 08:05:57 +00001526 Address LocValue = Address::invalid();
Alexey Bataev1e4b7132014-12-03 12:11:24 +00001527 auto I = OpenMPLocThreadIDMap.find(CGF.CurFn);
1528 if (I != OpenMPLocThreadIDMap.end())
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001529 LocValue = Address(I->second.DebugLoc, Align);
John McCall7f416cc2015-09-08 08:05:57 +00001530
Alexander Musmanc6388682014-12-15 07:07:06 +00001531 // OpenMPLocThreadIDMap may have null DebugLoc and non-null ThreadID, if
1532 // GetOpenMPThreadID was called before this routine.
John McCall7f416cc2015-09-08 08:05:57 +00001533 if (!LocValue.isValid()) {
Alexey Bataev15007ba2014-05-07 06:18:01 +00001534 // Generate "ident_t .kmpc_loc.addr;"
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001535 Address AI = CGF.CreateMemTemp(IdentQTy, ".kmpc_loc.addr");
Alexey Bataev18095712014-10-10 12:19:54 +00001536 auto &Elem = OpenMPLocThreadIDMap.FindAndConstruct(CGF.CurFn);
John McCall7f416cc2015-09-08 08:05:57 +00001537 Elem.second.DebugLoc = AI.getPointer();
Alexey Bataev9959db52014-05-06 10:08:46 +00001538 LocValue = AI;
1539
1540 CGBuilderTy::InsertPointGuard IPG(CGF.Builder);
1541 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt);
Alexey Bataev3eff5f42015-02-25 08:32:46 +00001542 CGF.Builder.CreateMemCpy(LocValue, getOrCreateDefaultLocation(Flags),
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001543 CGF.getTypeSize(IdentQTy));
Alexey Bataev9959db52014-05-06 10:08:46 +00001544 }
1545
1546 // char **psource = &.kmpc_loc_<flags>.addr.psource;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001547 LValue Base = CGF.MakeAddrLValue(LocValue, IdentQTy);
1548 auto Fields = cast<RecordDecl>(IdentQTy->getAsTagDecl())->field_begin();
1549 LValue PSource =
1550 CGF.EmitLValueForField(Base, *std::next(Fields, IdentField_PSource));
Alexey Bataev9959db52014-05-06 10:08:46 +00001551
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001552 llvm::Value *OMPDebugLoc = OpenMPDebugLocMap.lookup(Loc.getRawEncoding());
Alexey Bataevf002aca2014-05-30 05:48:40 +00001553 if (OMPDebugLoc == nullptr) {
1554 SmallString<128> Buffer2;
1555 llvm::raw_svector_ostream OS2(Buffer2);
1556 // Build debug location
1557 PresumedLoc PLoc = CGF.getContext().getSourceManager().getPresumedLoc(Loc);
1558 OS2 << ";" << PLoc.getFilename() << ";";
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001559 if (const auto *FD = dyn_cast_or_null<FunctionDecl>(CGF.CurFuncDecl))
Alexey Bataevf002aca2014-05-30 05:48:40 +00001560 OS2 << FD->getQualifiedNameAsString();
Alexey Bataevf002aca2014-05-30 05:48:40 +00001561 OS2 << ";" << PLoc.getLine() << ";" << PLoc.getColumn() << ";;";
1562 OMPDebugLoc = CGF.Builder.CreateGlobalStringPtr(OS2.str());
1563 OpenMPDebugLocMap[Loc.getRawEncoding()] = OMPDebugLoc;
Alexey Bataev9959db52014-05-06 10:08:46 +00001564 }
Alexey Bataev9959db52014-05-06 10:08:46 +00001565 // *psource = ";<File>;<Function>;<Line>;<Column>;;";
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001566 CGF.EmitStoreOfScalar(OMPDebugLoc, PSource);
Alexey Bataevf002aca2014-05-30 05:48:40 +00001567
John McCall7f416cc2015-09-08 08:05:57 +00001568 // Our callers always pass this to a runtime function, so for
1569 // convenience, go ahead and return a naked pointer.
1570 return LocValue.getPointer();
Alexey Bataev9959db52014-05-06 10:08:46 +00001571}
1572
Alexey Bataev3eff5f42015-02-25 08:32:46 +00001573llvm::Value *CGOpenMPRuntime::getThreadID(CodeGenFunction &CGF,
1574 SourceLocation Loc) {
Alexey Bataev9959db52014-05-06 10:08:46 +00001575 assert(CGF.CurFn && "No function in current CodeGenFunction.");
1576
Alexey Bataev4a5bb772014-10-08 14:01:46 +00001577 llvm::Value *ThreadID = nullptr;
Alexey Bataev18095712014-10-10 12:19:54 +00001578 // Check whether we've already cached a load of the thread id in this
1579 // function.
Alexey Bataev1e4b7132014-12-03 12:11:24 +00001580 auto I = OpenMPLocThreadIDMap.find(CGF.CurFn);
Alexey Bataev18095712014-10-10 12:19:54 +00001581 if (I != OpenMPLocThreadIDMap.end()) {
1582 ThreadID = I->second.ThreadID;
Alexey Bataev03b340a2014-10-21 03:16:40 +00001583 if (ThreadID != nullptr)
1584 return ThreadID;
1585 }
Alexey Bataevaee18552017-08-16 14:01:00 +00001586 // If exceptions are enabled, do not use parameter to avoid possible crash.
Alexey Bataev5d2c9a42017-11-02 18:55:05 +00001587 if (!CGF.EHStack.requiresLandingPad() || !CGF.getLangOpts().Exceptions ||
1588 !CGF.getLangOpts().CXXExceptions ||
Alexey Bataev0e1b4582017-11-02 14:25:34 +00001589 CGF.Builder.GetInsertBlock() == CGF.AllocaInsertPt->getParent()) {
Alexey Bataevaee18552017-08-16 14:01:00 +00001590 if (auto *OMPRegionInfo =
1591 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) {
1592 if (OMPRegionInfo->getThreadIDVariable()) {
1593 // Check if this an outlined function with thread id passed as argument.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001594 LValue LVal = OMPRegionInfo->getThreadIDVariableLValue(CGF);
Alexey Bataev1e491372018-01-23 18:44:14 +00001595 ThreadID = CGF.EmitLoadOfScalar(LVal, Loc);
Alexey Bataevaee18552017-08-16 14:01:00 +00001596 // If value loaded in entry block, cache it and use it everywhere in
1597 // function.
1598 if (CGF.Builder.GetInsertBlock() == CGF.AllocaInsertPt->getParent()) {
1599 auto &Elem = OpenMPLocThreadIDMap.FindAndConstruct(CGF.CurFn);
1600 Elem.second.ThreadID = ThreadID;
1601 }
1602 return ThreadID;
Alexey Bataev8cbe0a62015-02-26 10:27:34 +00001603 }
Alexey Bataevd6c57552014-07-25 07:55:17 +00001604 }
Alexey Bataev9959db52014-05-06 10:08:46 +00001605 }
Alexey Bataev8cbe0a62015-02-26 10:27:34 +00001606
1607 // This is not an outlined function region - need to call __kmpc_int32
1608 // kmpc_global_thread_num(ident_t *loc).
1609 // Generate thread id value and cache this value for use across the
1610 // function.
1611 CGBuilderTy::InsertPointGuard IPG(CGF.Builder);
1612 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001613 llvm::CallInst *Call = CGF.Builder.CreateCall(
Alexey Bataev0e1b4582017-11-02 14:25:34 +00001614 createRuntimeFunction(OMPRTL__kmpc_global_thread_num),
1615 emitUpdateLocation(CGF, Loc));
1616 Call->setCallingConv(CGF.getRuntimeCC());
Alexey Bataev8cbe0a62015-02-26 10:27:34 +00001617 auto &Elem = OpenMPLocThreadIDMap.FindAndConstruct(CGF.CurFn);
Alexey Bataev0e1b4582017-11-02 14:25:34 +00001618 Elem.second.ThreadID = Call;
1619 return Call;
Alexey Bataev9959db52014-05-06 10:08:46 +00001620}
1621
Alexey Bataev3eff5f42015-02-25 08:32:46 +00001622void CGOpenMPRuntime::functionFinished(CodeGenFunction &CGF) {
Alexey Bataev9959db52014-05-06 10:08:46 +00001623 assert(CGF.CurFn && "No function in current CodeGenFunction.");
Alexey Bataev03b340a2014-10-21 03:16:40 +00001624 if (OpenMPLocThreadIDMap.count(CGF.CurFn))
1625 OpenMPLocThreadIDMap.erase(CGF.CurFn);
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001626 if (FunctionUDRMap.count(CGF.CurFn) > 0) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001627 for(auto *D : FunctionUDRMap[CGF.CurFn])
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001628 UDRMap.erase(D);
Alexey Bataevc5b1d322016-03-04 09:22:22 +00001629 FunctionUDRMap.erase(CGF.CurFn);
1630 }
Alexey Bataev9959db52014-05-06 10:08:46 +00001631}
1632
1633llvm::Type *CGOpenMPRuntime::getIdentTyPointerTy() {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001634 return IdentTy->getPointerTo();
Alexey Bataev9959db52014-05-06 10:08:46 +00001635}
1636
1637llvm::Type *CGOpenMPRuntime::getKmpc_MicroPointerTy() {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00001638 if (!Kmpc_MicroTy) {
1639 // Build void (*kmpc_micro)(kmp_int32 *global_tid, kmp_int32 *bound_tid,...)
1640 llvm::Type *MicroParams[] = {llvm::PointerType::getUnqual(CGM.Int32Ty),
1641 llvm::PointerType::getUnqual(CGM.Int32Ty)};
1642 Kmpc_MicroTy = llvm::FunctionType::get(CGM.VoidTy, MicroParams, true);
1643 }
Alexey Bataev9959db52014-05-06 10:08:46 +00001644 return llvm::PointerType::getUnqual(Kmpc_MicroTy);
1645}
1646
1647llvm::Constant *
Alexey Bataev50b3c952016-02-19 10:38:26 +00001648CGOpenMPRuntime::createRuntimeFunction(unsigned Function) {
Alexey Bataev9959db52014-05-06 10:08:46 +00001649 llvm::Constant *RTLFn = nullptr;
Alexey Bataev50b3c952016-02-19 10:38:26 +00001650 switch (static_cast<OpenMPRTLFunction>(Function)) {
Alexey Bataev9959db52014-05-06 10:08:46 +00001651 case OMPRTL__kmpc_fork_call: {
1652 // Build void __kmpc_fork_call(ident_t *loc, kmp_int32 argc, kmpc_micro
1653 // microtask, ...);
Alexey Bataev23b69422014-06-18 07:08:49 +00001654 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
1655 getKmpc_MicroPointerTy()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001656 auto *FnTy =
Alexey Bataevd74d0602014-10-13 06:02:40 +00001657 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ true);
Alexey Bataev9959db52014-05-06 10:08:46 +00001658 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_fork_call");
1659 break;
1660 }
1661 case OMPRTL__kmpc_global_thread_num: {
1662 // Build kmp_int32 __kmpc_global_thread_num(ident_t *loc);
Alexey Bataev23b69422014-06-18 07:08:49 +00001663 llvm::Type *TypeParams[] = {getIdentTyPointerTy()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001664 auto *FnTy =
Alexey Bataevd74d0602014-10-13 06:02:40 +00001665 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
Alexey Bataev9959db52014-05-06 10:08:46 +00001666 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_global_thread_num");
1667 break;
1668 }
Alexey Bataev97720002014-11-11 04:05:39 +00001669 case OMPRTL__kmpc_threadprivate_cached: {
1670 // Build void *__kmpc_threadprivate_cached(ident_t *loc,
1671 // kmp_int32 global_tid, void *data, size_t size, void ***cache);
1672 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
1673 CGM.VoidPtrTy, CGM.SizeTy,
1674 CGM.VoidPtrTy->getPointerTo()->getPointerTo()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001675 auto *FnTy =
Alexey Bataev97720002014-11-11 04:05:39 +00001676 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg*/ false);
1677 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_threadprivate_cached");
1678 break;
1679 }
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00001680 case OMPRTL__kmpc_critical: {
Alexey Bataevf9472182014-09-22 12:32:31 +00001681 // Build void __kmpc_critical(ident_t *loc, kmp_int32 global_tid,
1682 // kmp_critical_name *crit);
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00001683 llvm::Type *TypeParams[] = {
1684 getIdentTyPointerTy(), CGM.Int32Ty,
1685 llvm::PointerType::getUnqual(KmpCriticalNameTy)};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001686 auto *FnTy =
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00001687 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
1688 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_critical");
1689 break;
1690 }
Alexey Bataevfc57d162015-12-15 10:55:09 +00001691 case OMPRTL__kmpc_critical_with_hint: {
1692 // Build void __kmpc_critical_with_hint(ident_t *loc, kmp_int32 global_tid,
1693 // kmp_critical_name *crit, uintptr_t hint);
1694 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
1695 llvm::PointerType::getUnqual(KmpCriticalNameTy),
1696 CGM.IntPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001697 auto *FnTy =
Alexey Bataevfc57d162015-12-15 10:55:09 +00001698 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
1699 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_critical_with_hint");
1700 break;
1701 }
Alexey Bataev97720002014-11-11 04:05:39 +00001702 case OMPRTL__kmpc_threadprivate_register: {
1703 // Build void __kmpc_threadprivate_register(ident_t *, void *data,
1704 // kmpc_ctor ctor, kmpc_cctor cctor, kmpc_dtor dtor);
1705 // typedef void *(*kmpc_ctor)(void *);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001706 auto *KmpcCtorTy =
Alexey Bataev97720002014-11-11 04:05:39 +00001707 llvm::FunctionType::get(CGM.VoidPtrTy, CGM.VoidPtrTy,
1708 /*isVarArg*/ false)->getPointerTo();
1709 // typedef void *(*kmpc_cctor)(void *, void *);
1710 llvm::Type *KmpcCopyCtorTyArgs[] = {CGM.VoidPtrTy, CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001711 auto *KmpcCopyCtorTy =
Alexey Bataev97720002014-11-11 04:05:39 +00001712 llvm::FunctionType::get(CGM.VoidPtrTy, KmpcCopyCtorTyArgs,
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001713 /*isVarArg*/ false)
1714 ->getPointerTo();
Alexey Bataev97720002014-11-11 04:05:39 +00001715 // typedef void (*kmpc_dtor)(void *);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001716 auto *KmpcDtorTy =
Alexey Bataev97720002014-11-11 04:05:39 +00001717 llvm::FunctionType::get(CGM.VoidTy, CGM.VoidPtrTy, /*isVarArg*/ false)
1718 ->getPointerTo();
1719 llvm::Type *FnTyArgs[] = {getIdentTyPointerTy(), CGM.VoidPtrTy, KmpcCtorTy,
1720 KmpcCopyCtorTy, KmpcDtorTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001721 auto *FnTy = llvm::FunctionType::get(CGM.VoidTy, FnTyArgs,
Alexey Bataev97720002014-11-11 04:05:39 +00001722 /*isVarArg*/ false);
1723 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_threadprivate_register");
1724 break;
1725 }
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00001726 case OMPRTL__kmpc_end_critical: {
Alexey Bataevf9472182014-09-22 12:32:31 +00001727 // Build void __kmpc_end_critical(ident_t *loc, kmp_int32 global_tid,
1728 // kmp_critical_name *crit);
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00001729 llvm::Type *TypeParams[] = {
1730 getIdentTyPointerTy(), CGM.Int32Ty,
1731 llvm::PointerType::getUnqual(KmpCriticalNameTy)};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001732 auto *FnTy =
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00001733 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
1734 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_end_critical");
1735 break;
1736 }
Alexey Bataev8f7c1b02014-12-05 04:09:23 +00001737 case OMPRTL__kmpc_cancel_barrier: {
1738 // Build kmp_int32 __kmpc_cancel_barrier(ident_t *loc, kmp_int32
1739 // global_tid);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00001740 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001741 auto *FnTy =
Alexey Bataev8f7c1b02014-12-05 04:09:23 +00001742 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
1743 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name*/ "__kmpc_cancel_barrier");
Alexey Bataev4a5bb772014-10-08 14:01:46 +00001744 break;
1745 }
Alexey Bataev81c7ea02015-07-03 09:56:58 +00001746 case OMPRTL__kmpc_barrier: {
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00001747 // Build void __kmpc_barrier(ident_t *loc, kmp_int32 global_tid);
Alexey Bataev81c7ea02015-07-03 09:56:58 +00001748 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001749 auto *FnTy =
Alexey Bataev81c7ea02015-07-03 09:56:58 +00001750 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
1751 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name*/ "__kmpc_barrier");
1752 break;
1753 }
Alexander Musmanc6388682014-12-15 07:07:06 +00001754 case OMPRTL__kmpc_for_static_fini: {
1755 // Build void __kmpc_for_static_fini(ident_t *loc, kmp_int32 global_tid);
1756 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001757 auto *FnTy =
Alexander Musmanc6388682014-12-15 07:07:06 +00001758 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
1759 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_for_static_fini");
1760 break;
1761 }
Alexey Bataevb2059782014-10-13 08:23:51 +00001762 case OMPRTL__kmpc_push_num_threads: {
1763 // Build void __kmpc_push_num_threads(ident_t *loc, kmp_int32 global_tid,
1764 // kmp_int32 num_threads)
1765 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
1766 CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001767 auto *FnTy =
Alexey Bataevb2059782014-10-13 08:23:51 +00001768 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
1769 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_push_num_threads");
1770 break;
1771 }
Alexey Bataevd74d0602014-10-13 06:02:40 +00001772 case OMPRTL__kmpc_serialized_parallel: {
1773 // Build void __kmpc_serialized_parallel(ident_t *loc, kmp_int32
1774 // global_tid);
1775 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001776 auto *FnTy =
Alexey Bataevd74d0602014-10-13 06:02:40 +00001777 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
1778 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_serialized_parallel");
1779 break;
1780 }
1781 case OMPRTL__kmpc_end_serialized_parallel: {
1782 // Build void __kmpc_end_serialized_parallel(ident_t *loc, kmp_int32
1783 // global_tid);
1784 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001785 auto *FnTy =
Alexey Bataevd74d0602014-10-13 06:02:40 +00001786 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
1787 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_end_serialized_parallel");
1788 break;
1789 }
Alexey Bataevcc37cc12014-11-20 04:34:54 +00001790 case OMPRTL__kmpc_flush: {
Alexey Bataevd76df6d2015-02-24 12:55:09 +00001791 // Build void __kmpc_flush(ident_t *loc);
Alexey Bataevcc37cc12014-11-20 04:34:54 +00001792 llvm::Type *TypeParams[] = {getIdentTyPointerTy()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001793 auto *FnTy =
Alexey Bataevd76df6d2015-02-24 12:55:09 +00001794 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
Alexey Bataevcc37cc12014-11-20 04:34:54 +00001795 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_flush");
1796 break;
1797 }
Alexey Bataev8d690652014-12-04 07:23:53 +00001798 case OMPRTL__kmpc_master: {
1799 // Build kmp_int32 __kmpc_master(ident_t *loc, kmp_int32 global_tid);
1800 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001801 auto *FnTy =
Alexey Bataev8d690652014-12-04 07:23:53 +00001802 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false);
1803 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_master");
1804 break;
1805 }
1806 case OMPRTL__kmpc_end_master: {
1807 // Build void __kmpc_end_master(ident_t *loc, kmp_int32 global_tid);
1808 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001809 auto *FnTy =
Alexey Bataev8d690652014-12-04 07:23:53 +00001810 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1811 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_end_master");
1812 break;
1813 }
Alexey Bataev9f797f32015-02-05 05:57:51 +00001814 case OMPRTL__kmpc_omp_taskyield: {
1815 // Build kmp_int32 __kmpc_omp_taskyield(ident_t *, kmp_int32 global_tid,
1816 // int end_part);
1817 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.IntTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001818 auto *FnTy =
Alexey Bataev9f797f32015-02-05 05:57:51 +00001819 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false);
1820 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_taskyield");
1821 break;
1822 }
Alexey Bataev6956e2e2015-02-05 06:35:41 +00001823 case OMPRTL__kmpc_single: {
1824 // Build kmp_int32 __kmpc_single(ident_t *loc, kmp_int32 global_tid);
1825 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001826 auto *FnTy =
Alexey Bataev6956e2e2015-02-05 06:35:41 +00001827 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false);
1828 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_single");
1829 break;
1830 }
1831 case OMPRTL__kmpc_end_single: {
1832 // Build void __kmpc_end_single(ident_t *loc, kmp_int32 global_tid);
1833 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001834 auto *FnTy =
Alexey Bataev6956e2e2015-02-05 06:35:41 +00001835 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1836 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_end_single");
1837 break;
1838 }
Alexey Bataev62b63b12015-03-10 07:28:44 +00001839 case OMPRTL__kmpc_omp_task_alloc: {
1840 // Build kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32 gtid,
1841 // kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds,
1842 // kmp_routine_entry_t *task_entry);
1843 assert(KmpRoutineEntryPtrTy != nullptr &&
1844 "Type kmp_routine_entry_t must be created.");
1845 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.Int32Ty,
1846 CGM.SizeTy, CGM.SizeTy, KmpRoutineEntryPtrTy};
1847 // Return void * and then cast to particular kmp_task_t type.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001848 auto *FnTy =
Alexey Bataev62b63b12015-03-10 07:28:44 +00001849 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg=*/false);
1850 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_task_alloc");
1851 break;
1852 }
1853 case OMPRTL__kmpc_omp_task: {
1854 // Build kmp_int32 __kmpc_omp_task(ident_t *, kmp_int32 gtid, kmp_task_t
1855 // *new_task);
1856 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
1857 CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001858 auto *FnTy =
Alexey Bataev62b63b12015-03-10 07:28:44 +00001859 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false);
1860 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_task");
1861 break;
1862 }
Alexey Bataeva63048e2015-03-23 06:18:07 +00001863 case OMPRTL__kmpc_copyprivate: {
1864 // Build void __kmpc_copyprivate(ident_t *loc, kmp_int32 global_tid,
Alexey Bataev66beaa92015-04-30 03:47:32 +00001865 // size_t cpy_size, void *cpy_data, void(*cpy_func)(void *, void *),
Alexey Bataeva63048e2015-03-23 06:18:07 +00001866 // kmp_int32 didit);
1867 llvm::Type *CpyTypeParams[] = {CGM.VoidPtrTy, CGM.VoidPtrTy};
1868 auto *CpyFnTy =
1869 llvm::FunctionType::get(CGM.VoidTy, CpyTypeParams, /*isVarArg=*/false);
Alexey Bataev66beaa92015-04-30 03:47:32 +00001870 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.SizeTy,
Alexey Bataeva63048e2015-03-23 06:18:07 +00001871 CGM.VoidPtrTy, CpyFnTy->getPointerTo(),
1872 CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001873 auto *FnTy =
Alexey Bataeva63048e2015-03-23 06:18:07 +00001874 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1875 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_copyprivate");
1876 break;
1877 }
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001878 case OMPRTL__kmpc_reduce: {
1879 // Build kmp_int32 __kmpc_reduce(ident_t *loc, kmp_int32 global_tid,
1880 // kmp_int32 num_vars, size_t reduce_size, void *reduce_data, void
1881 // (*reduce_func)(void *lhs_data, void *rhs_data), kmp_critical_name *lck);
1882 llvm::Type *ReduceTypeParams[] = {CGM.VoidPtrTy, CGM.VoidPtrTy};
1883 auto *ReduceFnTy = llvm::FunctionType::get(CGM.VoidTy, ReduceTypeParams,
1884 /*isVarArg=*/false);
1885 llvm::Type *TypeParams[] = {
1886 getIdentTyPointerTy(), CGM.Int32Ty, CGM.Int32Ty, CGM.SizeTy,
1887 CGM.VoidPtrTy, ReduceFnTy->getPointerTo(),
1888 llvm::PointerType::getUnqual(KmpCriticalNameTy)};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001889 auto *FnTy =
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001890 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false);
1891 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_reduce");
1892 break;
1893 }
1894 case OMPRTL__kmpc_reduce_nowait: {
1895 // Build kmp_int32 __kmpc_reduce_nowait(ident_t *loc, kmp_int32
1896 // global_tid, kmp_int32 num_vars, size_t reduce_size, void *reduce_data,
1897 // void (*reduce_func)(void *lhs_data, void *rhs_data), kmp_critical_name
1898 // *lck);
1899 llvm::Type *ReduceTypeParams[] = {CGM.VoidPtrTy, CGM.VoidPtrTy};
1900 auto *ReduceFnTy = llvm::FunctionType::get(CGM.VoidTy, ReduceTypeParams,
1901 /*isVarArg=*/false);
1902 llvm::Type *TypeParams[] = {
1903 getIdentTyPointerTy(), CGM.Int32Ty, CGM.Int32Ty, CGM.SizeTy,
1904 CGM.VoidPtrTy, ReduceFnTy->getPointerTo(),
1905 llvm::PointerType::getUnqual(KmpCriticalNameTy)};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001906 auto *FnTy =
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001907 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false);
1908 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_reduce_nowait");
1909 break;
1910 }
1911 case OMPRTL__kmpc_end_reduce: {
1912 // Build void __kmpc_end_reduce(ident_t *loc, kmp_int32 global_tid,
1913 // kmp_critical_name *lck);
1914 llvm::Type *TypeParams[] = {
1915 getIdentTyPointerTy(), CGM.Int32Ty,
1916 llvm::PointerType::getUnqual(KmpCriticalNameTy)};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001917 auto *FnTy =
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001918 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1919 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_end_reduce");
1920 break;
1921 }
1922 case OMPRTL__kmpc_end_reduce_nowait: {
1923 // Build __kmpc_end_reduce_nowait(ident_t *loc, kmp_int32 global_tid,
1924 // kmp_critical_name *lck);
1925 llvm::Type *TypeParams[] = {
1926 getIdentTyPointerTy(), CGM.Int32Ty,
1927 llvm::PointerType::getUnqual(KmpCriticalNameTy)};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001928 auto *FnTy =
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001929 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1930 RTLFn =
1931 CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_end_reduce_nowait");
1932 break;
1933 }
Alexey Bataev1d677132015-04-22 13:57:31 +00001934 case OMPRTL__kmpc_omp_task_begin_if0: {
1935 // Build void __kmpc_omp_task(ident_t *, kmp_int32 gtid, kmp_task_t
1936 // *new_task);
1937 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
1938 CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001939 auto *FnTy =
Alexey Bataev1d677132015-04-22 13:57:31 +00001940 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1941 RTLFn =
1942 CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_task_begin_if0");
1943 break;
1944 }
1945 case OMPRTL__kmpc_omp_task_complete_if0: {
1946 // Build void __kmpc_omp_task(ident_t *, kmp_int32 gtid, kmp_task_t
1947 // *new_task);
1948 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
1949 CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001950 auto *FnTy =
Alexey Bataev1d677132015-04-22 13:57:31 +00001951 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1952 RTLFn = CGM.CreateRuntimeFunction(FnTy,
1953 /*Name=*/"__kmpc_omp_task_complete_if0");
1954 break;
1955 }
Alexey Bataev98eb6e32015-04-22 11:15:40 +00001956 case OMPRTL__kmpc_ordered: {
1957 // Build void __kmpc_ordered(ident_t *loc, kmp_int32 global_tid);
1958 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001959 auto *FnTy =
Alexey Bataev98eb6e32015-04-22 11:15:40 +00001960 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1961 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_ordered");
1962 break;
1963 }
1964 case OMPRTL__kmpc_end_ordered: {
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001965 // Build void __kmpc_end_ordered(ident_t *loc, kmp_int32 global_tid);
Alexey Bataev98eb6e32015-04-22 11:15:40 +00001966 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001967 auto *FnTy =
Alexey Bataev98eb6e32015-04-22 11:15:40 +00001968 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1969 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_end_ordered");
1970 break;
1971 }
Alexey Bataev8b8e2022015-04-27 05:22:09 +00001972 case OMPRTL__kmpc_omp_taskwait: {
1973 // Build kmp_int32 __kmpc_omp_taskwait(ident_t *loc, kmp_int32 global_tid);
1974 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001975 auto *FnTy =
Alexey Bataev8b8e2022015-04-27 05:22:09 +00001976 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false);
1977 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_omp_taskwait");
1978 break;
1979 }
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001980 case OMPRTL__kmpc_taskgroup: {
1981 // Build void __kmpc_taskgroup(ident_t *loc, kmp_int32 global_tid);
1982 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001983 auto *FnTy =
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001984 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1985 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_taskgroup");
1986 break;
1987 }
1988 case OMPRTL__kmpc_end_taskgroup: {
1989 // Build void __kmpc_end_taskgroup(ident_t *loc, kmp_int32 global_tid);
1990 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00001991 auto *FnTy =
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00001992 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
1993 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_end_taskgroup");
1994 break;
1995 }
Alexey Bataev7f210c62015-06-18 13:40:03 +00001996 case OMPRTL__kmpc_push_proc_bind: {
1997 // Build void __kmpc_push_proc_bind(ident_t *loc, kmp_int32 global_tid,
1998 // int proc_bind)
1999 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.IntTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002000 auto *FnTy =
Alexey Bataev7f210c62015-06-18 13:40:03 +00002001 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
2002 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_push_proc_bind");
2003 break;
2004 }
Alexey Bataev1d2353d2015-06-24 11:01:36 +00002005 case OMPRTL__kmpc_omp_task_with_deps: {
2006 // Build kmp_int32 __kmpc_omp_task_with_deps(ident_t *, kmp_int32 gtid,
2007 // kmp_task_t *new_task, kmp_int32 ndeps, kmp_depend_info_t *dep_list,
2008 // kmp_int32 ndeps_noalias, kmp_depend_info_t *noalias_dep_list);
2009 llvm::Type *TypeParams[] = {
2010 getIdentTyPointerTy(), CGM.Int32Ty, CGM.VoidPtrTy, CGM.Int32Ty,
2011 CGM.VoidPtrTy, CGM.Int32Ty, CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002012 auto *FnTy =
Alexey Bataev1d2353d2015-06-24 11:01:36 +00002013 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false);
2014 RTLFn =
2015 CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_task_with_deps");
2016 break;
2017 }
2018 case OMPRTL__kmpc_omp_wait_deps: {
2019 // Build void __kmpc_omp_wait_deps(ident_t *, kmp_int32 gtid,
2020 // kmp_int32 ndeps, kmp_depend_info_t *dep_list, kmp_int32 ndeps_noalias,
2021 // kmp_depend_info_t *noalias_dep_list);
2022 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
2023 CGM.Int32Ty, CGM.VoidPtrTy,
2024 CGM.Int32Ty, CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002025 auto *FnTy =
Alexey Bataev1d2353d2015-06-24 11:01:36 +00002026 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
2027 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_wait_deps");
2028 break;
2029 }
Alexey Bataev0f34da12015-07-02 04:17:07 +00002030 case OMPRTL__kmpc_cancellationpoint: {
2031 // Build kmp_int32 __kmpc_cancellationpoint(ident_t *loc, kmp_int32
2032 // global_tid, kmp_int32 cncl_kind)
2033 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.IntTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002034 auto *FnTy =
Alexey Bataev0f34da12015-07-02 04:17:07 +00002035 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
2036 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_cancellationpoint");
2037 break;
2038 }
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00002039 case OMPRTL__kmpc_cancel: {
2040 // Build kmp_int32 __kmpc_cancel(ident_t *loc, kmp_int32 global_tid,
2041 // kmp_int32 cncl_kind)
2042 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.IntTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002043 auto *FnTy =
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00002044 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
2045 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_cancel");
2046 break;
2047 }
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00002048 case OMPRTL__kmpc_push_num_teams: {
2049 // Build void kmpc_push_num_teams (ident_t loc, kmp_int32 global_tid,
2050 // kmp_int32 num_teams, kmp_int32 num_threads)
2051 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.Int32Ty,
2052 CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002053 auto *FnTy =
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00002054 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
2055 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_push_num_teams");
2056 break;
2057 }
2058 case OMPRTL__kmpc_fork_teams: {
2059 // Build void __kmpc_fork_teams(ident_t *loc, kmp_int32 argc, kmpc_micro
2060 // microtask, ...);
2061 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
2062 getKmpc_MicroPointerTy()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002063 auto *FnTy =
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00002064 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ true);
2065 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_fork_teams");
2066 break;
2067 }
Alexey Bataev7292c292016-04-25 12:22:29 +00002068 case OMPRTL__kmpc_taskloop: {
2069 // Build void __kmpc_taskloop(ident_t *loc, int gtid, kmp_task_t *task, int
2070 // if_val, kmp_uint64 *lb, kmp_uint64 *ub, kmp_int64 st, int nogroup, int
2071 // sched, kmp_uint64 grainsize, void *task_dup);
2072 llvm::Type *TypeParams[] = {getIdentTyPointerTy(),
2073 CGM.IntTy,
2074 CGM.VoidPtrTy,
2075 CGM.IntTy,
2076 CGM.Int64Ty->getPointerTo(),
2077 CGM.Int64Ty->getPointerTo(),
2078 CGM.Int64Ty,
2079 CGM.IntTy,
2080 CGM.IntTy,
2081 CGM.Int64Ty,
2082 CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002083 auto *FnTy =
Alexey Bataev7292c292016-04-25 12:22:29 +00002084 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
2085 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_taskloop");
2086 break;
2087 }
Alexey Bataev8b427062016-05-25 12:36:08 +00002088 case OMPRTL__kmpc_doacross_init: {
2089 // Build void __kmpc_doacross_init(ident_t *loc, kmp_int32 gtid, kmp_int32
2090 // num_dims, struct kmp_dim *dims);
2091 llvm::Type *TypeParams[] = {getIdentTyPointerTy(),
2092 CGM.Int32Ty,
2093 CGM.Int32Ty,
2094 CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002095 auto *FnTy =
Alexey Bataev8b427062016-05-25 12:36:08 +00002096 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
2097 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_doacross_init");
2098 break;
2099 }
2100 case OMPRTL__kmpc_doacross_fini: {
2101 // Build void __kmpc_doacross_fini(ident_t *loc, kmp_int32 gtid);
2102 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002103 auto *FnTy =
Alexey Bataev8b427062016-05-25 12:36:08 +00002104 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
2105 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_doacross_fini");
2106 break;
2107 }
2108 case OMPRTL__kmpc_doacross_post: {
2109 // Build void __kmpc_doacross_post(ident_t *loc, kmp_int32 gtid, kmp_int64
2110 // *vec);
2111 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
2112 CGM.Int64Ty->getPointerTo()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002113 auto *FnTy =
Alexey Bataev8b427062016-05-25 12:36:08 +00002114 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
2115 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_doacross_post");
2116 break;
2117 }
2118 case OMPRTL__kmpc_doacross_wait: {
2119 // Build void __kmpc_doacross_wait(ident_t *loc, kmp_int32 gtid, kmp_int64
2120 // *vec);
2121 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty,
2122 CGM.Int64Ty->getPointerTo()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002123 auto *FnTy =
Alexey Bataev8b427062016-05-25 12:36:08 +00002124 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
2125 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_doacross_wait");
2126 break;
2127 }
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002128 case OMPRTL__kmpc_task_reduction_init: {
2129 // Build void *__kmpc_task_reduction_init(int gtid, int num_data, void
2130 // *data);
2131 llvm::Type *TypeParams[] = {CGM.IntTy, CGM.IntTy, CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002132 auto *FnTy =
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002133 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg=*/false);
2134 RTLFn =
2135 CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_task_reduction_init");
2136 break;
2137 }
2138 case OMPRTL__kmpc_task_reduction_get_th_data: {
2139 // Build void *__kmpc_task_reduction_get_th_data(int gtid, void *tg, void
2140 // *d);
2141 llvm::Type *TypeParams[] = {CGM.IntTy, CGM.VoidPtrTy, CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002142 auto *FnTy =
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002143 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg=*/false);
2144 RTLFn = CGM.CreateRuntimeFunction(
2145 FnTy, /*Name=*/"__kmpc_task_reduction_get_th_data");
2146 break;
2147 }
Samuel Antaobed3c462015-10-02 16:14:20 +00002148 case OMPRTL__tgt_target: {
George Rokos63bc9d62017-11-21 18:25:12 +00002149 // Build int32_t __tgt_target(int64_t device_id, void *host_ptr, int32_t
2150 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t
Samuel Antaobed3c462015-10-02 16:14:20 +00002151 // *arg_types);
George Rokos63bc9d62017-11-21 18:25:12 +00002152 llvm::Type *TypeParams[] = {CGM.Int64Ty,
Samuel Antaobed3c462015-10-02 16:14:20 +00002153 CGM.VoidPtrTy,
2154 CGM.Int32Ty,
2155 CGM.VoidPtrPtrTy,
2156 CGM.VoidPtrPtrTy,
2157 CGM.SizeTy->getPointerTo(),
George Rokos63bc9d62017-11-21 18:25:12 +00002158 CGM.Int64Ty->getPointerTo()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002159 auto *FnTy =
Samuel Antaobed3c462015-10-02 16:14:20 +00002160 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
2161 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target");
2162 break;
2163 }
Alexey Bataeva9f77c62017-12-13 21:04:20 +00002164 case OMPRTL__tgt_target_nowait: {
2165 // Build int32_t __tgt_target_nowait(int64_t device_id, void *host_ptr,
2166 // int32_t arg_num, void** args_base, void **args, size_t *arg_sizes,
2167 // int64_t *arg_types);
2168 llvm::Type *TypeParams[] = {CGM.Int64Ty,
2169 CGM.VoidPtrTy,
2170 CGM.Int32Ty,
2171 CGM.VoidPtrPtrTy,
2172 CGM.VoidPtrPtrTy,
2173 CGM.SizeTy->getPointerTo(),
2174 CGM.Int64Ty->getPointerTo()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002175 auto *FnTy =
Alexey Bataeva9f77c62017-12-13 21:04:20 +00002176 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
2177 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_nowait");
2178 break;
2179 }
Samuel Antaob68e2db2016-03-03 16:20:23 +00002180 case OMPRTL__tgt_target_teams: {
George Rokos63bc9d62017-11-21 18:25:12 +00002181 // Build int32_t __tgt_target_teams(int64_t device_id, void *host_ptr,
Samuel Antaob68e2db2016-03-03 16:20:23 +00002182 // int32_t arg_num, void** args_base, void **args, size_t *arg_sizes,
George Rokos63bc9d62017-11-21 18:25:12 +00002183 // int64_t *arg_types, int32_t num_teams, int32_t thread_limit);
2184 llvm::Type *TypeParams[] = {CGM.Int64Ty,
Samuel Antaob68e2db2016-03-03 16:20:23 +00002185 CGM.VoidPtrTy,
2186 CGM.Int32Ty,
2187 CGM.VoidPtrPtrTy,
2188 CGM.VoidPtrPtrTy,
2189 CGM.SizeTy->getPointerTo(),
George Rokos63bc9d62017-11-21 18:25:12 +00002190 CGM.Int64Ty->getPointerTo(),
Samuel Antaob68e2db2016-03-03 16:20:23 +00002191 CGM.Int32Ty,
2192 CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002193 auto *FnTy =
Samuel Antaob68e2db2016-03-03 16:20:23 +00002194 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
2195 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_teams");
2196 break;
2197 }
Alexey Bataeva9f77c62017-12-13 21:04:20 +00002198 case OMPRTL__tgt_target_teams_nowait: {
2199 // Build int32_t __tgt_target_teams_nowait(int64_t device_id, void
2200 // *host_ptr, int32_t arg_num, void** args_base, void **args, size_t
2201 // *arg_sizes, int64_t *arg_types, int32_t num_teams, int32_t thread_limit);
2202 llvm::Type *TypeParams[] = {CGM.Int64Ty,
2203 CGM.VoidPtrTy,
2204 CGM.Int32Ty,
2205 CGM.VoidPtrPtrTy,
2206 CGM.VoidPtrPtrTy,
2207 CGM.SizeTy->getPointerTo(),
2208 CGM.Int64Ty->getPointerTo(),
2209 CGM.Int32Ty,
2210 CGM.Int32Ty};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002211 auto *FnTy =
Alexey Bataeva9f77c62017-12-13 21:04:20 +00002212 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
2213 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_teams_nowait");
2214 break;
2215 }
Samuel Antaoee8fb302016-01-06 13:42:12 +00002216 case OMPRTL__tgt_register_lib: {
2217 // Build void __tgt_register_lib(__tgt_bin_desc *desc);
2218 QualType ParamTy =
2219 CGM.getContext().getPointerType(getTgtBinaryDescriptorQTy());
2220 llvm::Type *TypeParams[] = {CGM.getTypes().ConvertTypeForMem(ParamTy)};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002221 auto *FnTy =
Samuel Antaoee8fb302016-01-06 13:42:12 +00002222 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
2223 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_register_lib");
2224 break;
2225 }
2226 case OMPRTL__tgt_unregister_lib: {
2227 // Build void __tgt_unregister_lib(__tgt_bin_desc *desc);
2228 QualType ParamTy =
2229 CGM.getContext().getPointerType(getTgtBinaryDescriptorQTy());
2230 llvm::Type *TypeParams[] = {CGM.getTypes().ConvertTypeForMem(ParamTy)};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002231 auto *FnTy =
Samuel Antaoee8fb302016-01-06 13:42:12 +00002232 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
2233 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_unregister_lib");
2234 break;
2235 }
Samuel Antaodf158d52016-04-27 22:58:19 +00002236 case OMPRTL__tgt_target_data_begin: {
George Rokos63bc9d62017-11-21 18:25:12 +00002237 // Build void __tgt_target_data_begin(int64_t device_id, int32_t arg_num,
2238 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types);
2239 llvm::Type *TypeParams[] = {CGM.Int64Ty,
Samuel Antaodf158d52016-04-27 22:58:19 +00002240 CGM.Int32Ty,
2241 CGM.VoidPtrPtrTy,
2242 CGM.VoidPtrPtrTy,
2243 CGM.SizeTy->getPointerTo(),
George Rokos63bc9d62017-11-21 18:25:12 +00002244 CGM.Int64Ty->getPointerTo()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002245 auto *FnTy =
Samuel Antaodf158d52016-04-27 22:58:19 +00002246 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
2247 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_begin");
2248 break;
2249 }
Alexey Bataev0cc6b8e2017-12-14 17:00:17 +00002250 case OMPRTL__tgt_target_data_begin_nowait: {
2251 // Build void __tgt_target_data_begin_nowait(int64_t device_id, int32_t
2252 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t
2253 // *arg_types);
2254 llvm::Type *TypeParams[] = {CGM.Int64Ty,
2255 CGM.Int32Ty,
2256 CGM.VoidPtrPtrTy,
2257 CGM.VoidPtrPtrTy,
2258 CGM.SizeTy->getPointerTo(),
2259 CGM.Int64Ty->getPointerTo()};
2260 auto *FnTy =
2261 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
2262 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_begin_nowait");
2263 break;
2264 }
Samuel Antaodf158d52016-04-27 22:58:19 +00002265 case OMPRTL__tgt_target_data_end: {
George Rokos63bc9d62017-11-21 18:25:12 +00002266 // Build void __tgt_target_data_end(int64_t device_id, int32_t arg_num,
2267 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types);
2268 llvm::Type *TypeParams[] = {CGM.Int64Ty,
Samuel Antaodf158d52016-04-27 22:58:19 +00002269 CGM.Int32Ty,
2270 CGM.VoidPtrPtrTy,
2271 CGM.VoidPtrPtrTy,
2272 CGM.SizeTy->getPointerTo(),
George Rokos63bc9d62017-11-21 18:25:12 +00002273 CGM.Int64Ty->getPointerTo()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002274 auto *FnTy =
Samuel Antaodf158d52016-04-27 22:58:19 +00002275 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
2276 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_end");
2277 break;
2278 }
Alexey Bataev0cc6b8e2017-12-14 17:00:17 +00002279 case OMPRTL__tgt_target_data_end_nowait: {
2280 // Build void __tgt_target_data_end_nowait(int64_t device_id, int32_t
2281 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t
2282 // *arg_types);
2283 llvm::Type *TypeParams[] = {CGM.Int64Ty,
2284 CGM.Int32Ty,
2285 CGM.VoidPtrPtrTy,
2286 CGM.VoidPtrPtrTy,
2287 CGM.SizeTy->getPointerTo(),
2288 CGM.Int64Ty->getPointerTo()};
2289 auto *FnTy =
2290 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
2291 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_end_nowait");
2292 break;
2293 }
Samuel Antao8d2d7302016-05-26 18:30:22 +00002294 case OMPRTL__tgt_target_data_update: {
George Rokos63bc9d62017-11-21 18:25:12 +00002295 // Build void __tgt_target_data_update(int64_t device_id, int32_t arg_num,
2296 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types);
2297 llvm::Type *TypeParams[] = {CGM.Int64Ty,
Samuel Antao8d2d7302016-05-26 18:30:22 +00002298 CGM.Int32Ty,
2299 CGM.VoidPtrPtrTy,
2300 CGM.VoidPtrPtrTy,
2301 CGM.SizeTy->getPointerTo(),
George Rokos63bc9d62017-11-21 18:25:12 +00002302 CGM.Int64Ty->getPointerTo()};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002303 auto *FnTy =
Samuel Antao8d2d7302016-05-26 18:30:22 +00002304 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
2305 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_update");
2306 break;
2307 }
Alexey Bataev0cc6b8e2017-12-14 17:00:17 +00002308 case OMPRTL__tgt_target_data_update_nowait: {
2309 // Build void __tgt_target_data_update_nowait(int64_t device_id, int32_t
2310 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t
2311 // *arg_types);
2312 llvm::Type *TypeParams[] = {CGM.Int64Ty,
2313 CGM.Int32Ty,
2314 CGM.VoidPtrPtrTy,
2315 CGM.VoidPtrPtrTy,
2316 CGM.SizeTy->getPointerTo(),
2317 CGM.Int64Ty->getPointerTo()};
2318 auto *FnTy =
2319 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
2320 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_update_nowait");
2321 break;
2322 }
Alexey Bataev9959db52014-05-06 10:08:46 +00002323 }
Alexey Bataev50b3c952016-02-19 10:38:26 +00002324 assert(RTLFn && "Unable to find OpenMP runtime function");
Alexey Bataev9959db52014-05-06 10:08:46 +00002325 return RTLFn;
2326}
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00002327
Alexander Musman21212e42015-03-13 10:38:23 +00002328llvm::Constant *CGOpenMPRuntime::createForStaticInitFunction(unsigned IVSize,
2329 bool IVSigned) {
2330 assert((IVSize == 32 || IVSize == 64) &&
2331 "IV size is not compatible with the omp runtime");
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002332 StringRef Name = IVSize == 32 ? (IVSigned ? "__kmpc_for_static_init_4"
2333 : "__kmpc_for_static_init_4u")
2334 : (IVSigned ? "__kmpc_for_static_init_8"
2335 : "__kmpc_for_static_init_8u");
2336 llvm::Type *ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty;
2337 auto *PtrTy = llvm::PointerType::getUnqual(ITy);
Alexander Musman21212e42015-03-13 10:38:23 +00002338 llvm::Type *TypeParams[] = {
2339 getIdentTyPointerTy(), // loc
2340 CGM.Int32Ty, // tid
2341 CGM.Int32Ty, // schedtype
2342 llvm::PointerType::getUnqual(CGM.Int32Ty), // p_lastiter
2343 PtrTy, // p_lower
2344 PtrTy, // p_upper
2345 PtrTy, // p_stride
2346 ITy, // incr
2347 ITy // chunk
2348 };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002349 auto *FnTy =
Alexander Musman21212e42015-03-13 10:38:23 +00002350 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
2351 return CGM.CreateRuntimeFunction(FnTy, Name);
2352}
2353
Alexander Musman92bdaab2015-03-12 13:37:50 +00002354llvm::Constant *CGOpenMPRuntime::createDispatchInitFunction(unsigned IVSize,
2355 bool IVSigned) {
2356 assert((IVSize == 32 || IVSize == 64) &&
2357 "IV size is not compatible with the omp runtime");
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002358 StringRef Name =
Alexander Musman92bdaab2015-03-12 13:37:50 +00002359 IVSize == 32
2360 ? (IVSigned ? "__kmpc_dispatch_init_4" : "__kmpc_dispatch_init_4u")
2361 : (IVSigned ? "__kmpc_dispatch_init_8" : "__kmpc_dispatch_init_8u");
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002362 llvm::Type *ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty;
Alexander Musman92bdaab2015-03-12 13:37:50 +00002363 llvm::Type *TypeParams[] = { getIdentTyPointerTy(), // loc
2364 CGM.Int32Ty, // tid
2365 CGM.Int32Ty, // schedtype
2366 ITy, // lower
2367 ITy, // upper
2368 ITy, // stride
2369 ITy // chunk
2370 };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002371 auto *FnTy =
Alexander Musman92bdaab2015-03-12 13:37:50 +00002372 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
2373 return CGM.CreateRuntimeFunction(FnTy, Name);
2374}
2375
Alexey Bataev98eb6e32015-04-22 11:15:40 +00002376llvm::Constant *CGOpenMPRuntime::createDispatchFiniFunction(unsigned IVSize,
2377 bool IVSigned) {
2378 assert((IVSize == 32 || IVSize == 64) &&
2379 "IV size is not compatible with the omp runtime");
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002380 StringRef Name =
Alexey Bataev98eb6e32015-04-22 11:15:40 +00002381 IVSize == 32
2382 ? (IVSigned ? "__kmpc_dispatch_fini_4" : "__kmpc_dispatch_fini_4u")
2383 : (IVSigned ? "__kmpc_dispatch_fini_8" : "__kmpc_dispatch_fini_8u");
2384 llvm::Type *TypeParams[] = {
2385 getIdentTyPointerTy(), // loc
2386 CGM.Int32Ty, // tid
2387 };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002388 auto *FnTy =
Alexey Bataev98eb6e32015-04-22 11:15:40 +00002389 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false);
2390 return CGM.CreateRuntimeFunction(FnTy, Name);
2391}
2392
Alexander Musman92bdaab2015-03-12 13:37:50 +00002393llvm::Constant *CGOpenMPRuntime::createDispatchNextFunction(unsigned IVSize,
2394 bool IVSigned) {
2395 assert((IVSize == 32 || IVSize == 64) &&
2396 "IV size is not compatible with the omp runtime");
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002397 StringRef Name =
Alexander Musman92bdaab2015-03-12 13:37:50 +00002398 IVSize == 32
2399 ? (IVSigned ? "__kmpc_dispatch_next_4" : "__kmpc_dispatch_next_4u")
2400 : (IVSigned ? "__kmpc_dispatch_next_8" : "__kmpc_dispatch_next_8u");
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002401 llvm::Type *ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty;
2402 auto *PtrTy = llvm::PointerType::getUnqual(ITy);
Alexander Musman92bdaab2015-03-12 13:37:50 +00002403 llvm::Type *TypeParams[] = {
2404 getIdentTyPointerTy(), // loc
2405 CGM.Int32Ty, // tid
2406 llvm::PointerType::getUnqual(CGM.Int32Ty), // p_lastiter
2407 PtrTy, // p_lower
2408 PtrTy, // p_upper
2409 PtrTy // p_stride
2410 };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002411 auto *FnTy =
Alexander Musman92bdaab2015-03-12 13:37:50 +00002412 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
2413 return CGM.CreateRuntimeFunction(FnTy, Name);
2414}
2415
Alexey Bataev03f270c2018-03-30 18:31:07 +00002416Address CGOpenMPRuntime::getAddrOfDeclareTargetLink(const VarDecl *VD) {
2417 if (CGM.getLangOpts().OpenMPSimd)
2418 return Address::invalid();
Alexey Bataev92327c52018-03-26 16:40:55 +00002419 llvm::Optional<OMPDeclareTargetDeclAttr::MapTypeTy> Res =
2420 isDeclareTargetDeclaration(VD);
2421 if (Res && *Res == OMPDeclareTargetDeclAttr::MT_Link) {
2422 SmallString<64> PtrName;
2423 {
2424 llvm::raw_svector_ostream OS(PtrName);
2425 OS << CGM.getMangledName(GlobalDecl(VD)) << "_decl_tgt_link_ptr";
2426 }
2427 llvm::Value *Ptr = CGM.getModule().getNamedValue(PtrName);
2428 if (!Ptr) {
2429 QualType PtrTy = CGM.getContext().getPointerType(VD->getType());
2430 Ptr = getOrCreateInternalVariable(CGM.getTypes().ConvertTypeForMem(PtrTy),
2431 PtrName);
Alexey Bataev03f270c2018-03-30 18:31:07 +00002432 if (!CGM.getLangOpts().OpenMPIsDevice) {
2433 auto *GV = cast<llvm::GlobalVariable>(Ptr);
2434 GV->setLinkage(llvm::GlobalValue::ExternalLinkage);
2435 GV->setInitializer(CGM.GetAddrOfGlobal(VD));
2436 }
2437 CGM.addUsedGlobal(cast<llvm::GlobalValue>(Ptr));
2438 registerTargetGlobalVariable(VD, cast<llvm::Constant>(Ptr));
Alexey Bataev92327c52018-03-26 16:40:55 +00002439 }
2440 return Address(Ptr, CGM.getContext().getDeclAlign(VD));
2441 }
2442 return Address::invalid();
2443}
2444
Alexey Bataev97720002014-11-11 04:05:39 +00002445llvm::Constant *
2446CGOpenMPRuntime::getOrCreateThreadPrivateCache(const VarDecl *VD) {
Samuel Antaof8b50122015-07-13 22:54:53 +00002447 assert(!CGM.getLangOpts().OpenMPUseTLS ||
2448 !CGM.getContext().getTargetInfo().isTLSSupported());
Alexey Bataev97720002014-11-11 04:05:39 +00002449 // Lookup the entry, lazily creating it if necessary.
Alexey Bataev18fa2322018-05-02 14:20:50 +00002450 std::string Suffix = getName({"cache", ""});
2451 return getOrCreateInternalVariable(
2452 CGM.Int8PtrPtrTy, Twine(CGM.getMangledName(VD)).concat(Suffix));
Alexey Bataev97720002014-11-11 04:05:39 +00002453}
2454
John McCall7f416cc2015-09-08 08:05:57 +00002455Address CGOpenMPRuntime::getAddrOfThreadPrivate(CodeGenFunction &CGF,
2456 const VarDecl *VD,
2457 Address VDAddr,
2458 SourceLocation Loc) {
Samuel Antaof8b50122015-07-13 22:54:53 +00002459 if (CGM.getLangOpts().OpenMPUseTLS &&
2460 CGM.getContext().getTargetInfo().isTLSSupported())
2461 return VDAddr;
2462
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002463 llvm::Type *VarTy = VDAddr.getElementType();
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002464 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc),
John McCall7f416cc2015-09-08 08:05:57 +00002465 CGF.Builder.CreatePointerCast(VDAddr.getPointer(),
2466 CGM.Int8PtrTy),
Alexey Bataev97720002014-11-11 04:05:39 +00002467 CGM.getSize(CGM.GetTargetTypeStoreSize(VarTy)),
2468 getOrCreateThreadPrivateCache(VD)};
John McCall7f416cc2015-09-08 08:05:57 +00002469 return Address(CGF.EmitRuntimeCall(
2470 createRuntimeFunction(OMPRTL__kmpc_threadprivate_cached), Args),
2471 VDAddr.getAlignment());
Alexey Bataev97720002014-11-11 04:05:39 +00002472}
2473
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002474void CGOpenMPRuntime::emitThreadPrivateVarInit(
John McCall7f416cc2015-09-08 08:05:57 +00002475 CodeGenFunction &CGF, Address VDAddr, llvm::Value *Ctor,
Alexey Bataev97720002014-11-11 04:05:39 +00002476 llvm::Value *CopyCtor, llvm::Value *Dtor, SourceLocation Loc) {
2477 // Call kmp_int32 __kmpc_global_thread_num(&loc) to init OpenMP runtime
2478 // library.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002479 llvm::Value *OMPLoc = emitUpdateLocation(CGF, Loc);
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002480 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_global_thread_num),
Alexey Bataev97720002014-11-11 04:05:39 +00002481 OMPLoc);
2482 // Call __kmpc_threadprivate_register(&loc, &var, ctor, cctor/*NULL*/, dtor)
2483 // to register constructor/destructor for variable.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002484 llvm::Value *Args[] = {
2485 OMPLoc, CGF.Builder.CreatePointerCast(VDAddr.getPointer(), CGM.VoidPtrTy),
2486 Ctor, CopyCtor, Dtor};
Alexey Bataev1e4b7132014-12-03 12:11:24 +00002487 CGF.EmitRuntimeCall(
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002488 createRuntimeFunction(OMPRTL__kmpc_threadprivate_register), Args);
Alexey Bataev97720002014-11-11 04:05:39 +00002489}
2490
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002491llvm::Function *CGOpenMPRuntime::emitThreadPrivateVarDefinition(
John McCall7f416cc2015-09-08 08:05:57 +00002492 const VarDecl *VD, Address VDAddr, SourceLocation Loc,
Alexey Bataev97720002014-11-11 04:05:39 +00002493 bool PerformInit, CodeGenFunction *CGF) {
Samuel Antaof8b50122015-07-13 22:54:53 +00002494 if (CGM.getLangOpts().OpenMPUseTLS &&
2495 CGM.getContext().getTargetInfo().isTLSSupported())
2496 return nullptr;
2497
Alexey Bataev97720002014-11-11 04:05:39 +00002498 VD = VD->getDefinition(CGM.getContext());
2499 if (VD && ThreadPrivateWithDefinition.count(VD) == 0) {
2500 ThreadPrivateWithDefinition.insert(VD);
2501 QualType ASTTy = VD->getType();
2502
2503 llvm::Value *Ctor = nullptr, *CopyCtor = nullptr, *Dtor = nullptr;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002504 const Expr *Init = VD->getAnyInitializer();
Alexey Bataev97720002014-11-11 04:05:39 +00002505 if (CGM.getLangOpts().CPlusPlus && PerformInit) {
2506 // Generate function that re-emits the declaration's initializer into the
2507 // threadprivate copy of the variable VD
2508 CodeGenFunction CtorCGF(CGM);
2509 FunctionArgList Args;
Alexey Bataev7cae94e2018-01-04 19:45:16 +00002510 ImplicitParamDecl Dst(CGM.getContext(), /*DC=*/nullptr, Loc,
2511 /*Id=*/nullptr, CGM.getContext().VoidPtrTy,
Alexey Bataev56223232017-06-09 13:40:18 +00002512 ImplicitParamDecl::Other);
Alexey Bataev97720002014-11-11 04:05:39 +00002513 Args.push_back(&Dst);
2514
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002515 const auto &FI = CGM.getTypes().arrangeBuiltinFunctionDeclaration(
John McCallc56a8b32016-03-11 04:30:31 +00002516 CGM.getContext().VoidPtrTy, Args);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002517 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
Alexey Bataev18fa2322018-05-02 14:20:50 +00002518 std::string Name = getName({"__kmpc_global_ctor_", ""});
2519 llvm::Function *Fn =
2520 CGM.CreateGlobalInitOrDestructFunction(FTy, Name, FI, Loc);
Alexey Bataev97720002014-11-11 04:05:39 +00002521 CtorCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidPtrTy, Fn, FI,
Alexey Bataev7cae94e2018-01-04 19:45:16 +00002522 Args, Loc, Loc);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002523 llvm::Value *ArgVal = CtorCGF.EmitLoadOfScalar(
John McCall7f416cc2015-09-08 08:05:57 +00002524 CtorCGF.GetAddrOfLocalVar(&Dst), /*Volatile=*/false,
Alexey Bataev97720002014-11-11 04:05:39 +00002525 CGM.getContext().VoidPtrTy, Dst.getLocation());
John McCall7f416cc2015-09-08 08:05:57 +00002526 Address Arg = Address(ArgVal, VDAddr.getAlignment());
Alexey Bataev7cae94e2018-01-04 19:45:16 +00002527 Arg = CtorCGF.Builder.CreateElementBitCast(
2528 Arg, CtorCGF.ConvertTypeForMem(ASTTy));
Alexey Bataev97720002014-11-11 04:05:39 +00002529 CtorCGF.EmitAnyExprToMem(Init, Arg, Init->getType().getQualifiers(),
2530 /*IsInitializer=*/true);
2531 ArgVal = CtorCGF.EmitLoadOfScalar(
John McCall7f416cc2015-09-08 08:05:57 +00002532 CtorCGF.GetAddrOfLocalVar(&Dst), /*Volatile=*/false,
Alexey Bataev97720002014-11-11 04:05:39 +00002533 CGM.getContext().VoidPtrTy, Dst.getLocation());
2534 CtorCGF.Builder.CreateStore(ArgVal, CtorCGF.ReturnValue);
2535 CtorCGF.FinishFunction();
2536 Ctor = Fn;
2537 }
2538 if (VD->getType().isDestructedType() != QualType::DK_none) {
2539 // Generate function that emits destructor call for the threadprivate copy
2540 // of the variable VD
2541 CodeGenFunction DtorCGF(CGM);
2542 FunctionArgList Args;
Alexey Bataev7cae94e2018-01-04 19:45:16 +00002543 ImplicitParamDecl Dst(CGM.getContext(), /*DC=*/nullptr, Loc,
2544 /*Id=*/nullptr, CGM.getContext().VoidPtrTy,
Alexey Bataev56223232017-06-09 13:40:18 +00002545 ImplicitParamDecl::Other);
Alexey Bataev97720002014-11-11 04:05:39 +00002546 Args.push_back(&Dst);
2547
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002548 const auto &FI = CGM.getTypes().arrangeBuiltinFunctionDeclaration(
John McCallc56a8b32016-03-11 04:30:31 +00002549 CGM.getContext().VoidTy, Args);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002550 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
Alexey Bataev18fa2322018-05-02 14:20:50 +00002551 std::string Name = getName({"__kmpc_global_dtor_", ""});
2552 llvm::Function *Fn =
2553 CGM.CreateGlobalInitOrDestructFunction(FTy, Name, FI, Loc);
Adrian Prantl1858c662016-04-24 22:22:29 +00002554 auto NL = ApplyDebugLocation::CreateEmpty(DtorCGF);
Alexey Bataev97720002014-11-11 04:05:39 +00002555 DtorCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, Fn, FI, Args,
Alexey Bataev7cae94e2018-01-04 19:45:16 +00002556 Loc, Loc);
Adrian Prantl1858c662016-04-24 22:22:29 +00002557 // Create a scope with an artificial location for the body of this function.
2558 auto AL = ApplyDebugLocation::CreateArtificial(DtorCGF);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002559 llvm::Value *ArgVal = DtorCGF.EmitLoadOfScalar(
Alexey Bataev97720002014-11-11 04:05:39 +00002560 DtorCGF.GetAddrOfLocalVar(&Dst),
John McCall7f416cc2015-09-08 08:05:57 +00002561 /*Volatile=*/false, CGM.getContext().VoidPtrTy, Dst.getLocation());
2562 DtorCGF.emitDestroy(Address(ArgVal, VDAddr.getAlignment()), ASTTy,
Alexey Bataev97720002014-11-11 04:05:39 +00002563 DtorCGF.getDestroyer(ASTTy.isDestructedType()),
2564 DtorCGF.needsEHCleanup(ASTTy.isDestructedType()));
2565 DtorCGF.FinishFunction();
2566 Dtor = Fn;
2567 }
2568 // Do not emit init function if it is not required.
2569 if (!Ctor && !Dtor)
2570 return nullptr;
2571
2572 llvm::Type *CopyCtorTyArgs[] = {CGM.VoidPtrTy, CGM.VoidPtrTy};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002573 auto *CopyCtorTy = llvm::FunctionType::get(CGM.VoidPtrTy, CopyCtorTyArgs,
2574 /*isVarArg=*/false)
2575 ->getPointerTo();
Alexey Bataev97720002014-11-11 04:05:39 +00002576 // Copying constructor for the threadprivate variable.
2577 // Must be NULL - reserved by runtime, but currently it requires that this
2578 // parameter is always NULL. Otherwise it fires assertion.
2579 CopyCtor = llvm::Constant::getNullValue(CopyCtorTy);
2580 if (Ctor == nullptr) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002581 auto *CtorTy = llvm::FunctionType::get(CGM.VoidPtrTy, CGM.VoidPtrTy,
2582 /*isVarArg=*/false)
2583 ->getPointerTo();
Alexey Bataev97720002014-11-11 04:05:39 +00002584 Ctor = llvm::Constant::getNullValue(CtorTy);
2585 }
2586 if (Dtor == nullptr) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002587 auto *DtorTy = llvm::FunctionType::get(CGM.VoidTy, CGM.VoidPtrTy,
2588 /*isVarArg=*/false)
2589 ->getPointerTo();
Alexey Bataev97720002014-11-11 04:05:39 +00002590 Dtor = llvm::Constant::getNullValue(DtorTy);
2591 }
2592 if (!CGF) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002593 auto *InitFunctionTy =
Alexey Bataev97720002014-11-11 04:05:39 +00002594 llvm::FunctionType::get(CGM.VoidTy, /*isVarArg*/ false);
Alexey Bataev18fa2322018-05-02 14:20:50 +00002595 std::string Name = getName({"__omp_threadprivate_init_", ""});
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002596 llvm::Function *InitFunction = CGM.CreateGlobalInitOrDestructFunction(
Alexey Bataev18fa2322018-05-02 14:20:50 +00002597 InitFunctionTy, Name, CGM.getTypes().arrangeNullaryFunction());
Alexey Bataev97720002014-11-11 04:05:39 +00002598 CodeGenFunction InitCGF(CGM);
2599 FunctionArgList ArgList;
2600 InitCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, InitFunction,
2601 CGM.getTypes().arrangeNullaryFunction(), ArgList,
Alexey Bataev7cae94e2018-01-04 19:45:16 +00002602 Loc, Loc);
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002603 emitThreadPrivateVarInit(InitCGF, VDAddr, Ctor, CopyCtor, Dtor, Loc);
Alexey Bataev97720002014-11-11 04:05:39 +00002604 InitCGF.FinishFunction();
2605 return InitFunction;
2606 }
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002607 emitThreadPrivateVarInit(*CGF, VDAddr, Ctor, CopyCtor, Dtor, Loc);
Alexey Bataev97720002014-11-11 04:05:39 +00002608 }
2609 return nullptr;
2610}
2611
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00002612/// Obtain information that uniquely identifies a target entry. This
Alexey Bataev34f8a702018-03-28 14:28:54 +00002613/// consists of the file and device IDs as well as line number associated with
2614/// the relevant entry source location.
2615static void getTargetEntryUniqueInfo(ASTContext &C, SourceLocation Loc,
2616 unsigned &DeviceID, unsigned &FileID,
2617 unsigned &LineNum) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002618 SourceManager &SM = C.getSourceManager();
Alexey Bataev34f8a702018-03-28 14:28:54 +00002619
2620 // The loc should be always valid and have a file ID (the user cannot use
2621 // #pragma directives in macros)
2622
2623 assert(Loc.isValid() && "Source location is expected to be always valid.");
Alexey Bataev34f8a702018-03-28 14:28:54 +00002624
2625 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
2626 assert(PLoc.isValid() && "Source location is expected to be always valid.");
2627
2628 llvm::sys::fs::UniqueID ID;
Alexey Bataev64e62dc2018-04-30 16:26:57 +00002629 if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID))
2630 SM.getDiagnostics().Report(diag::err_cannot_open_file)
2631 << PLoc.getFilename() << EC.message();
Alexey Bataev34f8a702018-03-28 14:28:54 +00002632
2633 DeviceID = ID.getDevice();
2634 FileID = ID.getFile();
2635 LineNum = PLoc.getLine();
2636}
2637
2638bool CGOpenMPRuntime::emitDeclareTargetVarDefinition(const VarDecl *VD,
2639 llvm::GlobalVariable *Addr,
2640 bool PerformInit) {
2641 Optional<OMPDeclareTargetDeclAttr::MapTypeTy> Res =
2642 isDeclareTargetDeclaration(VD);
2643 if (!Res || *Res == OMPDeclareTargetDeclAttr::MT_Link)
2644 return false;
2645 VD = VD->getDefinition(CGM.getContext());
2646 if (VD && !DeclareTargetWithDefinition.insert(VD).second)
2647 return CGM.getLangOpts().OpenMPIsDevice;
2648
2649 QualType ASTTy = VD->getType();
2650
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002651 SourceLocation Loc = VD->getCanonicalDecl()->getBeginLoc();
Alexey Bataev34f8a702018-03-28 14:28:54 +00002652 // Produce the unique prefix to identify the new target regions. We use
2653 // the source location of the variable declaration which we know to not
2654 // conflict with any target region.
2655 unsigned DeviceID;
2656 unsigned FileID;
2657 unsigned Line;
2658 getTargetEntryUniqueInfo(CGM.getContext(), Loc, DeviceID, FileID, Line);
2659 SmallString<128> Buffer, Out;
2660 {
2661 llvm::raw_svector_ostream OS(Buffer);
2662 OS << "__omp_offloading_" << llvm::format("_%x", DeviceID)
2663 << llvm::format("_%x_", FileID) << VD->getName() << "_l" << Line;
2664 }
2665
2666 const Expr *Init = VD->getAnyInitializer();
2667 if (CGM.getLangOpts().CPlusPlus && PerformInit) {
2668 llvm::Constant *Ctor;
2669 llvm::Constant *ID;
2670 if (CGM.getLangOpts().OpenMPIsDevice) {
2671 // Generate function that re-emits the declaration's initializer into
2672 // the threadprivate copy of the variable VD
2673 CodeGenFunction CtorCGF(CGM);
2674
2675 const CGFunctionInfo &FI = CGM.getTypes().arrangeNullaryFunction();
2676 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
2677 llvm::Function *Fn = CGM.CreateGlobalInitOrDestructFunction(
2678 FTy, Twine(Buffer, "_ctor"), FI, Loc);
2679 auto NL = ApplyDebugLocation::CreateEmpty(CtorCGF);
2680 CtorCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, Fn, FI,
2681 FunctionArgList(), Loc, Loc);
2682 auto AL = ApplyDebugLocation::CreateArtificial(CtorCGF);
2683 CtorCGF.EmitAnyExprToMem(Init,
2684 Address(Addr, CGM.getContext().getDeclAlign(VD)),
2685 Init->getType().getQualifiers(),
2686 /*IsInitializer=*/true);
2687 CtorCGF.FinishFunction();
2688 Ctor = Fn;
2689 ID = llvm::ConstantExpr::getBitCast(Fn, CGM.Int8PtrTy);
Alexey Bataeve253f2f2018-05-09 14:15:18 +00002690 CGM.addUsedGlobal(cast<llvm::GlobalValue>(Ctor));
Alexey Bataev34f8a702018-03-28 14:28:54 +00002691 } else {
2692 Ctor = new llvm::GlobalVariable(
2693 CGM.getModule(), CGM.Int8Ty, /*isConstant=*/true,
2694 llvm::GlobalValue::PrivateLinkage,
2695 llvm::Constant::getNullValue(CGM.Int8Ty), Twine(Buffer, "_ctor"));
2696 ID = Ctor;
2697 }
2698
2699 // Register the information for the entry associated with the constructor.
2700 Out.clear();
2701 OffloadEntriesInfoManager.registerTargetRegionEntryInfo(
2702 DeviceID, FileID, Twine(Buffer, "_ctor").toStringRef(Out), Line, Ctor,
Alexey Bataev03f270c2018-03-30 18:31:07 +00002703 ID, OffloadEntriesInfoManagerTy::OMPTargetRegionEntryCtor);
Alexey Bataev34f8a702018-03-28 14:28:54 +00002704 }
2705 if (VD->getType().isDestructedType() != QualType::DK_none) {
2706 llvm::Constant *Dtor;
2707 llvm::Constant *ID;
2708 if (CGM.getLangOpts().OpenMPIsDevice) {
2709 // Generate function that emits destructor call for the threadprivate
2710 // copy of the variable VD
2711 CodeGenFunction DtorCGF(CGM);
2712
2713 const CGFunctionInfo &FI = CGM.getTypes().arrangeNullaryFunction();
2714 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
2715 llvm::Function *Fn = CGM.CreateGlobalInitOrDestructFunction(
2716 FTy, Twine(Buffer, "_dtor"), FI, Loc);
2717 auto NL = ApplyDebugLocation::CreateEmpty(DtorCGF);
2718 DtorCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, Fn, FI,
2719 FunctionArgList(), Loc, Loc);
2720 // Create a scope with an artificial location for the body of this
2721 // function.
2722 auto AL = ApplyDebugLocation::CreateArtificial(DtorCGF);
2723 DtorCGF.emitDestroy(Address(Addr, CGM.getContext().getDeclAlign(VD)),
2724 ASTTy, DtorCGF.getDestroyer(ASTTy.isDestructedType()),
2725 DtorCGF.needsEHCleanup(ASTTy.isDestructedType()));
2726 DtorCGF.FinishFunction();
2727 Dtor = Fn;
2728 ID = llvm::ConstantExpr::getBitCast(Fn, CGM.Int8PtrTy);
Alexey Bataeve253f2f2018-05-09 14:15:18 +00002729 CGM.addUsedGlobal(cast<llvm::GlobalValue>(Dtor));
Alexey Bataev34f8a702018-03-28 14:28:54 +00002730 } else {
2731 Dtor = new llvm::GlobalVariable(
2732 CGM.getModule(), CGM.Int8Ty, /*isConstant=*/true,
2733 llvm::GlobalValue::PrivateLinkage,
2734 llvm::Constant::getNullValue(CGM.Int8Ty), Twine(Buffer, "_dtor"));
2735 ID = Dtor;
2736 }
2737 // Register the information for the entry associated with the destructor.
2738 Out.clear();
2739 OffloadEntriesInfoManager.registerTargetRegionEntryInfo(
2740 DeviceID, FileID, Twine(Buffer, "_dtor").toStringRef(Out), Line, Dtor,
Alexey Bataev03f270c2018-03-30 18:31:07 +00002741 ID, OffloadEntriesInfoManagerTy::OMPTargetRegionEntryDtor);
Alexey Bataev34f8a702018-03-28 14:28:54 +00002742 }
2743 return CGM.getLangOpts().OpenMPIsDevice;
2744}
2745
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002746Address CGOpenMPRuntime::getAddrOfArtificialThreadPrivate(CodeGenFunction &CGF,
2747 QualType VarType,
2748 StringRef Name) {
Alexey Bataev18fa2322018-05-02 14:20:50 +00002749 std::string Suffix = getName({"artificial", ""});
2750 std::string CacheSuffix = getName({"cache", ""});
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002751 llvm::Type *VarLVType = CGF.ConvertTypeForMem(VarType);
Alexey Bataev18fa2322018-05-02 14:20:50 +00002752 llvm::Value *GAddr =
2753 getOrCreateInternalVariable(VarLVType, Twine(Name).concat(Suffix));
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002754 llvm::Value *Args[] = {
2755 emitUpdateLocation(CGF, SourceLocation()),
2756 getThreadID(CGF, SourceLocation()),
2757 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(GAddr, CGM.VoidPtrTy),
2758 CGF.Builder.CreateIntCast(CGF.getTypeSize(VarType), CGM.SizeTy,
2759 /*IsSigned=*/false),
Alexey Bataev18fa2322018-05-02 14:20:50 +00002760 getOrCreateInternalVariable(
2761 CGM.VoidPtrPtrTy, Twine(Name).concat(Suffix).concat(CacheSuffix))};
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002762 return Address(
2763 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
2764 CGF.EmitRuntimeCall(
2765 createRuntimeFunction(OMPRTL__kmpc_threadprivate_cached), Args),
2766 VarLVType->getPointerTo(/*AddrSpace=*/0)),
2767 CGM.getPointerAlign());
2768}
2769
Arpith Chacko Jacobbb36fe82017-01-10 15:42:51 +00002770void CGOpenMPRuntime::emitOMPIfClause(CodeGenFunction &CGF, const Expr *Cond,
2771 const RegionCodeGenTy &ThenGen,
2772 const RegionCodeGenTy &ElseGen) {
Alexey Bataev1d677132015-04-22 13:57:31 +00002773 CodeGenFunction::LexicalScope ConditionScope(CGF, Cond->getSourceRange());
2774
2775 // If the condition constant folds and can be elided, try to avoid emitting
2776 // the condition and the dead arm of the if/else.
2777 bool CondConstant;
2778 if (CGF.ConstantFoldsToSimpleInteger(Cond, CondConstant)) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002779 if (CondConstant)
Alexey Bataev1d677132015-04-22 13:57:31 +00002780 ThenGen(CGF);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002781 else
Alexey Bataev1d677132015-04-22 13:57:31 +00002782 ElseGen(CGF);
Alexey Bataev1d677132015-04-22 13:57:31 +00002783 return;
2784 }
2785
2786 // Otherwise, the condition did not fold, or we couldn't elide it. Just
2787 // emit the conditional branch.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002788 llvm::BasicBlock *ThenBlock = CGF.createBasicBlock("omp_if.then");
2789 llvm::BasicBlock *ElseBlock = CGF.createBasicBlock("omp_if.else");
2790 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("omp_if.end");
Alexey Bataev1d677132015-04-22 13:57:31 +00002791 CGF.EmitBranchOnBoolExpr(Cond, ThenBlock, ElseBlock, /*TrueCount=*/0);
2792
2793 // Emit the 'then' code.
2794 CGF.EmitBlock(ThenBlock);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002795 ThenGen(CGF);
Alexey Bataev1d677132015-04-22 13:57:31 +00002796 CGF.EmitBranch(ContBlock);
2797 // Emit the 'else' code if present.
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002798 // There is no need to emit line number for unconditional branch.
2799 (void)ApplyDebugLocation::CreateEmpty(CGF);
2800 CGF.EmitBlock(ElseBlock);
2801 ElseGen(CGF);
2802 // There is no need to emit line number for unconditional branch.
2803 (void)ApplyDebugLocation::CreateEmpty(CGF);
2804 CGF.EmitBranch(ContBlock);
Alexey Bataev1d677132015-04-22 13:57:31 +00002805 // Emit the continuation block for code after the if.
2806 CGF.EmitBlock(ContBlock, /*IsFinished=*/true);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00002807}
2808
Alexey Bataev1d677132015-04-22 13:57:31 +00002809void CGOpenMPRuntime::emitParallelCall(CodeGenFunction &CGF, SourceLocation Loc,
2810 llvm::Value *OutlinedFn,
Alexey Bataev2377fe92015-09-10 08:12:02 +00002811 ArrayRef<llvm::Value *> CapturedVars,
Alexey Bataev1d677132015-04-22 13:57:31 +00002812 const Expr *IfCond) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00002813 if (!CGF.HaveInsertPoint())
2814 return;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002815 llvm::Value *RTLoc = emitUpdateLocation(CGF, Loc);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002816 auto &&ThenGen = [OutlinedFn, CapturedVars, RTLoc](CodeGenFunction &CGF,
2817 PrePostActionTy &) {
Alexey Bataev2377fe92015-09-10 08:12:02 +00002818 // Build call __kmpc_fork_call(loc, n, microtask, var1, .., varn);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002819 CGOpenMPRuntime &RT = CGF.CGM.getOpenMPRuntime();
Alexey Bataev2377fe92015-09-10 08:12:02 +00002820 llvm::Value *Args[] = {
2821 RTLoc,
2822 CGF.Builder.getInt32(CapturedVars.size()), // Number of captured vars
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002823 CGF.Builder.CreateBitCast(OutlinedFn, RT.getKmpc_MicroPointerTy())};
Alexey Bataev2377fe92015-09-10 08:12:02 +00002824 llvm::SmallVector<llvm::Value *, 16> RealArgs;
2825 RealArgs.append(std::begin(Args), std::end(Args));
2826 RealArgs.append(CapturedVars.begin(), CapturedVars.end());
2827
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002828 llvm::Value *RTLFn = RT.createRuntimeFunction(OMPRTL__kmpc_fork_call);
Alexey Bataev2377fe92015-09-10 08:12:02 +00002829 CGF.EmitRuntimeCall(RTLFn, RealArgs);
2830 };
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002831 auto &&ElseGen = [OutlinedFn, CapturedVars, RTLoc, Loc](CodeGenFunction &CGF,
2832 PrePostActionTy &) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002833 CGOpenMPRuntime &RT = CGF.CGM.getOpenMPRuntime();
2834 llvm::Value *ThreadID = RT.getThreadID(CGF, Loc);
Alexey Bataev1d677132015-04-22 13:57:31 +00002835 // Build calls:
2836 // __kmpc_serialized_parallel(&Loc, GTid);
2837 llvm::Value *Args[] = {RTLoc, ThreadID};
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002838 CGF.EmitRuntimeCall(
2839 RT.createRuntimeFunction(OMPRTL__kmpc_serialized_parallel), Args);
Alexey Bataevd74d0602014-10-13 06:02:40 +00002840
Alexey Bataev1d677132015-04-22 13:57:31 +00002841 // OutlinedFn(&GTid, &zero, CapturedStruct);
Alexey Bataev18fa2322018-05-02 14:20:50 +00002842 Address ZeroAddr = CGF.CreateDefaultAlignTempAlloca(CGF.Int32Ty,
2843 /*Name*/ ".zero.addr");
Alexey Bataev1d677132015-04-22 13:57:31 +00002844 CGF.InitTempAlloca(ZeroAddr, CGF.Builder.getInt32(/*C*/ 0));
Alexey Bataev2377fe92015-09-10 08:12:02 +00002845 llvm::SmallVector<llvm::Value *, 16> OutlinedFnArgs;
Alexey Bataev8521ff62018-07-25 20:03:01 +00002846 // ThreadId for serialized parallels is 0.
2847 OutlinedFnArgs.push_back(ZeroAddr.getPointer());
Alexey Bataev2377fe92015-09-10 08:12:02 +00002848 OutlinedFnArgs.push_back(ZeroAddr.getPointer());
2849 OutlinedFnArgs.append(CapturedVars.begin(), CapturedVars.end());
Alexey Bataev3c595a62017-08-14 15:01:03 +00002850 RT.emitOutlinedFunctionCall(CGF, Loc, OutlinedFn, OutlinedFnArgs);
Alexey Bataevd74d0602014-10-13 06:02:40 +00002851
Alexey Bataev1d677132015-04-22 13:57:31 +00002852 // __kmpc_end_serialized_parallel(&Loc, GTid);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002853 llvm::Value *EndArgs[] = {RT.emitUpdateLocation(CGF, Loc), ThreadID};
Alexey Bataev1d677132015-04-22 13:57:31 +00002854 CGF.EmitRuntimeCall(
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002855 RT.createRuntimeFunction(OMPRTL__kmpc_end_serialized_parallel),
2856 EndArgs);
Alexey Bataev1d677132015-04-22 13:57:31 +00002857 };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002858 if (IfCond) {
Alexey Bataev1d677132015-04-22 13:57:31 +00002859 emitOMPIfClause(CGF, IfCond, ThenGen, ElseGen);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002860 } else {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002861 RegionCodeGenTy ThenRCG(ThenGen);
2862 ThenRCG(CGF);
Alexey Bataevf539faa2016-03-28 12:58:34 +00002863 }
Alexey Bataevd74d0602014-10-13 06:02:40 +00002864}
2865
NAKAMURA Takumi59c74b222014-10-27 08:08:18 +00002866// If we're inside an (outlined) parallel region, use the region info's
Alexey Bataevd74d0602014-10-13 06:02:40 +00002867// thread-ID variable (it is passed in a first argument of the outlined function
2868// as "kmp_int32 *gtid"). Otherwise, if we're not inside parallel region, but in
2869// regular serial code region, get thread ID by calling kmp_int32
2870// kmpc_global_thread_num(ident_t *loc), stash this thread ID in a temporary and
2871// return the address of that temp.
John McCall7f416cc2015-09-08 08:05:57 +00002872Address CGOpenMPRuntime::emitThreadIDAddress(CodeGenFunction &CGF,
2873 SourceLocation Loc) {
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002874 if (auto *OMPRegionInfo =
Alexey Bataevd74d0602014-10-13 06:02:40 +00002875 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo))
Alexey Bataev8cbe0a62015-02-26 10:27:34 +00002876 if (OMPRegionInfo->getThreadIDVariable())
Alexey Bataev62b63b12015-03-10 07:28:44 +00002877 return OMPRegionInfo->getThreadIDVariableLValue(CGF).getAddress();
Alexey Bataev8cbe0a62015-02-26 10:27:34 +00002878
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002879 llvm::Value *ThreadID = getThreadID(CGF, Loc);
2880 QualType Int32Ty =
Alexey Bataevd74d0602014-10-13 06:02:40 +00002881 CGF.getContext().getIntTypeForBitwidth(/*DestWidth*/ 32, /*Signed*/ true);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002882 Address ThreadIDTemp = CGF.CreateMemTemp(Int32Ty, /*Name*/ ".threadid_temp.");
Alexey Bataevd74d0602014-10-13 06:02:40 +00002883 CGF.EmitStoreOfScalar(ThreadID,
John McCall7f416cc2015-09-08 08:05:57 +00002884 CGF.MakeAddrLValue(ThreadIDTemp, Int32Ty));
Alexey Bataevd74d0602014-10-13 06:02:40 +00002885
2886 return ThreadIDTemp;
2887}
2888
Alexey Bataev97720002014-11-11 04:05:39 +00002889llvm::Constant *
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002890CGOpenMPRuntime::getOrCreateInternalVariable(llvm::Type *Ty,
Alexey Bataev97720002014-11-11 04:05:39 +00002891 const llvm::Twine &Name) {
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00002892 SmallString<256> Buffer;
2893 llvm::raw_svector_ostream Out(Buffer);
Alexey Bataev97720002014-11-11 04:05:39 +00002894 Out << Name;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00002895 StringRef RuntimeName = Out.str();
Alexey Bataev43a919f2018-04-13 17:48:43 +00002896 auto &Elem = *InternalVars.try_emplace(RuntimeName, nullptr).first;
David Blaikie13156b62014-11-19 03:06:06 +00002897 if (Elem.second) {
2898 assert(Elem.second->getType()->getPointerElementType() == Ty &&
Alexey Bataev97720002014-11-11 04:05:39 +00002899 "OMP internal variable has different type than requested");
David Blaikie13156b62014-11-19 03:06:06 +00002900 return &*Elem.second;
Alexey Bataev97720002014-11-11 04:05:39 +00002901 }
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00002902
David Blaikie13156b62014-11-19 03:06:06 +00002903 return Elem.second = new llvm::GlobalVariable(
2904 CGM.getModule(), Ty, /*IsConstant*/ false,
2905 llvm::GlobalValue::CommonLinkage, llvm::Constant::getNullValue(Ty),
2906 Elem.first());
Alexey Bataev97720002014-11-11 04:05:39 +00002907}
2908
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002909llvm::Value *CGOpenMPRuntime::getCriticalRegionLock(StringRef CriticalName) {
Alexey Bataev18fa2322018-05-02 14:20:50 +00002910 std::string Prefix = Twine("gomp_critical_user_", CriticalName).str();
2911 std::string Name = getName({Prefix, "var"});
2912 return getOrCreateInternalVariable(KmpCriticalNameTy, Name);
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00002913}
2914
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002915namespace {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002916/// Common pre(post)-action for different OpenMP constructs.
2917class CommonActionTy final : public PrePostActionTy {
2918 llvm::Value *EnterCallee;
2919 ArrayRef<llvm::Value *> EnterArgs;
2920 llvm::Value *ExitCallee;
2921 ArrayRef<llvm::Value *> ExitArgs;
2922 bool Conditional;
2923 llvm::BasicBlock *ContBlock = nullptr;
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002924
2925public:
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002926 CommonActionTy(llvm::Value *EnterCallee, ArrayRef<llvm::Value *> EnterArgs,
2927 llvm::Value *ExitCallee, ArrayRef<llvm::Value *> ExitArgs,
2928 bool Conditional = false)
2929 : EnterCallee(EnterCallee), EnterArgs(EnterArgs), ExitCallee(ExitCallee),
2930 ExitArgs(ExitArgs), Conditional(Conditional) {}
2931 void Enter(CodeGenFunction &CGF) override {
2932 llvm::Value *EnterRes = CGF.EmitRuntimeCall(EnterCallee, EnterArgs);
2933 if (Conditional) {
2934 llvm::Value *CallBool = CGF.Builder.CreateIsNotNull(EnterRes);
2935 auto *ThenBlock = CGF.createBasicBlock("omp_if.then");
2936 ContBlock = CGF.createBasicBlock("omp_if.end");
2937 // Generate the branch (If-stmt)
2938 CGF.Builder.CreateCondBr(CallBool, ThenBlock, ContBlock);
2939 CGF.EmitBlock(ThenBlock);
2940 }
Alexey Bataeva744ff52015-05-05 09:24:37 +00002941 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002942 void Done(CodeGenFunction &CGF) {
2943 // Emit the rest of blocks/branches
2944 CGF.EmitBranch(ContBlock);
2945 CGF.EmitBlock(ContBlock, true);
2946 }
2947 void Exit(CodeGenFunction &CGF) override {
2948 CGF.EmitRuntimeCall(ExitCallee, ExitArgs);
Alexey Bataev3e6124b2015-04-10 07:48:12 +00002949 }
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002950};
Hans Wennborg7eb54642015-09-10 17:07:54 +00002951} // anonymous namespace
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002952
2953void CGOpenMPRuntime::emitCriticalRegion(CodeGenFunction &CGF,
2954 StringRef CriticalName,
2955 const RegionCodeGenTy &CriticalOpGen,
Alexey Bataevfc57d162015-12-15 10:55:09 +00002956 SourceLocation Loc, const Expr *Hint) {
2957 // __kmpc_critical[_with_hint](ident_t *, gtid, Lock[, hint]);
Alexey Bataev75ddfab2014-12-01 11:32:38 +00002958 // CriticalOpGen();
2959 // __kmpc_end_critical(ident_t *, gtid, Lock);
2960 // Prepare arguments and build a call to __kmpc_critical
Alexey Bataev8ef31412015-12-18 07:58:25 +00002961 if (!CGF.HaveInsertPoint())
2962 return;
Alexey Bataevfc57d162015-12-15 10:55:09 +00002963 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc),
2964 getCriticalRegionLock(CriticalName)};
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002965 llvm::SmallVector<llvm::Value *, 4> EnterArgs(std::begin(Args),
2966 std::end(Args));
Alexey Bataevfc57d162015-12-15 10:55:09 +00002967 if (Hint) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002968 EnterArgs.push_back(CGF.Builder.CreateIntCast(
2969 CGF.EmitScalarExpr(Hint), CGM.IntPtrTy, /*isSigned=*/false));
2970 }
2971 CommonActionTy Action(
2972 createRuntimeFunction(Hint ? OMPRTL__kmpc_critical_with_hint
2973 : OMPRTL__kmpc_critical),
2974 EnterArgs, createRuntimeFunction(OMPRTL__kmpc_end_critical), Args);
2975 CriticalOpGen.setAction(Action);
Alexey Bataevfc57d162015-12-15 10:55:09 +00002976 emitInlinedDirective(CGF, OMPD_critical, CriticalOpGen);
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00002977}
Alexey Bataev4a5bb772014-10-08 14:01:46 +00002978
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002979void CGOpenMPRuntime::emitMasterRegion(CodeGenFunction &CGF,
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002980 const RegionCodeGenTy &MasterOpGen,
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002981 SourceLocation Loc) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00002982 if (!CGF.HaveInsertPoint())
2983 return;
Alexey Bataev8d690652014-12-04 07:23:53 +00002984 // if(__kmpc_master(ident_t *, gtid)) {
2985 // MasterOpGen();
2986 // __kmpc_end_master(ident_t *, gtid);
2987 // }
2988 // Prepare arguments and build a call to __kmpc_master
Alexey Bataevd7614fb2015-04-10 06:33:45 +00002989 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)};
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002990 CommonActionTy Action(createRuntimeFunction(OMPRTL__kmpc_master), Args,
2991 createRuntimeFunction(OMPRTL__kmpc_end_master), Args,
2992 /*Conditional=*/true);
2993 MasterOpGen.setAction(Action);
2994 emitInlinedDirective(CGF, OMPD_master, MasterOpGen);
2995 Action.Done(CGF);
Alexey Bataev8d690652014-12-04 07:23:53 +00002996}
2997
Alexey Bataev3eff5f42015-02-25 08:32:46 +00002998void CGOpenMPRuntime::emitTaskyieldCall(CodeGenFunction &CGF,
2999 SourceLocation Loc) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003000 if (!CGF.HaveInsertPoint())
3001 return;
Alexey Bataev9f797f32015-02-05 05:57:51 +00003002 // Build call __kmpc_omp_taskyield(loc, thread_id, 0);
3003 llvm::Value *Args[] = {
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003004 emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc),
Alexey Bataev9f797f32015-02-05 05:57:51 +00003005 llvm::ConstantInt::get(CGM.IntTy, /*V=*/0, /*isSigned=*/true)};
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003006 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_omp_taskyield), Args);
Alexey Bataev48591dd2016-04-20 04:01:36 +00003007 if (auto *Region = dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo))
3008 Region->emitUntiedSwitch(CGF);
Alexey Bataev9f797f32015-02-05 05:57:51 +00003009}
3010
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00003011void CGOpenMPRuntime::emitTaskgroupRegion(CodeGenFunction &CGF,
3012 const RegionCodeGenTy &TaskgroupOpGen,
3013 SourceLocation Loc) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003014 if (!CGF.HaveInsertPoint())
3015 return;
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00003016 // __kmpc_taskgroup(ident_t *, gtid);
3017 // TaskgroupOpGen();
3018 // __kmpc_end_taskgroup(ident_t *, gtid);
3019 // Prepare arguments and build a call to __kmpc_taskgroup
Alexey Bataev14fa1c62016-03-29 05:34:15 +00003020 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)};
3021 CommonActionTy Action(createRuntimeFunction(OMPRTL__kmpc_taskgroup), Args,
3022 createRuntimeFunction(OMPRTL__kmpc_end_taskgroup),
3023 Args);
3024 TaskgroupOpGen.setAction(Action);
3025 emitInlinedDirective(CGF, OMPD_taskgroup, TaskgroupOpGen);
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00003026}
3027
John McCall7f416cc2015-09-08 08:05:57 +00003028/// Given an array of pointers to variables, project the address of a
3029/// given variable.
Alexey Bataevf24e7b12015-10-08 09:10:53 +00003030static Address emitAddrOfVarFromArray(CodeGenFunction &CGF, Address Array,
3031 unsigned Index, const VarDecl *Var) {
John McCall7f416cc2015-09-08 08:05:57 +00003032 // Pull out the pointer to the variable.
3033 Address PtrAddr =
Alexey Bataevf24e7b12015-10-08 09:10:53 +00003034 CGF.Builder.CreateConstArrayGEP(Array, Index, CGF.getPointerSize());
John McCall7f416cc2015-09-08 08:05:57 +00003035 llvm::Value *Ptr = CGF.Builder.CreateLoad(PtrAddr);
3036
3037 Address Addr = Address(Ptr, CGF.getContext().getDeclAlign(Var));
Alexey Bataevf24e7b12015-10-08 09:10:53 +00003038 Addr = CGF.Builder.CreateElementBitCast(
3039 Addr, CGF.ConvertTypeForMem(Var->getType()));
John McCall7f416cc2015-09-08 08:05:57 +00003040 return Addr;
3041}
3042
Alexey Bataeva63048e2015-03-23 06:18:07 +00003043static llvm::Value *emitCopyprivateCopyFunction(
Alexey Bataev420d45b2015-04-14 05:11:24 +00003044 CodeGenModule &CGM, llvm::Type *ArgsType,
3045 ArrayRef<const Expr *> CopyprivateVars, ArrayRef<const Expr *> DestExprs,
Alexey Bataev7cae94e2018-01-04 19:45:16 +00003046 ArrayRef<const Expr *> SrcExprs, ArrayRef<const Expr *> AssignmentOps,
3047 SourceLocation Loc) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003048 ASTContext &C = CGM.getContext();
Alexey Bataeva63048e2015-03-23 06:18:07 +00003049 // void copy_func(void *LHSArg, void *RHSArg);
3050 FunctionArgList Args;
Alexey Bataev7cae94e2018-01-04 19:45:16 +00003051 ImplicitParamDecl LHSArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy,
3052 ImplicitParamDecl::Other);
3053 ImplicitParamDecl RHSArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy,
3054 ImplicitParamDecl::Other);
Alexey Bataeva63048e2015-03-23 06:18:07 +00003055 Args.push_back(&LHSArg);
3056 Args.push_back(&RHSArg);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003057 const auto &CGFI =
3058 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args);
Alexey Bataev18fa2322018-05-02 14:20:50 +00003059 std::string Name =
3060 CGM.getOpenMPRuntime().getName({"omp", "copyprivate", "copy_func"});
3061 auto *Fn = llvm::Function::Create(CGM.getTypes().GetFunctionType(CGFI),
3062 llvm::GlobalValue::InternalLinkage, Name,
3063 &CGM.getModule());
Rafael Espindola51ec5a92018-02-28 23:46:35 +00003064 CGM.SetInternalFunctionAttributes(GlobalDecl(), Fn, CGFI);
Alexey Bataevc0f879b2018-04-10 20:10:53 +00003065 Fn->setDoesNotRecurse();
Alexey Bataeva63048e2015-03-23 06:18:07 +00003066 CodeGenFunction CGF(CGM);
Alexey Bataev7cae94e2018-01-04 19:45:16 +00003067 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, CGFI, Args, Loc, Loc);
Alexey Bataev420d45b2015-04-14 05:11:24 +00003068 // Dest = (void*[n])(LHSArg);
Alexey Bataeva63048e2015-03-23 06:18:07 +00003069 // Src = (void*[n])(RHSArg);
John McCall7f416cc2015-09-08 08:05:57 +00003070 Address LHS(CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
3071 CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(&LHSArg)),
3072 ArgsType), CGF.getPointerAlign());
3073 Address RHS(CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
3074 CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(&RHSArg)),
3075 ArgsType), CGF.getPointerAlign());
Alexey Bataeva63048e2015-03-23 06:18:07 +00003076 // *(Type0*)Dst[0] = *(Type0*)Src[0];
3077 // *(Type1*)Dst[1] = *(Type1*)Src[1];
3078 // ...
3079 // *(Typen*)Dst[n] = *(Typen*)Src[n];
Alexey Bataeva63048e2015-03-23 06:18:07 +00003080 for (unsigned I = 0, E = AssignmentOps.size(); I < E; ++I) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003081 const auto *DestVar =
3082 cast<VarDecl>(cast<DeclRefExpr>(DestExprs[I])->getDecl());
John McCall7f416cc2015-09-08 08:05:57 +00003083 Address DestAddr = emitAddrOfVarFromArray(CGF, LHS, I, DestVar);
3084
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003085 const auto *SrcVar =
3086 cast<VarDecl>(cast<DeclRefExpr>(SrcExprs[I])->getDecl());
John McCall7f416cc2015-09-08 08:05:57 +00003087 Address SrcAddr = emitAddrOfVarFromArray(CGF, RHS, I, SrcVar);
3088
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003089 const auto *VD = cast<DeclRefExpr>(CopyprivateVars[I])->getDecl();
Alexey Bataev1d9c15c2015-05-19 12:31:28 +00003090 QualType Type = VD->getType();
John McCall7f416cc2015-09-08 08:05:57 +00003091 CGF.EmitOMPCopy(Type, DestAddr, SrcAddr, DestVar, SrcVar, AssignmentOps[I]);
Alexey Bataeva63048e2015-03-23 06:18:07 +00003092 }
Alexey Bataeva63048e2015-03-23 06:18:07 +00003093 CGF.FinishFunction();
3094 return Fn;
3095}
3096
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003097void CGOpenMPRuntime::emitSingleRegion(CodeGenFunction &CGF,
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00003098 const RegionCodeGenTy &SingleOpGen,
Alexey Bataeva63048e2015-03-23 06:18:07 +00003099 SourceLocation Loc,
3100 ArrayRef<const Expr *> CopyprivateVars,
3101 ArrayRef<const Expr *> SrcExprs,
3102 ArrayRef<const Expr *> DstExprs,
3103 ArrayRef<const Expr *> AssignmentOps) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003104 if (!CGF.HaveInsertPoint())
3105 return;
Alexey Bataeva63048e2015-03-23 06:18:07 +00003106 assert(CopyprivateVars.size() == SrcExprs.size() &&
3107 CopyprivateVars.size() == DstExprs.size() &&
3108 CopyprivateVars.size() == AssignmentOps.size());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003109 ASTContext &C = CGM.getContext();
Alexey Bataeva63048e2015-03-23 06:18:07 +00003110 // int32 did_it = 0;
Alexey Bataev6956e2e2015-02-05 06:35:41 +00003111 // if(__kmpc_single(ident_t *, gtid)) {
3112 // SingleOpGen();
3113 // __kmpc_end_single(ident_t *, gtid);
Alexey Bataeva63048e2015-03-23 06:18:07 +00003114 // did_it = 1;
Alexey Bataev6956e2e2015-02-05 06:35:41 +00003115 // }
Alexey Bataeva63048e2015-03-23 06:18:07 +00003116 // call __kmpc_copyprivate(ident_t *, gtid, <buf_size>, <copyprivate list>,
3117 // <copy_func>, did_it);
3118
John McCall7f416cc2015-09-08 08:05:57 +00003119 Address DidIt = Address::invalid();
Alexey Bataeva63048e2015-03-23 06:18:07 +00003120 if (!CopyprivateVars.empty()) {
3121 // int32 did_it = 0;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003122 QualType KmpInt32Ty =
3123 C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/1);
Alexey Bataeva63048e2015-03-23 06:18:07 +00003124 DidIt = CGF.CreateMemTemp(KmpInt32Ty, ".omp.copyprivate.did_it");
John McCall7f416cc2015-09-08 08:05:57 +00003125 CGF.Builder.CreateStore(CGF.Builder.getInt32(0), DidIt);
Alexey Bataeva63048e2015-03-23 06:18:07 +00003126 }
Alexey Bataev6956e2e2015-02-05 06:35:41 +00003127 // Prepare arguments and build a call to __kmpc_single
Alexey Bataevd7614fb2015-04-10 06:33:45 +00003128 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)};
Alexey Bataev14fa1c62016-03-29 05:34:15 +00003129 CommonActionTy Action(createRuntimeFunction(OMPRTL__kmpc_single), Args,
3130 createRuntimeFunction(OMPRTL__kmpc_end_single), Args,
3131 /*Conditional=*/true);
3132 SingleOpGen.setAction(Action);
3133 emitInlinedDirective(CGF, OMPD_single, SingleOpGen);
3134 if (DidIt.isValid()) {
3135 // did_it = 1;
3136 CGF.Builder.CreateStore(CGF.Builder.getInt32(1), DidIt);
3137 }
3138 Action.Done(CGF);
Alexey Bataeva63048e2015-03-23 06:18:07 +00003139 // call __kmpc_copyprivate(ident_t *, gtid, <buf_size>, <copyprivate list>,
3140 // <copy_func>, did_it);
John McCall7f416cc2015-09-08 08:05:57 +00003141 if (DidIt.isValid()) {
Alexey Bataeva63048e2015-03-23 06:18:07 +00003142 llvm::APInt ArraySize(/*unsigned int numBits=*/32, CopyprivateVars.size());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003143 QualType CopyprivateArrayTy =
Alexey Bataeva63048e2015-03-23 06:18:07 +00003144 C.getConstantArrayType(C.VoidPtrTy, ArraySize, ArrayType::Normal,
3145 /*IndexTypeQuals=*/0);
3146 // Create a list of all private variables for copyprivate.
John McCall7f416cc2015-09-08 08:05:57 +00003147 Address CopyprivateList =
Alexey Bataeva63048e2015-03-23 06:18:07 +00003148 CGF.CreateMemTemp(CopyprivateArrayTy, ".omp.copyprivate.cpr_list");
3149 for (unsigned I = 0, E = CopyprivateVars.size(); I < E; ++I) {
John McCall7f416cc2015-09-08 08:05:57 +00003150 Address Elem = CGF.Builder.CreateConstArrayGEP(
3151 CopyprivateList, I, CGF.getPointerSize());
3152 CGF.Builder.CreateStore(
Alexey Bataeva63048e2015-03-23 06:18:07 +00003153 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
John McCall7f416cc2015-09-08 08:05:57 +00003154 CGF.EmitLValue(CopyprivateVars[I]).getPointer(), CGF.VoidPtrTy),
3155 Elem);
Alexey Bataeva63048e2015-03-23 06:18:07 +00003156 }
3157 // Build function that copies private values from single region to all other
3158 // threads in the corresponding parallel region.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003159 llvm::Value *CpyFn = emitCopyprivateCopyFunction(
Alexey Bataeva63048e2015-03-23 06:18:07 +00003160 CGM, CGF.ConvertTypeForMem(CopyprivateArrayTy)->getPointerTo(),
Alexey Bataev7cae94e2018-01-04 19:45:16 +00003161 CopyprivateVars, SrcExprs, DstExprs, AssignmentOps, Loc);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003162 llvm::Value *BufSize = CGF.getTypeSize(CopyprivateArrayTy);
John McCall7f416cc2015-09-08 08:05:57 +00003163 Address CL =
3164 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(CopyprivateList,
3165 CGF.VoidPtrTy);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003166 llvm::Value *DidItVal = CGF.Builder.CreateLoad(DidIt);
Alexey Bataeva63048e2015-03-23 06:18:07 +00003167 llvm::Value *Args[] = {
3168 emitUpdateLocation(CGF, Loc), // ident_t *<loc>
3169 getThreadID(CGF, Loc), // i32 <gtid>
Alexey Bataev66beaa92015-04-30 03:47:32 +00003170 BufSize, // size_t <buf_size>
John McCall7f416cc2015-09-08 08:05:57 +00003171 CL.getPointer(), // void *<copyprivate list>
Alexey Bataeva63048e2015-03-23 06:18:07 +00003172 CpyFn, // void (*) (void *, void *) <copy_func>
3173 DidItVal // i32 did_it
3174 };
3175 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_copyprivate), Args);
3176 }
Alexey Bataev6956e2e2015-02-05 06:35:41 +00003177}
3178
Alexey Bataev98eb6e32015-04-22 11:15:40 +00003179void CGOpenMPRuntime::emitOrderedRegion(CodeGenFunction &CGF,
3180 const RegionCodeGenTy &OrderedOpGen,
Alexey Bataev5f600d62015-09-29 03:48:57 +00003181 SourceLocation Loc, bool IsThreads) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003182 if (!CGF.HaveInsertPoint())
3183 return;
Alexey Bataev98eb6e32015-04-22 11:15:40 +00003184 // __kmpc_ordered(ident_t *, gtid);
3185 // OrderedOpGen();
3186 // __kmpc_end_ordered(ident_t *, gtid);
3187 // Prepare arguments and build a call to __kmpc_ordered
Alexey Bataev5f600d62015-09-29 03:48:57 +00003188 if (IsThreads) {
Alexey Bataev98eb6e32015-04-22 11:15:40 +00003189 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)};
Alexey Bataev14fa1c62016-03-29 05:34:15 +00003190 CommonActionTy Action(createRuntimeFunction(OMPRTL__kmpc_ordered), Args,
3191 createRuntimeFunction(OMPRTL__kmpc_end_ordered),
3192 Args);
3193 OrderedOpGen.setAction(Action);
3194 emitInlinedDirective(CGF, OMPD_ordered, OrderedOpGen);
3195 return;
Alexey Bataev98eb6e32015-04-22 11:15:40 +00003196 }
Alexey Bataev5f600d62015-09-29 03:48:57 +00003197 emitInlinedDirective(CGF, OMPD_ordered, OrderedOpGen);
Alexey Bataev98eb6e32015-04-22 11:15:40 +00003198}
3199
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003200void CGOpenMPRuntime::emitBarrierCall(CodeGenFunction &CGF, SourceLocation Loc,
Alexey Bataev25e5b442015-09-15 12:52:43 +00003201 OpenMPDirectiveKind Kind, bool EmitChecks,
3202 bool ForceSimpleCall) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003203 if (!CGF.HaveInsertPoint())
3204 return;
Alexey Bataev8f7c1b02014-12-05 04:09:23 +00003205 // Build call __kmpc_cancel_barrier(loc, thread_id);
Alexey Bataev81c7ea02015-07-03 09:56:58 +00003206 // Build call __kmpc_barrier(loc, thread_id);
Alexey Bataev50b3c952016-02-19 10:38:26 +00003207 unsigned Flags;
3208 if (Kind == OMPD_for)
3209 Flags = OMP_IDENT_BARRIER_IMPL_FOR;
3210 else if (Kind == OMPD_sections)
3211 Flags = OMP_IDENT_BARRIER_IMPL_SECTIONS;
3212 else if (Kind == OMPD_single)
3213 Flags = OMP_IDENT_BARRIER_IMPL_SINGLE;
3214 else if (Kind == OMPD_barrier)
3215 Flags = OMP_IDENT_BARRIER_EXPL;
3216 else
3217 Flags = OMP_IDENT_BARRIER_IMPL;
Alexey Bataev81c7ea02015-07-03 09:56:58 +00003218 // Build call __kmpc_cancel_barrier(loc, thread_id) or __kmpc_barrier(loc,
3219 // thread_id);
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003220 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc, Flags),
3221 getThreadID(CGF, Loc)};
Alexey Bataev3015bcc2016-01-22 08:56:50 +00003222 if (auto *OMPRegionInfo =
3223 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) {
Alexey Bataev25e5b442015-09-15 12:52:43 +00003224 if (!ForceSimpleCall && OMPRegionInfo->hasCancel()) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003225 llvm::Value *Result = CGF.EmitRuntimeCall(
Alexey Bataev81c7ea02015-07-03 09:56:58 +00003226 createRuntimeFunction(OMPRTL__kmpc_cancel_barrier), Args);
Alexey Bataev25e5b442015-09-15 12:52:43 +00003227 if (EmitChecks) {
Alexey Bataev81c7ea02015-07-03 09:56:58 +00003228 // if (__kmpc_cancel_barrier()) {
3229 // exit from construct;
3230 // }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003231 llvm::BasicBlock *ExitBB = CGF.createBasicBlock(".cancel.exit");
3232 llvm::BasicBlock *ContBB = CGF.createBasicBlock(".cancel.continue");
3233 llvm::Value *Cmp = CGF.Builder.CreateIsNotNull(Result);
Alexey Bataev81c7ea02015-07-03 09:56:58 +00003234 CGF.Builder.CreateCondBr(Cmp, ExitBB, ContBB);
3235 CGF.EmitBlock(ExitBB);
3236 // exit from construct;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003237 CodeGenFunction::JumpDest CancelDestination =
Alexey Bataev25e5b442015-09-15 12:52:43 +00003238 CGF.getOMPCancelDestination(OMPRegionInfo->getDirectiveKind());
Alexey Bataev81c7ea02015-07-03 09:56:58 +00003239 CGF.EmitBranchThroughCleanup(CancelDestination);
3240 CGF.EmitBlock(ContBB, /*IsFinished=*/true);
3241 }
3242 return;
3243 }
3244 }
3245 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_barrier), Args);
Alexey Bataev4a5bb772014-10-08 14:01:46 +00003246}
3247
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003248/// Map the OpenMP loop schedule to the runtime enumeration.
Alexander Musmanc6388682014-12-15 07:07:06 +00003249static OpenMPSchedType getRuntimeSchedule(OpenMPScheduleClauseKind ScheduleKind,
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00003250 bool Chunked, bool Ordered) {
Alexander Musmanc6388682014-12-15 07:07:06 +00003251 switch (ScheduleKind) {
3252 case OMPC_SCHEDULE_static:
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00003253 return Chunked ? (Ordered ? OMP_ord_static_chunked : OMP_sch_static_chunked)
3254 : (Ordered ? OMP_ord_static : OMP_sch_static);
Alexander Musmanc6388682014-12-15 07:07:06 +00003255 case OMPC_SCHEDULE_dynamic:
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00003256 return Ordered ? OMP_ord_dynamic_chunked : OMP_sch_dynamic_chunked;
Alexander Musmanc6388682014-12-15 07:07:06 +00003257 case OMPC_SCHEDULE_guided:
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00003258 return Ordered ? OMP_ord_guided_chunked : OMP_sch_guided_chunked;
Alexander Musmanc6388682014-12-15 07:07:06 +00003259 case OMPC_SCHEDULE_runtime:
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00003260 return Ordered ? OMP_ord_runtime : OMP_sch_runtime;
3261 case OMPC_SCHEDULE_auto:
3262 return Ordered ? OMP_ord_auto : OMP_sch_auto;
Alexander Musmanc6388682014-12-15 07:07:06 +00003263 case OMPC_SCHEDULE_unknown:
3264 assert(!Chunked && "chunk was specified but schedule kind not known");
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00003265 return Ordered ? OMP_ord_static : OMP_sch_static;
Alexander Musmanc6388682014-12-15 07:07:06 +00003266 }
3267 llvm_unreachable("Unexpected runtime schedule");
3268}
3269
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003270/// Map the OpenMP distribute schedule to the runtime enumeration.
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003271static OpenMPSchedType
3272getRuntimeSchedule(OpenMPDistScheduleClauseKind ScheduleKind, bool Chunked) {
3273 // only static is allowed for dist_schedule
3274 return Chunked ? OMP_dist_sch_static_chunked : OMP_dist_sch_static;
3275}
3276
Alexander Musmanc6388682014-12-15 07:07:06 +00003277bool CGOpenMPRuntime::isStaticNonchunked(OpenMPScheduleClauseKind ScheduleKind,
3278 bool Chunked) const {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003279 OpenMPSchedType Schedule =
3280 getRuntimeSchedule(ScheduleKind, Chunked, /*Ordered=*/false);
Alexander Musmanc6388682014-12-15 07:07:06 +00003281 return Schedule == OMP_sch_static;
3282}
3283
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003284bool CGOpenMPRuntime::isStaticNonchunked(
3285 OpenMPDistScheduleClauseKind ScheduleKind, bool Chunked) const {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003286 OpenMPSchedType Schedule = getRuntimeSchedule(ScheduleKind, Chunked);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003287 return Schedule == OMP_dist_sch_static;
3288}
3289
3290
Alexander Musmandf7a8e22015-01-22 08:49:35 +00003291bool CGOpenMPRuntime::isDynamic(OpenMPScheduleClauseKind ScheduleKind) const {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003292 OpenMPSchedType Schedule =
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00003293 getRuntimeSchedule(ScheduleKind, /*Chunked=*/false, /*Ordered=*/false);
Alexander Musmandf7a8e22015-01-22 08:49:35 +00003294 assert(Schedule != OMP_sch_static_chunked && "cannot be chunked here");
3295 return Schedule != OMP_sch_static;
3296}
3297
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003298static int addMonoNonMonoModifier(OpenMPSchedType Schedule,
3299 OpenMPScheduleClauseModifier M1,
3300 OpenMPScheduleClauseModifier M2) {
Alexey Bataev6cff6242016-05-30 13:05:14 +00003301 int Modifier = 0;
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003302 switch (M1) {
3303 case OMPC_SCHEDULE_MODIFIER_monotonic:
Alexey Bataev6cff6242016-05-30 13:05:14 +00003304 Modifier = OMP_sch_modifier_monotonic;
3305 break;
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003306 case OMPC_SCHEDULE_MODIFIER_nonmonotonic:
Alexey Bataev6cff6242016-05-30 13:05:14 +00003307 Modifier = OMP_sch_modifier_nonmonotonic;
3308 break;
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003309 case OMPC_SCHEDULE_MODIFIER_simd:
Alexey Bataev6cff6242016-05-30 13:05:14 +00003310 if (Schedule == OMP_sch_static_chunked)
3311 Schedule = OMP_sch_static_balanced_chunked;
3312 break;
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003313 case OMPC_SCHEDULE_MODIFIER_last:
3314 case OMPC_SCHEDULE_MODIFIER_unknown:
3315 break;
3316 }
3317 switch (M2) {
3318 case OMPC_SCHEDULE_MODIFIER_monotonic:
Alexey Bataev6cff6242016-05-30 13:05:14 +00003319 Modifier = OMP_sch_modifier_monotonic;
3320 break;
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003321 case OMPC_SCHEDULE_MODIFIER_nonmonotonic:
Alexey Bataev6cff6242016-05-30 13:05:14 +00003322 Modifier = OMP_sch_modifier_nonmonotonic;
3323 break;
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003324 case OMPC_SCHEDULE_MODIFIER_simd:
Alexey Bataev6cff6242016-05-30 13:05:14 +00003325 if (Schedule == OMP_sch_static_chunked)
3326 Schedule = OMP_sch_static_balanced_chunked;
3327 break;
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003328 case OMPC_SCHEDULE_MODIFIER_last:
3329 case OMPC_SCHEDULE_MODIFIER_unknown:
3330 break;
3331 }
Alexey Bataev6cff6242016-05-30 13:05:14 +00003332 return Schedule | Modifier;
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003333}
3334
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003335void CGOpenMPRuntime::emitForDispatchInit(
3336 CodeGenFunction &CGF, SourceLocation Loc,
3337 const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned,
3338 bool Ordered, const DispatchRTInput &DispatchValues) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003339 if (!CGF.HaveInsertPoint())
3340 return;
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003341 OpenMPSchedType Schedule = getRuntimeSchedule(
3342 ScheduleKind.Schedule, DispatchValues.Chunk != nullptr, Ordered);
John McCall7f416cc2015-09-08 08:05:57 +00003343 assert(Ordered ||
3344 (Schedule != OMP_sch_static && Schedule != OMP_sch_static_chunked &&
Alexey Bataev6cff6242016-05-30 13:05:14 +00003345 Schedule != OMP_ord_static && Schedule != OMP_ord_static_chunked &&
3346 Schedule != OMP_sch_static_balanced_chunked));
John McCall7f416cc2015-09-08 08:05:57 +00003347 // Call __kmpc_dispatch_init(
3348 // ident_t *loc, kmp_int32 tid, kmp_int32 schedule,
3349 // kmp_int[32|64] lower, kmp_int[32|64] upper,
3350 // kmp_int[32|64] stride, kmp_int[32|64] chunk);
Alexander Musmanc6388682014-12-15 07:07:06 +00003351
John McCall7f416cc2015-09-08 08:05:57 +00003352 // If the Chunk was not specified in the clause - use default value 1.
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003353 llvm::Value *Chunk = DispatchValues.Chunk ? DispatchValues.Chunk
3354 : CGF.Builder.getIntN(IVSize, 1);
John McCall7f416cc2015-09-08 08:05:57 +00003355 llvm::Value *Args[] = {
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003356 emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc),
3357 CGF.Builder.getInt32(addMonoNonMonoModifier(
3358 Schedule, ScheduleKind.M1, ScheduleKind.M2)), // Schedule type
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003359 DispatchValues.LB, // Lower
3360 DispatchValues.UB, // Upper
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003361 CGF.Builder.getIntN(IVSize, 1), // Stride
3362 Chunk // Chunk
John McCall7f416cc2015-09-08 08:05:57 +00003363 };
3364 CGF.EmitRuntimeCall(createDispatchInitFunction(IVSize, IVSigned), Args);
3365}
3366
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003367static void emitForStaticInitCall(
3368 CodeGenFunction &CGF, llvm::Value *UpdateLocation, llvm::Value *ThreadId,
3369 llvm::Constant *ForStaticInitFunction, OpenMPSchedType Schedule,
3370 OpenMPScheduleClauseModifier M1, OpenMPScheduleClauseModifier M2,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003371 const CGOpenMPRuntime::StaticRTInput &Values) {
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003372 if (!CGF.HaveInsertPoint())
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003373 return;
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003374
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003375 assert(!Values.Ordered);
3376 assert(Schedule == OMP_sch_static || Schedule == OMP_sch_static_chunked ||
3377 Schedule == OMP_sch_static_balanced_chunked ||
3378 Schedule == OMP_ord_static || Schedule == OMP_ord_static_chunked ||
3379 Schedule == OMP_dist_sch_static ||
3380 Schedule == OMP_dist_sch_static_chunked);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003381
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003382 // Call __kmpc_for_static_init(
3383 // ident_t *loc, kmp_int32 tid, kmp_int32 schedtype,
3384 // kmp_int32 *p_lastiter, kmp_int[32|64] *p_lower,
3385 // kmp_int[32|64] *p_upper, kmp_int[32|64] *p_stride,
3386 // kmp_int[32|64] incr, kmp_int[32|64] chunk);
3387 llvm::Value *Chunk = Values.Chunk;
3388 if (Chunk == nullptr) {
3389 assert((Schedule == OMP_sch_static || Schedule == OMP_ord_static ||
3390 Schedule == OMP_dist_sch_static) &&
3391 "expected static non-chunked schedule");
3392 // If the Chunk was not specified in the clause - use default value 1.
3393 Chunk = CGF.Builder.getIntN(Values.IVSize, 1);
3394 } else {
3395 assert((Schedule == OMP_sch_static_chunked ||
3396 Schedule == OMP_sch_static_balanced_chunked ||
3397 Schedule == OMP_ord_static_chunked ||
3398 Schedule == OMP_dist_sch_static_chunked) &&
3399 "expected static chunked schedule");
3400 }
3401 llvm::Value *Args[] = {
3402 UpdateLocation,
3403 ThreadId,
3404 CGF.Builder.getInt32(addMonoNonMonoModifier(Schedule, M1,
3405 M2)), // Schedule type
3406 Values.IL.getPointer(), // &isLastIter
3407 Values.LB.getPointer(), // &LB
3408 Values.UB.getPointer(), // &UB
3409 Values.ST.getPointer(), // &Stride
3410 CGF.Builder.getIntN(Values.IVSize, 1), // Incr
3411 Chunk // Chunk
3412 };
3413 CGF.EmitRuntimeCall(ForStaticInitFunction, Args);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003414}
3415
John McCall7f416cc2015-09-08 08:05:57 +00003416void CGOpenMPRuntime::emitForStaticInit(CodeGenFunction &CGF,
3417 SourceLocation Loc,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003418 OpenMPDirectiveKind DKind,
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003419 const OpenMPScheduleTy &ScheduleKind,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003420 const StaticRTInput &Values) {
3421 OpenMPSchedType ScheduleNum = getRuntimeSchedule(
3422 ScheduleKind.Schedule, Values.Chunk != nullptr, Values.Ordered);
3423 assert(isOpenMPWorksharingDirective(DKind) &&
3424 "Expected loop-based or sections-based directive.");
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003425 llvm::Value *UpdatedLocation = emitUpdateLocation(CGF, Loc,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003426 isOpenMPLoopDirective(DKind)
3427 ? OMP_IDENT_WORK_LOOP
3428 : OMP_IDENT_WORK_SECTIONS);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003429 llvm::Value *ThreadId = getThreadID(CGF, Loc);
3430 llvm::Constant *StaticInitFunction =
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003431 createForStaticInitFunction(Values.IVSize, Values.IVSigned);
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003432 emitForStaticInitCall(CGF, UpdatedLocation, ThreadId, StaticInitFunction,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003433 ScheduleNum, ScheduleKind.M1, ScheduleKind.M2, Values);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003434}
John McCall7f416cc2015-09-08 08:05:57 +00003435
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003436void CGOpenMPRuntime::emitDistributeStaticInit(
3437 CodeGenFunction &CGF, SourceLocation Loc,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003438 OpenMPDistScheduleClauseKind SchedKind,
3439 const CGOpenMPRuntime::StaticRTInput &Values) {
3440 OpenMPSchedType ScheduleNum =
3441 getRuntimeSchedule(SchedKind, Values.Chunk != nullptr);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003442 llvm::Value *UpdatedLocation =
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003443 emitUpdateLocation(CGF, Loc, OMP_IDENT_WORK_DISTRIBUTE);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003444 llvm::Value *ThreadId = getThreadID(CGF, Loc);
3445 llvm::Constant *StaticInitFunction =
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003446 createForStaticInitFunction(Values.IVSize, Values.IVSigned);
Alexey Bataev9ebd7422016-05-10 09:57:36 +00003447 emitForStaticInitCall(CGF, UpdatedLocation, ThreadId, StaticInitFunction,
3448 ScheduleNum, OMPC_SCHEDULE_MODIFIER_unknown,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003449 OMPC_SCHEDULE_MODIFIER_unknown, Values);
Alexander Musmanc6388682014-12-15 07:07:06 +00003450}
3451
Alexey Bataev98eb6e32015-04-22 11:15:40 +00003452void CGOpenMPRuntime::emitForStaticFinish(CodeGenFunction &CGF,
Alexey Bataevf43f7142017-09-06 16:17:35 +00003453 SourceLocation Loc,
3454 OpenMPDirectiveKind DKind) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003455 if (!CGF.HaveInsertPoint())
3456 return;
Alexander Musmanc6388682014-12-15 07:07:06 +00003457 // Call __kmpc_for_static_fini(ident_t *loc, kmp_int32 tid);
Alexey Bataevf43f7142017-09-06 16:17:35 +00003458 llvm::Value *Args[] = {
3459 emitUpdateLocation(CGF, Loc,
3460 isOpenMPDistributeDirective(DKind)
3461 ? OMP_IDENT_WORK_DISTRIBUTE
3462 : isOpenMPLoopDirective(DKind)
3463 ? OMP_IDENT_WORK_LOOP
3464 : OMP_IDENT_WORK_SECTIONS),
3465 getThreadID(CGF, Loc)};
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003466 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_for_static_fini),
3467 Args);
Alexander Musmanc6388682014-12-15 07:07:06 +00003468}
3469
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00003470void CGOpenMPRuntime::emitForOrderedIterationEnd(CodeGenFunction &CGF,
3471 SourceLocation Loc,
3472 unsigned IVSize,
3473 bool IVSigned) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003474 if (!CGF.HaveInsertPoint())
3475 return;
Alexey Bataev98eb6e32015-04-22 11:15:40 +00003476 // Call __kmpc_for_dynamic_fini_(4|8)[u](ident_t *loc, kmp_int32 tid);
Alexey Bataev50b3c952016-02-19 10:38:26 +00003477 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)};
Alexey Bataev98eb6e32015-04-22 11:15:40 +00003478 CGF.EmitRuntimeCall(createDispatchFiniFunction(IVSize, IVSigned), Args);
3479}
3480
Alexander Musman92bdaab2015-03-12 13:37:50 +00003481llvm::Value *CGOpenMPRuntime::emitForNext(CodeGenFunction &CGF,
3482 SourceLocation Loc, unsigned IVSize,
John McCall7f416cc2015-09-08 08:05:57 +00003483 bool IVSigned, Address IL,
3484 Address LB, Address UB,
3485 Address ST) {
Alexander Musman92bdaab2015-03-12 13:37:50 +00003486 // Call __kmpc_dispatch_next(
3487 // ident_t *loc, kmp_int32 tid, kmp_int32 *p_lastiter,
3488 // kmp_int[32|64] *p_lower, kmp_int[32|64] *p_upper,
3489 // kmp_int[32|64] *p_stride);
3490 llvm::Value *Args[] = {
Alexey Bataev50b3c952016-02-19 10:38:26 +00003491 emitUpdateLocation(CGF, Loc),
3492 getThreadID(CGF, Loc),
John McCall7f416cc2015-09-08 08:05:57 +00003493 IL.getPointer(), // &isLastIter
3494 LB.getPointer(), // &Lower
3495 UB.getPointer(), // &Upper
3496 ST.getPointer() // &Stride
Alexander Musman92bdaab2015-03-12 13:37:50 +00003497 };
3498 llvm::Value *Call =
3499 CGF.EmitRuntimeCall(createDispatchNextFunction(IVSize, IVSigned), Args);
3500 return CGF.EmitScalarConversion(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003501 Call, CGF.getContext().getIntTypeForBitwidth(32, /*Signed=*/1),
Filipe Cabecinhas7af183d2015-08-11 04:19:28 +00003502 CGF.getContext().BoolTy, Loc);
Alexander Musman92bdaab2015-03-12 13:37:50 +00003503}
3504
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003505void CGOpenMPRuntime::emitNumThreadsClause(CodeGenFunction &CGF,
3506 llvm::Value *NumThreads,
3507 SourceLocation Loc) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003508 if (!CGF.HaveInsertPoint())
3509 return;
Alexey Bataevb2059782014-10-13 08:23:51 +00003510 // Build call __kmpc_push_num_threads(&loc, global_tid, num_threads)
3511 llvm::Value *Args[] = {
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003512 emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc),
Alexey Bataevb2059782014-10-13 08:23:51 +00003513 CGF.Builder.CreateIntCast(NumThreads, CGF.Int32Ty, /*isSigned*/ true)};
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003514 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_push_num_threads),
3515 Args);
Alexey Bataevb2059782014-10-13 08:23:51 +00003516}
3517
Alexey Bataev7f210c62015-06-18 13:40:03 +00003518void CGOpenMPRuntime::emitProcBindClause(CodeGenFunction &CGF,
3519 OpenMPProcBindClauseKind ProcBind,
3520 SourceLocation Loc) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003521 if (!CGF.HaveInsertPoint())
3522 return;
Alexey Bataev7f210c62015-06-18 13:40:03 +00003523 // Constants for proc bind value accepted by the runtime.
3524 enum ProcBindTy {
3525 ProcBindFalse = 0,
3526 ProcBindTrue,
3527 ProcBindMaster,
3528 ProcBindClose,
3529 ProcBindSpread,
3530 ProcBindIntel,
3531 ProcBindDefault
3532 } RuntimeProcBind;
3533 switch (ProcBind) {
3534 case OMPC_PROC_BIND_master:
3535 RuntimeProcBind = ProcBindMaster;
3536 break;
3537 case OMPC_PROC_BIND_close:
3538 RuntimeProcBind = ProcBindClose;
3539 break;
3540 case OMPC_PROC_BIND_spread:
3541 RuntimeProcBind = ProcBindSpread;
3542 break;
3543 case OMPC_PROC_BIND_unknown:
3544 llvm_unreachable("Unsupported proc_bind value.");
3545 }
3546 // Build call __kmpc_push_proc_bind(&loc, global_tid, proc_bind)
3547 llvm::Value *Args[] = {
3548 emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc),
3549 llvm::ConstantInt::get(CGM.IntTy, RuntimeProcBind, /*isSigned=*/true)};
3550 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_push_proc_bind), Args);
3551}
3552
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003553void CGOpenMPRuntime::emitFlush(CodeGenFunction &CGF, ArrayRef<const Expr *>,
3554 SourceLocation Loc) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00003555 if (!CGF.HaveInsertPoint())
3556 return;
Alexey Bataevd76df6d2015-02-24 12:55:09 +00003557 // Build call void __kmpc_flush(ident_t *loc)
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003558 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_flush),
3559 emitUpdateLocation(CGF, Loc));
Alexey Bataevcc37cc12014-11-20 04:34:54 +00003560}
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003561
Alexey Bataev62b63b12015-03-10 07:28:44 +00003562namespace {
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003563/// Indexes of fields for type kmp_task_t.
Alexey Bataev62b63b12015-03-10 07:28:44 +00003564enum KmpTaskTFields {
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003565 /// List of shared variables.
Alexey Bataev62b63b12015-03-10 07:28:44 +00003566 KmpTaskTShareds,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003567 /// Task routine.
Alexey Bataev62b63b12015-03-10 07:28:44 +00003568 KmpTaskTRoutine,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003569 /// Partition id for the untied tasks.
Alexey Bataev62b63b12015-03-10 07:28:44 +00003570 KmpTaskTPartId,
Alexey Bataevad537bb2016-05-30 09:06:50 +00003571 /// Function with call of destructors for private variables.
3572 Data1,
3573 /// Task priority.
3574 Data2,
Alexey Bataev7292c292016-04-25 12:22:29 +00003575 /// (Taskloops only) Lower bound.
3576 KmpTaskTLowerBound,
3577 /// (Taskloops only) Upper bound.
3578 KmpTaskTUpperBound,
3579 /// (Taskloops only) Stride.
3580 KmpTaskTStride,
3581 /// (Taskloops only) Is last iteration flag.
3582 KmpTaskTLastIter,
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00003583 /// (Taskloops only) Reduction data.
3584 KmpTaskTReductions,
Alexey Bataev62b63b12015-03-10 07:28:44 +00003585};
Hans Wennborg7eb54642015-09-10 17:07:54 +00003586} // anonymous namespace
Alexey Bataev62b63b12015-03-10 07:28:44 +00003587
Samuel Antaoee8fb302016-01-06 13:42:12 +00003588bool CGOpenMPRuntime::OffloadEntriesInfoManagerTy::empty() const {
Alexey Bataev03f270c2018-03-30 18:31:07 +00003589 return OffloadEntriesTargetRegion.empty() &&
3590 OffloadEntriesDeviceGlobalVar.empty();
Samuel Antaoee8fb302016-01-06 13:42:12 +00003591}
3592
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003593/// Initialize target region entry.
Samuel Antaoee8fb302016-01-06 13:42:12 +00003594void CGOpenMPRuntime::OffloadEntriesInfoManagerTy::
3595 initializeTargetRegionEntryInfo(unsigned DeviceID, unsigned FileID,
3596 StringRef ParentName, unsigned LineNum,
Samuel Antao2de62b02016-02-13 23:35:10 +00003597 unsigned Order) {
Samuel Antaoee8fb302016-01-06 13:42:12 +00003598 assert(CGM.getLangOpts().OpenMPIsDevice && "Initialization of entries is "
3599 "only required for the device "
3600 "code generation.");
Samuel Antao2de62b02016-02-13 23:35:10 +00003601 OffloadEntriesTargetRegion[DeviceID][FileID][ParentName][LineNum] =
Samuel Antaof83efdb2017-01-05 16:02:49 +00003602 OffloadEntryInfoTargetRegion(Order, /*Addr=*/nullptr, /*ID=*/nullptr,
Alexey Bataev34f8a702018-03-28 14:28:54 +00003603 OMPTargetRegionEntryTargetRegion);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003604 ++OffloadingEntriesNum;
3605}
3606
3607void CGOpenMPRuntime::OffloadEntriesInfoManagerTy::
3608 registerTargetRegionEntryInfo(unsigned DeviceID, unsigned FileID,
3609 StringRef ParentName, unsigned LineNum,
Samuel Antaof83efdb2017-01-05 16:02:49 +00003610 llvm::Constant *Addr, llvm::Constant *ID,
Alexey Bataev34f8a702018-03-28 14:28:54 +00003611 OMPTargetRegionEntryKind Flags) {
Samuel Antaoee8fb302016-01-06 13:42:12 +00003612 // If we are emitting code for a target, the entry is already initialized,
3613 // only has to be registered.
3614 if (CGM.getLangOpts().OpenMPIsDevice) {
Alexey Bataev64e62dc2018-04-30 16:26:57 +00003615 if (!hasTargetRegionEntryInfo(DeviceID, FileID, ParentName, LineNum)) {
3616 unsigned DiagID = CGM.getDiags().getCustomDiagID(
3617 DiagnosticsEngine::Error,
3618 "Unable to find target region on line '%0' in the device code.");
3619 CGM.getDiags().Report(DiagID) << LineNum;
3620 return;
3621 }
Samuel Antao2de62b02016-02-13 23:35:10 +00003622 auto &Entry =
3623 OffloadEntriesTargetRegion[DeviceID][FileID][ParentName][LineNum];
Samuel Antaoee8fb302016-01-06 13:42:12 +00003624 assert(Entry.isValid() && "Entry not initialized!");
3625 Entry.setAddress(Addr);
3626 Entry.setID(ID);
Samuel Antaof83efdb2017-01-05 16:02:49 +00003627 Entry.setFlags(Flags);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003628 } else {
Alexey Bataev03f270c2018-03-30 18:31:07 +00003629 OffloadEntryInfoTargetRegion Entry(OffloadingEntriesNum, Addr, ID, Flags);
Samuel Antao2de62b02016-02-13 23:35:10 +00003630 OffloadEntriesTargetRegion[DeviceID][FileID][ParentName][LineNum] = Entry;
Alexey Bataev03f270c2018-03-30 18:31:07 +00003631 ++OffloadingEntriesNum;
Samuel Antaoee8fb302016-01-06 13:42:12 +00003632 }
3633}
3634
3635bool CGOpenMPRuntime::OffloadEntriesInfoManagerTy::hasTargetRegionEntryInfo(
Samuel Antao2de62b02016-02-13 23:35:10 +00003636 unsigned DeviceID, unsigned FileID, StringRef ParentName,
3637 unsigned LineNum) const {
Samuel Antaoee8fb302016-01-06 13:42:12 +00003638 auto PerDevice = OffloadEntriesTargetRegion.find(DeviceID);
3639 if (PerDevice == OffloadEntriesTargetRegion.end())
3640 return false;
3641 auto PerFile = PerDevice->second.find(FileID);
3642 if (PerFile == PerDevice->second.end())
3643 return false;
3644 auto PerParentName = PerFile->second.find(ParentName);
3645 if (PerParentName == PerFile->second.end())
3646 return false;
3647 auto PerLine = PerParentName->second.find(LineNum);
3648 if (PerLine == PerParentName->second.end())
3649 return false;
Samuel Antaoee8fb302016-01-06 13:42:12 +00003650 // Fail if this entry is already registered.
Samuel Antao2de62b02016-02-13 23:35:10 +00003651 if (PerLine->second.getAddress() || PerLine->second.getID())
Samuel Antaoee8fb302016-01-06 13:42:12 +00003652 return false;
3653 return true;
3654}
3655
3656void CGOpenMPRuntime::OffloadEntriesInfoManagerTy::actOnTargetRegionEntriesInfo(
3657 const OffloadTargetRegionEntryInfoActTy &Action) {
3658 // Scan all target region entries and perform the provided action.
Alexey Bataev03f270c2018-03-30 18:31:07 +00003659 for (const auto &D : OffloadEntriesTargetRegion)
3660 for (const auto &F : D.second)
3661 for (const auto &P : F.second)
3662 for (const auto &L : P.second)
Samuel Antao2de62b02016-02-13 23:35:10 +00003663 Action(D.first, F.first, P.first(), L.first, L.second);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003664}
3665
Alexey Bataev03f270c2018-03-30 18:31:07 +00003666void CGOpenMPRuntime::OffloadEntriesInfoManagerTy::
3667 initializeDeviceGlobalVarEntryInfo(StringRef Name,
3668 OMPTargetGlobalVarEntryKind Flags,
3669 unsigned Order) {
3670 assert(CGM.getLangOpts().OpenMPIsDevice && "Initialization of entries is "
3671 "only required for the device "
3672 "code generation.");
3673 OffloadEntriesDeviceGlobalVar.try_emplace(Name, Order, Flags);
3674 ++OffloadingEntriesNum;
3675}
Samuel Antaoee8fb302016-01-06 13:42:12 +00003676
Alexey Bataev03f270c2018-03-30 18:31:07 +00003677void CGOpenMPRuntime::OffloadEntriesInfoManagerTy::
3678 registerDeviceGlobalVarEntryInfo(StringRef VarName, llvm::Constant *Addr,
3679 CharUnits VarSize,
3680 OMPTargetGlobalVarEntryKind Flags,
3681 llvm::GlobalValue::LinkageTypes Linkage) {
3682 if (CGM.getLangOpts().OpenMPIsDevice) {
3683 auto &Entry = OffloadEntriesDeviceGlobalVar[VarName];
3684 assert(Entry.isValid() && Entry.getFlags() == Flags &&
3685 "Entry not initialized!");
3686 assert((!Entry.getAddress() || Entry.getAddress() == Addr) &&
3687 "Resetting with the new address.");
3688 if (Entry.getAddress() && hasDeviceGlobalVarEntryInfo(VarName))
3689 return;
3690 Entry.setAddress(Addr);
3691 Entry.setVarSize(VarSize);
3692 Entry.setLinkage(Linkage);
3693 } else {
3694 if (hasDeviceGlobalVarEntryInfo(VarName))
3695 return;
3696 OffloadEntriesDeviceGlobalVar.try_emplace(
3697 VarName, OffloadingEntriesNum, Addr, VarSize, Flags, Linkage);
3698 ++OffloadingEntriesNum;
3699 }
3700}
3701
3702void CGOpenMPRuntime::OffloadEntriesInfoManagerTy::
3703 actOnDeviceGlobalVarEntriesInfo(
3704 const OffloadDeviceGlobalVarEntryInfoActTy &Action) {
3705 // Scan all target region entries and perform the provided action.
3706 for (const auto &E : OffloadEntriesDeviceGlobalVar)
3707 Action(E.getKey(), E.getValue());
Samuel Antaoee8fb302016-01-06 13:42:12 +00003708}
3709
3710llvm::Function *
3711CGOpenMPRuntime::createOffloadingBinaryDescriptorRegistration() {
Samuel Antaoee8fb302016-01-06 13:42:12 +00003712 // If we don't have entries or if we are emitting code for the device, we
3713 // don't need to do anything.
3714 if (CGM.getLangOpts().OpenMPIsDevice || OffloadEntriesInfoManager.empty())
3715 return nullptr;
3716
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003717 llvm::Module &M = CGM.getModule();
3718 ASTContext &C = CGM.getContext();
Samuel Antaoee8fb302016-01-06 13:42:12 +00003719
3720 // Get list of devices we care about
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003721 const std::vector<llvm::Triple> &Devices = CGM.getLangOpts().OMPTargetTriples;
Samuel Antaoee8fb302016-01-06 13:42:12 +00003722
3723 // We should be creating an offloading descriptor only if there are devices
3724 // specified.
3725 assert(!Devices.empty() && "No OpenMP offloading devices??");
3726
3727 // Create the external variables that will point to the begin and end of the
3728 // host entries section. These will be defined by the linker.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003729 llvm::Type *OffloadEntryTy =
Samuel Antaoee8fb302016-01-06 13:42:12 +00003730 CGM.getTypes().ConvertTypeForMem(getTgtOffloadEntryQTy());
Alexey Bataev18fa2322018-05-02 14:20:50 +00003731 std::string EntriesBeginName = getName({"omp_offloading", "entries_begin"});
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003732 auto *HostEntriesBegin = new llvm::GlobalVariable(
Samuel Antaoee8fb302016-01-06 13:42:12 +00003733 M, OffloadEntryTy, /*isConstant=*/true,
Eugene Zelenko1660a5d2016-01-26 19:01:06 +00003734 llvm::GlobalValue::ExternalLinkage, /*Initializer=*/nullptr,
Alexey Bataev18fa2322018-05-02 14:20:50 +00003735 EntriesBeginName);
3736 std::string EntriesEndName = getName({"omp_offloading", "entries_end"});
3737 auto *HostEntriesEnd =
3738 new llvm::GlobalVariable(M, OffloadEntryTy, /*isConstant=*/true,
3739 llvm::GlobalValue::ExternalLinkage,
3740 /*Initializer=*/nullptr, EntriesEndName);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003741
3742 // Create all device images
Samuel Antaoee8fb302016-01-06 13:42:12 +00003743 auto *DeviceImageTy = cast<llvm::StructType>(
3744 CGM.getTypes().ConvertTypeForMem(getTgtDeviceImageQTy()));
John McCall23c9dc62016-11-28 22:18:27 +00003745 ConstantInitBuilder DeviceImagesBuilder(CGM);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003746 ConstantArrayBuilder DeviceImagesEntries =
3747 DeviceImagesBuilder.beginArray(DeviceImageTy);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003748
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003749 for (const llvm::Triple &Device : Devices) {
Alexey Bataev03f270c2018-03-30 18:31:07 +00003750 StringRef T = Device.getTriple();
Alexey Bataev18fa2322018-05-02 14:20:50 +00003751 std::string BeginName = getName({"omp_offloading", "img_start", ""});
Samuel Antaoee8fb302016-01-06 13:42:12 +00003752 auto *ImgBegin = new llvm::GlobalVariable(
Alexey Bataev62a4cb02018-07-31 18:27:42 +00003753 M, CGM.Int8Ty, /*isConstant=*/true,
3754 llvm::GlobalValue::ExternalWeakLinkage,
Alexey Bataev18fa2322018-05-02 14:20:50 +00003755 /*Initializer=*/nullptr, Twine(BeginName).concat(T));
3756 std::string EndName = getName({"omp_offloading", "img_end", ""});
Samuel Antaoee8fb302016-01-06 13:42:12 +00003757 auto *ImgEnd = new llvm::GlobalVariable(
Alexey Bataev62a4cb02018-07-31 18:27:42 +00003758 M, CGM.Int8Ty, /*isConstant=*/true,
3759 llvm::GlobalValue::ExternalWeakLinkage,
Alexey Bataev18fa2322018-05-02 14:20:50 +00003760 /*Initializer=*/nullptr, Twine(EndName).concat(T));
Samuel Antaoee8fb302016-01-06 13:42:12 +00003761
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003762 llvm::Constant *Data[] = {ImgBegin, ImgEnd, HostEntriesBegin,
3763 HostEntriesEnd};
3764 createConstantGlobalStructAndAddToParent(CGM, getTgtDeviceImageQTy(), Data,
3765 DeviceImagesEntries);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003766 }
3767
3768 // Create device images global array.
Alexey Bataev18fa2322018-05-02 14:20:50 +00003769 std::string ImagesName = getName({"omp_offloading", "device_images"});
John McCall6c9f1fdb2016-11-19 08:17:24 +00003770 llvm::GlobalVariable *DeviceImages =
Alexey Bataev18fa2322018-05-02 14:20:50 +00003771 DeviceImagesEntries.finishAndCreateGlobal(ImagesName,
3772 CGM.getPointerAlign(),
3773 /*isConstant=*/true);
Peter Collingbournebcf909d2016-06-14 21:02:05 +00003774 DeviceImages->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003775
3776 // This is a Zero array to be used in the creation of the constant expressions
3777 llvm::Constant *Index[] = {llvm::Constant::getNullValue(CGM.Int32Ty),
3778 llvm::Constant::getNullValue(CGM.Int32Ty)};
3779
3780 // Create the target region descriptor.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003781 llvm::Constant *Data[] = {
3782 llvm::ConstantInt::get(CGM.Int32Ty, Devices.size()),
3783 llvm::ConstantExpr::getGetElementPtr(DeviceImages->getValueType(),
3784 DeviceImages, Index),
3785 HostEntriesBegin, HostEntriesEnd};
Alexey Bataev18fa2322018-05-02 14:20:50 +00003786 std::string Descriptor = getName({"omp_offloading", "descriptor"});
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003787 llvm::GlobalVariable *Desc = createConstantGlobalStruct(
Alexey Bataev18fa2322018-05-02 14:20:50 +00003788 CGM, getTgtBinaryDescriptorQTy(), Data, Descriptor);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003789
3790 // Emit code to register or unregister the descriptor at execution
3791 // startup or closing, respectively.
3792
Alexey Bataev03f270c2018-03-30 18:31:07 +00003793 llvm::Function *UnRegFn;
3794 {
3795 FunctionArgList Args;
3796 ImplicitParamDecl DummyPtr(C, C.VoidPtrTy, ImplicitParamDecl::Other);
3797 Args.push_back(&DummyPtr);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003798
Alexey Bataev03f270c2018-03-30 18:31:07 +00003799 CodeGenFunction CGF(CGM);
3800 // Disable debug info for global (de-)initializer because they are not part
3801 // of some particular construct.
3802 CGF.disableDebugInfo();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003803 const auto &FI =
3804 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args);
3805 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
Alexey Bataev18fa2322018-05-02 14:20:50 +00003806 std::string UnregName = getName({"omp_offloading", "descriptor_unreg"});
3807 UnRegFn = CGM.CreateGlobalInitOrDestructFunction(FTy, UnregName, FI);
Alexey Bataev03f270c2018-03-30 18:31:07 +00003808 CGF.StartFunction(GlobalDecl(), C.VoidTy, UnRegFn, FI, Args);
3809 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__tgt_unregister_lib),
3810 Desc);
3811 CGF.FinishFunction();
3812 }
3813 llvm::Function *RegFn;
3814 {
3815 CodeGenFunction CGF(CGM);
3816 // Disable debug info for global (de-)initializer because they are not part
3817 // of some particular construct.
3818 CGF.disableDebugInfo();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003819 const auto &FI = CGM.getTypes().arrangeNullaryFunction();
Alexey Bataev03f270c2018-03-30 18:31:07 +00003820 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
Sergey Dmitrievbde9cf92018-08-03 20:19:28 +00003821
3822 // Encode offload target triples into the registration function name. It
3823 // will serve as a comdat key for the registration/unregistration code for
3824 // this particular combination of offloading targets.
3825 SmallVector<StringRef, 4U> RegFnNameParts(Devices.size() + 2U);
3826 RegFnNameParts[0] = "omp_offloading";
3827 RegFnNameParts[1] = "descriptor_reg";
3828 llvm::transform(Devices, std::next(RegFnNameParts.begin(), 2),
3829 [](const llvm::Triple &T) -> const std::string& {
3830 return T.getTriple();
3831 });
3832 llvm::sort(std::next(RegFnNameParts.begin(), 2), RegFnNameParts.end());
3833 std::string Descriptor = getName(RegFnNameParts);
Alexey Bataev18fa2322018-05-02 14:20:50 +00003834 RegFn = CGM.CreateGlobalInitOrDestructFunction(FTy, Descriptor, FI);
Alexey Bataev03f270c2018-03-30 18:31:07 +00003835 CGF.StartFunction(GlobalDecl(), C.VoidTy, RegFn, FI, FunctionArgList());
3836 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__tgt_register_lib), Desc);
3837 // Create a variable to drive the registration and unregistration of the
3838 // descriptor, so we can reuse the logic that emits Ctors and Dtors.
3839 ImplicitParamDecl RegUnregVar(C, C.getTranslationUnitDecl(),
3840 SourceLocation(), nullptr, C.CharTy,
3841 ImplicitParamDecl::Other);
3842 CGM.getCXXABI().registerGlobalDtor(CGF, RegUnregVar, UnRegFn, Desc);
3843 CGF.FinishFunction();
3844 }
George Rokos29d0f002017-05-27 03:03:13 +00003845 if (CGM.supportsCOMDAT()) {
3846 // It is sufficient to call registration function only once, so create a
3847 // COMDAT group for registration/unregistration functions and associated
3848 // data. That would reduce startup time and code size. Registration
3849 // function serves as a COMDAT group key.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003850 llvm::Comdat *ComdatKey = M.getOrInsertComdat(RegFn->getName());
George Rokos29d0f002017-05-27 03:03:13 +00003851 RegFn->setLinkage(llvm::GlobalValue::LinkOnceAnyLinkage);
3852 RegFn->setVisibility(llvm::GlobalValue::HiddenVisibility);
3853 RegFn->setComdat(ComdatKey);
3854 UnRegFn->setComdat(ComdatKey);
3855 DeviceImages->setComdat(ComdatKey);
3856 Desc->setComdat(ComdatKey);
3857 }
Samuel Antaoee8fb302016-01-06 13:42:12 +00003858 return RegFn;
3859}
3860
Alexey Bataev03f270c2018-03-30 18:31:07 +00003861void CGOpenMPRuntime::createOffloadEntry(
3862 llvm::Constant *ID, llvm::Constant *Addr, uint64_t Size, int32_t Flags,
3863 llvm::GlobalValue::LinkageTypes Linkage) {
Samuel Antao2de62b02016-02-13 23:35:10 +00003864 StringRef Name = Addr->getName();
Samuel Antaoee8fb302016-01-06 13:42:12 +00003865 llvm::Module &M = CGM.getModule();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003866 llvm::LLVMContext &C = M.getContext();
Samuel Antaoee8fb302016-01-06 13:42:12 +00003867
3868 // Create constant string with the name.
3869 llvm::Constant *StrPtrInit = llvm::ConstantDataArray::getString(C, Name);
3870
Alexey Bataev18fa2322018-05-02 14:20:50 +00003871 std::string StringName = getName({"omp_offloading", "entry_name"});
3872 auto *Str = new llvm::GlobalVariable(
3873 M, StrPtrInit->getType(), /*isConstant=*/true,
3874 llvm::GlobalValue::InternalLinkage, StrPtrInit, StringName);
Peter Collingbournebcf909d2016-06-14 21:02:05 +00003875 Str->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003876
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003877 llvm::Constant *Data[] = {llvm::ConstantExpr::getBitCast(ID, CGM.VoidPtrTy),
3878 llvm::ConstantExpr::getBitCast(Str, CGM.Int8PtrTy),
3879 llvm::ConstantInt::get(CGM.SizeTy, Size),
3880 llvm::ConstantInt::get(CGM.Int32Ty, Flags),
3881 llvm::ConstantInt::get(CGM.Int32Ty, 0)};
Alexey Bataev18fa2322018-05-02 14:20:50 +00003882 std::string EntryName = getName({"omp_offloading", "entry", ""});
Alexey Bataev9a700172018-05-08 14:16:57 +00003883 llvm::GlobalVariable *Entry = createConstantGlobalStruct(
3884 CGM, getTgtOffloadEntryQTy(), Data, Twine(EntryName).concat(Name),
3885 llvm::GlobalValue::WeakAnyLinkage);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003886
3887 // The entry has to be created in the section the linker expects it to be.
Alexey Bataev18fa2322018-05-02 14:20:50 +00003888 std::string Section = getName({"omp_offloading", "entries"});
3889 Entry->setSection(Section);
Samuel Antaoee8fb302016-01-06 13:42:12 +00003890}
3891
3892void CGOpenMPRuntime::createOffloadEntriesAndInfoMetadata() {
3893 // Emit the offloading entries and metadata so that the device codegen side
Samuel Antao4c8035b2016-12-12 18:00:20 +00003894 // can easily figure out what to emit. The produced metadata looks like
3895 // this:
Samuel Antaoee8fb302016-01-06 13:42:12 +00003896 //
3897 // !omp_offload.info = !{!1, ...}
3898 //
3899 // Right now we only generate metadata for function that contain target
3900 // regions.
3901
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00003902 // If we do not have entries, we don't need to do anything.
Samuel Antaoee8fb302016-01-06 13:42:12 +00003903 if (OffloadEntriesInfoManager.empty())
3904 return;
3905
3906 llvm::Module &M = CGM.getModule();
3907 llvm::LLVMContext &C = M.getContext();
Alexey Bataev03f270c2018-03-30 18:31:07 +00003908 SmallVector<const OffloadEntriesInfoManagerTy::OffloadEntryInfo *, 16>
Samuel Antaoee8fb302016-01-06 13:42:12 +00003909 OrderedEntries(OffloadEntriesInfoManager.size());
3910
Simon Pilgrim2c518802017-03-30 14:13:19 +00003911 // Auxiliary methods to create metadata values and strings.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003912 auto &&GetMDInt = [this](unsigned V) {
Samuel Antaoee8fb302016-01-06 13:42:12 +00003913 return llvm::ConstantAsMetadata::get(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00003914 llvm::ConstantInt::get(CGM.Int32Ty, V));
Samuel Antaoee8fb302016-01-06 13:42:12 +00003915 };
3916
Alexey Bataev03f270c2018-03-30 18:31:07 +00003917 auto &&GetMDString = [&C](StringRef V) { return llvm::MDString::get(C, V); };
3918
3919 // Create the offloading info metadata node.
3920 llvm::NamedMDNode *MD = M.getOrInsertNamedMetadata("omp_offload.info");
Samuel Antaoee8fb302016-01-06 13:42:12 +00003921
3922 // Create function that emits metadata for each target region entry;
Alexey Bataev03f270c2018-03-30 18:31:07 +00003923 auto &&TargetRegionMetadataEmitter =
3924 [&C, MD, &OrderedEntries, &GetMDInt, &GetMDString](
3925 unsigned DeviceID, unsigned FileID, StringRef ParentName,
3926 unsigned Line,
3927 const OffloadEntriesInfoManagerTy::OffloadEntryInfoTargetRegion &E) {
3928 // Generate metadata for target regions. Each entry of this metadata
3929 // contains:
3930 // - Entry 0 -> Kind of this type of metadata (0).
3931 // - Entry 1 -> Device ID of the file where the entry was identified.
3932 // - Entry 2 -> File ID of the file where the entry was identified.
3933 // - Entry 3 -> Mangled name of the function where the entry was
3934 // identified.
3935 // - Entry 4 -> Line in the file where the entry was identified.
3936 // - Entry 5 -> Order the entry was created.
3937 // The first element of the metadata node is the kind.
3938 llvm::Metadata *Ops[] = {GetMDInt(E.getKind()), GetMDInt(DeviceID),
3939 GetMDInt(FileID), GetMDString(ParentName),
3940 GetMDInt(Line), GetMDInt(E.getOrder())};
Samuel Antaoee8fb302016-01-06 13:42:12 +00003941
Alexey Bataev03f270c2018-03-30 18:31:07 +00003942 // Save this entry in the right position of the ordered entries array.
3943 OrderedEntries[E.getOrder()] = &E;
Samuel Antaoee8fb302016-01-06 13:42:12 +00003944
Alexey Bataev03f270c2018-03-30 18:31:07 +00003945 // Add metadata to the named metadata node.
3946 MD->addOperand(llvm::MDNode::get(C, Ops));
3947 };
Samuel Antaoee8fb302016-01-06 13:42:12 +00003948
3949 OffloadEntriesInfoManager.actOnTargetRegionEntriesInfo(
3950 TargetRegionMetadataEmitter);
3951
Alexey Bataev03f270c2018-03-30 18:31:07 +00003952 // Create function that emits metadata for each device global variable entry;
3953 auto &&DeviceGlobalVarMetadataEmitter =
3954 [&C, &OrderedEntries, &GetMDInt, &GetMDString,
3955 MD](StringRef MangledName,
3956 const OffloadEntriesInfoManagerTy::OffloadEntryInfoDeviceGlobalVar
3957 &E) {
3958 // Generate metadata for global variables. Each entry of this metadata
3959 // contains:
3960 // - Entry 0 -> Kind of this type of metadata (1).
3961 // - Entry 1 -> Mangled name of the variable.
3962 // - Entry 2 -> Declare target kind.
3963 // - Entry 3 -> Order the entry was created.
3964 // The first element of the metadata node is the kind.
3965 llvm::Metadata *Ops[] = {
3966 GetMDInt(E.getKind()), GetMDString(MangledName),
3967 GetMDInt(E.getFlags()), GetMDInt(E.getOrder())};
3968
3969 // Save this entry in the right position of the ordered entries array.
3970 OrderedEntries[E.getOrder()] = &E;
3971
3972 // Add metadata to the named metadata node.
3973 MD->addOperand(llvm::MDNode::get(C, Ops));
3974 };
3975
3976 OffloadEntriesInfoManager.actOnDeviceGlobalVarEntriesInfo(
3977 DeviceGlobalVarMetadataEmitter);
3978
3979 for (const auto *E : OrderedEntries) {
Samuel Antaoee8fb302016-01-06 13:42:12 +00003980 assert(E && "All ordered entries must exist!");
Alexey Bataev03f270c2018-03-30 18:31:07 +00003981 if (const auto *CE =
Samuel Antaoee8fb302016-01-06 13:42:12 +00003982 dyn_cast<OffloadEntriesInfoManagerTy::OffloadEntryInfoTargetRegion>(
3983 E)) {
Alexey Bataev64e62dc2018-04-30 16:26:57 +00003984 if (!CE->getID() || !CE->getAddress()) {
3985 unsigned DiagID = CGM.getDiags().getCustomDiagID(
3986 DiagnosticsEngine::Error,
Alexey Bataev7f01d202018-07-16 18:12:18 +00003987 "Offloading entry for target region is incorrect: either the "
Alexey Bataev64e62dc2018-04-30 16:26:57 +00003988 "address or the ID is invalid.");
3989 CGM.getDiags().Report(DiagID);
3990 continue;
3991 }
Alexey Bataev34f8a702018-03-28 14:28:54 +00003992 createOffloadEntry(CE->getID(), CE->getAddress(), /*Size=*/0,
Alexey Bataev03f270c2018-03-30 18:31:07 +00003993 CE->getFlags(), llvm::GlobalValue::WeakAnyLinkage);
3994 } else if (const auto *CE =
3995 dyn_cast<OffloadEntriesInfoManagerTy::
3996 OffloadEntryInfoDeviceGlobalVar>(E)) {
Alexey Bataevc52f01d2018-07-16 20:05:25 +00003997 OffloadEntriesInfoManagerTy::OMPTargetGlobalVarEntryKind Flags =
3998 static_cast<OffloadEntriesInfoManagerTy::OMPTargetGlobalVarEntryKind>(
3999 CE->getFlags());
4000 switch (Flags) {
4001 case OffloadEntriesInfoManagerTy::OMPTargetGlobalVarEntryTo: {
4002 if (!CE->getAddress()) {
4003 unsigned DiagID = CGM.getDiags().getCustomDiagID(
4004 DiagnosticsEngine::Error,
4005 "Offloading entry for declare target variable is incorrect: the "
4006 "address is invalid.");
4007 CGM.getDiags().Report(DiagID);
4008 continue;
4009 }
4010 break;
4011 }
4012 case OffloadEntriesInfoManagerTy::OMPTargetGlobalVarEntryLink:
4013 assert(((CGM.getLangOpts().OpenMPIsDevice && !CE->getAddress()) ||
4014 (!CGM.getLangOpts().OpenMPIsDevice && CE->getAddress())) &&
4015 "Declaret target link address is set.");
4016 if (CGM.getLangOpts().OpenMPIsDevice)
4017 continue;
4018 if (!CE->getAddress()) {
4019 unsigned DiagID = CGM.getDiags().getCustomDiagID(
4020 DiagnosticsEngine::Error,
4021 "Offloading entry for declare target variable is incorrect: the "
4022 "address is invalid.");
4023 CGM.getDiags().Report(DiagID);
4024 continue;
4025 }
4026 break;
Alexey Bataev64e62dc2018-04-30 16:26:57 +00004027 }
Alexey Bataev03f270c2018-03-30 18:31:07 +00004028 createOffloadEntry(CE->getAddress(), CE->getAddress(),
Alexey Bataevc52f01d2018-07-16 20:05:25 +00004029 CE->getVarSize().getQuantity(), Flags,
Alexey Bataev03f270c2018-03-30 18:31:07 +00004030 CE->getLinkage());
4031 } else {
Samuel Antaoee8fb302016-01-06 13:42:12 +00004032 llvm_unreachable("Unsupported entry kind.");
Alexey Bataev03f270c2018-03-30 18:31:07 +00004033 }
Samuel Antaoee8fb302016-01-06 13:42:12 +00004034 }
4035}
4036
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004037/// Loads all the offload entries information from the host IR
Samuel Antaoee8fb302016-01-06 13:42:12 +00004038/// metadata.
4039void CGOpenMPRuntime::loadOffloadInfoMetadata() {
4040 // If we are in target mode, load the metadata from the host IR. This code has
4041 // to match the metadaata creation in createOffloadEntriesAndInfoMetadata().
4042
4043 if (!CGM.getLangOpts().OpenMPIsDevice)
4044 return;
4045
4046 if (CGM.getLangOpts().OMPHostIRFile.empty())
4047 return;
4048
4049 auto Buf = llvm::MemoryBuffer::getFile(CGM.getLangOpts().OMPHostIRFile);
Alexey Bataev64e62dc2018-04-30 16:26:57 +00004050 if (auto EC = Buf.getError()) {
4051 CGM.getDiags().Report(diag::err_cannot_open_file)
4052 << CGM.getLangOpts().OMPHostIRFile << EC.message();
Samuel Antaoee8fb302016-01-06 13:42:12 +00004053 return;
Alexey Bataev64e62dc2018-04-30 16:26:57 +00004054 }
Samuel Antaoee8fb302016-01-06 13:42:12 +00004055
4056 llvm::LLVMContext C;
Peter Collingbourned9445c42016-11-13 07:00:17 +00004057 auto ME = expectedToErrorOrAndEmitErrors(
4058 C, llvm::parseBitcodeFile(Buf.get()->getMemBufferRef(), C));
Samuel Antaoee8fb302016-01-06 13:42:12 +00004059
Alexey Bataev64e62dc2018-04-30 16:26:57 +00004060 if (auto EC = ME.getError()) {
4061 unsigned DiagID = CGM.getDiags().getCustomDiagID(
4062 DiagnosticsEngine::Error, "Unable to parse host IR file '%0':'%1'");
4063 CGM.getDiags().Report(DiagID)
4064 << CGM.getLangOpts().OMPHostIRFile << EC.message();
Samuel Antaoee8fb302016-01-06 13:42:12 +00004065 return;
Alexey Bataev64e62dc2018-04-30 16:26:57 +00004066 }
Samuel Antaoee8fb302016-01-06 13:42:12 +00004067
4068 llvm::NamedMDNode *MD = ME.get()->getNamedMetadata("omp_offload.info");
4069 if (!MD)
4070 return;
4071
George Burgess IV00f70bd2018-03-01 05:43:23 +00004072 for (llvm::MDNode *MN : MD->operands()) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004073 auto &&GetMDInt = [MN](unsigned Idx) {
4074 auto *V = cast<llvm::ConstantAsMetadata>(MN->getOperand(Idx));
Samuel Antaoee8fb302016-01-06 13:42:12 +00004075 return cast<llvm::ConstantInt>(V->getValue())->getZExtValue();
4076 };
4077
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004078 auto &&GetMDString = [MN](unsigned Idx) {
4079 auto *V = cast<llvm::MDString>(MN->getOperand(Idx));
Samuel Antaoee8fb302016-01-06 13:42:12 +00004080 return V->getString();
4081 };
4082
Alexey Bataev03f270c2018-03-30 18:31:07 +00004083 switch (GetMDInt(0)) {
Samuel Antaoee8fb302016-01-06 13:42:12 +00004084 default:
4085 llvm_unreachable("Unexpected metadata!");
4086 break;
4087 case OffloadEntriesInfoManagerTy::OffloadEntryInfo::
Alexey Bataev34f8a702018-03-28 14:28:54 +00004088 OffloadingEntryInfoTargetRegion:
Samuel Antaoee8fb302016-01-06 13:42:12 +00004089 OffloadEntriesInfoManager.initializeTargetRegionEntryInfo(
Alexey Bataev03f270c2018-03-30 18:31:07 +00004090 /*DeviceID=*/GetMDInt(1), /*FileID=*/GetMDInt(2),
4091 /*ParentName=*/GetMDString(3), /*Line=*/GetMDInt(4),
4092 /*Order=*/GetMDInt(5));
4093 break;
4094 case OffloadEntriesInfoManagerTy::OffloadEntryInfo::
4095 OffloadingEntryInfoDeviceGlobalVar:
4096 OffloadEntriesInfoManager.initializeDeviceGlobalVarEntryInfo(
4097 /*MangledName=*/GetMDString(1),
4098 static_cast<OffloadEntriesInfoManagerTy::OMPTargetGlobalVarEntryKind>(
4099 /*Flags=*/GetMDInt(2)),
4100 /*Order=*/GetMDInt(3));
Samuel Antaoee8fb302016-01-06 13:42:12 +00004101 break;
4102 }
4103 }
4104}
4105
Alexey Bataev62b63b12015-03-10 07:28:44 +00004106void CGOpenMPRuntime::emitKmpRoutineEntryT(QualType KmpInt32Ty) {
4107 if (!KmpRoutineEntryPtrTy) {
4108 // Build typedef kmp_int32 (* kmp_routine_entry_t)(kmp_int32, void *); type.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004109 ASTContext &C = CGM.getContext();
Alexey Bataev62b63b12015-03-10 07:28:44 +00004110 QualType KmpRoutineEntryTyArgs[] = {KmpInt32Ty, C.VoidPtrTy};
4111 FunctionProtoType::ExtProtoInfo EPI;
4112 KmpRoutineEntryPtrQTy = C.getPointerType(
4113 C.getFunctionType(KmpInt32Ty, KmpRoutineEntryTyArgs, EPI));
4114 KmpRoutineEntryPtrTy = CGM.getTypes().ConvertType(KmpRoutineEntryPtrQTy);
4115 }
4116}
4117
Samuel Antaoee8fb302016-01-06 13:42:12 +00004118QualType CGOpenMPRuntime::getTgtOffloadEntryQTy() {
Samuel Antaoee8fb302016-01-06 13:42:12 +00004119 // Make sure the type of the entry is already created. This is the type we
4120 // have to create:
4121 // struct __tgt_offload_entry{
4122 // void *addr; // Pointer to the offload entry info.
4123 // // (function or global)
4124 // char *name; // Name of the function or global.
4125 // size_t size; // Size of the entry info (0 if it a function).
Samuel Antaof83efdb2017-01-05 16:02:49 +00004126 // int32_t flags; // Flags associated with the entry, e.g. 'link'.
4127 // int32_t reserved; // Reserved, to use by the runtime library.
Samuel Antaoee8fb302016-01-06 13:42:12 +00004128 // };
4129 if (TgtOffloadEntryQTy.isNull()) {
4130 ASTContext &C = CGM.getContext();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004131 RecordDecl *RD = C.buildImplicitRecord("__tgt_offload_entry");
Samuel Antaoee8fb302016-01-06 13:42:12 +00004132 RD->startDefinition();
4133 addFieldToRecordDecl(C, RD, C.VoidPtrTy);
4134 addFieldToRecordDecl(C, RD, C.getPointerType(C.CharTy));
4135 addFieldToRecordDecl(C, RD, C.getSizeType());
Samuel Antaof83efdb2017-01-05 16:02:49 +00004136 addFieldToRecordDecl(
4137 C, RD, C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/true));
4138 addFieldToRecordDecl(
4139 C, RD, C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/true));
Samuel Antaoee8fb302016-01-06 13:42:12 +00004140 RD->completeDefinition();
Jonas Hahnfeld5e4df282018-01-18 15:38:03 +00004141 RD->addAttr(PackedAttr::CreateImplicit(C));
Samuel Antaoee8fb302016-01-06 13:42:12 +00004142 TgtOffloadEntryQTy = C.getRecordType(RD);
4143 }
4144 return TgtOffloadEntryQTy;
4145}
4146
4147QualType CGOpenMPRuntime::getTgtDeviceImageQTy() {
4148 // These are the types we need to build:
4149 // struct __tgt_device_image{
4150 // void *ImageStart; // Pointer to the target code start.
4151 // void *ImageEnd; // Pointer to the target code end.
4152 // // We also add the host entries to the device image, as it may be useful
4153 // // for the target runtime to have access to that information.
4154 // __tgt_offload_entry *EntriesBegin; // Begin of the table with all
4155 // // the entries.
4156 // __tgt_offload_entry *EntriesEnd; // End of the table with all the
4157 // // entries (non inclusive).
4158 // };
4159 if (TgtDeviceImageQTy.isNull()) {
4160 ASTContext &C = CGM.getContext();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004161 RecordDecl *RD = C.buildImplicitRecord("__tgt_device_image");
Samuel Antaoee8fb302016-01-06 13:42:12 +00004162 RD->startDefinition();
4163 addFieldToRecordDecl(C, RD, C.VoidPtrTy);
4164 addFieldToRecordDecl(C, RD, C.VoidPtrTy);
4165 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy()));
4166 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy()));
4167 RD->completeDefinition();
4168 TgtDeviceImageQTy = C.getRecordType(RD);
4169 }
4170 return TgtDeviceImageQTy;
4171}
4172
4173QualType CGOpenMPRuntime::getTgtBinaryDescriptorQTy() {
4174 // struct __tgt_bin_desc{
4175 // int32_t NumDevices; // Number of devices supported.
4176 // __tgt_device_image *DeviceImages; // Arrays of device images
4177 // // (one per device).
4178 // __tgt_offload_entry *EntriesBegin; // Begin of the table with all the
4179 // // entries.
4180 // __tgt_offload_entry *EntriesEnd; // End of the table with all the
4181 // // entries (non inclusive).
4182 // };
4183 if (TgtBinaryDescriptorQTy.isNull()) {
4184 ASTContext &C = CGM.getContext();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004185 RecordDecl *RD = C.buildImplicitRecord("__tgt_bin_desc");
Samuel Antaoee8fb302016-01-06 13:42:12 +00004186 RD->startDefinition();
4187 addFieldToRecordDecl(
4188 C, RD, C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/true));
4189 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtDeviceImageQTy()));
4190 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy()));
4191 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy()));
4192 RD->completeDefinition();
4193 TgtBinaryDescriptorQTy = C.getRecordType(RD);
4194 }
4195 return TgtBinaryDescriptorQTy;
4196}
4197
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004198namespace {
Alexey Bataev9e034042015-05-05 04:05:12 +00004199struct PrivateHelpersTy {
4200 PrivateHelpersTy(const VarDecl *Original, const VarDecl *PrivateCopy,
4201 const VarDecl *PrivateElemInit)
4202 : Original(Original), PrivateCopy(PrivateCopy),
4203 PrivateElemInit(PrivateElemInit) {}
4204 const VarDecl *Original;
4205 const VarDecl *PrivateCopy;
4206 const VarDecl *PrivateElemInit;
4207};
4208typedef std::pair<CharUnits /*Align*/, PrivateHelpersTy> PrivateDataTy;
Hans Wennborg7eb54642015-09-10 17:07:54 +00004209} // anonymous namespace
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004210
Alexey Bataev9e034042015-05-05 04:05:12 +00004211static RecordDecl *
Craig Topper8674c5c2015-09-29 04:30:07 +00004212createPrivatesRecordDecl(CodeGenModule &CGM, ArrayRef<PrivateDataTy> Privates) {
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004213 if (!Privates.empty()) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004214 ASTContext &C = CGM.getContext();
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004215 // Build struct .kmp_privates_t. {
4216 // /* private vars */
4217 // };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004218 RecordDecl *RD = C.buildImplicitRecord(".kmp_privates.t");
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004219 RD->startDefinition();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004220 for (const auto &Pair : Privates) {
4221 const VarDecl *VD = Pair.second.Original;
4222 QualType Type = VD->getType().getNonReferenceType();
4223 FieldDecl *FD = addFieldToRecordDecl(C, RD, Type);
Alexey Bataevc71a4092015-09-11 10:29:41 +00004224 if (VD->hasAttrs()) {
4225 for (specific_attr_iterator<AlignedAttr> I(VD->getAttrs().begin()),
4226 E(VD->getAttrs().end());
4227 I != E; ++I)
4228 FD->addAttr(*I);
4229 }
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004230 }
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004231 RD->completeDefinition();
4232 return RD;
4233 }
4234 return nullptr;
4235}
4236
Alexey Bataev9e034042015-05-05 04:05:12 +00004237static RecordDecl *
Alexey Bataev7292c292016-04-25 12:22:29 +00004238createKmpTaskTRecordDecl(CodeGenModule &CGM, OpenMPDirectiveKind Kind,
4239 QualType KmpInt32Ty,
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004240 QualType KmpRoutineEntryPointerQTy) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004241 ASTContext &C = CGM.getContext();
Alexey Bataev62b63b12015-03-10 07:28:44 +00004242 // Build struct kmp_task_t {
4243 // void * shareds;
4244 // kmp_routine_entry_t routine;
4245 // kmp_int32 part_id;
Alexey Bataevad537bb2016-05-30 09:06:50 +00004246 // kmp_cmplrdata_t data1;
4247 // kmp_cmplrdata_t data2;
Alexey Bataev7292c292016-04-25 12:22:29 +00004248 // For taskloops additional fields:
4249 // kmp_uint64 lb;
4250 // kmp_uint64 ub;
4251 // kmp_int64 st;
4252 // kmp_int32 liter;
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00004253 // void * reductions;
Alexey Bataev62b63b12015-03-10 07:28:44 +00004254 // };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004255 RecordDecl *UD = C.buildImplicitRecord("kmp_cmplrdata_t", TTK_Union);
Alexey Bataevad537bb2016-05-30 09:06:50 +00004256 UD->startDefinition();
4257 addFieldToRecordDecl(C, UD, KmpInt32Ty);
4258 addFieldToRecordDecl(C, UD, KmpRoutineEntryPointerQTy);
4259 UD->completeDefinition();
4260 QualType KmpCmplrdataTy = C.getRecordType(UD);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004261 RecordDecl *RD = C.buildImplicitRecord("kmp_task_t");
Alexey Bataev62b63b12015-03-10 07:28:44 +00004262 RD->startDefinition();
4263 addFieldToRecordDecl(C, RD, C.VoidPtrTy);
4264 addFieldToRecordDecl(C, RD, KmpRoutineEntryPointerQTy);
4265 addFieldToRecordDecl(C, RD, KmpInt32Ty);
Alexey Bataevad537bb2016-05-30 09:06:50 +00004266 addFieldToRecordDecl(C, RD, KmpCmplrdataTy);
4267 addFieldToRecordDecl(C, RD, KmpCmplrdataTy);
Alexey Bataev7292c292016-04-25 12:22:29 +00004268 if (isOpenMPTaskLoopDirective(Kind)) {
4269 QualType KmpUInt64Ty =
4270 CGM.getContext().getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/0);
4271 QualType KmpInt64Ty =
4272 CGM.getContext().getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/1);
4273 addFieldToRecordDecl(C, RD, KmpUInt64Ty);
4274 addFieldToRecordDecl(C, RD, KmpUInt64Ty);
4275 addFieldToRecordDecl(C, RD, KmpInt64Ty);
4276 addFieldToRecordDecl(C, RD, KmpInt32Ty);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00004277 addFieldToRecordDecl(C, RD, C.VoidPtrTy);
Alexey Bataev7292c292016-04-25 12:22:29 +00004278 }
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004279 RD->completeDefinition();
4280 return RD;
4281}
4282
4283static RecordDecl *
4284createKmpTaskTWithPrivatesRecordDecl(CodeGenModule &CGM, QualType KmpTaskTQTy,
Craig Topper8674c5c2015-09-29 04:30:07 +00004285 ArrayRef<PrivateDataTy> Privates) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004286 ASTContext &C = CGM.getContext();
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004287 // Build struct kmp_task_t_with_privates {
4288 // kmp_task_t task_data;
4289 // .kmp_privates_t. privates;
4290 // };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004291 RecordDecl *RD = C.buildImplicitRecord("kmp_task_t_with_privates");
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004292 RD->startDefinition();
4293 addFieldToRecordDecl(C, RD, KmpTaskTQTy);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004294 if (const RecordDecl *PrivateRD = createPrivatesRecordDecl(CGM, Privates))
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004295 addFieldToRecordDecl(C, RD, C.getRecordType(PrivateRD));
Alexey Bataev62b63b12015-03-10 07:28:44 +00004296 RD->completeDefinition();
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004297 return RD;
Alexey Bataev62b63b12015-03-10 07:28:44 +00004298}
4299
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004300/// Emit a proxy function which accepts kmp_task_t as the second
Alexey Bataev62b63b12015-03-10 07:28:44 +00004301/// argument.
4302/// \code
4303/// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) {
Alexey Bataev48591dd2016-04-20 04:01:36 +00004304/// TaskFunction(gtid, tt->part_id, &tt->privates, task_privates_map, tt,
Alexey Bataev7292c292016-04-25 12:22:29 +00004305/// For taskloops:
4306/// tt->task_data.lb, tt->task_data.ub, tt->task_data.st, tt->task_data.liter,
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00004307/// tt->reductions, tt->shareds);
Alexey Bataev62b63b12015-03-10 07:28:44 +00004308/// return 0;
4309/// }
4310/// \endcode
4311static llvm::Value *
4312emitProxyTaskFunction(CodeGenModule &CGM, SourceLocation Loc,
Alexey Bataev7292c292016-04-25 12:22:29 +00004313 OpenMPDirectiveKind Kind, QualType KmpInt32Ty,
4314 QualType KmpTaskTWithPrivatesPtrQTy,
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004315 QualType KmpTaskTWithPrivatesQTy, QualType KmpTaskTQTy,
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004316 QualType SharedsPtrTy, llvm::Value *TaskFunction,
4317 llvm::Value *TaskPrivatesMap) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004318 ASTContext &C = CGM.getContext();
Alexey Bataev62b63b12015-03-10 07:28:44 +00004319 FunctionArgList Args;
Alexey Bataev56223232017-06-09 13:40:18 +00004320 ImplicitParamDecl GtidArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, KmpInt32Ty,
4321 ImplicitParamDecl::Other);
4322 ImplicitParamDecl TaskTypeArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr,
4323 KmpTaskTWithPrivatesPtrQTy.withRestrict(),
4324 ImplicitParamDecl::Other);
Alexey Bataev62b63b12015-03-10 07:28:44 +00004325 Args.push_back(&GtidArg);
4326 Args.push_back(&TaskTypeArg);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004327 const auto &TaskEntryFnInfo =
John McCallc56a8b32016-03-11 04:30:31 +00004328 CGM.getTypes().arrangeBuiltinFunctionDeclaration(KmpInt32Ty, Args);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004329 llvm::FunctionType *TaskEntryTy =
4330 CGM.getTypes().GetFunctionType(TaskEntryFnInfo);
Alexey Bataev18fa2322018-05-02 14:20:50 +00004331 std::string Name = CGM.getOpenMPRuntime().getName({"omp_task_entry", ""});
4332 auto *TaskEntry = llvm::Function::Create(
4333 TaskEntryTy, llvm::GlobalValue::InternalLinkage, Name, &CGM.getModule());
Rafael Espindola51ec5a92018-02-28 23:46:35 +00004334 CGM.SetInternalFunctionAttributes(GlobalDecl(), TaskEntry, TaskEntryFnInfo);
Alexey Bataevc0f879b2018-04-10 20:10:53 +00004335 TaskEntry->setDoesNotRecurse();
Alexey Bataev62b63b12015-03-10 07:28:44 +00004336 CodeGenFunction CGF(CGM);
Alexey Bataev7cae94e2018-01-04 19:45:16 +00004337 CGF.StartFunction(GlobalDecl(), KmpInt32Ty, TaskEntry, TaskEntryFnInfo, Args,
4338 Loc, Loc);
Alexey Bataev62b63b12015-03-10 07:28:44 +00004339
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004340 // TaskFunction(gtid, tt->task_data.part_id, &tt->privates, task_privates_map,
Alexey Bataev7292c292016-04-25 12:22:29 +00004341 // tt,
4342 // For taskloops:
4343 // tt->task_data.lb, tt->task_data.ub, tt->task_data.st, tt->task_data.liter,
4344 // tt->task_data.shareds);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004345 llvm::Value *GtidParam = CGF.EmitLoadOfScalar(
John McCall7f416cc2015-09-08 08:05:57 +00004346 CGF.GetAddrOfLocalVar(&GtidArg), /*Volatile=*/false, KmpInt32Ty, Loc);
Alexey Bataev31300ed2016-02-04 11:27:03 +00004347 LValue TDBase = CGF.EmitLoadOfPointerLValue(
4348 CGF.GetAddrOfLocalVar(&TaskTypeArg),
4349 KmpTaskTWithPrivatesPtrQTy->castAs<PointerType>());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004350 const auto *KmpTaskTWithPrivatesQTyRD =
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004351 cast<RecordDecl>(KmpTaskTWithPrivatesQTy->getAsTagDecl());
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004352 LValue Base =
4353 CGF.EmitLValueForField(TDBase, *KmpTaskTWithPrivatesQTyRD->field_begin());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004354 const auto *KmpTaskTQTyRD = cast<RecordDecl>(KmpTaskTQTy->getAsTagDecl());
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004355 auto PartIdFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTPartId);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004356 LValue PartIdLVal = CGF.EmitLValueForField(Base, *PartIdFI);
4357 llvm::Value *PartidParam = PartIdLVal.getPointer();
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004358
4359 auto SharedsFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTShareds);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004360 LValue SharedsLVal = CGF.EmitLValueForField(Base, *SharedsFI);
4361 llvm::Value *SharedsParam = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
Alexey Bataev1e491372018-01-23 18:44:14 +00004362 CGF.EmitLoadOfScalar(SharedsLVal, Loc),
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004363 CGF.ConvertTypeForMem(SharedsPtrTy));
4364
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004365 auto PrivatesFI = std::next(KmpTaskTWithPrivatesQTyRD->field_begin(), 1);
4366 llvm::Value *PrivatesParam;
4367 if (PrivatesFI != KmpTaskTWithPrivatesQTyRD->field_end()) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004368 LValue PrivatesLVal = CGF.EmitLValueForField(TDBase, *PrivatesFI);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004369 PrivatesParam = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
John McCall7f416cc2015-09-08 08:05:57 +00004370 PrivatesLVal.getPointer(), CGF.VoidPtrTy);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004371 } else {
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004372 PrivatesParam = llvm::ConstantPointerNull::get(CGF.VoidPtrTy);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004373 }
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004374
Alexey Bataev7292c292016-04-25 12:22:29 +00004375 llvm::Value *CommonArgs[] = {GtidParam, PartidParam, PrivatesParam,
4376 TaskPrivatesMap,
4377 CGF.Builder
4378 .CreatePointerBitCastOrAddrSpaceCast(
4379 TDBase.getAddress(), CGF.VoidPtrTy)
4380 .getPointer()};
4381 SmallVector<llvm::Value *, 16> CallArgs(std::begin(CommonArgs),
4382 std::end(CommonArgs));
4383 if (isOpenMPTaskLoopDirective(Kind)) {
4384 auto LBFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTLowerBound);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004385 LValue LBLVal = CGF.EmitLValueForField(Base, *LBFI);
4386 llvm::Value *LBParam = CGF.EmitLoadOfScalar(LBLVal, Loc);
Alexey Bataev7292c292016-04-25 12:22:29 +00004387 auto UBFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTUpperBound);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004388 LValue UBLVal = CGF.EmitLValueForField(Base, *UBFI);
4389 llvm::Value *UBParam = CGF.EmitLoadOfScalar(UBLVal, Loc);
Alexey Bataev7292c292016-04-25 12:22:29 +00004390 auto StFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTStride);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004391 LValue StLVal = CGF.EmitLValueForField(Base, *StFI);
4392 llvm::Value *StParam = CGF.EmitLoadOfScalar(StLVal, Loc);
Alexey Bataev7292c292016-04-25 12:22:29 +00004393 auto LIFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTLastIter);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004394 LValue LILVal = CGF.EmitLValueForField(Base, *LIFI);
4395 llvm::Value *LIParam = CGF.EmitLoadOfScalar(LILVal, Loc);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00004396 auto RFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTReductions);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004397 LValue RLVal = CGF.EmitLValueForField(Base, *RFI);
4398 llvm::Value *RParam = CGF.EmitLoadOfScalar(RLVal, Loc);
Alexey Bataev7292c292016-04-25 12:22:29 +00004399 CallArgs.push_back(LBParam);
4400 CallArgs.push_back(UBParam);
4401 CallArgs.push_back(StParam);
4402 CallArgs.push_back(LIParam);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00004403 CallArgs.push_back(RParam);
Alexey Bataev7292c292016-04-25 12:22:29 +00004404 }
4405 CallArgs.push_back(SharedsParam);
4406
Alexey Bataev3c595a62017-08-14 15:01:03 +00004407 CGM.getOpenMPRuntime().emitOutlinedFunctionCall(CGF, Loc, TaskFunction,
4408 CallArgs);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004409 CGF.EmitStoreThroughLValue(RValue::get(CGF.Builder.getInt32(/*C=*/0)),
4410 CGF.MakeAddrLValue(CGF.ReturnValue, KmpInt32Ty));
Alexey Bataev62b63b12015-03-10 07:28:44 +00004411 CGF.FinishFunction();
4412 return TaskEntry;
4413}
4414
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004415static llvm::Value *emitDestructorsFunction(CodeGenModule &CGM,
4416 SourceLocation Loc,
4417 QualType KmpInt32Ty,
4418 QualType KmpTaskTWithPrivatesPtrQTy,
4419 QualType KmpTaskTWithPrivatesQTy) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004420 ASTContext &C = CGM.getContext();
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004421 FunctionArgList Args;
Alexey Bataev56223232017-06-09 13:40:18 +00004422 ImplicitParamDecl GtidArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, KmpInt32Ty,
4423 ImplicitParamDecl::Other);
4424 ImplicitParamDecl TaskTypeArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr,
4425 KmpTaskTWithPrivatesPtrQTy.withRestrict(),
4426 ImplicitParamDecl::Other);
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004427 Args.push_back(&GtidArg);
4428 Args.push_back(&TaskTypeArg);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004429 const auto &DestructorFnInfo =
John McCallc56a8b32016-03-11 04:30:31 +00004430 CGM.getTypes().arrangeBuiltinFunctionDeclaration(KmpInt32Ty, Args);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004431 llvm::FunctionType *DestructorFnTy =
4432 CGM.getTypes().GetFunctionType(DestructorFnInfo);
Alexey Bataev18fa2322018-05-02 14:20:50 +00004433 std::string Name =
4434 CGM.getOpenMPRuntime().getName({"omp_task_destructor", ""});
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004435 auto *DestructorFn =
4436 llvm::Function::Create(DestructorFnTy, llvm::GlobalValue::InternalLinkage,
Alexey Bataev18fa2322018-05-02 14:20:50 +00004437 Name, &CGM.getModule());
Rafael Espindola51ec5a92018-02-28 23:46:35 +00004438 CGM.SetInternalFunctionAttributes(GlobalDecl(), DestructorFn,
Akira Hatanaka44a59f82015-10-28 02:30:47 +00004439 DestructorFnInfo);
Alexey Bataevc0f879b2018-04-10 20:10:53 +00004440 DestructorFn->setDoesNotRecurse();
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004441 CodeGenFunction CGF(CGM);
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004442 CGF.StartFunction(GlobalDecl(), KmpInt32Ty, DestructorFn, DestructorFnInfo,
Alexey Bataev7cae94e2018-01-04 19:45:16 +00004443 Args, Loc, Loc);
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004444
Alexey Bataev31300ed2016-02-04 11:27:03 +00004445 LValue Base = CGF.EmitLoadOfPointerLValue(
4446 CGF.GetAddrOfLocalVar(&TaskTypeArg),
4447 KmpTaskTWithPrivatesPtrQTy->castAs<PointerType>());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004448 const auto *KmpTaskTWithPrivatesQTyRD =
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004449 cast<RecordDecl>(KmpTaskTWithPrivatesQTy->getAsTagDecl());
4450 auto FI = std::next(KmpTaskTWithPrivatesQTyRD->field_begin());
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004451 Base = CGF.EmitLValueForField(Base, *FI);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004452 for (const auto *Field :
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004453 cast<RecordDecl>(FI->getType()->getAsTagDecl())->fields()) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004454 if (QualType::DestructionKind DtorKind =
4455 Field->getType().isDestructedType()) {
4456 LValue FieldLValue = CGF.EmitLValueForField(Base, Field);
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004457 CGF.pushDestroy(DtorKind, FieldLValue.getAddress(), Field->getType());
4458 }
4459 }
4460 CGF.FinishFunction();
4461 return DestructorFn;
4462}
4463
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004464/// Emit a privates mapping function for correct handling of private and
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004465/// firstprivate variables.
4466/// \code
4467/// void .omp_task_privates_map.(const .privates. *noalias privs, <ty1>
4468/// **noalias priv1,..., <tyn> **noalias privn) {
4469/// *priv1 = &.privates.priv1;
4470/// ...;
4471/// *privn = &.privates.privn;
4472/// }
4473/// \endcode
4474static llvm::Value *
4475emitTaskPrivateMappingFunction(CodeGenModule &CGM, SourceLocation Loc,
Craig Topper8674c5c2015-09-29 04:30:07 +00004476 ArrayRef<const Expr *> PrivateVars,
4477 ArrayRef<const Expr *> FirstprivateVars,
Alexey Bataevf93095a2016-05-05 08:46:22 +00004478 ArrayRef<const Expr *> LastprivateVars,
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004479 QualType PrivatesQTy,
Craig Topper8674c5c2015-09-29 04:30:07 +00004480 ArrayRef<PrivateDataTy> Privates) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004481 ASTContext &C = CGM.getContext();
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004482 FunctionArgList Args;
4483 ImplicitParamDecl TaskPrivatesArg(
4484 C, /*DC=*/nullptr, Loc, /*Id=*/nullptr,
Alexey Bataev56223232017-06-09 13:40:18 +00004485 C.getPointerType(PrivatesQTy).withConst().withRestrict(),
4486 ImplicitParamDecl::Other);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004487 Args.push_back(&TaskPrivatesArg);
4488 llvm::DenseMap<const VarDecl *, unsigned> PrivateVarsPos;
4489 unsigned Counter = 1;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004490 for (const Expr *E : PrivateVars) {
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004491 Args.push_back(ImplicitParamDecl::Create(
Alexey Bataev56223232017-06-09 13:40:18 +00004492 C, /*DC=*/nullptr, Loc, /*Id=*/nullptr,
4493 C.getPointerType(C.getPointerType(E->getType()))
4494 .withConst()
4495 .withRestrict(),
4496 ImplicitParamDecl::Other));
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004497 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004498 PrivateVarsPos[VD] = Counter;
4499 ++Counter;
4500 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004501 for (const Expr *E : FirstprivateVars) {
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004502 Args.push_back(ImplicitParamDecl::Create(
Alexey Bataev56223232017-06-09 13:40:18 +00004503 C, /*DC=*/nullptr, Loc, /*Id=*/nullptr,
4504 C.getPointerType(C.getPointerType(E->getType()))
4505 .withConst()
4506 .withRestrict(),
4507 ImplicitParamDecl::Other));
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004508 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004509 PrivateVarsPos[VD] = Counter;
4510 ++Counter;
4511 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004512 for (const Expr *E : LastprivateVars) {
Alexey Bataevf93095a2016-05-05 08:46:22 +00004513 Args.push_back(ImplicitParamDecl::Create(
Alexey Bataev56223232017-06-09 13:40:18 +00004514 C, /*DC=*/nullptr, Loc, /*Id=*/nullptr,
4515 C.getPointerType(C.getPointerType(E->getType()))
4516 .withConst()
4517 .withRestrict(),
4518 ImplicitParamDecl::Other));
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004519 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataevf93095a2016-05-05 08:46:22 +00004520 PrivateVarsPos[VD] = Counter;
4521 ++Counter;
4522 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004523 const auto &TaskPrivatesMapFnInfo =
John McCallc56a8b32016-03-11 04:30:31 +00004524 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004525 llvm::FunctionType *TaskPrivatesMapTy =
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004526 CGM.getTypes().GetFunctionType(TaskPrivatesMapFnInfo);
Alexey Bataev18fa2322018-05-02 14:20:50 +00004527 std::string Name =
4528 CGM.getOpenMPRuntime().getName({"omp_task_privates_map", ""});
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004529 auto *TaskPrivatesMap = llvm::Function::Create(
Alexey Bataev18fa2322018-05-02 14:20:50 +00004530 TaskPrivatesMapTy, llvm::GlobalValue::InternalLinkage, Name,
4531 &CGM.getModule());
Rafael Espindola51ec5a92018-02-28 23:46:35 +00004532 CGM.SetInternalFunctionAttributes(GlobalDecl(), TaskPrivatesMap,
Akira Hatanaka44a59f82015-10-28 02:30:47 +00004533 TaskPrivatesMapFnInfo);
Chandler Carruthfcd33142016-12-23 01:24:49 +00004534 TaskPrivatesMap->removeFnAttr(llvm::Attribute::NoInline);
Mehdi Amini6aa9e9b2017-05-29 05:38:20 +00004535 TaskPrivatesMap->removeFnAttr(llvm::Attribute::OptimizeNone);
Evgeniy Stepanov6b2a61d2015-09-14 21:35:16 +00004536 TaskPrivatesMap->addFnAttr(llvm::Attribute::AlwaysInline);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004537 CodeGenFunction CGF(CGM);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004538 CGF.StartFunction(GlobalDecl(), C.VoidTy, TaskPrivatesMap,
Alexey Bataev7cae94e2018-01-04 19:45:16 +00004539 TaskPrivatesMapFnInfo, Args, Loc, Loc);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004540
4541 // *privi = &.privates.privi;
Alexey Bataev31300ed2016-02-04 11:27:03 +00004542 LValue Base = CGF.EmitLoadOfPointerLValue(
4543 CGF.GetAddrOfLocalVar(&TaskPrivatesArg),
4544 TaskPrivatesArg.getType()->castAs<PointerType>());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004545 const auto *PrivatesQTyRD = cast<RecordDecl>(PrivatesQTy->getAsTagDecl());
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004546 Counter = 0;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004547 for (const FieldDecl *Field : PrivatesQTyRD->fields()) {
4548 LValue FieldLVal = CGF.EmitLValueForField(Base, Field);
4549 const VarDecl *VD = Args[PrivateVarsPos[Privates[Counter].second.Original]];
4550 LValue RefLVal =
4551 CGF.MakeAddrLValue(CGF.GetAddrOfLocalVar(VD), VD->getType());
4552 LValue RefLoadLVal = CGF.EmitLoadOfPointerLValue(
Alexey Bataev31300ed2016-02-04 11:27:03 +00004553 RefLVal.getAddress(), RefLVal.getType()->castAs<PointerType>());
Alexey Bataev2377fe92015-09-10 08:12:02 +00004554 CGF.EmitStoreOfScalar(FieldLVal.getPointer(), RefLoadLVal);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004555 ++Counter;
4556 }
4557 CGF.FinishFunction();
4558 return TaskPrivatesMap;
4559}
4560
Mandeep Singh Grangb14fb6a22017-11-28 20:41:13 +00004561static bool stable_sort_comparator(const PrivateDataTy P1,
4562 const PrivateDataTy P2) {
4563 return P1.first > P2.first;
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004564}
4565
Alexey Bataevf93095a2016-05-05 08:46:22 +00004566/// Emit initialization for private variables in task-based directives.
Alexey Bataev8a831592016-05-10 10:36:51 +00004567static void emitPrivatesInit(CodeGenFunction &CGF,
Alexey Bataevf93095a2016-05-05 08:46:22 +00004568 const OMPExecutableDirective &D,
4569 Address KmpTaskSharedsPtr, LValue TDBase,
4570 const RecordDecl *KmpTaskTWithPrivatesQTyRD,
4571 QualType SharedsTy, QualType SharedsPtrTy,
4572 const OMPTaskDataTy &Data,
4573 ArrayRef<PrivateDataTy> Privates, bool ForDup) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004574 ASTContext &C = CGF.getContext();
Alexey Bataevf93095a2016-05-05 08:46:22 +00004575 auto FI = std::next(KmpTaskTWithPrivatesQTyRD->field_begin());
4576 LValue PrivatesBase = CGF.EmitLValueForField(TDBase, *FI);
Alexey Bataev8451efa2018-01-15 19:06:12 +00004577 OpenMPDirectiveKind Kind = isOpenMPTaskLoopDirective(D.getDirectiveKind())
4578 ? OMPD_taskloop
4579 : OMPD_task;
4580 const CapturedStmt &CS = *D.getCapturedStmt(Kind);
4581 CodeGenFunction::CGCapturedStmtInfo CapturesInfo(CS);
Alexey Bataevf93095a2016-05-05 08:46:22 +00004582 LValue SrcBase;
Alexey Bataevd2202ca2017-12-27 17:58:32 +00004583 bool IsTargetTask =
4584 isOpenMPTargetDataManagementDirective(D.getDirectiveKind()) ||
4585 isOpenMPTargetExecutionDirective(D.getDirectiveKind());
4586 // For target-based directives skip 3 firstprivate arrays BasePointersArray,
4587 // PointersArray and SizesArray. The original variables for these arrays are
4588 // not captured and we get their addresses explicitly.
4589 if ((!IsTargetTask && !Data.FirstprivateVars.empty()) ||
Alexey Bataev8451efa2018-01-15 19:06:12 +00004590 (IsTargetTask && KmpTaskSharedsPtr.isValid())) {
Alexey Bataevf93095a2016-05-05 08:46:22 +00004591 SrcBase = CGF.MakeAddrLValue(
4592 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
4593 KmpTaskSharedsPtr, CGF.ConvertTypeForMem(SharedsPtrTy)),
4594 SharedsTy);
4595 }
Alexey Bataevf93095a2016-05-05 08:46:22 +00004596 FI = cast<RecordDecl>(FI->getType()->getAsTagDecl())->field_begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004597 for (const PrivateDataTy &Pair : Privates) {
4598 const VarDecl *VD = Pair.second.PrivateCopy;
4599 const Expr *Init = VD->getAnyInitializer();
Alexey Bataevf93095a2016-05-05 08:46:22 +00004600 if (Init && (!ForDup || (isa<CXXConstructExpr>(Init) &&
4601 !CGF.isTrivialInitializer(Init)))) {
Alexey Bataev8a831592016-05-10 10:36:51 +00004602 LValue PrivateLValue = CGF.EmitLValueForField(PrivatesBase, *FI);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004603 if (const VarDecl *Elem = Pair.second.PrivateElemInit) {
4604 const VarDecl *OriginalVD = Pair.second.Original;
Alexey Bataevd2202ca2017-12-27 17:58:32 +00004605 // Check if the variable is the target-based BasePointersArray,
4606 // PointersArray or SizesArray.
4607 LValue SharedRefLValue;
Alexey Bataevf93095a2016-05-05 08:46:22 +00004608 QualType Type = OriginalVD->getType();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004609 const FieldDecl *SharedField = CapturesInfo.lookup(OriginalVD);
Alexey Bataev8451efa2018-01-15 19:06:12 +00004610 if (IsTargetTask && !SharedField) {
4611 assert(isa<ImplicitParamDecl>(OriginalVD) &&
4612 isa<CapturedDecl>(OriginalVD->getDeclContext()) &&
4613 cast<CapturedDecl>(OriginalVD->getDeclContext())
4614 ->getNumParams() == 0 &&
4615 isa<TranslationUnitDecl>(
4616 cast<CapturedDecl>(OriginalVD->getDeclContext())
4617 ->getDeclContext()) &&
4618 "Expected artificial target data variable.");
Alexey Bataevd2202ca2017-12-27 17:58:32 +00004619 SharedRefLValue =
4620 CGF.MakeAddrLValue(CGF.GetAddrOfLocalVar(OriginalVD), Type);
4621 } else {
Alexey Bataevd2202ca2017-12-27 17:58:32 +00004622 SharedRefLValue = CGF.EmitLValueForField(SrcBase, SharedField);
4623 SharedRefLValue = CGF.MakeAddrLValue(
4624 Address(SharedRefLValue.getPointer(), C.getDeclAlign(OriginalVD)),
4625 SharedRefLValue.getType(), LValueBaseInfo(AlignmentSource::Decl),
4626 SharedRefLValue.getTBAAInfo());
4627 }
Alexey Bataevf93095a2016-05-05 08:46:22 +00004628 if (Type->isArrayType()) {
4629 // Initialize firstprivate array.
4630 if (!isa<CXXConstructExpr>(Init) || CGF.isTrivialInitializer(Init)) {
4631 // Perform simple memcpy.
Ivan A. Kosarev1860b522018-01-25 14:21:55 +00004632 CGF.EmitAggregateAssign(PrivateLValue, SharedRefLValue, Type);
Alexey Bataevf93095a2016-05-05 08:46:22 +00004633 } else {
4634 // Initialize firstprivate array using element-by-element
Simon Pilgrim2c518802017-03-30 14:13:19 +00004635 // initialization.
Alexey Bataevf93095a2016-05-05 08:46:22 +00004636 CGF.EmitOMPAggregateAssign(
4637 PrivateLValue.getAddress(), SharedRefLValue.getAddress(), Type,
4638 [&CGF, Elem, Init, &CapturesInfo](Address DestElement,
4639 Address SrcElement) {
4640 // Clean up any temporaries needed by the initialization.
4641 CodeGenFunction::OMPPrivateScope InitScope(CGF);
4642 InitScope.addPrivate(
4643 Elem, [SrcElement]() -> Address { return SrcElement; });
4644 (void)InitScope.Privatize();
4645 // Emit initialization for single element.
4646 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(
4647 CGF, &CapturesInfo);
4648 CGF.EmitAnyExprToMem(Init, DestElement,
4649 Init->getType().getQualifiers(),
4650 /*IsInitializer=*/false);
4651 });
4652 }
4653 } else {
4654 CodeGenFunction::OMPPrivateScope InitScope(CGF);
4655 InitScope.addPrivate(Elem, [SharedRefLValue]() -> Address {
4656 return SharedRefLValue.getAddress();
4657 });
4658 (void)InitScope.Privatize();
4659 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CapturesInfo);
4660 CGF.EmitExprAsInit(Init, VD, PrivateLValue,
4661 /*capturedByInit=*/false);
4662 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004663 } else {
Alexey Bataevf93095a2016-05-05 08:46:22 +00004664 CGF.EmitExprAsInit(Init, VD, PrivateLValue, /*capturedByInit=*/false);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004665 }
Alexey Bataevf93095a2016-05-05 08:46:22 +00004666 }
Alexey Bataevf93095a2016-05-05 08:46:22 +00004667 ++FI;
4668 }
Alexey Bataevf93095a2016-05-05 08:46:22 +00004669}
4670
4671/// Check if duplication function is required for taskloops.
4672static bool checkInitIsRequired(CodeGenFunction &CGF,
4673 ArrayRef<PrivateDataTy> Privates) {
4674 bool InitRequired = false;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004675 for (const PrivateDataTy &Pair : Privates) {
4676 const VarDecl *VD = Pair.second.PrivateCopy;
4677 const Expr *Init = VD->getAnyInitializer();
Alexey Bataevf93095a2016-05-05 08:46:22 +00004678 InitRequired = InitRequired || (Init && isa<CXXConstructExpr>(Init) &&
4679 !CGF.isTrivialInitializer(Init));
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004680 if (InitRequired)
4681 break;
Alexey Bataevf93095a2016-05-05 08:46:22 +00004682 }
4683 return InitRequired;
4684}
4685
4686
4687/// Emit task_dup function (for initialization of
4688/// private/firstprivate/lastprivate vars and last_iter flag)
4689/// \code
4690/// void __task_dup_entry(kmp_task_t *task_dst, const kmp_task_t *task_src, int
4691/// lastpriv) {
4692/// // setup lastprivate flag
4693/// task_dst->last = lastpriv;
4694/// // could be constructor calls here...
4695/// }
4696/// \endcode
4697static llvm::Value *
4698emitTaskDupFunction(CodeGenModule &CGM, SourceLocation Loc,
4699 const OMPExecutableDirective &D,
4700 QualType KmpTaskTWithPrivatesPtrQTy,
4701 const RecordDecl *KmpTaskTWithPrivatesQTyRD,
4702 const RecordDecl *KmpTaskTQTyRD, QualType SharedsTy,
4703 QualType SharedsPtrTy, const OMPTaskDataTy &Data,
4704 ArrayRef<PrivateDataTy> Privates, bool WithLastIter) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004705 ASTContext &C = CGM.getContext();
Alexey Bataevf93095a2016-05-05 08:46:22 +00004706 FunctionArgList Args;
Alexey Bataev56223232017-06-09 13:40:18 +00004707 ImplicitParamDecl DstArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr,
4708 KmpTaskTWithPrivatesPtrQTy,
4709 ImplicitParamDecl::Other);
4710 ImplicitParamDecl SrcArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr,
4711 KmpTaskTWithPrivatesPtrQTy,
4712 ImplicitParamDecl::Other);
4713 ImplicitParamDecl LastprivArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.IntTy,
4714 ImplicitParamDecl::Other);
Alexey Bataevf93095a2016-05-05 08:46:22 +00004715 Args.push_back(&DstArg);
4716 Args.push_back(&SrcArg);
4717 Args.push_back(&LastprivArg);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004718 const auto &TaskDupFnInfo =
Alexey Bataevf93095a2016-05-05 08:46:22 +00004719 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004720 llvm::FunctionType *TaskDupTy = CGM.getTypes().GetFunctionType(TaskDupFnInfo);
Alexey Bataev18fa2322018-05-02 14:20:50 +00004721 std::string Name = CGM.getOpenMPRuntime().getName({"omp_task_dup", ""});
4722 auto *TaskDup = llvm::Function::Create(
4723 TaskDupTy, llvm::GlobalValue::InternalLinkage, Name, &CGM.getModule());
Rafael Espindola51ec5a92018-02-28 23:46:35 +00004724 CGM.SetInternalFunctionAttributes(GlobalDecl(), TaskDup, TaskDupFnInfo);
Alexey Bataevc0f879b2018-04-10 20:10:53 +00004725 TaskDup->setDoesNotRecurse();
Alexey Bataevf93095a2016-05-05 08:46:22 +00004726 CodeGenFunction CGF(CGM);
Alexey Bataev7cae94e2018-01-04 19:45:16 +00004727 CGF.StartFunction(GlobalDecl(), C.VoidTy, TaskDup, TaskDupFnInfo, Args, Loc,
4728 Loc);
Alexey Bataevf93095a2016-05-05 08:46:22 +00004729
4730 LValue TDBase = CGF.EmitLoadOfPointerLValue(
4731 CGF.GetAddrOfLocalVar(&DstArg),
4732 KmpTaskTWithPrivatesPtrQTy->castAs<PointerType>());
4733 // task_dst->liter = lastpriv;
4734 if (WithLastIter) {
4735 auto LIFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTLastIter);
4736 LValue Base = CGF.EmitLValueForField(
4737 TDBase, *KmpTaskTWithPrivatesQTyRD->field_begin());
4738 LValue LILVal = CGF.EmitLValueForField(Base, *LIFI);
4739 llvm::Value *Lastpriv = CGF.EmitLoadOfScalar(
4740 CGF.GetAddrOfLocalVar(&LastprivArg), /*Volatile=*/false, C.IntTy, Loc);
4741 CGF.EmitStoreOfScalar(Lastpriv, LILVal);
4742 }
4743
4744 // Emit initial values for private copies (if any).
4745 assert(!Privates.empty());
4746 Address KmpTaskSharedsPtr = Address::invalid();
4747 if (!Data.FirstprivateVars.empty()) {
4748 LValue TDBase = CGF.EmitLoadOfPointerLValue(
4749 CGF.GetAddrOfLocalVar(&SrcArg),
4750 KmpTaskTWithPrivatesPtrQTy->castAs<PointerType>());
4751 LValue Base = CGF.EmitLValueForField(
4752 TDBase, *KmpTaskTWithPrivatesQTyRD->field_begin());
4753 KmpTaskSharedsPtr = Address(
4754 CGF.EmitLoadOfScalar(CGF.EmitLValueForField(
4755 Base, *std::next(KmpTaskTQTyRD->field_begin(),
4756 KmpTaskTShareds)),
4757 Loc),
4758 CGF.getNaturalTypeAlignment(SharedsTy));
4759 }
Alexey Bataev8a831592016-05-10 10:36:51 +00004760 emitPrivatesInit(CGF, D, KmpTaskSharedsPtr, TDBase, KmpTaskTWithPrivatesQTyRD,
4761 SharedsTy, SharedsPtrTy, Data, Privates, /*ForDup=*/true);
Alexey Bataevf93095a2016-05-05 08:46:22 +00004762 CGF.FinishFunction();
4763 return TaskDup;
4764}
4765
Alexey Bataev8a831592016-05-10 10:36:51 +00004766/// Checks if destructor function is required to be generated.
4767/// \return true if cleanups are required, false otherwise.
4768static bool
4769checkDestructorsRequired(const RecordDecl *KmpTaskTWithPrivatesQTyRD) {
4770 bool NeedsCleanup = false;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004771 auto FI = std::next(KmpTaskTWithPrivatesQTyRD->field_begin(), 1);
4772 const auto *PrivateRD = cast<RecordDecl>(FI->getType()->getAsTagDecl());
4773 for (const FieldDecl *FD : PrivateRD->fields()) {
Alexey Bataev8a831592016-05-10 10:36:51 +00004774 NeedsCleanup = NeedsCleanup || FD->getType().isDestructedType();
4775 if (NeedsCleanup)
4776 break;
4777 }
4778 return NeedsCleanup;
4779}
4780
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004781CGOpenMPRuntime::TaskResultTy
4782CGOpenMPRuntime::emitTaskInit(CodeGenFunction &CGF, SourceLocation Loc,
4783 const OMPExecutableDirective &D,
4784 llvm::Value *TaskFunction, QualType SharedsTy,
4785 Address Shareds, const OMPTaskDataTy &Data) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004786 ASTContext &C = CGM.getContext();
Alexey Bataev7292c292016-04-25 12:22:29 +00004787 llvm::SmallVector<PrivateDataTy, 4> Privates;
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004788 // Aggregate privates and sort them by the alignment.
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004789 auto I = Data.PrivateCopies.begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004790 for (const Expr *E : Data.PrivateVars) {
4791 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataev43a919f2018-04-13 17:48:43 +00004792 Privates.emplace_back(
Alexey Bataevc71a4092015-09-11 10:29:41 +00004793 C.getDeclAlign(VD),
Alexey Bataev9e034042015-05-05 04:05:12 +00004794 PrivateHelpersTy(VD, cast<VarDecl>(cast<DeclRefExpr>(*I)->getDecl()),
Alexey Bataev43a919f2018-04-13 17:48:43 +00004795 /*PrivateElemInit=*/nullptr));
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004796 ++I;
4797 }
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004798 I = Data.FirstprivateCopies.begin();
4799 auto IElemInitRef = Data.FirstprivateInits.begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004800 for (const Expr *E : Data.FirstprivateVars) {
4801 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataev43a919f2018-04-13 17:48:43 +00004802 Privates.emplace_back(
Alexey Bataevc71a4092015-09-11 10:29:41 +00004803 C.getDeclAlign(VD),
Alexey Bataev9e034042015-05-05 04:05:12 +00004804 PrivateHelpersTy(
4805 VD, cast<VarDecl>(cast<DeclRefExpr>(*I)->getDecl()),
Alexey Bataev43a919f2018-04-13 17:48:43 +00004806 cast<VarDecl>(cast<DeclRefExpr>(*IElemInitRef)->getDecl())));
Richard Trieucc3949d2016-02-18 22:34:54 +00004807 ++I;
4808 ++IElemInitRef;
Alexey Bataev9e034042015-05-05 04:05:12 +00004809 }
Alexey Bataevf93095a2016-05-05 08:46:22 +00004810 I = Data.LastprivateCopies.begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004811 for (const Expr *E : Data.LastprivateVars) {
4812 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataev43a919f2018-04-13 17:48:43 +00004813 Privates.emplace_back(
Alexey Bataevf93095a2016-05-05 08:46:22 +00004814 C.getDeclAlign(VD),
4815 PrivateHelpersTy(VD, cast<VarDecl>(cast<DeclRefExpr>(*I)->getDecl()),
Alexey Bataev43a919f2018-04-13 17:48:43 +00004816 /*PrivateElemInit=*/nullptr));
Alexey Bataevf93095a2016-05-05 08:46:22 +00004817 ++I;
4818 }
Mandeep Singh Grangb14fb6a22017-11-28 20:41:13 +00004819 std::stable_sort(Privates.begin(), Privates.end(), stable_sort_comparator);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004820 QualType KmpInt32Ty = C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/1);
Alexey Bataev62b63b12015-03-10 07:28:44 +00004821 // Build type kmp_routine_entry_t (if not built yet).
4822 emitKmpRoutineEntryT(KmpInt32Ty);
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004823 // Build type kmp_task_t (if not built yet).
Alexey Bataeve213f3e2017-10-11 15:29:40 +00004824 if (isOpenMPTaskLoopDirective(D.getDirectiveKind())) {
4825 if (SavedKmpTaskloopTQTy.isNull()) {
4826 SavedKmpTaskloopTQTy = C.getRecordType(createKmpTaskTRecordDecl(
4827 CGM, D.getDirectiveKind(), KmpInt32Ty, KmpRoutineEntryPtrQTy));
4828 }
4829 KmpTaskTQTy = SavedKmpTaskloopTQTy;
Alexey Bataev3a03a7f2017-10-11 15:56:38 +00004830 } else {
Alexey Bataevd2202ca2017-12-27 17:58:32 +00004831 assert((D.getDirectiveKind() == OMPD_task ||
4832 isOpenMPTargetExecutionDirective(D.getDirectiveKind()) ||
4833 isOpenMPTargetDataManagementDirective(D.getDirectiveKind())) &&
4834 "Expected taskloop, task or target directive");
Alexey Bataeve213f3e2017-10-11 15:29:40 +00004835 if (SavedKmpTaskTQTy.isNull()) {
4836 SavedKmpTaskTQTy = C.getRecordType(createKmpTaskTRecordDecl(
4837 CGM, D.getDirectiveKind(), KmpInt32Ty, KmpRoutineEntryPtrQTy));
4838 }
4839 KmpTaskTQTy = SavedKmpTaskTQTy;
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004840 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004841 const auto *KmpTaskTQTyRD = cast<RecordDecl>(KmpTaskTQTy->getAsTagDecl());
Alexey Bataev62b63b12015-03-10 07:28:44 +00004842 // Build particular struct kmp_task_t for the given task.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004843 const RecordDecl *KmpTaskTWithPrivatesQTyRD =
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004844 createKmpTaskTWithPrivatesRecordDecl(CGM, KmpTaskTQTy, Privates);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004845 QualType KmpTaskTWithPrivatesQTy = C.getRecordType(KmpTaskTWithPrivatesQTyRD);
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004846 QualType KmpTaskTWithPrivatesPtrQTy =
4847 C.getPointerType(KmpTaskTWithPrivatesQTy);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004848 llvm::Type *KmpTaskTWithPrivatesTy = CGF.ConvertType(KmpTaskTWithPrivatesQTy);
4849 llvm::Type *KmpTaskTWithPrivatesPtrTy =
4850 KmpTaskTWithPrivatesTy->getPointerTo();
4851 llvm::Value *KmpTaskTWithPrivatesTySize =
4852 CGF.getTypeSize(KmpTaskTWithPrivatesQTy);
Alexey Bataev62b63b12015-03-10 07:28:44 +00004853 QualType SharedsPtrTy = C.getPointerType(SharedsTy);
4854
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004855 // Emit initial values for private copies (if any).
4856 llvm::Value *TaskPrivatesMap = nullptr;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004857 llvm::Type *TaskPrivatesMapTy =
Reid Klecknere258c442017-03-16 18:55:46 +00004858 std::next(cast<llvm::Function>(TaskFunction)->arg_begin(), 3)->getType();
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004859 if (!Privates.empty()) {
4860 auto FI = std::next(KmpTaskTWithPrivatesQTyRD->field_begin());
Alexey Bataevf93095a2016-05-05 08:46:22 +00004861 TaskPrivatesMap = emitTaskPrivateMappingFunction(
4862 CGM, Loc, Data.PrivateVars, Data.FirstprivateVars, Data.LastprivateVars,
4863 FI->getType(), Privates);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00004864 TaskPrivatesMap = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
4865 TaskPrivatesMap, TaskPrivatesMapTy);
4866 } else {
4867 TaskPrivatesMap = llvm::ConstantPointerNull::get(
4868 cast<llvm::PointerType>(TaskPrivatesMapTy));
4869 }
Alexey Bataev62b63b12015-03-10 07:28:44 +00004870 // Build a proxy function kmp_int32 .omp_task_entry.(kmp_int32 gtid,
4871 // kmp_task_t *tt);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004872 llvm::Value *TaskEntry = emitProxyTaskFunction(
Alexey Bataev7292c292016-04-25 12:22:29 +00004873 CGM, Loc, D.getDirectiveKind(), KmpInt32Ty, KmpTaskTWithPrivatesPtrQTy,
4874 KmpTaskTWithPrivatesQTy, KmpTaskTQTy, SharedsPtrTy, TaskFunction,
4875 TaskPrivatesMap);
Alexey Bataev62b63b12015-03-10 07:28:44 +00004876
4877 // Build call kmp_task_t * __kmpc_omp_task_alloc(ident_t *, kmp_int32 gtid,
4878 // kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds,
4879 // kmp_routine_entry_t *task_entry);
4880 // Task flags. Format is taken from
4881 // http://llvm.org/svn/llvm-project/openmp/trunk/runtime/src/kmp.h,
4882 // description of kmp_tasking_flags struct.
Alexey Bataev1e1e2862016-05-10 12:21:02 +00004883 enum {
4884 TiedFlag = 0x1,
4885 FinalFlag = 0x2,
4886 DestructorsFlag = 0x8,
4887 PriorityFlag = 0x20
4888 };
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004889 unsigned Flags = Data.Tied ? TiedFlag : 0;
Alexey Bataev8a831592016-05-10 10:36:51 +00004890 bool NeedsCleanup = false;
4891 if (!Privates.empty()) {
4892 NeedsCleanup = checkDestructorsRequired(KmpTaskTWithPrivatesQTyRD);
4893 if (NeedsCleanup)
4894 Flags = Flags | DestructorsFlag;
4895 }
Alexey Bataev1e1e2862016-05-10 12:21:02 +00004896 if (Data.Priority.getInt())
4897 Flags = Flags | PriorityFlag;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004898 llvm::Value *TaskFlags =
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004899 Data.Final.getPointer()
4900 ? CGF.Builder.CreateSelect(Data.Final.getPointer(),
Alexey Bataev62b63b12015-03-10 07:28:44 +00004901 CGF.Builder.getInt32(FinalFlag),
4902 CGF.Builder.getInt32(/*C=*/0))
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004903 : CGF.Builder.getInt32(Data.Final.getInt() ? FinalFlag : 0);
Alexey Bataev62b63b12015-03-10 07:28:44 +00004904 TaskFlags = CGF.Builder.CreateOr(TaskFlags, CGF.Builder.getInt32(Flags));
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004905 llvm::Value *SharedsSize = CGM.getSize(C.getTypeSizeInChars(SharedsTy));
Alexey Bataevf24e7b12015-10-08 09:10:53 +00004906 llvm::Value *AllocArgs[] = {emitUpdateLocation(CGF, Loc),
4907 getThreadID(CGF, Loc), TaskFlags,
4908 KmpTaskTWithPrivatesTySize, SharedsSize,
4909 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
4910 TaskEntry, KmpRoutineEntryPtrTy)};
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004911 llvm::Value *NewTask = CGF.EmitRuntimeCall(
Alexey Bataev62b63b12015-03-10 07:28:44 +00004912 createRuntimeFunction(OMPRTL__kmpc_omp_task_alloc), AllocArgs);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004913 llvm::Value *NewTaskNewTaskTTy =
4914 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
4915 NewTask, KmpTaskTWithPrivatesPtrTy);
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004916 LValue Base = CGF.MakeNaturalAlignAddrLValue(NewTaskNewTaskTTy,
4917 KmpTaskTWithPrivatesQTy);
4918 LValue TDBase =
4919 CGF.EmitLValueForField(Base, *KmpTaskTWithPrivatesQTyRD->field_begin());
Alexey Bataev62b63b12015-03-10 07:28:44 +00004920 // Fill the data in the resulting kmp_task_t record.
4921 // Copy shareds if there are any.
John McCall7f416cc2015-09-08 08:05:57 +00004922 Address KmpTaskSharedsPtr = Address::invalid();
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004923 if (!SharedsTy->getAsStructureType()->getDecl()->field_empty()) {
Alexey Bataev2377fe92015-09-10 08:12:02 +00004924 KmpTaskSharedsPtr =
4925 Address(CGF.EmitLoadOfScalar(
4926 CGF.EmitLValueForField(
4927 TDBase, *std::next(KmpTaskTQTyRD->field_begin(),
4928 KmpTaskTShareds)),
4929 Loc),
4930 CGF.getNaturalTypeAlignment(SharedsTy));
Ivan A. Kosarev1860b522018-01-25 14:21:55 +00004931 LValue Dest = CGF.MakeAddrLValue(KmpTaskSharedsPtr, SharedsTy);
4932 LValue Src = CGF.MakeAddrLValue(Shareds, SharedsTy);
Richard Smithe78fac52018-04-05 20:52:58 +00004933 CGF.EmitAggregateCopy(Dest, Src, SharedsTy, AggValueSlot::DoesNotOverlap);
Alexey Bataev8fc69dc2015-05-18 07:54:53 +00004934 }
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004935 // Emit initial values for private copies (if any).
Alexey Bataevf93095a2016-05-05 08:46:22 +00004936 TaskResultTy Result;
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004937 if (!Privates.empty()) {
Alexey Bataev8a831592016-05-10 10:36:51 +00004938 emitPrivatesInit(CGF, D, KmpTaskSharedsPtr, Base, KmpTaskTWithPrivatesQTyRD,
4939 SharedsTy, SharedsPtrTy, Data, Privates,
4940 /*ForDup=*/false);
Alexey Bataevf93095a2016-05-05 08:46:22 +00004941 if (isOpenMPTaskLoopDirective(D.getDirectiveKind()) &&
4942 (!Data.LastprivateVars.empty() || checkInitIsRequired(CGF, Privates))) {
4943 Result.TaskDupFn = emitTaskDupFunction(
4944 CGM, Loc, D, KmpTaskTWithPrivatesPtrQTy, KmpTaskTWithPrivatesQTyRD,
4945 KmpTaskTQTyRD, SharedsTy, SharedsPtrTy, Data, Privates,
4946 /*WithLastIter=*/!Data.LastprivateVars.empty());
Alexey Bataev36c1eb92015-04-30 06:51:57 +00004947 }
4948 }
Alexey Bataevad537bb2016-05-30 09:06:50 +00004949 // Fields of union "kmp_cmplrdata_t" for destructors and priority.
4950 enum { Priority = 0, Destructors = 1 };
Alexey Bataev62b63b12015-03-10 07:28:44 +00004951 // Provide pointer to function with destructors for privates.
Alexey Bataevad537bb2016-05-30 09:06:50 +00004952 auto FI = std::next(KmpTaskTQTyRD->field_begin(), Data1);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004953 const RecordDecl *KmpCmplrdataUD =
4954 (*FI)->getType()->getAsUnionType()->getDecl();
Alexey Bataevad537bb2016-05-30 09:06:50 +00004955 if (NeedsCleanup) {
4956 llvm::Value *DestructorFn = emitDestructorsFunction(
4957 CGM, Loc, KmpInt32Ty, KmpTaskTWithPrivatesPtrQTy,
4958 KmpTaskTWithPrivatesQTy);
4959 LValue Data1LV = CGF.EmitLValueForField(TDBase, *FI);
4960 LValue DestructorsLV = CGF.EmitLValueForField(
4961 Data1LV, *std::next(KmpCmplrdataUD->field_begin(), Destructors));
4962 CGF.EmitStoreOfScalar(CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
4963 DestructorFn, KmpRoutineEntryPtrTy),
4964 DestructorsLV);
4965 }
4966 // Set priority.
4967 if (Data.Priority.getInt()) {
4968 LValue Data2LV = CGF.EmitLValueForField(
4969 TDBase, *std::next(KmpTaskTQTyRD->field_begin(), Data2));
4970 LValue PriorityLV = CGF.EmitLValueForField(
4971 Data2LV, *std::next(KmpCmplrdataUD->field_begin(), Priority));
4972 CGF.EmitStoreOfScalar(Data.Priority.getPointer(), PriorityLV);
4973 }
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004974 Result.NewTask = NewTask;
4975 Result.TaskEntry = TaskEntry;
4976 Result.NewTaskNewTaskTTy = NewTaskNewTaskTTy;
4977 Result.TDBase = TDBase;
4978 Result.KmpTaskTQTyRD = KmpTaskTQTyRD;
4979 return Result;
Alexey Bataev7292c292016-04-25 12:22:29 +00004980}
Alexey Bataev1d2353d2015-06-24 11:01:36 +00004981
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004982void CGOpenMPRuntime::emitTaskCall(CodeGenFunction &CGF, SourceLocation Loc,
4983 const OMPExecutableDirective &D,
4984 llvm::Value *TaskFunction,
4985 QualType SharedsTy, Address Shareds,
4986 const Expr *IfCond,
4987 const OMPTaskDataTy &Data) {
Alexey Bataev7292c292016-04-25 12:22:29 +00004988 if (!CGF.HaveInsertPoint())
4989 return;
4990
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004991 TaskResultTy Result =
4992 emitTaskInit(CGF, Loc, D, TaskFunction, SharedsTy, Shareds, Data);
4993 llvm::Value *NewTask = Result.NewTask;
4994 llvm::Value *TaskEntry = Result.TaskEntry;
4995 llvm::Value *NewTaskNewTaskTTy = Result.NewTaskNewTaskTTy;
4996 LValue TDBase = Result.TDBase;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00004997 const RecordDecl *KmpTaskTQTyRD = Result.KmpTaskTQTyRD;
4998 ASTContext &C = CGM.getContext();
Alexey Bataev1d2353d2015-06-24 11:01:36 +00004999 // Process list of dependences.
John McCall7f416cc2015-09-08 08:05:57 +00005000 Address DependenciesArray = Address::invalid();
Alexey Bataev24b5bae2016-04-28 09:23:51 +00005001 unsigned NumDependencies = Data.Dependences.size();
John McCall7f416cc2015-09-08 08:05:57 +00005002 if (NumDependencies) {
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005003 // Dependence kind for RTL.
Alexey Bataev92e82f92015-11-23 13:33:42 +00005004 enum RTLDependenceKindTy { DepIn = 0x01, DepInOut = 0x3 };
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005005 enum RTLDependInfoFieldsTy { BaseAddr, Len, Flags };
5006 RecordDecl *KmpDependInfoRD;
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005007 QualType FlagsTy =
5008 C.getIntTypeForBitwidth(C.getTypeSize(C.BoolTy), /*Signed=*/false);
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005009 llvm::Type *LLVMFlagsTy = CGF.ConvertTypeForMem(FlagsTy);
5010 if (KmpDependInfoTy.isNull()) {
5011 KmpDependInfoRD = C.buildImplicitRecord("kmp_depend_info");
5012 KmpDependInfoRD->startDefinition();
5013 addFieldToRecordDecl(C, KmpDependInfoRD, C.getIntPtrType());
5014 addFieldToRecordDecl(C, KmpDependInfoRD, C.getSizeType());
5015 addFieldToRecordDecl(C, KmpDependInfoRD, FlagsTy);
5016 KmpDependInfoRD->completeDefinition();
5017 KmpDependInfoTy = C.getRecordType(KmpDependInfoRD);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005018 } else {
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005019 KmpDependInfoRD = cast<RecordDecl>(KmpDependInfoTy->getAsTagDecl());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005020 }
John McCall7f416cc2015-09-08 08:05:57 +00005021 CharUnits DependencySize = C.getTypeSizeInChars(KmpDependInfoTy);
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005022 // Define type kmp_depend_info[<Dependences.size()>];
5023 QualType KmpDependInfoArrayTy = C.getConstantArrayType(
John McCall7f416cc2015-09-08 08:05:57 +00005024 KmpDependInfoTy, llvm::APInt(/*numBits=*/64, NumDependencies),
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005025 ArrayType::Normal, /*IndexTypeQuals=*/0);
5026 // kmp_depend_info[<Dependences.size()>] deps;
Alexey Bataev48591dd2016-04-20 04:01:36 +00005027 DependenciesArray =
5028 CGF.CreateMemTemp(KmpDependInfoArrayTy, ".dep.arr.addr");
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005029 for (unsigned I = 0; I < NumDependencies; ++I) {
5030 const Expr *E = Data.Dependences[I].second;
5031 LValue Addr = CGF.EmitLValue(E);
Alexey Bataevd6fdc8b2015-08-31 07:32:19 +00005032 llvm::Value *Size;
5033 QualType Ty = E->getType();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005034 if (const auto *ASE =
5035 dyn_cast<OMPArraySectionExpr>(E->IgnoreParenImpCasts())) {
Alexey Bataevd6fdc8b2015-08-31 07:32:19 +00005036 LValue UpAddrLVal =
5037 CGF.EmitOMPArraySectionExpr(ASE, /*LowerBound=*/false);
5038 llvm::Value *UpAddr =
John McCall7f416cc2015-09-08 08:05:57 +00005039 CGF.Builder.CreateConstGEP1_32(UpAddrLVal.getPointer(), /*Idx0=*/1);
Alexey Bataevd6fdc8b2015-08-31 07:32:19 +00005040 llvm::Value *LowIntPtr =
John McCall7f416cc2015-09-08 08:05:57 +00005041 CGF.Builder.CreatePtrToInt(Addr.getPointer(), CGM.SizeTy);
Alexey Bataevd6fdc8b2015-08-31 07:32:19 +00005042 llvm::Value *UpIntPtr = CGF.Builder.CreatePtrToInt(UpAddr, CGM.SizeTy);
5043 Size = CGF.Builder.CreateNUWSub(UpIntPtr, LowIntPtr);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005044 } else {
Alexey Bataev1189bd02016-01-26 12:20:39 +00005045 Size = CGF.getTypeSize(Ty);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005046 }
5047 LValue Base = CGF.MakeAddrLValue(
5048 CGF.Builder.CreateConstArrayGEP(DependenciesArray, I, DependencySize),
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005049 KmpDependInfoTy);
5050 // deps[i].base_addr = &<Dependences[i].second>;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005051 LValue BaseAddrLVal = CGF.EmitLValueForField(
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005052 Base, *std::next(KmpDependInfoRD->field_begin(), BaseAddr));
John McCall7f416cc2015-09-08 08:05:57 +00005053 CGF.EmitStoreOfScalar(
5054 CGF.Builder.CreatePtrToInt(Addr.getPointer(), CGF.IntPtrTy),
5055 BaseAddrLVal);
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005056 // deps[i].len = sizeof(<Dependences[i].second>);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005057 LValue LenLVal = CGF.EmitLValueForField(
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005058 Base, *std::next(KmpDependInfoRD->field_begin(), Len));
5059 CGF.EmitStoreOfScalar(Size, LenLVal);
5060 // deps[i].flags = <Dependences[i].first>;
5061 RTLDependenceKindTy DepKind;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005062 switch (Data.Dependences[I].first) {
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005063 case OMPC_DEPEND_in:
5064 DepKind = DepIn;
5065 break;
Alexey Bataev92e82f92015-11-23 13:33:42 +00005066 // Out and InOut dependencies must use the same code.
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005067 case OMPC_DEPEND_out:
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005068 case OMPC_DEPEND_inout:
5069 DepKind = DepInOut;
5070 break;
Alexey Bataeveb482352015-12-18 05:05:56 +00005071 case OMPC_DEPEND_source:
Alexey Bataeva636c7f2015-12-23 10:27:45 +00005072 case OMPC_DEPEND_sink:
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005073 case OMPC_DEPEND_unknown:
5074 llvm_unreachable("Unknown task dependence type");
5075 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005076 LValue FlagsLVal = CGF.EmitLValueForField(
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005077 Base, *std::next(KmpDependInfoRD->field_begin(), Flags));
5078 CGF.EmitStoreOfScalar(llvm::ConstantInt::get(LLVMFlagsTy, DepKind),
5079 FlagsLVal);
5080 }
John McCall7f416cc2015-09-08 08:05:57 +00005081 DependenciesArray = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
5082 CGF.Builder.CreateStructGEP(DependenciesArray, 0, CharUnits::Zero()),
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005083 CGF.VoidPtrTy);
5084 }
5085
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00005086 // NOTE: routine and part_id fields are initialized by __kmpc_omp_task_alloc()
Alexey Bataev62b63b12015-03-10 07:28:44 +00005087 // libcall.
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005088 // Build kmp_int32 __kmpc_omp_task_with_deps(ident_t *, kmp_int32 gtid,
5089 // kmp_task_t *new_task, kmp_int32 ndeps, kmp_depend_info_t *dep_list,
5090 // kmp_int32 ndeps_noalias, kmp_depend_info_t *noalias_dep_list) if dependence
5091 // list is not empty
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005092 llvm::Value *ThreadID = getThreadID(CGF, Loc);
5093 llvm::Value *UpLoc = emitUpdateLocation(CGF, Loc);
John McCall7f416cc2015-09-08 08:05:57 +00005094 llvm::Value *TaskArgs[] = { UpLoc, ThreadID, NewTask };
5095 llvm::Value *DepTaskArgs[7];
5096 if (NumDependencies) {
5097 DepTaskArgs[0] = UpLoc;
5098 DepTaskArgs[1] = ThreadID;
5099 DepTaskArgs[2] = NewTask;
5100 DepTaskArgs[3] = CGF.Builder.getInt32(NumDependencies);
5101 DepTaskArgs[4] = DependenciesArray.getPointer();
5102 DepTaskArgs[5] = CGF.Builder.getInt32(0);
5103 DepTaskArgs[6] = llvm::ConstantPointerNull::get(CGF.VoidPtrTy);
5104 }
Malcolm Parsonsc6e45832017-01-13 18:55:32 +00005105 auto &&ThenCodeGen = [this, &Data, TDBase, KmpTaskTQTyRD, NumDependencies,
5106 &TaskArgs,
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005107 &DepTaskArgs](CodeGenFunction &CGF, PrePostActionTy &) {
Alexey Bataev24b5bae2016-04-28 09:23:51 +00005108 if (!Data.Tied) {
Alexey Bataev48591dd2016-04-20 04:01:36 +00005109 auto PartIdFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTPartId);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005110 LValue PartIdLVal = CGF.EmitLValueForField(TDBase, *PartIdFI);
Alexey Bataev48591dd2016-04-20 04:01:36 +00005111 CGF.EmitStoreOfScalar(CGF.Builder.getInt32(0), PartIdLVal);
5112 }
John McCall7f416cc2015-09-08 08:05:57 +00005113 if (NumDependencies) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005114 CGF.EmitRuntimeCall(
Alexey Bataev48591dd2016-04-20 04:01:36 +00005115 createRuntimeFunction(OMPRTL__kmpc_omp_task_with_deps), DepTaskArgs);
John McCall7f416cc2015-09-08 08:05:57 +00005116 } else {
Alexey Bataev48591dd2016-04-20 04:01:36 +00005117 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_omp_task),
John McCall7f416cc2015-09-08 08:05:57 +00005118 TaskArgs);
5119 }
Alexey Bataev48591dd2016-04-20 04:01:36 +00005120 // Check if parent region is untied and build return for untied task;
5121 if (auto *Region =
5122 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo))
5123 Region->emitUntiedSwitch(CGF);
Alexey Bataev1d677132015-04-22 13:57:31 +00005124 };
John McCall7f416cc2015-09-08 08:05:57 +00005125
5126 llvm::Value *DepWaitTaskArgs[6];
5127 if (NumDependencies) {
5128 DepWaitTaskArgs[0] = UpLoc;
5129 DepWaitTaskArgs[1] = ThreadID;
5130 DepWaitTaskArgs[2] = CGF.Builder.getInt32(NumDependencies);
5131 DepWaitTaskArgs[3] = DependenciesArray.getPointer();
5132 DepWaitTaskArgs[4] = CGF.Builder.getInt32(0);
5133 DepWaitTaskArgs[5] = llvm::ConstantPointerNull::get(CGF.VoidPtrTy);
5134 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005135 auto &&ElseCodeGen = [&TaskArgs, ThreadID, NewTaskNewTaskTTy, TaskEntry,
Alexey Bataev3c595a62017-08-14 15:01:03 +00005136 NumDependencies, &DepWaitTaskArgs,
5137 Loc](CodeGenFunction &CGF, PrePostActionTy &) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005138 CGOpenMPRuntime &RT = CGF.CGM.getOpenMPRuntime();
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005139 CodeGenFunction::RunCleanupsScope LocalScope(CGF);
5140 // Build void __kmpc_omp_wait_deps(ident_t *, kmp_int32 gtid,
5141 // kmp_int32 ndeps, kmp_depend_info_t *dep_list, kmp_int32
5142 // ndeps_noalias, kmp_depend_info_t *noalias_dep_list); if dependence info
5143 // is specified.
John McCall7f416cc2015-09-08 08:05:57 +00005144 if (NumDependencies)
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005145 CGF.EmitRuntimeCall(RT.createRuntimeFunction(OMPRTL__kmpc_omp_wait_deps),
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005146 DepWaitTaskArgs);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005147 // Call proxy_task_entry(gtid, new_task);
Alexey Bataev3c595a62017-08-14 15:01:03 +00005148 auto &&CodeGen = [TaskEntry, ThreadID, NewTaskNewTaskTTy,
5149 Loc](CodeGenFunction &CGF, PrePostActionTy &Action) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005150 Action.Enter(CGF);
5151 llvm::Value *OutlinedFnArgs[] = {ThreadID, NewTaskNewTaskTTy};
Alexey Bataev3c595a62017-08-14 15:01:03 +00005152 CGF.CGM.getOpenMPRuntime().emitOutlinedFunctionCall(CGF, Loc, TaskEntry,
Alexey Bataev2c7eee52017-08-04 19:10:54 +00005153 OutlinedFnArgs);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005154 };
5155
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005156 // Build void __kmpc_omp_task_begin_if0(ident_t *, kmp_int32 gtid,
5157 // kmp_task_t *new_task);
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005158 // Build void __kmpc_omp_task_complete_if0(ident_t *, kmp_int32 gtid,
5159 // kmp_task_t *new_task);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005160 RegionCodeGenTy RCG(CodeGen);
5161 CommonActionTy Action(
5162 RT.createRuntimeFunction(OMPRTL__kmpc_omp_task_begin_if0), TaskArgs,
5163 RT.createRuntimeFunction(OMPRTL__kmpc_omp_task_complete_if0), TaskArgs);
5164 RCG.setAction(Action);
5165 RCG(CGF);
Alexey Bataev1d2353d2015-06-24 11:01:36 +00005166 };
John McCall7f416cc2015-09-08 08:05:57 +00005167
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005168 if (IfCond) {
Alexey Bataev1d677132015-04-22 13:57:31 +00005169 emitOMPIfClause(CGF, IfCond, ThenCodeGen, ElseCodeGen);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005170 } else {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005171 RegionCodeGenTy ThenRCG(ThenCodeGen);
5172 ThenRCG(CGF);
Alexey Bataevf539faa2016-03-28 12:58:34 +00005173 }
Alexey Bataev62b63b12015-03-10 07:28:44 +00005174}
5175
Alexey Bataev24b5bae2016-04-28 09:23:51 +00005176void CGOpenMPRuntime::emitTaskLoopCall(CodeGenFunction &CGF, SourceLocation Loc,
5177 const OMPLoopDirective &D,
5178 llvm::Value *TaskFunction,
5179 QualType SharedsTy, Address Shareds,
5180 const Expr *IfCond,
5181 const OMPTaskDataTy &Data) {
Alexey Bataev7292c292016-04-25 12:22:29 +00005182 if (!CGF.HaveInsertPoint())
5183 return;
Alexey Bataev24b5bae2016-04-28 09:23:51 +00005184 TaskResultTy Result =
5185 emitTaskInit(CGF, Loc, D, TaskFunction, SharedsTy, Shareds, Data);
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00005186 // NOTE: routine and part_id fields are initialized by __kmpc_omp_task_alloc()
Alexey Bataev7292c292016-04-25 12:22:29 +00005187 // libcall.
5188 // Call to void __kmpc_taskloop(ident_t *loc, int gtid, kmp_task_t *task, int
5189 // if_val, kmp_uint64 *lb, kmp_uint64 *ub, kmp_int64 st, int nogroup, int
5190 // sched, kmp_uint64 grainsize, void *task_dup);
5191 llvm::Value *ThreadID = getThreadID(CGF, Loc);
5192 llvm::Value *UpLoc = emitUpdateLocation(CGF, Loc);
5193 llvm::Value *IfVal;
5194 if (IfCond) {
5195 IfVal = CGF.Builder.CreateIntCast(CGF.EvaluateExprAsBool(IfCond), CGF.IntTy,
5196 /*isSigned=*/true);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005197 } else {
Alexey Bataev7292c292016-04-25 12:22:29 +00005198 IfVal = llvm::ConstantInt::getSigned(CGF.IntTy, /*V=*/1);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005199 }
Alexey Bataev7292c292016-04-25 12:22:29 +00005200
5201 LValue LBLVal = CGF.EmitLValueForField(
Alexey Bataev24b5bae2016-04-28 09:23:51 +00005202 Result.TDBase,
5203 *std::next(Result.KmpTaskTQTyRD->field_begin(), KmpTaskTLowerBound));
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005204 const auto *LBVar =
Alexey Bataev7292c292016-04-25 12:22:29 +00005205 cast<VarDecl>(cast<DeclRefExpr>(D.getLowerBoundVariable())->getDecl());
5206 CGF.EmitAnyExprToMem(LBVar->getInit(), LBLVal.getAddress(), LBLVal.getQuals(),
5207 /*IsInitializer=*/true);
5208 LValue UBLVal = CGF.EmitLValueForField(
Alexey Bataev24b5bae2016-04-28 09:23:51 +00005209 Result.TDBase,
5210 *std::next(Result.KmpTaskTQTyRD->field_begin(), KmpTaskTUpperBound));
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005211 const auto *UBVar =
Alexey Bataev7292c292016-04-25 12:22:29 +00005212 cast<VarDecl>(cast<DeclRefExpr>(D.getUpperBoundVariable())->getDecl());
5213 CGF.EmitAnyExprToMem(UBVar->getInit(), UBLVal.getAddress(), UBLVal.getQuals(),
5214 /*IsInitializer=*/true);
5215 LValue StLVal = CGF.EmitLValueForField(
Alexey Bataev24b5bae2016-04-28 09:23:51 +00005216 Result.TDBase,
5217 *std::next(Result.KmpTaskTQTyRD->field_begin(), KmpTaskTStride));
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005218 const auto *StVar =
Alexey Bataev7292c292016-04-25 12:22:29 +00005219 cast<VarDecl>(cast<DeclRefExpr>(D.getStrideVariable())->getDecl());
5220 CGF.EmitAnyExprToMem(StVar->getInit(), StLVal.getAddress(), StLVal.getQuals(),
5221 /*IsInitializer=*/true);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005222 // Store reductions address.
5223 LValue RedLVal = CGF.EmitLValueForField(
5224 Result.TDBase,
5225 *std::next(Result.KmpTaskTQTyRD->field_begin(), KmpTaskTReductions));
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005226 if (Data.Reductions) {
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005227 CGF.EmitStoreOfScalar(Data.Reductions, RedLVal);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005228 } else {
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005229 CGF.EmitNullInitialization(RedLVal.getAddress(),
5230 CGF.getContext().VoidPtrTy);
5231 }
Alexey Bataev2b19a6f2016-04-28 09:15:06 +00005232 enum { NoSchedule = 0, Grainsize = 1, NumTasks = 2 };
Alexey Bataev7292c292016-04-25 12:22:29 +00005233 llvm::Value *TaskArgs[] = {
Alexey Bataev33446032017-07-12 18:09:32 +00005234 UpLoc,
5235 ThreadID,
5236 Result.NewTask,
5237 IfVal,
5238 LBLVal.getPointer(),
5239 UBLVal.getPointer(),
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00005240 CGF.EmitLoadOfScalar(StLVal, Loc),
Alexey Bataev33446032017-07-12 18:09:32 +00005241 llvm::ConstantInt::getNullValue(
5242 CGF.IntTy), // Always 0 because taskgroup emitted by the compiler
Alexey Bataev2b19a6f2016-04-28 09:15:06 +00005243 llvm::ConstantInt::getSigned(
Alexey Bataev24b5bae2016-04-28 09:23:51 +00005244 CGF.IntTy, Data.Schedule.getPointer()
5245 ? Data.Schedule.getInt() ? NumTasks : Grainsize
Alexey Bataev2b19a6f2016-04-28 09:15:06 +00005246 : NoSchedule),
Alexey Bataev24b5bae2016-04-28 09:23:51 +00005247 Data.Schedule.getPointer()
5248 ? CGF.Builder.CreateIntCast(Data.Schedule.getPointer(), CGF.Int64Ty,
Alexey Bataev2b19a6f2016-04-28 09:15:06 +00005249 /*isSigned=*/false)
5250 : llvm::ConstantInt::get(CGF.Int64Ty, /*V=*/0),
Alexey Bataev33446032017-07-12 18:09:32 +00005251 Result.TaskDupFn ? CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
5252 Result.TaskDupFn, CGF.VoidPtrTy)
5253 : llvm::ConstantPointerNull::get(CGF.VoidPtrTy)};
Alexey Bataev7292c292016-04-25 12:22:29 +00005254 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_taskloop), TaskArgs);
5255}
5256
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005257/// Emit reduction operation for each element of array (required for
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005258/// array sections) LHS op = RHS.
5259/// \param Type Type of array.
5260/// \param LHSVar Variable on the left side of the reduction operation
5261/// (references element of array in original variable).
5262/// \param RHSVar Variable on the right side of the reduction operation
5263/// (references element of array in original variable).
5264/// \param RedOpGen Generator of reduction operation with use of LHSVar and
5265/// RHSVar.
Benjamin Kramere003ca22015-10-28 13:54:16 +00005266static void EmitOMPAggregateReduction(
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005267 CodeGenFunction &CGF, QualType Type, const VarDecl *LHSVar,
5268 const VarDecl *RHSVar,
5269 const llvm::function_ref<void(CodeGenFunction &CGF, const Expr *,
5270 const Expr *, const Expr *)> &RedOpGen,
5271 const Expr *XExpr = nullptr, const Expr *EExpr = nullptr,
5272 const Expr *UpExpr = nullptr) {
5273 // Perform element-by-element initialization.
5274 QualType ElementTy;
5275 Address LHSAddr = CGF.GetAddrOfLocalVar(LHSVar);
5276 Address RHSAddr = CGF.GetAddrOfLocalVar(RHSVar);
5277
5278 // Drill down to the base element type on both arrays.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005279 const ArrayType *ArrayTy = Type->getAsArrayTypeUnsafe();
5280 llvm::Value *NumElements = CGF.emitArrayLength(ArrayTy, ElementTy, LHSAddr);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005281
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005282 llvm::Value *RHSBegin = RHSAddr.getPointer();
5283 llvm::Value *LHSBegin = LHSAddr.getPointer();
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005284 // Cast from pointer to array type to pointer to single element.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005285 llvm::Value *LHSEnd = CGF.Builder.CreateGEP(LHSBegin, NumElements);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005286 // The basic structure here is a while-do loop.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005287 llvm::BasicBlock *BodyBB = CGF.createBasicBlock("omp.arraycpy.body");
5288 llvm::BasicBlock *DoneBB = CGF.createBasicBlock("omp.arraycpy.done");
5289 llvm::Value *IsEmpty =
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005290 CGF.Builder.CreateICmpEQ(LHSBegin, LHSEnd, "omp.arraycpy.isempty");
5291 CGF.Builder.CreateCondBr(IsEmpty, DoneBB, BodyBB);
5292
5293 // Enter the loop body, making that address the current address.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005294 llvm::BasicBlock *EntryBB = CGF.Builder.GetInsertBlock();
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005295 CGF.EmitBlock(BodyBB);
5296
5297 CharUnits ElementSize = CGF.getContext().getTypeSizeInChars(ElementTy);
5298
5299 llvm::PHINode *RHSElementPHI = CGF.Builder.CreatePHI(
5300 RHSBegin->getType(), 2, "omp.arraycpy.srcElementPast");
5301 RHSElementPHI->addIncoming(RHSBegin, EntryBB);
5302 Address RHSElementCurrent =
5303 Address(RHSElementPHI,
5304 RHSAddr.getAlignment().alignmentOfArrayElement(ElementSize));
5305
5306 llvm::PHINode *LHSElementPHI = CGF.Builder.CreatePHI(
5307 LHSBegin->getType(), 2, "omp.arraycpy.destElementPast");
5308 LHSElementPHI->addIncoming(LHSBegin, EntryBB);
5309 Address LHSElementCurrent =
5310 Address(LHSElementPHI,
5311 LHSAddr.getAlignment().alignmentOfArrayElement(ElementSize));
5312
5313 // Emit copy.
5314 CodeGenFunction::OMPPrivateScope Scope(CGF);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005315 Scope.addPrivate(LHSVar, [=]() { return LHSElementCurrent; });
5316 Scope.addPrivate(RHSVar, [=]() { return RHSElementCurrent; });
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005317 Scope.Privatize();
5318 RedOpGen(CGF, XExpr, EExpr, UpExpr);
5319 Scope.ForceCleanup();
5320
5321 // Shift the address forward by one element.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005322 llvm::Value *LHSElementNext = CGF.Builder.CreateConstGEP1_32(
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005323 LHSElementPHI, /*Idx0=*/1, "omp.arraycpy.dest.element");
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005324 llvm::Value *RHSElementNext = CGF.Builder.CreateConstGEP1_32(
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005325 RHSElementPHI, /*Idx0=*/1, "omp.arraycpy.src.element");
5326 // Check whether we've reached the end.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005327 llvm::Value *Done =
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005328 CGF.Builder.CreateICmpEQ(LHSElementNext, LHSEnd, "omp.arraycpy.done");
5329 CGF.Builder.CreateCondBr(Done, DoneBB, BodyBB);
5330 LHSElementPHI->addIncoming(LHSElementNext, CGF.Builder.GetInsertBlock());
5331 RHSElementPHI->addIncoming(RHSElementNext, CGF.Builder.GetInsertBlock());
5332
5333 // Done.
5334 CGF.EmitBlock(DoneBB, /*IsFinished=*/true);
5335}
5336
Alexey Bataeva839ddd2016-03-17 10:19:46 +00005337/// Emit reduction combiner. If the combiner is a simple expression emit it as
5338/// is, otherwise consider it as combiner of UDR decl and emit it as a call of
5339/// UDR combiner function.
5340static void emitReductionCombiner(CodeGenFunction &CGF,
5341 const Expr *ReductionOp) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005342 if (const auto *CE = dyn_cast<CallExpr>(ReductionOp))
5343 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(CE->getCallee()))
5344 if (const auto *DRE =
Alexey Bataeva839ddd2016-03-17 10:19:46 +00005345 dyn_cast<DeclRefExpr>(OVE->getSourceExpr()->IgnoreImpCasts()))
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005346 if (const auto *DRD =
5347 dyn_cast<OMPDeclareReductionDecl>(DRE->getDecl())) {
Alexey Bataeva839ddd2016-03-17 10:19:46 +00005348 std::pair<llvm::Function *, llvm::Function *> Reduction =
5349 CGF.CGM.getOpenMPRuntime().getUserDefinedReduction(DRD);
5350 RValue Func = RValue::get(Reduction.first);
5351 CodeGenFunction::OpaqueValueMapping Map(CGF, OVE, Func);
5352 CGF.EmitIgnoredExpr(ReductionOp);
5353 return;
5354 }
5355 CGF.EmitIgnoredExpr(ReductionOp);
5356}
5357
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00005358llvm::Value *CGOpenMPRuntime::emitReductionFunction(
Alexey Bataev7cae94e2018-01-04 19:45:16 +00005359 CodeGenModule &CGM, SourceLocation Loc, llvm::Type *ArgsType,
5360 ArrayRef<const Expr *> Privates, ArrayRef<const Expr *> LHSExprs,
5361 ArrayRef<const Expr *> RHSExprs, ArrayRef<const Expr *> ReductionOps) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005362 ASTContext &C = CGM.getContext();
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005363
5364 // void reduction_func(void *LHSArg, void *RHSArg);
5365 FunctionArgList Args;
Alexey Bataev7cae94e2018-01-04 19:45:16 +00005366 ImplicitParamDecl LHSArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy,
5367 ImplicitParamDecl::Other);
5368 ImplicitParamDecl RHSArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy,
5369 ImplicitParamDecl::Other);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005370 Args.push_back(&LHSArg);
5371 Args.push_back(&RHSArg);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005372 const auto &CGFI =
5373 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args);
Alexey Bataev18fa2322018-05-02 14:20:50 +00005374 std::string Name = getName({"omp", "reduction", "reduction_func"});
5375 auto *Fn = llvm::Function::Create(CGM.getTypes().GetFunctionType(CGFI),
5376 llvm::GlobalValue::InternalLinkage, Name,
5377 &CGM.getModule());
Rafael Espindola51ec5a92018-02-28 23:46:35 +00005378 CGM.SetInternalFunctionAttributes(GlobalDecl(), Fn, CGFI);
Alexey Bataevc0f879b2018-04-10 20:10:53 +00005379 Fn->setDoesNotRecurse();
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005380 CodeGenFunction CGF(CGM);
Alexey Bataev7cae94e2018-01-04 19:45:16 +00005381 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, CGFI, Args, Loc, Loc);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005382
5383 // Dst = (void*[n])(LHSArg);
5384 // Src = (void*[n])(RHSArg);
John McCall7f416cc2015-09-08 08:05:57 +00005385 Address LHS(CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
5386 CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(&LHSArg)),
5387 ArgsType), CGF.getPointerAlign());
5388 Address RHS(CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
5389 CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(&RHSArg)),
5390 ArgsType), CGF.getPointerAlign());
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005391
5392 // ...
5393 // *(Type<i>*)lhs[i] = RedOp<i>(*(Type<i>*)lhs[i], *(Type<i>*)rhs[i]);
5394 // ...
5395 CodeGenFunction::OMPPrivateScope Scope(CGF);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005396 auto IPriv = Privates.begin();
5397 unsigned Idx = 0;
5398 for (unsigned I = 0, E = ReductionOps.size(); I < E; ++I, ++IPriv, ++Idx) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005399 const auto *RHSVar =
5400 cast<VarDecl>(cast<DeclRefExpr>(RHSExprs[I])->getDecl());
5401 Scope.addPrivate(RHSVar, [&CGF, RHS, Idx, RHSVar]() {
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005402 return emitAddrOfVarFromArray(CGF, RHS, Idx, RHSVar);
John McCall7f416cc2015-09-08 08:05:57 +00005403 });
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005404 const auto *LHSVar =
5405 cast<VarDecl>(cast<DeclRefExpr>(LHSExprs[I])->getDecl());
5406 Scope.addPrivate(LHSVar, [&CGF, LHS, Idx, LHSVar]() {
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005407 return emitAddrOfVarFromArray(CGF, LHS, Idx, LHSVar);
John McCall7f416cc2015-09-08 08:05:57 +00005408 });
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005409 QualType PrivTy = (*IPriv)->getType();
Alexey Bataev1189bd02016-01-26 12:20:39 +00005410 if (PrivTy->isVariablyModifiedType()) {
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005411 // Get array size and emit VLA type.
5412 ++Idx;
5413 Address Elem =
5414 CGF.Builder.CreateConstArrayGEP(LHS, Idx, CGF.getPointerSize());
5415 llvm::Value *Ptr = CGF.Builder.CreateLoad(Elem);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005416 const VariableArrayType *VLA =
5417 CGF.getContext().getAsVariableArrayType(PrivTy);
5418 const auto *OVE = cast<OpaqueValueExpr>(VLA->getSizeExpr());
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005419 CodeGenFunction::OpaqueValueMapping OpaqueMap(
Alexey Bataev1189bd02016-01-26 12:20:39 +00005420 CGF, OVE, RValue::get(CGF.Builder.CreatePtrToInt(Ptr, CGF.SizeTy)));
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005421 CGF.EmitVariablyModifiedType(PrivTy);
5422 }
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005423 }
5424 Scope.Privatize();
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005425 IPriv = Privates.begin();
5426 auto ILHS = LHSExprs.begin();
5427 auto IRHS = RHSExprs.begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005428 for (const Expr *E : ReductionOps) {
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005429 if ((*IPriv)->getType()->isArrayType()) {
5430 // Emit reduction for array section.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005431 const auto *LHSVar = cast<VarDecl>(cast<DeclRefExpr>(*ILHS)->getDecl());
5432 const auto *RHSVar = cast<VarDecl>(cast<DeclRefExpr>(*IRHS)->getDecl());
Alexey Bataeva839ddd2016-03-17 10:19:46 +00005433 EmitOMPAggregateReduction(
5434 CGF, (*IPriv)->getType(), LHSVar, RHSVar,
5435 [=](CodeGenFunction &CGF, const Expr *, const Expr *, const Expr *) {
5436 emitReductionCombiner(CGF, E);
5437 });
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005438 } else {
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005439 // Emit reduction for array subscript or single variable.
Alexey Bataeva839ddd2016-03-17 10:19:46 +00005440 emitReductionCombiner(CGF, E);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005441 }
Richard Trieucc3949d2016-02-18 22:34:54 +00005442 ++IPriv;
5443 ++ILHS;
5444 ++IRHS;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005445 }
5446 Scope.ForceCleanup();
5447 CGF.FinishFunction();
5448 return Fn;
5449}
5450
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00005451void CGOpenMPRuntime::emitSingleReductionCombiner(CodeGenFunction &CGF,
5452 const Expr *ReductionOp,
5453 const Expr *PrivateRef,
5454 const DeclRefExpr *LHS,
5455 const DeclRefExpr *RHS) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005456 if (PrivateRef->getType()->isArrayType()) {
5457 // Emit reduction for array section.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005458 const auto *LHSVar = cast<VarDecl>(LHS->getDecl());
5459 const auto *RHSVar = cast<VarDecl>(RHS->getDecl());
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005460 EmitOMPAggregateReduction(
5461 CGF, PrivateRef->getType(), LHSVar, RHSVar,
5462 [=](CodeGenFunction &CGF, const Expr *, const Expr *, const Expr *) {
5463 emitReductionCombiner(CGF, ReductionOp);
5464 });
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005465 } else {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005466 // Emit reduction for array subscript or single variable.
5467 emitReductionCombiner(CGF, ReductionOp);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005468 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005469}
5470
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005471void CGOpenMPRuntime::emitReduction(CodeGenFunction &CGF, SourceLocation Loc,
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005472 ArrayRef<const Expr *> Privates,
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005473 ArrayRef<const Expr *> LHSExprs,
5474 ArrayRef<const Expr *> RHSExprs,
5475 ArrayRef<const Expr *> ReductionOps,
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00005476 ReductionOptionsTy Options) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00005477 if (!CGF.HaveInsertPoint())
5478 return;
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00005479
5480 bool WithNowait = Options.WithNowait;
5481 bool SimpleReduction = Options.SimpleReduction;
5482
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005483 // Next code should be emitted for reduction:
5484 //
5485 // static kmp_critical_name lock = { 0 };
5486 //
5487 // void reduce_func(void *lhs[<n>], void *rhs[<n>]) {
5488 // *(Type0*)lhs[0] = ReductionOperation0(*(Type0*)lhs[0], *(Type0*)rhs[0]);
5489 // ...
5490 // *(Type<n>-1*)lhs[<n>-1] = ReductionOperation<n>-1(*(Type<n>-1*)lhs[<n>-1],
5491 // *(Type<n>-1*)rhs[<n>-1]);
5492 // }
5493 //
5494 // ...
5495 // void *RedList[<n>] = {&<RHSExprs>[0], ..., &<RHSExprs>[<n>-1]};
5496 // switch (__kmpc_reduce{_nowait}(<loc>, <gtid>, <n>, sizeof(RedList),
5497 // RedList, reduce_func, &<lock>)) {
5498 // case 1:
5499 // ...
5500 // <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]);
5501 // ...
5502 // __kmpc_end_reduce{_nowait}(<loc>, <gtid>, &<lock>);
5503 // break;
5504 // case 2:
5505 // ...
5506 // Atomic(<LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]));
5507 // ...
Alexey Bataev69a47792015-05-07 03:54:03 +00005508 // [__kmpc_end_reduce(<loc>, <gtid>, &<lock>);]
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005509 // break;
5510 // default:;
5511 // }
Alexey Bataev89e7e8e2015-06-17 06:21:39 +00005512 //
5513 // if SimpleReduction is true, only the next code is generated:
5514 // ...
5515 // <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]);
5516 // ...
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005517
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005518 ASTContext &C = CGM.getContext();
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005519
Alexey Bataev89e7e8e2015-06-17 06:21:39 +00005520 if (SimpleReduction) {
5521 CodeGenFunction::RunCleanupsScope Scope(CGF);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005522 auto IPriv = Privates.begin();
5523 auto ILHS = LHSExprs.begin();
5524 auto IRHS = RHSExprs.begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005525 for (const Expr *E : ReductionOps) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005526 emitSingleReductionCombiner(CGF, E, *IPriv, cast<DeclRefExpr>(*ILHS),
5527 cast<DeclRefExpr>(*IRHS));
Richard Trieucc3949d2016-02-18 22:34:54 +00005528 ++IPriv;
5529 ++ILHS;
5530 ++IRHS;
Alexey Bataev89e7e8e2015-06-17 06:21:39 +00005531 }
5532 return;
5533 }
5534
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005535 // 1. Build a list of reduction variables.
5536 // void *RedList[<n>] = {<ReductionVars>[0], ..., <ReductionVars>[<n>-1]};
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005537 auto Size = RHSExprs.size();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005538 for (const Expr *E : Privates) {
Alexey Bataev1189bd02016-01-26 12:20:39 +00005539 if (E->getType()->isVariablyModifiedType())
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005540 // Reserve place for array size.
5541 ++Size;
5542 }
5543 llvm::APInt ArraySize(/*unsigned int numBits=*/32, Size);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005544 QualType ReductionArrayTy =
5545 C.getConstantArrayType(C.VoidPtrTy, ArraySize, ArrayType::Normal,
5546 /*IndexTypeQuals=*/0);
John McCall7f416cc2015-09-08 08:05:57 +00005547 Address ReductionList =
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005548 CGF.CreateMemTemp(ReductionArrayTy, ".omp.reduction.red_list");
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005549 auto IPriv = Privates.begin();
5550 unsigned Idx = 0;
5551 for (unsigned I = 0, E = RHSExprs.size(); I < E; ++I, ++IPriv, ++Idx) {
John McCall7f416cc2015-09-08 08:05:57 +00005552 Address Elem =
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005553 CGF.Builder.CreateConstArrayGEP(ReductionList, Idx, CGF.getPointerSize());
John McCall7f416cc2015-09-08 08:05:57 +00005554 CGF.Builder.CreateStore(
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005555 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
John McCall7f416cc2015-09-08 08:05:57 +00005556 CGF.EmitLValue(RHSExprs[I]).getPointer(), CGF.VoidPtrTy),
5557 Elem);
Alexey Bataev1189bd02016-01-26 12:20:39 +00005558 if ((*IPriv)->getType()->isVariablyModifiedType()) {
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005559 // Store array size.
5560 ++Idx;
5561 Elem = CGF.Builder.CreateConstArrayGEP(ReductionList, Idx,
5562 CGF.getPointerSize());
Alexey Bataev1189bd02016-01-26 12:20:39 +00005563 llvm::Value *Size = CGF.Builder.CreateIntCast(
5564 CGF.getVLASize(
5565 CGF.getContext().getAsVariableArrayType((*IPriv)->getType()))
Sander de Smalen891af03a2018-02-03 13:55:59 +00005566 .NumElts,
Alexey Bataev1189bd02016-01-26 12:20:39 +00005567 CGF.SizeTy, /*isSigned=*/false);
5568 CGF.Builder.CreateStore(CGF.Builder.CreateIntToPtr(Size, CGF.VoidPtrTy),
5569 Elem);
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005570 }
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005571 }
5572
5573 // 2. Emit reduce_func().
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005574 llvm::Value *ReductionFn = emitReductionFunction(
Alexey Bataev7cae94e2018-01-04 19:45:16 +00005575 CGM, Loc, CGF.ConvertTypeForMem(ReductionArrayTy)->getPointerTo(),
5576 Privates, LHSExprs, RHSExprs, ReductionOps);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005577
5578 // 3. Create static kmp_critical_name lock = { 0 };
Alexey Bataev18fa2322018-05-02 14:20:50 +00005579 std::string Name = getName({"reduction"});
5580 llvm::Value *Lock = getCriticalRegionLock(Name);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005581
5582 // 4. Build res = __kmpc_reduce{_nowait}(<loc>, <gtid>, <n>, sizeof(RedList),
5583 // RedList, reduce_func, &<lock>);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005584 llvm::Value *IdentTLoc = emitUpdateLocation(CGF, Loc, OMP_ATOMIC_REDUCE);
5585 llvm::Value *ThreadId = getThreadID(CGF, Loc);
5586 llvm::Value *ReductionArrayTySize = CGF.getTypeSize(ReductionArrayTy);
5587 llvm::Value *RL = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
Samuel Antao4c8035b2016-12-12 18:00:20 +00005588 ReductionList.getPointer(), CGF.VoidPtrTy);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005589 llvm::Value *Args[] = {
5590 IdentTLoc, // ident_t *<loc>
5591 ThreadId, // i32 <gtid>
5592 CGF.Builder.getInt32(RHSExprs.size()), // i32 <n>
5593 ReductionArrayTySize, // size_type sizeof(RedList)
5594 RL, // void *RedList
5595 ReductionFn, // void (*) (void *, void *) <reduce_func>
5596 Lock // kmp_critical_name *&<lock>
5597 };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005598 llvm::Value *Res = CGF.EmitRuntimeCall(
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005599 createRuntimeFunction(WithNowait ? OMPRTL__kmpc_reduce_nowait
5600 : OMPRTL__kmpc_reduce),
5601 Args);
5602
5603 // 5. Build switch(res)
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005604 llvm::BasicBlock *DefaultBB = CGF.createBasicBlock(".omp.reduction.default");
5605 llvm::SwitchInst *SwInst =
5606 CGF.Builder.CreateSwitch(Res, DefaultBB, /*NumCases=*/2);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005607
5608 // 6. Build case 1:
5609 // ...
5610 // <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]);
5611 // ...
5612 // __kmpc_end_reduce{_nowait}(<loc>, <gtid>, &<lock>);
5613 // break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005614 llvm::BasicBlock *Case1BB = CGF.createBasicBlock(".omp.reduction.case1");
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005615 SwInst->addCase(CGF.Builder.getInt32(1), Case1BB);
5616 CGF.EmitBlock(Case1BB);
5617
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005618 // Add emission of __kmpc_end_reduce{_nowait}(<loc>, <gtid>, &<lock>);
5619 llvm::Value *EndArgs[] = {
5620 IdentTLoc, // ident_t *<loc>
5621 ThreadId, // i32 <gtid>
5622 Lock // kmp_critical_name *&<lock>
5623 };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005624 auto &&CodeGen = [Privates, LHSExprs, RHSExprs, ReductionOps](
5625 CodeGenFunction &CGF, PrePostActionTy &Action) {
5626 CGOpenMPRuntime &RT = CGF.CGM.getOpenMPRuntime();
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005627 auto IPriv = Privates.begin();
5628 auto ILHS = LHSExprs.begin();
5629 auto IRHS = RHSExprs.begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005630 for (const Expr *E : ReductionOps) {
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00005631 RT.emitSingleReductionCombiner(CGF, E, *IPriv, cast<DeclRefExpr>(*ILHS),
5632 cast<DeclRefExpr>(*IRHS));
Richard Trieucc3949d2016-02-18 22:34:54 +00005633 ++IPriv;
5634 ++ILHS;
5635 ++IRHS;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005636 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005637 };
5638 RegionCodeGenTy RCG(CodeGen);
5639 CommonActionTy Action(
5640 nullptr, llvm::None,
5641 createRuntimeFunction(WithNowait ? OMPRTL__kmpc_end_reduce_nowait
5642 : OMPRTL__kmpc_end_reduce),
5643 EndArgs);
5644 RCG.setAction(Action);
5645 RCG(CGF);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005646
5647 CGF.EmitBranch(DefaultBB);
5648
5649 // 7. Build case 2:
5650 // ...
5651 // Atomic(<LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]));
5652 // ...
5653 // break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005654 llvm::BasicBlock *Case2BB = CGF.createBasicBlock(".omp.reduction.case2");
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005655 SwInst->addCase(CGF.Builder.getInt32(2), Case2BB);
5656 CGF.EmitBlock(Case2BB);
5657
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005658 auto &&AtomicCodeGen = [Loc, Privates, LHSExprs, RHSExprs, ReductionOps](
5659 CodeGenFunction &CGF, PrePostActionTy &Action) {
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005660 auto ILHS = LHSExprs.begin();
5661 auto IRHS = RHSExprs.begin();
5662 auto IPriv = Privates.begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005663 for (const Expr *E : ReductionOps) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005664 const Expr *XExpr = nullptr;
5665 const Expr *EExpr = nullptr;
5666 const Expr *UpExpr = nullptr;
5667 BinaryOperatorKind BO = BO_Comma;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005668 if (const auto *BO = dyn_cast<BinaryOperator>(E)) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005669 if (BO->getOpcode() == BO_Assign) {
5670 XExpr = BO->getLHS();
5671 UpExpr = BO->getRHS();
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005672 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005673 }
5674 // Try to emit update expression as a simple atomic.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005675 const Expr *RHSExpr = UpExpr;
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005676 if (RHSExpr) {
5677 // Analyze RHS part of the whole expression.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005678 if (const auto *ACO = dyn_cast<AbstractConditionalOperator>(
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005679 RHSExpr->IgnoreParenImpCasts())) {
5680 // If this is a conditional operator, analyze its condition for
5681 // min/max reduction operator.
5682 RHSExpr = ACO->getCond();
Alexey Bataev69a47792015-05-07 03:54:03 +00005683 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005684 if (const auto *BORHS =
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005685 dyn_cast<BinaryOperator>(RHSExpr->IgnoreParenImpCasts())) {
5686 EExpr = BORHS->getRHS();
5687 BO = BORHS->getOpcode();
Alexey Bataevf24e7b12015-10-08 09:10:53 +00005688 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005689 }
5690 if (XExpr) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005691 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(*ILHS)->getDecl());
Malcolm Parsonsc6e45832017-01-13 18:55:32 +00005692 auto &&AtomicRedGen = [BO, VD,
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005693 Loc](CodeGenFunction &CGF, const Expr *XExpr,
5694 const Expr *EExpr, const Expr *UpExpr) {
5695 LValue X = CGF.EmitLValue(XExpr);
5696 RValue E;
5697 if (EExpr)
5698 E = CGF.EmitAnyExpr(EExpr);
5699 CGF.EmitOMPAtomicSimpleUpdateExpr(
JF Bastien92f4ef12016-04-06 17:26:42 +00005700 X, E, BO, /*IsXLHSInRHSPart=*/true,
5701 llvm::AtomicOrdering::Monotonic, Loc,
Malcolm Parsonsc6e45832017-01-13 18:55:32 +00005702 [&CGF, UpExpr, VD, Loc](RValue XRValue) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005703 CodeGenFunction::OMPPrivateScope PrivateScope(CGF);
5704 PrivateScope.addPrivate(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005705 VD, [&CGF, VD, XRValue, Loc]() {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005706 Address LHSTemp = CGF.CreateMemTemp(VD->getType());
5707 CGF.emitOMPSimpleStore(
5708 CGF.MakeAddrLValue(LHSTemp, VD->getType()), XRValue,
5709 VD->getType().getNonReferenceType(), Loc);
5710 return LHSTemp;
5711 });
5712 (void)PrivateScope.Privatize();
5713 return CGF.EmitAnyExpr(UpExpr);
5714 });
5715 };
5716 if ((*IPriv)->getType()->isArrayType()) {
5717 // Emit atomic reduction for array section.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005718 const auto *RHSVar =
5719 cast<VarDecl>(cast<DeclRefExpr>(*IRHS)->getDecl());
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005720 EmitOMPAggregateReduction(CGF, (*IPriv)->getType(), VD, RHSVar,
5721 AtomicRedGen, XExpr, EExpr, UpExpr);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005722 } else {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005723 // Emit atomic reduction for array subscript or single variable.
5724 AtomicRedGen(CGF, XExpr, EExpr, UpExpr);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005725 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005726 } else {
5727 // Emit as a critical region.
5728 auto &&CritRedGen = [E, Loc](CodeGenFunction &CGF, const Expr *,
Alexey Bataev18fa2322018-05-02 14:20:50 +00005729 const Expr *, const Expr *) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005730 CGOpenMPRuntime &RT = CGF.CGM.getOpenMPRuntime();
Alexey Bataev18fa2322018-05-02 14:20:50 +00005731 std::string Name = RT.getName({"atomic_reduction"});
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005732 RT.emitCriticalRegion(
Alexey Bataev18fa2322018-05-02 14:20:50 +00005733 CGF, Name,
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005734 [=](CodeGenFunction &CGF, PrePostActionTy &Action) {
5735 Action.Enter(CGF);
5736 emitReductionCombiner(CGF, E);
5737 },
5738 Loc);
5739 };
5740 if ((*IPriv)->getType()->isArrayType()) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005741 const auto *LHSVar =
5742 cast<VarDecl>(cast<DeclRefExpr>(*ILHS)->getDecl());
5743 const auto *RHSVar =
5744 cast<VarDecl>(cast<DeclRefExpr>(*IRHS)->getDecl());
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005745 EmitOMPAggregateReduction(CGF, (*IPriv)->getType(), LHSVar, RHSVar,
5746 CritRedGen);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005747 } else {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005748 CritRedGen(CGF, nullptr, nullptr, nullptr);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005749 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005750 }
Richard Trieucc3949d2016-02-18 22:34:54 +00005751 ++ILHS;
5752 ++IRHS;
5753 ++IPriv;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005754 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005755 };
5756 RegionCodeGenTy AtomicRCG(AtomicCodeGen);
5757 if (!WithNowait) {
5758 // Add emission of __kmpc_end_reduce(<loc>, <gtid>, &<lock>);
5759 llvm::Value *EndArgs[] = {
5760 IdentTLoc, // ident_t *<loc>
5761 ThreadId, // i32 <gtid>
5762 Lock // kmp_critical_name *&<lock>
5763 };
5764 CommonActionTy Action(nullptr, llvm::None,
5765 createRuntimeFunction(OMPRTL__kmpc_end_reduce),
5766 EndArgs);
5767 AtomicRCG.setAction(Action);
5768 AtomicRCG(CGF);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005769 } else {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00005770 AtomicRCG(CGF);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005771 }
Alexey Bataev794ba0d2015-04-10 10:43:45 +00005772
5773 CGF.EmitBranch(DefaultBB);
5774 CGF.EmitBlock(DefaultBB, /*IsFinished=*/true);
5775}
5776
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005777/// Generates unique name for artificial threadprivate variables.
Alexey Bataev1c44e152018-03-06 18:59:43 +00005778/// Format is: <Prefix> "." <Decl_mangled_name> "_" "<Decl_start_loc_raw_enc>"
5779static std::string generateUniqueName(CodeGenModule &CGM, StringRef Prefix,
5780 const Expr *Ref) {
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005781 SmallString<256> Buffer;
5782 llvm::raw_svector_ostream Out(Buffer);
Alexey Bataev1c44e152018-03-06 18:59:43 +00005783 const clang::DeclRefExpr *DE;
5784 const VarDecl *D = ::getBaseDecl(Ref, DE);
5785 if (!D)
5786 D = cast<VarDecl>(cast<DeclRefExpr>(Ref)->getDecl());
5787 D = D->getCanonicalDecl();
Alexey Bataev18fa2322018-05-02 14:20:50 +00005788 std::string Name = CGM.getOpenMPRuntime().getName(
5789 {D->isLocalVarDeclOrParm() ? D->getName() : CGM.getMangledName(D)});
5790 Out << Prefix << Name << "_"
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005791 << D->getCanonicalDecl()->getBeginLoc().getRawEncoding();
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005792 return Out.str();
5793}
5794
5795/// Emits reduction initializer function:
5796/// \code
5797/// void @.red_init(void* %arg) {
5798/// %0 = bitcast void* %arg to <type>*
5799/// store <type> <init>, <type>* %0
5800/// ret void
5801/// }
5802/// \endcode
5803static llvm::Value *emitReduceInitFunction(CodeGenModule &CGM,
5804 SourceLocation Loc,
5805 ReductionCodeGen &RCG, unsigned N) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005806 ASTContext &C = CGM.getContext();
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005807 FunctionArgList Args;
Alexey Bataev7cae94e2018-01-04 19:45:16 +00005808 ImplicitParamDecl Param(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy,
5809 ImplicitParamDecl::Other);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005810 Args.emplace_back(&Param);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005811 const auto &FnInfo =
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005812 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005813 llvm::FunctionType *FnTy = CGM.getTypes().GetFunctionType(FnInfo);
Alexey Bataev18fa2322018-05-02 14:20:50 +00005814 std::string Name = CGM.getOpenMPRuntime().getName({"red_init", ""});
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005815 auto *Fn = llvm::Function::Create(FnTy, llvm::GlobalValue::InternalLinkage,
Alexey Bataev18fa2322018-05-02 14:20:50 +00005816 Name, &CGM.getModule());
Rafael Espindola51ec5a92018-02-28 23:46:35 +00005817 CGM.SetInternalFunctionAttributes(GlobalDecl(), Fn, FnInfo);
Alexey Bataevc0f879b2018-04-10 20:10:53 +00005818 Fn->setDoesNotRecurse();
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005819 CodeGenFunction CGF(CGM);
Alexey Bataev7cae94e2018-01-04 19:45:16 +00005820 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FnInfo, Args, Loc, Loc);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005821 Address PrivateAddr = CGF.EmitLoadOfPointer(
5822 CGF.GetAddrOfLocalVar(&Param),
5823 C.getPointerType(C.VoidPtrTy).castAs<PointerType>());
5824 llvm::Value *Size = nullptr;
5825 // If the size of the reduction item is non-constant, load it from global
5826 // threadprivate variable.
5827 if (RCG.getSizes(N).second) {
5828 Address SizeAddr = CGM.getOpenMPRuntime().getAddrOfArtificialThreadPrivate(
5829 CGF, CGM.getContext().getSizeType(),
Alexey Bataev1c44e152018-03-06 18:59:43 +00005830 generateUniqueName(CGM, "reduction_size", RCG.getRefExpr(N)));
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00005831 Size = CGF.EmitLoadOfScalar(SizeAddr, /*Volatile=*/false,
5832 CGM.getContext().getSizeType(), Loc);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005833 }
5834 RCG.emitAggregateType(CGF, N, Size);
5835 LValue SharedLVal;
5836 // If initializer uses initializer from declare reduction construct, emit a
5837 // pointer to the address of the original reduction item (reuired by reduction
5838 // initializer)
5839 if (RCG.usesReductionInitializer(N)) {
5840 Address SharedAddr =
5841 CGM.getOpenMPRuntime().getAddrOfArtificialThreadPrivate(
5842 CGF, CGM.getContext().VoidPtrTy,
Alexey Bataev1c44e152018-03-06 18:59:43 +00005843 generateUniqueName(CGM, "reduction", RCG.getRefExpr(N)));
Alexey Bataev21dab122018-03-09 15:20:30 +00005844 SharedAddr = CGF.EmitLoadOfPointer(
5845 SharedAddr,
5846 CGM.getContext().VoidPtrTy.castAs<PointerType>()->getTypePtr());
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005847 SharedLVal = CGF.MakeAddrLValue(SharedAddr, CGM.getContext().VoidPtrTy);
5848 } else {
5849 SharedLVal = CGF.MakeNaturalAlignAddrLValue(
5850 llvm::ConstantPointerNull::get(CGM.VoidPtrTy),
5851 CGM.getContext().VoidPtrTy);
5852 }
5853 // Emit the initializer:
5854 // %0 = bitcast void* %arg to <type>*
5855 // store <type> <init>, <type>* %0
5856 RCG.emitInitialization(CGF, N, PrivateAddr, SharedLVal,
5857 [](CodeGenFunction &) { return false; });
5858 CGF.FinishFunction();
5859 return Fn;
5860}
5861
5862/// Emits reduction combiner function:
5863/// \code
5864/// void @.red_comb(void* %arg0, void* %arg1) {
5865/// %lhs = bitcast void* %arg0 to <type>*
5866/// %rhs = bitcast void* %arg1 to <type>*
5867/// %2 = <ReductionOp>(<type>* %lhs, <type>* %rhs)
5868/// store <type> %2, <type>* %lhs
5869/// ret void
5870/// }
5871/// \endcode
5872static llvm::Value *emitReduceCombFunction(CodeGenModule &CGM,
5873 SourceLocation Loc,
5874 ReductionCodeGen &RCG, unsigned N,
5875 const Expr *ReductionOp,
5876 const Expr *LHS, const Expr *RHS,
5877 const Expr *PrivateRef) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005878 ASTContext &C = CGM.getContext();
5879 const auto *LHSVD = cast<VarDecl>(cast<DeclRefExpr>(LHS)->getDecl());
5880 const auto *RHSVD = cast<VarDecl>(cast<DeclRefExpr>(RHS)->getDecl());
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005881 FunctionArgList Args;
Alexey Bataev7cae94e2018-01-04 19:45:16 +00005882 ImplicitParamDecl ParamInOut(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr,
5883 C.VoidPtrTy, ImplicitParamDecl::Other);
5884 ImplicitParamDecl ParamIn(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy,
5885 ImplicitParamDecl::Other);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005886 Args.emplace_back(&ParamInOut);
5887 Args.emplace_back(&ParamIn);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005888 const auto &FnInfo =
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005889 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005890 llvm::FunctionType *FnTy = CGM.getTypes().GetFunctionType(FnInfo);
Alexey Bataev18fa2322018-05-02 14:20:50 +00005891 std::string Name = CGM.getOpenMPRuntime().getName({"red_comb", ""});
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005892 auto *Fn = llvm::Function::Create(FnTy, llvm::GlobalValue::InternalLinkage,
Alexey Bataev18fa2322018-05-02 14:20:50 +00005893 Name, &CGM.getModule());
Rafael Espindola51ec5a92018-02-28 23:46:35 +00005894 CGM.SetInternalFunctionAttributes(GlobalDecl(), Fn, FnInfo);
Alexey Bataevc0f879b2018-04-10 20:10:53 +00005895 Fn->setDoesNotRecurse();
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005896 CodeGenFunction CGF(CGM);
Alexey Bataev7cae94e2018-01-04 19:45:16 +00005897 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FnInfo, Args, Loc, Loc);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005898 llvm::Value *Size = nullptr;
5899 // If the size of the reduction item is non-constant, load it from global
5900 // threadprivate variable.
5901 if (RCG.getSizes(N).second) {
5902 Address SizeAddr = CGM.getOpenMPRuntime().getAddrOfArtificialThreadPrivate(
5903 CGF, CGM.getContext().getSizeType(),
Alexey Bataev1c44e152018-03-06 18:59:43 +00005904 generateUniqueName(CGM, "reduction_size", RCG.getRefExpr(N)));
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00005905 Size = CGF.EmitLoadOfScalar(SizeAddr, /*Volatile=*/false,
5906 CGM.getContext().getSizeType(), Loc);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005907 }
5908 RCG.emitAggregateType(CGF, N, Size);
5909 // Remap lhs and rhs variables to the addresses of the function arguments.
5910 // %lhs = bitcast void* %arg0 to <type>*
5911 // %rhs = bitcast void* %arg1 to <type>*
5912 CodeGenFunction::OMPPrivateScope PrivateScope(CGF);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005913 PrivateScope.addPrivate(LHSVD, [&C, &CGF, &ParamInOut, LHSVD]() {
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005914 // Pull out the pointer to the variable.
5915 Address PtrAddr = CGF.EmitLoadOfPointer(
5916 CGF.GetAddrOfLocalVar(&ParamInOut),
5917 C.getPointerType(C.VoidPtrTy).castAs<PointerType>());
5918 return CGF.Builder.CreateElementBitCast(
5919 PtrAddr, CGF.ConvertTypeForMem(LHSVD->getType()));
5920 });
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005921 PrivateScope.addPrivate(RHSVD, [&C, &CGF, &ParamIn, RHSVD]() {
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005922 // Pull out the pointer to the variable.
5923 Address PtrAddr = CGF.EmitLoadOfPointer(
5924 CGF.GetAddrOfLocalVar(&ParamIn),
5925 C.getPointerType(C.VoidPtrTy).castAs<PointerType>());
5926 return CGF.Builder.CreateElementBitCast(
5927 PtrAddr, CGF.ConvertTypeForMem(RHSVD->getType()));
5928 });
5929 PrivateScope.Privatize();
5930 // Emit the combiner body:
5931 // %2 = <ReductionOp>(<type> *%lhs, <type> *%rhs)
5932 // store <type> %2, <type>* %lhs
5933 CGM.getOpenMPRuntime().emitSingleReductionCombiner(
5934 CGF, ReductionOp, PrivateRef, cast<DeclRefExpr>(LHS),
5935 cast<DeclRefExpr>(RHS));
5936 CGF.FinishFunction();
5937 return Fn;
5938}
5939
5940/// Emits reduction finalizer function:
5941/// \code
5942/// void @.red_fini(void* %arg) {
5943/// %0 = bitcast void* %arg to <type>*
5944/// <destroy>(<type>* %0)
5945/// ret void
5946/// }
5947/// \endcode
5948static llvm::Value *emitReduceFiniFunction(CodeGenModule &CGM,
5949 SourceLocation Loc,
5950 ReductionCodeGen &RCG, unsigned N) {
5951 if (!RCG.needCleanups(N))
5952 return nullptr;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005953 ASTContext &C = CGM.getContext();
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005954 FunctionArgList Args;
Alexey Bataev7cae94e2018-01-04 19:45:16 +00005955 ImplicitParamDecl Param(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy,
5956 ImplicitParamDecl::Other);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005957 Args.emplace_back(&Param);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005958 const auto &FnInfo =
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005959 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00005960 llvm::FunctionType *FnTy = CGM.getTypes().GetFunctionType(FnInfo);
Alexey Bataev18fa2322018-05-02 14:20:50 +00005961 std::string Name = CGM.getOpenMPRuntime().getName({"red_fini", ""});
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005962 auto *Fn = llvm::Function::Create(FnTy, llvm::GlobalValue::InternalLinkage,
Alexey Bataev18fa2322018-05-02 14:20:50 +00005963 Name, &CGM.getModule());
Rafael Espindola51ec5a92018-02-28 23:46:35 +00005964 CGM.SetInternalFunctionAttributes(GlobalDecl(), Fn, FnInfo);
Alexey Bataevc0f879b2018-04-10 20:10:53 +00005965 Fn->setDoesNotRecurse();
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005966 CodeGenFunction CGF(CGM);
Alexey Bataev7cae94e2018-01-04 19:45:16 +00005967 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FnInfo, Args, Loc, Loc);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005968 Address PrivateAddr = CGF.EmitLoadOfPointer(
5969 CGF.GetAddrOfLocalVar(&Param),
5970 C.getPointerType(C.VoidPtrTy).castAs<PointerType>());
5971 llvm::Value *Size = nullptr;
5972 // If the size of the reduction item is non-constant, load it from global
5973 // threadprivate variable.
5974 if (RCG.getSizes(N).second) {
5975 Address SizeAddr = CGM.getOpenMPRuntime().getAddrOfArtificialThreadPrivate(
5976 CGF, CGM.getContext().getSizeType(),
Alexey Bataev1c44e152018-03-06 18:59:43 +00005977 generateUniqueName(CGM, "reduction_size", RCG.getRefExpr(N)));
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00005978 Size = CGF.EmitLoadOfScalar(SizeAddr, /*Volatile=*/false,
5979 CGM.getContext().getSizeType(), Loc);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00005980 }
5981 RCG.emitAggregateType(CGF, N, Size);
5982 // Emit the finalizer body:
5983 // <destroy>(<type>* %0)
5984 RCG.emitCleanups(CGF, N, PrivateAddr);
5985 CGF.FinishFunction();
5986 return Fn;
5987}
5988
5989llvm::Value *CGOpenMPRuntime::emitTaskReductionInit(
5990 CodeGenFunction &CGF, SourceLocation Loc, ArrayRef<const Expr *> LHSExprs,
5991 ArrayRef<const Expr *> RHSExprs, const OMPTaskDataTy &Data) {
5992 if (!CGF.HaveInsertPoint() || Data.ReductionVars.empty())
5993 return nullptr;
5994
5995 // Build typedef struct:
5996 // kmp_task_red_input {
5997 // void *reduce_shar; // shared reduction item
5998 // size_t reduce_size; // size of data item
5999 // void *reduce_init; // data initialization routine
6000 // void *reduce_fini; // data finalization routine
6001 // void *reduce_comb; // data combiner routine
6002 // kmp_task_red_flags_t flags; // flags for additional info from compiler
6003 // } kmp_task_red_input_t;
6004 ASTContext &C = CGM.getContext();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006005 RecordDecl *RD = C.buildImplicitRecord("kmp_task_red_input_t");
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00006006 RD->startDefinition();
6007 const FieldDecl *SharedFD = addFieldToRecordDecl(C, RD, C.VoidPtrTy);
6008 const FieldDecl *SizeFD = addFieldToRecordDecl(C, RD, C.getSizeType());
6009 const FieldDecl *InitFD = addFieldToRecordDecl(C, RD, C.VoidPtrTy);
6010 const FieldDecl *FiniFD = addFieldToRecordDecl(C, RD, C.VoidPtrTy);
6011 const FieldDecl *CombFD = addFieldToRecordDecl(C, RD, C.VoidPtrTy);
6012 const FieldDecl *FlagsFD = addFieldToRecordDecl(
6013 C, RD, C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/false));
6014 RD->completeDefinition();
6015 QualType RDType = C.getRecordType(RD);
6016 unsigned Size = Data.ReductionVars.size();
6017 llvm::APInt ArraySize(/*numBits=*/64, Size);
6018 QualType ArrayRDType = C.getConstantArrayType(
6019 RDType, ArraySize, ArrayType::Normal, /*IndexTypeQuals=*/0);
6020 // kmp_task_red_input_t .rd_input.[Size];
6021 Address TaskRedInput = CGF.CreateMemTemp(ArrayRDType, ".rd_input.");
6022 ReductionCodeGen RCG(Data.ReductionVars, Data.ReductionCopies,
6023 Data.ReductionOps);
6024 for (unsigned Cnt = 0; Cnt < Size; ++Cnt) {
6025 // kmp_task_red_input_t &ElemLVal = .rd_input.[Cnt];
6026 llvm::Value *Idxs[] = {llvm::ConstantInt::get(CGM.SizeTy, /*V=*/0),
6027 llvm::ConstantInt::get(CGM.SizeTy, Cnt)};
6028 llvm::Value *GEP = CGF.EmitCheckedInBoundsGEP(
6029 TaskRedInput.getPointer(), Idxs,
6030 /*SignedIndices=*/false, /*IsSubtraction=*/false, Loc,
6031 ".rd_input.gep.");
6032 LValue ElemLVal = CGF.MakeNaturalAlignAddrLValue(GEP, RDType);
6033 // ElemLVal.reduce_shar = &Shareds[Cnt];
6034 LValue SharedLVal = CGF.EmitLValueForField(ElemLVal, SharedFD);
6035 RCG.emitSharedLValue(CGF, Cnt);
6036 llvm::Value *CastedShared =
6037 CGF.EmitCastToVoidPtr(RCG.getSharedLValue(Cnt).getPointer());
6038 CGF.EmitStoreOfScalar(CastedShared, SharedLVal);
6039 RCG.emitAggregateType(CGF, Cnt);
6040 llvm::Value *SizeValInChars;
6041 llvm::Value *SizeVal;
6042 std::tie(SizeValInChars, SizeVal) = RCG.getSizes(Cnt);
6043 // We use delayed creation/initialization for VLAs, array sections and
6044 // custom reduction initializations. It is required because runtime does not
6045 // provide the way to pass the sizes of VLAs/array sections to
6046 // initializer/combiner/finalizer functions and does not pass the pointer to
6047 // original reduction item to the initializer. Instead threadprivate global
6048 // variables are used to store these values and use them in the functions.
6049 bool DelayedCreation = !!SizeVal;
6050 SizeValInChars = CGF.Builder.CreateIntCast(SizeValInChars, CGM.SizeTy,
6051 /*isSigned=*/false);
6052 LValue SizeLVal = CGF.EmitLValueForField(ElemLVal, SizeFD);
6053 CGF.EmitStoreOfScalar(SizeValInChars, SizeLVal);
6054 // ElemLVal.reduce_init = init;
6055 LValue InitLVal = CGF.EmitLValueForField(ElemLVal, InitFD);
6056 llvm::Value *InitAddr =
6057 CGF.EmitCastToVoidPtr(emitReduceInitFunction(CGM, Loc, RCG, Cnt));
6058 CGF.EmitStoreOfScalar(InitAddr, InitLVal);
6059 DelayedCreation = DelayedCreation || RCG.usesReductionInitializer(Cnt);
6060 // ElemLVal.reduce_fini = fini;
6061 LValue FiniLVal = CGF.EmitLValueForField(ElemLVal, FiniFD);
6062 llvm::Value *Fini = emitReduceFiniFunction(CGM, Loc, RCG, Cnt);
6063 llvm::Value *FiniAddr = Fini
6064 ? CGF.EmitCastToVoidPtr(Fini)
6065 : llvm::ConstantPointerNull::get(CGM.VoidPtrTy);
6066 CGF.EmitStoreOfScalar(FiniAddr, FiniLVal);
6067 // ElemLVal.reduce_comb = comb;
6068 LValue CombLVal = CGF.EmitLValueForField(ElemLVal, CombFD);
6069 llvm::Value *CombAddr = CGF.EmitCastToVoidPtr(emitReduceCombFunction(
6070 CGM, Loc, RCG, Cnt, Data.ReductionOps[Cnt], LHSExprs[Cnt],
6071 RHSExprs[Cnt], Data.ReductionCopies[Cnt]));
6072 CGF.EmitStoreOfScalar(CombAddr, CombLVal);
6073 // ElemLVal.flags = 0;
6074 LValue FlagsLVal = CGF.EmitLValueForField(ElemLVal, FlagsFD);
6075 if (DelayedCreation) {
6076 CGF.EmitStoreOfScalar(
6077 llvm::ConstantInt::get(CGM.Int32Ty, /*V=*/1, /*IsSigned=*/true),
6078 FlagsLVal);
6079 } else
6080 CGF.EmitNullInitialization(FlagsLVal.getAddress(), FlagsLVal.getType());
6081 }
6082 // Build call void *__kmpc_task_reduction_init(int gtid, int num_data, void
6083 // *data);
6084 llvm::Value *Args[] = {
6085 CGF.Builder.CreateIntCast(getThreadID(CGF, Loc), CGM.IntTy,
6086 /*isSigned=*/true),
6087 llvm::ConstantInt::get(CGM.IntTy, Size, /*isSigned=*/true),
6088 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(TaskRedInput.getPointer(),
6089 CGM.VoidPtrTy)};
6090 return CGF.EmitRuntimeCall(
6091 createRuntimeFunction(OMPRTL__kmpc_task_reduction_init), Args);
6092}
6093
6094void CGOpenMPRuntime::emitTaskReductionFixups(CodeGenFunction &CGF,
6095 SourceLocation Loc,
6096 ReductionCodeGen &RCG,
6097 unsigned N) {
6098 auto Sizes = RCG.getSizes(N);
6099 // Emit threadprivate global variable if the type is non-constant
6100 // (Sizes.second = nullptr).
6101 if (Sizes.second) {
6102 llvm::Value *SizeVal = CGF.Builder.CreateIntCast(Sizes.second, CGM.SizeTy,
6103 /*isSigned=*/false);
6104 Address SizeAddr = getAddrOfArtificialThreadPrivate(
6105 CGF, CGM.getContext().getSizeType(),
Alexey Bataev1c44e152018-03-06 18:59:43 +00006106 generateUniqueName(CGM, "reduction_size", RCG.getRefExpr(N)));
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00006107 CGF.Builder.CreateStore(SizeVal, SizeAddr, /*IsVolatile=*/false);
6108 }
6109 // Store address of the original reduction item if custom initializer is used.
6110 if (RCG.usesReductionInitializer(N)) {
6111 Address SharedAddr = getAddrOfArtificialThreadPrivate(
6112 CGF, CGM.getContext().VoidPtrTy,
Alexey Bataev1c44e152018-03-06 18:59:43 +00006113 generateUniqueName(CGM, "reduction", RCG.getRefExpr(N)));
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00006114 CGF.Builder.CreateStore(
6115 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
6116 RCG.getSharedLValue(N).getPointer(), CGM.VoidPtrTy),
6117 SharedAddr, /*IsVolatile=*/false);
6118 }
6119}
6120
6121Address CGOpenMPRuntime::getTaskReductionItem(CodeGenFunction &CGF,
6122 SourceLocation Loc,
6123 llvm::Value *ReductionsPtr,
6124 LValue SharedLVal) {
6125 // Build call void *__kmpc_task_reduction_get_th_data(int gtid, void *tg, void
6126 // *d);
6127 llvm::Value *Args[] = {
6128 CGF.Builder.CreateIntCast(getThreadID(CGF, Loc), CGM.IntTy,
6129 /*isSigned=*/true),
6130 ReductionsPtr,
6131 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(SharedLVal.getPointer(),
6132 CGM.VoidPtrTy)};
6133 return Address(
6134 CGF.EmitRuntimeCall(
6135 createRuntimeFunction(OMPRTL__kmpc_task_reduction_get_th_data), Args),
6136 SharedLVal.getAlignment());
6137}
6138
Alexey Bataev8b8e2022015-04-27 05:22:09 +00006139void CGOpenMPRuntime::emitTaskwaitCall(CodeGenFunction &CGF,
6140 SourceLocation Loc) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00006141 if (!CGF.HaveInsertPoint())
6142 return;
Alexey Bataev8b8e2022015-04-27 05:22:09 +00006143 // Build call kmp_int32 __kmpc_omp_taskwait(ident_t *loc, kmp_int32
6144 // global_tid);
6145 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)};
6146 // Ignore return result until untied tasks are supported.
6147 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_omp_taskwait), Args);
Alexey Bataev48591dd2016-04-20 04:01:36 +00006148 if (auto *Region = dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo))
6149 Region->emitUntiedSwitch(CGF);
Alexey Bataev8b8e2022015-04-27 05:22:09 +00006150}
6151
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00006152void CGOpenMPRuntime::emitInlinedDirective(CodeGenFunction &CGF,
Alexey Bataev81c7ea02015-07-03 09:56:58 +00006153 OpenMPDirectiveKind InnerKind,
Alexey Bataev25e5b442015-09-15 12:52:43 +00006154 const RegionCodeGenTy &CodeGen,
6155 bool HasCancel) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00006156 if (!CGF.HaveInsertPoint())
6157 return;
Alexey Bataev25e5b442015-09-15 12:52:43 +00006158 InlinedOpenMPRegionRAII Region(CGF, CodeGen, InnerKind, HasCancel);
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00006159 CGF.CapturedStmtInfo->EmitBody(CGF, /*S=*/nullptr);
Alexey Bataev8cbe0a62015-02-26 10:27:34 +00006160}
6161
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00006162namespace {
6163enum RTCancelKind {
6164 CancelNoreq = 0,
6165 CancelParallel = 1,
6166 CancelLoop = 2,
6167 CancelSections = 3,
6168 CancelTaskgroup = 4
6169};
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +00006170} // anonymous namespace
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00006171
6172static RTCancelKind getCancellationKind(OpenMPDirectiveKind CancelRegion) {
6173 RTCancelKind CancelKind = CancelNoreq;
Alexey Bataev0f34da12015-07-02 04:17:07 +00006174 if (CancelRegion == OMPD_parallel)
6175 CancelKind = CancelParallel;
6176 else if (CancelRegion == OMPD_for)
6177 CancelKind = CancelLoop;
6178 else if (CancelRegion == OMPD_sections)
6179 CancelKind = CancelSections;
6180 else {
6181 assert(CancelRegion == OMPD_taskgroup);
6182 CancelKind = CancelTaskgroup;
6183 }
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00006184 return CancelKind;
6185}
6186
6187void CGOpenMPRuntime::emitCancellationPointCall(
6188 CodeGenFunction &CGF, SourceLocation Loc,
6189 OpenMPDirectiveKind CancelRegion) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00006190 if (!CGF.HaveInsertPoint())
6191 return;
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00006192 // Build call kmp_int32 __kmpc_cancellationpoint(ident_t *loc, kmp_int32
6193 // global_tid, kmp_int32 cncl_kind);
Alexey Bataev81c7ea02015-07-03 09:56:58 +00006194 if (auto *OMPRegionInfo =
6195 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) {
Jonas Hahnfeldb07931f2017-02-17 18:32:58 +00006196 // For 'cancellation point taskgroup', the task region info may not have a
6197 // cancel. This may instead happen in another adjacent task.
6198 if (CancelRegion == OMPD_taskgroup || OMPRegionInfo->hasCancel()) {
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00006199 llvm::Value *Args[] = {
6200 emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc),
6201 CGF.Builder.getInt32(getCancellationKind(CancelRegion))};
Alexey Bataev81c7ea02015-07-03 09:56:58 +00006202 // Ignore return result until untied tasks are supported.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006203 llvm::Value *Result = CGF.EmitRuntimeCall(
Alexey Bataev81c7ea02015-07-03 09:56:58 +00006204 createRuntimeFunction(OMPRTL__kmpc_cancellationpoint), Args);
6205 // if (__kmpc_cancellationpoint()) {
Alexey Bataev81c7ea02015-07-03 09:56:58 +00006206 // exit from construct;
6207 // }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006208 llvm::BasicBlock *ExitBB = CGF.createBasicBlock(".cancel.exit");
6209 llvm::BasicBlock *ContBB = CGF.createBasicBlock(".cancel.continue");
6210 llvm::Value *Cmp = CGF.Builder.CreateIsNotNull(Result);
Alexey Bataev81c7ea02015-07-03 09:56:58 +00006211 CGF.Builder.CreateCondBr(Cmp, ExitBB, ContBB);
6212 CGF.EmitBlock(ExitBB);
Alexey Bataev81c7ea02015-07-03 09:56:58 +00006213 // exit from construct;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006214 CodeGenFunction::JumpDest CancelDest =
Alexey Bataev25e5b442015-09-15 12:52:43 +00006215 CGF.getOMPCancelDestination(OMPRegionInfo->getDirectiveKind());
Alexey Bataev81c7ea02015-07-03 09:56:58 +00006216 CGF.EmitBranchThroughCleanup(CancelDest);
6217 CGF.EmitBlock(ContBB, /*IsFinished=*/true);
6218 }
Alexey Bataev0f34da12015-07-02 04:17:07 +00006219 }
Alexey Bataev0f34da12015-07-02 04:17:07 +00006220}
6221
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00006222void CGOpenMPRuntime::emitCancelCall(CodeGenFunction &CGF, SourceLocation Loc,
Alexey Bataev87933c72015-09-18 08:07:34 +00006223 const Expr *IfCond,
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00006224 OpenMPDirectiveKind CancelRegion) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00006225 if (!CGF.HaveInsertPoint())
6226 return;
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00006227 // Build call kmp_int32 __kmpc_cancel(ident_t *loc, kmp_int32 global_tid,
6228 // kmp_int32 cncl_kind);
6229 if (auto *OMPRegionInfo =
6230 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00006231 auto &&ThenGen = [Loc, CancelRegion, OMPRegionInfo](CodeGenFunction &CGF,
6232 PrePostActionTy &) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006233 CGOpenMPRuntime &RT = CGF.CGM.getOpenMPRuntime();
Alexey Bataev87933c72015-09-18 08:07:34 +00006234 llvm::Value *Args[] = {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00006235 RT.emitUpdateLocation(CGF, Loc), RT.getThreadID(CGF, Loc),
Alexey Bataev87933c72015-09-18 08:07:34 +00006236 CGF.Builder.getInt32(getCancellationKind(CancelRegion))};
6237 // Ignore return result until untied tasks are supported.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006238 llvm::Value *Result = CGF.EmitRuntimeCall(
Alexey Bataev14fa1c62016-03-29 05:34:15 +00006239 RT.createRuntimeFunction(OMPRTL__kmpc_cancel), Args);
Alexey Bataev87933c72015-09-18 08:07:34 +00006240 // if (__kmpc_cancel()) {
Alexey Bataev87933c72015-09-18 08:07:34 +00006241 // exit from construct;
6242 // }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006243 llvm::BasicBlock *ExitBB = CGF.createBasicBlock(".cancel.exit");
6244 llvm::BasicBlock *ContBB = CGF.createBasicBlock(".cancel.continue");
6245 llvm::Value *Cmp = CGF.Builder.CreateIsNotNull(Result);
Alexey Bataev87933c72015-09-18 08:07:34 +00006246 CGF.Builder.CreateCondBr(Cmp, ExitBB, ContBB);
6247 CGF.EmitBlock(ExitBB);
Alexey Bataev87933c72015-09-18 08:07:34 +00006248 // exit from construct;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006249 CodeGenFunction::JumpDest CancelDest =
Alexey Bataev87933c72015-09-18 08:07:34 +00006250 CGF.getOMPCancelDestination(OMPRegionInfo->getDirectiveKind());
6251 CGF.EmitBranchThroughCleanup(CancelDest);
6252 CGF.EmitBlock(ContBB, /*IsFinished=*/true);
6253 };
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006254 if (IfCond) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00006255 emitOMPIfClause(CGF, IfCond, ThenGen,
6256 [](CodeGenFunction &, PrePostActionTy &) {});
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006257 } else {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00006258 RegionCodeGenTy ThenRCG(ThenGen);
6259 ThenRCG(CGF);
6260 }
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00006261 }
6262}
Samuel Antaobed3c462015-10-02 16:14:20 +00006263
Samuel Antaoee8fb302016-01-06 13:42:12 +00006264void CGOpenMPRuntime::emitTargetOutlinedFunction(
6265 const OMPExecutableDirective &D, StringRef ParentName,
6266 llvm::Function *&OutlinedFn, llvm::Constant *&OutlinedFnID,
Alexey Bataev14fa1c62016-03-29 05:34:15 +00006267 bool IsOffloadEntry, const RegionCodeGenTy &CodeGen) {
Samuel Antaoee8fb302016-01-06 13:42:12 +00006268 assert(!ParentName.empty() && "Invalid target region parent name!");
Arpith Chacko Jacob5c309e42016-03-22 01:48:56 +00006269 emitTargetOutlinedFunctionHelper(D, ParentName, OutlinedFn, OutlinedFnID,
6270 IsOffloadEntry, CodeGen);
6271}
6272
6273void CGOpenMPRuntime::emitTargetOutlinedFunctionHelper(
6274 const OMPExecutableDirective &D, StringRef ParentName,
6275 llvm::Function *&OutlinedFn, llvm::Constant *&OutlinedFnID,
6276 bool IsOffloadEntry, const RegionCodeGenTy &CodeGen) {
Samuel Antao2de62b02016-02-13 23:35:10 +00006277 // Create a unique name for the entry function using the source location
6278 // information of the current target region. The name will be something like:
Samuel Antaoee8fb302016-01-06 13:42:12 +00006279 //
Samuel Antao2de62b02016-02-13 23:35:10 +00006280 // __omp_offloading_DD_FFFF_PP_lBB
Samuel Antaoee8fb302016-01-06 13:42:12 +00006281 //
6282 // where DD_FFFF is an ID unique to the file (device and file IDs), PP is the
Samuel Antao2de62b02016-02-13 23:35:10 +00006283 // mangled name of the function that encloses the target region and BB is the
6284 // line number of the target region.
Samuel Antaoee8fb302016-01-06 13:42:12 +00006285
6286 unsigned DeviceID;
6287 unsigned FileID;
6288 unsigned Line;
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006289 getTargetEntryUniqueInfo(CGM.getContext(), D.getBeginLoc(), DeviceID, FileID,
Samuel Antao2de62b02016-02-13 23:35:10 +00006290 Line);
Samuel Antaoee8fb302016-01-06 13:42:12 +00006291 SmallString<64> EntryFnName;
6292 {
6293 llvm::raw_svector_ostream OS(EntryFnName);
Samuel Antao2de62b02016-02-13 23:35:10 +00006294 OS << "__omp_offloading" << llvm::format("_%x", DeviceID)
6295 << llvm::format("_%x_", FileID) << ParentName << "_l" << Line;
Samuel Antaoee8fb302016-01-06 13:42:12 +00006296 }
6297
Alexey Bataev475a7442018-01-12 19:39:11 +00006298 const CapturedStmt &CS = *D.getCapturedStmt(OMPD_target);
Arpith Chacko Jacob5c309e42016-03-22 01:48:56 +00006299
Samuel Antaobed3c462015-10-02 16:14:20 +00006300 CodeGenFunction CGF(CGM, true);
Samuel Antaoee8fb302016-01-06 13:42:12 +00006301 CGOpenMPTargetRegionInfo CGInfo(CS, CodeGen, EntryFnName);
Samuel Antaobed3c462015-10-02 16:14:20 +00006302 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CGInfo);
Samuel Antaoee8fb302016-01-06 13:42:12 +00006303
Samuel Antao6d004262016-06-16 18:39:34 +00006304 OutlinedFn = CGF.GenerateOpenMPCapturedStmtFunction(CS);
Samuel Antaoee8fb302016-01-06 13:42:12 +00006305
6306 // If this target outline function is not an offload entry, we don't need to
6307 // register it.
6308 if (!IsOffloadEntry)
6309 return;
6310
6311 // The target region ID is used by the runtime library to identify the current
6312 // target region, so it only has to be unique and not necessarily point to
6313 // anything. It could be the pointer to the outlined function that implements
6314 // the target region, but we aren't using that so that the compiler doesn't
6315 // need to keep that, and could therefore inline the host function if proven
6316 // worthwhile during optimization. In the other hand, if emitting code for the
6317 // device, the ID has to be the function address so that it can retrieved from
6318 // the offloading entry and launched by the runtime library. We also mark the
6319 // outlined function to have external linkage in case we are emitting code for
6320 // the device, because these functions will be entry points to the device.
6321
6322 if (CGM.getLangOpts().OpenMPIsDevice) {
6323 OutlinedFnID = llvm::ConstantExpr::getBitCast(OutlinedFn, CGM.Int8PtrTy);
Alexey Bataev9a700172018-05-08 14:16:57 +00006324 OutlinedFn->setLinkage(llvm::GlobalValue::WeakAnyLinkage);
Rafael Espindolacbca4872018-01-11 22:15:12 +00006325 OutlinedFn->setDSOLocal(false);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006326 } else {
Alexey Bataevc15ea702018-05-09 18:02:37 +00006327 std::string Name = getName({EntryFnName, "region_id"});
Samuel Antaoee8fb302016-01-06 13:42:12 +00006328 OutlinedFnID = new llvm::GlobalVariable(
6329 CGM.getModule(), CGM.Int8Ty, /*isConstant=*/true,
Alexey Bataev9a700172018-05-08 14:16:57 +00006330 llvm::GlobalValue::WeakAnyLinkage,
Alexey Bataev18fa2322018-05-02 14:20:50 +00006331 llvm::Constant::getNullValue(CGM.Int8Ty), Name);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006332 }
Samuel Antaoee8fb302016-01-06 13:42:12 +00006333
6334 // Register the information for the entry associated with this target region.
6335 OffloadEntriesInfoManager.registerTargetRegionEntryInfo(
Samuel Antaof83efdb2017-01-05 16:02:49 +00006336 DeviceID, FileID, ParentName, Line, OutlinedFn, OutlinedFnID,
Alexey Bataev03f270c2018-03-30 18:31:07 +00006337 OffloadEntriesInfoManagerTy::OMPTargetRegionEntryTargetRegion);
Samuel Antaobed3c462015-10-02 16:14:20 +00006338}
6339
Carlo Bertolli6eee9062016-04-29 01:37:30 +00006340/// discard all CompoundStmts intervening between two constructs
6341static const Stmt *ignoreCompoundStmts(const Stmt *Body) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006342 while (const auto *CS = dyn_cast_or_null<CompoundStmt>(Body))
Carlo Bertolli6eee9062016-04-29 01:37:30 +00006343 Body = CS->body_front();
6344
6345 return Body;
6346}
6347
Arpith Chacko Jacob33c849a2017-01-25 00:57:16 +00006348/// Emit the number of teams for a target directive. Inspect the num_teams
6349/// clause associated with a teams construct combined or closely nested
6350/// with the target directive.
6351///
6352/// Emit a team of size one for directives such as 'target parallel' that
6353/// have no associated teams construct.
6354///
6355/// Otherwise, return nullptr.
Samuel Antaob68e2db2016-03-03 16:20:23 +00006356static llvm::Value *
Arpith Chacko Jacob33c849a2017-01-25 00:57:16 +00006357emitNumTeamsForTargetDirective(CGOpenMPRuntime &OMPRuntime,
6358 CodeGenFunction &CGF,
6359 const OMPExecutableDirective &D) {
Samuel Antaob68e2db2016-03-03 16:20:23 +00006360 assert(!CGF.getLangOpts().OpenMPIsDevice && "Clauses associated with the "
6361 "teams directive expected to be "
6362 "emitted only for the host!");
6363
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006364 CGBuilderTy &Bld = CGF.Builder;
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00006365
6366 // If the target directive is combined with a teams directive:
6367 // Return the value in the num_teams clause, if any.
6368 // Otherwise, return 0 to denote the runtime default.
6369 if (isOpenMPTeamsDirective(D.getDirectiveKind())) {
6370 if (const auto *NumTeamsClause = D.getSingleClause<OMPNumTeamsClause>()) {
6371 CodeGenFunction::RunCleanupsScope NumTeamsScope(CGF);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006372 llvm::Value *NumTeams = CGF.EmitScalarExpr(NumTeamsClause->getNumTeams(),
6373 /*IgnoreResultAssign*/ true);
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00006374 return Bld.CreateIntCast(NumTeams, CGF.Int32Ty,
6375 /*IsSigned=*/true);
6376 }
6377
6378 // The default value is 0.
6379 return Bld.getInt32(0);
6380 }
6381
Arpith Chacko Jacob33c849a2017-01-25 00:57:16 +00006382 // If the target directive is combined with a parallel directive but not a
6383 // teams directive, start one team.
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00006384 if (isOpenMPParallelDirective(D.getDirectiveKind()))
6385 return Bld.getInt32(1);
Samuel Antaob68e2db2016-03-03 16:20:23 +00006386
6387 // If the current target region has a teams region enclosed, we need to get
6388 // the number of teams to pass to the runtime function call. This is done
6389 // by generating the expression in a inlined region. This is required because
6390 // the expression is captured in the enclosing target environment when the
6391 // teams directive is not combined with target.
6392
Alexey Bataev475a7442018-01-12 19:39:11 +00006393 const CapturedStmt &CS = *D.getCapturedStmt(OMPD_target);
Samuel Antaob68e2db2016-03-03 16:20:23 +00006394
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006395 if (const auto *TeamsDir = dyn_cast_or_null<OMPExecutableDirective>(
Carlo Bertolli6eee9062016-04-29 01:37:30 +00006396 ignoreCompoundStmts(CS.getCapturedStmt()))) {
Alexey Bataev50a1c782017-12-01 21:31:08 +00006397 if (isOpenMPTeamsDirective(TeamsDir->getDirectiveKind())) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006398 if (const auto *NTE = TeamsDir->getSingleClause<OMPNumTeamsClause>()) {
Alexey Bataev50a1c782017-12-01 21:31:08 +00006399 CGOpenMPInnerExprInfo CGInfo(CGF, CS);
6400 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CGInfo);
6401 llvm::Value *NumTeams = CGF.EmitScalarExpr(NTE->getNumTeams());
6402 return Bld.CreateIntCast(NumTeams, CGF.Int32Ty,
6403 /*IsSigned=*/true);
6404 }
Samuel Antaob68e2db2016-03-03 16:20:23 +00006405
Alexey Bataev50a1c782017-12-01 21:31:08 +00006406 // If we have an enclosed teams directive but no num_teams clause we use
6407 // the default value 0.
6408 return Bld.getInt32(0);
6409 }
Samuel Antaob68e2db2016-03-03 16:20:23 +00006410 }
6411
6412 // No teams associated with the directive.
6413 return nullptr;
6414}
6415
Arpith Chacko Jacob33c849a2017-01-25 00:57:16 +00006416/// Emit the number of threads for a target directive. Inspect the
6417/// thread_limit clause associated with a teams construct combined or closely
6418/// nested with the target directive.
6419///
6420/// Emit the num_threads clause for directives such as 'target parallel' that
6421/// have no associated teams construct.
6422///
6423/// Otherwise, return nullptr.
Samuel Antaob68e2db2016-03-03 16:20:23 +00006424static llvm::Value *
Arpith Chacko Jacob33c849a2017-01-25 00:57:16 +00006425emitNumThreadsForTargetDirective(CGOpenMPRuntime &OMPRuntime,
6426 CodeGenFunction &CGF,
6427 const OMPExecutableDirective &D) {
Samuel Antaob68e2db2016-03-03 16:20:23 +00006428 assert(!CGF.getLangOpts().OpenMPIsDevice && "Clauses associated with the "
6429 "teams directive expected to be "
6430 "emitted only for the host!");
6431
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006432 CGBuilderTy &Bld = CGF.Builder;
Arpith Chacko Jacob33c849a2017-01-25 00:57:16 +00006433
6434 //
6435 // If the target directive is combined with a teams directive:
6436 // Return the value in the thread_limit clause, if any.
6437 //
6438 // If the target directive is combined with a parallel directive:
6439 // Return the value in the num_threads clause, if any.
6440 //
6441 // If both clauses are set, select the minimum of the two.
6442 //
6443 // If neither teams or parallel combined directives set the number of threads
6444 // in a team, return 0 to denote the runtime default.
6445 //
6446 // If this is not a teams directive return nullptr.
6447
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00006448 if (isOpenMPTeamsDirective(D.getDirectiveKind()) ||
6449 isOpenMPParallelDirective(D.getDirectiveKind())) {
Arpith Chacko Jacob33c849a2017-01-25 00:57:16 +00006450 llvm::Value *DefaultThreadLimitVal = Bld.getInt32(0);
6451 llvm::Value *NumThreadsVal = nullptr;
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00006452 llvm::Value *ThreadLimitVal = nullptr;
6453
6454 if (const auto *ThreadLimitClause =
6455 D.getSingleClause<OMPThreadLimitClause>()) {
6456 CodeGenFunction::RunCleanupsScope ThreadLimitScope(CGF);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006457 llvm::Value *ThreadLimit =
6458 CGF.EmitScalarExpr(ThreadLimitClause->getThreadLimit(),
6459 /*IgnoreResultAssign*/ true);
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00006460 ThreadLimitVal = Bld.CreateIntCast(ThreadLimit, CGF.Int32Ty,
6461 /*IsSigned=*/true);
6462 }
Arpith Chacko Jacob33c849a2017-01-25 00:57:16 +00006463
6464 if (const auto *NumThreadsClause =
6465 D.getSingleClause<OMPNumThreadsClause>()) {
6466 CodeGenFunction::RunCleanupsScope NumThreadsScope(CGF);
6467 llvm::Value *NumThreads =
6468 CGF.EmitScalarExpr(NumThreadsClause->getNumThreads(),
6469 /*IgnoreResultAssign*/ true);
6470 NumThreadsVal =
6471 Bld.CreateIntCast(NumThreads, CGF.Int32Ty, /*IsSigned=*/true);
6472 }
6473
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00006474 // Select the lesser of thread_limit and num_threads.
6475 if (NumThreadsVal)
6476 ThreadLimitVal = ThreadLimitVal
6477 ? Bld.CreateSelect(Bld.CreateICmpSLT(NumThreadsVal,
6478 ThreadLimitVal),
6479 NumThreadsVal, ThreadLimitVal)
6480 : NumThreadsVal;
Samuel Antaob68e2db2016-03-03 16:20:23 +00006481
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00006482 // Set default value passed to the runtime if either teams or a target
6483 // parallel type directive is found but no clause is specified.
6484 if (!ThreadLimitVal)
6485 ThreadLimitVal = DefaultThreadLimitVal;
6486
6487 return ThreadLimitVal;
6488 }
Arpith Chacko Jacob86f9e462017-01-25 01:45:59 +00006489
Samuel Antaob68e2db2016-03-03 16:20:23 +00006490 // If the current target region has a teams region enclosed, we need to get
6491 // the thread limit to pass to the runtime function call. This is done
6492 // by generating the expression in a inlined region. This is required because
6493 // the expression is captured in the enclosing target environment when the
6494 // teams directive is not combined with target.
6495
Alexey Bataev475a7442018-01-12 19:39:11 +00006496 const CapturedStmt &CS = *D.getCapturedStmt(OMPD_target);
Samuel Antaob68e2db2016-03-03 16:20:23 +00006497
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006498 if (const auto *TeamsDir = dyn_cast_or_null<OMPExecutableDirective>(
Carlo Bertolli6eee9062016-04-29 01:37:30 +00006499 ignoreCompoundStmts(CS.getCapturedStmt()))) {
Alexey Bataev50a1c782017-12-01 21:31:08 +00006500 if (isOpenMPTeamsDirective(TeamsDir->getDirectiveKind())) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006501 if (const auto *TLE = TeamsDir->getSingleClause<OMPThreadLimitClause>()) {
Alexey Bataev50a1c782017-12-01 21:31:08 +00006502 CGOpenMPInnerExprInfo CGInfo(CGF, CS);
6503 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CGInfo);
6504 llvm::Value *ThreadLimit = CGF.EmitScalarExpr(TLE->getThreadLimit());
6505 return CGF.Builder.CreateIntCast(ThreadLimit, CGF.Int32Ty,
6506 /*IsSigned=*/true);
6507 }
Samuel Antaob68e2db2016-03-03 16:20:23 +00006508
Alexey Bataev50a1c782017-12-01 21:31:08 +00006509 // If we have an enclosed teams directive but no thread_limit clause we
6510 // use the default value 0.
6511 return CGF.Builder.getInt32(0);
6512 }
Samuel Antaob68e2db2016-03-03 16:20:23 +00006513 }
6514
6515 // No teams associated with the directive.
6516 return nullptr;
6517}
6518
Samuel Antao86ace552016-04-27 22:40:57 +00006519namespace {
Alexey Bataevb3638132018-07-19 16:34:13 +00006520LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE();
6521
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006522// Utility to handle information from clauses associated with a given
Samuel Antao86ace552016-04-27 22:40:57 +00006523// construct that use mappable expressions (e.g. 'map' clause, 'to' clause).
6524// It provides a convenient interface to obtain the information and generate
6525// code for that information.
6526class MappableExprsHandler {
6527public:
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006528 /// Values for bit flags used to specify the mapping type for
Samuel Antao86ace552016-04-27 22:40:57 +00006529 /// offloading.
Alexey Bataevb3638132018-07-19 16:34:13 +00006530 enum OpenMPOffloadMappingFlags : uint64_t {
6531 /// No flags
6532 OMP_MAP_NONE = 0x0,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006533 /// Allocate memory on the device and move data from host to device.
Samuel Antao86ace552016-04-27 22:40:57 +00006534 OMP_MAP_TO = 0x01,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006535 /// Allocate memory on the device and move data from device to host.
Samuel Antao86ace552016-04-27 22:40:57 +00006536 OMP_MAP_FROM = 0x02,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006537 /// Always perform the requested mapping action on the element, even
Samuel Antao86ace552016-04-27 22:40:57 +00006538 /// if it was already mapped before.
6539 OMP_MAP_ALWAYS = 0x04,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006540 /// Delete the element from the device environment, ignoring the
Samuel Antao86ace552016-04-27 22:40:57 +00006541 /// current reference count associated with the element.
Samuel Antao6782e942016-05-26 16:48:10 +00006542 OMP_MAP_DELETE = 0x08,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006543 /// The element being mapped is a pointer-pointee pair; both the
George Rokos065755d2017-11-07 18:27:04 +00006544 /// pointer and the pointee should be mapped.
6545 OMP_MAP_PTR_AND_OBJ = 0x10,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006546 /// This flags signals that the base address of an entry should be
George Rokos065755d2017-11-07 18:27:04 +00006547 /// passed to the target kernel as an argument.
6548 OMP_MAP_TARGET_PARAM = 0x20,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006549 /// Signal that the runtime library has to return the device pointer
George Rokos065755d2017-11-07 18:27:04 +00006550 /// in the current position for the data being mapped. Used when we have the
6551 /// use_device_ptr clause.
6552 OMP_MAP_RETURN_PARAM = 0x40,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006553 /// This flag signals that the reference being passed is a pointer to
Samuel Antaod486f842016-05-26 16:53:38 +00006554 /// private data.
George Rokos065755d2017-11-07 18:27:04 +00006555 OMP_MAP_PRIVATE = 0x80,
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006556 /// Pass the element to the device by value.
George Rokos065755d2017-11-07 18:27:04 +00006557 OMP_MAP_LITERAL = 0x100,
Alexey Bataevf47c4b42017-09-26 13:47:31 +00006558 /// Implicit map
6559 OMP_MAP_IMPLICIT = 0x200,
Alexey Bataevb3638132018-07-19 16:34:13 +00006560 /// The 16 MSBs of the flags indicate whether the entry is member of some
6561 /// struct/class.
6562 OMP_MAP_MEMBER_OF = 0xffff000000000000,
6563 LLVM_MARK_AS_BITMASK_ENUM(/* LargestFlag = */ OMP_MAP_MEMBER_OF),
Samuel Antao86ace552016-04-27 22:40:57 +00006564 };
6565
Samuel Antaocc10b852016-07-28 14:23:26 +00006566 /// Class that associates information with a base pointer to be passed to the
6567 /// runtime library.
6568 class BasePointerInfo {
6569 /// The base pointer.
6570 llvm::Value *Ptr = nullptr;
6571 /// The base declaration that refers to this device pointer, or null if
6572 /// there is none.
6573 const ValueDecl *DevPtrDecl = nullptr;
6574
6575 public:
6576 BasePointerInfo(llvm::Value *Ptr, const ValueDecl *DevPtrDecl = nullptr)
6577 : Ptr(Ptr), DevPtrDecl(DevPtrDecl) {}
6578 llvm::Value *operator*() const { return Ptr; }
6579 const ValueDecl *getDevicePtrDecl() const { return DevPtrDecl; }
6580 void setDevicePtrDecl(const ValueDecl *D) { DevPtrDecl = D; }
6581 };
6582
Alexey Bataevb3638132018-07-19 16:34:13 +00006583 using MapBaseValuesArrayTy = SmallVector<BasePointerInfo, 4>;
6584 using MapValuesArrayTy = SmallVector<llvm::Value *, 4>;
6585 using MapFlagsArrayTy = SmallVector<OpenMPOffloadMappingFlags, 4>;
6586
6587 /// Map between a struct and the its lowest & highest elements which have been
6588 /// mapped.
6589 /// [ValueDecl *] --> {LE(FieldIndex, Pointer),
6590 /// HE(FieldIndex, Pointer)}
6591 struct StructRangeInfoTy {
6592 std::pair<unsigned /*FieldIndex*/, Address /*Pointer*/> LowestElem = {
6593 0, Address::invalid()};
6594 std::pair<unsigned /*FieldIndex*/, Address /*Pointer*/> HighestElem = {
6595 0, Address::invalid()};
6596 Address Base = Address::invalid();
6597 };
Samuel Antao86ace552016-04-27 22:40:57 +00006598
6599private:
Alexey Bataevb3638132018-07-19 16:34:13 +00006600 /// Kind that defines how a device pointer has to be returned.
6601 struct MapInfo {
6602 OMPClauseMappableExprCommon::MappableExprComponentListRef Components;
6603 OpenMPMapClauseKind MapType = OMPC_MAP_unknown;
6604 OpenMPMapClauseKind MapTypeModifier = OMPC_MAP_unknown;
6605 bool ReturnDevicePointer = false;
6606 bool IsImplicit = false;
6607
6608 MapInfo() = default;
6609 MapInfo(
6610 OMPClauseMappableExprCommon::MappableExprComponentListRef Components,
6611 OpenMPMapClauseKind MapType, OpenMPMapClauseKind MapTypeModifier,
6612 bool ReturnDevicePointer, bool IsImplicit)
6613 : Components(Components), MapType(MapType),
6614 MapTypeModifier(MapTypeModifier),
6615 ReturnDevicePointer(ReturnDevicePointer), IsImplicit(IsImplicit) {}
6616 };
6617
6618 /// If use_device_ptr is used on a pointer which is a struct member and there
6619 /// is no map information about it, then emission of that entry is deferred
6620 /// until the whole struct has been processed.
6621 struct DeferredDevicePtrEntryTy {
6622 const Expr *IE = nullptr;
6623 const ValueDecl *VD = nullptr;
6624
6625 DeferredDevicePtrEntryTy(const Expr *IE, const ValueDecl *VD)
6626 : IE(IE), VD(VD) {}
6627 };
6628
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006629 /// Directive from where the map clauses were extracted.
Samuel Antao44bcdb32016-07-28 15:31:29 +00006630 const OMPExecutableDirective &CurDir;
Samuel Antao86ace552016-04-27 22:40:57 +00006631
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006632 /// Function the directive is being generated for.
Samuel Antao86ace552016-04-27 22:40:57 +00006633 CodeGenFunction &CGF;
6634
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006635 /// Set of all first private variables in the current directive.
Samuel Antaod486f842016-05-26 16:53:38 +00006636 llvm::SmallPtrSet<const VarDecl *, 8> FirstPrivateDecls;
6637
Samuel Antao6890b092016-07-28 14:25:09 +00006638 /// Map between device pointer declarations and their expression components.
6639 /// The key value for declarations in 'this' is null.
6640 llvm::DenseMap<
6641 const ValueDecl *,
6642 SmallVector<OMPClauseMappableExprCommon::MappableExprComponentListRef, 4>>
6643 DevPointersMap;
6644
Samuel Antao86ace552016-04-27 22:40:57 +00006645 llvm::Value *getExprTypeSize(const Expr *E) const {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006646 QualType ExprTy = E->getType().getCanonicalType();
Samuel Antao86ace552016-04-27 22:40:57 +00006647
6648 // Reference types are ignored for mapping purposes.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006649 if (const auto *RefTy = ExprTy->getAs<ReferenceType>())
Samuel Antao86ace552016-04-27 22:40:57 +00006650 ExprTy = RefTy->getPointeeType().getCanonicalType();
6651
6652 // Given that an array section is considered a built-in type, we need to
6653 // do the calculation based on the length of the section instead of relying
6654 // on CGF.getTypeSize(E->getType()).
6655 if (const auto *OAE = dyn_cast<OMPArraySectionExpr>(E)) {
6656 QualType BaseTy = OMPArraySectionExpr::getBaseOriginalType(
6657 OAE->getBase()->IgnoreParenImpCasts())
6658 .getCanonicalType();
6659
6660 // If there is no length associated with the expression, that means we
6661 // are using the whole length of the base.
6662 if (!OAE->getLength() && OAE->getColonLoc().isValid())
6663 return CGF.getTypeSize(BaseTy);
6664
6665 llvm::Value *ElemSize;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006666 if (const auto *PTy = BaseTy->getAs<PointerType>()) {
Samuel Antao86ace552016-04-27 22:40:57 +00006667 ElemSize = CGF.getTypeSize(PTy->getPointeeType().getCanonicalType());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006668 } else {
6669 const auto *ATy = cast<ArrayType>(BaseTy.getTypePtr());
Samuel Antao86ace552016-04-27 22:40:57 +00006670 assert(ATy && "Expecting array type if not a pointer type.");
6671 ElemSize = CGF.getTypeSize(ATy->getElementType().getCanonicalType());
6672 }
6673
6674 // If we don't have a length at this point, that is because we have an
6675 // array section with a single element.
6676 if (!OAE->getLength())
6677 return ElemSize;
6678
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006679 llvm::Value *LengthVal = CGF.EmitScalarExpr(OAE->getLength());
Samuel Antao86ace552016-04-27 22:40:57 +00006680 LengthVal =
6681 CGF.Builder.CreateIntCast(LengthVal, CGF.SizeTy, /*isSigned=*/false);
6682 return CGF.Builder.CreateNUWMul(LengthVal, ElemSize);
6683 }
6684 return CGF.getTypeSize(ExprTy);
6685 }
6686
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006687 /// Return the corresponding bits for a given map clause modifier. Add
Samuel Antao86ace552016-04-27 22:40:57 +00006688 /// a flag marking the map as a pointer if requested. Add a flag marking the
Samuel Antao6782e942016-05-26 16:48:10 +00006689 /// map as the first one of a series of maps that relate to the same map
6690 /// expression.
Alexey Bataevb3638132018-07-19 16:34:13 +00006691 OpenMPOffloadMappingFlags getMapTypeBits(OpenMPMapClauseKind MapType,
6692 OpenMPMapClauseKind MapTypeModifier,
6693 bool IsImplicit, bool AddPtrFlag,
6694 bool AddIsTargetParamFlag) const {
6695 OpenMPOffloadMappingFlags Bits =
6696 IsImplicit ? OMP_MAP_IMPLICIT : OMP_MAP_NONE;
Samuel Antao86ace552016-04-27 22:40:57 +00006697 switch (MapType) {
6698 case OMPC_MAP_alloc:
Samuel Antao6782e942016-05-26 16:48:10 +00006699 case OMPC_MAP_release:
6700 // alloc and release is the default behavior in the runtime library, i.e.
6701 // if we don't pass any bits alloc/release that is what the runtime is
6702 // going to do. Therefore, we don't need to signal anything for these two
6703 // type modifiers.
Samuel Antao86ace552016-04-27 22:40:57 +00006704 break;
6705 case OMPC_MAP_to:
Alexey Bataevb3638132018-07-19 16:34:13 +00006706 Bits |= OMP_MAP_TO;
Samuel Antao86ace552016-04-27 22:40:57 +00006707 break;
6708 case OMPC_MAP_from:
Alexey Bataevb3638132018-07-19 16:34:13 +00006709 Bits |= OMP_MAP_FROM;
Samuel Antao86ace552016-04-27 22:40:57 +00006710 break;
6711 case OMPC_MAP_tofrom:
Alexey Bataevb3638132018-07-19 16:34:13 +00006712 Bits |= OMP_MAP_TO | OMP_MAP_FROM;
Samuel Antao86ace552016-04-27 22:40:57 +00006713 break;
6714 case OMPC_MAP_delete:
Alexey Bataevb3638132018-07-19 16:34:13 +00006715 Bits |= OMP_MAP_DELETE;
Samuel Antao86ace552016-04-27 22:40:57 +00006716 break;
Alexey Bataevb3638132018-07-19 16:34:13 +00006717 case OMPC_MAP_always:
6718 case OMPC_MAP_unknown:
Samuel Antao86ace552016-04-27 22:40:57 +00006719 llvm_unreachable("Unexpected map type!");
Samuel Antao86ace552016-04-27 22:40:57 +00006720 }
6721 if (AddPtrFlag)
George Rokos065755d2017-11-07 18:27:04 +00006722 Bits |= OMP_MAP_PTR_AND_OBJ;
6723 if (AddIsTargetParamFlag)
6724 Bits |= OMP_MAP_TARGET_PARAM;
Samuel Antao86ace552016-04-27 22:40:57 +00006725 if (MapTypeModifier == OMPC_MAP_always)
6726 Bits |= OMP_MAP_ALWAYS;
6727 return Bits;
6728 }
6729
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006730 /// Return true if the provided expression is a final array section. A
Samuel Antao86ace552016-04-27 22:40:57 +00006731 /// final array section, is one whose length can't be proved to be one.
6732 bool isFinalArraySectionExpression(const Expr *E) const {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006733 const auto *OASE = dyn_cast<OMPArraySectionExpr>(E);
Samuel Antao86ace552016-04-27 22:40:57 +00006734
6735 // It is not an array section and therefore not a unity-size one.
6736 if (!OASE)
6737 return false;
6738
6739 // An array section with no colon always refer to a single element.
6740 if (OASE->getColonLoc().isInvalid())
6741 return false;
6742
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006743 const Expr *Length = OASE->getLength();
Samuel Antao86ace552016-04-27 22:40:57 +00006744
6745 // If we don't have a length we have to check if the array has size 1
6746 // for this dimension. Also, we should always expect a length if the
6747 // base type is pointer.
6748 if (!Length) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00006749 QualType BaseQTy = OMPArraySectionExpr::getBaseOriginalType(
6750 OASE->getBase()->IgnoreParenImpCasts())
6751 .getCanonicalType();
6752 if (const auto *ATy = dyn_cast<ConstantArrayType>(BaseQTy.getTypePtr()))
Samuel Antao86ace552016-04-27 22:40:57 +00006753 return ATy->getSize().getSExtValue() != 1;
6754 // If we don't have a constant dimension length, we have to consider
6755 // the current section as having any size, so it is not necessarily
6756 // unitary. If it happen to be unity size, that's user fault.
6757 return true;
6758 }
6759
6760 // Check if the length evaluates to 1.
6761 llvm::APSInt ConstLength;
6762 if (!Length->EvaluateAsInt(ConstLength, CGF.getContext()))
6763 return true; // Can have more that size 1.
6764
6765 return ConstLength.getSExtValue() != 1;
6766 }
6767
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00006768 /// Generate the base pointers, section pointers, sizes and map type
Samuel Antao86ace552016-04-27 22:40:57 +00006769 /// bits for the provided map type, map modifier, and expression components.
6770 /// \a IsFirstComponent should be set to true if the provided set of
6771 /// components is the first associated with a capture.
6772 void generateInfoForComponentList(
6773 OpenMPMapClauseKind MapType, OpenMPMapClauseKind MapTypeModifier,
6774 OMPClauseMappableExprCommon::MappableExprComponentListRef Components,
Samuel Antaocc10b852016-07-28 14:23:26 +00006775 MapBaseValuesArrayTy &BasePointers, MapValuesArrayTy &Pointers,
Samuel Antao86ace552016-04-27 22:40:57 +00006776 MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types,
Alexey Bataevb3638132018-07-19 16:34:13 +00006777 StructRangeInfoTy &PartialStruct, bool IsFirstComponentList,
6778 bool IsImplicit) const {
Samuel Antao86ace552016-04-27 22:40:57 +00006779 // The following summarizes what has to be generated for each map and the
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00006780 // types below. The generated information is expressed in this order:
Samuel Antao86ace552016-04-27 22:40:57 +00006781 // base pointer, section pointer, size, flags
6782 // (to add to the ones that come from the map type and modifier).
6783 //
6784 // double d;
6785 // int i[100];
6786 // float *p;
6787 //
6788 // struct S1 {
6789 // int i;
6790 // float f[50];
6791 // }
6792 // struct S2 {
6793 // int i;
6794 // float f[50];
6795 // S1 s;
6796 // double *p;
6797 // struct S2 *ps;
6798 // }
6799 // S2 s;
6800 // S2 *ps;
6801 //
6802 // map(d)
Alexey Bataevb3638132018-07-19 16:34:13 +00006803 // &d, &d, sizeof(double), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006804 //
6805 // map(i)
Alexey Bataevb3638132018-07-19 16:34:13 +00006806 // &i, &i, 100*sizeof(int), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006807 //
6808 // map(i[1:23])
Alexey Bataevb3638132018-07-19 16:34:13 +00006809 // &i(=&i[0]), &i[1], 23*sizeof(int), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006810 //
6811 // map(p)
Alexey Bataevb3638132018-07-19 16:34:13 +00006812 // &p, &p, sizeof(float*), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006813 //
6814 // map(p[1:24])
Alexey Bataevb3638132018-07-19 16:34:13 +00006815 // p, &p[1], 24*sizeof(float), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006816 //
6817 // map(s)
Alexey Bataevb3638132018-07-19 16:34:13 +00006818 // &s, &s, sizeof(S2), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006819 //
6820 // map(s.i)
Alexey Bataevb3638132018-07-19 16:34:13 +00006821 // &s, &(s.i), sizeof(int), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006822 //
6823 // map(s.s.f)
Alexey Bataevb3638132018-07-19 16:34:13 +00006824 // &s, &(s.s.f[0]), 50*sizeof(float), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006825 //
6826 // map(s.p)
Alexey Bataevb3638132018-07-19 16:34:13 +00006827 // &s, &(s.p), sizeof(double*), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006828 //
Alexey Bataevb3638132018-07-19 16:34:13 +00006829 // map(to: s.p[:22])
6830 // &s, &(s.p), sizeof(double*), TARGET_PARAM (*)
6831 // &s, &(s.p), sizeof(double*), MEMBER_OF(1) (**)
6832 // &(s.p), &(s.p[0]), 22*sizeof(double),
6833 // MEMBER_OF(1) | PTR_AND_OBJ | TO (***)
6834 // (*) alloc space for struct members, only this is a target parameter
6835 // (**) map the pointer (nothing to be mapped in this example) (the compiler
6836 // optimizes this entry out, same in the examples below)
6837 // (***) map the pointee (map: to)
Samuel Antao86ace552016-04-27 22:40:57 +00006838 //
6839 // map(s.ps)
Alexey Bataevb3638132018-07-19 16:34:13 +00006840 // &s, &(s.ps), sizeof(S2*), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006841 //
Alexey Bataevb3638132018-07-19 16:34:13 +00006842 // map(from: s.ps->s.i)
6843 // &s, &(s.ps), sizeof(S2*), TARGET_PARAM
6844 // &s, &(s.ps), sizeof(S2*), MEMBER_OF(1)
6845 // &(s.ps), &(s.ps->s.i), sizeof(int), MEMBER_OF(1) | PTR_AND_OBJ | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006846 //
Alexey Bataevb3638132018-07-19 16:34:13 +00006847 // map(to: s.ps->ps)
6848 // &s, &(s.ps), sizeof(S2*), TARGET_PARAM
6849 // &s, &(s.ps), sizeof(S2*), MEMBER_OF(1)
6850 // &(s.ps), &(s.ps->ps), sizeof(S2*), MEMBER_OF(1) | PTR_AND_OBJ | TO
Samuel Antao86ace552016-04-27 22:40:57 +00006851 //
6852 // map(s.ps->ps->ps)
Alexey Bataevb3638132018-07-19 16:34:13 +00006853 // &s, &(s.ps), sizeof(S2*), TARGET_PARAM
6854 // &s, &(s.ps), sizeof(S2*), MEMBER_OF(1)
6855 // &(s.ps), &(s.ps->ps), sizeof(S2*), MEMBER_OF(1) | PTR_AND_OBJ
6856 // &(s.ps->ps), &(s.ps->ps->ps), sizeof(S2*), PTR_AND_OBJ | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006857 //
Alexey Bataevb3638132018-07-19 16:34:13 +00006858 // map(to: s.ps->ps->s.f[:22])
6859 // &s, &(s.ps), sizeof(S2*), TARGET_PARAM
6860 // &s, &(s.ps), sizeof(S2*), MEMBER_OF(1)
6861 // &(s.ps), &(s.ps->ps), sizeof(S2*), MEMBER_OF(1) | PTR_AND_OBJ
6862 // &(s.ps->ps), &(s.ps->ps->s.f[0]), 22*sizeof(float), PTR_AND_OBJ | TO
Samuel Antao86ace552016-04-27 22:40:57 +00006863 //
6864 // map(ps)
Alexey Bataevb3638132018-07-19 16:34:13 +00006865 // &ps, &ps, sizeof(S2*), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006866 //
6867 // map(ps->i)
Alexey Bataevb3638132018-07-19 16:34:13 +00006868 // ps, &(ps->i), sizeof(int), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006869 //
6870 // map(ps->s.f)
Alexey Bataevb3638132018-07-19 16:34:13 +00006871 // ps, &(ps->s.f[0]), 50*sizeof(float), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006872 //
Alexey Bataevb3638132018-07-19 16:34:13 +00006873 // map(from: ps->p)
6874 // ps, &(ps->p), sizeof(double*), TARGET_PARAM | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006875 //
Alexey Bataevb3638132018-07-19 16:34:13 +00006876 // map(to: ps->p[:22])
6877 // ps, &(ps->p), sizeof(double*), TARGET_PARAM
6878 // ps, &(ps->p), sizeof(double*), MEMBER_OF(1)
6879 // &(ps->p), &(ps->p[0]), 22*sizeof(double), MEMBER_OF(1) | PTR_AND_OBJ | TO
Samuel Antao86ace552016-04-27 22:40:57 +00006880 //
6881 // map(ps->ps)
Alexey Bataevb3638132018-07-19 16:34:13 +00006882 // ps, &(ps->ps), sizeof(S2*), TARGET_PARAM | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006883 //
Alexey Bataevb3638132018-07-19 16:34:13 +00006884 // map(from: ps->ps->s.i)
6885 // ps, &(ps->ps), sizeof(S2*), TARGET_PARAM
6886 // ps, &(ps->ps), sizeof(S2*), MEMBER_OF(1)
6887 // &(ps->ps), &(ps->ps->s.i), sizeof(int), MEMBER_OF(1) | PTR_AND_OBJ | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006888 //
Alexey Bataevb3638132018-07-19 16:34:13 +00006889 // map(from: ps->ps->ps)
6890 // ps, &(ps->ps), sizeof(S2*), TARGET_PARAM
6891 // ps, &(ps->ps), sizeof(S2*), MEMBER_OF(1)
6892 // &(ps->ps), &(ps->ps->ps), sizeof(S2*), MEMBER_OF(1) | PTR_AND_OBJ | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006893 //
6894 // map(ps->ps->ps->ps)
Alexey Bataevb3638132018-07-19 16:34:13 +00006895 // ps, &(ps->ps), sizeof(S2*), TARGET_PARAM
6896 // ps, &(ps->ps), sizeof(S2*), MEMBER_OF(1)
6897 // &(ps->ps), &(ps->ps->ps), sizeof(S2*), MEMBER_OF(1) | PTR_AND_OBJ
6898 // &(ps->ps->ps), &(ps->ps->ps->ps), sizeof(S2*), PTR_AND_OBJ | TO | FROM
Samuel Antao86ace552016-04-27 22:40:57 +00006899 //
Alexey Bataevb3638132018-07-19 16:34:13 +00006900 // map(to: ps->ps->ps->s.f[:22])
6901 // ps, &(ps->ps), sizeof(S2*), TARGET_PARAM
6902 // ps, &(ps->ps), sizeof(S2*), MEMBER_OF(1)
6903 // &(ps->ps), &(ps->ps->ps), sizeof(S2*), MEMBER_OF(1) | PTR_AND_OBJ
6904 // &(ps->ps->ps), &(ps->ps->ps->s.f[0]), 22*sizeof(float), PTR_AND_OBJ | TO
6905 //
6906 // map(to: s.f[:22]) map(from: s.p[:33])
6907 // &s, &(s.f[0]), 50*sizeof(float) + sizeof(struct S1) +
6908 // sizeof(double*) (**), TARGET_PARAM
6909 // &s, &(s.f[0]), 22*sizeof(float), MEMBER_OF(1) | TO
6910 // &s, &(s.p), sizeof(double*), MEMBER_OF(1)
6911 // &(s.p), &(s.p[0]), 33*sizeof(double), MEMBER_OF(1) | PTR_AND_OBJ | FROM
6912 // (*) allocate contiguous space needed to fit all mapped members even if
6913 // we allocate space for members not mapped (in this example,
6914 // s.f[22..49] and s.s are not mapped, yet we must allocate space for
6915 // them as well because they fall between &s.f[0] and &s.p)
6916 //
6917 // map(from: s.f[:22]) map(to: ps->p[:33])
6918 // &s, &(s.f[0]), 22*sizeof(float), TARGET_PARAM | FROM
6919 // ps, &(ps->p), sizeof(S2*), TARGET_PARAM
6920 // ps, &(ps->p), sizeof(double*), MEMBER_OF(2) (*)
6921 // &(ps->p), &(ps->p[0]), 33*sizeof(double), MEMBER_OF(2) | PTR_AND_OBJ | TO
6922 // (*) the struct this entry pertains to is the 2nd element in the list of
6923 // arguments, hence MEMBER_OF(2)
6924 //
6925 // map(from: s.f[:22], s.s) map(to: ps->p[:33])
6926 // &s, &(s.f[0]), 50*sizeof(float) + sizeof(struct S1), TARGET_PARAM
6927 // &s, &(s.f[0]), 22*sizeof(float), MEMBER_OF(1) | FROM
6928 // &s, &(s.s), sizeof(struct S1), MEMBER_OF(1) | FROM
6929 // ps, &(ps->p), sizeof(S2*), TARGET_PARAM
6930 // ps, &(ps->p), sizeof(double*), MEMBER_OF(4) (*)
6931 // &(ps->p), &(ps->p[0]), 33*sizeof(double), MEMBER_OF(4) | PTR_AND_OBJ | TO
6932 // (*) the struct this entry pertains to is the 4th element in the list
6933 // of arguments, hence MEMBER_OF(4)
Samuel Antao86ace552016-04-27 22:40:57 +00006934
6935 // Track if the map information being generated is the first for a capture.
6936 bool IsCaptureFirstInfo = IsFirstComponentList;
Alexey Bataev92327c52018-03-26 16:40:55 +00006937 bool IsLink = false; // Is this variable a "declare target link"?
Samuel Antao86ace552016-04-27 22:40:57 +00006938
6939 // Scan the components from the base to the complete expression.
6940 auto CI = Components.rbegin();
6941 auto CE = Components.rend();
6942 auto I = CI;
6943
6944 // Track if the map information being generated is the first for a list of
6945 // components.
6946 bool IsExpressionFirstInfo = true;
Alexey Bataevb3638132018-07-19 16:34:13 +00006947 Address BP = Address::invalid();
Samuel Antao86ace552016-04-27 22:40:57 +00006948
Erich Keanee69755a2018-07-19 17:19:16 +00006949 if (isa<MemberExpr>(I->getAssociatedExpression())) {
Samuel Antao86ace552016-04-27 22:40:57 +00006950 // The base is the 'this' pointer. The content of the pointer is going
6951 // to be the base of the field being mapped.
Alexey Bataevb3638132018-07-19 16:34:13 +00006952 BP = CGF.LoadCXXThisAddress();
Samuel Antao86ace552016-04-27 22:40:57 +00006953 } else {
6954 // The base is the reference to the variable.
6955 // BP = &Var.
Alexey Bataevb3638132018-07-19 16:34:13 +00006956 BP = CGF.EmitOMPSharedLValue(I->getAssociatedExpression()).getAddress();
Alexey Bataev92327c52018-03-26 16:40:55 +00006957 if (const auto *VD =
6958 dyn_cast_or_null<VarDecl>(I->getAssociatedDeclaration())) {
6959 if (llvm::Optional<OMPDeclareTargetDeclAttr::MapTypeTy> Res =
Alexey Bataevb3638132018-07-19 16:34:13 +00006960 isDeclareTargetDeclaration(VD))
Alexey Bataev2c1dffe2018-04-16 20:34:41 +00006961 if (*Res == OMPDeclareTargetDeclAttr::MT_Link) {
6962 IsLink = true;
Alexey Bataevb3638132018-07-19 16:34:13 +00006963 BP = CGF.CGM.getOpenMPRuntime().getAddrOfDeclareTargetLink(VD);
Alexey Bataev2c1dffe2018-04-16 20:34:41 +00006964 }
Alexey Bataev92327c52018-03-26 16:40:55 +00006965 }
Samuel Antao86ace552016-04-27 22:40:57 +00006966
6967 // If the variable is a pointer and is being dereferenced (i.e. is not
Nico Webera6916892016-06-10 18:53:04 +00006968 // the last component), the base has to be the pointer itself, not its
Samuel Antao403ffd42016-07-27 22:49:49 +00006969 // reference. References are ignored for mapping purposes.
6970 QualType Ty =
6971 I->getAssociatedDeclaration()->getType().getNonReferenceType();
6972 if (Ty->isAnyPointerType() && std::next(I) != CE) {
Alexey Bataevb3638132018-07-19 16:34:13 +00006973 BP = CGF.EmitLoadOfPointer(BP, Ty->castAs<PointerType>());
Samuel Antao86ace552016-04-27 22:40:57 +00006974
6975 // We do not need to generate individual map information for the
6976 // pointer, it can be associated with the combined storage.
6977 ++I;
6978 }
6979 }
6980
Alexey Bataevb3638132018-07-19 16:34:13 +00006981 // Track whether a component of the list should be marked as MEMBER_OF some
6982 // combined entry (for partial structs). Only the first PTR_AND_OBJ entry
6983 // in a component list should be marked as MEMBER_OF, all subsequent entries
6984 // do not belong to the base struct. E.g.
6985 // struct S2 s;
6986 // s.ps->ps->ps->f[:]
6987 // (1) (2) (3) (4)
6988 // ps(1) is a member pointer, ps(2) is a pointee of ps(1), so it is a
6989 // PTR_AND_OBJ entry; the PTR is ps(1), so MEMBER_OF the base struct. ps(3)
6990 // is the pointee of ps(2) which is not member of struct s, so it should not
6991 // be marked as such (it is still PTR_AND_OBJ).
6992 // The variable is initialized to false so that PTR_AND_OBJ entries which
6993 // are not struct members are not considered (e.g. array of pointers to
6994 // data).
6995 bool ShouldBeMemberOf = false;
6996
6997 // Variable keeping track of whether or not we have encountered a component
6998 // in the component list which is a member expression. Useful when we have a
6999 // pointer or a final array section, in which case it is the previous
7000 // component in the list which tells us whether we have a member expression.
7001 // E.g. X.f[:]
7002 // While processing the final array section "[:]" it is "f" which tells us
7003 // whether we are dealing with a member of a declared struct.
7004 const MemberExpr *EncounteredME = nullptr;
7005
Samuel Antao86ace552016-04-27 22:40:57 +00007006 for (; I != CE; ++I) {
Alexey Bataevb3638132018-07-19 16:34:13 +00007007 // If the current component is member of a struct (parent struct) mark it.
7008 if (!EncounteredME) {
7009 EncounteredME = dyn_cast<MemberExpr>(I->getAssociatedExpression());
7010 // If we encounter a PTR_AND_OBJ entry from now on it should be marked
7011 // as MEMBER_OF the parent struct.
7012 if (EncounteredME)
7013 ShouldBeMemberOf = true;
7014 }
7015
Samuel Antao86ace552016-04-27 22:40:57 +00007016 auto Next = std::next(I);
7017
7018 // We need to generate the addresses and sizes if this is the last
7019 // component, if the component is a pointer or if it is an array section
7020 // whose length can't be proved to be one. If this is a pointer, it
7021 // becomes the base address for the following components.
7022
7023 // A final array section, is one whose length can't be proved to be one.
7024 bool IsFinalArraySection =
7025 isFinalArraySectionExpression(I->getAssociatedExpression());
7026
7027 // Get information on whether the element is a pointer. Have to do a
7028 // special treatment for array sections given that they are built-in
7029 // types.
7030 const auto *OASE =
7031 dyn_cast<OMPArraySectionExpr>(I->getAssociatedExpression());
7032 bool IsPointer =
Alexey Bataevb3638132018-07-19 16:34:13 +00007033 (OASE && OMPArraySectionExpr::getBaseOriginalType(OASE)
7034 .getCanonicalType()
7035 ->isAnyPointerType()) ||
Samuel Antao86ace552016-04-27 22:40:57 +00007036 I->getAssociatedExpression()->getType()->isAnyPointerType();
7037
7038 if (Next == CE || IsPointer || IsFinalArraySection) {
Samuel Antao86ace552016-04-27 22:40:57 +00007039 // If this is not the last component, we expect the pointer to be
7040 // associated with an array expression or member expression.
7041 assert((Next == CE ||
7042 isa<MemberExpr>(Next->getAssociatedExpression()) ||
7043 isa<ArraySubscriptExpr>(Next->getAssociatedExpression()) ||
7044 isa<OMPArraySectionExpr>(Next->getAssociatedExpression())) &&
7045 "Unexpected expression");
7046
Alexey Bataevb3638132018-07-19 16:34:13 +00007047 Address LB =
7048 CGF.EmitOMPSharedLValue(I->getAssociatedExpression()).getAddress();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007049 llvm::Value *Size = getExprTypeSize(I->getAssociatedExpression());
Samuel Antao86ace552016-04-27 22:40:57 +00007050
Alexey Bataevb3638132018-07-19 16:34:13 +00007051 // If this component is a pointer inside the base struct then we don't
7052 // need to create any entry for it - it will be combined with the object
7053 // it is pointing to into a single PTR_AND_OBJ entry.
7054 bool IsMemberPointer =
7055 IsPointer && EncounteredME &&
7056 (dyn_cast<MemberExpr>(I->getAssociatedExpression()) ==
7057 EncounteredME);
7058 if (!IsMemberPointer) {
7059 BasePointers.push_back(BP.getPointer());
7060 Pointers.push_back(LB.getPointer());
7061 Sizes.push_back(Size);
Samuel Antao03a3cec2016-07-27 22:52:16 +00007062
Alexey Bataevb3638132018-07-19 16:34:13 +00007063 // We need to add a pointer flag for each map that comes from the
7064 // same expression except for the first one. We also need to signal
7065 // this map is the first one that relates with the current capture
7066 // (there is a set of entries for each capture).
7067 OpenMPOffloadMappingFlags Flags = getMapTypeBits(
7068 MapType, MapTypeModifier, IsImplicit,
7069 !IsExpressionFirstInfo || IsLink, IsCaptureFirstInfo && !IsLink);
7070
7071 if (!IsExpressionFirstInfo) {
7072 // If we have a PTR_AND_OBJ pair where the OBJ is a pointer as well,
7073 // then we reset the TO/FROM/ALWAYS/DELETE flags.
7074 if (IsPointer)
7075 Flags &= ~(OMP_MAP_TO | OMP_MAP_FROM | OMP_MAP_ALWAYS |
7076 OMP_MAP_DELETE);
7077
7078 if (ShouldBeMemberOf) {
7079 // Set placeholder value MEMBER_OF=FFFF to indicate that the flag
7080 // should be later updated with the correct value of MEMBER_OF.
7081 Flags |= OMP_MAP_MEMBER_OF;
7082 // From now on, all subsequent PTR_AND_OBJ entries should not be
7083 // marked as MEMBER_OF.
7084 ShouldBeMemberOf = false;
7085 }
7086 }
7087
7088 Types.push_back(Flags);
Samuel Antao03a3cec2016-07-27 22:52:16 +00007089 }
7090
Alexey Bataevb3638132018-07-19 16:34:13 +00007091 // If we have encountered a member expression so far, keep track of the
7092 // mapped member. If the parent is "*this", then the value declaration
7093 // is nullptr.
7094 if (EncounteredME) {
7095 const auto *FD = dyn_cast<FieldDecl>(EncounteredME->getMemberDecl());
7096 unsigned FieldIndex = FD->getFieldIndex();
Samuel Antao03a3cec2016-07-27 22:52:16 +00007097
Alexey Bataevb3638132018-07-19 16:34:13 +00007098 // Update info about the lowest and highest elements for this struct
7099 if (!PartialStruct.Base.isValid()) {
7100 PartialStruct.LowestElem = {FieldIndex, LB};
7101 PartialStruct.HighestElem = {FieldIndex, LB};
7102 PartialStruct.Base = BP;
7103 } else if (FieldIndex < PartialStruct.LowestElem.first) {
7104 PartialStruct.LowestElem = {FieldIndex, LB};
7105 } else if (FieldIndex > PartialStruct.HighestElem.first) {
7106 PartialStruct.HighestElem = {FieldIndex, LB};
7107 }
7108 }
Samuel Antao86ace552016-04-27 22:40:57 +00007109
7110 // If we have a final array section, we are done with this expression.
7111 if (IsFinalArraySection)
7112 break;
7113
7114 // The pointer becomes the base for the next element.
7115 if (Next != CE)
7116 BP = LB;
7117
7118 IsExpressionFirstInfo = false;
7119 IsCaptureFirstInfo = false;
Samuel Antao86ace552016-04-27 22:40:57 +00007120 }
7121 }
7122 }
7123
Alexey Bataevb3638132018-07-19 16:34:13 +00007124 /// Return the adjusted map modifiers if the declaration a capture refers to
7125 /// appears in a first-private clause. This is expected to be used only with
7126 /// directives that start with 'target'.
7127 MappableExprsHandler::OpenMPOffloadMappingFlags
7128 getMapModifiersForPrivateClauses(const CapturedStmt::Capture &Cap) const {
7129 assert(Cap.capturesVariable() && "Expected capture by reference only!");
7130
7131 // A first private variable captured by reference will use only the
7132 // 'private ptr' and 'map to' flag. Return the right flags if the captured
7133 // declaration is known as first-private in this handler.
7134 if (FirstPrivateDecls.count(Cap.getCapturedVar()))
7135 return MappableExprsHandler::OMP_MAP_PRIVATE |
7136 MappableExprsHandler::OMP_MAP_TO;
7137 return MappableExprsHandler::OMP_MAP_TO |
7138 MappableExprsHandler::OMP_MAP_FROM;
7139 }
7140
7141 static OpenMPOffloadMappingFlags getMemberOfFlag(unsigned Position) {
7142 // Member of is given by the 16 MSB of the flag, so rotate by 48 bits.
7143 return static_cast<OpenMPOffloadMappingFlags>(((uint64_t)Position + 1)
7144 << 48);
7145 }
7146
7147 static void setCorrectMemberOfFlag(OpenMPOffloadMappingFlags &Flags,
7148 OpenMPOffloadMappingFlags MemberOfFlag) {
7149 // If the entry is PTR_AND_OBJ but has not been marked with the special
7150 // placeholder value 0xFFFF in the MEMBER_OF field, then it should not be
7151 // marked as MEMBER_OF.
7152 if ((Flags & OMP_MAP_PTR_AND_OBJ) &&
7153 ((Flags & OMP_MAP_MEMBER_OF) != OMP_MAP_MEMBER_OF))
7154 return;
7155
7156 // Reset the placeholder value to prepare the flag for the assignment of the
7157 // proper MEMBER_OF value.
7158 Flags &= ~OMP_MAP_MEMBER_OF;
7159 Flags |= MemberOfFlag;
7160 }
7161
7162public:
7163 MappableExprsHandler(const OMPExecutableDirective &Dir, CodeGenFunction &CGF)
7164 : CurDir(Dir), CGF(CGF) {
7165 // Extract firstprivate clause information.
7166 for (const auto *C : Dir.getClausesOfKind<OMPFirstprivateClause>())
7167 for (const auto *D : C->varlists())
7168 FirstPrivateDecls.insert(
7169 cast<VarDecl>(cast<DeclRefExpr>(D)->getDecl())->getCanonicalDecl());
7170 // Extract device pointer clause information.
7171 for (const auto *C : Dir.getClausesOfKind<OMPIsDevicePtrClause>())
7172 for (auto L : C->component_lists())
7173 DevPointersMap[L.first].push_back(L.second);
7174 }
7175
7176 /// Generate code for the combined entry if we have a partially mapped struct
7177 /// and take care of the mapping flags of the arguments corresponding to
7178 /// individual struct members.
7179 void emitCombinedEntry(MapBaseValuesArrayTy &BasePointers,
7180 MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes,
7181 MapFlagsArrayTy &Types, MapFlagsArrayTy &CurTypes,
7182 const StructRangeInfoTy &PartialStruct) const {
7183 // Base is the base of the struct
7184 BasePointers.push_back(PartialStruct.Base.getPointer());
7185 // Pointer is the address of the lowest element
7186 llvm::Value *LB = PartialStruct.LowestElem.second.getPointer();
7187 Pointers.push_back(LB);
7188 // Size is (addr of {highest+1} element) - (addr of lowest element)
7189 llvm::Value *HB = PartialStruct.HighestElem.second.getPointer();
7190 llvm::Value *HAddr = CGF.Builder.CreateConstGEP1_32(HB, /*Idx0=*/1);
7191 llvm::Value *CLAddr = CGF.Builder.CreatePointerCast(LB, CGF.VoidPtrTy);
7192 llvm::Value *CHAddr = CGF.Builder.CreatePointerCast(HAddr, CGF.VoidPtrTy);
7193 llvm::Value *Diff = CGF.Builder.CreatePtrDiff(CHAddr, CLAddr);
7194 llvm::Value *Size = CGF.Builder.CreateIntCast(Diff, CGF.SizeTy,
7195 /*isSinged=*/false);
7196 Sizes.push_back(Size);
7197 // Map type is always TARGET_PARAM
7198 Types.push_back(OMP_MAP_TARGET_PARAM);
7199 // Remove TARGET_PARAM flag from the first element
7200 (*CurTypes.begin()) &= ~OMP_MAP_TARGET_PARAM;
7201
7202 // All other current entries will be MEMBER_OF the combined entry
7203 // (except for PTR_AND_OBJ entries which do not have a placeholder value
7204 // 0xFFFF in the MEMBER_OF field).
7205 OpenMPOffloadMappingFlags MemberOfFlag =
7206 getMemberOfFlag(BasePointers.size() - 1);
7207 for (auto &M : CurTypes)
7208 setCorrectMemberOfFlag(M, MemberOfFlag);
7209 }
7210
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00007211 /// Generate all the base pointers, section pointers, sizes and map
Samuel Antaocc10b852016-07-28 14:23:26 +00007212 /// types for the extracted mappable expressions. Also, for each item that
7213 /// relates with a device pointer, a pair of the relevant declaration and
7214 /// index where it occurs is appended to the device pointers info array.
7215 void generateAllInfo(MapBaseValuesArrayTy &BasePointers,
Samuel Antao86ace552016-04-27 22:40:57 +00007216 MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes,
7217 MapFlagsArrayTy &Types) const {
Samuel Antao86ace552016-04-27 22:40:57 +00007218 // We have to process the component lists that relate with the same
7219 // declaration in a single chunk so that we can generate the map flags
7220 // correctly. Therefore, we organize all lists in a map.
Alexey Bataev5d1c3f62017-06-27 15:46:42 +00007221 llvm::MapVector<const ValueDecl *, SmallVector<MapInfo, 8>> Info;
Samuel Antao8d2d7302016-05-26 18:30:22 +00007222
7223 // Helper function to fill the information map for the different supported
7224 // clauses.
Samuel Antaocc10b852016-07-28 14:23:26 +00007225 auto &&InfoGen = [&Info](
7226 const ValueDecl *D,
7227 OMPClauseMappableExprCommon::MappableExprComponentListRef L,
7228 OpenMPMapClauseKind MapType, OpenMPMapClauseKind MapModifier,
Alexey Bataevb3638132018-07-19 16:34:13 +00007229 bool ReturnDevicePointer, bool IsImplicit) {
Samuel Antaocc10b852016-07-28 14:23:26 +00007230 const ValueDecl *VD =
7231 D ? cast<ValueDecl>(D->getCanonicalDecl()) : nullptr;
Alexey Bataevf47c4b42017-09-26 13:47:31 +00007232 Info[VD].emplace_back(L, MapType, MapModifier, ReturnDevicePointer,
7233 IsImplicit);
Samuel Antaocc10b852016-07-28 14:23:26 +00007234 };
Samuel Antao8d2d7302016-05-26 18:30:22 +00007235
Paul Robinson78fb1322016-08-01 22:12:46 +00007236 // FIXME: MSVC 2013 seems to require this-> to find member CurDir.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007237 for (const auto *C : this->CurDir.getClausesOfKind<OMPMapClause>())
7238 for (const auto &L : C->component_lists()) {
Samuel Antaocf3f83e2016-07-28 14:47:35 +00007239 InfoGen(L.first, L.second, C->getMapType(), C->getMapTypeModifier(),
Alexey Bataevb3638132018-07-19 16:34:13 +00007240 /*ReturnDevicePointer=*/false, C->isImplicit());
Alexey Bataevf47c4b42017-09-26 13:47:31 +00007241 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007242 for (const auto *C : this->CurDir.getClausesOfKind<OMPToClause>())
7243 for (const auto &L : C->component_lists()) {
Samuel Antaocf3f83e2016-07-28 14:47:35 +00007244 InfoGen(L.first, L.second, OMPC_MAP_to, OMPC_MAP_unknown,
Alexey Bataevb3638132018-07-19 16:34:13 +00007245 /*ReturnDevicePointer=*/false, C->isImplicit());
Alexey Bataevf47c4b42017-09-26 13:47:31 +00007246 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007247 for (const auto *C : this->CurDir.getClausesOfKind<OMPFromClause>())
7248 for (const auto &L : C->component_lists()) {
Samuel Antaocf3f83e2016-07-28 14:47:35 +00007249 InfoGen(L.first, L.second, OMPC_MAP_from, OMPC_MAP_unknown,
Alexey Bataevb3638132018-07-19 16:34:13 +00007250 /*ReturnDevicePointer=*/false, C->isImplicit());
Alexey Bataevf47c4b42017-09-26 13:47:31 +00007251 }
Samuel Antao86ace552016-04-27 22:40:57 +00007252
Samuel Antaocc10b852016-07-28 14:23:26 +00007253 // Look at the use_device_ptr clause information and mark the existing map
7254 // entries as such. If there is no map information for an entry in the
7255 // use_device_ptr list, we create one with map type 'alloc' and zero size
Alexey Bataevb3638132018-07-19 16:34:13 +00007256 // section. It is the user fault if that was not mapped before. If there is
7257 // no map information and the pointer is a struct member, then we defer the
7258 // emission of that entry until the whole struct has been processed.
7259 llvm::MapVector<const ValueDecl *, SmallVector<DeferredDevicePtrEntryTy, 4>>
7260 DeferredInfo;
7261
Paul Robinson78fb1322016-08-01 22:12:46 +00007262 // FIXME: MSVC 2013 seems to require this-> to find member CurDir.
Alexey Bataevb3638132018-07-19 16:34:13 +00007263 for (const auto *C :
7264 this->CurDir.getClausesOfKind<OMPUseDevicePtrClause>()) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007265 for (const auto &L : C->component_lists()) {
Samuel Antaocc10b852016-07-28 14:23:26 +00007266 assert(!L.second.empty() && "Not expecting empty list of components!");
7267 const ValueDecl *VD = L.second.back().getAssociatedDeclaration();
7268 VD = cast<ValueDecl>(VD->getCanonicalDecl());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007269 const Expr *IE = L.second.back().getAssociatedExpression();
Samuel Antaocc10b852016-07-28 14:23:26 +00007270 // If the first component is a member expression, we have to look into
7271 // 'this', which maps to null in the map of map information. Otherwise
7272 // look directly for the information.
7273 auto It = Info.find(isa<MemberExpr>(IE) ? nullptr : VD);
7274
7275 // We potentially have map information for this declaration already.
7276 // Look for the first set of components that refer to it.
7277 if (It != Info.end()) {
7278 auto CI = std::find_if(
7279 It->second.begin(), It->second.end(), [VD](const MapInfo &MI) {
7280 return MI.Components.back().getAssociatedDeclaration() == VD;
7281 });
7282 // If we found a map entry, signal that the pointer has to be returned
7283 // and move on to the next declaration.
7284 if (CI != It->second.end()) {
Alexey Bataevb3638132018-07-19 16:34:13 +00007285 CI->ReturnDevicePointer = true;
Samuel Antaocc10b852016-07-28 14:23:26 +00007286 continue;
7287 }
7288 }
7289
7290 // We didn't find any match in our map information - generate a zero
Alexey Bataevb3638132018-07-19 16:34:13 +00007291 // size array section - if the pointer is a struct member we defer this
7292 // action until the whole struct has been processed.
Paul Robinson78fb1322016-08-01 22:12:46 +00007293 // FIXME: MSVC 2013 seems to require this-> to find member CGF.
Alexey Bataevb3638132018-07-19 16:34:13 +00007294 if (isa<MemberExpr>(IE)) {
7295 // Insert the pointer into Info to be processed by
7296 // generateInfoForComponentList. Because it is a member pointer
7297 // without a pointee, no entry will be generated for it, therefore
7298 // we need to generate one after the whole struct has been processed.
7299 // Nonetheless, generateInfoForComponentList must be called to take
7300 // the pointer into account for the calculation of the range of the
7301 // partial struct.
7302 InfoGen(nullptr, L.second, OMPC_MAP_unknown, OMPC_MAP_unknown,
7303 /*ReturnDevicePointer=*/false, C->isImplicit());
7304 DeferredInfo[nullptr].emplace_back(IE, VD);
7305 } else {
7306 llvm::Value *Ptr = this->CGF.EmitLoadOfScalar(
7307 this->CGF.EmitLValue(IE), IE->getExprLoc());
7308 BasePointers.emplace_back(Ptr, VD);
7309 Pointers.push_back(Ptr);
7310 Sizes.push_back(llvm::Constant::getNullValue(this->CGF.SizeTy));
7311 Types.push_back(OMP_MAP_RETURN_PARAM | OMP_MAP_TARGET_PARAM);
7312 }
Samuel Antaocc10b852016-07-28 14:23:26 +00007313 }
Alexey Bataevb3638132018-07-19 16:34:13 +00007314 }
Samuel Antaocc10b852016-07-28 14:23:26 +00007315
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007316 for (const auto &M : Info) {
Samuel Antao86ace552016-04-27 22:40:57 +00007317 // We need to know when we generate information for the first component
7318 // associated with a capture, because the mapping flags depend on it.
7319 bool IsFirstComponentList = true;
Alexey Bataevb3638132018-07-19 16:34:13 +00007320
7321 // Temporary versions of arrays
7322 MapBaseValuesArrayTy CurBasePointers;
7323 MapValuesArrayTy CurPointers;
7324 MapValuesArrayTy CurSizes;
7325 MapFlagsArrayTy CurTypes;
7326 StructRangeInfoTy PartialStruct;
7327
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007328 for (const MapInfo &L : M.second) {
Samuel Antao86ace552016-04-27 22:40:57 +00007329 assert(!L.Components.empty() &&
7330 "Not expecting declaration with no component lists.");
Samuel Antaocc10b852016-07-28 14:23:26 +00007331
7332 // Remember the current base pointer index.
Alexey Bataevb3638132018-07-19 16:34:13 +00007333 unsigned CurrentBasePointersIdx = CurBasePointers.size();
Paul Robinson78fb1322016-08-01 22:12:46 +00007334 // FIXME: MSVC 2013 seems to require this-> to find the member method.
Alexey Bataevf47c4b42017-09-26 13:47:31 +00007335 this->generateInfoForComponentList(
Alexey Bataevb3638132018-07-19 16:34:13 +00007336 L.MapType, L.MapTypeModifier, L.Components, CurBasePointers,
7337 CurPointers, CurSizes, CurTypes, PartialStruct,
7338 IsFirstComponentList, L.IsImplicit);
Samuel Antaocc10b852016-07-28 14:23:26 +00007339
7340 // If this entry relates with a device pointer, set the relevant
7341 // declaration and add the 'return pointer' flag.
Alexey Bataevb3638132018-07-19 16:34:13 +00007342 if (L.ReturnDevicePointer) {
7343 assert(CurBasePointers.size() > CurrentBasePointersIdx &&
Samuel Antaocc10b852016-07-28 14:23:26 +00007344 "Unexpected number of mapped base pointers.");
7345
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007346 const ValueDecl *RelevantVD =
7347 L.Components.back().getAssociatedDeclaration();
Samuel Antaocc10b852016-07-28 14:23:26 +00007348 assert(RelevantVD &&
7349 "No relevant declaration related with device pointer??");
7350
Alexey Bataevb3638132018-07-19 16:34:13 +00007351 CurBasePointers[CurrentBasePointersIdx].setDevicePtrDecl(RelevantVD);
7352 CurTypes[CurrentBasePointersIdx] |= OMP_MAP_RETURN_PARAM;
Samuel Antaocc10b852016-07-28 14:23:26 +00007353 }
Samuel Antao86ace552016-04-27 22:40:57 +00007354 IsFirstComponentList = false;
7355 }
Alexey Bataevb3638132018-07-19 16:34:13 +00007356
7357 // Append any pending zero-length pointers which are struct members and
7358 // used with use_device_ptr.
7359 auto CI = DeferredInfo.find(M.first);
7360 if (CI != DeferredInfo.end()) {
7361 for (const DeferredDevicePtrEntryTy &L : CI->second) {
7362 llvm::Value *BasePtr = this->CGF.EmitLValue(L.IE).getPointer();
7363 llvm::Value *Ptr = this->CGF.EmitLoadOfScalar(
7364 this->CGF.EmitLValue(L.IE), L.IE->getExprLoc());
7365 CurBasePointers.emplace_back(BasePtr, L.VD);
7366 CurPointers.push_back(Ptr);
7367 CurSizes.push_back(llvm::Constant::getNullValue(this->CGF.SizeTy));
7368 // Entry is PTR_AND_OBJ and RETURN_PARAM. Also, set the placeholder
7369 // value MEMBER_OF=FFFF so that the entry is later updated with the
7370 // correct value of MEMBER_OF.
7371 CurTypes.push_back(OMP_MAP_PTR_AND_OBJ | OMP_MAP_RETURN_PARAM |
7372 OMP_MAP_MEMBER_OF);
7373 }
7374 }
7375
7376 // If there is an entry in PartialStruct it means we have a struct with
7377 // individual members mapped. Emit an extra combined entry.
7378 if (PartialStruct.Base.isValid())
7379 emitCombinedEntry(BasePointers, Pointers, Sizes, Types, CurTypes,
7380 PartialStruct);
7381
7382 // We need to append the results of this capture to what we already have.
7383 BasePointers.append(CurBasePointers.begin(), CurBasePointers.end());
7384 Pointers.append(CurPointers.begin(), CurPointers.end());
7385 Sizes.append(CurSizes.begin(), CurSizes.end());
7386 Types.append(CurTypes.begin(), CurTypes.end());
Samuel Antao86ace552016-04-27 22:40:57 +00007387 }
7388 }
7389
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00007390 /// Generate the base pointers, section pointers, sizes and map types
Samuel Antao86ace552016-04-27 22:40:57 +00007391 /// associated to a given capture.
7392 void generateInfoForCapture(const CapturedStmt::Capture *Cap,
Samuel Antao6890b092016-07-28 14:25:09 +00007393 llvm::Value *Arg,
Samuel Antaocc10b852016-07-28 14:23:26 +00007394 MapBaseValuesArrayTy &BasePointers,
Samuel Antao86ace552016-04-27 22:40:57 +00007395 MapValuesArrayTy &Pointers,
Alexey Bataevb3638132018-07-19 16:34:13 +00007396 MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types,
7397 StructRangeInfoTy &PartialStruct) const {
Samuel Antao86ace552016-04-27 22:40:57 +00007398 assert(!Cap->capturesVariableArrayType() &&
7399 "Not expecting to generate map info for a variable array type!");
7400
Samuel Antao6890b092016-07-28 14:25:09 +00007401 // We need to know when we generating information for the first component
7402 // associated with a capture, because the mapping flags depend on it.
7403 bool IsFirstComponentList = true;
7404
Alexey Bataevb3638132018-07-19 16:34:13 +00007405 const ValueDecl *VD = Cap->capturesThis()
7406 ? nullptr
7407 : Cap->getCapturedVar()->getCanonicalDecl();
Samuel Antao86ace552016-04-27 22:40:57 +00007408
Samuel Antao6890b092016-07-28 14:25:09 +00007409 // If this declaration appears in a is_device_ptr clause we just have to
7410 // pass the pointer by value. If it is a reference to a declaration, we just
Alexey Bataevb3638132018-07-19 16:34:13 +00007411 // pass its value.
7412 if (DevPointersMap.count(VD)) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007413 BasePointers.emplace_back(Arg, VD);
Samuel Antao6890b092016-07-28 14:25:09 +00007414 Pointers.push_back(Arg);
7415 Sizes.push_back(CGF.getTypeSize(CGF.getContext().VoidPtrTy));
George Rokos065755d2017-11-07 18:27:04 +00007416 Types.push_back(OMP_MAP_LITERAL | OMP_MAP_TARGET_PARAM);
Samuel Antao6890b092016-07-28 14:25:09 +00007417 return;
7418 }
7419
Paul Robinson78fb1322016-08-01 22:12:46 +00007420 // FIXME: MSVC 2013 seems to require this-> to find member CurDir.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007421 for (const auto *C : this->CurDir.getClausesOfKind<OMPMapClause>())
7422 for (const auto &L : C->decl_component_lists(VD)) {
Samuel Antao86ace552016-04-27 22:40:57 +00007423 assert(L.first == VD &&
7424 "We got information for the wrong declaration??");
7425 assert(!L.second.empty() &&
7426 "Not expecting declaration with no component lists.");
Alexey Bataevb3638132018-07-19 16:34:13 +00007427 generateInfoForComponentList(C->getMapType(), C->getMapTypeModifier(),
7428 L.second, BasePointers, Pointers, Sizes,
7429 Types, PartialStruct, IsFirstComponentList,
7430 C->isImplicit());
Samuel Antao86ace552016-04-27 22:40:57 +00007431 IsFirstComponentList = false;
7432 }
Alexey Bataevb3638132018-07-19 16:34:13 +00007433 }
Samuel Antao86ace552016-04-27 22:40:57 +00007434
Alexey Bataevb3638132018-07-19 16:34:13 +00007435 /// Generate the base pointers, section pointers, sizes and map types
7436 /// associated with the declare target link variables.
7437 void generateInfoForDeclareTargetLink(MapBaseValuesArrayTy &BasePointers,
7438 MapValuesArrayTy &Pointers,
7439 MapValuesArrayTy &Sizes,
7440 MapFlagsArrayTy &Types) const {
7441 // Map other list items in the map clause which are not captured variables
7442 // but "declare target link" global variables.,
7443 for (const auto *C : this->CurDir.getClausesOfKind<OMPMapClause>()) {
7444 for (const auto &L : C->component_lists()) {
7445 if (!L.first)
7446 continue;
7447 const auto *VD = dyn_cast<VarDecl>(L.first);
7448 if (!VD)
7449 continue;
7450 llvm::Optional<OMPDeclareTargetDeclAttr::MapTypeTy> Res =
7451 isDeclareTargetDeclaration(VD);
7452 if (!Res || *Res != OMPDeclareTargetDeclAttr::MT_Link)
7453 continue;
7454 StructRangeInfoTy PartialStruct;
7455 generateInfoForComponentList(
7456 C->getMapType(), C->getMapTypeModifier(), L.second, BasePointers,
7457 Pointers, Sizes, Types, PartialStruct,
7458 /*IsFirstComponentList=*/true, C->isImplicit());
7459 assert(!PartialStruct.Base.isValid() &&
7460 "No partial structs for declare target link expected.");
7461 }
7462 }
Samuel Antao86ace552016-04-27 22:40:57 +00007463 }
Samuel Antaod486f842016-05-26 16:53:38 +00007464
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00007465 /// Generate the default map information for a given capture \a CI,
Samuel Antaod486f842016-05-26 16:53:38 +00007466 /// record field declaration \a RI and captured value \a CV.
Samuel Antaocc10b852016-07-28 14:23:26 +00007467 void generateDefaultMapInfo(const CapturedStmt::Capture &CI,
7468 const FieldDecl &RI, llvm::Value *CV,
7469 MapBaseValuesArrayTy &CurBasePointers,
7470 MapValuesArrayTy &CurPointers,
7471 MapValuesArrayTy &CurSizes,
Alexey Bataevb3638132018-07-19 16:34:13 +00007472 MapFlagsArrayTy &CurMapTypes) const {
Samuel Antaod486f842016-05-26 16:53:38 +00007473 // Do the default mapping.
7474 if (CI.capturesThis()) {
7475 CurBasePointers.push_back(CV);
7476 CurPointers.push_back(CV);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007477 const auto *PtrTy = cast<PointerType>(RI.getType().getTypePtr());
Samuel Antaod486f842016-05-26 16:53:38 +00007478 CurSizes.push_back(CGF.getTypeSize(PtrTy->getPointeeType()));
7479 // Default map type.
Samuel Antaocc10b852016-07-28 14:23:26 +00007480 CurMapTypes.push_back(OMP_MAP_TO | OMP_MAP_FROM);
Samuel Antaod486f842016-05-26 16:53:38 +00007481 } else if (CI.capturesVariableByCopy()) {
Samuel Antao6d004262016-06-16 18:39:34 +00007482 CurBasePointers.push_back(CV);
7483 CurPointers.push_back(CV);
Samuel Antaod486f842016-05-26 16:53:38 +00007484 if (!RI.getType()->isAnyPointerType()) {
Samuel Antao6d004262016-06-16 18:39:34 +00007485 // We have to signal to the runtime captures passed by value that are
7486 // not pointers.
George Rokos065755d2017-11-07 18:27:04 +00007487 CurMapTypes.push_back(OMP_MAP_LITERAL);
Samuel Antaod486f842016-05-26 16:53:38 +00007488 CurSizes.push_back(CGF.getTypeSize(RI.getType()));
7489 } else {
7490 // Pointers are implicitly mapped with a zero size and no flags
7491 // (other than first map that is added for all implicit maps).
Alexey Bataevb3638132018-07-19 16:34:13 +00007492 CurMapTypes.push_back(OMP_MAP_NONE);
Samuel Antaod486f842016-05-26 16:53:38 +00007493 CurSizes.push_back(llvm::Constant::getNullValue(CGF.SizeTy));
7494 }
7495 } else {
7496 assert(CI.capturesVariable() && "Expected captured reference.");
7497 CurBasePointers.push_back(CV);
7498 CurPointers.push_back(CV);
7499
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007500 const auto *PtrTy = cast<ReferenceType>(RI.getType().getTypePtr());
Samuel Antaod486f842016-05-26 16:53:38 +00007501 QualType ElementType = PtrTy->getPointeeType();
7502 CurSizes.push_back(CGF.getTypeSize(ElementType));
7503 // The default map type for a scalar/complex type is 'to' because by
7504 // default the value doesn't have to be retrieved. For an aggregate
7505 // type, the default is 'tofrom'.
Alexey Bataevb3638132018-07-19 16:34:13 +00007506 CurMapTypes.push_back(getMapModifiersForPrivateClauses(CI));
Samuel Antaod486f842016-05-26 16:53:38 +00007507 }
George Rokos065755d2017-11-07 18:27:04 +00007508 // Every default map produces a single argument which is a target parameter.
7509 CurMapTypes.back() |= OMP_MAP_TARGET_PARAM;
Alexey Bataevb3638132018-07-19 16:34:13 +00007510
7511 // Add flag stating this is an implicit map.
7512 CurMapTypes.back() |= OMP_MAP_IMPLICIT;
Samuel Antaod486f842016-05-26 16:53:38 +00007513 }
Samuel Antao86ace552016-04-27 22:40:57 +00007514};
Samuel Antaodf158d52016-04-27 22:58:19 +00007515
7516enum OpenMPOffloadingReservedDeviceIDs {
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00007517 /// Device ID if the device was not defined, runtime should get it
Samuel Antaodf158d52016-04-27 22:58:19 +00007518 /// from environment variables in the spec.
7519 OMP_DEVICEID_UNDEF = -1,
7520};
7521} // anonymous namespace
7522
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00007523/// Emit the arrays used to pass the captures and map information to the
Samuel Antaodf158d52016-04-27 22:58:19 +00007524/// offloading runtime library. If there is no map or capture information,
7525/// return nullptr by reference.
7526static void
Samuel Antaocc10b852016-07-28 14:23:26 +00007527emitOffloadingArrays(CodeGenFunction &CGF,
7528 MappableExprsHandler::MapBaseValuesArrayTy &BasePointers,
Samuel Antaodf158d52016-04-27 22:58:19 +00007529 MappableExprsHandler::MapValuesArrayTy &Pointers,
7530 MappableExprsHandler::MapValuesArrayTy &Sizes,
Samuel Antaocc10b852016-07-28 14:23:26 +00007531 MappableExprsHandler::MapFlagsArrayTy &MapTypes,
7532 CGOpenMPRuntime::TargetDataInfo &Info) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007533 CodeGenModule &CGM = CGF.CGM;
7534 ASTContext &Ctx = CGF.getContext();
Samuel Antaodf158d52016-04-27 22:58:19 +00007535
Samuel Antaocc10b852016-07-28 14:23:26 +00007536 // Reset the array information.
7537 Info.clearArrayInfo();
7538 Info.NumberOfPtrs = BasePointers.size();
Samuel Antaodf158d52016-04-27 22:58:19 +00007539
Samuel Antaocc10b852016-07-28 14:23:26 +00007540 if (Info.NumberOfPtrs) {
Samuel Antaodf158d52016-04-27 22:58:19 +00007541 // Detect if we have any capture size requiring runtime evaluation of the
7542 // size so that a constant array could be eventually used.
7543 bool hasRuntimeEvaluationCaptureSize = false;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007544 for (llvm::Value *S : Sizes)
Samuel Antaodf158d52016-04-27 22:58:19 +00007545 if (!isa<llvm::Constant>(S)) {
7546 hasRuntimeEvaluationCaptureSize = true;
7547 break;
7548 }
7549
Samuel Antaocc10b852016-07-28 14:23:26 +00007550 llvm::APInt PointerNumAP(32, Info.NumberOfPtrs, /*isSigned=*/true);
Samuel Antaodf158d52016-04-27 22:58:19 +00007551 QualType PointerArrayType =
7552 Ctx.getConstantArrayType(Ctx.VoidPtrTy, PointerNumAP, ArrayType::Normal,
7553 /*IndexTypeQuals=*/0);
7554
Samuel Antaocc10b852016-07-28 14:23:26 +00007555 Info.BasePointersArray =
Samuel Antaodf158d52016-04-27 22:58:19 +00007556 CGF.CreateMemTemp(PointerArrayType, ".offload_baseptrs").getPointer();
Samuel Antaocc10b852016-07-28 14:23:26 +00007557 Info.PointersArray =
Samuel Antaodf158d52016-04-27 22:58:19 +00007558 CGF.CreateMemTemp(PointerArrayType, ".offload_ptrs").getPointer();
7559
7560 // If we don't have any VLA types or other types that require runtime
7561 // evaluation, we can use a constant array for the map sizes, otherwise we
7562 // need to fill up the arrays as we do for the pointers.
7563 if (hasRuntimeEvaluationCaptureSize) {
7564 QualType SizeArrayType = Ctx.getConstantArrayType(
7565 Ctx.getSizeType(), PointerNumAP, ArrayType::Normal,
7566 /*IndexTypeQuals=*/0);
Samuel Antaocc10b852016-07-28 14:23:26 +00007567 Info.SizesArray =
Samuel Antaodf158d52016-04-27 22:58:19 +00007568 CGF.CreateMemTemp(SizeArrayType, ".offload_sizes").getPointer();
7569 } else {
7570 // We expect all the sizes to be constant, so we collect them to create
7571 // a constant array.
7572 SmallVector<llvm::Constant *, 16> ConstSizes;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007573 for (llvm::Value *S : Sizes)
Samuel Antaodf158d52016-04-27 22:58:19 +00007574 ConstSizes.push_back(cast<llvm::Constant>(S));
7575
7576 auto *SizesArrayInit = llvm::ConstantArray::get(
7577 llvm::ArrayType::get(CGM.SizeTy, ConstSizes.size()), ConstSizes);
Alexey Bataev18fa2322018-05-02 14:20:50 +00007578 std::string Name = CGM.getOpenMPRuntime().getName({"offload_sizes"});
Samuel Antaodf158d52016-04-27 22:58:19 +00007579 auto *SizesArrayGbl = new llvm::GlobalVariable(
7580 CGM.getModule(), SizesArrayInit->getType(),
7581 /*isConstant=*/true, llvm::GlobalValue::PrivateLinkage,
Alexey Bataev18fa2322018-05-02 14:20:50 +00007582 SizesArrayInit, Name);
Peter Collingbournebcf909d2016-06-14 21:02:05 +00007583 SizesArrayGbl->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
Samuel Antaocc10b852016-07-28 14:23:26 +00007584 Info.SizesArray = SizesArrayGbl;
Samuel Antaodf158d52016-04-27 22:58:19 +00007585 }
7586
7587 // The map types are always constant so we don't need to generate code to
7588 // fill arrays. Instead, we create an array constant.
Alexey Bataevb3638132018-07-19 16:34:13 +00007589 SmallVector<uint64_t, 4> Mapping(MapTypes.size(), 0);
7590 llvm::copy(MapTypes, Mapping.begin());
Samuel Antaodf158d52016-04-27 22:58:19 +00007591 llvm::Constant *MapTypesArrayInit =
Alexey Bataevb3638132018-07-19 16:34:13 +00007592 llvm::ConstantDataArray::get(CGF.Builder.getContext(), Mapping);
Alexey Bataev18fa2322018-05-02 14:20:50 +00007593 std::string MaptypesName =
7594 CGM.getOpenMPRuntime().getName({"offload_maptypes"});
Samuel Antaodf158d52016-04-27 22:58:19 +00007595 auto *MapTypesArrayGbl = new llvm::GlobalVariable(
7596 CGM.getModule(), MapTypesArrayInit->getType(),
7597 /*isConstant=*/true, llvm::GlobalValue::PrivateLinkage,
Alexey Bataev18fa2322018-05-02 14:20:50 +00007598 MapTypesArrayInit, MaptypesName);
Peter Collingbournebcf909d2016-06-14 21:02:05 +00007599 MapTypesArrayGbl->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
Samuel Antaocc10b852016-07-28 14:23:26 +00007600 Info.MapTypesArray = MapTypesArrayGbl;
Samuel Antaodf158d52016-04-27 22:58:19 +00007601
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007602 for (unsigned I = 0; I < Info.NumberOfPtrs; ++I) {
7603 llvm::Value *BPVal = *BasePointers[I];
Samuel Antaodf158d52016-04-27 22:58:19 +00007604 llvm::Value *BP = CGF.Builder.CreateConstInBoundsGEP2_32(
Samuel Antaocc10b852016-07-28 14:23:26 +00007605 llvm::ArrayType::get(CGM.VoidPtrTy, Info.NumberOfPtrs),
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007606 Info.BasePointersArray, 0, I);
Alexey Bataev1fdfdf72017-06-29 16:43:05 +00007607 BP = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
7608 BP, BPVal->getType()->getPointerTo(/*AddrSpace=*/0));
Samuel Antaodf158d52016-04-27 22:58:19 +00007609 Address BPAddr(BP, Ctx.getTypeAlignInChars(Ctx.VoidPtrTy));
7610 CGF.Builder.CreateStore(BPVal, BPAddr);
7611
Samuel Antaocc10b852016-07-28 14:23:26 +00007612 if (Info.requiresDevicePointerInfo())
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007613 if (const ValueDecl *DevVD = BasePointers[I].getDevicePtrDecl())
Alexey Bataev43a919f2018-04-13 17:48:43 +00007614 Info.CaptureDeviceAddrMap.try_emplace(DevVD, BPAddr);
Samuel Antaocc10b852016-07-28 14:23:26 +00007615
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007616 llvm::Value *PVal = Pointers[I];
Samuel Antaodf158d52016-04-27 22:58:19 +00007617 llvm::Value *P = CGF.Builder.CreateConstInBoundsGEP2_32(
Samuel Antaocc10b852016-07-28 14:23:26 +00007618 llvm::ArrayType::get(CGM.VoidPtrTy, Info.NumberOfPtrs),
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007619 Info.PointersArray, 0, I);
Alexey Bataev1fdfdf72017-06-29 16:43:05 +00007620 P = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
7621 P, PVal->getType()->getPointerTo(/*AddrSpace=*/0));
Samuel Antaodf158d52016-04-27 22:58:19 +00007622 Address PAddr(P, Ctx.getTypeAlignInChars(Ctx.VoidPtrTy));
7623 CGF.Builder.CreateStore(PVal, PAddr);
7624
7625 if (hasRuntimeEvaluationCaptureSize) {
7626 llvm::Value *S = CGF.Builder.CreateConstInBoundsGEP2_32(
Samuel Antaocc10b852016-07-28 14:23:26 +00007627 llvm::ArrayType::get(CGM.SizeTy, Info.NumberOfPtrs),
7628 Info.SizesArray,
Samuel Antaodf158d52016-04-27 22:58:19 +00007629 /*Idx0=*/0,
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007630 /*Idx1=*/I);
Samuel Antaodf158d52016-04-27 22:58:19 +00007631 Address SAddr(S, Ctx.getTypeAlignInChars(Ctx.getSizeType()));
7632 CGF.Builder.CreateStore(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007633 CGF.Builder.CreateIntCast(Sizes[I], CGM.SizeTy, /*isSigned=*/true),
Samuel Antaodf158d52016-04-27 22:58:19 +00007634 SAddr);
7635 }
7636 }
7637 }
7638}
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00007639/// Emit the arguments to be passed to the runtime library based on the
Samuel Antaodf158d52016-04-27 22:58:19 +00007640/// arrays of pointers, sizes and map types.
7641static void emitOffloadingArraysArgument(
7642 CodeGenFunction &CGF, llvm::Value *&BasePointersArrayArg,
7643 llvm::Value *&PointersArrayArg, llvm::Value *&SizesArrayArg,
Samuel Antaocc10b852016-07-28 14:23:26 +00007644 llvm::Value *&MapTypesArrayArg, CGOpenMPRuntime::TargetDataInfo &Info) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007645 CodeGenModule &CGM = CGF.CGM;
Samuel Antaocc10b852016-07-28 14:23:26 +00007646 if (Info.NumberOfPtrs) {
Samuel Antaodf158d52016-04-27 22:58:19 +00007647 BasePointersArrayArg = CGF.Builder.CreateConstInBoundsGEP2_32(
Samuel Antaocc10b852016-07-28 14:23:26 +00007648 llvm::ArrayType::get(CGM.VoidPtrTy, Info.NumberOfPtrs),
7649 Info.BasePointersArray,
Samuel Antaodf158d52016-04-27 22:58:19 +00007650 /*Idx0=*/0, /*Idx1=*/0);
7651 PointersArrayArg = CGF.Builder.CreateConstInBoundsGEP2_32(
Samuel Antaocc10b852016-07-28 14:23:26 +00007652 llvm::ArrayType::get(CGM.VoidPtrTy, Info.NumberOfPtrs),
7653 Info.PointersArray,
Samuel Antaodf158d52016-04-27 22:58:19 +00007654 /*Idx0=*/0,
7655 /*Idx1=*/0);
7656 SizesArrayArg = CGF.Builder.CreateConstInBoundsGEP2_32(
Samuel Antaocc10b852016-07-28 14:23:26 +00007657 llvm::ArrayType::get(CGM.SizeTy, Info.NumberOfPtrs), Info.SizesArray,
Samuel Antaodf158d52016-04-27 22:58:19 +00007658 /*Idx0=*/0, /*Idx1=*/0);
7659 MapTypesArrayArg = CGF.Builder.CreateConstInBoundsGEP2_32(
George Rokos63bc9d62017-11-21 18:25:12 +00007660 llvm::ArrayType::get(CGM.Int64Ty, Info.NumberOfPtrs),
Samuel Antaocc10b852016-07-28 14:23:26 +00007661 Info.MapTypesArray,
Samuel Antaodf158d52016-04-27 22:58:19 +00007662 /*Idx0=*/0,
7663 /*Idx1=*/0);
7664 } else {
7665 BasePointersArrayArg = llvm::ConstantPointerNull::get(CGM.VoidPtrPtrTy);
7666 PointersArrayArg = llvm::ConstantPointerNull::get(CGM.VoidPtrPtrTy);
7667 SizesArrayArg = llvm::ConstantPointerNull::get(CGM.SizeTy->getPointerTo());
7668 MapTypesArrayArg =
George Rokos63bc9d62017-11-21 18:25:12 +00007669 llvm::ConstantPointerNull::get(CGM.Int64Ty->getPointerTo());
Samuel Antaodf158d52016-04-27 22:58:19 +00007670 }
Samuel Antao86ace552016-04-27 22:40:57 +00007671}
7672
Samuel Antaobed3c462015-10-02 16:14:20 +00007673void CGOpenMPRuntime::emitTargetCall(CodeGenFunction &CGF,
7674 const OMPExecutableDirective &D,
7675 llvm::Value *OutlinedFn,
Samuel Antaoee8fb302016-01-06 13:42:12 +00007676 llvm::Value *OutlinedFnID,
Alexey Bataev8451efa2018-01-15 19:06:12 +00007677 const Expr *IfCond, const Expr *Device) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00007678 if (!CGF.HaveInsertPoint())
7679 return;
Samuel Antaobed3c462015-10-02 16:14:20 +00007680
Samuel Antaoee8fb302016-01-06 13:42:12 +00007681 assert(OutlinedFn && "Invalid outlined function!");
7682
Alexey Bataev8451efa2018-01-15 19:06:12 +00007683 const bool RequiresOuterTask = D.hasClausesOfKind<OMPDependClause>();
7684 llvm::SmallVector<llvm::Value *, 16> CapturedVars;
Alexey Bataev475a7442018-01-12 19:39:11 +00007685 const CapturedStmt &CS = *D.getCapturedStmt(OMPD_target);
Alexey Bataev8451efa2018-01-15 19:06:12 +00007686 auto &&ArgsCodegen = [&CS, &CapturedVars](CodeGenFunction &CGF,
7687 PrePostActionTy &) {
7688 CGF.GenerateOpenMPCapturedVars(CS, CapturedVars);
7689 };
7690 emitInlinedDirective(CGF, OMPD_unknown, ArgsCodegen);
Samuel Antao86ace552016-04-27 22:40:57 +00007691
Alexey Bataev8451efa2018-01-15 19:06:12 +00007692 CodeGenFunction::OMPTargetDataInfo InputInfo;
7693 llvm::Value *MapTypesArray = nullptr;
Samuel Antaobed3c462015-10-02 16:14:20 +00007694 // Fill up the pointer arrays and transfer execution to the device.
Alexey Bataev8451efa2018-01-15 19:06:12 +00007695 auto &&ThenGen = [this, Device, OutlinedFn, OutlinedFnID, &D, &InputInfo,
7696 &MapTypesArray, &CS, RequiresOuterTask,
7697 &CapturedVars](CodeGenFunction &CGF, PrePostActionTy &) {
Samuel Antaobed3c462015-10-02 16:14:20 +00007698 // On top of the arrays that were filled up, the target offloading call
7699 // takes as arguments the device id as well as the host pointer. The host
7700 // pointer is used by the runtime library to identify the current target
7701 // region, so it only has to be unique and not necessarily point to
7702 // anything. It could be the pointer to the outlined function that
7703 // implements the target region, but we aren't using that so that the
7704 // compiler doesn't need to keep that, and could therefore inline the host
7705 // function if proven worthwhile during optimization.
7706
Samuel Antaoee8fb302016-01-06 13:42:12 +00007707 // From this point on, we need to have an ID of the target region defined.
7708 assert(OutlinedFnID && "Invalid outlined function ID!");
Samuel Antaobed3c462015-10-02 16:14:20 +00007709
7710 // Emit device ID if any.
7711 llvm::Value *DeviceID;
George Rokos63bc9d62017-11-21 18:25:12 +00007712 if (Device) {
Samuel Antaobed3c462015-10-02 16:14:20 +00007713 DeviceID = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(Device),
George Rokos63bc9d62017-11-21 18:25:12 +00007714 CGF.Int64Ty, /*isSigned=*/true);
7715 } else {
7716 DeviceID = CGF.Builder.getInt64(OMP_DEVICEID_UNDEF);
7717 }
Samuel Antaobed3c462015-10-02 16:14:20 +00007718
Samuel Antaodf158d52016-04-27 22:58:19 +00007719 // Emit the number of elements in the offloading arrays.
Alexey Bataev8451efa2018-01-15 19:06:12 +00007720 llvm::Value *PointerNum =
7721 CGF.Builder.getInt32(InputInfo.NumberOfTargetItems);
Samuel Antaodf158d52016-04-27 22:58:19 +00007722
Samuel Antaob68e2db2016-03-03 16:20:23 +00007723 // Return value of the runtime offloading call.
7724 llvm::Value *Return;
7725
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007726 llvm::Value *NumTeams = emitNumTeamsForTargetDirective(*this, CGF, D);
7727 llvm::Value *NumThreads = emitNumThreadsForTargetDirective(*this, CGF, D);
Samuel Antaob68e2db2016-03-03 16:20:23 +00007728
Alexey Bataeva9f77c62017-12-13 21:04:20 +00007729 bool HasNowait = D.hasClausesOfKind<OMPNowaitClause>();
Arpith Chacko Jacob33c849a2017-01-25 00:57:16 +00007730 // The target region is an outlined function launched by the runtime
7731 // via calls __tgt_target() or __tgt_target_teams().
7732 //
7733 // __tgt_target() launches a target region with one team and one thread,
7734 // executing a serial region. This master thread may in turn launch
7735 // more threads within its team upon encountering a parallel region,
7736 // however, no additional teams can be launched on the device.
7737 //
7738 // __tgt_target_teams() launches a target region with one or more teams,
7739 // each with one or more threads. This call is required for target
7740 // constructs such as:
7741 // 'target teams'
7742 // 'target' / 'teams'
7743 // 'target teams distribute parallel for'
7744 // 'target parallel'
7745 // and so on.
7746 //
7747 // Note that on the host and CPU targets, the runtime implementation of
7748 // these calls simply call the outlined function without forking threads.
7749 // The outlined functions themselves have runtime calls to
7750 // __kmpc_fork_teams() and __kmpc_fork() for this purpose, codegen'd by
7751 // the compiler in emitTeamsCall() and emitParallelCall().
7752 //
7753 // In contrast, on the NVPTX target, the implementation of
7754 // __tgt_target_teams() launches a GPU kernel with the requested number
7755 // of teams and threads so no additional calls to the runtime are required.
Samuel Antaob68e2db2016-03-03 16:20:23 +00007756 if (NumTeams) {
Arpith Chacko Jacob33c849a2017-01-25 00:57:16 +00007757 // If we have NumTeams defined this means that we have an enclosed teams
7758 // region. Therefore we also expect to have NumThreads defined. These two
7759 // values should be defined in the presence of a teams directive,
7760 // regardless of having any clauses associated. If the user is using teams
7761 // but no clauses, these two values will be the default that should be
7762 // passed to the runtime library - a 32-bit integer with the value zero.
7763 assert(NumThreads && "Thread limit expression should be available along "
7764 "with number of teams.");
Alexey Bataev8451efa2018-01-15 19:06:12 +00007765 llvm::Value *OffloadingArgs[] = {DeviceID,
7766 OutlinedFnID,
7767 PointerNum,
7768 InputInfo.BasePointersArray.getPointer(),
7769 InputInfo.PointersArray.getPointer(),
7770 InputInfo.SizesArray.getPointer(),
7771 MapTypesArray,
7772 NumTeams,
7773 NumThreads};
Samuel Antaob68e2db2016-03-03 16:20:23 +00007774 Return = CGF.EmitRuntimeCall(
Alexey Bataev8451efa2018-01-15 19:06:12 +00007775 createRuntimeFunction(HasNowait ? OMPRTL__tgt_target_teams_nowait
7776 : OMPRTL__tgt_target_teams),
Alexey Bataeva9f77c62017-12-13 21:04:20 +00007777 OffloadingArgs);
Samuel Antaob68e2db2016-03-03 16:20:23 +00007778 } else {
Alexey Bataev8451efa2018-01-15 19:06:12 +00007779 llvm::Value *OffloadingArgs[] = {DeviceID,
7780 OutlinedFnID,
7781 PointerNum,
7782 InputInfo.BasePointersArray.getPointer(),
7783 InputInfo.PointersArray.getPointer(),
7784 InputInfo.SizesArray.getPointer(),
7785 MapTypesArray};
Alexey Bataeva9f77c62017-12-13 21:04:20 +00007786 Return = CGF.EmitRuntimeCall(
Alexey Bataev8451efa2018-01-15 19:06:12 +00007787 createRuntimeFunction(HasNowait ? OMPRTL__tgt_target_nowait
7788 : OMPRTL__tgt_target),
Alexey Bataeva9f77c62017-12-13 21:04:20 +00007789 OffloadingArgs);
Samuel Antaob68e2db2016-03-03 16:20:23 +00007790 }
Samuel Antaobed3c462015-10-02 16:14:20 +00007791
Alexey Bataev2a007e02017-10-02 14:20:58 +00007792 // Check the error code and execute the host version if required.
7793 llvm::BasicBlock *OffloadFailedBlock =
7794 CGF.createBasicBlock("omp_offload.failed");
7795 llvm::BasicBlock *OffloadContBlock =
7796 CGF.createBasicBlock("omp_offload.cont");
7797 llvm::Value *Failed = CGF.Builder.CreateIsNotNull(Return);
7798 CGF.Builder.CreateCondBr(Failed, OffloadFailedBlock, OffloadContBlock);
7799
7800 CGF.EmitBlock(OffloadFailedBlock);
Alexey Bataev8451efa2018-01-15 19:06:12 +00007801 if (RequiresOuterTask) {
7802 CapturedVars.clear();
7803 CGF.GenerateOpenMPCapturedVars(CS, CapturedVars);
7804 }
Stephen Kellyf2ceec42018-08-09 21:08:08 +00007805 emitOutlinedFunctionCall(CGF, D.getBeginLoc(), OutlinedFn, CapturedVars);
Alexey Bataev2a007e02017-10-02 14:20:58 +00007806 CGF.EmitBranch(OffloadContBlock);
7807
7808 CGF.EmitBlock(OffloadContBlock, /*IsFinished=*/true);
Samuel Antaobed3c462015-10-02 16:14:20 +00007809 };
7810
Samuel Antaoee8fb302016-01-06 13:42:12 +00007811 // Notify that the host version must be executed.
Alexey Bataev8451efa2018-01-15 19:06:12 +00007812 auto &&ElseGen = [this, &D, OutlinedFn, &CS, &CapturedVars,
7813 RequiresOuterTask](CodeGenFunction &CGF,
7814 PrePostActionTy &) {
7815 if (RequiresOuterTask) {
7816 CapturedVars.clear();
7817 CGF.GenerateOpenMPCapturedVars(CS, CapturedVars);
7818 }
Stephen Kellyf2ceec42018-08-09 21:08:08 +00007819 emitOutlinedFunctionCall(CGF, D.getBeginLoc(), OutlinedFn, CapturedVars);
Alexey Bataev8451efa2018-01-15 19:06:12 +00007820 };
7821
7822 auto &&TargetThenGen = [this, &ThenGen, &D, &InputInfo, &MapTypesArray,
7823 &CapturedVars, RequiresOuterTask,
7824 &CS](CodeGenFunction &CGF, PrePostActionTy &) {
7825 // Fill up the arrays with all the captured variables.
7826 MappableExprsHandler::MapBaseValuesArrayTy BasePointers;
7827 MappableExprsHandler::MapValuesArrayTy Pointers;
7828 MappableExprsHandler::MapValuesArrayTy Sizes;
7829 MappableExprsHandler::MapFlagsArrayTy MapTypes;
7830
Alexey Bataev8451efa2018-01-15 19:06:12 +00007831 // Get mappable expression information.
7832 MappableExprsHandler MEHandler(D, CGF);
7833
7834 auto RI = CS.getCapturedRecordDecl()->field_begin();
7835 auto CV = CapturedVars.begin();
7836 for (CapturedStmt::const_capture_iterator CI = CS.capture_begin(),
7837 CE = CS.capture_end();
7838 CI != CE; ++CI, ++RI, ++CV) {
Alexey Bataevb3638132018-07-19 16:34:13 +00007839 MappableExprsHandler::MapBaseValuesArrayTy CurBasePointers;
7840 MappableExprsHandler::MapValuesArrayTy CurPointers;
7841 MappableExprsHandler::MapValuesArrayTy CurSizes;
7842 MappableExprsHandler::MapFlagsArrayTy CurMapTypes;
7843 MappableExprsHandler::StructRangeInfoTy PartialStruct;
Alexey Bataev8451efa2018-01-15 19:06:12 +00007844
7845 // VLA sizes are passed to the outlined region by copy and do not have map
7846 // information associated.
7847 if (CI->capturesVariableArrayType()) {
7848 CurBasePointers.push_back(*CV);
7849 CurPointers.push_back(*CV);
7850 CurSizes.push_back(CGF.getTypeSize(RI->getType()));
7851 // Copy to the device as an argument. No need to retrieve it.
7852 CurMapTypes.push_back(MappableExprsHandler::OMP_MAP_LITERAL |
7853 MappableExprsHandler::OMP_MAP_TARGET_PARAM);
7854 } else {
7855 // If we have any information in the map clause, we use it, otherwise we
7856 // just do a default mapping.
7857 MEHandler.generateInfoForCapture(CI, *CV, CurBasePointers, CurPointers,
Alexey Bataevb3638132018-07-19 16:34:13 +00007858 CurSizes, CurMapTypes, PartialStruct);
Alexey Bataev8451efa2018-01-15 19:06:12 +00007859 if (CurBasePointers.empty())
7860 MEHandler.generateDefaultMapInfo(*CI, **RI, *CV, CurBasePointers,
7861 CurPointers, CurSizes, CurMapTypes);
7862 }
7863 // We expect to have at least an element of information for this capture.
7864 assert(!CurBasePointers.empty() &&
7865 "Non-existing map pointer for capture!");
7866 assert(CurBasePointers.size() == CurPointers.size() &&
7867 CurBasePointers.size() == CurSizes.size() &&
7868 CurBasePointers.size() == CurMapTypes.size() &&
7869 "Inconsistent map information sizes!");
7870
Alexey Bataevb3638132018-07-19 16:34:13 +00007871 // If there is an entry in PartialStruct it means we have a struct with
7872 // individual members mapped. Emit an extra combined entry.
7873 if (PartialStruct.Base.isValid())
7874 MEHandler.emitCombinedEntry(BasePointers, Pointers, Sizes, MapTypes,
7875 CurMapTypes, PartialStruct);
7876
Alexey Bataev8451efa2018-01-15 19:06:12 +00007877 // We need to append the results of this capture to what we already have.
7878 BasePointers.append(CurBasePointers.begin(), CurBasePointers.end());
7879 Pointers.append(CurPointers.begin(), CurPointers.end());
7880 Sizes.append(CurSizes.begin(), CurSizes.end());
7881 MapTypes.append(CurMapTypes.begin(), CurMapTypes.end());
7882 }
Alexey Bataev92327c52018-03-26 16:40:55 +00007883 // Map other list items in the map clause which are not captured variables
7884 // but "declare target link" global variables.
Alexey Bataevb3638132018-07-19 16:34:13 +00007885 MEHandler.generateInfoForDeclareTargetLink(BasePointers, Pointers, Sizes,
7886 MapTypes);
Alexey Bataev8451efa2018-01-15 19:06:12 +00007887
7888 TargetDataInfo Info;
7889 // Fill up the arrays and create the arguments.
7890 emitOffloadingArrays(CGF, BasePointers, Pointers, Sizes, MapTypes, Info);
7891 emitOffloadingArraysArgument(CGF, Info.BasePointersArray,
7892 Info.PointersArray, Info.SizesArray,
7893 Info.MapTypesArray, Info);
7894 InputInfo.NumberOfTargetItems = Info.NumberOfPtrs;
7895 InputInfo.BasePointersArray =
7896 Address(Info.BasePointersArray, CGM.getPointerAlign());
7897 InputInfo.PointersArray =
7898 Address(Info.PointersArray, CGM.getPointerAlign());
7899 InputInfo.SizesArray = Address(Info.SizesArray, CGM.getPointerAlign());
7900 MapTypesArray = Info.MapTypesArray;
7901 if (RequiresOuterTask)
7902 CGF.EmitOMPTargetTaskBasedDirective(D, ThenGen, InputInfo);
7903 else
7904 emitInlinedDirective(CGF, D.getDirectiveKind(), ThenGen);
7905 };
7906
7907 auto &&TargetElseGen = [this, &ElseGen, &D, RequiresOuterTask](
7908 CodeGenFunction &CGF, PrePostActionTy &) {
7909 if (RequiresOuterTask) {
7910 CodeGenFunction::OMPTargetDataInfo InputInfo;
7911 CGF.EmitOMPTargetTaskBasedDirective(D, ElseGen, InputInfo);
7912 } else {
7913 emitInlinedDirective(CGF, D.getDirectiveKind(), ElseGen);
7914 }
Samuel Antaoee8fb302016-01-06 13:42:12 +00007915 };
7916
7917 // If we have a target function ID it means that we need to support
7918 // offloading, otherwise, just execute on the host. We need to execute on host
7919 // regardless of the conditional in the if clause if, e.g., the user do not
7920 // specify target triples.
7921 if (OutlinedFnID) {
Alexey Bataev8451efa2018-01-15 19:06:12 +00007922 if (IfCond) {
7923 emitOMPIfClause(CGF, IfCond, TargetThenGen, TargetElseGen);
7924 } else {
7925 RegionCodeGenTy ThenRCG(TargetThenGen);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00007926 ThenRCG(CGF);
Alexey Bataevf539faa2016-03-28 12:58:34 +00007927 }
7928 } else {
Alexey Bataev8451efa2018-01-15 19:06:12 +00007929 RegionCodeGenTy ElseRCG(TargetElseGen);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00007930 ElseRCG(CGF);
Alexey Bataevf539faa2016-03-28 12:58:34 +00007931 }
Samuel Antaobed3c462015-10-02 16:14:20 +00007932}
Samuel Antaoee8fb302016-01-06 13:42:12 +00007933
7934void CGOpenMPRuntime::scanForTargetRegionsFunctions(const Stmt *S,
7935 StringRef ParentName) {
7936 if (!S)
7937 return;
7938
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00007939 // Codegen OMP target directives that offload compute to the device.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007940 bool RequiresDeviceCodegen =
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00007941 isa<OMPExecutableDirective>(S) &&
7942 isOpenMPTargetExecutionDirective(
7943 cast<OMPExecutableDirective>(S)->getDirectiveKind());
Samuel Antaoee8fb302016-01-06 13:42:12 +00007944
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007945 if (RequiresDeviceCodegen) {
7946 const auto &E = *cast<OMPExecutableDirective>(S);
Samuel Antaoee8fb302016-01-06 13:42:12 +00007947 unsigned DeviceID;
7948 unsigned FileID;
7949 unsigned Line;
Stephen Kellyf2ceec42018-08-09 21:08:08 +00007950 getTargetEntryUniqueInfo(CGM.getContext(), E.getBeginLoc(), DeviceID,
Samuel Antao2de62b02016-02-13 23:35:10 +00007951 FileID, Line);
Samuel Antaoee8fb302016-01-06 13:42:12 +00007952
7953 // Is this a target region that should not be emitted as an entry point? If
7954 // so just signal we are done with this target region.
Samuel Antao2de62b02016-02-13 23:35:10 +00007955 if (!OffloadEntriesInfoManager.hasTargetRegionEntryInfo(DeviceID, FileID,
7956 ParentName, Line))
Samuel Antaoee8fb302016-01-06 13:42:12 +00007957 return;
7958
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007959 switch (E.getDirectiveKind()) {
7960 case OMPD_target:
7961 CodeGenFunction::EmitOMPTargetDeviceFunction(CGM, ParentName,
7962 cast<OMPTargetDirective>(E));
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00007963 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007964 case OMPD_target_parallel:
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00007965 CodeGenFunction::EmitOMPTargetParallelDeviceFunction(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007966 CGM, ParentName, cast<OMPTargetParallelDirective>(E));
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00007967 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007968 case OMPD_target_teams:
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00007969 CodeGenFunction::EmitOMPTargetTeamsDeviceFunction(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007970 CGM, ParentName, cast<OMPTargetTeamsDirective>(E));
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00007971 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007972 case OMPD_target_teams_distribute:
Alexey Bataevdfa430f2017-12-08 15:03:50 +00007973 CodeGenFunction::EmitOMPTargetTeamsDistributeDeviceFunction(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007974 CGM, ParentName, cast<OMPTargetTeamsDistributeDirective>(E));
Alexey Bataevdfa430f2017-12-08 15:03:50 +00007975 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007976 case OMPD_target_teams_distribute_simd:
Alexey Bataevfbe17fb2017-12-13 19:45:06 +00007977 CodeGenFunction::EmitOMPTargetTeamsDistributeSimdDeviceFunction(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007978 CGM, ParentName, cast<OMPTargetTeamsDistributeSimdDirective>(E));
Alexey Bataevfbe17fb2017-12-13 19:45:06 +00007979 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007980 case OMPD_target_parallel_for:
Alexey Bataevfb0ebec2017-11-08 20:16:14 +00007981 CodeGenFunction::EmitOMPTargetParallelForDeviceFunction(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007982 CGM, ParentName, cast<OMPTargetParallelForDirective>(E));
Alexey Bataevfb0ebec2017-11-08 20:16:14 +00007983 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007984 case OMPD_target_parallel_for_simd:
Alexey Bataev5d7edca2017-11-09 17:32:15 +00007985 CodeGenFunction::EmitOMPTargetParallelForSimdDeviceFunction(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007986 CGM, ParentName, cast<OMPTargetParallelForSimdDirective>(E));
Alexey Bataev5d7edca2017-11-09 17:32:15 +00007987 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007988 case OMPD_target_simd:
Alexey Bataevf8365372017-11-17 17:57:25 +00007989 CodeGenFunction::EmitOMPTargetSimdDeviceFunction(
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007990 CGM, ParentName, cast<OMPTargetSimdDirective>(E));
Alexey Bataevf8365372017-11-17 17:57:25 +00007991 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007992 case OMPD_target_teams_distribute_parallel_for:
Carlo Bertolli52978c32018-01-03 21:12:44 +00007993 CodeGenFunction::EmitOMPTargetTeamsDistributeParallelForDeviceFunction(
7994 CGM, ParentName,
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007995 cast<OMPTargetTeamsDistributeParallelForDirective>(E));
Carlo Bertolli52978c32018-01-03 21:12:44 +00007996 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00007997 case OMPD_target_teams_distribute_parallel_for_simd:
Alexey Bataev647dd842018-01-15 20:59:40 +00007998 CodeGenFunction::
7999 EmitOMPTargetTeamsDistributeParallelForSimdDeviceFunction(
8000 CGM, ParentName,
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008001 cast<OMPTargetTeamsDistributeParallelForSimdDirective>(E));
Alexey Bataev647dd842018-01-15 20:59:40 +00008002 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008003 case OMPD_parallel:
8004 case OMPD_for:
8005 case OMPD_parallel_for:
8006 case OMPD_parallel_sections:
8007 case OMPD_for_simd:
8008 case OMPD_parallel_for_simd:
8009 case OMPD_cancel:
8010 case OMPD_cancellation_point:
8011 case OMPD_ordered:
8012 case OMPD_threadprivate:
8013 case OMPD_task:
8014 case OMPD_simd:
8015 case OMPD_sections:
8016 case OMPD_section:
8017 case OMPD_single:
8018 case OMPD_master:
8019 case OMPD_critical:
8020 case OMPD_taskyield:
8021 case OMPD_barrier:
8022 case OMPD_taskwait:
8023 case OMPD_taskgroup:
8024 case OMPD_atomic:
8025 case OMPD_flush:
8026 case OMPD_teams:
8027 case OMPD_target_data:
8028 case OMPD_target_exit_data:
8029 case OMPD_target_enter_data:
8030 case OMPD_distribute:
8031 case OMPD_distribute_simd:
8032 case OMPD_distribute_parallel_for:
8033 case OMPD_distribute_parallel_for_simd:
8034 case OMPD_teams_distribute:
8035 case OMPD_teams_distribute_simd:
8036 case OMPD_teams_distribute_parallel_for:
8037 case OMPD_teams_distribute_parallel_for_simd:
8038 case OMPD_target_update:
8039 case OMPD_declare_simd:
8040 case OMPD_declare_target:
8041 case OMPD_end_declare_target:
8042 case OMPD_declare_reduction:
8043 case OMPD_taskloop:
8044 case OMPD_taskloop_simd:
8045 case OMPD_unknown:
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00008046 llvm_unreachable("Unknown target directive for OpenMP device codegen.");
8047 }
Samuel Antaoee8fb302016-01-06 13:42:12 +00008048 return;
8049 }
8050
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008051 if (const auto *E = dyn_cast<OMPExecutableDirective>(S)) {
Alexey Bataev475a7442018-01-12 19:39:11 +00008052 if (!E->hasAssociatedStmt() || !E->getAssociatedStmt())
Samuel Antaoee8fb302016-01-06 13:42:12 +00008053 return;
8054
8055 scanForTargetRegionsFunctions(
Alexey Bataev475a7442018-01-12 19:39:11 +00008056 E->getInnermostCapturedStmt()->getCapturedStmt(), ParentName);
Samuel Antaoee8fb302016-01-06 13:42:12 +00008057 return;
8058 }
8059
8060 // If this is a lambda function, look into its body.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008061 if (const auto *L = dyn_cast<LambdaExpr>(S))
Samuel Antaoee8fb302016-01-06 13:42:12 +00008062 S = L->getBody();
8063
8064 // Keep looking for target regions recursively.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008065 for (const Stmt *II : S->children())
Samuel Antaoee8fb302016-01-06 13:42:12 +00008066 scanForTargetRegionsFunctions(II, ParentName);
Samuel Antaoee8fb302016-01-06 13:42:12 +00008067}
8068
8069bool CGOpenMPRuntime::emitTargetFunctions(GlobalDecl GD) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008070 const auto *FD = cast<FunctionDecl>(GD.getDecl());
Samuel Antaoee8fb302016-01-06 13:42:12 +00008071
8072 // If emitting code for the host, we do not process FD here. Instead we do
8073 // the normal code generation.
8074 if (!CGM.getLangOpts().OpenMPIsDevice)
8075 return false;
8076
8077 // Try to detect target regions in the function.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008078 scanForTargetRegionsFunctions(FD->getBody(), CGM.getMangledName(GD));
Samuel Antaoee8fb302016-01-06 13:42:12 +00008079
Alexey Bataev4f4bf7c2018-03-15 15:47:20 +00008080 // Do not to emit function if it is not marked as declare target.
Alexey Bataevfb388282018-05-01 14:09:46 +00008081 return !isDeclareTargetDeclaration(FD) &&
8082 AlreadyEmittedTargetFunctions.count(FD->getCanonicalDecl()) == 0;
Samuel Antaoee8fb302016-01-06 13:42:12 +00008083}
8084
8085bool CGOpenMPRuntime::emitTargetGlobalVariable(GlobalDecl GD) {
8086 if (!CGM.getLangOpts().OpenMPIsDevice)
8087 return false;
8088
8089 // Check if there are Ctors/Dtors in this declaration and look for target
8090 // regions in it. We use the complete variant to produce the kernel name
8091 // mangling.
8092 QualType RDTy = cast<VarDecl>(GD.getDecl())->getType();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008093 if (const auto *RD = RDTy->getBaseElementTypeUnsafe()->getAsCXXRecordDecl()) {
8094 for (const CXXConstructorDecl *Ctor : RD->ctors()) {
Samuel Antaoee8fb302016-01-06 13:42:12 +00008095 StringRef ParentName =
8096 CGM.getMangledName(GlobalDecl(Ctor, Ctor_Complete));
8097 scanForTargetRegionsFunctions(Ctor->getBody(), ParentName);
8098 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008099 if (const CXXDestructorDecl *Dtor = RD->getDestructor()) {
Samuel Antaoee8fb302016-01-06 13:42:12 +00008100 StringRef ParentName =
8101 CGM.getMangledName(GlobalDecl(Dtor, Dtor_Complete));
8102 scanForTargetRegionsFunctions(Dtor->getBody(), ParentName);
8103 }
8104 }
8105
Alexey Bataev4f4bf7c2018-03-15 15:47:20 +00008106 // Do not to emit variable if it is not marked as declare target.
Alexey Bataev92327c52018-03-26 16:40:55 +00008107 llvm::Optional<OMPDeclareTargetDeclAttr::MapTypeTy> Res =
Alexey Bataev03f270c2018-03-30 18:31:07 +00008108 isDeclareTargetDeclaration(cast<VarDecl>(GD.getDecl()));
Alexey Bataevbf8fe712018-08-07 16:14:36 +00008109 if (!Res || *Res == OMPDeclareTargetDeclAttr::MT_Link) {
8110 if (CGM.getContext().DeclMustBeEmitted(GD.getDecl()))
8111 DeferredGlobalVariables.insert(cast<VarDecl>(GD.getDecl()));
8112 return true;
8113 }
8114 return false;
Samuel Antaoee8fb302016-01-06 13:42:12 +00008115}
8116
Alexey Bataev03f270c2018-03-30 18:31:07 +00008117void CGOpenMPRuntime::registerTargetGlobalVariable(const VarDecl *VD,
8118 llvm::Constant *Addr) {
8119 if (llvm::Optional<OMPDeclareTargetDeclAttr::MapTypeTy> Res =
8120 isDeclareTargetDeclaration(VD)) {
8121 OffloadEntriesInfoManagerTy::OMPTargetGlobalVarEntryKind Flags;
8122 StringRef VarName;
8123 CharUnits VarSize;
8124 llvm::GlobalValue::LinkageTypes Linkage;
8125 switch (*Res) {
8126 case OMPDeclareTargetDeclAttr::MT_To:
8127 Flags = OffloadEntriesInfoManagerTy::OMPTargetGlobalVarEntryTo;
8128 VarName = CGM.getMangledName(VD);
8129 VarSize = CGM.getContext().getTypeSizeInChars(VD->getType());
8130 Linkage = CGM.getLLVMLinkageVarDefinition(VD, /*IsConstant=*/false);
Alexey Bataev38235142018-07-31 16:40:15 +00008131 // Temp solution to prevent optimizations of the internal variables.
8132 if (CGM.getLangOpts().OpenMPIsDevice && !VD->isExternallyVisible()) {
8133 std::string RefName = getName({VarName, "ref"});
8134 if (!CGM.GetGlobalValue(RefName)) {
8135 llvm::Constant *AddrRef =
8136 getOrCreateInternalVariable(Addr->getType(), RefName);
8137 auto *GVAddrRef = cast<llvm::GlobalVariable>(AddrRef);
8138 GVAddrRef->setConstant(/*Val=*/true);
8139 GVAddrRef->setLinkage(llvm::GlobalValue::InternalLinkage);
8140 GVAddrRef->setInitializer(Addr);
8141 CGM.addCompilerUsedGlobal(GVAddrRef);
8142 }
8143 }
Alexey Bataev03f270c2018-03-30 18:31:07 +00008144 break;
8145 case OMPDeclareTargetDeclAttr::MT_Link:
Alexey Bataevc52f01d2018-07-16 20:05:25 +00008146 Flags = OffloadEntriesInfoManagerTy::OMPTargetGlobalVarEntryLink;
8147 if (CGM.getLangOpts().OpenMPIsDevice) {
8148 VarName = Addr->getName();
8149 Addr = nullptr;
8150 } else {
8151 VarName = getAddrOfDeclareTargetLink(VD).getName();
Alexey Bataev03f270c2018-03-30 18:31:07 +00008152 Addr =
8153 cast<llvm::Constant>(getAddrOfDeclareTargetLink(VD).getPointer());
8154 }
Alexey Bataev03f270c2018-03-30 18:31:07 +00008155 VarSize = CGM.getPointerSize();
8156 Linkage = llvm::GlobalValue::WeakAnyLinkage;
8157 break;
8158 }
8159 OffloadEntriesInfoManager.registerDeviceGlobalVarEntryInfo(
8160 VarName, Addr, VarSize, Flags, Linkage);
8161 }
8162}
8163
Samuel Antaoee8fb302016-01-06 13:42:12 +00008164bool CGOpenMPRuntime::emitTargetGlobal(GlobalDecl GD) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008165 if (isa<FunctionDecl>(GD.getDecl()))
Samuel Antaoee8fb302016-01-06 13:42:12 +00008166 return emitTargetFunctions(GD);
8167
8168 return emitTargetGlobalVariable(GD);
8169}
8170
Alexey Bataevbf8fe712018-08-07 16:14:36 +00008171void CGOpenMPRuntime::emitDeferredTargetDecls() const {
8172 for (const VarDecl *VD : DeferredGlobalVariables) {
8173 llvm::Optional<OMPDeclareTargetDeclAttr::MapTypeTy> Res =
8174 isDeclareTargetDeclaration(VD);
8175 if (Res) {
8176 assert(*Res != OMPDeclareTargetDeclAttr::MT_Link &&
8177 "Implicit declare target variables must be only to().");
8178 CGM.EmitGlobal(VD);
8179 }
8180 }
8181}
8182
Alexey Bataev4f4bf7c2018-03-15 15:47:20 +00008183CGOpenMPRuntime::DisableAutoDeclareTargetRAII::DisableAutoDeclareTargetRAII(
8184 CodeGenModule &CGM)
8185 : CGM(CGM) {
8186 if (CGM.getLangOpts().OpenMPIsDevice) {
8187 SavedShouldMarkAsGlobal = CGM.getOpenMPRuntime().ShouldMarkAsGlobal;
8188 CGM.getOpenMPRuntime().ShouldMarkAsGlobal = false;
8189 }
8190}
8191
8192CGOpenMPRuntime::DisableAutoDeclareTargetRAII::~DisableAutoDeclareTargetRAII() {
8193 if (CGM.getLangOpts().OpenMPIsDevice)
8194 CGM.getOpenMPRuntime().ShouldMarkAsGlobal = SavedShouldMarkAsGlobal;
8195}
8196
Alexey Bataev6d944102018-05-02 15:45:28 +00008197bool CGOpenMPRuntime::markAsGlobalTarget(GlobalDecl GD) {
Alexey Bataev4f4bf7c2018-03-15 15:47:20 +00008198 if (!CGM.getLangOpts().OpenMPIsDevice || !ShouldMarkAsGlobal)
8199 return true;
Alexey Bataev4f4bf7c2018-03-15 15:47:20 +00008200
Alexey Bataev6d944102018-05-02 15:45:28 +00008201 const auto *D = cast<FunctionDecl>(GD.getDecl());
Alexey Bataev4f4bf7c2018-03-15 15:47:20 +00008202 const FunctionDecl *FD = D->getCanonicalDecl();
Alexey Bataev34f8a702018-03-28 14:28:54 +00008203 // Do not to emit function if it is marked as declare target as it was already
8204 // emitted.
8205 if (isDeclareTargetDeclaration(D)) {
8206 if (D->hasBody() && AlreadyEmittedTargetFunctions.count(FD) == 0) {
8207 if (auto *F = dyn_cast_or_null<llvm::Function>(
Alexey Bataev6d944102018-05-02 15:45:28 +00008208 CGM.GetGlobalValue(CGM.getMangledName(GD))))
Alexey Bataev34f8a702018-03-28 14:28:54 +00008209 return !F->isDeclaration();
8210 return false;
8211 }
8212 return true;
8213 }
8214
Alexey Bataev4f4bf7c2018-03-15 15:47:20 +00008215 return !AlreadyEmittedTargetFunctions.insert(FD).second;
8216}
8217
Samuel Antaoee8fb302016-01-06 13:42:12 +00008218llvm::Function *CGOpenMPRuntime::emitRegistrationFunction() {
8219 // If we have offloading in the current module, we need to emit the entries
8220 // now and register the offloading descriptor.
8221 createOffloadEntriesAndInfoMetadata();
8222
8223 // Create and register the offloading binary descriptors. This is the main
8224 // entity that captures all the information about offloading in the current
8225 // compilation unit.
8226 return createOffloadingBinaryDescriptorRegistration();
8227}
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00008228
8229void CGOpenMPRuntime::emitTeamsCall(CodeGenFunction &CGF,
8230 const OMPExecutableDirective &D,
8231 SourceLocation Loc,
8232 llvm::Value *OutlinedFn,
8233 ArrayRef<llvm::Value *> CapturedVars) {
8234 if (!CGF.HaveInsertPoint())
8235 return;
8236
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008237 llvm::Value *RTLoc = emitUpdateLocation(CGF, Loc);
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00008238 CodeGenFunction::RunCleanupsScope Scope(CGF);
8239
8240 // Build call __kmpc_fork_teams(loc, n, microtask, var1, .., varn);
8241 llvm::Value *Args[] = {
8242 RTLoc,
8243 CGF.Builder.getInt32(CapturedVars.size()), // Number of captured vars
8244 CGF.Builder.CreateBitCast(OutlinedFn, getKmpc_MicroPointerTy())};
8245 llvm::SmallVector<llvm::Value *, 16> RealArgs;
8246 RealArgs.append(std::begin(Args), std::end(Args));
8247 RealArgs.append(CapturedVars.begin(), CapturedVars.end());
8248
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008249 llvm::Value *RTLFn = createRuntimeFunction(OMPRTL__kmpc_fork_teams);
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00008250 CGF.EmitRuntimeCall(RTLFn, RealArgs);
8251}
8252
8253void CGOpenMPRuntime::emitNumTeamsClause(CodeGenFunction &CGF,
Carlo Bertollic6872252016-04-04 15:55:02 +00008254 const Expr *NumTeams,
8255 const Expr *ThreadLimit,
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00008256 SourceLocation Loc) {
8257 if (!CGF.HaveInsertPoint())
8258 return;
8259
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008260 llvm::Value *RTLoc = emitUpdateLocation(CGF, Loc);
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00008261
Carlo Bertollic6872252016-04-04 15:55:02 +00008262 llvm::Value *NumTeamsVal =
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008263 NumTeams
Carlo Bertollic6872252016-04-04 15:55:02 +00008264 ? CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(NumTeams),
8265 CGF.CGM.Int32Ty, /* isSigned = */ true)
8266 : CGF.Builder.getInt32(0);
8267
8268 llvm::Value *ThreadLimitVal =
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008269 ThreadLimit
Carlo Bertollic6872252016-04-04 15:55:02 +00008270 ? CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(ThreadLimit),
8271 CGF.CGM.Int32Ty, /* isSigned = */ true)
8272 : CGF.Builder.getInt32(0);
8273
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00008274 // Build call __kmpc_push_num_teamss(&loc, global_tid, num_teams, thread_limit)
Carlo Bertollic6872252016-04-04 15:55:02 +00008275 llvm::Value *PushNumTeamsArgs[] = {RTLoc, getThreadID(CGF, Loc), NumTeamsVal,
8276 ThreadLimitVal};
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00008277 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_push_num_teams),
8278 PushNumTeamsArgs);
8279}
Samuel Antaodf158d52016-04-27 22:58:19 +00008280
Samuel Antaocc10b852016-07-28 14:23:26 +00008281void CGOpenMPRuntime::emitTargetDataCalls(
8282 CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond,
8283 const Expr *Device, const RegionCodeGenTy &CodeGen, TargetDataInfo &Info) {
Samuel Antaodf158d52016-04-27 22:58:19 +00008284 if (!CGF.HaveInsertPoint())
8285 return;
8286
Samuel Antaocc10b852016-07-28 14:23:26 +00008287 // Action used to replace the default codegen action and turn privatization
8288 // off.
8289 PrePostActionTy NoPrivAction;
Samuel Antaodf158d52016-04-27 22:58:19 +00008290
8291 // Generate the code for the opening of the data environment. Capture all the
8292 // arguments of the runtime call by reference because they are used in the
8293 // closing of the region.
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008294 auto &&BeginThenGen = [this, &D, Device, &Info,
8295 &CodeGen](CodeGenFunction &CGF, PrePostActionTy &) {
Samuel Antaodf158d52016-04-27 22:58:19 +00008296 // Fill up the arrays with all the mapped variables.
Samuel Antaocc10b852016-07-28 14:23:26 +00008297 MappableExprsHandler::MapBaseValuesArrayTy BasePointers;
Samuel Antaodf158d52016-04-27 22:58:19 +00008298 MappableExprsHandler::MapValuesArrayTy Pointers;
8299 MappableExprsHandler::MapValuesArrayTy Sizes;
8300 MappableExprsHandler::MapFlagsArrayTy MapTypes;
8301
8302 // Get map clause information.
8303 MappableExprsHandler MCHandler(D, CGF);
8304 MCHandler.generateAllInfo(BasePointers, Pointers, Sizes, MapTypes);
Samuel Antaodf158d52016-04-27 22:58:19 +00008305
8306 // Fill up the arrays and create the arguments.
Samuel Antaocc10b852016-07-28 14:23:26 +00008307 emitOffloadingArrays(CGF, BasePointers, Pointers, Sizes, MapTypes, Info);
Samuel Antaodf158d52016-04-27 22:58:19 +00008308
8309 llvm::Value *BasePointersArrayArg = nullptr;
8310 llvm::Value *PointersArrayArg = nullptr;
8311 llvm::Value *SizesArrayArg = nullptr;
8312 llvm::Value *MapTypesArrayArg = nullptr;
8313 emitOffloadingArraysArgument(CGF, BasePointersArrayArg, PointersArrayArg,
Samuel Antaocc10b852016-07-28 14:23:26 +00008314 SizesArrayArg, MapTypesArrayArg, Info);
Samuel Antaodf158d52016-04-27 22:58:19 +00008315
8316 // Emit device ID if any.
8317 llvm::Value *DeviceID = nullptr;
George Rokos63bc9d62017-11-21 18:25:12 +00008318 if (Device) {
Samuel Antaodf158d52016-04-27 22:58:19 +00008319 DeviceID = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(Device),
George Rokos63bc9d62017-11-21 18:25:12 +00008320 CGF.Int64Ty, /*isSigned=*/true);
8321 } else {
8322 DeviceID = CGF.Builder.getInt64(OMP_DEVICEID_UNDEF);
8323 }
Samuel Antaodf158d52016-04-27 22:58:19 +00008324
8325 // Emit the number of elements in the offloading arrays.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008326 llvm::Value *PointerNum = CGF.Builder.getInt32(Info.NumberOfPtrs);
Samuel Antaodf158d52016-04-27 22:58:19 +00008327
8328 llvm::Value *OffloadingArgs[] = {
8329 DeviceID, PointerNum, BasePointersArrayArg,
8330 PointersArrayArg, SizesArrayArg, MapTypesArrayArg};
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008331 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__tgt_target_data_begin),
Samuel Antaodf158d52016-04-27 22:58:19 +00008332 OffloadingArgs);
Samuel Antaocc10b852016-07-28 14:23:26 +00008333
8334 // If device pointer privatization is required, emit the body of the region
8335 // here. It will have to be duplicated: with and without privatization.
8336 if (!Info.CaptureDeviceAddrMap.empty())
8337 CodeGen(CGF);
Samuel Antaodf158d52016-04-27 22:58:19 +00008338 };
8339
8340 // Generate code for the closing of the data region.
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008341 auto &&EndThenGen = [this, Device, &Info](CodeGenFunction &CGF,
8342 PrePostActionTy &) {
Samuel Antaocc10b852016-07-28 14:23:26 +00008343 assert(Info.isValid() && "Invalid data environment closing arguments.");
Samuel Antaodf158d52016-04-27 22:58:19 +00008344
8345 llvm::Value *BasePointersArrayArg = nullptr;
8346 llvm::Value *PointersArrayArg = nullptr;
8347 llvm::Value *SizesArrayArg = nullptr;
8348 llvm::Value *MapTypesArrayArg = nullptr;
8349 emitOffloadingArraysArgument(CGF, BasePointersArrayArg, PointersArrayArg,
Samuel Antaocc10b852016-07-28 14:23:26 +00008350 SizesArrayArg, MapTypesArrayArg, Info);
Samuel Antaodf158d52016-04-27 22:58:19 +00008351
8352 // Emit device ID if any.
8353 llvm::Value *DeviceID = nullptr;
George Rokos63bc9d62017-11-21 18:25:12 +00008354 if (Device) {
Samuel Antaodf158d52016-04-27 22:58:19 +00008355 DeviceID = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(Device),
George Rokos63bc9d62017-11-21 18:25:12 +00008356 CGF.Int64Ty, /*isSigned=*/true);
8357 } else {
8358 DeviceID = CGF.Builder.getInt64(OMP_DEVICEID_UNDEF);
8359 }
Samuel Antaodf158d52016-04-27 22:58:19 +00008360
8361 // Emit the number of elements in the offloading arrays.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008362 llvm::Value *PointerNum = CGF.Builder.getInt32(Info.NumberOfPtrs);
Samuel Antaodf158d52016-04-27 22:58:19 +00008363
8364 llvm::Value *OffloadingArgs[] = {
8365 DeviceID, PointerNum, BasePointersArrayArg,
8366 PointersArrayArg, SizesArrayArg, MapTypesArrayArg};
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008367 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__tgt_target_data_end),
Samuel Antaodf158d52016-04-27 22:58:19 +00008368 OffloadingArgs);
8369 };
8370
Samuel Antaocc10b852016-07-28 14:23:26 +00008371 // If we need device pointer privatization, we need to emit the body of the
8372 // region with no privatization in the 'else' branch of the conditional.
8373 // Otherwise, we don't have to do anything.
8374 auto &&BeginElseGen = [&Info, &CodeGen, &NoPrivAction](CodeGenFunction &CGF,
8375 PrePostActionTy &) {
8376 if (!Info.CaptureDeviceAddrMap.empty()) {
8377 CodeGen.setAction(NoPrivAction);
8378 CodeGen(CGF);
8379 }
8380 };
8381
8382 // We don't have to do anything to close the region if the if clause evaluates
8383 // to false.
8384 auto &&EndElseGen = [](CodeGenFunction &CGF, PrePostActionTy &) {};
Samuel Antaodf158d52016-04-27 22:58:19 +00008385
8386 if (IfCond) {
Samuel Antaocc10b852016-07-28 14:23:26 +00008387 emitOMPIfClause(CGF, IfCond, BeginThenGen, BeginElseGen);
Samuel Antaodf158d52016-04-27 22:58:19 +00008388 } else {
Samuel Antaocc10b852016-07-28 14:23:26 +00008389 RegionCodeGenTy RCG(BeginThenGen);
8390 RCG(CGF);
Samuel Antaodf158d52016-04-27 22:58:19 +00008391 }
8392
Samuel Antaocc10b852016-07-28 14:23:26 +00008393 // If we don't require privatization of device pointers, we emit the body in
8394 // between the runtime calls. This avoids duplicating the body code.
8395 if (Info.CaptureDeviceAddrMap.empty()) {
8396 CodeGen.setAction(NoPrivAction);
8397 CodeGen(CGF);
8398 }
Samuel Antaodf158d52016-04-27 22:58:19 +00008399
8400 if (IfCond) {
Samuel Antaocc10b852016-07-28 14:23:26 +00008401 emitOMPIfClause(CGF, IfCond, EndThenGen, EndElseGen);
Samuel Antaodf158d52016-04-27 22:58:19 +00008402 } else {
Samuel Antaocc10b852016-07-28 14:23:26 +00008403 RegionCodeGenTy RCG(EndThenGen);
8404 RCG(CGF);
Samuel Antaodf158d52016-04-27 22:58:19 +00008405 }
8406}
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00008407
Samuel Antao8d2d7302016-05-26 18:30:22 +00008408void CGOpenMPRuntime::emitTargetDataStandAloneCall(
Samuel Antao8dd66282016-04-27 23:14:30 +00008409 CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond,
8410 const Expr *Device) {
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00008411 if (!CGF.HaveInsertPoint())
8412 return;
8413
Samuel Antao8dd66282016-04-27 23:14:30 +00008414 assert((isa<OMPTargetEnterDataDirective>(D) ||
Samuel Antao8d2d7302016-05-26 18:30:22 +00008415 isa<OMPTargetExitDataDirective>(D) ||
8416 isa<OMPTargetUpdateDirective>(D)) &&
8417 "Expecting either target enter, exit data, or update directives.");
Samuel Antao8dd66282016-04-27 23:14:30 +00008418
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008419 CodeGenFunction::OMPTargetDataInfo InputInfo;
8420 llvm::Value *MapTypesArray = nullptr;
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00008421 // Generate the code for the opening of the data environment.
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008422 auto &&ThenGen = [this, &D, Device, &InputInfo,
8423 &MapTypesArray](CodeGenFunction &CGF, PrePostActionTy &) {
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00008424 // Emit device ID if any.
8425 llvm::Value *DeviceID = nullptr;
George Rokos63bc9d62017-11-21 18:25:12 +00008426 if (Device) {
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00008427 DeviceID = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(Device),
George Rokos63bc9d62017-11-21 18:25:12 +00008428 CGF.Int64Ty, /*isSigned=*/true);
8429 } else {
8430 DeviceID = CGF.Builder.getInt64(OMP_DEVICEID_UNDEF);
8431 }
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00008432
8433 // Emit the number of elements in the offloading arrays.
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008434 llvm::Constant *PointerNum =
8435 CGF.Builder.getInt32(InputInfo.NumberOfTargetItems);
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00008436
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008437 llvm::Value *OffloadingArgs[] = {DeviceID,
8438 PointerNum,
8439 InputInfo.BasePointersArray.getPointer(),
8440 InputInfo.PointersArray.getPointer(),
8441 InputInfo.SizesArray.getPointer(),
8442 MapTypesArray};
Samuel Antao8d2d7302016-05-26 18:30:22 +00008443
Samuel Antao8d2d7302016-05-26 18:30:22 +00008444 // Select the right runtime function call for each expected standalone
8445 // directive.
Alexey Bataev0cc6b8e2017-12-14 17:00:17 +00008446 const bool HasNowait = D.hasClausesOfKind<OMPNowaitClause>();
Samuel Antao8d2d7302016-05-26 18:30:22 +00008447 OpenMPRTLFunction RTLFn;
8448 switch (D.getDirectiveKind()) {
Samuel Antao8d2d7302016-05-26 18:30:22 +00008449 case OMPD_target_enter_data:
Alexey Bataev0cc6b8e2017-12-14 17:00:17 +00008450 RTLFn = HasNowait ? OMPRTL__tgt_target_data_begin_nowait
8451 : OMPRTL__tgt_target_data_begin;
Samuel Antao8d2d7302016-05-26 18:30:22 +00008452 break;
8453 case OMPD_target_exit_data:
Alexey Bataev0cc6b8e2017-12-14 17:00:17 +00008454 RTLFn = HasNowait ? OMPRTL__tgt_target_data_end_nowait
8455 : OMPRTL__tgt_target_data_end;
Samuel Antao8d2d7302016-05-26 18:30:22 +00008456 break;
8457 case OMPD_target_update:
Alexey Bataev0cc6b8e2017-12-14 17:00:17 +00008458 RTLFn = HasNowait ? OMPRTL__tgt_target_data_update_nowait
8459 : OMPRTL__tgt_target_data_update;
Samuel Antao8d2d7302016-05-26 18:30:22 +00008460 break;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008461 case OMPD_parallel:
8462 case OMPD_for:
8463 case OMPD_parallel_for:
8464 case OMPD_parallel_sections:
8465 case OMPD_for_simd:
8466 case OMPD_parallel_for_simd:
8467 case OMPD_cancel:
8468 case OMPD_cancellation_point:
8469 case OMPD_ordered:
8470 case OMPD_threadprivate:
8471 case OMPD_task:
8472 case OMPD_simd:
8473 case OMPD_sections:
8474 case OMPD_section:
8475 case OMPD_single:
8476 case OMPD_master:
8477 case OMPD_critical:
8478 case OMPD_taskyield:
8479 case OMPD_barrier:
8480 case OMPD_taskwait:
8481 case OMPD_taskgroup:
8482 case OMPD_atomic:
8483 case OMPD_flush:
8484 case OMPD_teams:
8485 case OMPD_target_data:
8486 case OMPD_distribute:
8487 case OMPD_distribute_simd:
8488 case OMPD_distribute_parallel_for:
8489 case OMPD_distribute_parallel_for_simd:
8490 case OMPD_teams_distribute:
8491 case OMPD_teams_distribute_simd:
8492 case OMPD_teams_distribute_parallel_for:
8493 case OMPD_teams_distribute_parallel_for_simd:
8494 case OMPD_declare_simd:
8495 case OMPD_declare_target:
8496 case OMPD_end_declare_target:
8497 case OMPD_declare_reduction:
8498 case OMPD_taskloop:
8499 case OMPD_taskloop_simd:
8500 case OMPD_target:
8501 case OMPD_target_simd:
8502 case OMPD_target_teams_distribute:
8503 case OMPD_target_teams_distribute_simd:
8504 case OMPD_target_teams_distribute_parallel_for:
8505 case OMPD_target_teams_distribute_parallel_for_simd:
8506 case OMPD_target_teams:
8507 case OMPD_target_parallel:
8508 case OMPD_target_parallel_for:
8509 case OMPD_target_parallel_for_simd:
8510 case OMPD_unknown:
8511 llvm_unreachable("Unexpected standalone target data directive.");
8512 break;
Samuel Antao8d2d7302016-05-26 18:30:22 +00008513 }
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008514 CGF.EmitRuntimeCall(createRuntimeFunction(RTLFn), OffloadingArgs);
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00008515 };
8516
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008517 auto &&TargetThenGen = [this, &ThenGen, &D, &InputInfo, &MapTypesArray](
8518 CodeGenFunction &CGF, PrePostActionTy &) {
8519 // Fill up the arrays with all the mapped variables.
8520 MappableExprsHandler::MapBaseValuesArrayTy BasePointers;
8521 MappableExprsHandler::MapValuesArrayTy Pointers;
8522 MappableExprsHandler::MapValuesArrayTy Sizes;
8523 MappableExprsHandler::MapFlagsArrayTy MapTypes;
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00008524
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008525 // Get map clause information.
8526 MappableExprsHandler MEHandler(D, CGF);
8527 MEHandler.generateAllInfo(BasePointers, Pointers, Sizes, MapTypes);
8528
8529 TargetDataInfo Info;
8530 // Fill up the arrays and create the arguments.
8531 emitOffloadingArrays(CGF, BasePointers, Pointers, Sizes, MapTypes, Info);
8532 emitOffloadingArraysArgument(CGF, Info.BasePointersArray,
8533 Info.PointersArray, Info.SizesArray,
8534 Info.MapTypesArray, Info);
8535 InputInfo.NumberOfTargetItems = Info.NumberOfPtrs;
8536 InputInfo.BasePointersArray =
8537 Address(Info.BasePointersArray, CGM.getPointerAlign());
8538 InputInfo.PointersArray =
8539 Address(Info.PointersArray, CGM.getPointerAlign());
8540 InputInfo.SizesArray =
8541 Address(Info.SizesArray, CGM.getPointerAlign());
8542 MapTypesArray = Info.MapTypesArray;
8543 if (D.hasClausesOfKind<OMPDependClause>())
8544 CGF.EmitOMPTargetTaskBasedDirective(D, ThenGen, InputInfo);
8545 else
Alexey Bataev768f1f22018-01-09 19:59:25 +00008546 emitInlinedDirective(CGF, D.getDirectiveKind(), ThenGen);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008547 };
8548
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008549 if (IfCond) {
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008550 emitOMPIfClause(CGF, IfCond, TargetThenGen,
8551 [](CodeGenFunction &CGF, PrePostActionTy &) {});
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008552 } else {
Alexey Bataevd2202ca2017-12-27 17:58:32 +00008553 RegionCodeGenTy ThenRCG(TargetThenGen);
8554 ThenRCG(CGF);
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00008555 }
8556}
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008557
8558namespace {
8559 /// Kind of parameter in a function with 'declare simd' directive.
8560 enum ParamKindTy { LinearWithVarStride, Linear, Uniform, Vector };
8561 /// Attribute set of the parameter.
8562 struct ParamAttrTy {
8563 ParamKindTy Kind = Vector;
8564 llvm::APSInt StrideOrArg;
8565 llvm::APSInt Alignment;
8566 };
8567} // namespace
8568
8569static unsigned evaluateCDTSize(const FunctionDecl *FD,
8570 ArrayRef<ParamAttrTy> ParamAttrs) {
8571 // Every vector variant of a SIMD-enabled function has a vector length (VLEN).
8572 // If OpenMP clause "simdlen" is used, the VLEN is the value of the argument
8573 // of that clause. The VLEN value must be power of 2.
8574 // In other case the notion of the function`s "characteristic data type" (CDT)
8575 // is used to compute the vector length.
8576 // CDT is defined in the following order:
8577 // a) For non-void function, the CDT is the return type.
8578 // b) If the function has any non-uniform, non-linear parameters, then the
8579 // CDT is the type of the first such parameter.
8580 // c) If the CDT determined by a) or b) above is struct, union, or class
8581 // type which is pass-by-value (except for the type that maps to the
8582 // built-in complex data type), the characteristic data type is int.
8583 // d) If none of the above three cases is applicable, the CDT is int.
8584 // The VLEN is then determined based on the CDT and the size of vector
8585 // register of that ISA for which current vector version is generated. The
8586 // VLEN is computed using the formula below:
8587 // VLEN = sizeof(vector_register) / sizeof(CDT),
8588 // where vector register size specified in section 3.2.1 Registers and the
8589 // Stack Frame of original AMD64 ABI document.
8590 QualType RetType = FD->getReturnType();
8591 if (RetType.isNull())
8592 return 0;
8593 ASTContext &C = FD->getASTContext();
8594 QualType CDT;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008595 if (!RetType.isNull() && !RetType->isVoidType()) {
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008596 CDT = RetType;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008597 } else {
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008598 unsigned Offset = 0;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008599 if (const auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008600 if (ParamAttrs[Offset].Kind == Vector)
8601 CDT = C.getPointerType(C.getRecordType(MD->getParent()));
8602 ++Offset;
8603 }
8604 if (CDT.isNull()) {
8605 for (unsigned I = 0, E = FD->getNumParams(); I < E; ++I) {
8606 if (ParamAttrs[I + Offset].Kind == Vector) {
8607 CDT = FD->getParamDecl(I)->getType();
8608 break;
8609 }
8610 }
8611 }
8612 }
8613 if (CDT.isNull())
8614 CDT = C.IntTy;
8615 CDT = CDT->getCanonicalTypeUnqualified();
8616 if (CDT->isRecordType() || CDT->isUnionType())
8617 CDT = C.IntTy;
8618 return C.getTypeSize(CDT);
8619}
8620
8621static void
8622emitX86DeclareSimdFunction(const FunctionDecl *FD, llvm::Function *Fn,
Benjamin Kramer81cb4b72016-11-24 16:01:20 +00008623 const llvm::APSInt &VLENVal,
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008624 ArrayRef<ParamAttrTy> ParamAttrs,
8625 OMPDeclareSimdDeclAttr::BranchStateTy State) {
8626 struct ISADataTy {
8627 char ISA;
8628 unsigned VecRegSize;
8629 };
8630 ISADataTy ISAData[] = {
8631 {
8632 'b', 128
8633 }, // SSE
8634 {
8635 'c', 256
8636 }, // AVX
8637 {
8638 'd', 256
8639 }, // AVX2
8640 {
8641 'e', 512
8642 }, // AVX512
8643 };
8644 llvm::SmallVector<char, 2> Masked;
8645 switch (State) {
8646 case OMPDeclareSimdDeclAttr::BS_Undefined:
8647 Masked.push_back('N');
8648 Masked.push_back('M');
8649 break;
8650 case OMPDeclareSimdDeclAttr::BS_Notinbranch:
8651 Masked.push_back('N');
8652 break;
8653 case OMPDeclareSimdDeclAttr::BS_Inbranch:
8654 Masked.push_back('M');
8655 break;
8656 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008657 for (char Mask : Masked) {
8658 for (const ISADataTy &Data : ISAData) {
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008659 SmallString<256> Buffer;
8660 llvm::raw_svector_ostream Out(Buffer);
8661 Out << "_ZGV" << Data.ISA << Mask;
8662 if (!VLENVal) {
8663 Out << llvm::APSInt::getUnsigned(Data.VecRegSize /
8664 evaluateCDTSize(FD, ParamAttrs));
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008665 } else {
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008666 Out << VLENVal;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008667 }
8668 for (const ParamAttrTy &ParamAttr : ParamAttrs) {
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008669 switch (ParamAttr.Kind){
8670 case LinearWithVarStride:
8671 Out << 's' << ParamAttr.StrideOrArg;
8672 break;
8673 case Linear:
8674 Out << 'l';
8675 if (!!ParamAttr.StrideOrArg)
8676 Out << ParamAttr.StrideOrArg;
8677 break;
8678 case Uniform:
8679 Out << 'u';
8680 break;
8681 case Vector:
8682 Out << 'v';
8683 break;
8684 }
8685 if (!!ParamAttr.Alignment)
8686 Out << 'a' << ParamAttr.Alignment;
8687 }
8688 Out << '_' << Fn->getName();
8689 Fn->addFnAttr(Out.str());
8690 }
8691 }
8692}
8693
8694void CGOpenMPRuntime::emitDeclareSimdFunction(const FunctionDecl *FD,
8695 llvm::Function *Fn) {
8696 ASTContext &C = CGM.getContext();
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008697 FD = FD->getMostRecentDecl();
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008698 // Map params to their positions in function decl.
8699 llvm::DenseMap<const Decl *, unsigned> ParamPositions;
8700 if (isa<CXXMethodDecl>(FD))
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008701 ParamPositions.try_emplace(FD, 0);
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008702 unsigned ParamPos = ParamPositions.size();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008703 for (const ParmVarDecl *P : FD->parameters()) {
8704 ParamPositions.try_emplace(P->getCanonicalDecl(), ParamPos);
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008705 ++ParamPos;
8706 }
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008707 while (FD) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008708 for (const auto *Attr : FD->specific_attrs<OMPDeclareSimdDeclAttr>()) {
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008709 llvm::SmallVector<ParamAttrTy, 8> ParamAttrs(ParamPositions.size());
8710 // Mark uniform parameters.
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008711 for (const Expr *E : Attr->uniforms()) {
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008712 E = E->IgnoreParenImpCasts();
8713 unsigned Pos;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008714 if (isa<CXXThisExpr>(E)) {
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008715 Pos = ParamPositions[FD];
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008716 } else {
8717 const auto *PVD = cast<ParmVarDecl>(cast<DeclRefExpr>(E)->getDecl())
8718 ->getCanonicalDecl();
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008719 Pos = ParamPositions[PVD];
8720 }
8721 ParamAttrs[Pos].Kind = Uniform;
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008722 }
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008723 // Get alignment info.
8724 auto NI = Attr->alignments_begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008725 for (const Expr *E : Attr->aligneds()) {
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008726 E = E->IgnoreParenImpCasts();
8727 unsigned Pos;
8728 QualType ParmTy;
8729 if (isa<CXXThisExpr>(E)) {
8730 Pos = ParamPositions[FD];
8731 ParmTy = E->getType();
8732 } else {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008733 const auto *PVD = cast<ParmVarDecl>(cast<DeclRefExpr>(E)->getDecl())
8734 ->getCanonicalDecl();
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008735 Pos = ParamPositions[PVD];
8736 ParmTy = PVD->getType();
8737 }
8738 ParamAttrs[Pos].Alignment =
8739 (*NI)
8740 ? (*NI)->EvaluateKnownConstInt(C)
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008741 : llvm::APSInt::getUnsigned(
8742 C.toCharUnitsFromBits(C.getOpenMPDefaultSimdAlign(ParmTy))
8743 .getQuantity());
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008744 ++NI;
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008745 }
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008746 // Mark linear parameters.
8747 auto SI = Attr->steps_begin();
8748 auto MI = Attr->modifiers_begin();
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008749 for (const Expr *E : Attr->linears()) {
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008750 E = E->IgnoreParenImpCasts();
8751 unsigned Pos;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008752 if (isa<CXXThisExpr>(E)) {
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008753 Pos = ParamPositions[FD];
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008754 } else {
8755 const auto *PVD = cast<ParmVarDecl>(cast<DeclRefExpr>(E)->getDecl())
8756 ->getCanonicalDecl();
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008757 Pos = ParamPositions[PVD];
8758 }
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008759 ParamAttrTy &ParamAttr = ParamAttrs[Pos];
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008760 ParamAttr.Kind = Linear;
8761 if (*SI) {
8762 if (!(*SI)->EvaluateAsInt(ParamAttr.StrideOrArg, C,
8763 Expr::SE_AllowSideEffects)) {
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008764 if (const auto *DRE =
8765 cast<DeclRefExpr>((*SI)->IgnoreParenImpCasts())) {
8766 if (const auto *StridePVD = cast<ParmVarDecl>(DRE->getDecl())) {
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008767 ParamAttr.Kind = LinearWithVarStride;
8768 ParamAttr.StrideOrArg = llvm::APSInt::getUnsigned(
8769 ParamPositions[StridePVD->getCanonicalDecl()]);
8770 }
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008771 }
8772 }
8773 }
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008774 ++SI;
8775 ++MI;
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008776 }
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008777 llvm::APSInt VLENVal;
8778 if (const Expr *VLEN = Attr->getSimdlen())
8779 VLENVal = VLEN->EvaluateKnownConstInt(C);
8780 OMPDeclareSimdDeclAttr::BranchStateTy State = Attr->getBranchState();
8781 if (CGM.getTriple().getArch() == llvm::Triple::x86 ||
8782 CGM.getTriple().getArch() == llvm::Triple::x86_64)
8783 emitX86DeclareSimdFunction(FD, Fn, VLENVal, ParamAttrs, State);
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008784 }
Alexey Bataev20cf67c2018-03-02 18:07:00 +00008785 FD = FD->getPreviousDecl();
Alexey Bataevc7a82b42016-05-06 09:40:08 +00008786 }
8787}
Alexey Bataev8b427062016-05-25 12:36:08 +00008788
8789namespace {
8790/// Cleanup action for doacross support.
8791class DoacrossCleanupTy final : public EHScopeStack::Cleanup {
8792public:
8793 static const int DoacrossFinArgs = 2;
8794
8795private:
8796 llvm::Value *RTLFn;
8797 llvm::Value *Args[DoacrossFinArgs];
8798
8799public:
8800 DoacrossCleanupTy(llvm::Value *RTLFn, ArrayRef<llvm::Value *> CallArgs)
8801 : RTLFn(RTLFn) {
8802 assert(CallArgs.size() == DoacrossFinArgs);
8803 std::copy(CallArgs.begin(), CallArgs.end(), std::begin(Args));
8804 }
8805 void Emit(CodeGenFunction &CGF, Flags /*flags*/) override {
8806 if (!CGF.HaveInsertPoint())
8807 return;
8808 CGF.EmitRuntimeCall(RTLFn, Args);
8809 }
8810};
8811} // namespace
8812
8813void CGOpenMPRuntime::emitDoacrossInit(CodeGenFunction &CGF,
8814 const OMPLoopDirective &D) {
8815 if (!CGF.HaveInsertPoint())
8816 return;
8817
8818 ASTContext &C = CGM.getContext();
8819 QualType Int64Ty = C.getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/true);
8820 RecordDecl *RD;
8821 if (KmpDimTy.isNull()) {
8822 // Build struct kmp_dim { // loop bounds info casted to kmp_int64
8823 // kmp_int64 lo; // lower
8824 // kmp_int64 up; // upper
8825 // kmp_int64 st; // stride
8826 // };
8827 RD = C.buildImplicitRecord("kmp_dim");
8828 RD->startDefinition();
8829 addFieldToRecordDecl(C, RD, Int64Ty);
8830 addFieldToRecordDecl(C, RD, Int64Ty);
8831 addFieldToRecordDecl(C, RD, Int64Ty);
8832 RD->completeDefinition();
8833 KmpDimTy = C.getRecordType(RD);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008834 } else {
Alexey Bataev8b427062016-05-25 12:36:08 +00008835 RD = cast<RecordDecl>(KmpDimTy->getAsTagDecl());
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008836 }
Alexey Bataev8b427062016-05-25 12:36:08 +00008837
8838 Address DimsAddr = CGF.CreateMemTemp(KmpDimTy, "dims");
8839 CGF.EmitNullInitialization(DimsAddr, KmpDimTy);
8840 enum { LowerFD = 0, UpperFD, StrideFD };
8841 // Fill dims with data.
8842 LValue DimsLVal = CGF.MakeAddrLValue(DimsAddr, KmpDimTy);
8843 // dims.upper = num_iterations;
8844 LValue UpperLVal =
8845 CGF.EmitLValueForField(DimsLVal, *std::next(RD->field_begin(), UpperFD));
8846 llvm::Value *NumIterVal = CGF.EmitScalarConversion(
8847 CGF.EmitScalarExpr(D.getNumIterations()), D.getNumIterations()->getType(),
8848 Int64Ty, D.getNumIterations()->getExprLoc());
8849 CGF.EmitStoreOfScalar(NumIterVal, UpperLVal);
8850 // dims.stride = 1;
8851 LValue StrideLVal =
8852 CGF.EmitLValueForField(DimsLVal, *std::next(RD->field_begin(), StrideFD));
8853 CGF.EmitStoreOfScalar(llvm::ConstantInt::getSigned(CGM.Int64Ty, /*V=*/1),
8854 StrideLVal);
8855
8856 // Build call void __kmpc_doacross_init(ident_t *loc, kmp_int32 gtid,
8857 // kmp_int32 num_dims, struct kmp_dim * dims);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008858 llvm::Value *Args[] = {emitUpdateLocation(CGF, D.getBeginLoc()),
8859 getThreadID(CGF, D.getBeginLoc()),
Alexey Bataev8b427062016-05-25 12:36:08 +00008860 llvm::ConstantInt::getSigned(CGM.Int32Ty, 1),
8861 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
8862 DimsAddr.getPointer(), CGM.VoidPtrTy)};
8863
8864 llvm::Value *RTLFn = createRuntimeFunction(OMPRTL__kmpc_doacross_init);
8865 CGF.EmitRuntimeCall(RTLFn, Args);
8866 llvm::Value *FiniArgs[DoacrossCleanupTy::DoacrossFinArgs] = {
8867 emitUpdateLocation(CGF, D.getLocEnd()), getThreadID(CGF, D.getLocEnd())};
8868 llvm::Value *FiniRTLFn = createRuntimeFunction(OMPRTL__kmpc_doacross_fini);
8869 CGF.EHStack.pushCleanup<DoacrossCleanupTy>(NormalAndEHCleanup, FiniRTLFn,
8870 llvm::makeArrayRef(FiniArgs));
8871}
8872
8873void CGOpenMPRuntime::emitDoacrossOrdered(CodeGenFunction &CGF,
8874 const OMPDependClause *C) {
8875 QualType Int64Ty =
8876 CGM.getContext().getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/1);
8877 const Expr *CounterVal = C->getCounterValue();
8878 assert(CounterVal);
8879 llvm::Value *CntVal = CGF.EmitScalarConversion(CGF.EmitScalarExpr(CounterVal),
8880 CounterVal->getType(), Int64Ty,
8881 CounterVal->getExprLoc());
8882 Address CntAddr = CGF.CreateMemTemp(Int64Ty, ".cnt.addr");
8883 CGF.EmitStoreOfScalar(CntVal, CntAddr, /*Volatile=*/false, Int64Ty);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008884 llvm::Value *Args[] = {emitUpdateLocation(CGF, C->getBeginLoc()),
8885 getThreadID(CGF, C->getBeginLoc()),
Alexey Bataev8b427062016-05-25 12:36:08 +00008886 CntAddr.getPointer()};
8887 llvm::Value *RTLFn;
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008888 if (C->getDependencyKind() == OMPC_DEPEND_source) {
Alexey Bataev8b427062016-05-25 12:36:08 +00008889 RTLFn = createRuntimeFunction(OMPRTL__kmpc_doacross_post);
Alexey Bataeva4fa0b82018-04-16 17:59:34 +00008890 } else {
Alexey Bataev8b427062016-05-25 12:36:08 +00008891 assert(C->getDependencyKind() == OMPC_DEPEND_sink);
8892 RTLFn = createRuntimeFunction(OMPRTL__kmpc_doacross_wait);
8893 }
8894 CGF.EmitRuntimeCall(RTLFn, Args);
8895}
8896
Alexey Bataev7ef47a62018-02-22 18:33:31 +00008897void CGOpenMPRuntime::emitCall(CodeGenFunction &CGF, SourceLocation Loc,
8898 llvm::Value *Callee,
8899 ArrayRef<llvm::Value *> Args) const {
8900 assert(Loc.isValid() && "Outlined function call location must be valid.");
Alexey Bataev3c595a62017-08-14 15:01:03 +00008901 auto DL = ApplyDebugLocation::CreateDefaultArtificial(CGF, Loc);
8902
8903 if (auto *Fn = dyn_cast<llvm::Function>(Callee)) {
Alexey Bataev2c7eee52017-08-04 19:10:54 +00008904 if (Fn->doesNotThrow()) {
Alexey Bataev3c595a62017-08-14 15:01:03 +00008905 CGF.EmitNounwindRuntimeCall(Fn, Args);
Alexey Bataev2c7eee52017-08-04 19:10:54 +00008906 return;
8907 }
8908 }
Alexey Bataev3c595a62017-08-14 15:01:03 +00008909 CGF.EmitRuntimeCall(Callee, Args);
8910}
8911
8912void CGOpenMPRuntime::emitOutlinedFunctionCall(
8913 CodeGenFunction &CGF, SourceLocation Loc, llvm::Value *OutlinedFn,
8914 ArrayRef<llvm::Value *> Args) const {
Alexey Bataev7ef47a62018-02-22 18:33:31 +00008915 emitCall(CGF, Loc, OutlinedFn, Args);
Alexey Bataev2c7eee52017-08-04 19:10:54 +00008916}
Alexey Bataev3b8d5582017-08-08 18:04:06 +00008917
8918Address CGOpenMPRuntime::getParameterAddress(CodeGenFunction &CGF,
8919 const VarDecl *NativeParam,
8920 const VarDecl *TargetParam) const {
8921 return CGF.GetAddrOfLocalVar(NativeParam);
8922}
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00008923
Gheorghe-Teodor Bercead3dcf2f2018-03-14 14:17:45 +00008924Address CGOpenMPRuntime::getAddressOfLocalVariable(CodeGenFunction &CGF,
8925 const VarDecl *VD) {
8926 return Address::invalid();
8927}
8928
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00008929llvm::Value *CGOpenMPSIMDRuntime::emitParallelOutlinedFunction(
8930 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
8931 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen) {
8932 llvm_unreachable("Not supported in SIMD-only mode");
8933}
8934
8935llvm::Value *CGOpenMPSIMDRuntime::emitTeamsOutlinedFunction(
8936 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
8937 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen) {
8938 llvm_unreachable("Not supported in SIMD-only mode");
8939}
8940
8941llvm::Value *CGOpenMPSIMDRuntime::emitTaskOutlinedFunction(
8942 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
8943 const VarDecl *PartIDVar, const VarDecl *TaskTVar,
8944 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen,
8945 bool Tied, unsigned &NumberOfParts) {
8946 llvm_unreachable("Not supported in SIMD-only mode");
8947}
8948
8949void CGOpenMPSIMDRuntime::emitParallelCall(CodeGenFunction &CGF,
8950 SourceLocation Loc,
8951 llvm::Value *OutlinedFn,
8952 ArrayRef<llvm::Value *> CapturedVars,
8953 const Expr *IfCond) {
8954 llvm_unreachable("Not supported in SIMD-only mode");
8955}
8956
8957void CGOpenMPSIMDRuntime::emitCriticalRegion(
8958 CodeGenFunction &CGF, StringRef CriticalName,
8959 const RegionCodeGenTy &CriticalOpGen, SourceLocation Loc,
8960 const Expr *Hint) {
8961 llvm_unreachable("Not supported in SIMD-only mode");
8962}
8963
8964void CGOpenMPSIMDRuntime::emitMasterRegion(CodeGenFunction &CGF,
8965 const RegionCodeGenTy &MasterOpGen,
8966 SourceLocation Loc) {
8967 llvm_unreachable("Not supported in SIMD-only mode");
8968}
8969
8970void CGOpenMPSIMDRuntime::emitTaskyieldCall(CodeGenFunction &CGF,
8971 SourceLocation Loc) {
8972 llvm_unreachable("Not supported in SIMD-only mode");
8973}
8974
8975void CGOpenMPSIMDRuntime::emitTaskgroupRegion(
8976 CodeGenFunction &CGF, const RegionCodeGenTy &TaskgroupOpGen,
8977 SourceLocation Loc) {
8978 llvm_unreachable("Not supported in SIMD-only mode");
8979}
8980
8981void CGOpenMPSIMDRuntime::emitSingleRegion(
8982 CodeGenFunction &CGF, const RegionCodeGenTy &SingleOpGen,
8983 SourceLocation Loc, ArrayRef<const Expr *> CopyprivateVars,
8984 ArrayRef<const Expr *> DestExprs, ArrayRef<const Expr *> SrcExprs,
8985 ArrayRef<const Expr *> AssignmentOps) {
8986 llvm_unreachable("Not supported in SIMD-only mode");
8987}
8988
8989void CGOpenMPSIMDRuntime::emitOrderedRegion(CodeGenFunction &CGF,
8990 const RegionCodeGenTy &OrderedOpGen,
8991 SourceLocation Loc,
8992 bool IsThreads) {
8993 llvm_unreachable("Not supported in SIMD-only mode");
8994}
8995
8996void CGOpenMPSIMDRuntime::emitBarrierCall(CodeGenFunction &CGF,
8997 SourceLocation Loc,
8998 OpenMPDirectiveKind Kind,
8999 bool EmitChecks,
9000 bool ForceSimpleCall) {
9001 llvm_unreachable("Not supported in SIMD-only mode");
9002}
9003
9004void CGOpenMPSIMDRuntime::emitForDispatchInit(
9005 CodeGenFunction &CGF, SourceLocation Loc,
9006 const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned,
9007 bool Ordered, const DispatchRTInput &DispatchValues) {
9008 llvm_unreachable("Not supported in SIMD-only mode");
9009}
9010
9011void CGOpenMPSIMDRuntime::emitForStaticInit(
9012 CodeGenFunction &CGF, SourceLocation Loc, OpenMPDirectiveKind DKind,
9013 const OpenMPScheduleTy &ScheduleKind, const StaticRTInput &Values) {
9014 llvm_unreachable("Not supported in SIMD-only mode");
9015}
9016
9017void CGOpenMPSIMDRuntime::emitDistributeStaticInit(
9018 CodeGenFunction &CGF, SourceLocation Loc,
9019 OpenMPDistScheduleClauseKind SchedKind, const StaticRTInput &Values) {
9020 llvm_unreachable("Not supported in SIMD-only mode");
9021}
9022
9023void CGOpenMPSIMDRuntime::emitForOrderedIterationEnd(CodeGenFunction &CGF,
9024 SourceLocation Loc,
9025 unsigned IVSize,
9026 bool IVSigned) {
9027 llvm_unreachable("Not supported in SIMD-only mode");
9028}
9029
9030void CGOpenMPSIMDRuntime::emitForStaticFinish(CodeGenFunction &CGF,
9031 SourceLocation Loc,
9032 OpenMPDirectiveKind DKind) {
9033 llvm_unreachable("Not supported in SIMD-only mode");
9034}
9035
9036llvm::Value *CGOpenMPSIMDRuntime::emitForNext(CodeGenFunction &CGF,
9037 SourceLocation Loc,
9038 unsigned IVSize, bool IVSigned,
9039 Address IL, Address LB,
9040 Address UB, Address ST) {
9041 llvm_unreachable("Not supported in SIMD-only mode");
9042}
9043
9044void CGOpenMPSIMDRuntime::emitNumThreadsClause(CodeGenFunction &CGF,
9045 llvm::Value *NumThreads,
9046 SourceLocation Loc) {
9047 llvm_unreachable("Not supported in SIMD-only mode");
9048}
9049
9050void CGOpenMPSIMDRuntime::emitProcBindClause(CodeGenFunction &CGF,
9051 OpenMPProcBindClauseKind ProcBind,
9052 SourceLocation Loc) {
9053 llvm_unreachable("Not supported in SIMD-only mode");
9054}
9055
9056Address CGOpenMPSIMDRuntime::getAddrOfThreadPrivate(CodeGenFunction &CGF,
9057 const VarDecl *VD,
9058 Address VDAddr,
9059 SourceLocation Loc) {
9060 llvm_unreachable("Not supported in SIMD-only mode");
9061}
9062
9063llvm::Function *CGOpenMPSIMDRuntime::emitThreadPrivateVarDefinition(
9064 const VarDecl *VD, Address VDAddr, SourceLocation Loc, bool PerformInit,
9065 CodeGenFunction *CGF) {
9066 llvm_unreachable("Not supported in SIMD-only mode");
9067}
9068
9069Address CGOpenMPSIMDRuntime::getAddrOfArtificialThreadPrivate(
9070 CodeGenFunction &CGF, QualType VarType, StringRef Name) {
9071 llvm_unreachable("Not supported in SIMD-only mode");
9072}
9073
9074void CGOpenMPSIMDRuntime::emitFlush(CodeGenFunction &CGF,
9075 ArrayRef<const Expr *> Vars,
9076 SourceLocation Loc) {
9077 llvm_unreachable("Not supported in SIMD-only mode");
9078}
9079
9080void CGOpenMPSIMDRuntime::emitTaskCall(CodeGenFunction &CGF, SourceLocation Loc,
9081 const OMPExecutableDirective &D,
9082 llvm::Value *TaskFunction,
9083 QualType SharedsTy, Address Shareds,
9084 const Expr *IfCond,
9085 const OMPTaskDataTy &Data) {
9086 llvm_unreachable("Not supported in SIMD-only mode");
9087}
9088
9089void CGOpenMPSIMDRuntime::emitTaskLoopCall(
9090 CodeGenFunction &CGF, SourceLocation Loc, const OMPLoopDirective &D,
9091 llvm::Value *TaskFunction, QualType SharedsTy, Address Shareds,
9092 const Expr *IfCond, const OMPTaskDataTy &Data) {
9093 llvm_unreachable("Not supported in SIMD-only mode");
9094}
9095
9096void CGOpenMPSIMDRuntime::emitReduction(
9097 CodeGenFunction &CGF, SourceLocation Loc, ArrayRef<const Expr *> Privates,
9098 ArrayRef<const Expr *> LHSExprs, ArrayRef<const Expr *> RHSExprs,
9099 ArrayRef<const Expr *> ReductionOps, ReductionOptionsTy Options) {
9100 assert(Options.SimpleReduction && "Only simple reduction is expected.");
9101 CGOpenMPRuntime::emitReduction(CGF, Loc, Privates, LHSExprs, RHSExprs,
9102 ReductionOps, Options);
9103}
9104
9105llvm::Value *CGOpenMPSIMDRuntime::emitTaskReductionInit(
9106 CodeGenFunction &CGF, SourceLocation Loc, ArrayRef<const Expr *> LHSExprs,
9107 ArrayRef<const Expr *> RHSExprs, const OMPTaskDataTy &Data) {
9108 llvm_unreachable("Not supported in SIMD-only mode");
9109}
9110
9111void CGOpenMPSIMDRuntime::emitTaskReductionFixups(CodeGenFunction &CGF,
9112 SourceLocation Loc,
9113 ReductionCodeGen &RCG,
9114 unsigned N) {
9115 llvm_unreachable("Not supported in SIMD-only mode");
9116}
9117
9118Address CGOpenMPSIMDRuntime::getTaskReductionItem(CodeGenFunction &CGF,
9119 SourceLocation Loc,
9120 llvm::Value *ReductionsPtr,
9121 LValue SharedLVal) {
9122 llvm_unreachable("Not supported in SIMD-only mode");
9123}
9124
9125void CGOpenMPSIMDRuntime::emitTaskwaitCall(CodeGenFunction &CGF,
9126 SourceLocation Loc) {
9127 llvm_unreachable("Not supported in SIMD-only mode");
9128}
9129
9130void CGOpenMPSIMDRuntime::emitCancellationPointCall(
9131 CodeGenFunction &CGF, SourceLocation Loc,
9132 OpenMPDirectiveKind CancelRegion) {
9133 llvm_unreachable("Not supported in SIMD-only mode");
9134}
9135
9136void CGOpenMPSIMDRuntime::emitCancelCall(CodeGenFunction &CGF,
9137 SourceLocation Loc, const Expr *IfCond,
9138 OpenMPDirectiveKind CancelRegion) {
9139 llvm_unreachable("Not supported in SIMD-only mode");
9140}
9141
9142void CGOpenMPSIMDRuntime::emitTargetOutlinedFunction(
9143 const OMPExecutableDirective &D, StringRef ParentName,
9144 llvm::Function *&OutlinedFn, llvm::Constant *&OutlinedFnID,
9145 bool IsOffloadEntry, const RegionCodeGenTy &CodeGen) {
9146 llvm_unreachable("Not supported in SIMD-only mode");
9147}
9148
9149void CGOpenMPSIMDRuntime::emitTargetCall(CodeGenFunction &CGF,
9150 const OMPExecutableDirective &D,
9151 llvm::Value *OutlinedFn,
9152 llvm::Value *OutlinedFnID,
Alexey Bataev8451efa2018-01-15 19:06:12 +00009153 const Expr *IfCond, const Expr *Device) {
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00009154 llvm_unreachable("Not supported in SIMD-only mode");
9155}
9156
9157bool CGOpenMPSIMDRuntime::emitTargetFunctions(GlobalDecl GD) {
9158 llvm_unreachable("Not supported in SIMD-only mode");
9159}
9160
9161bool CGOpenMPSIMDRuntime::emitTargetGlobalVariable(GlobalDecl GD) {
9162 llvm_unreachable("Not supported in SIMD-only mode");
9163}
9164
9165bool CGOpenMPSIMDRuntime::emitTargetGlobal(GlobalDecl GD) {
9166 return false;
9167}
9168
9169llvm::Function *CGOpenMPSIMDRuntime::emitRegistrationFunction() {
9170 return nullptr;
9171}
9172
9173void CGOpenMPSIMDRuntime::emitTeamsCall(CodeGenFunction &CGF,
9174 const OMPExecutableDirective &D,
9175 SourceLocation Loc,
9176 llvm::Value *OutlinedFn,
9177 ArrayRef<llvm::Value *> CapturedVars) {
9178 llvm_unreachable("Not supported in SIMD-only mode");
9179}
9180
9181void CGOpenMPSIMDRuntime::emitNumTeamsClause(CodeGenFunction &CGF,
9182 const Expr *NumTeams,
9183 const Expr *ThreadLimit,
9184 SourceLocation Loc) {
9185 llvm_unreachable("Not supported in SIMD-only mode");
9186}
9187
9188void CGOpenMPSIMDRuntime::emitTargetDataCalls(
9189 CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond,
9190 const Expr *Device, const RegionCodeGenTy &CodeGen, TargetDataInfo &Info) {
9191 llvm_unreachable("Not supported in SIMD-only mode");
9192}
9193
9194void CGOpenMPSIMDRuntime::emitTargetDataStandAloneCall(
9195 CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond,
9196 const Expr *Device) {
9197 llvm_unreachable("Not supported in SIMD-only mode");
9198}
9199
9200void CGOpenMPSIMDRuntime::emitDoacrossInit(CodeGenFunction &CGF,
9201 const OMPLoopDirective &D) {
9202 llvm_unreachable("Not supported in SIMD-only mode");
9203}
9204
9205void CGOpenMPSIMDRuntime::emitDoacrossOrdered(CodeGenFunction &CGF,
9206 const OMPDependClause *C) {
9207 llvm_unreachable("Not supported in SIMD-only mode");
9208}
9209
9210const VarDecl *
9211CGOpenMPSIMDRuntime::translateParameter(const FieldDecl *FD,
9212 const VarDecl *NativeParam) const {
9213 llvm_unreachable("Not supported in SIMD-only mode");
9214}
9215
9216Address
9217CGOpenMPSIMDRuntime::getParameterAddress(CodeGenFunction &CGF,
9218 const VarDecl *NativeParam,
9219 const VarDecl *TargetParam) const {
9220 llvm_unreachable("Not supported in SIMD-only mode");
9221}
9222