blob: a5396a362f22294a78a5b2f8c222c9dafe372b5a [file] [log] [blame]
Alexey Bataev9959db52014-05-06 10:08:46 +00001//===--- CGStmtOpenMP.cpp - Emit LLVM Code from Statements ----------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Alexey Bataev9959db52014-05-06 10:08:46 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This contains code to emit OpenMP nodes as LLVM code.
10//
11//===----------------------------------------------------------------------===//
12
Alexey Bataev3392d762016-02-16 11:18:12 +000013#include "CGCleanup.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000014#include "CGOpenMPRuntime.h"
15#include "CodeGenFunction.h"
16#include "CodeGenModule.h"
Chandler Carruth0d9593d2015-01-14 11:29:14 +000017#include "TargetInfo.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000018#include "clang/AST/Stmt.h"
19#include "clang/AST/StmtOpenMP.h"
Alexey Bataev2bbf7212016-03-03 03:52:24 +000020#include "clang/AST/DeclOpenMP.h"
Alexey Bataev9959db52014-05-06 10:08:46 +000021using namespace clang;
22using namespace CodeGen;
23
Alexey Bataev3392d762016-02-16 11:18:12 +000024namespace {
25/// Lexical scope for OpenMP executable constructs, that handles correct codegen
26/// for captured expressions.
Arpith Chacko Jacobfe4890a2017-01-18 20:40:48 +000027class OMPLexicalScope : public CodeGenFunction::LexicalScope {
Alexey Bataev3392d762016-02-16 11:18:12 +000028 void emitPreInitStmt(CodeGenFunction &CGF, const OMPExecutableDirective &S) {
29 for (const auto *C : S.clauses()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +000030 if (const auto *CPI = OMPClauseWithPreInit::get(C)) {
31 if (const auto *PreInit =
32 cast_or_null<DeclStmt>(CPI->getPreInitStmt())) {
Alexey Bataev2bbf7212016-03-03 03:52:24 +000033 for (const auto *I : PreInit->decls()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +000034 if (!I->hasAttr<OMPCaptureNoInitAttr>()) {
Alexey Bataev2bbf7212016-03-03 03:52:24 +000035 CGF.EmitVarDecl(cast<VarDecl>(*I));
Alexey Bataevddf3db92018-04-13 17:31:06 +000036 } else {
Alexey Bataev2bbf7212016-03-03 03:52:24 +000037 CodeGenFunction::AutoVarEmission Emission =
38 CGF.EmitAutoVarAlloca(cast<VarDecl>(*I));
39 CGF.EmitAutoVarCleanups(Emission);
40 }
41 }
Alexey Bataev3392d762016-02-16 11:18:12 +000042 }
43 }
44 }
45 }
Alexey Bataev4ba78a42016-04-27 07:56:03 +000046 CodeGenFunction::OMPPrivateScope InlinedShareds;
47
48 static bool isCapturedVar(CodeGenFunction &CGF, const VarDecl *VD) {
49 return CGF.LambdaCaptureFields.lookup(VD) ||
50 (CGF.CapturedStmtInfo && CGF.CapturedStmtInfo->lookup(VD)) ||
51 (CGF.CurCodeDecl && isa<BlockDecl>(CGF.CurCodeDecl));
52 }
Alexey Bataev3392d762016-02-16 11:18:12 +000053
Alexey Bataev3392d762016-02-16 11:18:12 +000054public:
Alexey Bataev475a7442018-01-12 19:39:11 +000055 OMPLexicalScope(
56 CodeGenFunction &CGF, const OMPExecutableDirective &S,
57 const llvm::Optional<OpenMPDirectiveKind> CapturedRegion = llvm::None,
58 const bool EmitPreInitStmt = true)
Alexey Bataev4ba78a42016-04-27 07:56:03 +000059 : CodeGenFunction::LexicalScope(CGF, S.getSourceRange()),
60 InlinedShareds(CGF) {
Arpith Chacko Jacobfe4890a2017-01-18 20:40:48 +000061 if (EmitPreInitStmt)
62 emitPreInitStmt(CGF, S);
Alexey Bataev475a7442018-01-12 19:39:11 +000063 if (!CapturedRegion.hasValue())
64 return;
65 assert(S.hasAssociatedStmt() &&
66 "Expected associated statement for inlined directive.");
67 const CapturedStmt *CS = S.getCapturedStmt(*CapturedRegion);
Alexey Bataevddf3db92018-04-13 17:31:06 +000068 for (const auto &C : CS->captures()) {
Alexey Bataev475a7442018-01-12 19:39:11 +000069 if (C.capturesVariable() || C.capturesVariableByCopy()) {
70 auto *VD = C.getCapturedVar();
71 assert(VD == VD->getCanonicalDecl() &&
72 "Canonical decl must be captured.");
73 DeclRefExpr DRE(
Bruno Ricci5fc4db72018-12-21 14:10:18 +000074 CGF.getContext(), const_cast<VarDecl *>(VD),
Alexey Bataev475a7442018-01-12 19:39:11 +000075 isCapturedVar(CGF, VD) || (CGF.CapturedStmtInfo &&
76 InlinedShareds.isGlobalVarCaptured(VD)),
Alexey Bataeva9b9cc02018-01-23 18:12:38 +000077 VD->getType().getNonReferenceType(), VK_LValue, C.getLocation());
Alexey Bataev475a7442018-01-12 19:39:11 +000078 InlinedShareds.addPrivate(VD, [&CGF, &DRE]() -> Address {
79 return CGF.EmitLValue(&DRE).getAddress();
80 });
Alexey Bataev4ba78a42016-04-27 07:56:03 +000081 }
82 }
Alexey Bataev475a7442018-01-12 19:39:11 +000083 (void)InlinedShareds.Privatize();
Alexey Bataev3392d762016-02-16 11:18:12 +000084 }
85};
Alexey Bataev14fa1c62016-03-29 05:34:15 +000086
Arpith Chacko Jacobfe4890a2017-01-18 20:40:48 +000087/// Lexical scope for OpenMP parallel construct, that handles correct codegen
88/// for captured expressions.
89class OMPParallelScope final : public OMPLexicalScope {
90 bool EmitPreInitStmt(const OMPExecutableDirective &S) {
91 OpenMPDirectiveKind Kind = S.getDirectiveKind();
Carlo Bertollib0ff0a62017-04-25 17:52:12 +000092 return !(isOpenMPTargetExecutionDirective(Kind) ||
93 isOpenMPLoopBoundSharingDirective(Kind)) &&
Arpith Chacko Jacobfe4890a2017-01-18 20:40:48 +000094 isOpenMPParallelDirective(Kind);
95 }
96
97public:
98 OMPParallelScope(CodeGenFunction &CGF, const OMPExecutableDirective &S)
Alexey Bataev475a7442018-01-12 19:39:11 +000099 : OMPLexicalScope(CGF, S, /*CapturedRegion=*/llvm::None,
100 EmitPreInitStmt(S)) {}
Arpith Chacko Jacobfe4890a2017-01-18 20:40:48 +0000101};
102
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +0000103/// Lexical scope for OpenMP teams construct, that handles correct codegen
104/// for captured expressions.
105class OMPTeamsScope final : public OMPLexicalScope {
106 bool EmitPreInitStmt(const OMPExecutableDirective &S) {
107 OpenMPDirectiveKind Kind = S.getDirectiveKind();
108 return !isOpenMPTargetExecutionDirective(Kind) &&
109 isOpenMPTeamsDirective(Kind);
110 }
111
112public:
113 OMPTeamsScope(CodeGenFunction &CGF, const OMPExecutableDirective &S)
Alexey Bataev475a7442018-01-12 19:39:11 +0000114 : OMPLexicalScope(CGF, S, /*CapturedRegion=*/llvm::None,
115 EmitPreInitStmt(S)) {}
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +0000116};
117
Alexey Bataev5a3af132016-03-29 08:58:54 +0000118/// Private scope for OpenMP loop-based directives, that supports capturing
119/// of used expression from loop statement.
120class OMPLoopScope : public CodeGenFunction::RunCleanupsScope {
121 void emitPreInitStmt(CodeGenFunction &CGF, const OMPLoopDirective &S) {
Alexey Bataevab4ea222018-03-07 18:17:06 +0000122 CodeGenFunction::OMPMapVars PreCondVars;
Alexey Bataevddf3db92018-04-13 17:31:06 +0000123 for (const auto *E : S.counters()) {
Alexey Bataeve83b3e82017-12-08 20:18:58 +0000124 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataevab4ea222018-03-07 18:17:06 +0000125 (void)PreCondVars.setVarAddr(
126 CGF, VD, CGF.CreateMemTemp(VD->getType().getNonReferenceType()));
Alexey Bataeve83b3e82017-12-08 20:18:58 +0000127 }
Alexey Bataevab4ea222018-03-07 18:17:06 +0000128 (void)PreCondVars.apply(CGF);
Alexey Bataevddf3db92018-04-13 17:31:06 +0000129 if (const auto *PreInits = cast_or_null<DeclStmt>(S.getPreInits())) {
George Burgess IV00f70bd2018-03-01 05:43:23 +0000130 for (const auto *I : PreInits->decls())
131 CGF.EmitVarDecl(cast<VarDecl>(*I));
Alexey Bataev5a3af132016-03-29 08:58:54 +0000132 }
Alexey Bataevab4ea222018-03-07 18:17:06 +0000133 PreCondVars.restore(CGF);
Alexey Bataev5a3af132016-03-29 08:58:54 +0000134 }
135
136public:
137 OMPLoopScope(CodeGenFunction &CGF, const OMPLoopDirective &S)
138 : CodeGenFunction::RunCleanupsScope(CGF) {
139 emitPreInitStmt(CGF, S);
140 }
141};
142
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000143class OMPSimdLexicalScope : public CodeGenFunction::LexicalScope {
144 CodeGenFunction::OMPPrivateScope InlinedShareds;
145
146 static bool isCapturedVar(CodeGenFunction &CGF, const VarDecl *VD) {
147 return CGF.LambdaCaptureFields.lookup(VD) ||
148 (CGF.CapturedStmtInfo && CGF.CapturedStmtInfo->lookup(VD)) ||
149 (CGF.CurCodeDecl && isa<BlockDecl>(CGF.CurCodeDecl) &&
150 cast<BlockDecl>(CGF.CurCodeDecl)->capturesVariable(VD));
151 }
152
153public:
154 OMPSimdLexicalScope(CodeGenFunction &CGF, const OMPExecutableDirective &S)
155 : CodeGenFunction::LexicalScope(CGF, S.getSourceRange()),
156 InlinedShareds(CGF) {
157 for (const auto *C : S.clauses()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000158 if (const auto *CPI = OMPClauseWithPreInit::get(C)) {
159 if (const auto *PreInit =
160 cast_or_null<DeclStmt>(CPI->getPreInitStmt())) {
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000161 for (const auto *I : PreInit->decls()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000162 if (!I->hasAttr<OMPCaptureNoInitAttr>()) {
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000163 CGF.EmitVarDecl(cast<VarDecl>(*I));
Alexey Bataevddf3db92018-04-13 17:31:06 +0000164 } else {
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000165 CodeGenFunction::AutoVarEmission Emission =
166 CGF.EmitAutoVarAlloca(cast<VarDecl>(*I));
167 CGF.EmitAutoVarCleanups(Emission);
168 }
169 }
170 }
171 } else if (const auto *UDP = dyn_cast<OMPUseDevicePtrClause>(C)) {
172 for (const Expr *E : UDP->varlists()) {
173 const Decl *D = cast<DeclRefExpr>(E)->getDecl();
174 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D))
175 CGF.EmitVarDecl(*OED);
176 }
177 }
178 }
179 if (!isOpenMPSimdDirective(S.getDirectiveKind()))
180 CGF.EmitOMPPrivateClause(S, InlinedShareds);
181 if (const auto *TG = dyn_cast<OMPTaskgroupDirective>(&S)) {
182 if (const Expr *E = TG->getReductionRef())
183 CGF.EmitVarDecl(*cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()));
184 }
185 const auto *CS = cast_or_null<CapturedStmt>(S.getAssociatedStmt());
186 while (CS) {
187 for (auto &C : CS->captures()) {
188 if (C.capturesVariable() || C.capturesVariableByCopy()) {
189 auto *VD = C.getCapturedVar();
190 assert(VD == VD->getCanonicalDecl() &&
191 "Canonical decl must be captured.");
Bruno Ricci5fc4db72018-12-21 14:10:18 +0000192 DeclRefExpr DRE(CGF.getContext(), const_cast<VarDecl *>(VD),
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000193 isCapturedVar(CGF, VD) ||
194 (CGF.CapturedStmtInfo &&
195 InlinedShareds.isGlobalVarCaptured(VD)),
196 VD->getType().getNonReferenceType(), VK_LValue,
Alexey Bataeva9b9cc02018-01-23 18:12:38 +0000197 C.getLocation());
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000198 InlinedShareds.addPrivate(VD, [&CGF, &DRE]() -> Address {
199 return CGF.EmitLValue(&DRE).getAddress();
200 });
201 }
202 }
203 CS = dyn_cast<CapturedStmt>(CS->getCapturedStmt());
204 }
205 (void)InlinedShareds.Privatize();
206 }
207};
208
Alexey Bataev3392d762016-02-16 11:18:12 +0000209} // namespace
210
Alexey Bataevf8365372017-11-17 17:57:25 +0000211static void emitCommonOMPTargetDirective(CodeGenFunction &CGF,
212 const OMPExecutableDirective &S,
213 const RegionCodeGenTy &CodeGen);
214
Alexey Bataevf47c4b42017-09-26 13:47:31 +0000215LValue CodeGenFunction::EmitOMPSharedLValue(const Expr *E) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000216 if (const auto *OrigDRE = dyn_cast<DeclRefExpr>(E)) {
217 if (const auto *OrigVD = dyn_cast<VarDecl>(OrigDRE->getDecl())) {
Alexey Bataevf47c4b42017-09-26 13:47:31 +0000218 OrigVD = OrigVD->getCanonicalDecl();
219 bool IsCaptured =
220 LambdaCaptureFields.lookup(OrigVD) ||
221 (CapturedStmtInfo && CapturedStmtInfo->lookup(OrigVD)) ||
222 (CurCodeDecl && isa<BlockDecl>(CurCodeDecl));
Bruno Ricci5fc4db72018-12-21 14:10:18 +0000223 DeclRefExpr DRE(getContext(), const_cast<VarDecl *>(OrigVD), IsCaptured,
Alexey Bataevf47c4b42017-09-26 13:47:31 +0000224 OrigDRE->getType(), VK_LValue, OrigDRE->getExprLoc());
225 return EmitLValue(&DRE);
226 }
227 }
228 return EmitLValue(E);
229}
230
Alexey Bataev1189bd02016-01-26 12:20:39 +0000231llvm::Value *CodeGenFunction::getTypeSize(QualType Ty) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000232 ASTContext &C = getContext();
Alexey Bataev1189bd02016-01-26 12:20:39 +0000233 llvm::Value *Size = nullptr;
234 auto SizeInChars = C.getTypeSizeInChars(Ty);
235 if (SizeInChars.isZero()) {
236 // getTypeSizeInChars() returns 0 for a VLA.
Alexey Bataevddf3db92018-04-13 17:31:06 +0000237 while (const VariableArrayType *VAT = C.getAsVariableArrayType(Ty)) {
238 VlaSizePair VlaSize = getVLASize(VAT);
Sander de Smalen891af03a2018-02-03 13:55:59 +0000239 Ty = VlaSize.Type;
240 Size = Size ? Builder.CreateNUWMul(Size, VlaSize.NumElts)
241 : VlaSize.NumElts;
Alexey Bataev1189bd02016-01-26 12:20:39 +0000242 }
243 SizeInChars = C.getTypeSizeInChars(Ty);
244 if (SizeInChars.isZero())
245 return llvm::ConstantInt::get(SizeTy, /*V=*/0);
Alexey Bataevddf3db92018-04-13 17:31:06 +0000246 return Builder.CreateNUWMul(Size, CGM.getSize(SizeInChars));
247 }
248 return CGM.getSize(SizeInChars);
Alexey Bataev1189bd02016-01-26 12:20:39 +0000249}
250
Alexey Bataev2377fe92015-09-10 08:12:02 +0000251void CodeGenFunction::GenerateOpenMPCapturedVars(
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000252 const CapturedStmt &S, SmallVectorImpl<llvm::Value *> &CapturedVars) {
Alexey Bataev2377fe92015-09-10 08:12:02 +0000253 const RecordDecl *RD = S.getCapturedRecordDecl();
254 auto CurField = RD->field_begin();
255 auto CurCap = S.captures().begin();
256 for (CapturedStmt::const_capture_init_iterator I = S.capture_init_begin(),
257 E = S.capture_init_end();
258 I != E; ++I, ++CurField, ++CurCap) {
259 if (CurField->hasCapturedVLAType()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000260 const VariableArrayType *VAT = CurField->getCapturedVLAType();
261 llvm::Value *Val = VLASizeMap[VAT->getSizeExpr()];
Samuel Antaobed3c462015-10-02 16:14:20 +0000262 CapturedVars.push_back(Val);
Alexey Bataevddf3db92018-04-13 17:31:06 +0000263 } else if (CurCap->capturesThis()) {
Alexey Bataev2377fe92015-09-10 08:12:02 +0000264 CapturedVars.push_back(CXXThisValue);
Alexey Bataevddf3db92018-04-13 17:31:06 +0000265 } else if (CurCap->capturesVariableByCopy()) {
Alexey Bataev1e491372018-01-23 18:44:14 +0000266 llvm::Value *CV = EmitLoadOfScalar(EmitLValue(*I), CurCap->getLocation());
Samuel Antao6d004262016-06-16 18:39:34 +0000267
268 // If the field is not a pointer, we need to save the actual value
269 // and load it as a void pointer.
270 if (!CurField->getType()->isAnyPointerType()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000271 ASTContext &Ctx = getContext();
272 Address DstAddr = CreateMemTemp(
Samuel Antao6d004262016-06-16 18:39:34 +0000273 Ctx.getUIntPtrType(),
Alexey Bataevddf3db92018-04-13 17:31:06 +0000274 Twine(CurCap->getCapturedVar()->getName(), ".casted"));
Samuel Antao6d004262016-06-16 18:39:34 +0000275 LValue DstLV = MakeAddrLValue(DstAddr, Ctx.getUIntPtrType());
276
Alexey Bataevddf3db92018-04-13 17:31:06 +0000277 llvm::Value *SrcAddrVal = EmitScalarConversion(
Samuel Antao6d004262016-06-16 18:39:34 +0000278 DstAddr.getPointer(), Ctx.getPointerType(Ctx.getUIntPtrType()),
Alexey Bataeva9b9cc02018-01-23 18:12:38 +0000279 Ctx.getPointerType(CurField->getType()), CurCap->getLocation());
Samuel Antao6d004262016-06-16 18:39:34 +0000280 LValue SrcLV =
281 MakeNaturalAlignAddrLValue(SrcAddrVal, CurField->getType());
282
283 // Store the value using the source type pointer.
284 EmitStoreThroughLValue(RValue::get(CV), SrcLV);
285
286 // Load the value using the destination type pointer.
Alexey Bataev1e491372018-01-23 18:44:14 +0000287 CV = EmitLoadOfScalar(DstLV, CurCap->getLocation());
Samuel Antao6d004262016-06-16 18:39:34 +0000288 }
289 CapturedVars.push_back(CV);
290 } else {
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000291 assert(CurCap->capturesVariable() && "Expected capture by reference.");
Alexey Bataev2377fe92015-09-10 08:12:02 +0000292 CapturedVars.push_back(EmitLValue(*I).getAddress().getPointer());
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000293 }
Alexey Bataev2377fe92015-09-10 08:12:02 +0000294 }
295}
296
Alexey Bataeva9b9cc02018-01-23 18:12:38 +0000297static Address castValueFromUintptr(CodeGenFunction &CGF, SourceLocation Loc,
298 QualType DstType, StringRef Name,
Alexey Bataev06e80f62019-05-23 18:19:54 +0000299 LValue AddrLV) {
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000300 ASTContext &Ctx = CGF.getContext();
301
Alexey Bataevddf3db92018-04-13 17:31:06 +0000302 llvm::Value *CastedPtr = CGF.EmitScalarConversion(
303 AddrLV.getAddress().getPointer(), Ctx.getUIntPtrType(),
304 Ctx.getPointerType(DstType), Loc);
305 Address TmpAddr =
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000306 CGF.MakeNaturalAlignAddrLValue(CastedPtr, Ctx.getPointerType(DstType))
307 .getAddress();
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000308 return TmpAddr;
309}
310
Alexey Bataevf7ce1662017-04-10 19:16:45 +0000311static QualType getCanonicalParamType(ASTContext &C, QualType T) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000312 if (T->isLValueReferenceType())
Alexey Bataevf7ce1662017-04-10 19:16:45 +0000313 return C.getLValueReferenceType(
314 getCanonicalParamType(C, T.getNonReferenceType()),
315 /*SpelledAsLValue=*/false);
Alexey Bataevf7ce1662017-04-10 19:16:45 +0000316 if (T->isPointerType())
317 return C.getPointerType(getCanonicalParamType(C, T->getPointeeType()));
Alexey Bataevddf3db92018-04-13 17:31:06 +0000318 if (const ArrayType *A = T->getAsArrayTypeUnsafe()) {
319 if (const auto *VLA = dyn_cast<VariableArrayType>(A))
Alexey Bataev1b48c5e2017-10-24 19:52:31 +0000320 return getCanonicalParamType(C, VLA->getElementType());
Alexey Bataevddf3db92018-04-13 17:31:06 +0000321 if (!A->isVariablyModifiedType())
Alexey Bataev1b48c5e2017-10-24 19:52:31 +0000322 return C.getCanonicalType(T);
323 }
Alexey Bataevf7ce1662017-04-10 19:16:45 +0000324 return C.getCanonicalParamType(T);
325}
326
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000327namespace {
328 /// Contains required data for proper outlined function codegen.
329 struct FunctionOptions {
330 /// Captured statement for which the function is generated.
331 const CapturedStmt *S = nullptr;
332 /// true if cast to/from UIntPtr is required for variables captured by
333 /// value.
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000334 const bool UIntPtrCastRequired = true;
Alexey Bataeve754b182017-08-09 19:38:53 +0000335 /// true if only casted arguments must be registered as local args or VLA
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000336 /// sizes.
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000337 const bool RegisterCastedArgsOnly = false;
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000338 /// Name of the generated function.
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000339 const StringRef FunctionName;
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000340 explicit FunctionOptions(const CapturedStmt *S, bool UIntPtrCastRequired,
341 bool RegisterCastedArgsOnly,
Alexey Bataev4aa19052017-08-08 16:45:36 +0000342 StringRef FunctionName)
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000343 : S(S), UIntPtrCastRequired(UIntPtrCastRequired),
344 RegisterCastedArgsOnly(UIntPtrCastRequired && RegisterCastedArgsOnly),
Alexey Bataev4aa19052017-08-08 16:45:36 +0000345 FunctionName(FunctionName) {}
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000346 };
347}
348
Alexey Bataeve754b182017-08-09 19:38:53 +0000349static llvm::Function *emitOutlinedFunctionPrologue(
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000350 CodeGenFunction &CGF, FunctionArgList &Args,
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000351 llvm::MapVector<const Decl *, std::pair<const VarDecl *, Address>>
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000352 &LocalAddrs,
353 llvm::DenseMap<const Decl *, std::pair<const Expr *, llvm::Value *>>
354 &VLASizes,
355 llvm::Value *&CXXThisValue, const FunctionOptions &FO) {
356 const CapturedDecl *CD = FO.S->getCapturedDecl();
357 const RecordDecl *RD = FO.S->getCapturedRecordDecl();
Alexey Bataev2377fe92015-09-10 08:12:02 +0000358 assert(CD->hasBody() && "missing CapturedDecl body");
359
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000360 CXXThisValue = nullptr;
Alexey Bataev2377fe92015-09-10 08:12:02 +0000361 // Build the argument list.
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000362 CodeGenModule &CGM = CGF.CGM;
Alexey Bataev2377fe92015-09-10 08:12:02 +0000363 ASTContext &Ctx = CGM.getContext();
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000364 FunctionArgList TargetArgs;
Alexey Bataev2377fe92015-09-10 08:12:02 +0000365 Args.append(CD->param_begin(),
366 std::next(CD->param_begin(), CD->getContextParamPosition()));
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000367 TargetArgs.append(
368 CD->param_begin(),
369 std::next(CD->param_begin(), CD->getContextParamPosition()));
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000370 auto I = FO.S->captures().begin();
Alexey Bataevb45d43c2017-11-22 16:02:03 +0000371 FunctionDecl *DebugFunctionDecl = nullptr;
372 if (!FO.UIntPtrCastRequired) {
373 FunctionProtoType::ExtProtoInfo EPI;
Jonas Devlieghere64a26302018-11-11 00:56:15 +0000374 QualType FunctionTy = Ctx.getFunctionType(Ctx.VoidTy, llvm::None, EPI);
Alexey Bataevb45d43c2017-11-22 16:02:03 +0000375 DebugFunctionDecl = FunctionDecl::Create(
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000376 Ctx, Ctx.getTranslationUnitDecl(), FO.S->getBeginLoc(),
Jonas Devlieghere64a26302018-11-11 00:56:15 +0000377 SourceLocation(), DeclarationName(), FunctionTy,
378 Ctx.getTrivialTypeSourceInfo(FunctionTy), SC_Static,
379 /*isInlineSpecified=*/false, /*hasWrittenPrototype=*/false);
Alexey Bataevb45d43c2017-11-22 16:02:03 +0000380 }
Alexey Bataevddf3db92018-04-13 17:31:06 +0000381 for (const FieldDecl *FD : RD->fields()) {
Alexey Bataev2377fe92015-09-10 08:12:02 +0000382 QualType ArgType = FD->getType();
383 IdentifierInfo *II = nullptr;
384 VarDecl *CapVar = nullptr;
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000385
386 // If this is a capture by copy and the type is not a pointer, the outlined
387 // function argument type should be uintptr and the value properly casted to
388 // uintptr. This is necessary given that the runtime library is only able to
389 // deal with pointers. We can pass in the same way the VLA type sizes to the
390 // outlined function.
Alexey Bataevddf3db92018-04-13 17:31:06 +0000391 if (FO.UIntPtrCastRequired &&
392 ((I->capturesVariableByCopy() && !ArgType->isAnyPointerType()) ||
393 I->capturesVariableArrayType()))
394 ArgType = Ctx.getUIntPtrType();
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000395
396 if (I->capturesVariable() || I->capturesVariableByCopy()) {
Alexey Bataev2377fe92015-09-10 08:12:02 +0000397 CapVar = I->getCapturedVar();
398 II = CapVar->getIdentifier();
Alexey Bataevddf3db92018-04-13 17:31:06 +0000399 } else if (I->capturesThis()) {
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000400 II = &Ctx.Idents.get("this");
Alexey Bataevddf3db92018-04-13 17:31:06 +0000401 } else {
Alexey Bataev2377fe92015-09-10 08:12:02 +0000402 assert(I->capturesVariableArrayType());
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000403 II = &Ctx.Idents.get("vla");
Alexey Bataev2377fe92015-09-10 08:12:02 +0000404 }
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000405 if (ArgType->isVariablyModifiedType())
Alexey Bataev1b48c5e2017-10-24 19:52:31 +0000406 ArgType = getCanonicalParamType(Ctx, ArgType);
Alexey Bataevb45d43c2017-11-22 16:02:03 +0000407 VarDecl *Arg;
408 if (DebugFunctionDecl && (CapVar || I->capturesThis())) {
409 Arg = ParmVarDecl::Create(
410 Ctx, DebugFunctionDecl,
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000411 CapVar ? CapVar->getBeginLoc() : FD->getBeginLoc(),
Alexey Bataevb45d43c2017-11-22 16:02:03 +0000412 CapVar ? CapVar->getLocation() : FD->getLocation(), II, ArgType,
413 /*TInfo=*/nullptr, SC_None, /*DefArg=*/nullptr);
414 } else {
415 Arg = ImplicitParamDecl::Create(Ctx, /*DC=*/nullptr, FD->getLocation(),
416 II, ArgType, ImplicitParamDecl::Other);
417 }
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000418 Args.emplace_back(Arg);
419 // Do not cast arguments if we emit function with non-original types.
420 TargetArgs.emplace_back(
421 FO.UIntPtrCastRequired
422 ? Arg
423 : CGM.getOpenMPRuntime().translateParameter(FD, Arg));
Alexey Bataev2377fe92015-09-10 08:12:02 +0000424 ++I;
425 }
426 Args.append(
427 std::next(CD->param_begin(), CD->getContextParamPosition() + 1),
428 CD->param_end());
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000429 TargetArgs.append(
430 std::next(CD->param_begin(), CD->getContextParamPosition() + 1),
431 CD->param_end());
Alexey Bataev2377fe92015-09-10 08:12:02 +0000432
433 // Create the function declaration.
Alexey Bataev2377fe92015-09-10 08:12:02 +0000434 const CGFunctionInfo &FuncInfo =
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000435 CGM.getTypes().arrangeBuiltinFunctionDeclaration(Ctx.VoidTy, TargetArgs);
Alexey Bataev2377fe92015-09-10 08:12:02 +0000436 llvm::FunctionType *FuncLLVMTy = CGM.getTypes().GetFunctionType(FuncInfo);
437
Alexey Bataevddf3db92018-04-13 17:31:06 +0000438 auto *F =
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000439 llvm::Function::Create(FuncLLVMTy, llvm::GlobalValue::InternalLinkage,
440 FO.FunctionName, &CGM.getModule());
Alexey Bataev2377fe92015-09-10 08:12:02 +0000441 CGM.SetInternalFunctionAttributes(CD, F, FuncInfo);
442 if (CD->isNothrow())
Alexey Bataev2c7eee52017-08-04 19:10:54 +0000443 F->setDoesNotThrow();
Alexey Bataevc0f879b2018-04-10 20:10:53 +0000444 F->setDoesNotRecurse();
Alexey Bataev2377fe92015-09-10 08:12:02 +0000445
446 // Generate the function.
Alexey Bataev6e01dc12017-08-14 16:03:47 +0000447 CGF.StartFunction(CD, Ctx.VoidTy, F, FuncInfo, TargetArgs,
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000448 FO.S->getBeginLoc(), CD->getBody()->getBeginLoc());
Alexey Bataev2377fe92015-09-10 08:12:02 +0000449 unsigned Cnt = CD->getContextParamPosition();
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000450 I = FO.S->captures().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +0000451 for (const FieldDecl *FD : RD->fields()) {
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000452 // Do not map arguments if we emit function with non-original types.
453 Address LocalAddr(Address::invalid());
454 if (!FO.UIntPtrCastRequired && Args[Cnt] != TargetArgs[Cnt]) {
455 LocalAddr = CGM.getOpenMPRuntime().getParameterAddress(CGF, Args[Cnt],
456 TargetArgs[Cnt]);
457 } else {
458 LocalAddr = CGF.GetAddrOfLocalVar(Args[Cnt]);
459 }
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000460 // If we are capturing a pointer by copy we don't need to do anything, just
461 // use the value that we get from the arguments.
462 if (I->capturesVariableByCopy() && FD->getType()->isAnyPointerType()) {
Samuel Antao403ffd42016-07-27 22:49:49 +0000463 const VarDecl *CurVD = I->getCapturedVar();
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000464 if (!FO.RegisterCastedArgsOnly)
465 LocalAddrs.insert({Args[Cnt], {CurVD, LocalAddr}});
Richard Trieucc3949d2016-02-18 22:34:54 +0000466 ++Cnt;
467 ++I;
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000468 continue;
469 }
470
Ivan A. Kosarev5f8c0ca2017-10-10 09:39:32 +0000471 LValue ArgLVal = CGF.MakeAddrLValue(LocalAddr, Args[Cnt]->getType(),
472 AlignmentSource::Decl);
Alexey Bataev2377fe92015-09-10 08:12:02 +0000473 if (FD->hasCapturedVLAType()) {
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000474 if (FO.UIntPtrCastRequired) {
Alexey Bataeva9b9cc02018-01-23 18:12:38 +0000475 ArgLVal = CGF.MakeAddrLValue(
476 castValueFromUintptr(CGF, I->getLocation(), FD->getType(),
477 Args[Cnt]->getName(), ArgLVal),
478 FD->getType(), AlignmentSource::Decl);
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000479 }
Alexey Bataevddf3db92018-04-13 17:31:06 +0000480 llvm::Value *ExprArg = CGF.EmitLoadOfScalar(ArgLVal, I->getLocation());
481 const VariableArrayType *VAT = FD->getCapturedVLAType();
482 VLASizes.try_emplace(Args[Cnt], VAT->getSizeExpr(), ExprArg);
Alexey Bataev2377fe92015-09-10 08:12:02 +0000483 } else if (I->capturesVariable()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000484 const VarDecl *Var = I->getCapturedVar();
Alexey Bataev2377fe92015-09-10 08:12:02 +0000485 QualType VarTy = Var->getType();
486 Address ArgAddr = ArgLVal.getAddress();
Alexey Bataev06e80f62019-05-23 18:19:54 +0000487 if (ArgLVal.getType()->isLValueReferenceType()) {
488 ArgAddr = CGF.EmitLoadOfReference(ArgLVal);
489 } else if (!VarTy->isVariablyModifiedType() || !VarTy->isPointerType()) {
490 assert(ArgLVal.getType()->isPointerType());
491 ArgAddr = CGF.EmitLoadOfPointer(
492 ArgAddr, ArgLVal.getType()->castAs<PointerType>());
Alexey Bataev2377fe92015-09-10 08:12:02 +0000493 }
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000494 if (!FO.RegisterCastedArgsOnly) {
495 LocalAddrs.insert(
496 {Args[Cnt],
497 {Var, Address(ArgAddr.getPointer(), Ctx.getDeclAlign(Var))}});
498 }
Samuel Antao4af1b7b2015-12-02 17:44:43 +0000499 } else if (I->capturesVariableByCopy()) {
500 assert(!FD->getType()->isAnyPointerType() &&
501 "Not expecting a captured pointer.");
Alexey Bataevddf3db92018-04-13 17:31:06 +0000502 const VarDecl *Var = I->getCapturedVar();
Alexey Bataev06e80f62019-05-23 18:19:54 +0000503 LocalAddrs.insert({Args[Cnt],
504 {Var, FO.UIntPtrCastRequired
505 ? castValueFromUintptr(
506 CGF, I->getLocation(), FD->getType(),
507 Args[Cnt]->getName(), ArgLVal)
508 : ArgLVal.getAddress()}});
Alexey Bataev2377fe92015-09-10 08:12:02 +0000509 } else {
510 // If 'this' is captured, load it into CXXThisValue.
511 assert(I->capturesThis());
Alexey Bataev1e491372018-01-23 18:44:14 +0000512 CXXThisValue = CGF.EmitLoadOfScalar(ArgLVal, I->getLocation());
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000513 LocalAddrs.insert({Args[Cnt], {nullptr, ArgLVal.getAddress()}});
Alexey Bataev2377fe92015-09-10 08:12:02 +0000514 }
Richard Trieucc3949d2016-02-18 22:34:54 +0000515 ++Cnt;
516 ++I;
Alexey Bataev2377fe92015-09-10 08:12:02 +0000517 }
518
Alexey Bataeve754b182017-08-09 19:38:53 +0000519 return F;
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000520}
521
522llvm::Function *
523CodeGenFunction::GenerateOpenMPCapturedStmtFunction(const CapturedStmt &S) {
524 assert(
525 CapturedStmtInfo &&
526 "CapturedStmtInfo should be set when generating the captured function");
527 const CapturedDecl *CD = S.getCapturedDecl();
528 // Build the argument list.
529 bool NeedWrapperFunction =
530 getDebugInfo() &&
531 CGM.getCodeGenOpts().getDebugInfo() >= codegenoptions::LimitedDebugInfo;
532 FunctionArgList Args;
Alexey Bataev3b8d5582017-08-08 18:04:06 +0000533 llvm::MapVector<const Decl *, std::pair<const VarDecl *, Address>> LocalAddrs;
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000534 llvm::DenseMap<const Decl *, std::pair<const Expr *, llvm::Value *>> VLASizes;
Alexey Bataeve754b182017-08-09 19:38:53 +0000535 SmallString<256> Buffer;
536 llvm::raw_svector_ostream Out(Buffer);
537 Out << CapturedStmtInfo->getHelperName();
538 if (NeedWrapperFunction)
539 Out << "_debug__";
Alexey Bataev4aa19052017-08-08 16:45:36 +0000540 FunctionOptions FO(&S, !NeedWrapperFunction, /*RegisterCastedArgsOnly=*/false,
Alexey Bataeve754b182017-08-09 19:38:53 +0000541 Out.str());
542 llvm::Function *F = emitOutlinedFunctionPrologue(*this, Args, LocalAddrs,
543 VLASizes, CXXThisValue, FO);
Alexey Bataev06e80f62019-05-23 18:19:54 +0000544 CodeGenFunction::OMPPrivateScope LocalScope(*this);
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000545 for (const auto &LocalAddrPair : LocalAddrs) {
546 if (LocalAddrPair.second.first) {
Alexey Bataev06e80f62019-05-23 18:19:54 +0000547 LocalScope.addPrivate(LocalAddrPair.second.first, [&LocalAddrPair]() {
548 return LocalAddrPair.second.second;
549 });
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000550 }
551 }
Alexey Bataev06e80f62019-05-23 18:19:54 +0000552 (void)LocalScope.Privatize();
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000553 for (const auto &VLASizePair : VLASizes)
554 VLASizeMap[VLASizePair.second.first] = VLASizePair.second.second;
Serge Pavlov3a561452015-12-06 14:32:39 +0000555 PGO.assignRegionCounters(GlobalDecl(CD), F);
Alexey Bataev2377fe92015-09-10 08:12:02 +0000556 CapturedStmtInfo->EmitBody(*this, CD->getBody());
Alexey Bataev06e80f62019-05-23 18:19:54 +0000557 (void)LocalScope.ForceCleanup();
Alexey Bataev2377fe92015-09-10 08:12:02 +0000558 FinishFunction(CD->getBodyRBrace());
Alexey Bataeve754b182017-08-09 19:38:53 +0000559 if (!NeedWrapperFunction)
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000560 return F;
Alexey Bataev2377fe92015-09-10 08:12:02 +0000561
Alexey Bataevefd884d2017-08-04 21:26:25 +0000562 FunctionOptions WrapperFO(&S, /*UIntPtrCastRequired=*/true,
Alexey Bataeve754b182017-08-09 19:38:53 +0000563 /*RegisterCastedArgsOnly=*/true,
564 CapturedStmtInfo->getHelperName());
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000565 CodeGenFunction WrapperCGF(CGM, /*suppressNewContext=*/true);
Gheorghe-Teodor Bercead3dcf2f2018-03-14 14:17:45 +0000566 WrapperCGF.CapturedStmtInfo = CapturedStmtInfo;
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000567 Args.clear();
568 LocalAddrs.clear();
569 VLASizes.clear();
570 llvm::Function *WrapperF =
571 emitOutlinedFunctionPrologue(WrapperCGF, Args, LocalAddrs, VLASizes,
Alexey Bataeve754b182017-08-09 19:38:53 +0000572 WrapperCGF.CXXThisValue, WrapperFO);
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000573 llvm::SmallVector<llvm::Value *, 4> CallArgs;
574 for (const auto *Arg : Args) {
575 llvm::Value *CallArg;
576 auto I = LocalAddrs.find(Arg);
577 if (I != LocalAddrs.end()) {
Alexey Bataev7ba57af2017-10-17 16:47:34 +0000578 LValue LV = WrapperCGF.MakeAddrLValue(
579 I->second.second,
580 I->second.first ? I->second.first->getType() : Arg->getType(),
581 AlignmentSource::Decl);
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000582 CallArg = WrapperCGF.EmitLoadOfScalar(LV, S.getBeginLoc());
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000583 } else {
584 auto EI = VLASizes.find(Arg);
Alexey Bataevddf3db92018-04-13 17:31:06 +0000585 if (EI != VLASizes.end()) {
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000586 CallArg = EI->second.second;
Alexey Bataevddf3db92018-04-13 17:31:06 +0000587 } else {
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000588 LValue LV = WrapperCGF.MakeAddrLValue(WrapperCGF.GetAddrOfLocalVar(Arg),
Ivan A. Kosarev5f8c0ca2017-10-10 09:39:32 +0000589 Arg->getType(),
590 AlignmentSource::Decl);
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000591 CallArg = WrapperCGF.EmitLoadOfScalar(LV, S.getBeginLoc());
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000592 }
593 }
Alexey Bataev7ba57af2017-10-17 16:47:34 +0000594 CallArgs.emplace_back(WrapperCGF.EmitFromMemory(CallArg, Arg->getType()));
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000595 }
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000596 CGM.getOpenMPRuntime().emitOutlinedFunctionCall(WrapperCGF, S.getBeginLoc(),
Alexey Bataev3c595a62017-08-14 15:01:03 +0000597 F, CallArgs);
Alexey Bataev1fdfdf72017-06-29 16:43:05 +0000598 WrapperCGF.FinishFunction();
599 return WrapperF;
Alexey Bataev2377fe92015-09-10 08:12:02 +0000600}
601
Alexey Bataev9959db52014-05-06 10:08:46 +0000602//===----------------------------------------------------------------------===//
603// OpenMP Directive Emission
604//===----------------------------------------------------------------------===//
Alexey Bataev420d45b2015-04-14 05:11:24 +0000605void CodeGenFunction::EmitOMPAggregateAssign(
John McCall7f416cc2015-09-08 08:05:57 +0000606 Address DestAddr, Address SrcAddr, QualType OriginalType,
Alexey Bataevddf3db92018-04-13 17:31:06 +0000607 const llvm::function_ref<void(Address, Address)> CopyGen) {
Alexey Bataev420d45b2015-04-14 05:11:24 +0000608 // Perform element-by-element initialization.
609 QualType ElementTy;
John McCall7f416cc2015-09-08 08:05:57 +0000610
611 // Drill down to the base element type on both arrays.
Alexey Bataevddf3db92018-04-13 17:31:06 +0000612 const ArrayType *ArrayTy = OriginalType->getAsArrayTypeUnsafe();
613 llvm::Value *NumElements = emitArrayLength(ArrayTy, ElementTy, DestAddr);
John McCall7f416cc2015-09-08 08:05:57 +0000614 SrcAddr = Builder.CreateElementBitCast(SrcAddr, DestAddr.getElementType());
615
Alexey Bataevddf3db92018-04-13 17:31:06 +0000616 llvm::Value *SrcBegin = SrcAddr.getPointer();
617 llvm::Value *DestBegin = DestAddr.getPointer();
Alexey Bataev420d45b2015-04-14 05:11:24 +0000618 // Cast from pointer to array type to pointer to single element.
Alexey Bataevddf3db92018-04-13 17:31:06 +0000619 llvm::Value *DestEnd = Builder.CreateGEP(DestBegin, NumElements);
Alexey Bataev420d45b2015-04-14 05:11:24 +0000620 // The basic structure here is a while-do loop.
Alexey Bataevddf3db92018-04-13 17:31:06 +0000621 llvm::BasicBlock *BodyBB = createBasicBlock("omp.arraycpy.body");
622 llvm::BasicBlock *DoneBB = createBasicBlock("omp.arraycpy.done");
623 llvm::Value *IsEmpty =
Alexey Bataev420d45b2015-04-14 05:11:24 +0000624 Builder.CreateICmpEQ(DestBegin, DestEnd, "omp.arraycpy.isempty");
625 Builder.CreateCondBr(IsEmpty, DoneBB, BodyBB);
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000626
Alexey Bataev420d45b2015-04-14 05:11:24 +0000627 // Enter the loop body, making that address the current address.
Alexey Bataevddf3db92018-04-13 17:31:06 +0000628 llvm::BasicBlock *EntryBB = Builder.GetInsertBlock();
Alexey Bataev420d45b2015-04-14 05:11:24 +0000629 EmitBlock(BodyBB);
John McCall7f416cc2015-09-08 08:05:57 +0000630
631 CharUnits ElementSize = getContext().getTypeSizeInChars(ElementTy);
632
633 llvm::PHINode *SrcElementPHI =
634 Builder.CreatePHI(SrcBegin->getType(), 2, "omp.arraycpy.srcElementPast");
635 SrcElementPHI->addIncoming(SrcBegin, EntryBB);
636 Address SrcElementCurrent =
637 Address(SrcElementPHI,
638 SrcAddr.getAlignment().alignmentOfArrayElement(ElementSize));
639
640 llvm::PHINode *DestElementPHI =
641 Builder.CreatePHI(DestBegin->getType(), 2, "omp.arraycpy.destElementPast");
642 DestElementPHI->addIncoming(DestBegin, EntryBB);
643 Address DestElementCurrent =
644 Address(DestElementPHI,
645 DestAddr.getAlignment().alignmentOfArrayElement(ElementSize));
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000646
Alexey Bataev420d45b2015-04-14 05:11:24 +0000647 // Emit copy.
648 CopyGen(DestElementCurrent, SrcElementCurrent);
649
650 // Shift the address forward by one element.
Alexey Bataevddf3db92018-04-13 17:31:06 +0000651 llvm::Value *DestElementNext = Builder.CreateConstGEP1_32(
John McCall7f416cc2015-09-08 08:05:57 +0000652 DestElementPHI, /*Idx0=*/1, "omp.arraycpy.dest.element");
Alexey Bataevddf3db92018-04-13 17:31:06 +0000653 llvm::Value *SrcElementNext = Builder.CreateConstGEP1_32(
John McCall7f416cc2015-09-08 08:05:57 +0000654 SrcElementPHI, /*Idx0=*/1, "omp.arraycpy.src.element");
Alexey Bataev420d45b2015-04-14 05:11:24 +0000655 // Check whether we've reached the end.
Alexey Bataevddf3db92018-04-13 17:31:06 +0000656 llvm::Value *Done =
Alexey Bataev420d45b2015-04-14 05:11:24 +0000657 Builder.CreateICmpEQ(DestElementNext, DestEnd, "omp.arraycpy.done");
658 Builder.CreateCondBr(Done, DoneBB, BodyBB);
John McCall7f416cc2015-09-08 08:05:57 +0000659 DestElementPHI->addIncoming(DestElementNext, Builder.GetInsertBlock());
660 SrcElementPHI->addIncoming(SrcElementNext, Builder.GetInsertBlock());
Alexey Bataev420d45b2015-04-14 05:11:24 +0000661
662 // Done.
663 EmitBlock(DoneBB, /*IsFinished=*/true);
664}
665
John McCall7f416cc2015-09-08 08:05:57 +0000666void CodeGenFunction::EmitOMPCopy(QualType OriginalType, Address DestAddr,
667 Address SrcAddr, const VarDecl *DestVD,
Alexey Bataev420d45b2015-04-14 05:11:24 +0000668 const VarDecl *SrcVD, const Expr *Copy) {
669 if (OriginalType->isArrayType()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000670 const auto *BO = dyn_cast<BinaryOperator>(Copy);
Alexey Bataev420d45b2015-04-14 05:11:24 +0000671 if (BO && BO->getOpcode() == BO_Assign) {
672 // Perform simple memcpy for simple copying.
Ivan A. Kosarev1860b522018-01-25 14:21:55 +0000673 LValue Dest = MakeAddrLValue(DestAddr, OriginalType);
674 LValue Src = MakeAddrLValue(SrcAddr, OriginalType);
675 EmitAggregateAssign(Dest, Src, OriginalType);
Alexey Bataev420d45b2015-04-14 05:11:24 +0000676 } else {
677 // For arrays with complex element types perform element by element
678 // copying.
John McCall7f416cc2015-09-08 08:05:57 +0000679 EmitOMPAggregateAssign(
Alexey Bataev420d45b2015-04-14 05:11:24 +0000680 DestAddr, SrcAddr, OriginalType,
John McCall7f416cc2015-09-08 08:05:57 +0000681 [this, Copy, SrcVD, DestVD](Address DestElement, Address SrcElement) {
Alexey Bataev420d45b2015-04-14 05:11:24 +0000682 // Working with the single array element, so have to remap
683 // destination and source variables to corresponding array
684 // elements.
John McCall7f416cc2015-09-08 08:05:57 +0000685 CodeGenFunction::OMPPrivateScope Remap(*this);
Alexey Bataevddf3db92018-04-13 17:31:06 +0000686 Remap.addPrivate(DestVD, [DestElement]() { return DestElement; });
687 Remap.addPrivate(SrcVD, [SrcElement]() { return SrcElement; });
Alexey Bataev420d45b2015-04-14 05:11:24 +0000688 (void)Remap.Privatize();
John McCall7f416cc2015-09-08 08:05:57 +0000689 EmitIgnoredExpr(Copy);
Alexey Bataev420d45b2015-04-14 05:11:24 +0000690 });
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000691 }
Alexey Bataev420d45b2015-04-14 05:11:24 +0000692 } else {
693 // Remap pseudo source variable to private copy.
John McCall7f416cc2015-09-08 08:05:57 +0000694 CodeGenFunction::OMPPrivateScope Remap(*this);
Alexey Bataevddf3db92018-04-13 17:31:06 +0000695 Remap.addPrivate(SrcVD, [SrcAddr]() { return SrcAddr; });
696 Remap.addPrivate(DestVD, [DestAddr]() { return DestAddr; });
Alexey Bataev420d45b2015-04-14 05:11:24 +0000697 (void)Remap.Privatize();
698 // Emit copying of the whole variable.
John McCall7f416cc2015-09-08 08:05:57 +0000699 EmitIgnoredExpr(Copy);
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000700 }
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000701}
702
Alexey Bataev69c62a92015-04-15 04:52:20 +0000703bool CodeGenFunction::EmitOMPFirstprivateClause(const OMPExecutableDirective &D,
704 OMPPrivateScope &PrivateScope) {
Alexey Bataev8ef31412015-12-18 07:58:25 +0000705 if (!HaveInsertPoint())
706 return false;
Alexey Bataev1af5bd52019-03-05 17:47:18 +0000707 bool DeviceConstTarget =
708 getLangOpts().OpenMPIsDevice &&
709 isOpenMPTargetExecutionDirective(D.getDirectiveKind());
Alexey Bataevcd8b6a22016-02-15 08:07:17 +0000710 bool FirstprivateIsLastprivate = false;
711 llvm::DenseSet<const VarDecl *> Lastprivates;
712 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) {
713 for (const auto *D : C->varlists())
714 Lastprivates.insert(
715 cast<VarDecl>(cast<DeclRefExpr>(D)->getDecl())->getCanonicalDecl());
716 }
Alexey Bataev69c62a92015-04-15 04:52:20 +0000717 llvm::DenseSet<const VarDecl *> EmittedAsFirstprivate;
Alexey Bataev475a7442018-01-12 19:39:11 +0000718 llvm::SmallVector<OpenMPDirectiveKind, 4> CaptureRegions;
719 getOpenMPCaptureRegions(CaptureRegions, D.getDirectiveKind());
720 // Force emission of the firstprivate copy if the directive does not emit
721 // outlined function, like omp for, omp simd, omp distribute etc.
722 bool MustEmitFirstprivateCopy =
723 CaptureRegions.size() == 1 && CaptureRegions.back() == OMPD_unknown;
Benjamin Kramerfc600dc2015-08-30 15:12:28 +0000724 for (const auto *C : D.getClausesOfKind<OMPFirstprivateClause>()) {
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000725 auto IRef = C->varlist_begin();
726 auto InitsRef = C->inits().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +0000727 for (const Expr *IInit : C->private_copies()) {
728 const auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl());
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000729 bool ThisFirstprivateIsLastprivate =
730 Lastprivates.count(OrigVD->getCanonicalDecl()) > 0;
Alexey Bataevddf3db92018-04-13 17:31:06 +0000731 const FieldDecl *FD = CapturedStmtInfo->lookup(OrigVD);
Alexey Bataev9c397812019-04-03 17:57:06 +0000732 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(IInit)->getDecl());
Alexey Bataev475a7442018-01-12 19:39:11 +0000733 if (!MustEmitFirstprivateCopy && !ThisFirstprivateIsLastprivate && FD &&
Alexey Bataev9c397812019-04-03 17:57:06 +0000734 !FD->getType()->isReferenceType() &&
735 (!VD || !VD->hasAttr<OMPAllocateDeclAttr>())) {
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000736 EmittedAsFirstprivate.insert(OrigVD->getCanonicalDecl());
737 ++IRef;
738 ++InitsRef;
739 continue;
740 }
Alexey Bataev1af5bd52019-03-05 17:47:18 +0000741 // Do not emit copy for firstprivate constant variables in target regions,
742 // captured by reference.
743 if (DeviceConstTarget && OrigVD->getType().isConstant(getContext()) &&
Alexey Bataev9c397812019-04-03 17:57:06 +0000744 FD && FD->getType()->isReferenceType() &&
745 (!VD || !VD->hasAttr<OMPAllocateDeclAttr>())) {
Alexey Bataev1af5bd52019-03-05 17:47:18 +0000746 (void)CGM.getOpenMPRuntime().registerTargetFirstprivateCopy(*this,
747 OrigVD);
748 ++IRef;
749 ++InitsRef;
750 continue;
751 }
Alexey Bataevcd8b6a22016-02-15 08:07:17 +0000752 FirstprivateIsLastprivate =
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000753 FirstprivateIsLastprivate || ThisFirstprivateIsLastprivate;
Alexey Bataevcd8b6a22016-02-15 08:07:17 +0000754 if (EmittedAsFirstprivate.insert(OrigVD->getCanonicalDecl()).second) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000755 const auto *VDInit =
756 cast<VarDecl>(cast<DeclRefExpr>(*InitsRef)->getDecl());
Alexey Bataev69c62a92015-04-15 04:52:20 +0000757 bool IsRegistered;
Bruno Ricci5fc4db72018-12-21 14:10:18 +0000758 DeclRefExpr DRE(getContext(), const_cast<VarDecl *>(OrigVD),
Alexey Bataev7ace49d2016-05-17 08:55:33 +0000759 /*RefersToEnclosingVariableOrCapture=*/FD != nullptr,
760 (*IRef)->getType(), VK_LValue, (*IRef)->getExprLoc());
Alexey Bataeve0ef04f2019-05-23 22:30:43 +0000761 LValue OriginalLVal;
762 if (!FD) {
763 // Check if the firstprivate variable is just a constant value.
764 ConstantEmission CE = tryEmitAsConstant(&DRE);
765 if (CE && !CE.isReference()) {
766 // Constant value, no need to create a copy.
767 ++IRef;
768 ++InitsRef;
769 continue;
770 }
771 if (CE && CE.isReference()) {
772 OriginalLVal = CE.getReferenceLValue(*this, &DRE);
773 } else {
774 assert(!CE && "Expected non-constant firstprivate.");
775 OriginalLVal = EmitLValue(&DRE);
776 }
777 } else {
778 OriginalLVal = EmitLValue(&DRE);
779 }
Alexey Bataevfeddd642016-04-22 09:05:03 +0000780 QualType Type = VD->getType();
Alexey Bataev1d9c15c2015-05-19 12:31:28 +0000781 if (Type->isArrayType()) {
Alexey Bataev69c62a92015-04-15 04:52:20 +0000782 // Emit VarDecl with copy init for arrays.
783 // Get the address of the original variable captured in current
784 // captured region.
Alexey Bataevddf3db92018-04-13 17:31:06 +0000785 IsRegistered = PrivateScope.addPrivate(
786 OrigVD, [this, VD, Type, OriginalLVal, VDInit]() {
787 AutoVarEmission Emission = EmitAutoVarAlloca(*VD);
788 const Expr *Init = VD->getInit();
789 if (!isa<CXXConstructExpr>(Init) ||
790 isTrivialInitializer(Init)) {
791 // Perform simple memcpy.
792 LValue Dest =
793 MakeAddrLValue(Emission.getAllocatedAddress(), Type);
794 EmitAggregateAssign(Dest, OriginalLVal, Type);
795 } else {
796 EmitOMPAggregateAssign(
797 Emission.getAllocatedAddress(), OriginalLVal.getAddress(),
798 Type,
799 [this, VDInit, Init](Address DestElement,
800 Address SrcElement) {
801 // Clean up any temporaries needed by the
802 // initialization.
803 RunCleanupsScope InitScope(*this);
804 // Emit initialization for single element.
805 setAddrOfLocalVar(VDInit, SrcElement);
806 EmitAnyExprToMem(Init, DestElement,
807 Init->getType().getQualifiers(),
808 /*IsInitializer*/ false);
809 LocalDeclMap.erase(VDInit);
810 });
811 }
812 EmitAutoVarCleanups(Emission);
813 return Emission.getAllocatedAddress();
814 });
Alexey Bataev69c62a92015-04-15 04:52:20 +0000815 } else {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000816 Address OriginalAddr = OriginalLVal.getAddress();
817 IsRegistered = PrivateScope.addPrivate(
818 OrigVD, [this, VDInit, OriginalAddr, VD]() {
819 // Emit private VarDecl with copy init.
820 // Remap temp VDInit variable to the address of the original
821 // variable (for proper handling of captured global variables).
822 setAddrOfLocalVar(VDInit, OriginalAddr);
823 EmitDecl(*VD);
824 LocalDeclMap.erase(VDInit);
825 return GetAddrOfLocalVar(VD);
826 });
Alexey Bataev69c62a92015-04-15 04:52:20 +0000827 }
828 assert(IsRegistered &&
829 "firstprivate var already registered as private");
830 // Silence the warning about unused variable.
831 (void)IsRegistered;
832 }
Richard Trieucc3949d2016-02-18 22:34:54 +0000833 ++IRef;
834 ++InitsRef;
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000835 }
836 }
Alexey Bataevcd8b6a22016-02-15 08:07:17 +0000837 return FirstprivateIsLastprivate && !EmittedAsFirstprivate.empty();
Alexey Bataev4a5bb772014-10-08 14:01:46 +0000838}
839
Alexey Bataev03b340a2014-10-21 03:16:40 +0000840void CodeGenFunction::EmitOMPPrivateClause(
841 const OMPExecutableDirective &D,
842 CodeGenFunction::OMPPrivateScope &PrivateScope) {
Alexey Bataev8ef31412015-12-18 07:58:25 +0000843 if (!HaveInsertPoint())
844 return;
Alexey Bataev50a64582015-04-22 12:24:45 +0000845 llvm::DenseSet<const VarDecl *> EmittedAsPrivate;
Benjamin Kramerfc600dc2015-08-30 15:12:28 +0000846 for (const auto *C : D.getClausesOfKind<OMPPrivateClause>()) {
Alexey Bataev03b340a2014-10-21 03:16:40 +0000847 auto IRef = C->varlist_begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +0000848 for (const Expr *IInit : C->private_copies()) {
849 const auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl());
Alexey Bataev50a64582015-04-22 12:24:45 +0000850 if (EmittedAsPrivate.insert(OrigVD->getCanonicalDecl()).second) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000851 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(IInit)->getDecl());
852 bool IsRegistered = PrivateScope.addPrivate(OrigVD, [this, VD]() {
853 // Emit private VarDecl with copy init.
854 EmitDecl(*VD);
855 return GetAddrOfLocalVar(VD);
856 });
Alexey Bataev50a64582015-04-22 12:24:45 +0000857 assert(IsRegistered && "private var already registered as private");
858 // Silence the warning about unused variable.
859 (void)IsRegistered;
860 }
Alexey Bataev03b340a2014-10-21 03:16:40 +0000861 ++IRef;
862 }
863 }
864}
865
Alexey Bataevf56f98c2015-04-16 05:39:01 +0000866bool CodeGenFunction::EmitOMPCopyinClause(const OMPExecutableDirective &D) {
Alexey Bataev8ef31412015-12-18 07:58:25 +0000867 if (!HaveInsertPoint())
868 return false;
Alexey Bataevf56f98c2015-04-16 05:39:01 +0000869 // threadprivate_var1 = master_threadprivate_var1;
870 // operator=(threadprivate_var2, master_threadprivate_var2);
871 // ...
872 // __kmpc_barrier(&loc, global_tid);
Alexey Bataevf56f98c2015-04-16 05:39:01 +0000873 llvm::DenseSet<const VarDecl *> CopiedVars;
874 llvm::BasicBlock *CopyBegin = nullptr, *CopyEnd = nullptr;
Benjamin Kramerfc600dc2015-08-30 15:12:28 +0000875 for (const auto *C : D.getClausesOfKind<OMPCopyinClause>()) {
Alexey Bataevf56f98c2015-04-16 05:39:01 +0000876 auto IRef = C->varlist_begin();
877 auto ISrcRef = C->source_exprs().begin();
878 auto IDestRef = C->destination_exprs().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +0000879 for (const Expr *AssignOp : C->assignment_ops()) {
880 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl());
Alexey Bataev1d9c15c2015-05-19 12:31:28 +0000881 QualType Type = VD->getType();
Alexey Bataevf56f98c2015-04-16 05:39:01 +0000882 if (CopiedVars.insert(VD->getCanonicalDecl()).second) {
Samuel Antao9c75cfe2015-07-27 16:38:06 +0000883 // Get the address of the master variable. If we are emitting code with
884 // TLS support, the address is passed from the master as field in the
885 // captured declaration.
John McCall7f416cc2015-09-08 08:05:57 +0000886 Address MasterAddr = Address::invalid();
Samuel Antao9c75cfe2015-07-27 16:38:06 +0000887 if (getLangOpts().OpenMPUseTLS &&
888 getContext().getTargetInfo().isTLSSupported()) {
889 assert(CapturedStmtInfo->lookup(VD) &&
890 "Copyin threadprivates should have been captured!");
Bruno Ricci5fc4db72018-12-21 14:10:18 +0000891 DeclRefExpr DRE(getContext(), const_cast<VarDecl *>(VD), true,
892 (*IRef)->getType(), VK_LValue, (*IRef)->getExprLoc());
Samuel Antao9c75cfe2015-07-27 16:38:06 +0000893 MasterAddr = EmitLValue(&DRE).getAddress();
Alexey Bataev2377fe92015-09-10 08:12:02 +0000894 LocalDeclMap.erase(VD);
Samuel Antao9c75cfe2015-07-27 16:38:06 +0000895 } else {
John McCall7f416cc2015-09-08 08:05:57 +0000896 MasterAddr =
897 Address(VD->isStaticLocal() ? CGM.getStaticLocalDeclAddress(VD)
898 : CGM.GetAddrOfGlobal(VD),
899 getContext().getDeclAlign(VD));
Samuel Antao9c75cfe2015-07-27 16:38:06 +0000900 }
Alexey Bataevf56f98c2015-04-16 05:39:01 +0000901 // Get the address of the threadprivate variable.
John McCall7f416cc2015-09-08 08:05:57 +0000902 Address PrivateAddr = EmitLValue(*IRef).getAddress();
Alexey Bataevf56f98c2015-04-16 05:39:01 +0000903 if (CopiedVars.size() == 1) {
904 // At first check if current thread is a master thread. If it is, no
905 // need to copy data.
906 CopyBegin = createBasicBlock("copyin.not.master");
907 CopyEnd = createBasicBlock("copyin.not.master.end");
908 Builder.CreateCondBr(
909 Builder.CreateICmpNE(
John McCall7f416cc2015-09-08 08:05:57 +0000910 Builder.CreatePtrToInt(MasterAddr.getPointer(), CGM.IntPtrTy),
Alexey Bataevddf3db92018-04-13 17:31:06 +0000911 Builder.CreatePtrToInt(PrivateAddr.getPointer(),
912 CGM.IntPtrTy)),
Alexey Bataevf56f98c2015-04-16 05:39:01 +0000913 CopyBegin, CopyEnd);
914 EmitBlock(CopyBegin);
915 }
Alexey Bataevddf3db92018-04-13 17:31:06 +0000916 const auto *SrcVD =
917 cast<VarDecl>(cast<DeclRefExpr>(*ISrcRef)->getDecl());
918 const auto *DestVD =
919 cast<VarDecl>(cast<DeclRefExpr>(*IDestRef)->getDecl());
John McCall7f416cc2015-09-08 08:05:57 +0000920 EmitOMPCopy(Type, PrivateAddr, MasterAddr, DestVD, SrcVD, AssignOp);
Alexey Bataevf56f98c2015-04-16 05:39:01 +0000921 }
922 ++IRef;
923 ++ISrcRef;
924 ++IDestRef;
925 }
926 }
927 if (CopyEnd) {
928 // Exit out of copying procedure for non-master thread.
929 EmitBlock(CopyEnd, /*IsFinished=*/true);
930 return true;
931 }
932 return false;
933}
934
Alexey Bataev38e89532015-04-16 04:54:05 +0000935bool CodeGenFunction::EmitOMPLastprivateClauseInit(
936 const OMPExecutableDirective &D, OMPPrivateScope &PrivateScope) {
Alexey Bataev8ef31412015-12-18 07:58:25 +0000937 if (!HaveInsertPoint())
938 return false;
Alexey Bataev38e89532015-04-16 04:54:05 +0000939 bool HasAtLeastOneLastprivate = false;
Alexey Bataev5dff95c2016-04-22 03:56:56 +0000940 llvm::DenseSet<const VarDecl *> SIMDLCVs;
941 if (isOpenMPSimdDirective(D.getDirectiveKind())) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000942 const auto *LoopDirective = cast<OMPLoopDirective>(&D);
943 for (const Expr *C : LoopDirective->counters()) {
Alexey Bataev5dff95c2016-04-22 03:56:56 +0000944 SIMDLCVs.insert(
945 cast<VarDecl>(cast<DeclRefExpr>(C)->getDecl())->getCanonicalDecl());
946 }
947 }
Alexey Bataev38e89532015-04-16 04:54:05 +0000948 llvm::DenseSet<const VarDecl *> AlreadyEmittedVars;
Benjamin Kramerfc600dc2015-08-30 15:12:28 +0000949 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) {
Alexey Bataevd130fd12015-05-13 10:23:02 +0000950 HasAtLeastOneLastprivate = true;
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000951 if (isOpenMPTaskLoopDirective(D.getDirectiveKind()) &&
952 !getLangOpts().OpenMPSimd)
Alexey Bataevf93095a2016-05-05 08:46:22 +0000953 break;
Alexey Bataev38e89532015-04-16 04:54:05 +0000954 auto IRef = C->varlist_begin();
955 auto IDestRef = C->destination_exprs().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +0000956 for (const Expr *IInit : C->private_copies()) {
Alexey Bataev38e89532015-04-16 04:54:05 +0000957 // Keep the address of the original variable for future update at the end
958 // of the loop.
Alexey Bataevddf3db92018-04-13 17:31:06 +0000959 const auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl());
Alexey Bataevf93095a2016-05-05 08:46:22 +0000960 // Taskloops do not require additional initialization, it is done in
961 // runtime support library.
Alexey Bataev38e89532015-04-16 04:54:05 +0000962 if (AlreadyEmittedVars.insert(OrigVD->getCanonicalDecl()).second) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000963 const auto *DestVD =
964 cast<VarDecl>(cast<DeclRefExpr>(*IDestRef)->getDecl());
965 PrivateScope.addPrivate(DestVD, [this, OrigVD, IRef]() {
Bruno Ricci5fc4db72018-12-21 14:10:18 +0000966 DeclRefExpr DRE(getContext(), const_cast<VarDecl *>(OrigVD),
967 /*RefersToEnclosingVariableOrCapture=*/
968 CapturedStmtInfo->lookup(OrigVD) != nullptr,
969 (*IRef)->getType(), VK_LValue, (*IRef)->getExprLoc());
Alexey Bataev38e89532015-04-16 04:54:05 +0000970 return EmitLValue(&DRE).getAddress();
971 });
972 // Check if the variable is also a firstprivate: in this case IInit is
973 // not generated. Initialization of this variable will happen in codegen
974 // for 'firstprivate' clause.
Alexey Bataev5dff95c2016-04-22 03:56:56 +0000975 if (IInit && !SIMDLCVs.count(OrigVD->getCanonicalDecl())) {
Alexey Bataevddf3db92018-04-13 17:31:06 +0000976 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(IInit)->getDecl());
977 bool IsRegistered = PrivateScope.addPrivate(OrigVD, [this, VD]() {
Alexey Bataevf93095a2016-05-05 08:46:22 +0000978 // Emit private VarDecl with copy init.
979 EmitDecl(*VD);
980 return GetAddrOfLocalVar(VD);
981 });
Alexey Bataevd130fd12015-05-13 10:23:02 +0000982 assert(IsRegistered &&
983 "lastprivate var already registered as private");
984 (void)IsRegistered;
985 }
Alexey Bataev38e89532015-04-16 04:54:05 +0000986 }
Richard Trieucc3949d2016-02-18 22:34:54 +0000987 ++IRef;
988 ++IDestRef;
Alexey Bataev38e89532015-04-16 04:54:05 +0000989 }
990 }
991 return HasAtLeastOneLastprivate;
992}
993
994void CodeGenFunction::EmitOMPLastprivateClauseFinal(
Alexey Bataev5dff95c2016-04-22 03:56:56 +0000995 const OMPExecutableDirective &D, bool NoFinals,
996 llvm::Value *IsLastIterCond) {
Alexey Bataev8ef31412015-12-18 07:58:25 +0000997 if (!HaveInsertPoint())
998 return;
Alexey Bataev38e89532015-04-16 04:54:05 +0000999 // Emit following code:
1000 // if (<IsLastIterCond>) {
1001 // orig_var1 = private_orig_var1;
1002 // ...
1003 // orig_varn = private_orig_varn;
1004 // }
Alexey Bataevfc087ec2015-06-16 13:14:42 +00001005 llvm::BasicBlock *ThenBB = nullptr;
1006 llvm::BasicBlock *DoneBB = nullptr;
1007 if (IsLastIterCond) {
1008 ThenBB = createBasicBlock(".omp.lastprivate.then");
1009 DoneBB = createBasicBlock(".omp.lastprivate.done");
1010 Builder.CreateCondBr(IsLastIterCond, ThenBB, DoneBB);
1011 EmitBlock(ThenBB);
1012 }
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001013 llvm::DenseSet<const VarDecl *> AlreadyEmittedVars;
1014 llvm::DenseMap<const VarDecl *, const Expr *> LoopCountersAndUpdates;
Alexey Bataevddf3db92018-04-13 17:31:06 +00001015 if (const auto *LoopDirective = dyn_cast<OMPLoopDirective>(&D)) {
Alexey Bataev8ffcc942016-02-18 13:48:15 +00001016 auto IC = LoopDirective->counters().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00001017 for (const Expr *F : LoopDirective->finals()) {
1018 const auto *D =
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001019 cast<VarDecl>(cast<DeclRefExpr>(*IC)->getDecl())->getCanonicalDecl();
1020 if (NoFinals)
1021 AlreadyEmittedVars.insert(D);
1022 else
1023 LoopCountersAndUpdates[D] = F;
Alexey Bataev8ffcc942016-02-18 13:48:15 +00001024 ++IC;
Alexey Bataev7a228ff2015-05-21 07:59:51 +00001025 }
1026 }
Alexey Bataev8ffcc942016-02-18 13:48:15 +00001027 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) {
1028 auto IRef = C->varlist_begin();
1029 auto ISrcRef = C->source_exprs().begin();
1030 auto IDestRef = C->destination_exprs().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00001031 for (const Expr *AssignOp : C->assignment_ops()) {
1032 const auto *PrivateVD =
1033 cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl());
Alexey Bataev8ffcc942016-02-18 13:48:15 +00001034 QualType Type = PrivateVD->getType();
Alexey Bataevddf3db92018-04-13 17:31:06 +00001035 const auto *CanonicalVD = PrivateVD->getCanonicalDecl();
Alexey Bataev8ffcc942016-02-18 13:48:15 +00001036 if (AlreadyEmittedVars.insert(CanonicalVD).second) {
1037 // If lastprivate variable is a loop control variable for loop-based
1038 // directive, update its value before copyin back to original
1039 // variable.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001040 if (const Expr *FinalExpr = LoopCountersAndUpdates.lookup(CanonicalVD))
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001041 EmitIgnoredExpr(FinalExpr);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001042 const auto *SrcVD =
1043 cast<VarDecl>(cast<DeclRefExpr>(*ISrcRef)->getDecl());
1044 const auto *DestVD =
1045 cast<VarDecl>(cast<DeclRefExpr>(*IDestRef)->getDecl());
Alexey Bataev8ffcc942016-02-18 13:48:15 +00001046 // Get the address of the original variable.
1047 Address OriginalAddr = GetAddrOfLocalVar(DestVD);
1048 // Get the address of the private variable.
1049 Address PrivateAddr = GetAddrOfLocalVar(PrivateVD);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001050 if (const auto *RefTy = PrivateVD->getType()->getAs<ReferenceType>())
Alexey Bataev8ffcc942016-02-18 13:48:15 +00001051 PrivateAddr =
John McCall7f416cc2015-09-08 08:05:57 +00001052 Address(Builder.CreateLoad(PrivateAddr),
1053 getNaturalTypeAlignment(RefTy->getPointeeType()));
Alexey Bataev8ffcc942016-02-18 13:48:15 +00001054 EmitOMPCopy(Type, OriginalAddr, PrivateAddr, DestVD, SrcVD, AssignOp);
Alexey Bataev38e89532015-04-16 04:54:05 +00001055 }
Alexey Bataev8ffcc942016-02-18 13:48:15 +00001056 ++IRef;
1057 ++ISrcRef;
1058 ++IDestRef;
Alexey Bataev38e89532015-04-16 04:54:05 +00001059 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00001060 if (const Expr *PostUpdate = C->getPostUpdateExpr())
Alexey Bataev005248a2016-02-25 05:25:57 +00001061 EmitIgnoredExpr(PostUpdate);
Alexey Bataev38e89532015-04-16 04:54:05 +00001062 }
Alexey Bataev8ffcc942016-02-18 13:48:15 +00001063 if (IsLastIterCond)
Alexey Bataevfc087ec2015-06-16 13:14:42 +00001064 EmitBlock(DoneBB, /*IsFinished=*/true);
Alexey Bataev38e89532015-04-16 04:54:05 +00001065}
1066
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001067void CodeGenFunction::EmitOMPReductionClauseInit(
1068 const OMPExecutableDirective &D,
1069 CodeGenFunction::OMPPrivateScope &PrivateScope) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00001070 if (!HaveInsertPoint())
1071 return;
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001072 SmallVector<const Expr *, 4> Shareds;
1073 SmallVector<const Expr *, 4> Privates;
1074 SmallVector<const Expr *, 4> ReductionOps;
1075 SmallVector<const Expr *, 4> LHSs;
1076 SmallVector<const Expr *, 4> RHSs;
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00001077 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) {
Alexey Bataevf24e7b12015-10-08 09:10:53 +00001078 auto IPriv = C->privates().begin();
Alexey Bataeva839ddd2016-03-17 10:19:46 +00001079 auto IRed = C->reduction_ops().begin();
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001080 auto ILHS = C->lhs_exprs().begin();
1081 auto IRHS = C->rhs_exprs().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00001082 for (const Expr *Ref : C->varlists()) {
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001083 Shareds.emplace_back(Ref);
1084 Privates.emplace_back(*IPriv);
1085 ReductionOps.emplace_back(*IRed);
1086 LHSs.emplace_back(*ILHS);
1087 RHSs.emplace_back(*IRHS);
1088 std::advance(IPriv, 1);
1089 std::advance(IRed, 1);
1090 std::advance(ILHS, 1);
1091 std::advance(IRHS, 1);
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001092 }
1093 }
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001094 ReductionCodeGen RedCG(Shareds, Privates, ReductionOps);
1095 unsigned Count = 0;
1096 auto ILHS = LHSs.begin();
1097 auto IRHS = RHSs.begin();
1098 auto IPriv = Privates.begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00001099 for (const Expr *IRef : Shareds) {
1100 const auto *PrivateVD = cast<VarDecl>(cast<DeclRefExpr>(*IPriv)->getDecl());
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001101 // Emit private VarDecl with reduction init.
1102 RedCG.emitSharedLValue(*this, Count);
1103 RedCG.emitAggregateType(*this, Count);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001104 AutoVarEmission Emission = EmitAutoVarAlloca(*PrivateVD);
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001105 RedCG.emitInitialization(*this, Count, Emission.getAllocatedAddress(),
1106 RedCG.getSharedLValue(Count),
1107 [&Emission](CodeGenFunction &CGF) {
1108 CGF.EmitAutoVarInit(Emission);
1109 return true;
1110 });
1111 EmitAutoVarCleanups(Emission);
1112 Address BaseAddr = RedCG.adjustPrivateAddress(
1113 *this, Count, Emission.getAllocatedAddress());
1114 bool IsRegistered = PrivateScope.addPrivate(
Alexey Bataevddf3db92018-04-13 17:31:06 +00001115 RedCG.getBaseDecl(Count), [BaseAddr]() { return BaseAddr; });
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001116 assert(IsRegistered && "private var already registered as private");
1117 // Silence the warning about unused variable.
1118 (void)IsRegistered;
1119
Alexey Bataevddf3db92018-04-13 17:31:06 +00001120 const auto *LHSVD = cast<VarDecl>(cast<DeclRefExpr>(*ILHS)->getDecl());
1121 const auto *RHSVD = cast<VarDecl>(cast<DeclRefExpr>(*IRHS)->getDecl());
Jonas Hahnfeld4525c822017-10-23 19:01:35 +00001122 QualType Type = PrivateVD->getType();
1123 bool isaOMPArraySectionExpr = isa<OMPArraySectionExpr>(IRef);
1124 if (isaOMPArraySectionExpr && Type->isVariablyModifiedType()) {
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001125 // Store the address of the original variable associated with the LHS
1126 // implicit variable.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001127 PrivateScope.addPrivate(LHSVD, [&RedCG, Count]() {
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001128 return RedCG.getSharedLValue(Count).getAddress();
1129 });
Alexey Bataevddf3db92018-04-13 17:31:06 +00001130 PrivateScope.addPrivate(
1131 RHSVD, [this, PrivateVD]() { return GetAddrOfLocalVar(PrivateVD); });
Jonas Hahnfeld4525c822017-10-23 19:01:35 +00001132 } else if ((isaOMPArraySectionExpr && Type->isScalarType()) ||
1133 isa<ArraySubscriptExpr>(IRef)) {
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001134 // Store the address of the original variable associated with the LHS
1135 // implicit variable.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001136 PrivateScope.addPrivate(LHSVD, [&RedCG, Count]() {
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001137 return RedCG.getSharedLValue(Count).getAddress();
1138 });
Alexey Bataevddf3db92018-04-13 17:31:06 +00001139 PrivateScope.addPrivate(RHSVD, [this, PrivateVD, RHSVD]() {
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001140 return Builder.CreateElementBitCast(GetAddrOfLocalVar(PrivateVD),
1141 ConvertTypeForMem(RHSVD->getType()),
1142 "rhs.begin");
1143 });
1144 } else {
1145 QualType Type = PrivateVD->getType();
1146 bool IsArray = getContext().getAsArrayType(Type) != nullptr;
1147 Address OriginalAddr = RedCG.getSharedLValue(Count).getAddress();
1148 // Store the address of the original variable associated with the LHS
1149 // implicit variable.
1150 if (IsArray) {
1151 OriginalAddr = Builder.CreateElementBitCast(
1152 OriginalAddr, ConvertTypeForMem(LHSVD->getType()), "lhs.begin");
1153 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00001154 PrivateScope.addPrivate(LHSVD, [OriginalAddr]() { return OriginalAddr; });
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001155 PrivateScope.addPrivate(
Alexey Bataevddf3db92018-04-13 17:31:06 +00001156 RHSVD, [this, PrivateVD, RHSVD, IsArray]() {
Alexey Bataev5c40bec2017-07-13 13:36:14 +00001157 return IsArray
1158 ? Builder.CreateElementBitCast(
1159 GetAddrOfLocalVar(PrivateVD),
1160 ConvertTypeForMem(RHSVD->getType()), "rhs.begin")
1161 : GetAddrOfLocalVar(PrivateVD);
1162 });
1163 }
1164 ++ILHS;
1165 ++IRHS;
1166 ++IPriv;
1167 ++Count;
1168 }
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001169}
1170
1171void CodeGenFunction::EmitOMPReductionClauseFinal(
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00001172 const OMPExecutableDirective &D, const OpenMPDirectiveKind ReductionKind) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00001173 if (!HaveInsertPoint())
1174 return;
Alexey Bataevf24e7b12015-10-08 09:10:53 +00001175 llvm::SmallVector<const Expr *, 8> Privates;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001176 llvm::SmallVector<const Expr *, 8> LHSExprs;
1177 llvm::SmallVector<const Expr *, 8> RHSExprs;
1178 llvm::SmallVector<const Expr *, 8> ReductionOps;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001179 bool HasAtLeastOneReduction = false;
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00001180 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) {
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001181 HasAtLeastOneReduction = true;
Alexey Bataevf24e7b12015-10-08 09:10:53 +00001182 Privates.append(C->privates().begin(), C->privates().end());
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001183 LHSExprs.append(C->lhs_exprs().begin(), C->lhs_exprs().end());
1184 RHSExprs.append(C->rhs_exprs().begin(), C->rhs_exprs().end());
1185 ReductionOps.append(C->reduction_ops().begin(), C->reduction_ops().end());
1186 }
1187 if (HasAtLeastOneReduction) {
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00001188 bool WithNowait = D.getSingleClause<OMPNowaitClause>() ||
1189 isOpenMPParallelDirective(D.getDirectiveKind()) ||
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00001190 ReductionKind == OMPD_simd;
1191 bool SimpleReduction = ReductionKind == OMPD_simd;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001192 // Emit nowait reduction if nowait clause is present or directive is a
1193 // parallel directive (it always has implicit barrier).
1194 CGM.getOpenMPRuntime().emitReduction(
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001195 *this, D.getEndLoc(), Privates, LHSExprs, RHSExprs, ReductionOps,
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00001196 {WithNowait, SimpleReduction, ReductionKind});
Alexey Bataev794ba0d2015-04-10 10:43:45 +00001197 }
1198}
1199
Alexey Bataev61205072016-03-02 04:57:40 +00001200static void emitPostUpdateForReductionClause(
1201 CodeGenFunction &CGF, const OMPExecutableDirective &D,
Alexey Bataevddf3db92018-04-13 17:31:06 +00001202 const llvm::function_ref<llvm::Value *(CodeGenFunction &)> CondGen) {
Alexey Bataev61205072016-03-02 04:57:40 +00001203 if (!CGF.HaveInsertPoint())
1204 return;
1205 llvm::BasicBlock *DoneBB = nullptr;
1206 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001207 if (const Expr *PostUpdate = C->getPostUpdateExpr()) {
Alexey Bataev61205072016-03-02 04:57:40 +00001208 if (!DoneBB) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001209 if (llvm::Value *Cond = CondGen(CGF)) {
Alexey Bataev61205072016-03-02 04:57:40 +00001210 // If the first post-update expression is found, emit conditional
1211 // block if it was requested.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001212 llvm::BasicBlock *ThenBB = CGF.createBasicBlock(".omp.reduction.pu");
Alexey Bataev61205072016-03-02 04:57:40 +00001213 DoneBB = CGF.createBasicBlock(".omp.reduction.pu.done");
1214 CGF.Builder.CreateCondBr(Cond, ThenBB, DoneBB);
1215 CGF.EmitBlock(ThenBB);
1216 }
1217 }
1218 CGF.EmitIgnoredExpr(PostUpdate);
1219 }
1220 }
1221 if (DoneBB)
1222 CGF.EmitBlock(DoneBB, /*IsFinished=*/true);
1223}
1224
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001225namespace {
1226/// Codegen lambda for appending distribute lower and upper bounds to outlined
1227/// parallel function. This is necessary for combined constructs such as
1228/// 'distribute parallel for'
1229typedef llvm::function_ref<void(CodeGenFunction &,
1230 const OMPExecutableDirective &,
1231 llvm::SmallVectorImpl<llvm::Value *> &)>
1232 CodeGenBoundParametersTy;
1233} // anonymous namespace
1234
1235static void emitCommonOMPParallelDirective(
1236 CodeGenFunction &CGF, const OMPExecutableDirective &S,
1237 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen,
1238 const CodeGenBoundParametersTy &CodeGenBoundParameters) {
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00001239 const CapturedStmt *CS = S.getCapturedStmt(OMPD_parallel);
James Y Knight9871db02019-02-05 16:42:33 +00001240 llvm::Function *OutlinedFn =
Alexey Bataevddf3db92018-04-13 17:31:06 +00001241 CGF.CGM.getOpenMPRuntime().emitParallelOutlinedFunction(
1242 S, *CS->getCapturedDecl()->param_begin(), InnermostKind, CodeGen);
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00001243 if (const auto *NumThreadsClause = S.getSingleClause<OMPNumThreadsClause>()) {
Alexey Bataev1d677132015-04-22 13:57:31 +00001244 CodeGenFunction::RunCleanupsScope NumThreadsScope(CGF);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001245 llvm::Value *NumThreads =
1246 CGF.EmitScalarExpr(NumThreadsClause->getNumThreads(),
1247 /*IgnoreResultAssign=*/true);
Alexey Bataev1d677132015-04-22 13:57:31 +00001248 CGF.CGM.getOpenMPRuntime().emitNumThreadsClause(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001249 CGF, NumThreads, NumThreadsClause->getBeginLoc());
Alexey Bataev1d677132015-04-22 13:57:31 +00001250 }
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00001251 if (const auto *ProcBindClause = S.getSingleClause<OMPProcBindClause>()) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00001252 CodeGenFunction::RunCleanupsScope ProcBindScope(CGF);
Alexey Bataev7f210c62015-06-18 13:40:03 +00001253 CGF.CGM.getOpenMPRuntime().emitProcBindClause(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001254 CGF, ProcBindClause->getProcBindKind(), ProcBindClause->getBeginLoc());
Alexey Bataev7f210c62015-06-18 13:40:03 +00001255 }
Alexey Bataev1d677132015-04-22 13:57:31 +00001256 const Expr *IfCond = nullptr;
Alexey Bataev7371aa32015-09-03 08:45:56 +00001257 for (const auto *C : S.getClausesOfKind<OMPIfClause>()) {
1258 if (C->getNameModifier() == OMPD_unknown ||
1259 C->getNameModifier() == OMPD_parallel) {
1260 IfCond = C->getCondition();
1261 break;
1262 }
Alexey Bataev1d677132015-04-22 13:57:31 +00001263 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00001264
Arpith Chacko Jacobfe4890a2017-01-18 20:40:48 +00001265 OMPParallelScope Scope(CGF, S);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00001266 llvm::SmallVector<llvm::Value *, 16> CapturedVars;
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001267 // Combining 'distribute' with 'for' requires sharing each 'distribute' chunk
1268 // lower and upper bounds with the pragma 'for' chunking mechanism.
1269 // The following lambda takes care of appending the lower and upper bound
1270 // parameters when necessary
1271 CodeGenBoundParameters(CGF, S, CapturedVars);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00001272 CGF.GenerateOpenMPCapturedVars(*CS, CapturedVars);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001273 CGF.CGM.getOpenMPRuntime().emitParallelCall(CGF, S.getBeginLoc(), OutlinedFn,
Alexey Bataev2377fe92015-09-10 08:12:02 +00001274 CapturedVars, IfCond);
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001275}
1276
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001277static void emitEmptyBoundParameters(CodeGenFunction &,
1278 const OMPExecutableDirective &,
1279 llvm::SmallVectorImpl<llvm::Value *> &) {}
1280
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001281void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) {
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001282 // Emit parallel region as a standalone region.
Alexey Bataevc99042b2018-03-15 18:10:54 +00001283 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00001284 Action.Enter(CGF);
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001285 OMPPrivateScope PrivateScope(CGF);
Alexey Bataevf56f98c2015-04-16 05:39:01 +00001286 bool Copyins = CGF.EmitOMPCopyinClause(S);
Alexey Bataevcd8b6a22016-02-15 08:07:17 +00001287 (void)CGF.EmitOMPFirstprivateClause(S, PrivateScope);
1288 if (Copyins) {
Alexey Bataev69c62a92015-04-15 04:52:20 +00001289 // Emit implicit barrier to synchronize threads and avoid data races on
Alexey Bataevcd8b6a22016-02-15 08:07:17 +00001290 // propagation master's thread values of threadprivate variables to local
1291 // instances of that variables of all other implicit threads.
Alexey Bataev25e5b442015-09-15 12:52:43 +00001292 CGF.CGM.getOpenMPRuntime().emitBarrierCall(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001293 CGF, S.getBeginLoc(), OMPD_unknown, /*EmitChecks=*/false,
Alexey Bataev25e5b442015-09-15 12:52:43 +00001294 /*ForceSimpleCall=*/true);
Alexey Bataev69c62a92015-04-15 04:52:20 +00001295 }
1296 CGF.EmitOMPPrivateClause(S, PrivateScope);
1297 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
1298 (void)PrivateScope.Privatize();
Alexey Bataev475a7442018-01-12 19:39:11 +00001299 CGF.EmitStmt(S.getCapturedStmt(OMPD_parallel)->getCapturedStmt());
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00001300 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_parallel);
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001301 };
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001302 emitCommonOMPParallelDirective(*this, S, OMPD_parallel, CodeGen,
1303 emitEmptyBoundParameters);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001304 emitPostUpdateForReductionClause(*this, S,
1305 [](CodeGenFunction &) { return nullptr; });
Alexey Bataev9959db52014-05-06 10:08:46 +00001306}
Alexander Musman515ad8c2014-05-22 08:54:05 +00001307
Alexey Bataev0f34da12015-07-02 04:17:07 +00001308void CodeGenFunction::EmitOMPLoopBody(const OMPLoopDirective &D,
1309 JumpDest LoopExit) {
Alexander Musmana5f070a2014-10-01 06:03:56 +00001310 RunCleanupsScope BodyScope(*this);
1311 // Update counters values on current iteration.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001312 for (const Expr *UE : D.updates())
1313 EmitIgnoredExpr(UE);
Alexander Musman3276a272015-03-21 10:12:56 +00001314 // Update the linear variables.
Alexey Bataev617db5f2017-12-04 15:38:33 +00001315 // In distribute directives only loop counters may be marked as linear, no
1316 // need to generate the code for them.
1317 if (!isOpenMPDistributeDirective(D.getDirectiveKind())) {
1318 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001319 for (const Expr *UE : C->updates())
1320 EmitIgnoredExpr(UE);
Alexey Bataev617db5f2017-12-04 15:38:33 +00001321 }
Alexander Musman3276a272015-03-21 10:12:56 +00001322 }
1323
Alexander Musmana5f070a2014-10-01 06:03:56 +00001324 // On a continue in the body, jump to the end.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001325 JumpDest Continue = getJumpDestInCurrentScope("omp.body.continue");
Alexey Bataev0f34da12015-07-02 04:17:07 +00001326 BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
Alexander Musmana5f070a2014-10-01 06:03:56 +00001327 // Emit loop body.
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00001328 EmitStmt(D.getBody());
Alexander Musmana5f070a2014-10-01 06:03:56 +00001329 // The end (updates/cleanups).
1330 EmitBlock(Continue.getBlock());
1331 BreakContinueStack.pop_back();
Alexander Musmana5f070a2014-10-01 06:03:56 +00001332}
1333
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001334void CodeGenFunction::EmitOMPInnerLoop(
1335 const Stmt &S, bool RequiresCleanup, const Expr *LoopCond,
1336 const Expr *IncExpr,
Alexey Bataevddf3db92018-04-13 17:31:06 +00001337 const llvm::function_ref<void(CodeGenFunction &)> BodyGen,
1338 const llvm::function_ref<void(CodeGenFunction &)> PostIncGen) {
Alexander Musmand196ef22014-10-07 08:57:09 +00001339 auto LoopExit = getJumpDestInCurrentScope("omp.inner.for.end");
Alexander Musmana5f070a2014-10-01 06:03:56 +00001340
1341 // Start the loop with a block that tests the condition.
Alexander Musmand196ef22014-10-07 08:57:09 +00001342 auto CondBlock = createBasicBlock("omp.inner.for.cond");
Alexander Musmana5f070a2014-10-01 06:03:56 +00001343 EmitBlock(CondBlock);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001344 const SourceRange R = S.getSourceRange();
Amara Emerson652795d2016-11-10 14:44:30 +00001345 LoopStack.push(CondBlock, SourceLocToDebugLoc(R.getBegin()),
1346 SourceLocToDebugLoc(R.getEnd()));
Alexander Musmana5f070a2014-10-01 06:03:56 +00001347
1348 // If there are any cleanups between here and the loop-exit scope,
1349 // create a block to stage a loop exit along.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001350 llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
Alexey Bataev2df54a02015-03-12 08:53:29 +00001351 if (RequiresCleanup)
Alexander Musmand196ef22014-10-07 08:57:09 +00001352 ExitBlock = createBasicBlock("omp.inner.for.cond.cleanup");
Alexander Musmana5f070a2014-10-01 06:03:56 +00001353
Alexey Bataevddf3db92018-04-13 17:31:06 +00001354 llvm::BasicBlock *LoopBody = createBasicBlock("omp.inner.for.body");
Alexander Musmana5f070a2014-10-01 06:03:56 +00001355
Alexey Bataev2df54a02015-03-12 08:53:29 +00001356 // Emit condition.
Justin Bogner66242d62015-04-23 23:06:47 +00001357 EmitBranchOnBoolExpr(LoopCond, LoopBody, ExitBlock, getProfileCount(&S));
Alexander Musmana5f070a2014-10-01 06:03:56 +00001358 if (ExitBlock != LoopExit.getBlock()) {
1359 EmitBlock(ExitBlock);
1360 EmitBranchThroughCleanup(LoopExit);
1361 }
1362
1363 EmitBlock(LoopBody);
Justin Bogner66242d62015-04-23 23:06:47 +00001364 incrementProfileCounter(&S);
Alexander Musmana5f070a2014-10-01 06:03:56 +00001365
1366 // Create a block for the increment.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001367 JumpDest Continue = getJumpDestInCurrentScope("omp.inner.for.inc");
Alexander Musmana5f070a2014-10-01 06:03:56 +00001368 BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
1369
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001370 BodyGen(*this);
Alexander Musmana5f070a2014-10-01 06:03:56 +00001371
1372 // Emit "IV = IV + 1" and a back-edge to the condition block.
1373 EmitBlock(Continue.getBlock());
Alexey Bataev2df54a02015-03-12 08:53:29 +00001374 EmitIgnoredExpr(IncExpr);
Alexey Bataev98eb6e32015-04-22 11:15:40 +00001375 PostIncGen(*this);
Alexander Musmana5f070a2014-10-01 06:03:56 +00001376 BreakContinueStack.pop_back();
1377 EmitBranch(CondBlock);
1378 LoopStack.pop();
1379 // Emit the fall-through block.
1380 EmitBlock(LoopExit.getBlock());
1381}
1382
Alexey Bataev8c3edfe2017-08-16 15:58:46 +00001383bool CodeGenFunction::EmitOMPLinearClauseInit(const OMPLoopDirective &D) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00001384 if (!HaveInsertPoint())
Alexey Bataev8c3edfe2017-08-16 15:58:46 +00001385 return false;
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001386 // Emit inits for the linear variables.
Alexey Bataev8c3edfe2017-08-16 15:58:46 +00001387 bool HasLinears = false;
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00001388 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001389 for (const Expr *Init : C->inits()) {
Alexey Bataev8c3edfe2017-08-16 15:58:46 +00001390 HasLinears = true;
Alexey Bataevddf3db92018-04-13 17:31:06 +00001391 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(Init)->getDecl());
1392 if (const auto *Ref =
1393 dyn_cast<DeclRefExpr>(VD->getInit()->IgnoreImpCasts())) {
Alexey Bataevef549a82016-03-09 09:49:09 +00001394 AutoVarEmission Emission = EmitAutoVarAlloca(*VD);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001395 const auto *OrigVD = cast<VarDecl>(Ref->getDecl());
Bruno Ricci5fc4db72018-12-21 14:10:18 +00001396 DeclRefExpr DRE(getContext(), const_cast<VarDecl *>(OrigVD),
Alexey Bataevef549a82016-03-09 09:49:09 +00001397 CapturedStmtInfo->lookup(OrigVD) != nullptr,
1398 VD->getInit()->getType(), VK_LValue,
1399 VD->getInit()->getExprLoc());
1400 EmitExprAsInit(&DRE, VD, MakeAddrLValue(Emission.getAllocatedAddress(),
1401 VD->getType()),
1402 /*capturedByInit=*/false);
1403 EmitAutoVarCleanups(Emission);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001404 } else {
Alexey Bataevef549a82016-03-09 09:49:09 +00001405 EmitVarDecl(*VD);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001406 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00001407 }
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001408 // Emit the linear steps for the linear clauses.
1409 // If a step is not constant, it is pre-calculated before the loop.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001410 if (const auto *CS = cast_or_null<BinaryOperator>(C->getCalcStep()))
1411 if (const auto *SaveRef = cast<DeclRefExpr>(CS->getLHS())) {
Alexey Bataev3b5b5c42015-06-18 10:10:12 +00001412 EmitVarDecl(*cast<VarDecl>(SaveRef->getDecl()));
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001413 // Emit calculation of the linear step.
Alexey Bataev3b5b5c42015-06-18 10:10:12 +00001414 EmitIgnoredExpr(CS);
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001415 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00001416 }
Alexey Bataev8c3edfe2017-08-16 15:58:46 +00001417 return HasLinears;
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001418}
1419
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001420void CodeGenFunction::EmitOMPLinearClauseFinal(
1421 const OMPLoopDirective &D,
Alexey Bataevddf3db92018-04-13 17:31:06 +00001422 const llvm::function_ref<llvm::Value *(CodeGenFunction &)> CondGen) {
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001423 if (!HaveInsertPoint())
Alexey Bataev8ef31412015-12-18 07:58:25 +00001424 return;
Alexey Bataevef549a82016-03-09 09:49:09 +00001425 llvm::BasicBlock *DoneBB = nullptr;
Alexander Musman3276a272015-03-21 10:12:56 +00001426 // Emit the final values of the linear variables.
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00001427 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) {
Alexey Bataev39f915b82015-05-08 10:41:21 +00001428 auto IC = C->varlist_begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00001429 for (const Expr *F : C->finals()) {
Alexey Bataevef549a82016-03-09 09:49:09 +00001430 if (!DoneBB) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001431 if (llvm::Value *Cond = CondGen(*this)) {
Alexey Bataevef549a82016-03-09 09:49:09 +00001432 // If the first post-update expression is found, emit conditional
1433 // block if it was requested.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001434 llvm::BasicBlock *ThenBB = createBasicBlock(".omp.linear.pu");
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001435 DoneBB = createBasicBlock(".omp.linear.pu.done");
1436 Builder.CreateCondBr(Cond, ThenBB, DoneBB);
1437 EmitBlock(ThenBB);
Alexey Bataevef549a82016-03-09 09:49:09 +00001438 }
1439 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00001440 const auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IC)->getDecl());
Bruno Ricci5fc4db72018-12-21 14:10:18 +00001441 DeclRefExpr DRE(getContext(), const_cast<VarDecl *>(OrigVD),
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001442 CapturedStmtInfo->lookup(OrigVD) != nullptr,
Alexey Bataev39f915b82015-05-08 10:41:21 +00001443 (*IC)->getType(), VK_LValue, (*IC)->getExprLoc());
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001444 Address OrigAddr = EmitLValue(&DRE).getAddress();
1445 CodeGenFunction::OMPPrivateScope VarScope(*this);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001446 VarScope.addPrivate(OrigVD, [OrigAddr]() { return OrigAddr; });
Alexey Bataev39f915b82015-05-08 10:41:21 +00001447 (void)VarScope.Privatize();
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001448 EmitIgnoredExpr(F);
Alexey Bataev39f915b82015-05-08 10:41:21 +00001449 ++IC;
Alexander Musman3276a272015-03-21 10:12:56 +00001450 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00001451 if (const Expr *PostUpdate = C->getPostUpdateExpr())
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001452 EmitIgnoredExpr(PostUpdate);
Alexander Musman3276a272015-03-21 10:12:56 +00001453 }
Alexey Bataevef549a82016-03-09 09:49:09 +00001454 if (DoneBB)
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001455 EmitBlock(DoneBB, /*IsFinished=*/true);
Alexander Musmana5f070a2014-10-01 06:03:56 +00001456}
1457
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001458static void emitAlignedClause(CodeGenFunction &CGF,
1459 const OMPExecutableDirective &D) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00001460 if (!CGF.HaveInsertPoint())
1461 return;
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00001462 for (const auto *Clause : D.getClausesOfKind<OMPAlignedClause>()) {
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001463 unsigned ClauseAlignment = 0;
Alexey Bataevddf3db92018-04-13 17:31:06 +00001464 if (const Expr *AlignmentExpr = Clause->getAlignment()) {
1465 auto *AlignmentCI =
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001466 cast<llvm::ConstantInt>(CGF.EmitScalarExpr(AlignmentExpr));
1467 ClauseAlignment = static_cast<unsigned>(AlignmentCI->getZExtValue());
Alexander Musman09184fe2014-09-30 05:29:28 +00001468 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00001469 for (const Expr *E : Clause->varlists()) {
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001470 unsigned Alignment = ClauseAlignment;
1471 if (Alignment == 0) {
1472 // OpenMP [2.8.1, Description]
1473 // If no optional parameter is specified, implementation-defined default
1474 // alignments for SIMD instructions on the target platforms are assumed.
1475 Alignment =
Alexey Bataev00396512015-07-02 03:40:19 +00001476 CGF.getContext()
1477 .toCharUnitsFromBits(CGF.getContext().getOpenMPDefaultSimdAlign(
1478 E->getType()->getPointeeType()))
1479 .getQuantity();
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001480 }
1481 assert((Alignment == 0 || llvm::isPowerOf2_32(Alignment)) &&
1482 "alignment is not power of 2");
1483 if (Alignment != 0) {
1484 llvm::Value *PtrValue = CGF.EmitScalarExpr(E);
Roman Lebedevbd1c0872019-01-15 09:44:25 +00001485 CGF.EmitAlignmentAssumption(
1486 PtrValue, E, /*No second loc needed*/ SourceLocation(), Alignment);
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001487 }
Alexander Musman09184fe2014-09-30 05:29:28 +00001488 }
1489 }
1490}
1491
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001492void CodeGenFunction::EmitOMPPrivateLoopCounters(
1493 const OMPLoopDirective &S, CodeGenFunction::OMPPrivateScope &LoopScope) {
1494 if (!HaveInsertPoint())
Alexey Bataev8ef31412015-12-18 07:58:25 +00001495 return;
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001496 auto I = S.private_counters().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00001497 for (const Expr *E : S.counters()) {
1498 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
1499 const auto *PrivateVD = cast<VarDecl>(cast<DeclRefExpr>(*I)->getDecl());
Alexey Bataevab4ea222018-03-07 18:17:06 +00001500 // Emit var without initialization.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001501 AutoVarEmission VarEmission = EmitAutoVarAlloca(*PrivateVD);
Alexey Bataevab4ea222018-03-07 18:17:06 +00001502 EmitAutoVarCleanups(VarEmission);
1503 LocalDeclMap.erase(PrivateVD);
1504 (void)LoopScope.addPrivate(VD, [&VarEmission]() {
1505 return VarEmission.getAllocatedAddress();
Alexey Bataev435ad7b2014-10-10 09:48:26 +00001506 });
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001507 if (LocalDeclMap.count(VD) || CapturedStmtInfo->lookup(VD) ||
1508 VD->hasGlobalStorage()) {
Alexey Bataevab4ea222018-03-07 18:17:06 +00001509 (void)LoopScope.addPrivate(PrivateVD, [this, VD, E]() {
Bruno Ricci5fc4db72018-12-21 14:10:18 +00001510 DeclRefExpr DRE(getContext(), const_cast<VarDecl *>(VD),
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001511 LocalDeclMap.count(VD) || CapturedStmtInfo->lookup(VD),
1512 E->getType(), VK_LValue, E->getExprLoc());
1513 return EmitLValue(&DRE).getAddress();
1514 });
Alexey Bataevab4ea222018-03-07 18:17:06 +00001515 } else {
1516 (void)LoopScope.addPrivate(PrivateVD, [&VarEmission]() {
1517 return VarEmission.getAllocatedAddress();
1518 });
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001519 }
Alexey Bataeva8899172015-08-06 12:30:57 +00001520 ++I;
Alexey Bataev435ad7b2014-10-10 09:48:26 +00001521 }
Alexey Bataevf138fda2018-08-13 19:04:24 +00001522 // Privatize extra loop counters used in loops for ordered(n) clauses.
1523 for (const auto *C : S.getClausesOfKind<OMPOrderedClause>()) {
1524 if (!C->getNumForLoops())
1525 continue;
1526 for (unsigned I = S.getCollapsedNumber(),
1527 E = C->getLoopNumIterations().size();
1528 I < E; ++I) {
Mike Rice0ed46662018-09-20 17:19:41 +00001529 const auto *DRE = cast<DeclRefExpr>(C->getLoopCounter(I));
Alexey Bataevf138fda2018-08-13 19:04:24 +00001530 const auto *VD = cast<VarDecl>(DRE->getDecl());
Alexey Bataev0d8fcdf2019-03-14 20:36:00 +00001531 // Override only those variables that can be captured to avoid re-emission
1532 // of the variables declared within the loops.
1533 if (DRE->refersToEnclosingVariableOrCapture()) {
Alexey Bataevf138fda2018-08-13 19:04:24 +00001534 (void)LoopScope.addPrivate(VD, [this, DRE, VD]() {
1535 return CreateMemTemp(DRE->getType(), VD->getName());
1536 });
1537 }
1538 }
1539 }
Alexey Bataev435ad7b2014-10-10 09:48:26 +00001540}
1541
Alexey Bataev62dbb972015-04-22 11:59:37 +00001542static void emitPreCond(CodeGenFunction &CGF, const OMPLoopDirective &S,
1543 const Expr *Cond, llvm::BasicBlock *TrueBlock,
1544 llvm::BasicBlock *FalseBlock, uint64_t TrueCount) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00001545 if (!CGF.HaveInsertPoint())
1546 return;
Alexey Bataev6e8248f2015-06-11 10:53:56 +00001547 {
1548 CodeGenFunction::OMPPrivateScope PreCondScope(CGF);
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001549 CGF.EmitOMPPrivateLoopCounters(S, PreCondScope);
Alexey Bataev6e8248f2015-06-11 10:53:56 +00001550 (void)PreCondScope.Privatize();
Alexey Bataev6e8248f2015-06-11 10:53:56 +00001551 // Get initial values of real counters.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001552 for (const Expr *I : S.inits()) {
Alexey Bataev6e8248f2015-06-11 10:53:56 +00001553 CGF.EmitIgnoredExpr(I);
1554 }
Alexey Bataev62dbb972015-04-22 11:59:37 +00001555 }
1556 // Check that loop is executed at least one time.
1557 CGF.EmitBranchOnBoolExpr(Cond, TrueBlock, FalseBlock, TrueCount);
1558}
1559
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001560void CodeGenFunction::EmitOMPLinearClause(
1561 const OMPLoopDirective &D, CodeGenFunction::OMPPrivateScope &PrivateScope) {
1562 if (!HaveInsertPoint())
Alexey Bataev8ef31412015-12-18 07:58:25 +00001563 return;
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001564 llvm::DenseSet<const VarDecl *> SIMDLCVs;
1565 if (isOpenMPSimdDirective(D.getDirectiveKind())) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001566 const auto *LoopDirective = cast<OMPLoopDirective>(&D);
1567 for (const Expr *C : LoopDirective->counters()) {
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001568 SIMDLCVs.insert(
1569 cast<VarDecl>(cast<DeclRefExpr>(C)->getDecl())->getCanonicalDecl());
1570 }
1571 }
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00001572 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) {
Alexey Bataevbd9fec12015-08-18 06:47:21 +00001573 auto CurPrivate = C->privates().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00001574 for (const Expr *E : C->varlists()) {
1575 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
1576 const auto *PrivateVD =
Alexey Bataevbd9fec12015-08-18 06:47:21 +00001577 cast<VarDecl>(cast<DeclRefExpr>(*CurPrivate)->getDecl());
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001578 if (!SIMDLCVs.count(VD->getCanonicalDecl())) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001579 bool IsRegistered = PrivateScope.addPrivate(VD, [this, PrivateVD]() {
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001580 // Emit private VarDecl with copy init.
1581 EmitVarDecl(*PrivateVD);
1582 return GetAddrOfLocalVar(PrivateVD);
1583 });
1584 assert(IsRegistered && "linear var already registered as private");
1585 // Silence the warning about unused variable.
1586 (void)IsRegistered;
Alexey Bataevddf3db92018-04-13 17:31:06 +00001587 } else {
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001588 EmitVarDecl(*PrivateVD);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001589 }
Alexey Bataevbd9fec12015-08-18 06:47:21 +00001590 ++CurPrivate;
Alexander Musman3276a272015-03-21 10:12:56 +00001591 }
1592 }
1593}
1594
Alexey Bataev45bfad52015-08-21 12:19:04 +00001595static void emitSimdlenSafelenClause(CodeGenFunction &CGF,
Alexey Bataeva6f2a142015-12-31 06:52:34 +00001596 const OMPExecutableDirective &D,
1597 bool IsMonotonic) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00001598 if (!CGF.HaveInsertPoint())
1599 return;
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00001600 if (const auto *C = D.getSingleClause<OMPSimdlenClause>()) {
Alexey Bataev45bfad52015-08-21 12:19:04 +00001601 RValue Len = CGF.EmitAnyExpr(C->getSimdlen(), AggValueSlot::ignored(),
1602 /*ignoreResult=*/true);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001603 auto *Val = cast<llvm::ConstantInt>(Len.getScalarVal());
Alexey Bataev45bfad52015-08-21 12:19:04 +00001604 CGF.LoopStack.setVectorizeWidth(Val->getZExtValue());
1605 // In presence of finite 'safelen', it may be unsafe to mark all
1606 // the memory instructions parallel, because loop-carried
1607 // dependences of 'safelen' iterations are possible.
Alexey Bataeva6f2a142015-12-31 06:52:34 +00001608 if (!IsMonotonic)
1609 CGF.LoopStack.setParallel(!D.getSingleClause<OMPSafelenClause>());
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00001610 } else if (const auto *C = D.getSingleClause<OMPSafelenClause>()) {
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001611 RValue Len = CGF.EmitAnyExpr(C->getSafelen(), AggValueSlot::ignored(),
1612 /*ignoreResult=*/true);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001613 auto *Val = cast<llvm::ConstantInt>(Len.getScalarVal());
Tyler Nowickida46d0e2015-07-14 23:03:09 +00001614 CGF.LoopStack.setVectorizeWidth(Val->getZExtValue());
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001615 // In presence of finite 'safelen', it may be unsafe to mark all
1616 // the memory instructions parallel, because loop-carried
1617 // dependences of 'safelen' iterations are possible.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001618 CGF.LoopStack.setParallel(/*Enable=*/false);
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00001619 }
1620}
1621
Alexey Bataeva6f2a142015-12-31 06:52:34 +00001622void CodeGenFunction::EmitOMPSimdInit(const OMPLoopDirective &D,
1623 bool IsMonotonic) {
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00001624 // Walk clauses and process safelen/lastprivate.
Alexey Bataeva6f2a142015-12-31 06:52:34 +00001625 LoopStack.setParallel(!IsMonotonic);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001626 LoopStack.setVectorizeEnable();
Alexey Bataeva6f2a142015-12-31 06:52:34 +00001627 emitSimdlenSafelenClause(*this, D, IsMonotonic);
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00001628}
1629
Alexey Bataevef549a82016-03-09 09:49:09 +00001630void CodeGenFunction::EmitOMPSimdFinal(
1631 const OMPLoopDirective &D,
Alexey Bataevddf3db92018-04-13 17:31:06 +00001632 const llvm::function_ref<llvm::Value *(CodeGenFunction &)> CondGen) {
Alexey Bataev8ef31412015-12-18 07:58:25 +00001633 if (!HaveInsertPoint())
1634 return;
Alexey Bataevef549a82016-03-09 09:49:09 +00001635 llvm::BasicBlock *DoneBB = nullptr;
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00001636 auto IC = D.counters().begin();
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001637 auto IPC = D.private_counters().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00001638 for (const Expr *F : D.finals()) {
1639 const auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>((*IC))->getDecl());
1640 const auto *PrivateVD = cast<VarDecl>(cast<DeclRefExpr>((*IPC))->getDecl());
1641 const auto *CED = dyn_cast<OMPCapturedExprDecl>(OrigVD);
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001642 if (LocalDeclMap.count(OrigVD) || CapturedStmtInfo->lookup(OrigVD) ||
1643 OrigVD->hasGlobalStorage() || CED) {
Alexey Bataevef549a82016-03-09 09:49:09 +00001644 if (!DoneBB) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001645 if (llvm::Value *Cond = CondGen(*this)) {
Alexey Bataevef549a82016-03-09 09:49:09 +00001646 // If the first post-update expression is found, emit conditional
1647 // block if it was requested.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001648 llvm::BasicBlock *ThenBB = createBasicBlock(".omp.final.then");
Alexey Bataevef549a82016-03-09 09:49:09 +00001649 DoneBB = createBasicBlock(".omp.final.done");
1650 Builder.CreateCondBr(Cond, ThenBB, DoneBB);
1651 EmitBlock(ThenBB);
1652 }
1653 }
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001654 Address OrigAddr = Address::invalid();
Alexey Bataevab4ea222018-03-07 18:17:06 +00001655 if (CED) {
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001656 OrigAddr = EmitLValue(CED->getInit()->IgnoreImpCasts()).getAddress();
Alexey Bataevab4ea222018-03-07 18:17:06 +00001657 } else {
Bruno Ricci5fc4db72018-12-21 14:10:18 +00001658 DeclRefExpr DRE(getContext(), const_cast<VarDecl *>(PrivateVD),
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001659 /*RefersToEnclosingVariableOrCapture=*/false,
1660 (*IPC)->getType(), VK_LValue, (*IPC)->getExprLoc());
1661 OrigAddr = EmitLValue(&DRE).getAddress();
1662 }
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00001663 OMPPrivateScope VarScope(*this);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001664 VarScope.addPrivate(OrigVD, [OrigAddr]() { return OrigAddr; });
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00001665 (void)VarScope.Privatize();
1666 EmitIgnoredExpr(F);
1667 }
1668 ++IC;
Alexey Bataev5dff95c2016-04-22 03:56:56 +00001669 ++IPC;
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00001670 }
Alexey Bataevef549a82016-03-09 09:49:09 +00001671 if (DoneBB)
1672 EmitBlock(DoneBB, /*IsFinished=*/true);
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00001673}
1674
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001675static void emitOMPLoopBodyWithStopPoint(CodeGenFunction &CGF,
1676 const OMPLoopDirective &S,
1677 CodeGenFunction::JumpDest LoopExit) {
1678 CGF.EmitOMPLoopBody(S, LoopExit);
1679 CGF.EmitStopPoint(&S);
Hans Wennborged129ae2017-04-27 17:02:25 +00001680}
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001681
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00001682/// Emit a helper variable and return corresponding lvalue.
1683static LValue EmitOMPHelperVar(CodeGenFunction &CGF,
1684 const DeclRefExpr *Helper) {
1685 auto VDecl = cast<VarDecl>(Helper->getDecl());
1686 CGF.EmitVarDecl(*VDecl);
1687 return CGF.EmitLValue(Helper);
1688}
1689
Alexey Bataevf8365372017-11-17 17:57:25 +00001690static void emitOMPSimdRegion(CodeGenFunction &CGF, const OMPLoopDirective &S,
1691 PrePostActionTy &Action) {
1692 Action.Enter(CGF);
1693 assert(isOpenMPSimdDirective(S.getDirectiveKind()) &&
1694 "Expected simd directive");
1695 OMPLoopScope PreInitScope(CGF, S);
1696 // if (PreCond) {
1697 // for (IV in 0..LastIteration) BODY;
1698 // <Final counter/linear vars updates>;
1699 // }
1700 //
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00001701 if (isOpenMPDistributeDirective(S.getDirectiveKind()) ||
1702 isOpenMPWorksharingDirective(S.getDirectiveKind()) ||
1703 isOpenMPTaskLoopDirective(S.getDirectiveKind())) {
1704 (void)EmitOMPHelperVar(CGF, cast<DeclRefExpr>(S.getLowerBoundVariable()));
1705 (void)EmitOMPHelperVar(CGF, cast<DeclRefExpr>(S.getUpperBoundVariable()));
1706 }
Alexander Musmana5f070a2014-10-01 06:03:56 +00001707
Alexey Bataevf8365372017-11-17 17:57:25 +00001708 // Emit: if (PreCond) - begin.
1709 // If the condition constant folds and can be elided, avoid emitting the
1710 // whole loop.
1711 bool CondConstant;
1712 llvm::BasicBlock *ContBlock = nullptr;
1713 if (CGF.ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) {
1714 if (!CondConstant)
1715 return;
1716 } else {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001717 llvm::BasicBlock *ThenBlock = CGF.createBasicBlock("simd.if.then");
Alexey Bataevf8365372017-11-17 17:57:25 +00001718 ContBlock = CGF.createBasicBlock("simd.if.end");
1719 emitPreCond(CGF, S, S.getPreCond(), ThenBlock, ContBlock,
1720 CGF.getProfileCount(&S));
1721 CGF.EmitBlock(ThenBlock);
1722 CGF.incrementProfileCounter(&S);
1723 }
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001724
Alexey Bataevf8365372017-11-17 17:57:25 +00001725 // Emit the loop iteration variable.
1726 const Expr *IVExpr = S.getIterationVariable();
Alexey Bataevddf3db92018-04-13 17:31:06 +00001727 const auto *IVDecl = cast<VarDecl>(cast<DeclRefExpr>(IVExpr)->getDecl());
Alexey Bataevf8365372017-11-17 17:57:25 +00001728 CGF.EmitVarDecl(*IVDecl);
1729 CGF.EmitIgnoredExpr(S.getInit());
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001730
Alexey Bataevf8365372017-11-17 17:57:25 +00001731 // Emit the iterations count variable.
1732 // If it is not a variable, Sema decided to calculate iterations count on
1733 // each iteration (e.g., it is foldable into a constant).
Alexey Bataevddf3db92018-04-13 17:31:06 +00001734 if (const auto *LIExpr = dyn_cast<DeclRefExpr>(S.getLastIteration())) {
Alexey Bataevf8365372017-11-17 17:57:25 +00001735 CGF.EmitVarDecl(*cast<VarDecl>(LIExpr->getDecl()));
1736 // Emit calculation of the iterations count.
1737 CGF.EmitIgnoredExpr(S.getCalcLastIteration());
1738 }
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001739
Alexey Bataevf8365372017-11-17 17:57:25 +00001740 CGF.EmitOMPSimdInit(S);
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001741
Alexey Bataevf8365372017-11-17 17:57:25 +00001742 emitAlignedClause(CGF, S);
1743 (void)CGF.EmitOMPLinearClauseInit(S);
1744 {
1745 CodeGenFunction::OMPPrivateScope LoopScope(CGF);
1746 CGF.EmitOMPPrivateLoopCounters(S, LoopScope);
1747 CGF.EmitOMPLinearClause(S, LoopScope);
1748 CGF.EmitOMPPrivateClause(S, LoopScope);
1749 CGF.EmitOMPReductionClauseInit(S, LoopScope);
1750 bool HasLastprivateClause = CGF.EmitOMPLastprivateClauseInit(S, LoopScope);
1751 (void)LoopScope.Privatize();
Alexey Bataev60705422018-10-30 15:50:12 +00001752 if (isOpenMPTargetExecutionDirective(S.getDirectiveKind()))
1753 CGF.CGM.getOpenMPRuntime().adjustTargetSpecificDataForLambdas(CGF, S);
Alexey Bataevf8365372017-11-17 17:57:25 +00001754 CGF.EmitOMPInnerLoop(S, LoopScope.requiresCleanups(), S.getCond(),
1755 S.getInc(),
1756 [&S](CodeGenFunction &CGF) {
1757 CGF.EmitOMPLoopBody(S, CodeGenFunction::JumpDest());
1758 CGF.EmitStopPoint(&S);
1759 },
1760 [](CodeGenFunction &) {});
Alexey Bataevddf3db92018-04-13 17:31:06 +00001761 CGF.EmitOMPSimdFinal(S, [](CodeGenFunction &) { return nullptr; });
Alexey Bataevf8365372017-11-17 17:57:25 +00001762 // Emit final copy of the lastprivate variables at the end of loops.
1763 if (HasLastprivateClause)
1764 CGF.EmitOMPLastprivateClauseFinal(S, /*NoFinals=*/true);
1765 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_simd);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001766 emitPostUpdateForReductionClause(CGF, S,
1767 [](CodeGenFunction &) { return nullptr; });
Alexey Bataevf8365372017-11-17 17:57:25 +00001768 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00001769 CGF.EmitOMPLinearClauseFinal(S, [](CodeGenFunction &) { return nullptr; });
Alexey Bataevf8365372017-11-17 17:57:25 +00001770 // Emit: if (PreCond) - end.
1771 if (ContBlock) {
1772 CGF.EmitBranch(ContBlock);
1773 CGF.EmitBlock(ContBlock, true);
1774 }
1775}
1776
1777void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) {
1778 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
1779 emitOMPSimdRegion(CGF, S, Action);
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00001780 };
Alexey Bataev475a7442018-01-12 19:39:11 +00001781 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Alexey Bataev81c7ea02015-07-03 09:56:58 +00001782 CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_simd, CodeGen);
Alexander Musman515ad8c2014-05-22 08:54:05 +00001783}
1784
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001785void CodeGenFunction::EmitOMPOuterLoop(
1786 bool DynamicOrOrdered, bool IsMonotonic, const OMPLoopDirective &S,
1787 CodeGenFunction::OMPPrivateScope &LoopScope,
1788 const CodeGenFunction::OMPLoopArguments &LoopArgs,
1789 const CodeGenFunction::CodeGenLoopTy &CodeGenLoop,
1790 const CodeGenFunction::CodeGenOrderedTy &CodeGenOrdered) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001791 CGOpenMPRuntime &RT = CGM.getOpenMPRuntime();
Alexander Musman92bdaab2015-03-12 13:37:50 +00001792
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001793 const Expr *IVExpr = S.getIterationVariable();
1794 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType());
1795 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation();
1796
Alexey Bataevddf3db92018-04-13 17:31:06 +00001797 JumpDest LoopExit = getJumpDestInCurrentScope("omp.dispatch.end");
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001798
1799 // Start the loop with a block that tests the condition.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001800 llvm::BasicBlock *CondBlock = createBasicBlock("omp.dispatch.cond");
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001801 EmitBlock(CondBlock);
Alexey Bataevddf3db92018-04-13 17:31:06 +00001802 const SourceRange R = S.getSourceRange();
Amara Emerson652795d2016-11-10 14:44:30 +00001803 LoopStack.push(CondBlock, SourceLocToDebugLoc(R.getBegin()),
1804 SourceLocToDebugLoc(R.getEnd()));
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001805
1806 llvm::Value *BoolCondVal = nullptr;
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00001807 if (!DynamicOrOrdered) {
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001808 // UB = min(UB, GlobalUB) or
1809 // UB = min(UB, PrevUB) for combined loop sharing constructs (e.g.
1810 // 'distribute parallel for')
1811 EmitIgnoredExpr(LoopArgs.EUB);
Alexander Musman92bdaab2015-03-12 13:37:50 +00001812 // IV = LB
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001813 EmitIgnoredExpr(LoopArgs.Init);
Alexander Musman92bdaab2015-03-12 13:37:50 +00001814 // IV < UB
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001815 BoolCondVal = EvaluateExprAsBool(LoopArgs.Cond);
Alexander Musman92bdaab2015-03-12 13:37:50 +00001816 } else {
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001817 BoolCondVal =
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001818 RT.emitForNext(*this, S.getBeginLoc(), IVSize, IVSigned, LoopArgs.IL,
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001819 LoopArgs.LB, LoopArgs.UB, LoopArgs.ST);
Alexander Musman92bdaab2015-03-12 13:37:50 +00001820 }
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001821
1822 // If there are any cleanups between here and the loop-exit scope,
1823 // create a block to stage a loop exit along.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001824 llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001825 if (LoopScope.requiresCleanups())
1826 ExitBlock = createBasicBlock("omp.dispatch.cleanup");
1827
Alexey Bataevddf3db92018-04-13 17:31:06 +00001828 llvm::BasicBlock *LoopBody = createBasicBlock("omp.dispatch.body");
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001829 Builder.CreateCondBr(BoolCondVal, LoopBody, ExitBlock);
1830 if (ExitBlock != LoopExit.getBlock()) {
1831 EmitBlock(ExitBlock);
1832 EmitBranchThroughCleanup(LoopExit);
1833 }
1834 EmitBlock(LoopBody);
1835
Alexander Musman92bdaab2015-03-12 13:37:50 +00001836 // Emit "IV = LB" (in case of static schedule, we have already calculated new
1837 // LB for loop condition and emitted it above).
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00001838 if (DynamicOrOrdered)
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001839 EmitIgnoredExpr(LoopArgs.Init);
Alexander Musman92bdaab2015-03-12 13:37:50 +00001840
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001841 // Create a block for the increment.
Alexey Bataevddf3db92018-04-13 17:31:06 +00001842 JumpDest Continue = getJumpDestInCurrentScope("omp.dispatch.inc");
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001843 BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
1844
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00001845 // Generate !llvm.loop.parallel metadata for loads and stores for loops
1846 // with dynamic/guided scheduling and without ordered clause.
Alexey Bataeva6f2a142015-12-31 06:52:34 +00001847 if (!isOpenMPSimdDirective(S.getDirectiveKind()))
1848 LoopStack.setParallel(!IsMonotonic);
1849 else
1850 EmitOMPSimdInit(S, IsMonotonic);
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00001851
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001852 SourceLocation Loc = S.getBeginLoc();
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001853
1854 // when 'distribute' is not combined with a 'for':
1855 // while (idx <= UB) { BODY; ++idx; }
1856 // when 'distribute' is combined with a 'for'
1857 // (e.g. 'distribute parallel for')
1858 // while (idx <= UB) { <CodeGen rest of pragma>; idx += ST; }
1859 EmitOMPInnerLoop(
1860 S, LoopScope.requiresCleanups(), LoopArgs.Cond, LoopArgs.IncExpr,
1861 [&S, LoopExit, &CodeGenLoop](CodeGenFunction &CGF) {
1862 CodeGenLoop(CGF, S, LoopExit);
1863 },
1864 [IVSize, IVSigned, Loc, &CodeGenOrdered](CodeGenFunction &CGF) {
1865 CodeGenOrdered(CGF, Loc, IVSize, IVSigned);
1866 });
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001867
1868 EmitBlock(Continue.getBlock());
1869 BreakContinueStack.pop_back();
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00001870 if (!DynamicOrOrdered) {
Alexander Musman92bdaab2015-03-12 13:37:50 +00001871 // Emit "LB = LB + Stride", "UB = UB + Stride".
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001872 EmitIgnoredExpr(LoopArgs.NextLB);
1873 EmitIgnoredExpr(LoopArgs.NextUB);
Alexander Musman92bdaab2015-03-12 13:37:50 +00001874 }
Alexander Musmandf7a8e22015-01-22 08:49:35 +00001875
1876 EmitBranch(CondBlock);
1877 LoopStack.pop();
1878 // Emit the fall-through block.
1879 EmitBlock(LoopExit.getBlock());
1880
1881 // Tell the runtime we are done.
Alexey Bataev957d8562016-11-17 15:12:05 +00001882 auto &&CodeGen = [DynamicOrOrdered, &S](CodeGenFunction &CGF) {
1883 if (!DynamicOrOrdered)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001884 CGF.CGM.getOpenMPRuntime().emitForStaticFinish(CGF, S.getEndLoc(),
Alexey Bataevf43f7142017-09-06 16:17:35 +00001885 S.getDirectiveKind());
Alexey Bataev957d8562016-11-17 15:12:05 +00001886 };
1887 OMPCancelStack.emitExit(*this, S.getDirectiveKind(), CodeGen);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00001888}
1889
1890void CodeGenFunction::EmitOMPForOuterLoop(
Alexey Bataev9ebd7422016-05-10 09:57:36 +00001891 const OpenMPScheduleTy &ScheduleKind, bool IsMonotonic,
Carlo Bertollifc35ad22016-03-07 16:04:49 +00001892 const OMPLoopDirective &S, OMPPrivateScope &LoopScope, bool Ordered,
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001893 const OMPLoopArguments &LoopArgs,
1894 const CodeGenDispatchBoundsTy &CGDispatchBounds) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001895 CGOpenMPRuntime &RT = CGM.getOpenMPRuntime();
Carlo Bertollifc35ad22016-03-07 16:04:49 +00001896
1897 // Dynamic scheduling of the outer loop (dynamic, guided, auto, runtime).
Alexey Bataev9ebd7422016-05-10 09:57:36 +00001898 const bool DynamicOrOrdered =
1899 Ordered || RT.isDynamic(ScheduleKind.Schedule);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00001900
1901 assert((Ordered ||
Alexey Bataev9ebd7422016-05-10 09:57:36 +00001902 !RT.isStaticNonchunked(ScheduleKind.Schedule,
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001903 LoopArgs.Chunk != nullptr)) &&
Carlo Bertollifc35ad22016-03-07 16:04:49 +00001904 "static non-chunked schedule does not need outer loop");
1905
1906 // Emit outer loop.
1907 //
1908 // OpenMP [2.7.1, Loop Construct, Description, table 2-1]
1909 // When schedule(dynamic,chunk_size) is specified, the iterations are
1910 // distributed to threads in the team in chunks as the threads request them.
1911 // Each thread executes a chunk of iterations, then requests another chunk,
1912 // until no chunks remain to be distributed. Each chunk contains chunk_size
1913 // iterations, except for the last chunk to be distributed, which may have
1914 // fewer iterations. When no chunk_size is specified, it defaults to 1.
1915 //
1916 // When schedule(guided,chunk_size) is specified, the iterations are assigned
1917 // to threads in the team in chunks as the executing threads request them.
1918 // Each thread executes a chunk of iterations, then requests another chunk,
1919 // until no chunks remain to be assigned. For a chunk_size of 1, the size of
1920 // each chunk is proportional to the number of unassigned iterations divided
1921 // by the number of threads in the team, decreasing to 1. For a chunk_size
1922 // with value k (greater than 1), the size of each chunk is determined in the
1923 // same way, with the restriction that the chunks do not contain fewer than k
1924 // iterations (except for the last chunk to be assigned, which may have fewer
1925 // than k iterations).
1926 //
1927 // When schedule(auto) is specified, the decision regarding scheduling is
1928 // delegated to the compiler and/or runtime system. The programmer gives the
1929 // implementation the freedom to choose any possible mapping of iterations to
1930 // threads in the team.
1931 //
1932 // When schedule(runtime) is specified, the decision regarding scheduling is
1933 // deferred until run time, and the schedule and chunk size are taken from the
1934 // run-sched-var ICV. If the ICV is set to auto, the schedule is
1935 // implementation defined
1936 //
1937 // while(__kmpc_dispatch_next(&LB, &UB)) {
1938 // idx = LB;
1939 // while (idx <= UB) { BODY; ++idx;
1940 // __kmpc_dispatch_fini_(4|8)[u](); // For ordered loops only.
1941 // } // inner loop
1942 // }
1943 //
1944 // OpenMP [2.7.1, Loop Construct, Description, table 2-1]
1945 // When schedule(static, chunk_size) is specified, iterations are divided into
1946 // chunks of size chunk_size, and the chunks are assigned to the threads in
1947 // the team in a round-robin fashion in the order of the thread number.
1948 //
1949 // while(UB = min(UB, GlobalUB), idx = LB, idx < UB) {
1950 // while (idx <= UB) { BODY; ++idx; } // inner loop
1951 // LB = LB + ST;
1952 // UB = UB + ST;
1953 // }
1954 //
1955
1956 const Expr *IVExpr = S.getIterationVariable();
1957 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType());
1958 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation();
1959
1960 if (DynamicOrOrdered) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00001961 const std::pair<llvm::Value *, llvm::Value *> DispatchBounds =
1962 CGDispatchBounds(*this, S, LoopArgs.LB, LoopArgs.UB);
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001963 llvm::Value *LBVal = DispatchBounds.first;
1964 llvm::Value *UBVal = DispatchBounds.second;
1965 CGOpenMPRuntime::DispatchRTInput DipatchRTInputValues = {LBVal, UBVal,
1966 LoopArgs.Chunk};
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001967 RT.emitForDispatchInit(*this, S.getBeginLoc(), ScheduleKind, IVSize,
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001968 IVSigned, Ordered, DipatchRTInputValues);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00001969 } else {
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00001970 CGOpenMPRuntime::StaticRTInput StaticInit(
1971 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB,
1972 LoopArgs.ST, LoopArgs.Chunk);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001973 RT.emitForStaticInit(*this, S.getBeginLoc(), S.getDirectiveKind(),
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00001974 ScheduleKind, StaticInit);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00001975 }
1976
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001977 auto &&CodeGenOrdered = [Ordered](CodeGenFunction &CGF, SourceLocation Loc,
1978 const unsigned IVSize,
1979 const bool IVSigned) {
1980 if (Ordered) {
1981 CGF.CGM.getOpenMPRuntime().emitForOrderedIterationEnd(CGF, Loc, IVSize,
1982 IVSigned);
1983 }
1984 };
1985
1986 OMPLoopArguments OuterLoopArgs(LoopArgs.LB, LoopArgs.UB, LoopArgs.ST,
1987 LoopArgs.IL, LoopArgs.Chunk, LoopArgs.EUB);
1988 OuterLoopArgs.IncExpr = S.getInc();
1989 OuterLoopArgs.Init = S.getInit();
1990 OuterLoopArgs.Cond = S.getCond();
1991 OuterLoopArgs.NextLB = S.getNextLowerBound();
1992 OuterLoopArgs.NextUB = S.getNextUpperBound();
1993 EmitOMPOuterLoop(DynamicOrOrdered, IsMonotonic, S, LoopScope, OuterLoopArgs,
1994 emitOMPLoopBodyWithStopPoint, CodeGenOrdered);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00001995}
1996
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00001997static void emitEmptyOrdered(CodeGenFunction &, SourceLocation Loc,
1998 const unsigned IVSize, const bool IVSigned) {}
1999
Carlo Bertollifc35ad22016-03-07 16:04:49 +00002000void CodeGenFunction::EmitOMPDistributeOuterLoop(
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002001 OpenMPDistScheduleClauseKind ScheduleKind, const OMPLoopDirective &S,
2002 OMPPrivateScope &LoopScope, const OMPLoopArguments &LoopArgs,
2003 const CodeGenLoopTy &CodeGenLoopContent) {
Carlo Bertollifc35ad22016-03-07 16:04:49 +00002004
Alexey Bataevddf3db92018-04-13 17:31:06 +00002005 CGOpenMPRuntime &RT = CGM.getOpenMPRuntime();
Carlo Bertollifc35ad22016-03-07 16:04:49 +00002006
2007 // Emit outer loop.
2008 // Same behavior as a OMPForOuterLoop, except that schedule cannot be
2009 // dynamic
2010 //
2011
2012 const Expr *IVExpr = S.getIterationVariable();
2013 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType());
2014 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation();
2015
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00002016 CGOpenMPRuntime::StaticRTInput StaticInit(
2017 IVSize, IVSigned, /* Ordered = */ false, LoopArgs.IL, LoopArgs.LB,
2018 LoopArgs.UB, LoopArgs.ST, LoopArgs.Chunk);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002019 RT.emitDistributeStaticInit(*this, S.getBeginLoc(), ScheduleKind, StaticInit);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00002020
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002021 // for combined 'distribute' and 'for' the increment expression of distribute
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00002022 // is stored in DistInc. For 'distribute' alone, it is in Inc.
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002023 Expr *IncExpr;
2024 if (isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()))
2025 IncExpr = S.getDistInc();
2026 else
2027 IncExpr = S.getInc();
2028
2029 // this routine is shared by 'omp distribute parallel for' and
2030 // 'omp distribute': select the right EUB expression depending on the
2031 // directive
2032 OMPLoopArguments OuterLoopArgs;
2033 OuterLoopArgs.LB = LoopArgs.LB;
2034 OuterLoopArgs.UB = LoopArgs.UB;
2035 OuterLoopArgs.ST = LoopArgs.ST;
2036 OuterLoopArgs.IL = LoopArgs.IL;
2037 OuterLoopArgs.Chunk = LoopArgs.Chunk;
2038 OuterLoopArgs.EUB = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
2039 ? S.getCombinedEnsureUpperBound()
2040 : S.getEnsureUpperBound();
2041 OuterLoopArgs.IncExpr = IncExpr;
2042 OuterLoopArgs.Init = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
2043 ? S.getCombinedInit()
2044 : S.getInit();
2045 OuterLoopArgs.Cond = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
2046 ? S.getCombinedCond()
2047 : S.getCond();
2048 OuterLoopArgs.NextLB = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
2049 ? S.getCombinedNextLowerBound()
2050 : S.getNextLowerBound();
2051 OuterLoopArgs.NextUB = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
2052 ? S.getCombinedNextUpperBound()
2053 : S.getNextUpperBound();
2054
2055 EmitOMPOuterLoop(/* DynamicOrOrdered = */ false, /* IsMonotonic = */ false, S,
2056 LoopScope, OuterLoopArgs, CodeGenLoopContent,
2057 emitEmptyOrdered);
2058}
2059
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002060static std::pair<LValue, LValue>
2061emitDistributeParallelForInnerBounds(CodeGenFunction &CGF,
2062 const OMPExecutableDirective &S) {
2063 const OMPLoopDirective &LS = cast<OMPLoopDirective>(S);
2064 LValue LB =
2065 EmitOMPHelperVar(CGF, cast<DeclRefExpr>(LS.getLowerBoundVariable()));
2066 LValue UB =
2067 EmitOMPHelperVar(CGF, cast<DeclRefExpr>(LS.getUpperBoundVariable()));
2068
2069 // When composing 'distribute' with 'for' (e.g. as in 'distribute
2070 // parallel for') we need to use the 'distribute'
2071 // chunk lower and upper bounds rather than the whole loop iteration
2072 // space. These are parameters to the outlined function for 'parallel'
2073 // and we copy the bounds of the previous schedule into the
2074 // the current ones.
2075 LValue PrevLB = CGF.EmitLValue(LS.getPrevLowerBoundVariable());
2076 LValue PrevUB = CGF.EmitLValue(LS.getPrevUpperBoundVariable());
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00002077 llvm::Value *PrevLBVal = CGF.EmitLoadOfScalar(
2078 PrevLB, LS.getPrevLowerBoundVariable()->getExprLoc());
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002079 PrevLBVal = CGF.EmitScalarConversion(
2080 PrevLBVal, LS.getPrevLowerBoundVariable()->getType(),
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00002081 LS.getIterationVariable()->getType(),
2082 LS.getPrevLowerBoundVariable()->getExprLoc());
2083 llvm::Value *PrevUBVal = CGF.EmitLoadOfScalar(
2084 PrevUB, LS.getPrevUpperBoundVariable()->getExprLoc());
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002085 PrevUBVal = CGF.EmitScalarConversion(
2086 PrevUBVal, LS.getPrevUpperBoundVariable()->getType(),
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00002087 LS.getIterationVariable()->getType(),
2088 LS.getPrevUpperBoundVariable()->getExprLoc());
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002089
2090 CGF.EmitStoreOfScalar(PrevLBVal, LB);
2091 CGF.EmitStoreOfScalar(PrevUBVal, UB);
2092
2093 return {LB, UB};
2094}
2095
2096/// if the 'for' loop has a dispatch schedule (e.g. dynamic, guided) then
2097/// we need to use the LB and UB expressions generated by the worksharing
2098/// code generation support, whereas in non combined situations we would
2099/// just emit 0 and the LastIteration expression
2100/// This function is necessary due to the difference of the LB and UB
2101/// types for the RT emission routines for 'for_static_init' and
2102/// 'for_dispatch_init'
2103static std::pair<llvm::Value *, llvm::Value *>
2104emitDistributeParallelForDispatchBounds(CodeGenFunction &CGF,
2105 const OMPExecutableDirective &S,
2106 Address LB, Address UB) {
2107 const OMPLoopDirective &LS = cast<OMPLoopDirective>(S);
2108 const Expr *IVExpr = LS.getIterationVariable();
2109 // when implementing a dynamic schedule for a 'for' combined with a
2110 // 'distribute' (e.g. 'distribute parallel for'), the 'for' loop
2111 // is not normalized as each team only executes its own assigned
2112 // distribute chunk
2113 QualType IteratorTy = IVExpr->getType();
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00002114 llvm::Value *LBVal =
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002115 CGF.EmitLoadOfScalar(LB, /*Volatile=*/false, IteratorTy, S.getBeginLoc());
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00002116 llvm::Value *UBVal =
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002117 CGF.EmitLoadOfScalar(UB, /*Volatile=*/false, IteratorTy, S.getBeginLoc());
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002118 return {LBVal, UBVal};
Hans Wennborged129ae2017-04-27 17:02:25 +00002119}
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002120
2121static void emitDistributeParallelForDistributeInnerBoundParams(
2122 CodeGenFunction &CGF, const OMPExecutableDirective &S,
2123 llvm::SmallVectorImpl<llvm::Value *> &CapturedVars) {
2124 const auto &Dir = cast<OMPLoopDirective>(S);
2125 LValue LB =
2126 CGF.EmitLValue(cast<DeclRefExpr>(Dir.getCombinedLowerBoundVariable()));
Alexey Bataevddf3db92018-04-13 17:31:06 +00002127 llvm::Value *LBCast = CGF.Builder.CreateIntCast(
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002128 CGF.Builder.CreateLoad(LB.getAddress()), CGF.SizeTy, /*isSigned=*/false);
2129 CapturedVars.push_back(LBCast);
2130 LValue UB =
2131 CGF.EmitLValue(cast<DeclRefExpr>(Dir.getCombinedUpperBoundVariable()));
2132
Alexey Bataevddf3db92018-04-13 17:31:06 +00002133 llvm::Value *UBCast = CGF.Builder.CreateIntCast(
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002134 CGF.Builder.CreateLoad(UB.getAddress()), CGF.SizeTy, /*isSigned=*/false);
2135 CapturedVars.push_back(UBCast);
Hans Wennborged129ae2017-04-27 17:02:25 +00002136}
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002137
2138static void
2139emitInnerParallelForWhenCombined(CodeGenFunction &CGF,
2140 const OMPLoopDirective &S,
2141 CodeGenFunction::JumpDest LoopExit) {
2142 auto &&CGInlinedWorksharingLoop = [&S](CodeGenFunction &CGF,
Alexey Bataevc99042b2018-03-15 18:10:54 +00002143 PrePostActionTy &Action) {
2144 Action.Enter(CGF);
Alexey Bataevdcb4b8fb2017-11-22 20:19:50 +00002145 bool HasCancel = false;
2146 if (!isOpenMPSimdDirective(S.getDirectiveKind())) {
2147 if (const auto *D = dyn_cast<OMPTeamsDistributeParallelForDirective>(&S))
2148 HasCancel = D->hasCancel();
2149 else if (const auto *D = dyn_cast<OMPDistributeParallelForDirective>(&S))
2150 HasCancel = D->hasCancel();
Alexey Bataev16e79882017-11-22 21:12:03 +00002151 else if (const auto *D =
2152 dyn_cast<OMPTargetTeamsDistributeParallelForDirective>(&S))
2153 HasCancel = D->hasCancel();
Alexey Bataevdcb4b8fb2017-11-22 20:19:50 +00002154 }
2155 CodeGenFunction::OMPCancelStackRAII CancelRegion(CGF, S.getDirectiveKind(),
2156 HasCancel);
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002157 CGF.EmitOMPWorksharingLoop(S, S.getPrevEnsureUpperBound(),
2158 emitDistributeParallelForInnerBounds,
2159 emitDistributeParallelForDispatchBounds);
2160 };
2161
2162 emitCommonOMPParallelDirective(
Alexey Bataevdcb4b8fb2017-11-22 20:19:50 +00002163 CGF, S,
2164 isOpenMPSimdDirective(S.getDirectiveKind()) ? OMPD_for_simd : OMPD_for,
2165 CGInlinedWorksharingLoop,
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002166 emitDistributeParallelForDistributeInnerBoundParams);
Alexander Musmandf7a8e22015-01-22 08:49:35 +00002167}
2168
Carlo Bertolli9925f152016-06-27 14:55:37 +00002169void CodeGenFunction::EmitOMPDistributeParallelForDirective(
2170 const OMPDistributeParallelForDirective &S) {
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002171 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
2172 CGF.EmitOMPDistributeLoop(S, emitInnerParallelForWhenCombined,
2173 S.getDistInc());
2174 };
Alexey Bataev475a7442018-01-12 19:39:11 +00002175 OMPLexicalScope Scope(*this, S, OMPD_parallel);
Alexey Bataev10a54312017-11-27 16:54:08 +00002176 CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_distribute, CodeGen);
Carlo Bertolli9925f152016-06-27 14:55:37 +00002177}
2178
Kelvin Li4a39add2016-07-05 05:00:15 +00002179void CodeGenFunction::EmitOMPDistributeParallelForSimdDirective(
2180 const OMPDistributeParallelForSimdDirective &S) {
Alexey Bataev0b49f9e2017-11-27 19:38:58 +00002181 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
2182 CGF.EmitOMPDistributeLoop(S, emitInnerParallelForWhenCombined,
2183 S.getDistInc());
2184 };
Alexey Bataev475a7442018-01-12 19:39:11 +00002185 OMPLexicalScope Scope(*this, S, OMPD_parallel);
Alexey Bataev0b49f9e2017-11-27 19:38:58 +00002186 CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_distribute, CodeGen);
Kelvin Li4a39add2016-07-05 05:00:15 +00002187}
Kelvin Li787f3fc2016-07-06 04:45:38 +00002188
2189void CodeGenFunction::EmitOMPDistributeSimdDirective(
2190 const OMPDistributeSimdDirective &S) {
Alexey Bataev617db5f2017-12-04 15:38:33 +00002191 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
2192 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc());
2193 };
Alexey Bataev475a7442018-01-12 19:39:11 +00002194 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Alexey Bataev617db5f2017-12-04 15:38:33 +00002195 CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_simd, CodeGen);
Kelvin Li787f3fc2016-07-06 04:45:38 +00002196}
2197
Alexey Bataevf8365372017-11-17 17:57:25 +00002198void CodeGenFunction::EmitOMPTargetSimdDeviceFunction(
2199 CodeGenModule &CGM, StringRef ParentName, const OMPTargetSimdDirective &S) {
2200 // Emit SPMD target parallel for region as a standalone region.
2201 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
2202 emitOMPSimdRegion(CGF, S, Action);
2203 };
2204 llvm::Function *Fn;
2205 llvm::Constant *Addr;
2206 // Emit target region as a standalone region.
2207 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(
2208 S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen);
2209 assert(Fn && Addr && "Target device function emission failed.");
2210}
2211
Kelvin Li986330c2016-07-20 22:57:10 +00002212void CodeGenFunction::EmitOMPTargetSimdDirective(
2213 const OMPTargetSimdDirective &S) {
Alexey Bataevf8365372017-11-17 17:57:25 +00002214 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
2215 emitOMPSimdRegion(CGF, S, Action);
2216 };
2217 emitCommonOMPTargetDirective(*this, S, CodeGen);
Kelvin Li986330c2016-07-20 22:57:10 +00002218}
2219
Alexey Bataeva6f2a142015-12-31 06:52:34 +00002220namespace {
2221 struct ScheduleKindModifiersTy {
2222 OpenMPScheduleClauseKind Kind;
2223 OpenMPScheduleClauseModifier M1;
2224 OpenMPScheduleClauseModifier M2;
2225 ScheduleKindModifiersTy(OpenMPScheduleClauseKind Kind,
2226 OpenMPScheduleClauseModifier M1,
2227 OpenMPScheduleClauseModifier M2)
2228 : Kind(Kind), M1(M1), M2(M2) {}
2229 };
2230} // namespace
2231
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002232bool CodeGenFunction::EmitOMPWorksharingLoop(
2233 const OMPLoopDirective &S, Expr *EUB,
2234 const CodeGenLoopBoundsTy &CodeGenLoopBounds,
2235 const CodeGenDispatchBoundsTy &CGDispatchBounds) {
Alexander Musmanc6388682014-12-15 07:07:06 +00002236 // Emit the loop iteration variable.
Alexey Bataevddf3db92018-04-13 17:31:06 +00002237 const auto *IVExpr = cast<DeclRefExpr>(S.getIterationVariable());
2238 const auto *IVDecl = cast<VarDecl>(IVExpr->getDecl());
Alexander Musmanc6388682014-12-15 07:07:06 +00002239 EmitVarDecl(*IVDecl);
2240
2241 // Emit the iterations count variable.
2242 // If it is not a variable, Sema decided to calculate iterations count on each
2243 // iteration (e.g., it is foldable into a constant).
Alexey Bataevddf3db92018-04-13 17:31:06 +00002244 if (const auto *LIExpr = dyn_cast<DeclRefExpr>(S.getLastIteration())) {
Alexander Musmanc6388682014-12-15 07:07:06 +00002245 EmitVarDecl(*cast<VarDecl>(LIExpr->getDecl()));
2246 // Emit calculation of the iterations count.
2247 EmitIgnoredExpr(S.getCalcLastIteration());
2248 }
2249
Alexey Bataevddf3db92018-04-13 17:31:06 +00002250 CGOpenMPRuntime &RT = CGM.getOpenMPRuntime();
Alexander Musmanc6388682014-12-15 07:07:06 +00002251
Alexey Bataev38e89532015-04-16 04:54:05 +00002252 bool HasLastprivateClause;
Alexander Musmanc6388682014-12-15 07:07:06 +00002253 // Check pre-condition.
2254 {
Alexey Bataev5a3af132016-03-29 08:58:54 +00002255 OMPLoopScope PreInitScope(*this, S);
Alexander Musmanc6388682014-12-15 07:07:06 +00002256 // Skip the entire loop if we don't meet the precondition.
Alexey Bataev62dbb972015-04-22 11:59:37 +00002257 // If the condition constant folds and can be elided, avoid emitting the
2258 // whole loop.
2259 bool CondConstant;
2260 llvm::BasicBlock *ContBlock = nullptr;
2261 if (ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) {
2262 if (!CondConstant)
2263 return false;
2264 } else {
Alexey Bataevddf3db92018-04-13 17:31:06 +00002265 llvm::BasicBlock *ThenBlock = createBasicBlock("omp.precond.then");
Alexey Bataev62dbb972015-04-22 11:59:37 +00002266 ContBlock = createBasicBlock("omp.precond.end");
2267 emitPreCond(*this, S, S.getPreCond(), ThenBlock, ContBlock,
Justin Bogner66242d62015-04-23 23:06:47 +00002268 getProfileCount(&S));
Alexey Bataev62dbb972015-04-22 11:59:37 +00002269 EmitBlock(ThenBlock);
Justin Bogner66242d62015-04-23 23:06:47 +00002270 incrementProfileCounter(&S);
Alexey Bataev62dbb972015-04-22 11:59:37 +00002271 }
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00002272
Alexey Bataevea33dee2018-02-15 23:39:43 +00002273 RunCleanupsScope DoacrossCleanupScope(*this);
Alexey Bataev8b427062016-05-25 12:36:08 +00002274 bool Ordered = false;
Alexey Bataevddf3db92018-04-13 17:31:06 +00002275 if (const auto *OrderedClause = S.getSingleClause<OMPOrderedClause>()) {
Alexey Bataev8b427062016-05-25 12:36:08 +00002276 if (OrderedClause->getNumForLoops())
Alexey Bataevf138fda2018-08-13 19:04:24 +00002277 RT.emitDoacrossInit(*this, S, OrderedClause->getLoopNumIterations());
Alexey Bataev8b427062016-05-25 12:36:08 +00002278 else
2279 Ordered = true;
2280 }
2281
Alexey Bataev5dff95c2016-04-22 03:56:56 +00002282 llvm::DenseSet<const Expr *> EmittedFinals;
Alexey Bataev58e5bdb2015-06-18 04:45:29 +00002283 emitAlignedClause(*this, S);
Alexey Bataev8c3edfe2017-08-16 15:58:46 +00002284 bool HasLinears = EmitOMPLinearClauseInit(S);
Alexey Bataevef549a82016-03-09 09:49:09 +00002285 // Emit helper vars inits.
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002286
2287 std::pair<LValue, LValue> Bounds = CodeGenLoopBounds(*this, S);
2288 LValue LB = Bounds.first;
2289 LValue UB = Bounds.second;
Alexey Bataevef549a82016-03-09 09:49:09 +00002290 LValue ST =
2291 EmitOMPHelperVar(*this, cast<DeclRefExpr>(S.getStrideVariable()));
2292 LValue IL =
2293 EmitOMPHelperVar(*this, cast<DeclRefExpr>(S.getIsLastIterVariable()));
2294
Alexander Musmanc6388682014-12-15 07:07:06 +00002295 // Emit 'then' code.
2296 {
Alexander Musmanc6388682014-12-15 07:07:06 +00002297 OMPPrivateScope LoopScope(*this);
Alexey Bataev8c3edfe2017-08-16 15:58:46 +00002298 if (EmitOMPFirstprivateClause(S, LoopScope) || HasLinears) {
Alexey Bataev69c62a92015-04-15 04:52:20 +00002299 // Emit implicit barrier to synchronize threads and avoid data races on
Alexey Bataevcd8b6a22016-02-15 08:07:17 +00002300 // initialization of firstprivate variables and post-update of
2301 // lastprivate variables.
Alexey Bataev25e5b442015-09-15 12:52:43 +00002302 CGM.getOpenMPRuntime().emitBarrierCall(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002303 *this, S.getBeginLoc(), OMPD_unknown, /*EmitChecks=*/false,
Alexey Bataev25e5b442015-09-15 12:52:43 +00002304 /*ForceSimpleCall=*/true);
Alexey Bataev69c62a92015-04-15 04:52:20 +00002305 }
Alexey Bataev50a64582015-04-22 12:24:45 +00002306 EmitOMPPrivateClause(S, LoopScope);
Alexey Bataev38e89532015-04-16 04:54:05 +00002307 HasLastprivateClause = EmitOMPLastprivateClauseInit(S, LoopScope);
Alexey Bataev7ebe5fd2015-04-22 13:43:03 +00002308 EmitOMPReductionClauseInit(S, LoopScope);
Alexey Bataev5dff95c2016-04-22 03:56:56 +00002309 EmitOMPPrivateLoopCounters(S, LoopScope);
2310 EmitOMPLinearClause(S, LoopScope);
Alexander Musman7931b982015-03-16 07:14:41 +00002311 (void)LoopScope.Privatize();
Alexey Bataev60705422018-10-30 15:50:12 +00002312 if (isOpenMPTargetExecutionDirective(S.getDirectiveKind()))
2313 CGM.getOpenMPRuntime().adjustTargetSpecificDataForLambdas(*this, S);
Alexander Musmanc6388682014-12-15 07:07:06 +00002314
2315 // Detect the loop schedule kind and chunk.
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00002316 const Expr *ChunkExpr = nullptr;
Alexey Bataev9ebd7422016-05-10 09:57:36 +00002317 OpenMPScheduleTy ScheduleKind;
Alexey Bataevddf3db92018-04-13 17:31:06 +00002318 if (const auto *C = S.getSingleClause<OMPScheduleClause>()) {
Alexey Bataev9ebd7422016-05-10 09:57:36 +00002319 ScheduleKind.Schedule = C->getScheduleKind();
2320 ScheduleKind.M1 = C->getFirstScheduleModifier();
2321 ScheduleKind.M2 = C->getSecondScheduleModifier();
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00002322 ChunkExpr = C->getChunkSize();
Gheorghe-Teodor Bercea8233af92018-09-27 20:29:00 +00002323 } else {
2324 // Default behaviour for schedule clause.
2325 CGM.getOpenMPRuntime().getDefaultScheduleAndChunk(
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00002326 *this, S, ScheduleKind.Schedule, ChunkExpr);
2327 }
2328 bool HasChunkSizeOne = false;
2329 llvm::Value *Chunk = nullptr;
2330 if (ChunkExpr) {
2331 Chunk = EmitScalarExpr(ChunkExpr);
2332 Chunk = EmitScalarConversion(Chunk, ChunkExpr->getType(),
2333 S.getIterationVariable()->getType(),
2334 S.getBeginLoc());
Fangrui Song407659a2018-11-30 23:41:18 +00002335 Expr::EvalResult Result;
2336 if (ChunkExpr->EvaluateAsInt(Result, getContext())) {
2337 llvm::APSInt EvaluatedChunk = Result.Val.getInt();
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00002338 HasChunkSizeOne = (EvaluatedChunk.getLimitedValue() == 1);
Fangrui Song407659a2018-11-30 23:41:18 +00002339 }
Alexey Bataev3392d762016-02-16 11:18:12 +00002340 }
Alexander Musmanc6388682014-12-15 07:07:06 +00002341 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType());
2342 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation();
Alexey Bataeva6f2a142015-12-31 06:52:34 +00002343 // OpenMP 4.5, 2.7.1 Loop Construct, Description.
2344 // If the static schedule kind is specified or if the ordered clause is
2345 // specified, and if no monotonic modifier is specified, the effect will
2346 // be as if the monotonic modifier was specified.
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00002347 bool StaticChunkedOne = RT.isStaticChunked(ScheduleKind.Schedule,
2348 /* Chunked */ Chunk != nullptr) && HasChunkSizeOne &&
2349 isOpenMPLoopBoundSharingDirective(S.getDirectiveKind());
2350 if ((RT.isStaticNonchunked(ScheduleKind.Schedule,
2351 /* Chunked */ Chunk != nullptr) ||
2352 StaticChunkedOne) &&
Alexey Bataevd7589ffe2015-05-20 13:12:48 +00002353 !Ordered) {
Alexey Bataeva6f2a142015-12-31 06:52:34 +00002354 if (isOpenMPSimdDirective(S.getDirectiveKind()))
2355 EmitOMPSimdInit(S, /*IsMonotonic=*/true);
Alexander Musmanc6388682014-12-15 07:07:06 +00002356 // OpenMP [2.7.1, Loop Construct, Description, table 2-1]
2357 // When no chunk_size is specified, the iteration space is divided into
2358 // chunks that are approximately equal in size, and at most one chunk is
2359 // distributed to each thread. Note that the size of the chunks is
2360 // unspecified in this case.
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00002361 CGOpenMPRuntime::StaticRTInput StaticInit(
2362 IVSize, IVSigned, Ordered, IL.getAddress(), LB.getAddress(),
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00002363 UB.getAddress(), ST.getAddress(),
2364 StaticChunkedOne ? Chunk : nullptr);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002365 RT.emitForStaticInit(*this, S.getBeginLoc(), S.getDirectiveKind(),
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00002366 ScheduleKind, StaticInit);
Alexey Bataevddf3db92018-04-13 17:31:06 +00002367 JumpDest LoopExit =
Alexey Bataeva6f2a142015-12-31 06:52:34 +00002368 getJumpDestInCurrentScope(createBasicBlock("omp.loop.exit"));
Alexander Musmanc6388682014-12-15 07:07:06 +00002369 // UB = min(UB, GlobalUB);
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00002370 if (!StaticChunkedOne)
2371 EmitIgnoredExpr(S.getEnsureUpperBound());
Alexander Musmanc6388682014-12-15 07:07:06 +00002372 // IV = LB;
2373 EmitIgnoredExpr(S.getInit());
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00002374 // For unchunked static schedule generate:
2375 //
2376 // while (idx <= UB) {
2377 // BODY;
2378 // ++idx;
2379 // }
2380 //
2381 // For static schedule with chunk one:
2382 //
2383 // while (IV <= PrevUB) {
2384 // BODY;
2385 // IV += ST;
2386 // }
2387 EmitOMPInnerLoop(S, LoopScope.requiresCleanups(),
2388 StaticChunkedOne ? S.getCombinedParForInDistCond() : S.getCond(),
2389 StaticChunkedOne ? S.getDistInc() : S.getInc(),
2390 [&S, LoopExit](CodeGenFunction &CGF) {
2391 CGF.EmitOMPLoopBody(S, LoopExit);
2392 CGF.EmitStopPoint(&S);
2393 },
2394 [](CodeGenFunction &) {});
Alexey Bataev0f34da12015-07-02 04:17:07 +00002395 EmitBlock(LoopExit.getBlock());
Alexander Musmanc6388682014-12-15 07:07:06 +00002396 // Tell the runtime we are done.
Alexey Bataev957d8562016-11-17 15:12:05 +00002397 auto &&CodeGen = [&S](CodeGenFunction &CGF) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00002398 CGF.CGM.getOpenMPRuntime().emitForStaticFinish(CGF, S.getEndLoc(),
Alexey Bataevf43f7142017-09-06 16:17:35 +00002399 S.getDirectiveKind());
Alexey Bataev957d8562016-11-17 15:12:05 +00002400 };
2401 OMPCancelStack.emitExit(*this, S.getDirectiveKind(), CodeGen);
Alexander Musmandf7a8e22015-01-22 08:49:35 +00002402 } else {
Alexey Bataev9ebd7422016-05-10 09:57:36 +00002403 const bool IsMonotonic =
2404 Ordered || ScheduleKind.Schedule == OMPC_SCHEDULE_static ||
2405 ScheduleKind.Schedule == OMPC_SCHEDULE_unknown ||
2406 ScheduleKind.M1 == OMPC_SCHEDULE_MODIFIER_monotonic ||
2407 ScheduleKind.M2 == OMPC_SCHEDULE_MODIFIER_monotonic;
Alexander Musmandf7a8e22015-01-22 08:49:35 +00002408 // Emit the outer loop, which requests its work chunk [LB..UB] from
2409 // runtime and runs the inner loop to process it.
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002410 const OMPLoopArguments LoopArguments(LB.getAddress(), UB.getAddress(),
2411 ST.getAddress(), IL.getAddress(),
2412 Chunk, EUB);
Alexey Bataeva6f2a142015-12-31 06:52:34 +00002413 EmitOMPForOuterLoop(ScheduleKind, IsMonotonic, S, LoopScope, Ordered,
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002414 LoopArguments, CGDispatchBounds);
Alexander Musmandf7a8e22015-01-22 08:49:35 +00002415 }
Alexey Bataev5dff95c2016-04-22 03:56:56 +00002416 if (isOpenMPSimdDirective(S.getDirectiveKind())) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002417 EmitOMPSimdFinal(S, [IL, &S](CodeGenFunction &CGF) {
2418 return CGF.Builder.CreateIsNotNull(
2419 CGF.EmitLoadOfScalar(IL, S.getBeginLoc()));
2420 });
Alexey Bataev5dff95c2016-04-22 03:56:56 +00002421 }
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00002422 EmitOMPReductionClauseFinal(
2423 S, /*ReductionKind=*/isOpenMPSimdDirective(S.getDirectiveKind())
2424 ? /*Parallel and Simd*/ OMPD_parallel_for_simd
2425 : /*Parallel only*/ OMPD_parallel);
Alexey Bataev61205072016-03-02 04:57:40 +00002426 // Emit post-update of the reduction variables if IsLastIter != 0.
2427 emitPostUpdateForReductionClause(
Alexey Bataevddf3db92018-04-13 17:31:06 +00002428 *this, S, [IL, &S](CodeGenFunction &CGF) {
Alexey Bataev61205072016-03-02 04:57:40 +00002429 return CGF.Builder.CreateIsNotNull(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002430 CGF.EmitLoadOfScalar(IL, S.getBeginLoc()));
Alexey Bataev61205072016-03-02 04:57:40 +00002431 });
Alexey Bataev38e89532015-04-16 04:54:05 +00002432 // Emit final copy of the lastprivate variables if IsLastIter != 0.
2433 if (HasLastprivateClause)
2434 EmitOMPLastprivateClauseFinal(
Alexey Bataev5dff95c2016-04-22 03:56:56 +00002435 S, isOpenMPSimdDirective(S.getDirectiveKind()),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002436 Builder.CreateIsNotNull(EmitLoadOfScalar(IL, S.getBeginLoc())));
Alexander Musmanc6388682014-12-15 07:07:06 +00002437 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00002438 EmitOMPLinearClauseFinal(S, [IL, &S](CodeGenFunction &CGF) {
Alexey Bataevef549a82016-03-09 09:49:09 +00002439 return CGF.Builder.CreateIsNotNull(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002440 CGF.EmitLoadOfScalar(IL, S.getBeginLoc()));
Alexey Bataevef549a82016-03-09 09:49:09 +00002441 });
Alexey Bataevea33dee2018-02-15 23:39:43 +00002442 DoacrossCleanupScope.ForceCleanup();
Alexander Musmanc6388682014-12-15 07:07:06 +00002443 // We're now done with the loop, so jump to the continuation block.
Alexey Bataev62dbb972015-04-22 11:59:37 +00002444 if (ContBlock) {
2445 EmitBranch(ContBlock);
Alexey Bataevddf3db92018-04-13 17:31:06 +00002446 EmitBlock(ContBlock, /*IsFinished=*/true);
Alexey Bataev62dbb972015-04-22 11:59:37 +00002447 }
Alexander Musmanc6388682014-12-15 07:07:06 +00002448 }
Alexey Bataev38e89532015-04-16 04:54:05 +00002449 return HasLastprivateClause;
Alexander Musmanc6388682014-12-15 07:07:06 +00002450}
2451
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002452/// The following two functions generate expressions for the loop lower
2453/// and upper bounds in case of static and dynamic (dispatch) schedule
2454/// of the associated 'for' or 'distribute' loop.
2455static std::pair<LValue, LValue>
2456emitForLoopBounds(CodeGenFunction &CGF, const OMPExecutableDirective &S) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00002457 const auto &LS = cast<OMPLoopDirective>(S);
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002458 LValue LB =
2459 EmitOMPHelperVar(CGF, cast<DeclRefExpr>(LS.getLowerBoundVariable()));
2460 LValue UB =
2461 EmitOMPHelperVar(CGF, cast<DeclRefExpr>(LS.getUpperBoundVariable()));
2462 return {LB, UB};
2463}
2464
2465/// When dealing with dispatch schedules (e.g. dynamic, guided) we do not
2466/// consider the lower and upper bound expressions generated by the
2467/// worksharing loop support, but we use 0 and the iteration space size as
2468/// constants
2469static std::pair<llvm::Value *, llvm::Value *>
2470emitDispatchForLoopBounds(CodeGenFunction &CGF, const OMPExecutableDirective &S,
2471 Address LB, Address UB) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00002472 const auto &LS = cast<OMPLoopDirective>(S);
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002473 const Expr *IVExpr = LS.getIterationVariable();
2474 const unsigned IVSize = CGF.getContext().getTypeSize(IVExpr->getType());
2475 llvm::Value *LBVal = CGF.Builder.getIntN(IVSize, 0);
2476 llvm::Value *UBVal = CGF.EmitScalarExpr(LS.getLastIteration());
2477 return {LBVal, UBVal};
2478}
2479
Alexander Musmanc6388682014-12-15 07:07:06 +00002480void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) {
Alexey Bataev38e89532015-04-16 04:54:05 +00002481 bool HasLastprivates = false;
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002482 auto &&CodeGen = [&S, &HasLastprivates](CodeGenFunction &CGF,
2483 PrePostActionTy &) {
Alexey Bataev957d8562016-11-17 15:12:05 +00002484 OMPCancelStackRAII CancelRegion(CGF, OMPD_for, S.hasCancel());
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002485 HasLastprivates = CGF.EmitOMPWorksharingLoop(S, S.getEnsureUpperBound(),
2486 emitForLoopBounds,
2487 emitDispatchForLoopBounds);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002488 };
Alexey Bataev3392d762016-02-16 11:18:12 +00002489 {
Alexey Bataev475a7442018-01-12 19:39:11 +00002490 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Alexey Bataev3392d762016-02-16 11:18:12 +00002491 CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_for, CodeGen,
2492 S.hasCancel());
2493 }
Alexander Musmanc6388682014-12-15 07:07:06 +00002494
2495 // Emit an implicit barrier at the end.
Alexey Bataevddf3db92018-04-13 17:31:06 +00002496 if (!S.getSingleClause<OMPNowaitClause>() || HasLastprivates)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002497 CGM.getOpenMPRuntime().emitBarrierCall(*this, S.getBeginLoc(), OMPD_for);
Alexey Bataevf29276e2014-06-18 04:14:57 +00002498}
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00002499
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00002500void CodeGenFunction::EmitOMPForSimdDirective(const OMPForSimdDirective &S) {
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00002501 bool HasLastprivates = false;
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002502 auto &&CodeGen = [&S, &HasLastprivates](CodeGenFunction &CGF,
2503 PrePostActionTy &) {
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002504 HasLastprivates = CGF.EmitOMPWorksharingLoop(S, S.getEnsureUpperBound(),
2505 emitForLoopBounds,
2506 emitDispatchForLoopBounds);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002507 };
Alexey Bataev3392d762016-02-16 11:18:12 +00002508 {
Alexey Bataev475a7442018-01-12 19:39:11 +00002509 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Alexey Bataev3392d762016-02-16 11:18:12 +00002510 CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_simd, CodeGen);
2511 }
Alexey Bataevcbdcbb72015-06-17 07:45:51 +00002512
2513 // Emit an implicit barrier at the end.
Alexey Bataevddf3db92018-04-13 17:31:06 +00002514 if (!S.getSingleClause<OMPNowaitClause>() || HasLastprivates)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002515 CGM.getOpenMPRuntime().emitBarrierCall(*this, S.getBeginLoc(), OMPD_for);
Alexander Musmanf82886e2014-09-18 05:12:34 +00002516}
2517
Alexey Bataev2df54a02015-03-12 08:53:29 +00002518static LValue createSectionLVal(CodeGenFunction &CGF, QualType Ty,
2519 const Twine &Name,
2520 llvm::Value *Init = nullptr) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00002521 LValue LVal = CGF.MakeAddrLValue(CGF.CreateMemTemp(Ty, Name), Ty);
Alexey Bataev2df54a02015-03-12 08:53:29 +00002522 if (Init)
Akira Hatanaka642f7992016-10-18 19:05:41 +00002523 CGF.EmitStoreThroughLValue(RValue::get(Init), LVal, /*isInit*/ true);
Alexey Bataev2df54a02015-03-12 08:53:29 +00002524 return LVal;
Alexey Bataevd3f8dd22014-06-25 11:44:49 +00002525}
2526
Alexey Bataev3392d762016-02-16 11:18:12 +00002527void CodeGenFunction::EmitSections(const OMPExecutableDirective &S) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00002528 const Stmt *CapturedStmt = S.getInnermostCapturedStmt()->getCapturedStmt();
2529 const auto *CS = dyn_cast<CompoundStmt>(CapturedStmt);
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002530 bool HasLastprivates = false;
Alexey Bataevddf3db92018-04-13 17:31:06 +00002531 auto &&CodeGen = [&S, CapturedStmt, CS,
2532 &HasLastprivates](CodeGenFunction &CGF, PrePostActionTy &) {
2533 ASTContext &C = CGF.getContext();
2534 QualType KmpInt32Ty =
2535 C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/1);
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002536 // Emit helper vars inits.
2537 LValue LB = createSectionLVal(CGF, KmpInt32Ty, ".omp.sections.lb.",
2538 CGF.Builder.getInt32(0));
Alexey Bataevddf3db92018-04-13 17:31:06 +00002539 llvm::ConstantInt *GlobalUBVal = CS != nullptr
2540 ? CGF.Builder.getInt32(CS->size() - 1)
2541 : CGF.Builder.getInt32(0);
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002542 LValue UB =
2543 createSectionLVal(CGF, KmpInt32Ty, ".omp.sections.ub.", GlobalUBVal);
2544 LValue ST = createSectionLVal(CGF, KmpInt32Ty, ".omp.sections.st.",
2545 CGF.Builder.getInt32(1));
2546 LValue IL = createSectionLVal(CGF, KmpInt32Ty, ".omp.sections.il.",
2547 CGF.Builder.getInt32(0));
2548 // Loop counter.
2549 LValue IV = createSectionLVal(CGF, KmpInt32Ty, ".omp.sections.iv.");
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002550 OpaqueValueExpr IVRefExpr(S.getBeginLoc(), KmpInt32Ty, VK_LValue);
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002551 CodeGenFunction::OpaqueValueMapping OpaqueIV(CGF, &IVRefExpr, IV);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002552 OpaqueValueExpr UBRefExpr(S.getBeginLoc(), KmpInt32Ty, VK_LValue);
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002553 CodeGenFunction::OpaqueValueMapping OpaqueUB(CGF, &UBRefExpr, UB);
2554 // Generate condition for loop.
2555 BinaryOperator Cond(&IVRefExpr, &UBRefExpr, BO_LE, C.BoolTy, VK_RValue,
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002556 OK_Ordinary, S.getBeginLoc(), FPOptions());
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002557 // Increment for loop counter.
2558 UnaryOperator Inc(&IVRefExpr, UO_PreInc, KmpInt32Ty, VK_RValue, OK_Ordinary,
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002559 S.getBeginLoc(), true);
Alexey Bataevddf3db92018-04-13 17:31:06 +00002560 auto &&BodyGen = [CapturedStmt, CS, &S, &IV](CodeGenFunction &CGF) {
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002561 // Iterate through all sections and emit a switch construct:
2562 // switch (IV) {
2563 // case 0:
2564 // <SectionStmt[0]>;
2565 // break;
2566 // ...
2567 // case <NumSection> - 1:
2568 // <SectionStmt[<NumSection> - 1]>;
2569 // break;
2570 // }
2571 // .omp.sections.exit:
Alexey Bataevddf3db92018-04-13 17:31:06 +00002572 llvm::BasicBlock *ExitBB = CGF.createBasicBlock(".omp.sections.exit");
2573 llvm::SwitchInst *SwitchStmt =
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002574 CGF.Builder.CreateSwitch(CGF.EmitLoadOfScalar(IV, S.getBeginLoc()),
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00002575 ExitBB, CS == nullptr ? 1 : CS->size());
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002576 if (CS) {
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002577 unsigned CaseNumber = 0;
Alexey Bataevddf3db92018-04-13 17:31:06 +00002578 for (const Stmt *SubStmt : CS->children()) {
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002579 auto CaseBB = CGF.createBasicBlock(".omp.sections.case");
2580 CGF.EmitBlock(CaseBB);
2581 SwitchStmt->addCase(CGF.Builder.getInt32(CaseNumber), CaseBB);
Benjamin Kramer642f1732015-07-02 21:03:14 +00002582 CGF.EmitStmt(SubStmt);
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002583 CGF.EmitBranch(ExitBB);
Benjamin Kramer642f1732015-07-02 21:03:14 +00002584 ++CaseNumber;
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002585 }
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002586 } else {
Alexey Bataevddf3db92018-04-13 17:31:06 +00002587 llvm::BasicBlock *CaseBB = CGF.createBasicBlock(".omp.sections.case");
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002588 CGF.EmitBlock(CaseBB);
2589 SwitchStmt->addCase(CGF.Builder.getInt32(0), CaseBB);
Alexey Bataevddf3db92018-04-13 17:31:06 +00002590 CGF.EmitStmt(CapturedStmt);
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002591 CGF.EmitBranch(ExitBB);
Alexey Bataev2cb9b952015-04-24 03:37:03 +00002592 }
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002593 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
Alexey Bataev2df54a02015-03-12 08:53:29 +00002594 };
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002595
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002596 CodeGenFunction::OMPPrivateScope LoopScope(CGF);
2597 if (CGF.EmitOMPFirstprivateClause(S, LoopScope)) {
Alexey Bataev9efc03b2015-04-27 04:34:03 +00002598 // Emit implicit barrier to synchronize threads and avoid data races on
Alexey Bataevcd8b6a22016-02-15 08:07:17 +00002599 // initialization of firstprivate variables and post-update of lastprivate
2600 // variables.
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002601 CGF.CGM.getOpenMPRuntime().emitBarrierCall(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002602 CGF, S.getBeginLoc(), OMPD_unknown, /*EmitChecks=*/false,
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002603 /*ForceSimpleCall=*/true);
Alexey Bataev9efc03b2015-04-27 04:34:03 +00002604 }
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002605 CGF.EmitOMPPrivateClause(S, LoopScope);
2606 HasLastprivates = CGF.EmitOMPLastprivateClauseInit(S, LoopScope);
2607 CGF.EmitOMPReductionClauseInit(S, LoopScope);
2608 (void)LoopScope.Privatize();
Alexey Bataev60705422018-10-30 15:50:12 +00002609 if (isOpenMPTargetExecutionDirective(S.getDirectiveKind()))
2610 CGF.CGM.getOpenMPRuntime().adjustTargetSpecificDataForLambdas(CGF, S);
Alexey Bataev2cb9b952015-04-24 03:37:03 +00002611
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002612 // Emit static non-chunked loop.
Alexey Bataev9ebd7422016-05-10 09:57:36 +00002613 OpenMPScheduleTy ScheduleKind;
2614 ScheduleKind.Schedule = OMPC_SCHEDULE_static;
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00002615 CGOpenMPRuntime::StaticRTInput StaticInit(
2616 /*IVSize=*/32, /*IVSigned=*/true, /*Ordered=*/false, IL.getAddress(),
2617 LB.getAddress(), UB.getAddress(), ST.getAddress());
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002618 CGF.CGM.getOpenMPRuntime().emitForStaticInit(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002619 CGF, S.getBeginLoc(), S.getDirectiveKind(), ScheduleKind, StaticInit);
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002620 // UB = min(UB, GlobalUB);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002621 llvm::Value *UBVal = CGF.EmitLoadOfScalar(UB, S.getBeginLoc());
Alexey Bataevddf3db92018-04-13 17:31:06 +00002622 llvm::Value *MinUBGlobalUB = CGF.Builder.CreateSelect(
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002623 CGF.Builder.CreateICmpSLT(UBVal, GlobalUBVal), UBVal, GlobalUBVal);
2624 CGF.EmitStoreOfScalar(MinUBGlobalUB, UB);
2625 // IV = LB;
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002626 CGF.EmitStoreOfScalar(CGF.EmitLoadOfScalar(LB, S.getBeginLoc()), IV);
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002627 // while (idx <= UB) { BODY; ++idx; }
2628 CGF.EmitOMPInnerLoop(S, /*RequiresCleanup=*/false, &Cond, &Inc, BodyGen,
2629 [](CodeGenFunction &) {});
2630 // Tell the runtime we are done.
Alexey Bataev957d8562016-11-17 15:12:05 +00002631 auto &&CodeGen = [&S](CodeGenFunction &CGF) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00002632 CGF.CGM.getOpenMPRuntime().emitForStaticFinish(CGF, S.getEndLoc(),
Alexey Bataevf43f7142017-09-06 16:17:35 +00002633 S.getDirectiveKind());
Alexey Bataev957d8562016-11-17 15:12:05 +00002634 };
2635 CGF.OMPCancelStack.emitExit(CGF, S.getDirectiveKind(), CodeGen);
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00002636 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_parallel);
Alexey Bataev61205072016-03-02 04:57:40 +00002637 // Emit post-update of the reduction variables if IsLastIter != 0.
Alexey Bataevddf3db92018-04-13 17:31:06 +00002638 emitPostUpdateForReductionClause(CGF, S, [IL, &S](CodeGenFunction &CGF) {
2639 return CGF.Builder.CreateIsNotNull(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002640 CGF.EmitLoadOfScalar(IL, S.getBeginLoc()));
Alexey Bataevddf3db92018-04-13 17:31:06 +00002641 });
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002642
2643 // Emit final copy of the lastprivate variables if IsLastIter != 0.
2644 if (HasLastprivates)
2645 CGF.EmitOMPLastprivateClauseFinal(
Alexey Bataev5dff95c2016-04-22 03:56:56 +00002646 S, /*NoFinals=*/false,
2647 CGF.Builder.CreateIsNotNull(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002648 CGF.EmitLoadOfScalar(IL, S.getBeginLoc())));
Alexey Bataev68adb7d2015-04-14 03:29:22 +00002649 };
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002650
2651 bool HasCancel = false;
2652 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S))
2653 HasCancel = OSD->hasCancel();
2654 else if (auto *OPSD = dyn_cast<OMPParallelSectionsDirective>(&S))
2655 HasCancel = OPSD->hasCancel();
Alexey Bataev957d8562016-11-17 15:12:05 +00002656 OMPCancelStackRAII CancelRegion(*this, S.getDirectiveKind(), HasCancel);
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002657 CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_sections, CodeGen,
2658 HasCancel);
2659 // Emit barrier for lastprivates only if 'sections' directive has 'nowait'
2660 // clause. Otherwise the barrier will be generated by the codegen for the
2661 // directive.
2662 if (HasLastprivates && S.getSingleClause<OMPNowaitClause>()) {
Alexey Bataev2cb9b952015-04-24 03:37:03 +00002663 // Emit implicit barrier to synchronize threads and avoid data races on
2664 // initialization of firstprivate variables.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002665 CGM.getOpenMPRuntime().emitBarrierCall(*this, S.getBeginLoc(),
Alexey Bataev3015bcc2016-01-22 08:56:50 +00002666 OMPD_unknown);
Alexey Bataev2cb9b952015-04-24 03:37:03 +00002667 }
Alexey Bataev68adb7d2015-04-14 03:29:22 +00002668}
Alexey Bataev2df54a02015-03-12 08:53:29 +00002669
Alexey Bataev68adb7d2015-04-14 03:29:22 +00002670void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) {
Alexey Bataev3392d762016-02-16 11:18:12 +00002671 {
Alexey Bataev475a7442018-01-12 19:39:11 +00002672 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Alexey Bataev3392d762016-02-16 11:18:12 +00002673 EmitSections(S);
2674 }
Alexey Bataev2df54a02015-03-12 08:53:29 +00002675 // Emit an implicit barrier at the end.
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00002676 if (!S.getSingleClause<OMPNowaitClause>()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002677 CGM.getOpenMPRuntime().emitBarrierCall(*this, S.getBeginLoc(),
Alexey Bataev3392d762016-02-16 11:18:12 +00002678 OMPD_sections);
Alexey Bataevf2685682015-03-30 04:30:22 +00002679 }
Alexey Bataev2df54a02015-03-12 08:53:29 +00002680}
2681
2682void CodeGenFunction::EmitOMPSectionDirective(const OMPSectionDirective &S) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002683 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
Alexey Bataev475a7442018-01-12 19:39:11 +00002684 CGF.EmitStmt(S.getInnermostCapturedStmt()->getCapturedStmt());
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002685 };
Alexey Bataev475a7442018-01-12 19:39:11 +00002686 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Alexey Bataev25e5b442015-09-15 12:52:43 +00002687 CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_section, CodeGen,
2688 S.hasCancel());
Alexey Bataev1e0498a2014-06-26 08:21:58 +00002689}
2690
Alexey Bataev6956e2e2015-02-05 06:35:41 +00002691void CodeGenFunction::EmitOMPSingleDirective(const OMPSingleDirective &S) {
Alexey Bataeva63048e2015-03-23 06:18:07 +00002692 llvm::SmallVector<const Expr *, 8> CopyprivateVars;
Alexey Bataev420d45b2015-04-14 05:11:24 +00002693 llvm::SmallVector<const Expr *, 8> DestExprs;
Alexey Bataeva63048e2015-03-23 06:18:07 +00002694 llvm::SmallVector<const Expr *, 8> SrcExprs;
Alexey Bataeva63048e2015-03-23 06:18:07 +00002695 llvm::SmallVector<const Expr *, 8> AssignmentOps;
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002696 // Check if there are any 'copyprivate' clauses associated with this
Alexey Bataevcd8b6a22016-02-15 08:07:17 +00002697 // 'single' construct.
Alexey Bataeva63048e2015-03-23 06:18:07 +00002698 // Build a list of copyprivate variables along with helper expressions
2699 // (<source>, <destination>, <destination>=<source> expressions)
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00002700 for (const auto *C : S.getClausesOfKind<OMPCopyprivateClause>()) {
Alexey Bataeva63048e2015-03-23 06:18:07 +00002701 CopyprivateVars.append(C->varlists().begin(), C->varlists().end());
Alexey Bataev420d45b2015-04-14 05:11:24 +00002702 DestExprs.append(C->destination_exprs().begin(),
2703 C->destination_exprs().end());
Alexey Bataeva63048e2015-03-23 06:18:07 +00002704 SrcExprs.append(C->source_exprs().begin(), C->source_exprs().end());
Alexey Bataeva63048e2015-03-23 06:18:07 +00002705 AssignmentOps.append(C->assignment_ops().begin(),
2706 C->assignment_ops().end());
2707 }
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002708 // Emit code for 'single' region along with 'copyprivate' clauses
2709 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
2710 Action.Enter(CGF);
2711 OMPPrivateScope SingleScope(CGF);
2712 (void)CGF.EmitOMPFirstprivateClause(S, SingleScope);
2713 CGF.EmitOMPPrivateClause(S, SingleScope);
2714 (void)SingleScope.Privatize();
Alexey Bataev475a7442018-01-12 19:39:11 +00002715 CGF.EmitStmt(S.getInnermostCapturedStmt()->getCapturedStmt());
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002716 };
Alexey Bataev3392d762016-02-16 11:18:12 +00002717 {
Alexey Bataev475a7442018-01-12 19:39:11 +00002718 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002719 CGM.getOpenMPRuntime().emitSingleRegion(*this, CodeGen, S.getBeginLoc(),
Alexey Bataev3392d762016-02-16 11:18:12 +00002720 CopyprivateVars, DestExprs,
2721 SrcExprs, AssignmentOps);
2722 }
2723 // Emit an implicit barrier at the end (to avoid data race on firstprivate
2724 // init or if no 'nowait' clause was specified and no 'copyprivate' clause).
Alexey Bataev417089f2016-02-17 13:19:37 +00002725 if (!S.getSingleClause<OMPNowaitClause>() && CopyprivateVars.empty()) {
Alexey Bataev5521d782015-04-24 04:21:15 +00002726 CGM.getOpenMPRuntime().emitBarrierCall(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002727 *this, S.getBeginLoc(),
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00002728 S.getSingleClause<OMPNowaitClause>() ? OMPD_unknown : OMPD_single);
Alexey Bataevf2685682015-03-30 04:30:22 +00002729 }
Alexey Bataevd1e40fb2014-06-26 12:05:45 +00002730}
2731
Alexey Bataev8d690652014-12-04 07:23:53 +00002732void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002733 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
2734 Action.Enter(CGF);
Alexey Bataev475a7442018-01-12 19:39:11 +00002735 CGF.EmitStmt(S.getInnermostCapturedStmt()->getCapturedStmt());
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002736 };
Alexey Bataev475a7442018-01-12 19:39:11 +00002737 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002738 CGM.getOpenMPRuntime().emitMasterRegion(*this, CodeGen, S.getBeginLoc());
Alexander Musman80c22892014-07-17 08:54:58 +00002739}
2740
Alexey Bataev3a3bf0b2014-09-22 10:01:53 +00002741void CodeGenFunction::EmitOMPCriticalDirective(const OMPCriticalDirective &S) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002742 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
2743 Action.Enter(CGF);
Alexey Bataev475a7442018-01-12 19:39:11 +00002744 CGF.EmitStmt(S.getInnermostCapturedStmt()->getCapturedStmt());
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00002745 };
Alexey Bataevddf3db92018-04-13 17:31:06 +00002746 const Expr *Hint = nullptr;
2747 if (const auto *HintClause = S.getSingleClause<OMPHintClause>())
Alexey Bataevfc57d162015-12-15 10:55:09 +00002748 Hint = HintClause->getHint();
Alexey Bataev475a7442018-01-12 19:39:11 +00002749 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Alexey Bataevfc57d162015-12-15 10:55:09 +00002750 CGM.getOpenMPRuntime().emitCriticalRegion(*this,
2751 S.getDirectiveName().getAsString(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002752 CodeGen, S.getBeginLoc(), Hint);
Alexander Musmand9ed09f2014-07-21 09:42:05 +00002753}
2754
Alexey Bataev671605e2015-04-13 05:28:11 +00002755void CodeGenFunction::EmitOMPParallelForDirective(
2756 const OMPParallelForDirective &S) {
2757 // Emit directive as a combined directive that consists of two implicit
2758 // directives: 'parallel' with 'for' directive.
Alexey Bataevc99042b2018-03-15 18:10:54 +00002759 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
2760 Action.Enter(CGF);
Alexey Bataev957d8562016-11-17 15:12:05 +00002761 OMPCancelStackRAII CancelRegion(CGF, OMPD_parallel_for, S.hasCancel());
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002762 CGF.EmitOMPWorksharingLoop(S, S.getEnsureUpperBound(), emitForLoopBounds,
2763 emitDispatchForLoopBounds);
Alexey Bataev671605e2015-04-13 05:28:11 +00002764 };
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002765 emitCommonOMPParallelDirective(*this, S, OMPD_for, CodeGen,
2766 emitEmptyBoundParameters);
Alexey Bataev4acb8592014-07-07 13:01:15 +00002767}
2768
Alexander Musmane4e893b2014-09-23 09:33:00 +00002769void CodeGenFunction::EmitOMPParallelForSimdDirective(
Alexey Bataev3b5b5c42015-06-18 10:10:12 +00002770 const OMPParallelForSimdDirective &S) {
2771 // Emit directive as a combined directive that consists of two implicit
2772 // directives: 'parallel' with 'for' directive.
Alexey Bataevc99042b2018-03-15 18:10:54 +00002773 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
2774 Action.Enter(CGF);
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002775 CGF.EmitOMPWorksharingLoop(S, S.getEnsureUpperBound(), emitForLoopBounds,
2776 emitDispatchForLoopBounds);
Alexey Bataev3b5b5c42015-06-18 10:10:12 +00002777 };
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002778 emitCommonOMPParallelDirective(*this, S, OMPD_simd, CodeGen,
2779 emitEmptyBoundParameters);
Alexander Musmane4e893b2014-09-23 09:33:00 +00002780}
2781
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002782void CodeGenFunction::EmitOMPParallelSectionsDirective(
Alexey Bataev68adb7d2015-04-14 03:29:22 +00002783 const OMPParallelSectionsDirective &S) {
2784 // Emit directive as a combined directive that consists of two implicit
2785 // directives: 'parallel' with 'sections' directive.
Alexey Bataevc99042b2018-03-15 18:10:54 +00002786 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
2787 Action.Enter(CGF);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00002788 CGF.EmitSections(S);
2789 };
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00002790 emitCommonOMPParallelDirective(*this, S, OMPD_sections, CodeGen,
2791 emitEmptyBoundParameters);
Alexey Bataev84d0b3e2014-07-08 08:12:03 +00002792}
2793
Alexey Bataev475a7442018-01-12 19:39:11 +00002794void CodeGenFunction::EmitOMPTaskBasedDirective(
2795 const OMPExecutableDirective &S, const OpenMPDirectiveKind CapturedRegion,
2796 const RegionCodeGenTy &BodyGen, const TaskGenTy &TaskGen,
2797 OMPTaskDataTy &Data) {
Alexey Bataev62b63b12015-03-10 07:28:44 +00002798 // Emit outlined function for task construct.
Alexey Bataev475a7442018-01-12 19:39:11 +00002799 const CapturedStmt *CS = S.getCapturedStmt(CapturedRegion);
Alexey Bataevddf3db92018-04-13 17:31:06 +00002800 auto I = CS->getCapturedDecl()->param_begin();
2801 auto PartId = std::next(I);
2802 auto TaskT = std::next(I, 4);
Alexey Bataev24b5bae2016-04-28 09:23:51 +00002803 // Check if the task is final
2804 if (const auto *Clause = S.getSingleClause<OMPFinalClause>()) {
2805 // If the condition constant folds and can be elided, try to avoid emitting
2806 // the condition and the dead arm of the if/else.
Alexey Bataevddf3db92018-04-13 17:31:06 +00002807 const Expr *Cond = Clause->getCondition();
Alexey Bataev24b5bae2016-04-28 09:23:51 +00002808 bool CondConstant;
2809 if (ConstantFoldsToSimpleInteger(Cond, CondConstant))
2810 Data.Final.setInt(CondConstant);
2811 else
2812 Data.Final.setPointer(EvaluateExprAsBool(Cond));
2813 } else {
2814 // By default the task is not final.
2815 Data.Final.setInt(/*IntVal=*/false);
2816 }
Alexey Bataev1e1e2862016-05-10 12:21:02 +00002817 // Check if the task has 'priority' clause.
2818 if (const auto *Clause = S.getSingleClause<OMPPriorityClause>()) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00002819 const Expr *Prio = Clause->getPriority();
Alexey Bataev5140e742016-07-19 04:21:09 +00002820 Data.Priority.setInt(/*IntVal=*/true);
Alexey Bataevad537bb2016-05-30 09:06:50 +00002821 Data.Priority.setPointer(EmitScalarConversion(
2822 EmitScalarExpr(Prio), Prio->getType(),
2823 getContext().getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/1),
2824 Prio->getExprLoc()));
Alexey Bataev1e1e2862016-05-10 12:21:02 +00002825 }
Alexey Bataev62b63b12015-03-10 07:28:44 +00002826 // The first function argument for tasks is a thread id, the second one is a
2827 // part id (0 for tied tasks, >=0 for untied task).
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002828 llvm::DenseSet<const VarDecl *> EmittedAsPrivate;
2829 // Get list of private variables.
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00002830 for (const auto *C : S.getClausesOfKind<OMPPrivateClause>()) {
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002831 auto IRef = C->varlist_begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00002832 for (const Expr *IInit : C->private_copies()) {
2833 const auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl());
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002834 if (EmittedAsPrivate.insert(OrigVD->getCanonicalDecl()).second) {
Alexey Bataev7292c292016-04-25 12:22:29 +00002835 Data.PrivateVars.push_back(*IRef);
2836 Data.PrivateCopies.push_back(IInit);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002837 }
2838 ++IRef;
2839 }
2840 }
2841 EmittedAsPrivate.clear();
2842 // Get list of firstprivate variables.
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00002843 for (const auto *C : S.getClausesOfKind<OMPFirstprivateClause>()) {
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002844 auto IRef = C->varlist_begin();
2845 auto IElemInitRef = C->inits().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00002846 for (const Expr *IInit : C->private_copies()) {
2847 const auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl());
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002848 if (EmittedAsPrivate.insert(OrigVD->getCanonicalDecl()).second) {
Alexey Bataev7292c292016-04-25 12:22:29 +00002849 Data.FirstprivateVars.push_back(*IRef);
2850 Data.FirstprivateCopies.push_back(IInit);
2851 Data.FirstprivateInits.push_back(*IElemInitRef);
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002852 }
Richard Trieucc3949d2016-02-18 22:34:54 +00002853 ++IRef;
2854 ++IElemInitRef;
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002855 }
2856 }
Alexey Bataevf93095a2016-05-05 08:46:22 +00002857 // Get list of lastprivate variables (for taskloops).
2858 llvm::DenseMap<const VarDecl *, const DeclRefExpr *> LastprivateDstsOrigs;
2859 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) {
2860 auto IRef = C->varlist_begin();
2861 auto ID = C->destination_exprs().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00002862 for (const Expr *IInit : C->private_copies()) {
2863 const auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl());
Alexey Bataevf93095a2016-05-05 08:46:22 +00002864 if (EmittedAsPrivate.insert(OrigVD->getCanonicalDecl()).second) {
2865 Data.LastprivateVars.push_back(*IRef);
2866 Data.LastprivateCopies.push_back(IInit);
2867 }
2868 LastprivateDstsOrigs.insert(
2869 {cast<VarDecl>(cast<DeclRefExpr>(*ID)->getDecl()),
2870 cast<DeclRefExpr>(*IRef)});
2871 ++IRef;
2872 ++ID;
2873 }
2874 }
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002875 SmallVector<const Expr *, 4> LHSs;
2876 SmallVector<const Expr *, 4> RHSs;
2877 for (const auto *C : S.getClausesOfKind<OMPReductionClause>()) {
2878 auto IPriv = C->privates().begin();
2879 auto IRed = C->reduction_ops().begin();
2880 auto ILHS = C->lhs_exprs().begin();
2881 auto IRHS = C->rhs_exprs().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00002882 for (const Expr *Ref : C->varlists()) {
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002883 Data.ReductionVars.emplace_back(Ref);
2884 Data.ReductionCopies.emplace_back(*IPriv);
2885 Data.ReductionOps.emplace_back(*IRed);
2886 LHSs.emplace_back(*ILHS);
2887 RHSs.emplace_back(*IRHS);
2888 std::advance(IPriv, 1);
2889 std::advance(IRed, 1);
2890 std::advance(ILHS, 1);
2891 std::advance(IRHS, 1);
2892 }
2893 }
2894 Data.Reductions = CGM.getOpenMPRuntime().emitTaskReductionInit(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002895 *this, S.getBeginLoc(), LHSs, RHSs, Data);
Alexey Bataev1d2353d2015-06-24 11:01:36 +00002896 // Build list of dependences.
Alexey Bataev7292c292016-04-25 12:22:29 +00002897 for (const auto *C : S.getClausesOfKind<OMPDependClause>())
Alexey Bataevddf3db92018-04-13 17:31:06 +00002898 for (const Expr *IRef : C->varlists())
Alexey Bataev43a919f2018-04-13 17:48:43 +00002899 Data.Dependences.emplace_back(C->getDependencyKind(), IRef);
Alexey Bataev475a7442018-01-12 19:39:11 +00002900 auto &&CodeGen = [&Data, &S, CS, &BodyGen, &LastprivateDstsOrigs,
2901 CapturedRegion](CodeGenFunction &CGF,
2902 PrePostActionTy &Action) {
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002903 // Set proper addresses for generated private copies.
Alexey Bataev7292c292016-04-25 12:22:29 +00002904 OMPPrivateScope Scope(CGF);
Alexey Bataevf93095a2016-05-05 08:46:22 +00002905 if (!Data.PrivateVars.empty() || !Data.FirstprivateVars.empty() ||
2906 !Data.LastprivateVars.empty()) {
James Y Knight9871db02019-02-05 16:42:33 +00002907 llvm::FunctionType *CopyFnTy = llvm::FunctionType::get(
2908 CGF.Builder.getVoidTy(), {CGF.Builder.getInt8PtrTy()}, true);
Alexey Bataev3c595a62017-08-14 15:01:03 +00002909 enum { PrivatesParam = 2, CopyFnParam = 3 };
Alexey Bataevddf3db92018-04-13 17:31:06 +00002910 llvm::Value *CopyFn = CGF.Builder.CreateLoad(
2911 CGF.GetAddrOfLocalVar(CS->getCapturedDecl()->getParam(CopyFnParam)));
2912 llvm::Value *PrivatesPtr = CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(
2913 CS->getCapturedDecl()->getParam(PrivatesParam)));
Alexey Bataev48591dd2016-04-20 04:01:36 +00002914 // Map privates.
2915 llvm::SmallVector<std::pair<const VarDecl *, Address>, 16> PrivatePtrs;
2916 llvm::SmallVector<llvm::Value *, 16> CallArgs;
2917 CallArgs.push_back(PrivatesPtr);
Alexey Bataevddf3db92018-04-13 17:31:06 +00002918 for (const Expr *E : Data.PrivateVars) {
2919 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataev48591dd2016-04-20 04:01:36 +00002920 Address PrivatePtr = CGF.CreateMemTemp(
2921 CGF.getContext().getPointerType(E->getType()), ".priv.ptr.addr");
Alexey Bataevddf3db92018-04-13 17:31:06 +00002922 PrivatePtrs.emplace_back(VD, PrivatePtr);
Alexey Bataev48591dd2016-04-20 04:01:36 +00002923 CallArgs.push_back(PrivatePtr.getPointer());
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002924 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00002925 for (const Expr *E : Data.FirstprivateVars) {
2926 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataev48591dd2016-04-20 04:01:36 +00002927 Address PrivatePtr =
2928 CGF.CreateMemTemp(CGF.getContext().getPointerType(E->getType()),
2929 ".firstpriv.ptr.addr");
Alexey Bataevddf3db92018-04-13 17:31:06 +00002930 PrivatePtrs.emplace_back(VD, PrivatePtr);
Alexey Bataev48591dd2016-04-20 04:01:36 +00002931 CallArgs.push_back(PrivatePtr.getPointer());
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002932 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00002933 for (const Expr *E : Data.LastprivateVars) {
2934 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataevf93095a2016-05-05 08:46:22 +00002935 Address PrivatePtr =
2936 CGF.CreateMemTemp(CGF.getContext().getPointerType(E->getType()),
2937 ".lastpriv.ptr.addr");
Alexey Bataevddf3db92018-04-13 17:31:06 +00002938 PrivatePtrs.emplace_back(VD, PrivatePtr);
Alexey Bataevf93095a2016-05-05 08:46:22 +00002939 CallArgs.push_back(PrivatePtr.getPointer());
2940 }
James Y Knight9871db02019-02-05 16:42:33 +00002941 CGF.CGM.getOpenMPRuntime().emitOutlinedFunctionCall(
2942 CGF, S.getBeginLoc(), {CopyFnTy, CopyFn}, CallArgs);
Alexey Bataevddf3db92018-04-13 17:31:06 +00002943 for (const auto &Pair : LastprivateDstsOrigs) {
2944 const auto *OrigVD = cast<VarDecl>(Pair.second->getDecl());
Bruno Ricci5fc4db72018-12-21 14:10:18 +00002945 DeclRefExpr DRE(CGF.getContext(), const_cast<VarDecl *>(OrigVD),
2946 /*RefersToEnclosingVariableOrCapture=*/
2947 CGF.CapturedStmtInfo->lookup(OrigVD) != nullptr,
2948 Pair.second->getType(), VK_LValue,
2949 Pair.second->getExprLoc());
Alexey Bataevf93095a2016-05-05 08:46:22 +00002950 Scope.addPrivate(Pair.first, [&CGF, &DRE]() {
2951 return CGF.EmitLValue(&DRE).getAddress();
2952 });
2953 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00002954 for (const auto &Pair : PrivatePtrs) {
Alexey Bataev48591dd2016-04-20 04:01:36 +00002955 Address Replacement(CGF.Builder.CreateLoad(Pair.second),
2956 CGF.getContext().getDeclAlign(Pair.first));
2957 Scope.addPrivate(Pair.first, [Replacement]() { return Replacement; });
2958 }
Alexey Bataev3ae88e22015-05-22 08:56:35 +00002959 }
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002960 if (Data.Reductions) {
Alexey Bataev475a7442018-01-12 19:39:11 +00002961 OMPLexicalScope LexScope(CGF, S, CapturedRegion);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002962 ReductionCodeGen RedCG(Data.ReductionVars, Data.ReductionCopies,
2963 Data.ReductionOps);
2964 llvm::Value *ReductionsPtr = CGF.Builder.CreateLoad(
2965 CGF.GetAddrOfLocalVar(CS->getCapturedDecl()->getParam(9)));
2966 for (unsigned Cnt = 0, E = Data.ReductionVars.size(); Cnt < E; ++Cnt) {
2967 RedCG.emitSharedLValue(CGF, Cnt);
2968 RedCG.emitAggregateType(CGF, Cnt);
Alexey Bataev2e0cbe502018-03-08 15:24:08 +00002969 // FIXME: This must removed once the runtime library is fixed.
2970 // Emit required threadprivate variables for
Raphael Isemannb23ccec2018-12-10 12:37:46 +00002971 // initializer/combiner/finalizer.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002972 CGF.CGM.getOpenMPRuntime().emitTaskReductionFixups(CGF, S.getBeginLoc(),
Alexey Bataev2e0cbe502018-03-08 15:24:08 +00002973 RedCG, Cnt);
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002974 Address Replacement = CGF.CGM.getOpenMPRuntime().getTaskReductionItem(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002975 CGF, S.getBeginLoc(), ReductionsPtr, RedCG.getSharedLValue(Cnt));
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002976 Replacement =
2977 Address(CGF.EmitScalarConversion(
2978 Replacement.getPointer(), CGF.getContext().VoidPtrTy,
2979 CGF.getContext().getPointerType(
2980 Data.ReductionCopies[Cnt]->getType()),
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00002981 Data.ReductionCopies[Cnt]->getExprLoc()),
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002982 Replacement.getAlignment());
2983 Replacement = RedCG.adjustPrivateAddress(CGF, Cnt, Replacement);
2984 Scope.addPrivate(RedCG.getBaseDecl(Cnt),
2985 [Replacement]() { return Replacement; });
Alexey Bataevbe5a8b42017-07-17 13:30:36 +00002986 }
2987 }
Alexey Bataev88202be2017-07-27 13:20:36 +00002988 // Privatize all private variables except for in_reduction items.
Alexey Bataev48591dd2016-04-20 04:01:36 +00002989 (void)Scope.Privatize();
Alexey Bataev88202be2017-07-27 13:20:36 +00002990 SmallVector<const Expr *, 4> InRedVars;
2991 SmallVector<const Expr *, 4> InRedPrivs;
2992 SmallVector<const Expr *, 4> InRedOps;
2993 SmallVector<const Expr *, 4> TaskgroupDescriptors;
2994 for (const auto *C : S.getClausesOfKind<OMPInReductionClause>()) {
2995 auto IPriv = C->privates().begin();
2996 auto IRed = C->reduction_ops().begin();
2997 auto ITD = C->taskgroup_descriptors().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00002998 for (const Expr *Ref : C->varlists()) {
Alexey Bataev88202be2017-07-27 13:20:36 +00002999 InRedVars.emplace_back(Ref);
3000 InRedPrivs.emplace_back(*IPriv);
3001 InRedOps.emplace_back(*IRed);
3002 TaskgroupDescriptors.emplace_back(*ITD);
3003 std::advance(IPriv, 1);
3004 std::advance(IRed, 1);
3005 std::advance(ITD, 1);
3006 }
3007 }
3008 // Privatize in_reduction items here, because taskgroup descriptors must be
3009 // privatized earlier.
3010 OMPPrivateScope InRedScope(CGF);
3011 if (!InRedVars.empty()) {
3012 ReductionCodeGen RedCG(InRedVars, InRedPrivs, InRedOps);
3013 for (unsigned Cnt = 0, E = InRedVars.size(); Cnt < E; ++Cnt) {
3014 RedCG.emitSharedLValue(CGF, Cnt);
3015 RedCG.emitAggregateType(CGF, Cnt);
3016 // The taskgroup descriptor variable is always implicit firstprivate and
Raphael Isemannb23ccec2018-12-10 12:37:46 +00003017 // privatized already during processing of the firstprivates.
Alexey Bataev2e0cbe502018-03-08 15:24:08 +00003018 // FIXME: This must removed once the runtime library is fixed.
3019 // Emit required threadprivate variables for
Raphael Isemannb23ccec2018-12-10 12:37:46 +00003020 // initializer/combiner/finalizer.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003021 CGF.CGM.getOpenMPRuntime().emitTaskReductionFixups(CGF, S.getBeginLoc(),
Alexey Bataev2e0cbe502018-03-08 15:24:08 +00003022 RedCG, Cnt);
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00003023 llvm::Value *ReductionsPtr =
3024 CGF.EmitLoadOfScalar(CGF.EmitLValue(TaskgroupDescriptors[Cnt]),
3025 TaskgroupDescriptors[Cnt]->getExprLoc());
Alexey Bataev88202be2017-07-27 13:20:36 +00003026 Address Replacement = CGF.CGM.getOpenMPRuntime().getTaskReductionItem(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003027 CGF, S.getBeginLoc(), ReductionsPtr, RedCG.getSharedLValue(Cnt));
Alexey Bataev88202be2017-07-27 13:20:36 +00003028 Replacement = Address(
3029 CGF.EmitScalarConversion(
3030 Replacement.getPointer(), CGF.getContext().VoidPtrTy,
3031 CGF.getContext().getPointerType(InRedPrivs[Cnt]->getType()),
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00003032 InRedPrivs[Cnt]->getExprLoc()),
Alexey Bataev88202be2017-07-27 13:20:36 +00003033 Replacement.getAlignment());
3034 Replacement = RedCG.adjustPrivateAddress(CGF, Cnt, Replacement);
3035 InRedScope.addPrivate(RedCG.getBaseDecl(Cnt),
3036 [Replacement]() { return Replacement; });
Alexey Bataev88202be2017-07-27 13:20:36 +00003037 }
3038 }
3039 (void)InRedScope.Privatize();
Alexey Bataev48591dd2016-04-20 04:01:36 +00003040
3041 Action.Enter(CGF);
Alexey Bataev7292c292016-04-25 12:22:29 +00003042 BodyGen(CGF);
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00003043 };
James Y Knight9871db02019-02-05 16:42:33 +00003044 llvm::Function *OutlinedFn = CGM.getOpenMPRuntime().emitTaskOutlinedFunction(
Alexey Bataev7292c292016-04-25 12:22:29 +00003045 S, *I, *PartId, *TaskT, S.getDirectiveKind(), CodeGen, Data.Tied,
3046 Data.NumberOfParts);
3047 OMPLexicalScope Scope(*this, S);
3048 TaskGen(*this, OutlinedFn, Data);
3049}
3050
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003051static ImplicitParamDecl *
3052createImplicitFirstprivateForType(ASTContext &C, OMPTaskDataTy &Data,
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00003053 QualType Ty, CapturedDecl *CD,
3054 SourceLocation Loc) {
3055 auto *OrigVD = ImplicitParamDecl::Create(C, CD, Loc, /*Id=*/nullptr, Ty,
3056 ImplicitParamDecl::Other);
3057 auto *OrigRef = DeclRefExpr::Create(
3058 C, NestedNameSpecifierLoc(), SourceLocation(), OrigVD,
3059 /*RefersToEnclosingVariableOrCapture=*/false, Loc, Ty, VK_LValue);
3060 auto *PrivateVD = ImplicitParamDecl::Create(C, CD, Loc, /*Id=*/nullptr, Ty,
3061 ImplicitParamDecl::Other);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003062 auto *PrivateRef = DeclRefExpr::Create(
3063 C, NestedNameSpecifierLoc(), SourceLocation(), PrivateVD,
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00003064 /*RefersToEnclosingVariableOrCapture=*/false, Loc, Ty, VK_LValue);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003065 QualType ElemType = C.getBaseElementType(Ty);
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00003066 auto *InitVD = ImplicitParamDecl::Create(C, CD, Loc, /*Id=*/nullptr, ElemType,
3067 ImplicitParamDecl::Other);
3068 auto *InitRef = DeclRefExpr::Create(
3069 C, NestedNameSpecifierLoc(), SourceLocation(), InitVD,
3070 /*RefersToEnclosingVariableOrCapture=*/false, Loc, ElemType, VK_LValue);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003071 PrivateVD->setInitStyle(VarDecl::CInit);
3072 PrivateVD->setInit(ImplicitCastExpr::Create(C, ElemType, CK_LValueToRValue,
3073 InitRef, /*BasePath=*/nullptr,
3074 VK_RValue));
3075 Data.FirstprivateVars.emplace_back(OrigRef);
3076 Data.FirstprivateCopies.emplace_back(PrivateRef);
3077 Data.FirstprivateInits.emplace_back(InitRef);
3078 return OrigVD;
3079}
3080
3081void CodeGenFunction::EmitOMPTargetTaskBasedDirective(
3082 const OMPExecutableDirective &S, const RegionCodeGenTy &BodyGen,
3083 OMPTargetDataInfo &InputInfo) {
3084 // Emit outlined function for task construct.
Alexey Bataevddf3db92018-04-13 17:31:06 +00003085 const CapturedStmt *CS = S.getCapturedStmt(OMPD_task);
3086 Address CapturedStruct = GenerateCapturedStmtArgument(*CS);
3087 QualType SharedsTy = getContext().getRecordType(CS->getCapturedRecordDecl());
3088 auto I = CS->getCapturedDecl()->param_begin();
3089 auto PartId = std::next(I);
3090 auto TaskT = std::next(I, 4);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003091 OMPTaskDataTy Data;
3092 // The task is not final.
3093 Data.Final.setInt(/*IntVal=*/false);
3094 // Get list of firstprivate variables.
3095 for (const auto *C : S.getClausesOfKind<OMPFirstprivateClause>()) {
3096 auto IRef = C->varlist_begin();
3097 auto IElemInitRef = C->inits().begin();
3098 for (auto *IInit : C->private_copies()) {
3099 Data.FirstprivateVars.push_back(*IRef);
3100 Data.FirstprivateCopies.push_back(IInit);
3101 Data.FirstprivateInits.push_back(*IElemInitRef);
3102 ++IRef;
3103 ++IElemInitRef;
3104 }
3105 }
3106 OMPPrivateScope TargetScope(*this);
3107 VarDecl *BPVD = nullptr;
3108 VarDecl *PVD = nullptr;
3109 VarDecl *SVD = nullptr;
3110 if (InputInfo.NumberOfTargetItems > 0) {
3111 auto *CD = CapturedDecl::Create(
3112 getContext(), getContext().getTranslationUnitDecl(), /*NumParams=*/0);
3113 llvm::APInt ArrSize(/*numBits=*/32, InputInfo.NumberOfTargetItems);
3114 QualType BaseAndPointersType = getContext().getConstantArrayType(
3115 getContext().VoidPtrTy, ArrSize, ArrayType::Normal,
3116 /*IndexTypeQuals=*/0);
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00003117 BPVD = createImplicitFirstprivateForType(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003118 getContext(), Data, BaseAndPointersType, CD, S.getBeginLoc());
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00003119 PVD = createImplicitFirstprivateForType(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003120 getContext(), Data, BaseAndPointersType, CD, S.getBeginLoc());
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003121 QualType SizesType = getContext().getConstantArrayType(
Alexey Bataeva90fc662019-06-25 16:00:43 +00003122 getContext().getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/1),
3123 ArrSize, ArrayType::Normal,
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003124 /*IndexTypeQuals=*/0);
Alexey Bataeva9b9cc02018-01-23 18:12:38 +00003125 SVD = createImplicitFirstprivateForType(getContext(), Data, SizesType, CD,
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003126 S.getBeginLoc());
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003127 TargetScope.addPrivate(
3128 BPVD, [&InputInfo]() { return InputInfo.BasePointersArray; });
3129 TargetScope.addPrivate(PVD,
3130 [&InputInfo]() { return InputInfo.PointersArray; });
3131 TargetScope.addPrivate(SVD,
3132 [&InputInfo]() { return InputInfo.SizesArray; });
3133 }
3134 (void)TargetScope.Privatize();
3135 // Build list of dependences.
3136 for (const auto *C : S.getClausesOfKind<OMPDependClause>())
Alexey Bataevddf3db92018-04-13 17:31:06 +00003137 for (const Expr *IRef : C->varlists())
Alexey Bataev43a919f2018-04-13 17:48:43 +00003138 Data.Dependences.emplace_back(C->getDependencyKind(), IRef);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003139 auto &&CodeGen = [&Data, &S, CS, &BodyGen, BPVD, PVD, SVD,
3140 &InputInfo](CodeGenFunction &CGF, PrePostActionTy &Action) {
3141 // Set proper addresses for generated private copies.
3142 OMPPrivateScope Scope(CGF);
3143 if (!Data.FirstprivateVars.empty()) {
James Y Knight9871db02019-02-05 16:42:33 +00003144 llvm::FunctionType *CopyFnTy = llvm::FunctionType::get(
3145 CGF.Builder.getVoidTy(), {CGF.Builder.getInt8PtrTy()}, true);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003146 enum { PrivatesParam = 2, CopyFnParam = 3 };
Alexey Bataevddf3db92018-04-13 17:31:06 +00003147 llvm::Value *CopyFn = CGF.Builder.CreateLoad(
3148 CGF.GetAddrOfLocalVar(CS->getCapturedDecl()->getParam(CopyFnParam)));
3149 llvm::Value *PrivatesPtr = CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(
3150 CS->getCapturedDecl()->getParam(PrivatesParam)));
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003151 // Map privates.
3152 llvm::SmallVector<std::pair<const VarDecl *, Address>, 16> PrivatePtrs;
3153 llvm::SmallVector<llvm::Value *, 16> CallArgs;
3154 CallArgs.push_back(PrivatesPtr);
Alexey Bataevddf3db92018-04-13 17:31:06 +00003155 for (const Expr *E : Data.FirstprivateVars) {
3156 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003157 Address PrivatePtr =
3158 CGF.CreateMemTemp(CGF.getContext().getPointerType(E->getType()),
3159 ".firstpriv.ptr.addr");
Alexey Bataevddf3db92018-04-13 17:31:06 +00003160 PrivatePtrs.emplace_back(VD, PrivatePtr);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003161 CallArgs.push_back(PrivatePtr.getPointer());
3162 }
James Y Knight9871db02019-02-05 16:42:33 +00003163 CGF.CGM.getOpenMPRuntime().emitOutlinedFunctionCall(
3164 CGF, S.getBeginLoc(), {CopyFnTy, CopyFn}, CallArgs);
Alexey Bataevddf3db92018-04-13 17:31:06 +00003165 for (const auto &Pair : PrivatePtrs) {
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003166 Address Replacement(CGF.Builder.CreateLoad(Pair.second),
3167 CGF.getContext().getDeclAlign(Pair.first));
3168 Scope.addPrivate(Pair.first, [Replacement]() { return Replacement; });
3169 }
3170 }
3171 // Privatize all private variables except for in_reduction items.
3172 (void)Scope.Privatize();
Alexey Bataev8451efa2018-01-15 19:06:12 +00003173 if (InputInfo.NumberOfTargetItems > 0) {
3174 InputInfo.BasePointersArray = CGF.Builder.CreateConstArrayGEP(
James Y Knight751fe282019-02-09 22:22:28 +00003175 CGF.GetAddrOfLocalVar(BPVD), /*Index=*/0);
Alexey Bataev8451efa2018-01-15 19:06:12 +00003176 InputInfo.PointersArray = CGF.Builder.CreateConstArrayGEP(
James Y Knight751fe282019-02-09 22:22:28 +00003177 CGF.GetAddrOfLocalVar(PVD), /*Index=*/0);
Alexey Bataev8451efa2018-01-15 19:06:12 +00003178 InputInfo.SizesArray = CGF.Builder.CreateConstArrayGEP(
James Y Knight751fe282019-02-09 22:22:28 +00003179 CGF.GetAddrOfLocalVar(SVD), /*Index=*/0);
Alexey Bataev8451efa2018-01-15 19:06:12 +00003180 }
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003181
3182 Action.Enter(CGF);
Alexey Bataev475a7442018-01-12 19:39:11 +00003183 OMPLexicalScope LexScope(CGF, S, OMPD_task, /*EmitPreInitStmt=*/false);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003184 BodyGen(CGF);
3185 };
James Y Knight9871db02019-02-05 16:42:33 +00003186 llvm::Function *OutlinedFn = CGM.getOpenMPRuntime().emitTaskOutlinedFunction(
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003187 S, *I, *PartId, *TaskT, S.getDirectiveKind(), CodeGen, /*Tied=*/true,
3188 Data.NumberOfParts);
3189 llvm::APInt TrueOrFalse(32, S.hasClausesOfKind<OMPNowaitClause>() ? 1 : 0);
3190 IntegerLiteral IfCond(getContext(), TrueOrFalse,
3191 getContext().getIntTypeForBitwidth(32, /*Signed=*/0),
3192 SourceLocation());
3193
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003194 CGM.getOpenMPRuntime().emitTaskCall(*this, S.getBeginLoc(), S, OutlinedFn,
Alexey Bataevd2202ca2017-12-27 17:58:32 +00003195 SharedsTy, CapturedStruct, &IfCond, Data);
3196}
3197
Alexey Bataev7292c292016-04-25 12:22:29 +00003198void CodeGenFunction::EmitOMPTaskDirective(const OMPTaskDirective &S) {
3199 // Emit outlined function for task construct.
Alexey Bataev475a7442018-01-12 19:39:11 +00003200 const CapturedStmt *CS = S.getCapturedStmt(OMPD_task);
Alexey Bataevddf3db92018-04-13 17:31:06 +00003201 Address CapturedStruct = GenerateCapturedStmtArgument(*CS);
3202 QualType SharedsTy = getContext().getRecordType(CS->getCapturedRecordDecl());
Alexey Bataev1d677132015-04-22 13:57:31 +00003203 const Expr *IfCond = nullptr;
Alexey Bataev7371aa32015-09-03 08:45:56 +00003204 for (const auto *C : S.getClausesOfKind<OMPIfClause>()) {
3205 if (C->getNameModifier() == OMPD_unknown ||
3206 C->getNameModifier() == OMPD_task) {
3207 IfCond = C->getCondition();
3208 break;
3209 }
Alexey Bataev1d677132015-04-22 13:57:31 +00003210 }
Alexey Bataev7292c292016-04-25 12:22:29 +00003211
Alexey Bataev24b5bae2016-04-28 09:23:51 +00003212 OMPTaskDataTy Data;
3213 // Check if we should emit tied or untied task.
3214 Data.Tied = !S.getSingleClause<OMPUntiedClause>();
Alexey Bataev7292c292016-04-25 12:22:29 +00003215 auto &&BodyGen = [CS](CodeGenFunction &CGF, PrePostActionTy &) {
3216 CGF.EmitStmt(CS->getCapturedStmt());
3217 };
Alexey Bataev24b5bae2016-04-28 09:23:51 +00003218 auto &&TaskGen = [&S, SharedsTy, CapturedStruct,
James Y Knight9871db02019-02-05 16:42:33 +00003219 IfCond](CodeGenFunction &CGF, llvm::Function *OutlinedFn,
Alexey Bataev24b5bae2016-04-28 09:23:51 +00003220 const OMPTaskDataTy &Data) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003221 CGF.CGM.getOpenMPRuntime().emitTaskCall(CGF, S.getBeginLoc(), S, OutlinedFn,
Alexey Bataev24b5bae2016-04-28 09:23:51 +00003222 SharedsTy, CapturedStruct, IfCond,
3223 Data);
Alexey Bataev7292c292016-04-25 12:22:29 +00003224 };
Alexey Bataev475a7442018-01-12 19:39:11 +00003225 EmitOMPTaskBasedDirective(S, OMPD_task, BodyGen, TaskGen, Data);
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +00003226}
3227
Alexey Bataev9f797f32015-02-05 05:57:51 +00003228void CodeGenFunction::EmitOMPTaskyieldDirective(
3229 const OMPTaskyieldDirective &S) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003230 CGM.getOpenMPRuntime().emitTaskyieldCall(*this, S.getBeginLoc());
Alexey Bataev68446b72014-07-18 07:47:19 +00003231}
3232
Alexey Bataev8f7c1b02014-12-05 04:09:23 +00003233void CodeGenFunction::EmitOMPBarrierDirective(const OMPBarrierDirective &S) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003234 CGM.getOpenMPRuntime().emitBarrierCall(*this, S.getBeginLoc(), OMPD_barrier);
Alexey Bataev4d1dfea2014-07-18 09:11:51 +00003235}
3236
Alexey Bataev8b8e2022015-04-27 05:22:09 +00003237void CodeGenFunction::EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003238 CGM.getOpenMPRuntime().emitTaskwaitCall(*this, S.getBeginLoc());
Alexey Bataev2df347a2014-07-18 10:17:07 +00003239}
3240
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00003241void CodeGenFunction::EmitOMPTaskgroupDirective(
3242 const OMPTaskgroupDirective &S) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00003243 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
3244 Action.Enter(CGF);
Alexey Bataev3b1b8952017-07-25 15:53:26 +00003245 if (const Expr *E = S.getReductionRef()) {
3246 SmallVector<const Expr *, 4> LHSs;
3247 SmallVector<const Expr *, 4> RHSs;
3248 OMPTaskDataTy Data;
3249 for (const auto *C : S.getClausesOfKind<OMPTaskReductionClause>()) {
3250 auto IPriv = C->privates().begin();
3251 auto IRed = C->reduction_ops().begin();
3252 auto ILHS = C->lhs_exprs().begin();
3253 auto IRHS = C->rhs_exprs().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00003254 for (const Expr *Ref : C->varlists()) {
Alexey Bataev3b1b8952017-07-25 15:53:26 +00003255 Data.ReductionVars.emplace_back(Ref);
3256 Data.ReductionCopies.emplace_back(*IPriv);
3257 Data.ReductionOps.emplace_back(*IRed);
3258 LHSs.emplace_back(*ILHS);
3259 RHSs.emplace_back(*IRHS);
3260 std::advance(IPriv, 1);
3261 std::advance(IRed, 1);
3262 std::advance(ILHS, 1);
3263 std::advance(IRHS, 1);
3264 }
3265 }
3266 llvm::Value *ReductionDesc =
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003267 CGF.CGM.getOpenMPRuntime().emitTaskReductionInit(CGF, S.getBeginLoc(),
Alexey Bataev3b1b8952017-07-25 15:53:26 +00003268 LHSs, RHSs, Data);
3269 const auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
3270 CGF.EmitVarDecl(*VD);
3271 CGF.EmitStoreOfScalar(ReductionDesc, CGF.GetAddrOfLocalVar(VD),
3272 /*Volatile=*/false, E->getType());
3273 }
Alexey Bataev475a7442018-01-12 19:39:11 +00003274 CGF.EmitStmt(S.getInnermostCapturedStmt()->getCapturedStmt());
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00003275 };
Alexey Bataev475a7442018-01-12 19:39:11 +00003276 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003277 CGM.getOpenMPRuntime().emitTaskgroupRegion(*this, CodeGen, S.getBeginLoc());
Alexey Bataevc30dd2d2015-06-18 12:14:09 +00003278}
3279
Alexey Bataevcc37cc12014-11-20 04:34:54 +00003280void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00003281 CGM.getOpenMPRuntime().emitFlush(
3282 *this,
3283 [&S]() -> ArrayRef<const Expr *> {
3284 if (const auto *FlushClause = S.getSingleClause<OMPFlushClause>())
3285 return llvm::makeArrayRef(FlushClause->varlist_begin(),
3286 FlushClause->varlist_end());
3287 return llvm::None;
3288 }(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003289 S.getBeginLoc());
Alexey Bataev6125da92014-07-21 11:26:11 +00003290}
3291
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003292void CodeGenFunction::EmitOMPDistributeLoop(const OMPLoopDirective &S,
3293 const CodeGenLoopTy &CodeGenLoop,
3294 Expr *IncExpr) {
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003295 // Emit the loop iteration variable.
Alexey Bataevddf3db92018-04-13 17:31:06 +00003296 const auto *IVExpr = cast<DeclRefExpr>(S.getIterationVariable());
3297 const auto *IVDecl = cast<VarDecl>(IVExpr->getDecl());
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003298 EmitVarDecl(*IVDecl);
3299
3300 // Emit the iterations count variable.
3301 // If it is not a variable, Sema decided to calculate iterations count on each
3302 // iteration (e.g., it is foldable into a constant).
Alexey Bataevddf3db92018-04-13 17:31:06 +00003303 if (const auto *LIExpr = dyn_cast<DeclRefExpr>(S.getLastIteration())) {
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003304 EmitVarDecl(*cast<VarDecl>(LIExpr->getDecl()));
3305 // Emit calculation of the iterations count.
3306 EmitIgnoredExpr(S.getCalcLastIteration());
3307 }
3308
Alexey Bataevddf3db92018-04-13 17:31:06 +00003309 CGOpenMPRuntime &RT = CGM.getOpenMPRuntime();
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003310
Carlo Bertolli962bb802017-01-03 18:24:42 +00003311 bool HasLastprivateClause = false;
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003312 // Check pre-condition.
3313 {
Alexey Bataev5a3af132016-03-29 08:58:54 +00003314 OMPLoopScope PreInitScope(*this, S);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003315 // Skip the entire loop if we don't meet the precondition.
3316 // If the condition constant folds and can be elided, avoid emitting the
3317 // whole loop.
3318 bool CondConstant;
3319 llvm::BasicBlock *ContBlock = nullptr;
3320 if (ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) {
3321 if (!CondConstant)
3322 return;
3323 } else {
Alexey Bataevddf3db92018-04-13 17:31:06 +00003324 llvm::BasicBlock *ThenBlock = createBasicBlock("omp.precond.then");
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003325 ContBlock = createBasicBlock("omp.precond.end");
3326 emitPreCond(*this, S, S.getPreCond(), ThenBlock, ContBlock,
3327 getProfileCount(&S));
3328 EmitBlock(ThenBlock);
3329 incrementProfileCounter(&S);
3330 }
3331
Alexey Bataev617db5f2017-12-04 15:38:33 +00003332 emitAlignedClause(*this, S);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003333 // Emit 'then' code.
3334 {
3335 // Emit helper vars inits.
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003336
3337 LValue LB = EmitOMPHelperVar(
3338 *this, cast<DeclRefExpr>(
3339 (isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
3340 ? S.getCombinedLowerBoundVariable()
3341 : S.getLowerBoundVariable())));
3342 LValue UB = EmitOMPHelperVar(
3343 *this, cast<DeclRefExpr>(
3344 (isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
3345 ? S.getCombinedUpperBoundVariable()
3346 : S.getUpperBoundVariable())));
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003347 LValue ST =
3348 EmitOMPHelperVar(*this, cast<DeclRefExpr>(S.getStrideVariable()));
3349 LValue IL =
3350 EmitOMPHelperVar(*this, cast<DeclRefExpr>(S.getIsLastIterVariable()));
3351
3352 OMPPrivateScope LoopScope(*this);
Carlo Bertolli962bb802017-01-03 18:24:42 +00003353 if (EmitOMPFirstprivateClause(S, LoopScope)) {
Alexey Bataev617db5f2017-12-04 15:38:33 +00003354 // Emit implicit barrier to synchronize threads and avoid data races
3355 // on initialization of firstprivate variables and post-update of
Carlo Bertolli962bb802017-01-03 18:24:42 +00003356 // lastprivate variables.
3357 CGM.getOpenMPRuntime().emitBarrierCall(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003358 *this, S.getBeginLoc(), OMPD_unknown, /*EmitChecks=*/false,
Alexey Bataev617db5f2017-12-04 15:38:33 +00003359 /*ForceSimpleCall=*/true);
Carlo Bertolli962bb802017-01-03 18:24:42 +00003360 }
3361 EmitOMPPrivateClause(S, LoopScope);
Alexey Bataev617db5f2017-12-04 15:38:33 +00003362 if (isOpenMPSimdDirective(S.getDirectiveKind()) &&
Alexey Bataev999277a2017-12-06 14:31:09 +00003363 !isOpenMPParallelDirective(S.getDirectiveKind()) &&
3364 !isOpenMPTeamsDirective(S.getDirectiveKind()))
Alexey Bataev617db5f2017-12-04 15:38:33 +00003365 EmitOMPReductionClauseInit(S, LoopScope);
Carlo Bertolli962bb802017-01-03 18:24:42 +00003366 HasLastprivateClause = EmitOMPLastprivateClauseInit(S, LoopScope);
Alexey Bataev5dff95c2016-04-22 03:56:56 +00003367 EmitOMPPrivateLoopCounters(S, LoopScope);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003368 (void)LoopScope.Privatize();
Alexey Bataev60705422018-10-30 15:50:12 +00003369 if (isOpenMPTargetExecutionDirective(S.getDirectiveKind()))
3370 CGM.getOpenMPRuntime().adjustTargetSpecificDataForLambdas(*this, S);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003371
3372 // Detect the distribute schedule kind and chunk.
3373 llvm::Value *Chunk = nullptr;
3374 OpenMPDistScheduleClauseKind ScheduleKind = OMPC_DIST_SCHEDULE_unknown;
Alexey Bataevddf3db92018-04-13 17:31:06 +00003375 if (const auto *C = S.getSingleClause<OMPDistScheduleClause>()) {
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003376 ScheduleKind = C->getDistScheduleKind();
Alexey Bataevddf3db92018-04-13 17:31:06 +00003377 if (const Expr *Ch = C->getChunkSize()) {
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003378 Chunk = EmitScalarExpr(Ch);
3379 Chunk = EmitScalarConversion(Chunk, Ch->getType(),
Alexey Bataev617db5f2017-12-04 15:38:33 +00003380 S.getIterationVariable()->getType(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003381 S.getBeginLoc());
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003382 }
Gheorghe-Teodor Bercea02650d42018-09-27 19:22:56 +00003383 } else {
3384 // Default behaviour for dist_schedule clause.
3385 CGM.getOpenMPRuntime().getDefaultDistScheduleAndChunk(
3386 *this, S, ScheduleKind, Chunk);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003387 }
3388 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType());
3389 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation();
3390
3391 // OpenMP [2.10.8, distribute Construct, Description]
3392 // If dist_schedule is specified, kind must be static. If specified,
3393 // iterations are divided into chunks of size chunk_size, chunks are
3394 // assigned to the teams of the league in a round-robin fashion in the
3395 // order of the team number. When no chunk_size is specified, the
3396 // iteration space is divided into chunks that are approximately equal
3397 // in size, and at most one chunk is distributed to each team of the
3398 // league. The size of the chunks is unspecified in this case.
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00003399 bool StaticChunked = RT.isStaticChunked(
3400 ScheduleKind, /* Chunked */ Chunk != nullptr) &&
3401 isOpenMPLoopBoundSharingDirective(S.getDirectiveKind());
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003402 if (RT.isStaticNonchunked(ScheduleKind,
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00003403 /* Chunked */ Chunk != nullptr) ||
3404 StaticChunked) {
Alexey Bataev617db5f2017-12-04 15:38:33 +00003405 if (isOpenMPSimdDirective(S.getDirectiveKind()))
3406 EmitOMPSimdInit(S, /*IsMonotonic=*/true);
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003407 CGOpenMPRuntime::StaticRTInput StaticInit(
3408 IVSize, IVSigned, /* Ordered = */ false, IL.getAddress(),
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00003409 LB.getAddress(), UB.getAddress(), ST.getAddress(),
3410 StaticChunked ? Chunk : nullptr);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003411 RT.emitDistributeStaticInit(*this, S.getBeginLoc(), ScheduleKind,
Alexey Bataev0f87dbe2017-08-14 17:56:13 +00003412 StaticInit);
Alexey Bataevddf3db92018-04-13 17:31:06 +00003413 JumpDest LoopExit =
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003414 getJumpDestInCurrentScope(createBasicBlock("omp.loop.exit"));
3415 // UB = min(UB, GlobalUB);
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003416 EmitIgnoredExpr(isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
3417 ? S.getCombinedEnsureUpperBound()
3418 : S.getEnsureUpperBound());
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003419 // IV = LB;
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003420 EmitIgnoredExpr(isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
3421 ? S.getCombinedInit()
3422 : S.getInit());
3423
Alexey Bataevddf3db92018-04-13 17:31:06 +00003424 const Expr *Cond =
3425 isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
3426 ? S.getCombinedCond()
3427 : S.getCond();
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003428
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00003429 if (StaticChunked)
3430 Cond = S.getCombinedDistCond();
3431
3432 // For static unchunked schedules generate:
3433 //
3434 // 1. For distribute alone, codegen
3435 // while (idx <= UB) {
3436 // BODY;
3437 // ++idx;
3438 // }
3439 //
3440 // 2. When combined with 'for' (e.g. as in 'distribute parallel for')
3441 // while (idx <= UB) {
3442 // <CodeGen rest of pragma>(LB, UB);
3443 // idx += ST;
3444 // }
3445 //
3446 // For static chunk one schedule generate:
3447 //
3448 // while (IV <= GlobalUB) {
3449 // <CodeGen rest of pragma>(LB, UB);
3450 // LB += ST;
3451 // UB += ST;
3452 // UB = min(UB, GlobalUB);
3453 // IV = LB;
3454 // }
3455 //
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003456 EmitOMPInnerLoop(S, LoopScope.requiresCleanups(), Cond, IncExpr,
3457 [&S, LoopExit, &CodeGenLoop](CodeGenFunction &CGF) {
3458 CodeGenLoop(CGF, S, LoopExit);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003459 },
Gheorghe-Teodor Berceae9256762018-10-29 15:45:47 +00003460 [&S, StaticChunked](CodeGenFunction &CGF) {
3461 if (StaticChunked) {
3462 CGF.EmitIgnoredExpr(S.getCombinedNextLowerBound());
3463 CGF.EmitIgnoredExpr(S.getCombinedNextUpperBound());
3464 CGF.EmitIgnoredExpr(S.getCombinedEnsureUpperBound());
3465 CGF.EmitIgnoredExpr(S.getCombinedInit());
3466 }
3467 });
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003468 EmitBlock(LoopExit.getBlock());
3469 // Tell the runtime we are done.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003470 RT.emitForStaticFinish(*this, S.getBeginLoc(), S.getDirectiveKind());
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003471 } else {
3472 // Emit the outer loop, which requests its work chunk [LB..UB] from
3473 // runtime and runs the inner loop to process it.
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003474 const OMPLoopArguments LoopArguments = {
3475 LB.getAddress(), UB.getAddress(), ST.getAddress(), IL.getAddress(),
3476 Chunk};
3477 EmitOMPDistributeOuterLoop(ScheduleKind, S, LoopScope, LoopArguments,
3478 CodeGenLoop);
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003479 }
Alexey Bataev617db5f2017-12-04 15:38:33 +00003480 if (isOpenMPSimdDirective(S.getDirectiveKind())) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00003481 EmitOMPSimdFinal(S, [IL, &S](CodeGenFunction &CGF) {
Alexey Bataev617db5f2017-12-04 15:38:33 +00003482 return CGF.Builder.CreateIsNotNull(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003483 CGF.EmitLoadOfScalar(IL, S.getBeginLoc()));
Alexey Bataev617db5f2017-12-04 15:38:33 +00003484 });
3485 }
Carlo Bertollibeda2142018-02-22 19:38:14 +00003486 if (isOpenMPSimdDirective(S.getDirectiveKind()) &&
3487 !isOpenMPParallelDirective(S.getDirectiveKind()) &&
3488 !isOpenMPTeamsDirective(S.getDirectiveKind())) {
Jonas Hahnfeld5aaaece2018-10-02 19:12:47 +00003489 EmitOMPReductionClauseFinal(S, OMPD_simd);
Carlo Bertollibeda2142018-02-22 19:38:14 +00003490 // Emit post-update of the reduction variables if IsLastIter != 0.
3491 emitPostUpdateForReductionClause(
Alexey Bataevddf3db92018-04-13 17:31:06 +00003492 *this, S, [IL, &S](CodeGenFunction &CGF) {
Carlo Bertollibeda2142018-02-22 19:38:14 +00003493 return CGF.Builder.CreateIsNotNull(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003494 CGF.EmitLoadOfScalar(IL, S.getBeginLoc()));
Carlo Bertollibeda2142018-02-22 19:38:14 +00003495 });
Alexey Bataev617db5f2017-12-04 15:38:33 +00003496 }
Carlo Bertolli962bb802017-01-03 18:24:42 +00003497 // Emit final copy of the lastprivate variables if IsLastIter != 0.
Alexey Bataev617db5f2017-12-04 15:38:33 +00003498 if (HasLastprivateClause) {
Carlo Bertolli962bb802017-01-03 18:24:42 +00003499 EmitOMPLastprivateClauseFinal(
3500 S, /*NoFinals=*/false,
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003501 Builder.CreateIsNotNull(EmitLoadOfScalar(IL, S.getBeginLoc())));
Alexey Bataev617db5f2017-12-04 15:38:33 +00003502 }
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003503 }
3504
3505 // We're now done with the loop, so jump to the continuation block.
3506 if (ContBlock) {
3507 EmitBranch(ContBlock);
3508 EmitBlock(ContBlock, true);
3509 }
3510 }
3511}
3512
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00003513void CodeGenFunction::EmitOMPDistributeDirective(
3514 const OMPDistributeDirective &S) {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00003515 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00003516 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc());
Carlo Bertollifc35ad22016-03-07 16:04:49 +00003517 };
Alexey Bataev475a7442018-01-12 19:39:11 +00003518 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Alexey Bataev10a54312017-11-27 16:54:08 +00003519 CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_distribute, CodeGen);
Carlo Bertolli6200a3d2015-12-14 14:51:25 +00003520}
3521
Alexey Bataev5f600d62015-09-29 03:48:57 +00003522static llvm::Function *emitOutlinedOrderedFunction(CodeGenModule &CGM,
3523 const CapturedStmt *S) {
3524 CodeGenFunction CGF(CGM, /*suppressNewContext=*/true);
3525 CodeGenFunction::CGCapturedStmtInfo CapStmtInfo;
3526 CGF.CapturedStmtInfo = &CapStmtInfo;
Alexey Bataevddf3db92018-04-13 17:31:06 +00003527 llvm::Function *Fn = CGF.GenerateOpenMPCapturedStmtFunction(*S);
Alexey Bataevc0f879b2018-04-10 20:10:53 +00003528 Fn->setDoesNotRecurse();
Alexey Bataev5f600d62015-09-29 03:48:57 +00003529 return Fn;
3530}
3531
Alexey Bataev98eb6e32015-04-22 11:15:40 +00003532void CodeGenFunction::EmitOMPOrderedDirective(const OMPOrderedDirective &S) {
Alexey Bataev475a7442018-01-12 19:39:11 +00003533 if (S.hasClausesOfKind<OMPDependClause>()) {
3534 assert(!S.getAssociatedStmt() &&
3535 "No associated statement must be in ordered depend construct.");
Alexey Bataev8b427062016-05-25 12:36:08 +00003536 for (const auto *DC : S.getClausesOfKind<OMPDependClause>())
3537 CGM.getOpenMPRuntime().emitDoacrossOrdered(*this, DC);
Alexey Bataev8ef31412015-12-18 07:58:25 +00003538 return;
Alexey Bataev8b427062016-05-25 12:36:08 +00003539 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00003540 const auto *C = S.getSingleClause<OMPSIMDClause>();
Alexey Bataev14fa1c62016-03-29 05:34:15 +00003541 auto &&CodeGen = [&S, C, this](CodeGenFunction &CGF,
3542 PrePostActionTy &Action) {
Alexey Bataev475a7442018-01-12 19:39:11 +00003543 const CapturedStmt *CS = S.getInnermostCapturedStmt();
Alexey Bataev5f600d62015-09-29 03:48:57 +00003544 if (C) {
Alexey Bataev5f600d62015-09-29 03:48:57 +00003545 llvm::SmallVector<llvm::Value *, 16> CapturedVars;
3546 CGF.GenerateOpenMPCapturedVars(*CS, CapturedVars);
Alexey Bataevddf3db92018-04-13 17:31:06 +00003547 llvm::Function *OutlinedFn = emitOutlinedOrderedFunction(CGM, CS);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003548 CGM.getOpenMPRuntime().emitOutlinedFunctionCall(CGF, S.getBeginLoc(),
Alexey Bataev3c595a62017-08-14 15:01:03 +00003549 OutlinedFn, CapturedVars);
Alexey Bataev5f600d62015-09-29 03:48:57 +00003550 } else {
Alexey Bataev14fa1c62016-03-29 05:34:15 +00003551 Action.Enter(CGF);
Alexey Bataev475a7442018-01-12 19:39:11 +00003552 CGF.EmitStmt(CS->getCapturedStmt());
Alexey Bataev5f600d62015-09-29 03:48:57 +00003553 }
Alexey Bataev98eb6e32015-04-22 11:15:40 +00003554 };
Alexey Bataev475a7442018-01-12 19:39:11 +00003555 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003556 CGM.getOpenMPRuntime().emitOrderedRegion(*this, CodeGen, S.getBeginLoc(), !C);
Alexey Bataev9fb6e642014-07-22 06:45:04 +00003557}
3558
Alexey Bataevb57056f2015-01-22 06:17:56 +00003559static llvm::Value *convertToScalarValue(CodeGenFunction &CGF, RValue Val,
Filipe Cabecinhas7af183d2015-08-11 04:19:28 +00003560 QualType SrcType, QualType DestType,
3561 SourceLocation Loc) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00003562 assert(CGF.hasScalarEvaluationKind(DestType) &&
3563 "DestType must have scalar evaluation kind.");
3564 assert(!Val.isAggregate() && "Must be a scalar or complex.");
Alexey Bataevddf3db92018-04-13 17:31:06 +00003565 return Val.isScalar() ? CGF.EmitScalarConversion(Val.getScalarVal(), SrcType,
3566 DestType, Loc)
3567 : CGF.EmitComplexToScalarConversion(
3568 Val.getComplexVal(), SrcType, DestType, Loc);
Alexey Bataevb57056f2015-01-22 06:17:56 +00003569}
3570
3571static CodeGenFunction::ComplexPairTy
3572convertToComplexValue(CodeGenFunction &CGF, RValue Val, QualType SrcType,
Filipe Cabecinhas7af183d2015-08-11 04:19:28 +00003573 QualType DestType, SourceLocation Loc) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00003574 assert(CGF.getEvaluationKind(DestType) == TEK_Complex &&
3575 "DestType must have complex evaluation kind.");
3576 CodeGenFunction::ComplexPairTy ComplexVal;
3577 if (Val.isScalar()) {
3578 // Convert the input element to the element type of the complex.
Alexey Bataevddf3db92018-04-13 17:31:06 +00003579 QualType DestElementType =
3580 DestType->castAs<ComplexType>()->getElementType();
3581 llvm::Value *ScalarVal = CGF.EmitScalarConversion(
3582 Val.getScalarVal(), SrcType, DestElementType, Loc);
Alexey Bataevb57056f2015-01-22 06:17:56 +00003583 ComplexVal = CodeGenFunction::ComplexPairTy(
3584 ScalarVal, llvm::Constant::getNullValue(ScalarVal->getType()));
3585 } else {
3586 assert(Val.isComplex() && "Must be a scalar or complex.");
Alexey Bataevddf3db92018-04-13 17:31:06 +00003587 QualType SrcElementType = SrcType->castAs<ComplexType>()->getElementType();
3588 QualType DestElementType =
3589 DestType->castAs<ComplexType>()->getElementType();
Alexey Bataevb57056f2015-01-22 06:17:56 +00003590 ComplexVal.first = CGF.EmitScalarConversion(
Filipe Cabecinhas7af183d2015-08-11 04:19:28 +00003591 Val.getComplexVal().first, SrcElementType, DestElementType, Loc);
Alexey Bataevb57056f2015-01-22 06:17:56 +00003592 ComplexVal.second = CGF.EmitScalarConversion(
Filipe Cabecinhas7af183d2015-08-11 04:19:28 +00003593 Val.getComplexVal().second, SrcElementType, DestElementType, Loc);
Alexey Bataevb57056f2015-01-22 06:17:56 +00003594 }
3595 return ComplexVal;
3596}
3597
Alexey Bataev5e018f92015-04-23 06:35:10 +00003598static void emitSimpleAtomicStore(CodeGenFunction &CGF, bool IsSeqCst,
3599 LValue LVal, RValue RVal) {
3600 if (LVal.isGlobalReg()) {
3601 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal);
3602 } else {
JF Bastien92f4ef12016-04-06 17:26:42 +00003603 CGF.EmitAtomicStore(RVal, LVal,
3604 IsSeqCst ? llvm::AtomicOrdering::SequentiallyConsistent
3605 : llvm::AtomicOrdering::Monotonic,
Alexey Bataev5e018f92015-04-23 06:35:10 +00003606 LVal.isVolatile(), /*IsInit=*/false);
3607 }
3608}
3609
Alexey Bataev8524d152016-01-21 12:35:58 +00003610void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal,
3611 QualType RValTy, SourceLocation Loc) {
3612 switch (getEvaluationKind(LVal.getType())) {
Alexey Bataev5e018f92015-04-23 06:35:10 +00003613 case TEK_Scalar:
Alexey Bataev8524d152016-01-21 12:35:58 +00003614 EmitStoreThroughLValue(RValue::get(convertToScalarValue(
3615 *this, RVal, RValTy, LVal.getType(), Loc)),
3616 LVal);
Alexey Bataev5e018f92015-04-23 06:35:10 +00003617 break;
3618 case TEK_Complex:
Alexey Bataev8524d152016-01-21 12:35:58 +00003619 EmitStoreOfComplex(
3620 convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal,
Alexey Bataev5e018f92015-04-23 06:35:10 +00003621 /*isInit=*/false);
3622 break;
3623 case TEK_Aggregate:
3624 llvm_unreachable("Must be a scalar or complex.");
3625 }
3626}
3627
Alexey Bataevddf3db92018-04-13 17:31:06 +00003628static void emitOMPAtomicReadExpr(CodeGenFunction &CGF, bool IsSeqCst,
Alexey Bataevb57056f2015-01-22 06:17:56 +00003629 const Expr *X, const Expr *V,
3630 SourceLocation Loc) {
3631 // v = x;
3632 assert(V->isLValue() && "V of 'omp atomic read' is not lvalue");
3633 assert(X->isLValue() && "X of 'omp atomic read' is not lvalue");
3634 LValue XLValue = CGF.EmitLValue(X);
3635 LValue VLValue = CGF.EmitLValue(V);
David Majnemera5b195a2015-02-14 01:35:12 +00003636 RValue Res = XLValue.isGlobalReg()
3637 ? CGF.EmitLoadOfLValue(XLValue, Loc)
JF Bastien92f4ef12016-04-06 17:26:42 +00003638 : CGF.EmitAtomicLoad(
3639 XLValue, Loc,
3640 IsSeqCst ? llvm::AtomicOrdering::SequentiallyConsistent
3641 : llvm::AtomicOrdering::Monotonic,
3642 XLValue.isVolatile());
Alexey Bataevb57056f2015-01-22 06:17:56 +00003643 // OpenMP, 2.12.6, atomic Construct
3644 // Any atomic construct with a seq_cst clause forces the atomically
3645 // performed operation to include an implicit flush operation without a
3646 // list.
3647 if (IsSeqCst)
Alexey Bataev3eff5f42015-02-25 08:32:46 +00003648 CGF.CGM.getOpenMPRuntime().emitFlush(CGF, llvm::None, Loc);
Alexey Bataev8524d152016-01-21 12:35:58 +00003649 CGF.emitOMPSimpleStore(VLValue, Res, X->getType().getNonReferenceType(), Loc);
Alexey Bataevb57056f2015-01-22 06:17:56 +00003650}
3651
Alexey Bataevddf3db92018-04-13 17:31:06 +00003652static void emitOMPAtomicWriteExpr(CodeGenFunction &CGF, bool IsSeqCst,
Alexey Bataevb8329262015-02-27 06:33:30 +00003653 const Expr *X, const Expr *E,
3654 SourceLocation Loc) {
3655 // x = expr;
3656 assert(X->isLValue() && "X of 'omp atomic write' is not lvalue");
Alexey Bataev5e018f92015-04-23 06:35:10 +00003657 emitSimpleAtomicStore(CGF, IsSeqCst, CGF.EmitLValue(X), CGF.EmitAnyExpr(E));
Alexey Bataevb8329262015-02-27 06:33:30 +00003658 // OpenMP, 2.12.6, atomic Construct
3659 // Any atomic construct with a seq_cst clause forces the atomically
3660 // performed operation to include an implicit flush operation without a
3661 // list.
3662 if (IsSeqCst)
3663 CGF.CGM.getOpenMPRuntime().emitFlush(CGF, llvm::None, Loc);
3664}
3665
Benjamin Kramer439ee9d2015-05-01 13:59:53 +00003666static std::pair<bool, RValue> emitOMPAtomicRMW(CodeGenFunction &CGF, LValue X,
3667 RValue Update,
3668 BinaryOperatorKind BO,
3669 llvm::AtomicOrdering AO,
3670 bool IsXLHSInRHSPart) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00003671 ASTContext &Context = CGF.getContext();
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003672 // Allow atomicrmw only if 'x' and 'update' are integer values, lvalue for 'x'
Alexey Bataevb4505a72015-03-30 05:20:59 +00003673 // expression is simple and atomic is allowed for the given type for the
3674 // target platform.
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003675 if (BO == BO_Comma || !Update.isScalar() ||
Alexey Bataev9d541a72015-05-08 11:47:16 +00003676 !Update.getScalarVal()->getType()->isIntegerTy() ||
3677 !X.isSimple() || (!isa<llvm::ConstantInt>(Update.getScalarVal()) &&
3678 (Update.getScalarVal()->getType() !=
John McCall7f416cc2015-09-08 08:05:57 +00003679 X.getAddress().getElementType())) ||
3680 !X.getAddress().getElementType()->isIntegerTy() ||
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003681 !Context.getTargetInfo().hasBuiltinAtomic(
3682 Context.getTypeSize(X.getType()), Context.toBits(X.getAlignment())))
Alexey Bataev5e018f92015-04-23 06:35:10 +00003683 return std::make_pair(false, RValue::get(nullptr));
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003684
3685 llvm::AtomicRMWInst::BinOp RMWOp;
3686 switch (BO) {
3687 case BO_Add:
3688 RMWOp = llvm::AtomicRMWInst::Add;
3689 break;
3690 case BO_Sub:
3691 if (!IsXLHSInRHSPart)
Alexey Bataev5e018f92015-04-23 06:35:10 +00003692 return std::make_pair(false, RValue::get(nullptr));
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003693 RMWOp = llvm::AtomicRMWInst::Sub;
3694 break;
3695 case BO_And:
3696 RMWOp = llvm::AtomicRMWInst::And;
3697 break;
3698 case BO_Or:
3699 RMWOp = llvm::AtomicRMWInst::Or;
3700 break;
3701 case BO_Xor:
3702 RMWOp = llvm::AtomicRMWInst::Xor;
3703 break;
3704 case BO_LT:
3705 RMWOp = X.getType()->hasSignedIntegerRepresentation()
3706 ? (IsXLHSInRHSPart ? llvm::AtomicRMWInst::Min
3707 : llvm::AtomicRMWInst::Max)
3708 : (IsXLHSInRHSPart ? llvm::AtomicRMWInst::UMin
3709 : llvm::AtomicRMWInst::UMax);
3710 break;
3711 case BO_GT:
3712 RMWOp = X.getType()->hasSignedIntegerRepresentation()
3713 ? (IsXLHSInRHSPart ? llvm::AtomicRMWInst::Max
3714 : llvm::AtomicRMWInst::Min)
3715 : (IsXLHSInRHSPart ? llvm::AtomicRMWInst::UMax
3716 : llvm::AtomicRMWInst::UMin);
3717 break;
Alexey Bataev5e018f92015-04-23 06:35:10 +00003718 case BO_Assign:
3719 RMWOp = llvm::AtomicRMWInst::Xchg;
3720 break;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003721 case BO_Mul:
3722 case BO_Div:
3723 case BO_Rem:
3724 case BO_Shl:
3725 case BO_Shr:
3726 case BO_LAnd:
3727 case BO_LOr:
Alexey Bataev5e018f92015-04-23 06:35:10 +00003728 return std::make_pair(false, RValue::get(nullptr));
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003729 case BO_PtrMemD:
3730 case BO_PtrMemI:
3731 case BO_LE:
3732 case BO_GE:
3733 case BO_EQ:
3734 case BO_NE:
Richard Smithc70f1d62017-12-14 15:16:18 +00003735 case BO_Cmp:
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003736 case BO_AddAssign:
3737 case BO_SubAssign:
3738 case BO_AndAssign:
3739 case BO_OrAssign:
3740 case BO_XorAssign:
3741 case BO_MulAssign:
3742 case BO_DivAssign:
3743 case BO_RemAssign:
3744 case BO_ShlAssign:
3745 case BO_ShrAssign:
3746 case BO_Comma:
3747 llvm_unreachable("Unsupported atomic update operation");
3748 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00003749 llvm::Value *UpdateVal = Update.getScalarVal();
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003750 if (auto *IC = dyn_cast<llvm::ConstantInt>(UpdateVal)) {
3751 UpdateVal = CGF.Builder.CreateIntCast(
John McCall7f416cc2015-09-08 08:05:57 +00003752 IC, X.getAddress().getElementType(),
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003753 X.getType()->hasSignedIntegerRepresentation());
3754 }
Alexey Bataevddf3db92018-04-13 17:31:06 +00003755 llvm::Value *Res =
3756 CGF.Builder.CreateAtomicRMW(RMWOp, X.getPointer(), UpdateVal, AO);
Alexey Bataev5e018f92015-04-23 06:35:10 +00003757 return std::make_pair(true, RValue::get(Res));
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003758}
3759
Alexey Bataev5e018f92015-04-23 06:35:10 +00003760std::pair<bool, RValue> CodeGenFunction::EmitOMPAtomicSimpleUpdateExpr(
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003761 LValue X, RValue E, BinaryOperatorKind BO, bool IsXLHSInRHSPart,
3762 llvm::AtomicOrdering AO, SourceLocation Loc,
Alexey Bataevddf3db92018-04-13 17:31:06 +00003763 const llvm::function_ref<RValue(RValue)> CommonGen) {
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003764 // Update expressions are allowed to have the following forms:
3765 // x binop= expr; -> xrval + expr;
3766 // x++, ++x -> xrval + 1;
3767 // x--, --x -> xrval - 1;
3768 // x = x binop expr; -> xrval binop expr
3769 // x = expr Op x; - > expr binop xrval;
Alexey Bataev5e018f92015-04-23 06:35:10 +00003770 auto Res = emitOMPAtomicRMW(*this, X, E, BO, AO, IsXLHSInRHSPart);
3771 if (!Res.first) {
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003772 if (X.isGlobalReg()) {
3773 // Emit an update expression: 'xrval' binop 'expr' or 'expr' binop
3774 // 'xrval'.
3775 EmitStoreThroughLValue(CommonGen(EmitLoadOfLValue(X, Loc)), X);
3776 } else {
3777 // Perform compare-and-swap procedure.
3778 EmitAtomicUpdate(X, AO, CommonGen, X.getType().isVolatileQualified());
Alexey Bataevb4505a72015-03-30 05:20:59 +00003779 }
3780 }
Alexey Bataev5e018f92015-04-23 06:35:10 +00003781 return Res;
Alexey Bataevb4505a72015-03-30 05:20:59 +00003782}
3783
Alexey Bataevddf3db92018-04-13 17:31:06 +00003784static void emitOMPAtomicUpdateExpr(CodeGenFunction &CGF, bool IsSeqCst,
Alexey Bataevb4505a72015-03-30 05:20:59 +00003785 const Expr *X, const Expr *E,
3786 const Expr *UE, bool IsXLHSInRHSPart,
3787 SourceLocation Loc) {
3788 assert(isa<BinaryOperator>(UE->IgnoreImpCasts()) &&
3789 "Update expr in 'atomic update' must be a binary operator.");
Alexey Bataevddf3db92018-04-13 17:31:06 +00003790 const auto *BOUE = cast<BinaryOperator>(UE->IgnoreImpCasts());
Alexey Bataevb4505a72015-03-30 05:20:59 +00003791 // Update expressions are allowed to have the following forms:
3792 // x binop= expr; -> xrval + expr;
3793 // x++, ++x -> xrval + 1;
3794 // x--, --x -> xrval - 1;
3795 // x = x binop expr; -> xrval binop expr
3796 // x = expr Op x; - > expr binop xrval;
Alexey Bataev794ba0d2015-04-10 10:43:45 +00003797 assert(X->isLValue() && "X of 'omp atomic update' is not lvalue");
Alexey Bataevb4505a72015-03-30 05:20:59 +00003798 LValue XLValue = CGF.EmitLValue(X);
3799 RValue ExprRValue = CGF.EmitAnyExpr(E);
Alexey Bataevddf3db92018-04-13 17:31:06 +00003800 llvm::AtomicOrdering AO = IsSeqCst
3801 ? llvm::AtomicOrdering::SequentiallyConsistent
3802 : llvm::AtomicOrdering::Monotonic;
3803 const auto *LHS = cast<OpaqueValueExpr>(BOUE->getLHS()->IgnoreImpCasts());
3804 const auto *RHS = cast<OpaqueValueExpr>(BOUE->getRHS()->IgnoreImpCasts());
3805 const OpaqueValueExpr *XRValExpr = IsXLHSInRHSPart ? LHS : RHS;
3806 const OpaqueValueExpr *ERValExpr = IsXLHSInRHSPart ? RHS : LHS;
3807 auto &&Gen = [&CGF, UE, ExprRValue, XRValExpr, ERValExpr](RValue XRValue) {
3808 CodeGenFunction::OpaqueValueMapping MapExpr(CGF, ERValExpr, ExprRValue);
3809 CodeGenFunction::OpaqueValueMapping MapX(CGF, XRValExpr, XRValue);
3810 return CGF.EmitAnyExpr(UE);
3811 };
Alexey Bataev5e018f92015-04-23 06:35:10 +00003812 (void)CGF.EmitOMPAtomicSimpleUpdateExpr(
3813 XLValue, ExprRValue, BOUE->getOpcode(), IsXLHSInRHSPart, AO, Loc, Gen);
3814 // OpenMP, 2.12.6, atomic Construct
3815 // Any atomic construct with a seq_cst clause forces the atomically
3816 // performed operation to include an implicit flush operation without a
3817 // list.
3818 if (IsSeqCst)
3819 CGF.CGM.getOpenMPRuntime().emitFlush(CGF, llvm::None, Loc);
3820}
3821
3822static RValue convertToType(CodeGenFunction &CGF, RValue Value,
Filipe Cabecinhas7af183d2015-08-11 04:19:28 +00003823 QualType SourceType, QualType ResType,
3824 SourceLocation Loc) {
Alexey Bataev5e018f92015-04-23 06:35:10 +00003825 switch (CGF.getEvaluationKind(ResType)) {
3826 case TEK_Scalar:
Filipe Cabecinhas7af183d2015-08-11 04:19:28 +00003827 return RValue::get(
3828 convertToScalarValue(CGF, Value, SourceType, ResType, Loc));
Alexey Bataev5e018f92015-04-23 06:35:10 +00003829 case TEK_Complex: {
Filipe Cabecinhas7af183d2015-08-11 04:19:28 +00003830 auto Res = convertToComplexValue(CGF, Value, SourceType, ResType, Loc);
Alexey Bataev5e018f92015-04-23 06:35:10 +00003831 return RValue::getComplex(Res.first, Res.second);
3832 }
3833 case TEK_Aggregate:
3834 break;
3835 }
3836 llvm_unreachable("Must be a scalar or complex.");
3837}
3838
Alexey Bataevddf3db92018-04-13 17:31:06 +00003839static void emitOMPAtomicCaptureExpr(CodeGenFunction &CGF, bool IsSeqCst,
Alexey Bataev5e018f92015-04-23 06:35:10 +00003840 bool IsPostfixUpdate, const Expr *V,
3841 const Expr *X, const Expr *E,
3842 const Expr *UE, bool IsXLHSInRHSPart,
3843 SourceLocation Loc) {
3844 assert(X->isLValue() && "X of 'omp atomic capture' is not lvalue");
3845 assert(V->isLValue() && "V of 'omp atomic capture' is not lvalue");
3846 RValue NewVVal;
3847 LValue VLValue = CGF.EmitLValue(V);
3848 LValue XLValue = CGF.EmitLValue(X);
3849 RValue ExprRValue = CGF.EmitAnyExpr(E);
Alexey Bataevddf3db92018-04-13 17:31:06 +00003850 llvm::AtomicOrdering AO = IsSeqCst
3851 ? llvm::AtomicOrdering::SequentiallyConsistent
3852 : llvm::AtomicOrdering::Monotonic;
Alexey Bataev5e018f92015-04-23 06:35:10 +00003853 QualType NewVValType;
3854 if (UE) {
3855 // 'x' is updated with some additional value.
3856 assert(isa<BinaryOperator>(UE->IgnoreImpCasts()) &&
3857 "Update expr in 'atomic capture' must be a binary operator.");
Alexey Bataevddf3db92018-04-13 17:31:06 +00003858 const auto *BOUE = cast<BinaryOperator>(UE->IgnoreImpCasts());
Alexey Bataev5e018f92015-04-23 06:35:10 +00003859 // Update expressions are allowed to have the following forms:
3860 // x binop= expr; -> xrval + expr;
3861 // x++, ++x -> xrval + 1;
3862 // x--, --x -> xrval - 1;
3863 // x = x binop expr; -> xrval binop expr
3864 // x = expr Op x; - > expr binop xrval;
Alexey Bataevddf3db92018-04-13 17:31:06 +00003865 const auto *LHS = cast<OpaqueValueExpr>(BOUE->getLHS()->IgnoreImpCasts());
3866 const auto *RHS = cast<OpaqueValueExpr>(BOUE->getRHS()->IgnoreImpCasts());
3867 const OpaqueValueExpr *XRValExpr = IsXLHSInRHSPart ? LHS : RHS;
Alexey Bataev5e018f92015-04-23 06:35:10 +00003868 NewVValType = XRValExpr->getType();
Alexey Bataevddf3db92018-04-13 17:31:06 +00003869 const OpaqueValueExpr *ERValExpr = IsXLHSInRHSPart ? RHS : LHS;
Alexey Bataev5e018f92015-04-23 06:35:10 +00003870 auto &&Gen = [&CGF, &NewVVal, UE, ExprRValue, XRValExpr, ERValExpr,
Alexey Bataevddf3db92018-04-13 17:31:06 +00003871 IsPostfixUpdate](RValue XRValue) {
Alexey Bataev5e018f92015-04-23 06:35:10 +00003872 CodeGenFunction::OpaqueValueMapping MapExpr(CGF, ERValExpr, ExprRValue);
3873 CodeGenFunction::OpaqueValueMapping MapX(CGF, XRValExpr, XRValue);
3874 RValue Res = CGF.EmitAnyExpr(UE);
3875 NewVVal = IsPostfixUpdate ? XRValue : Res;
3876 return Res;
3877 };
3878 auto Res = CGF.EmitOMPAtomicSimpleUpdateExpr(
3879 XLValue, ExprRValue, BOUE->getOpcode(), IsXLHSInRHSPart, AO, Loc, Gen);
3880 if (Res.first) {
3881 // 'atomicrmw' instruction was generated.
3882 if (IsPostfixUpdate) {
3883 // Use old value from 'atomicrmw'.
3884 NewVVal = Res.second;
3885 } else {
3886 // 'atomicrmw' does not provide new value, so evaluate it using old
3887 // value of 'x'.
3888 CodeGenFunction::OpaqueValueMapping MapExpr(CGF, ERValExpr, ExprRValue);
3889 CodeGenFunction::OpaqueValueMapping MapX(CGF, XRValExpr, Res.second);
3890 NewVVal = CGF.EmitAnyExpr(UE);
3891 }
3892 }
3893 } else {
3894 // 'x' is simply rewritten with some 'expr'.
3895 NewVValType = X->getType().getNonReferenceType();
3896 ExprRValue = convertToType(CGF, ExprRValue, E->getType(),
Filipe Cabecinhas7af183d2015-08-11 04:19:28 +00003897 X->getType().getNonReferenceType(), Loc);
Alexey Bataevddf3db92018-04-13 17:31:06 +00003898 auto &&Gen = [&NewVVal, ExprRValue](RValue XRValue) {
Alexey Bataev5e018f92015-04-23 06:35:10 +00003899 NewVVal = XRValue;
3900 return ExprRValue;
3901 };
3902 // Try to perform atomicrmw xchg, otherwise simple exchange.
3903 auto Res = CGF.EmitOMPAtomicSimpleUpdateExpr(
3904 XLValue, ExprRValue, /*BO=*/BO_Assign, /*IsXLHSInRHSPart=*/false, AO,
3905 Loc, Gen);
3906 if (Res.first) {
3907 // 'atomicrmw' instruction was generated.
3908 NewVVal = IsPostfixUpdate ? Res.second : ExprRValue;
3909 }
3910 }
3911 // Emit post-update store to 'v' of old/new 'x' value.
Alexey Bataev8524d152016-01-21 12:35:58 +00003912 CGF.emitOMPSimpleStore(VLValue, NewVVal, NewVValType, Loc);
Alexey Bataevb4505a72015-03-30 05:20:59 +00003913 // OpenMP, 2.12.6, atomic Construct
3914 // Any atomic construct with a seq_cst clause forces the atomically
3915 // performed operation to include an implicit flush operation without a
3916 // list.
3917 if (IsSeqCst)
3918 CGF.CGM.getOpenMPRuntime().emitFlush(CGF, llvm::None, Loc);
3919}
3920
Alexey Bataevddf3db92018-04-13 17:31:06 +00003921static void emitOMPAtomicExpr(CodeGenFunction &CGF, OpenMPClauseKind Kind,
Alexey Bataev5e018f92015-04-23 06:35:10 +00003922 bool IsSeqCst, bool IsPostfixUpdate,
3923 const Expr *X, const Expr *V, const Expr *E,
3924 const Expr *UE, bool IsXLHSInRHSPart,
3925 SourceLocation Loc) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00003926 switch (Kind) {
3927 case OMPC_read:
Alexey Bataevddf3db92018-04-13 17:31:06 +00003928 emitOMPAtomicReadExpr(CGF, IsSeqCst, X, V, Loc);
Alexey Bataevb57056f2015-01-22 06:17:56 +00003929 break;
3930 case OMPC_write:
Alexey Bataevddf3db92018-04-13 17:31:06 +00003931 emitOMPAtomicWriteExpr(CGF, IsSeqCst, X, E, Loc);
Alexey Bataevb8329262015-02-27 06:33:30 +00003932 break;
Alexey Bataevb4505a72015-03-30 05:20:59 +00003933 case OMPC_unknown:
Alexey Bataevb57056f2015-01-22 06:17:56 +00003934 case OMPC_update:
Alexey Bataevddf3db92018-04-13 17:31:06 +00003935 emitOMPAtomicUpdateExpr(CGF, IsSeqCst, X, E, UE, IsXLHSInRHSPart, Loc);
Alexey Bataevb4505a72015-03-30 05:20:59 +00003936 break;
Alexey Bataevb57056f2015-01-22 06:17:56 +00003937 case OMPC_capture:
Alexey Bataevddf3db92018-04-13 17:31:06 +00003938 emitOMPAtomicCaptureExpr(CGF, IsSeqCst, IsPostfixUpdate, V, X, E, UE,
Alexey Bataev5e018f92015-04-23 06:35:10 +00003939 IsXLHSInRHSPart, Loc);
3940 break;
Alexey Bataevb57056f2015-01-22 06:17:56 +00003941 case OMPC_if:
3942 case OMPC_final:
3943 case OMPC_num_threads:
3944 case OMPC_private:
3945 case OMPC_firstprivate:
3946 case OMPC_lastprivate:
3947 case OMPC_reduction:
Alexey Bataev169d96a2017-07-18 20:17:46 +00003948 case OMPC_task_reduction:
Alexey Bataevfa312f32017-07-21 18:48:21 +00003949 case OMPC_in_reduction:
Alexey Bataevb57056f2015-01-22 06:17:56 +00003950 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +00003951 case OMPC_simdlen:
Alexey Bataev9cc10fc2019-03-12 18:52:33 +00003952 case OMPC_allocator:
Alexey Bataeve04483e2019-03-27 14:14:31 +00003953 case OMPC_allocate:
Alexey Bataevb57056f2015-01-22 06:17:56 +00003954 case OMPC_collapse:
3955 case OMPC_default:
3956 case OMPC_seq_cst:
3957 case OMPC_shared:
3958 case OMPC_linear:
3959 case OMPC_aligned:
3960 case OMPC_copyin:
3961 case OMPC_copyprivate:
3962 case OMPC_flush:
3963 case OMPC_proc_bind:
3964 case OMPC_schedule:
3965 case OMPC_ordered:
3966 case OMPC_nowait:
3967 case OMPC_untied:
3968 case OMPC_threadprivate:
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +00003969 case OMPC_depend:
Alexey Bataevb57056f2015-01-22 06:17:56 +00003970 case OMPC_mergeable:
Michael Wonge710d542015-08-07 16:16:36 +00003971 case OMPC_device:
Alexey Bataev346265e2015-09-25 10:37:12 +00003972 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +00003973 case OMPC_simd:
Kelvin Li0bff7af2015-11-23 05:32:03 +00003974 case OMPC_map:
Kelvin Li099bb8c2015-11-24 20:50:12 +00003975 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +00003976 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +00003977 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +00003978 case OMPC_grainsize:
Alexey Bataevb825de12015-12-07 10:51:44 +00003979 case OMPC_nogroup:
Alexey Bataev382967a2015-12-08 12:06:20 +00003980 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +00003981 case OMPC_hint:
Carlo Bertollib4adf552016-01-15 18:50:31 +00003982 case OMPC_dist_schedule:
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +00003983 case OMPC_defaultmap:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +00003984 case OMPC_uniform:
Samuel Antao661c0902016-05-26 17:39:58 +00003985 case OMPC_to:
Samuel Antaoec172c62016-05-26 17:49:04 +00003986 case OMPC_from:
Carlo Bertolli2404b172016-07-13 15:37:16 +00003987 case OMPC_use_device_ptr:
Carlo Bertolli70594e92016-07-13 17:16:49 +00003988 case OMPC_is_device_ptr:
Kelvin Li1408f912018-09-26 04:28:39 +00003989 case OMPC_unified_address:
Alexey Bataev94c50642018-10-01 14:26:31 +00003990 case OMPC_unified_shared_memory:
Patrick Lyster6bdf63b2018-10-03 20:07:58 +00003991 case OMPC_reverse_offload:
Patrick Lyster3fe9e392018-10-11 14:41:10 +00003992 case OMPC_dynamic_allocators:
Patrick Lyster7a2a27c2018-11-02 12:18:11 +00003993 case OMPC_atomic_default_mem_order:
Alexey Bataevb57056f2015-01-22 06:17:56 +00003994 llvm_unreachable("Clause is not allowed in 'omp atomic'.");
3995 }
3996}
3997
3998void CodeGenFunction::EmitOMPAtomicDirective(const OMPAtomicDirective &S) {
Benjamin Kramerfc600dc2015-08-30 15:12:28 +00003999 bool IsSeqCst = S.getSingleClause<OMPSeqCstClause>();
Alexey Bataevb57056f2015-01-22 06:17:56 +00004000 OpenMPClauseKind Kind = OMPC_unknown;
Alexey Bataevddf3db92018-04-13 17:31:06 +00004001 for (const OMPClause *C : S.clauses()) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00004002 // Find first clause (skip seq_cst clause, if it is first).
4003 if (C->getClauseKind() != OMPC_seq_cst) {
4004 Kind = C->getClauseKind();
4005 break;
4006 }
4007 }
Alexey Bataev10fec572015-03-11 04:48:56 +00004008
Alexey Bataevddf3db92018-04-13 17:31:06 +00004009 const Stmt *CS = S.getInnermostCapturedStmt()->IgnoreContainers();
Bill Wendling7c44da22018-10-31 03:48:47 +00004010 if (const auto *FE = dyn_cast<FullExpr>(CS))
4011 enterFullExpression(FE);
Alexey Bataev5e018f92015-04-23 06:35:10 +00004012 // Processing for statements under 'atomic capture'.
4013 if (const auto *Compound = dyn_cast<CompoundStmt>(CS)) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00004014 for (const Stmt *C : Compound->body()) {
Bill Wendling7c44da22018-10-31 03:48:47 +00004015 if (const auto *FE = dyn_cast<FullExpr>(C))
4016 enterFullExpression(FE);
Alexey Bataev5e018f92015-04-23 06:35:10 +00004017 }
4018 }
Alexey Bataev10fec572015-03-11 04:48:56 +00004019
Alexey Bataev14fa1c62016-03-29 05:34:15 +00004020 auto &&CodeGen = [&S, Kind, IsSeqCst, CS](CodeGenFunction &CGF,
4021 PrePostActionTy &) {
Alexey Bataev33c56402015-12-14 09:26:19 +00004022 CGF.EmitStopPoint(CS);
Alexey Bataevddf3db92018-04-13 17:31:06 +00004023 emitOMPAtomicExpr(CGF, Kind, IsSeqCst, S.isPostfixUpdate(), S.getX(),
Alexey Bataev5e018f92015-04-23 06:35:10 +00004024 S.getV(), S.getExpr(), S.getUpdateExpr(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004025 S.isXLHSInRHSPart(), S.getBeginLoc());
Alexey Bataev6f1ffc02015-04-10 04:50:10 +00004026 };
Alexey Bataev475a7442018-01-12 19:39:11 +00004027 OMPLexicalScope Scope(*this, S, OMPD_unknown);
Alexey Bataev81c7ea02015-07-03 09:56:58 +00004028 CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_atomic, CodeGen);
Alexey Bataev0162e452014-07-22 10:10:35 +00004029}
4030
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00004031static void emitCommonOMPTargetDirective(CodeGenFunction &CGF,
4032 const OMPExecutableDirective &S,
4033 const RegionCodeGenTy &CodeGen) {
4034 assert(isOpenMPTargetExecutionDirective(S.getDirectiveKind()));
4035 CodeGenModule &CGM = CGF.CGM;
Samuel Antaobed3c462015-10-02 16:14:20 +00004036
Alexey Bataev4f4bf7c2018-03-15 15:47:20 +00004037 // On device emit this construct as inlined code.
4038 if (CGM.getLangOpts().OpenMPIsDevice) {
4039 OMPLexicalScope Scope(CGF, S, OMPD_target);
4040 CGM.getOpenMPRuntime().emitInlinedDirective(
4041 CGF, OMPD_target, [&S](CodeGenFunction &CGF, PrePostActionTy &) {
Alexey Bataev4ac68a22018-05-16 15:08:32 +00004042 CGF.EmitStmt(S.getInnermostCapturedStmt()->getCapturedStmt());
Alexey Bataev4f4bf7c2018-03-15 15:47:20 +00004043 });
4044 return;
4045 }
4046
Samuel Antaoee8fb302016-01-06 13:42:12 +00004047 llvm::Function *Fn = nullptr;
4048 llvm::Constant *FnID = nullptr;
Samuel Antaobed3c462015-10-02 16:14:20 +00004049
Samuel Antaobed3c462015-10-02 16:14:20 +00004050 const Expr *IfCond = nullptr;
Arpith Chacko Jacobfe4890a2017-01-18 20:40:48 +00004051 // Check for the at most one if clause associated with the target region.
4052 for (const auto *C : S.getClausesOfKind<OMPIfClause>()) {
4053 if (C->getNameModifier() == OMPD_unknown ||
4054 C->getNameModifier() == OMPD_target) {
4055 IfCond = C->getCondition();
4056 break;
4057 }
Samuel Antaobed3c462015-10-02 16:14:20 +00004058 }
4059
4060 // Check if we have any device clause associated with the directive.
4061 const Expr *Device = nullptr;
Alexey Bataevddf3db92018-04-13 17:31:06 +00004062 if (auto *C = S.getSingleClause<OMPDeviceClause>())
Samuel Antaobed3c462015-10-02 16:14:20 +00004063 Device = C->getDevice();
Samuel Antaobed3c462015-10-02 16:14:20 +00004064
Samuel Antaoee8fb302016-01-06 13:42:12 +00004065 // Check if we have an if clause whose conditional always evaluates to false
4066 // or if we do not have any targets specified. If so the target region is not
4067 // an offload entry point.
4068 bool IsOffloadEntry = true;
4069 if (IfCond) {
4070 bool Val;
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00004071 if (CGF.ConstantFoldsToSimpleInteger(IfCond, Val) && !Val)
Samuel Antaoee8fb302016-01-06 13:42:12 +00004072 IsOffloadEntry = false;
4073 }
4074 if (CGM.getLangOpts().OMPTargetTriples.empty())
4075 IsOffloadEntry = false;
4076
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00004077 assert(CGF.CurFuncDecl && "No parent declaration for target region!");
Samuel Antaoee8fb302016-01-06 13:42:12 +00004078 StringRef ParentName;
4079 // In case we have Ctors/Dtors we use the complete type variant to produce
4080 // the mangling of the device outlined kernel.
Alexey Bataevddf3db92018-04-13 17:31:06 +00004081 if (const auto *D = dyn_cast<CXXConstructorDecl>(CGF.CurFuncDecl))
Samuel Antaoee8fb302016-01-06 13:42:12 +00004082 ParentName = CGM.getMangledName(GlobalDecl(D, Ctor_Complete));
Alexey Bataevddf3db92018-04-13 17:31:06 +00004083 else if (const auto *D = dyn_cast<CXXDestructorDecl>(CGF.CurFuncDecl))
Samuel Antaoee8fb302016-01-06 13:42:12 +00004084 ParentName = CGM.getMangledName(GlobalDecl(D, Dtor_Complete));
4085 else
4086 ParentName =
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00004087 CGM.getMangledName(GlobalDecl(cast<FunctionDecl>(CGF.CurFuncDecl)));
Samuel Antaoee8fb302016-01-06 13:42:12 +00004088
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00004089 // Emit target region as a standalone region.
4090 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(S, ParentName, Fn, FnID,
4091 IsOffloadEntry, CodeGen);
Alexey Bataev8451efa2018-01-15 19:06:12 +00004092 OMPLexicalScope Scope(CGF, S, OMPD_task);
Alexey Bataev7bb33532019-01-07 21:30:43 +00004093 auto &&SizeEmitter = [](CodeGenFunction &CGF, const OMPLoopDirective &D) {
4094 OMPLoopScope(CGF, D);
4095 // Emit calculation of the iterations count.
4096 llvm::Value *NumIterations = CGF.EmitScalarExpr(D.getNumIterations());
4097 NumIterations = CGF.Builder.CreateIntCast(NumIterations, CGF.Int64Ty,
4098 /*IsSigned=*/false);
4099 return NumIterations;
4100 };
Alexey Bataev4920e1a2019-01-30 20:49:52 +00004101 if (IsOffloadEntry)
4102 CGM.getOpenMPRuntime().emitTargetNumIterationsCall(CGF, S, Device,
4103 SizeEmitter);
Alexey Bataev8451efa2018-01-15 19:06:12 +00004104 CGM.getOpenMPRuntime().emitTargetCall(CGF, S, Fn, FnID, IfCond, Device);
Alexey Bataev0bd520b2014-09-19 08:19:49 +00004105}
4106
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00004107static void emitTargetRegion(CodeGenFunction &CGF, const OMPTargetDirective &S,
4108 PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004109 Action.Enter(CGF);
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00004110 CodeGenFunction::OMPPrivateScope PrivateScope(CGF);
4111 (void)CGF.EmitOMPFirstprivateClause(S, PrivateScope);
4112 CGF.EmitOMPPrivateClause(S, PrivateScope);
4113 (void)PrivateScope.Privatize();
Alexey Bataev60705422018-10-30 15:50:12 +00004114 if (isOpenMPTargetExecutionDirective(S.getDirectiveKind()))
4115 CGF.CGM.getOpenMPRuntime().adjustTargetSpecificDataForLambdas(CGF, S);
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00004116
Alexey Bataev475a7442018-01-12 19:39:11 +00004117 CGF.EmitStmt(S.getCapturedStmt(OMPD_target)->getCapturedStmt());
Arpith Chacko Jacob43a8b7b2017-01-16 15:26:02 +00004118}
4119
4120void CodeGenFunction::EmitOMPTargetDeviceFunction(CodeGenModule &CGM,
4121 StringRef ParentName,
4122 const OMPTargetDirective &S) {
4123 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4124 emitTargetRegion(CGF, S, Action);
4125 };
4126 llvm::Function *Fn;
4127 llvm::Constant *Addr;
4128 // Emit target region as a standalone region.
4129 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(
4130 S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen);
4131 assert(Fn && Addr && "Target device function emission failed.");
4132}
4133
4134void CodeGenFunction::EmitOMPTargetDirective(const OMPTargetDirective &S) {
4135 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4136 emitTargetRegion(CGF, S, Action);
4137 };
4138 emitCommonOMPTargetDirective(*this, S, CodeGen);
4139}
4140
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00004141static void emitCommonOMPTeamsDirective(CodeGenFunction &CGF,
4142 const OMPExecutableDirective &S,
4143 OpenMPDirectiveKind InnermostKind,
4144 const RegionCodeGenTy &CodeGen) {
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00004145 const CapturedStmt *CS = S.getCapturedStmt(OMPD_teams);
James Y Knight9871db02019-02-05 16:42:33 +00004146 llvm::Function *OutlinedFn =
Alexey Bataevddf3db92018-04-13 17:31:06 +00004147 CGF.CGM.getOpenMPRuntime().emitTeamsOutlinedFunction(
4148 S, *CS->getCapturedDecl()->param_begin(), InnermostKind, CodeGen);
Samuel Antaob68e2db2016-03-03 16:20:23 +00004149
Alexey Bataevddf3db92018-04-13 17:31:06 +00004150 const auto *NT = S.getSingleClause<OMPNumTeamsClause>();
4151 const auto *TL = S.getSingleClause<OMPThreadLimitClause>();
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00004152 if (NT || TL) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00004153 const Expr *NumTeams = NT ? NT->getNumTeams() : nullptr;
4154 const Expr *ThreadLimit = TL ? TL->getThreadLimit() : nullptr;
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00004155
Carlo Bertollic6872252016-04-04 15:55:02 +00004156 CGF.CGM.getOpenMPRuntime().emitNumTeamsClause(CGF, NumTeams, ThreadLimit,
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004157 S.getBeginLoc());
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00004158 }
4159
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00004160 OMPTeamsScope Scope(CGF, S);
Alexey Bataev14fa1c62016-03-29 05:34:15 +00004161 llvm::SmallVector<llvm::Value *, 16> CapturedVars;
4162 CGF.GenerateOpenMPCapturedVars(*CS, CapturedVars);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004163 CGF.CGM.getOpenMPRuntime().emitTeamsCall(CGF, S, S.getBeginLoc(), OutlinedFn,
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00004164 CapturedVars);
4165}
4166
4167void CodeGenFunction::EmitOMPTeamsDirective(const OMPTeamsDirective &S) {
Kelvin Li51336dd2016-12-15 17:55:32 +00004168 // Emit teams region as a standalone region.
Alexey Bataevc99042b2018-03-15 18:10:54 +00004169 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004170 Action.Enter(CGF);
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00004171 OMPPrivateScope PrivateScope(CGF);
Carlo Bertolli6ad7b5a2016-03-03 22:09:40 +00004172 (void)CGF.EmitOMPFirstprivateClause(S, PrivateScope);
4173 CGF.EmitOMPPrivateClause(S, PrivateScope);
Arpith Chacko Jacobfc711b12017-02-16 16:48:49 +00004174 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00004175 (void)PrivateScope.Privatize();
Alexey Bataev475a7442018-01-12 19:39:11 +00004176 CGF.EmitStmt(S.getCapturedStmt(OMPD_teams)->getCapturedStmt());
Arpith Chacko Jacobfc711b12017-02-16 16:48:49 +00004177 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams);
Carlo Bertolli430d8ec2016-03-03 20:34:23 +00004178 };
Alexey Bataev2139ed62017-11-16 18:20:21 +00004179 emitCommonOMPTeamsDirective(*this, S, OMPD_distribute, CodeGen);
Alexey Bataevddf3db92018-04-13 17:31:06 +00004180 emitPostUpdateForReductionClause(*this, S,
4181 [](CodeGenFunction &) { return nullptr; });
Alexey Bataev13314bf2014-10-09 04:18:56 +00004182}
Alexey Bataev6d4ed052015-07-01 06:57:41 +00004183
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00004184static void emitTargetTeamsRegion(CodeGenFunction &CGF, PrePostActionTy &Action,
4185 const OMPTargetTeamsDirective &S) {
4186 auto *CS = S.getCapturedStmt(OMPD_teams);
4187 Action.Enter(CGF);
Alexey Bataevf9fc42e2017-11-22 14:25:55 +00004188 // Emit teams region as a standalone region.
4189 auto &&CodeGen = [&S, CS](CodeGenFunction &CGF, PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004190 Action.Enter(CGF);
Alexey Bataevf9fc42e2017-11-22 14:25:55 +00004191 CodeGenFunction::OMPPrivateScope PrivateScope(CGF);
4192 (void)CGF.EmitOMPFirstprivateClause(S, PrivateScope);
4193 CGF.EmitOMPPrivateClause(S, PrivateScope);
4194 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
4195 (void)PrivateScope.Privatize();
Alexey Bataev60705422018-10-30 15:50:12 +00004196 if (isOpenMPTargetExecutionDirective(S.getDirectiveKind()))
4197 CGF.CGM.getOpenMPRuntime().adjustTargetSpecificDataForLambdas(CGF, S);
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00004198 CGF.EmitStmt(CS->getCapturedStmt());
Alexey Bataevf9fc42e2017-11-22 14:25:55 +00004199 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams);
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00004200 };
4201 emitCommonOMPTeamsDirective(CGF, S, OMPD_teams, CodeGen);
Alexey Bataevddf3db92018-04-13 17:31:06 +00004202 emitPostUpdateForReductionClause(CGF, S,
4203 [](CodeGenFunction &) { return nullptr; });
Arpith Chacko Jacob99a1e0e2017-01-25 02:18:43 +00004204}
4205
4206void CodeGenFunction::EmitOMPTargetTeamsDeviceFunction(
4207 CodeGenModule &CGM, StringRef ParentName,
4208 const OMPTargetTeamsDirective &S) {
4209 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4210 emitTargetTeamsRegion(CGF, Action, S);
4211 };
4212 llvm::Function *Fn;
4213 llvm::Constant *Addr;
4214 // Emit target region as a standalone region.
4215 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(
4216 S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen);
4217 assert(Fn && Addr && "Target device function emission failed.");
4218}
4219
4220void CodeGenFunction::EmitOMPTargetTeamsDirective(
4221 const OMPTargetTeamsDirective &S) {
4222 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4223 emitTargetTeamsRegion(CGF, Action, S);
4224 };
4225 emitCommonOMPTargetDirective(*this, S, CodeGen);
4226}
4227
Alexey Bataevdfa430f2017-12-08 15:03:50 +00004228static void
4229emitTargetTeamsDistributeRegion(CodeGenFunction &CGF, PrePostActionTy &Action,
4230 const OMPTargetTeamsDistributeDirective &S) {
4231 Action.Enter(CGF);
4232 auto &&CodeGenDistribute = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
4233 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc());
4234 };
4235
4236 // Emit teams region as a standalone region.
4237 auto &&CodeGen = [&S, &CodeGenDistribute](CodeGenFunction &CGF,
Alexey Bataevc99042b2018-03-15 18:10:54 +00004238 PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004239 Action.Enter(CGF);
Alexey Bataevdfa430f2017-12-08 15:03:50 +00004240 CodeGenFunction::OMPPrivateScope PrivateScope(CGF);
4241 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
4242 (void)PrivateScope.Privatize();
4243 CGF.CGM.getOpenMPRuntime().emitInlinedDirective(CGF, OMPD_distribute,
4244 CodeGenDistribute);
4245 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams);
4246 };
4247 emitCommonOMPTeamsDirective(CGF, S, OMPD_distribute, CodeGen);
4248 emitPostUpdateForReductionClause(CGF, S,
4249 [](CodeGenFunction &) { return nullptr; });
4250}
4251
4252void CodeGenFunction::EmitOMPTargetTeamsDistributeDeviceFunction(
4253 CodeGenModule &CGM, StringRef ParentName,
4254 const OMPTargetTeamsDistributeDirective &S) {
4255 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4256 emitTargetTeamsDistributeRegion(CGF, Action, S);
4257 };
4258 llvm::Function *Fn;
4259 llvm::Constant *Addr;
4260 // Emit target region as a standalone region.
4261 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(
4262 S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen);
4263 assert(Fn && Addr && "Target device function emission failed.");
4264}
4265
4266void CodeGenFunction::EmitOMPTargetTeamsDistributeDirective(
4267 const OMPTargetTeamsDistributeDirective &S) {
4268 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4269 emitTargetTeamsDistributeRegion(CGF, Action, S);
4270 };
4271 emitCommonOMPTargetDirective(*this, S, CodeGen);
4272}
4273
Alexey Bataevfbe17fb2017-12-13 19:45:06 +00004274static void emitTargetTeamsDistributeSimdRegion(
4275 CodeGenFunction &CGF, PrePostActionTy &Action,
4276 const OMPTargetTeamsDistributeSimdDirective &S) {
4277 Action.Enter(CGF);
4278 auto &&CodeGenDistribute = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
4279 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc());
4280 };
4281
4282 // Emit teams region as a standalone region.
4283 auto &&CodeGen = [&S, &CodeGenDistribute](CodeGenFunction &CGF,
Alexey Bataevc99042b2018-03-15 18:10:54 +00004284 PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004285 Action.Enter(CGF);
Alexey Bataevfbe17fb2017-12-13 19:45:06 +00004286 CodeGenFunction::OMPPrivateScope PrivateScope(CGF);
4287 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
4288 (void)PrivateScope.Privatize();
4289 CGF.CGM.getOpenMPRuntime().emitInlinedDirective(CGF, OMPD_distribute,
4290 CodeGenDistribute);
4291 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams);
4292 };
4293 emitCommonOMPTeamsDirective(CGF, S, OMPD_distribute_simd, CodeGen);
4294 emitPostUpdateForReductionClause(CGF, S,
4295 [](CodeGenFunction &) { return nullptr; });
4296}
4297
4298void CodeGenFunction::EmitOMPTargetTeamsDistributeSimdDeviceFunction(
4299 CodeGenModule &CGM, StringRef ParentName,
4300 const OMPTargetTeamsDistributeSimdDirective &S) {
4301 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4302 emitTargetTeamsDistributeSimdRegion(CGF, Action, S);
4303 };
4304 llvm::Function *Fn;
4305 llvm::Constant *Addr;
4306 // Emit target region as a standalone region.
4307 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(
4308 S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen);
4309 assert(Fn && Addr && "Target device function emission failed.");
4310}
4311
4312void CodeGenFunction::EmitOMPTargetTeamsDistributeSimdDirective(
4313 const OMPTargetTeamsDistributeSimdDirective &S) {
4314 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4315 emitTargetTeamsDistributeSimdRegion(CGF, Action, S);
4316 };
4317 emitCommonOMPTargetDirective(*this, S, CodeGen);
4318}
4319
Carlo Bertolliba1487b2017-10-04 14:12:09 +00004320void CodeGenFunction::EmitOMPTeamsDistributeDirective(
4321 const OMPTeamsDistributeDirective &S) {
4322
4323 auto &&CodeGenDistribute = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
4324 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc());
4325 };
4326
4327 // Emit teams region as a standalone region.
4328 auto &&CodeGen = [&S, &CodeGenDistribute](CodeGenFunction &CGF,
Alexey Bataevc99042b2018-03-15 18:10:54 +00004329 PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004330 Action.Enter(CGF);
Carlo Bertolliba1487b2017-10-04 14:12:09 +00004331 OMPPrivateScope PrivateScope(CGF);
4332 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
4333 (void)PrivateScope.Privatize();
4334 CGF.CGM.getOpenMPRuntime().emitInlinedDirective(CGF, OMPD_distribute,
4335 CodeGenDistribute);
4336 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams);
4337 };
Alexey Bataev95c6dd42017-11-29 15:14:16 +00004338 emitCommonOMPTeamsDirective(*this, S, OMPD_distribute, CodeGen);
Carlo Bertolliba1487b2017-10-04 14:12:09 +00004339 emitPostUpdateForReductionClause(*this, S,
4340 [](CodeGenFunction &) { return nullptr; });
4341}
4342
Alexey Bataev999277a2017-12-06 14:31:09 +00004343void CodeGenFunction::EmitOMPTeamsDistributeSimdDirective(
4344 const OMPTeamsDistributeSimdDirective &S) {
4345 auto &&CodeGenDistribute = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
4346 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc());
4347 };
4348
4349 // Emit teams region as a standalone region.
4350 auto &&CodeGen = [&S, &CodeGenDistribute](CodeGenFunction &CGF,
Alexey Bataevc99042b2018-03-15 18:10:54 +00004351 PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004352 Action.Enter(CGF);
Alexey Bataev999277a2017-12-06 14:31:09 +00004353 OMPPrivateScope PrivateScope(CGF);
4354 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
4355 (void)PrivateScope.Privatize();
4356 CGF.CGM.getOpenMPRuntime().emitInlinedDirective(CGF, OMPD_simd,
4357 CodeGenDistribute);
4358 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams);
4359 };
4360 emitCommonOMPTeamsDirective(*this, S, OMPD_distribute_simd, CodeGen);
4361 emitPostUpdateForReductionClause(*this, S,
4362 [](CodeGenFunction &) { return nullptr; });
4363}
4364
Carlo Bertolli62fae152017-11-20 20:46:39 +00004365void CodeGenFunction::EmitOMPTeamsDistributeParallelForDirective(
4366 const OMPTeamsDistributeParallelForDirective &S) {
4367 auto &&CodeGenDistribute = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
4368 CGF.EmitOMPDistributeLoop(S, emitInnerParallelForWhenCombined,
4369 S.getDistInc());
4370 };
4371
4372 // Emit teams region as a standalone region.
4373 auto &&CodeGen = [&S, &CodeGenDistribute](CodeGenFunction &CGF,
Alexey Bataevc99042b2018-03-15 18:10:54 +00004374 PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004375 Action.Enter(CGF);
Carlo Bertolli62fae152017-11-20 20:46:39 +00004376 OMPPrivateScope PrivateScope(CGF);
4377 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
4378 (void)PrivateScope.Privatize();
Alexey Bataev10a54312017-11-27 16:54:08 +00004379 CGF.CGM.getOpenMPRuntime().emitInlinedDirective(CGF, OMPD_distribute,
4380 CodeGenDistribute);
Carlo Bertolli62fae152017-11-20 20:46:39 +00004381 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams);
4382 };
4383 emitCommonOMPTeamsDirective(*this, S, OMPD_distribute_parallel_for, CodeGen);
4384 emitPostUpdateForReductionClause(*this, S,
4385 [](CodeGenFunction &) { return nullptr; });
4386}
4387
Carlo Bertolli56a2aa42017-12-04 20:57:19 +00004388void CodeGenFunction::EmitOMPTeamsDistributeParallelForSimdDirective(
4389 const OMPTeamsDistributeParallelForSimdDirective &S) {
4390 auto &&CodeGenDistribute = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
4391 CGF.EmitOMPDistributeLoop(S, emitInnerParallelForWhenCombined,
4392 S.getDistInc());
4393 };
4394
4395 // Emit teams region as a standalone region.
4396 auto &&CodeGen = [&S, &CodeGenDistribute](CodeGenFunction &CGF,
Alexey Bataevc99042b2018-03-15 18:10:54 +00004397 PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004398 Action.Enter(CGF);
Carlo Bertolli56a2aa42017-12-04 20:57:19 +00004399 OMPPrivateScope PrivateScope(CGF);
4400 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
4401 (void)PrivateScope.Privatize();
4402 CGF.CGM.getOpenMPRuntime().emitInlinedDirective(
4403 CGF, OMPD_distribute, CodeGenDistribute, /*HasCancel=*/false);
4404 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams);
4405 };
4406 emitCommonOMPTeamsDirective(*this, S, OMPD_distribute_parallel_for, CodeGen);
4407 emitPostUpdateForReductionClause(*this, S,
4408 [](CodeGenFunction &) { return nullptr; });
4409}
4410
Carlo Bertolli52978c32018-01-03 21:12:44 +00004411static void emitTargetTeamsDistributeParallelForRegion(
4412 CodeGenFunction &CGF, const OMPTargetTeamsDistributeParallelForDirective &S,
4413 PrePostActionTy &Action) {
Carlo Bertolli79712092018-02-28 20:48:35 +00004414 Action.Enter(CGF);
Carlo Bertolli52978c32018-01-03 21:12:44 +00004415 auto &&CodeGenDistribute = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
4416 CGF.EmitOMPDistributeLoop(S, emitInnerParallelForWhenCombined,
4417 S.getDistInc());
4418 };
4419
4420 // Emit teams region as a standalone region.
4421 auto &&CodeGenTeams = [&S, &CodeGenDistribute](CodeGenFunction &CGF,
Alexey Bataevc99042b2018-03-15 18:10:54 +00004422 PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004423 Action.Enter(CGF);
Carlo Bertolli52978c32018-01-03 21:12:44 +00004424 CodeGenFunction::OMPPrivateScope PrivateScope(CGF);
4425 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
4426 (void)PrivateScope.Privatize();
4427 CGF.CGM.getOpenMPRuntime().emitInlinedDirective(
4428 CGF, OMPD_distribute, CodeGenDistribute, /*HasCancel=*/false);
4429 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams);
4430 };
4431
4432 emitCommonOMPTeamsDirective(CGF, S, OMPD_distribute_parallel_for,
4433 CodeGenTeams);
4434 emitPostUpdateForReductionClause(CGF, S,
4435 [](CodeGenFunction &) { return nullptr; });
4436}
4437
4438void CodeGenFunction::EmitOMPTargetTeamsDistributeParallelForDeviceFunction(
4439 CodeGenModule &CGM, StringRef ParentName,
4440 const OMPTargetTeamsDistributeParallelForDirective &S) {
4441 // Emit SPMD target teams distribute parallel for region as a standalone
4442 // region.
4443 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4444 emitTargetTeamsDistributeParallelForRegion(CGF, S, Action);
4445 };
4446 llvm::Function *Fn;
4447 llvm::Constant *Addr;
4448 // Emit target region as a standalone region.
4449 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(
4450 S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen);
4451 assert(Fn && Addr && "Target device function emission failed.");
4452}
4453
4454void CodeGenFunction::EmitOMPTargetTeamsDistributeParallelForDirective(
4455 const OMPTargetTeamsDistributeParallelForDirective &S) {
4456 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4457 emitTargetTeamsDistributeParallelForRegion(CGF, S, Action);
4458 };
4459 emitCommonOMPTargetDirective(*this, S, CodeGen);
4460}
4461
Alexey Bataev647dd842018-01-15 20:59:40 +00004462static void emitTargetTeamsDistributeParallelForSimdRegion(
4463 CodeGenFunction &CGF,
4464 const OMPTargetTeamsDistributeParallelForSimdDirective &S,
4465 PrePostActionTy &Action) {
Carlo Bertolli79712092018-02-28 20:48:35 +00004466 Action.Enter(CGF);
Alexey Bataev647dd842018-01-15 20:59:40 +00004467 auto &&CodeGenDistribute = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
4468 CGF.EmitOMPDistributeLoop(S, emitInnerParallelForWhenCombined,
4469 S.getDistInc());
4470 };
4471
4472 // Emit teams region as a standalone region.
4473 auto &&CodeGenTeams = [&S, &CodeGenDistribute](CodeGenFunction &CGF,
Alexey Bataevc99042b2018-03-15 18:10:54 +00004474 PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004475 Action.Enter(CGF);
Alexey Bataev647dd842018-01-15 20:59:40 +00004476 CodeGenFunction::OMPPrivateScope PrivateScope(CGF);
4477 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
4478 (void)PrivateScope.Privatize();
4479 CGF.CGM.getOpenMPRuntime().emitInlinedDirective(
4480 CGF, OMPD_distribute, CodeGenDistribute, /*HasCancel=*/false);
4481 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams);
4482 };
4483
4484 emitCommonOMPTeamsDirective(CGF, S, OMPD_distribute_parallel_for_simd,
4485 CodeGenTeams);
4486 emitPostUpdateForReductionClause(CGF, S,
4487 [](CodeGenFunction &) { return nullptr; });
4488}
4489
4490void CodeGenFunction::EmitOMPTargetTeamsDistributeParallelForSimdDeviceFunction(
4491 CodeGenModule &CGM, StringRef ParentName,
4492 const OMPTargetTeamsDistributeParallelForSimdDirective &S) {
4493 // Emit SPMD target teams distribute parallel for simd region as a standalone
4494 // region.
4495 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4496 emitTargetTeamsDistributeParallelForSimdRegion(CGF, S, Action);
4497 };
4498 llvm::Function *Fn;
4499 llvm::Constant *Addr;
4500 // Emit target region as a standalone region.
4501 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(
4502 S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen);
4503 assert(Fn && Addr && "Target device function emission failed.");
4504}
4505
4506void CodeGenFunction::EmitOMPTargetTeamsDistributeParallelForSimdDirective(
4507 const OMPTargetTeamsDistributeParallelForSimdDirective &S) {
4508 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4509 emitTargetTeamsDistributeParallelForSimdRegion(CGF, S, Action);
4510 };
4511 emitCommonOMPTargetDirective(*this, S, CodeGen);
4512}
4513
Alexey Bataev6d4ed052015-07-01 06:57:41 +00004514void CodeGenFunction::EmitOMPCancellationPointDirective(
4515 const OMPCancellationPointDirective &S) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004516 CGM.getOpenMPRuntime().emitCancellationPointCall(*this, S.getBeginLoc(),
Alexey Bataev0f34da12015-07-02 04:17:07 +00004517 S.getCancelRegion());
Alexey Bataev6d4ed052015-07-01 06:57:41 +00004518}
4519
Alexey Bataev80909872015-07-02 11:25:17 +00004520void CodeGenFunction::EmitOMPCancelDirective(const OMPCancelDirective &S) {
Alexey Bataev87933c72015-09-18 08:07:34 +00004521 const Expr *IfCond = nullptr;
4522 for (const auto *C : S.getClausesOfKind<OMPIfClause>()) {
4523 if (C->getNameModifier() == OMPD_unknown ||
4524 C->getNameModifier() == OMPD_cancel) {
4525 IfCond = C->getCondition();
4526 break;
4527 }
4528 }
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004529 CGM.getOpenMPRuntime().emitCancelCall(*this, S.getBeginLoc(), IfCond,
Alexey Bataev7d5d33e2015-07-06 05:50:32 +00004530 S.getCancelRegion());
Alexey Bataev80909872015-07-02 11:25:17 +00004531}
4532
Alexey Bataev81c7ea02015-07-03 09:56:58 +00004533CodeGenFunction::JumpDest
4534CodeGenFunction::getOMPCancelDestination(OpenMPDirectiveKind Kind) {
Alexey Bataev957d8562016-11-17 15:12:05 +00004535 if (Kind == OMPD_parallel || Kind == OMPD_task ||
4536 Kind == OMPD_target_parallel)
Alexey Bataev81c7ea02015-07-03 09:56:58 +00004537 return ReturnBlock;
Alexey Bataev25e5b442015-09-15 12:52:43 +00004538 assert(Kind == OMPD_for || Kind == OMPD_section || Kind == OMPD_sections ||
Alexey Bataev957d8562016-11-17 15:12:05 +00004539 Kind == OMPD_parallel_sections || Kind == OMPD_parallel_for ||
4540 Kind == OMPD_distribute_parallel_for ||
Alexey Bataevdcb4b8fb2017-11-22 20:19:50 +00004541 Kind == OMPD_target_parallel_for ||
Alexey Bataev16e79882017-11-22 21:12:03 +00004542 Kind == OMPD_teams_distribute_parallel_for ||
4543 Kind == OMPD_target_teams_distribute_parallel_for);
Alexey Bataev957d8562016-11-17 15:12:05 +00004544 return OMPCancelStack.getExitBlock();
Alexey Bataev81c7ea02015-07-03 09:56:58 +00004545}
Michael Wong65f367f2015-07-21 13:44:28 +00004546
Samuel Antaocc10b852016-07-28 14:23:26 +00004547void CodeGenFunction::EmitOMPUseDevicePtrClause(
4548 const OMPClause &NC, OMPPrivateScope &PrivateScope,
4549 const llvm::DenseMap<const ValueDecl *, Address> &CaptureDeviceAddrMap) {
4550 const auto &C = cast<OMPUseDevicePtrClause>(NC);
4551 auto OrigVarIt = C.varlist_begin();
4552 auto InitIt = C.inits().begin();
Alexey Bataevddf3db92018-04-13 17:31:06 +00004553 for (const Expr *PvtVarIt : C.private_copies()) {
4554 const auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*OrigVarIt)->getDecl());
4555 const auto *InitVD = cast<VarDecl>(cast<DeclRefExpr>(*InitIt)->getDecl());
4556 const auto *PvtVD = cast<VarDecl>(cast<DeclRefExpr>(PvtVarIt)->getDecl());
Samuel Antaocc10b852016-07-28 14:23:26 +00004557
4558 // In order to identify the right initializer we need to match the
4559 // declaration used by the mapping logic. In some cases we may get
4560 // OMPCapturedExprDecl that refers to the original declaration.
4561 const ValueDecl *MatchingVD = OrigVD;
Alexey Bataevddf3db92018-04-13 17:31:06 +00004562 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(MatchingVD)) {
Samuel Antaocc10b852016-07-28 14:23:26 +00004563 // OMPCapturedExprDecl are used to privative fields of the current
4564 // structure.
Alexey Bataevddf3db92018-04-13 17:31:06 +00004565 const auto *ME = cast<MemberExpr>(OED->getInit());
Samuel Antaocc10b852016-07-28 14:23:26 +00004566 assert(isa<CXXThisExpr>(ME->getBase()) &&
4567 "Base should be the current struct!");
4568 MatchingVD = ME->getMemberDecl();
4569 }
4570
4571 // If we don't have information about the current list item, move on to
4572 // the next one.
4573 auto InitAddrIt = CaptureDeviceAddrMap.find(MatchingVD);
4574 if (InitAddrIt == CaptureDeviceAddrMap.end())
4575 continue;
4576
Alexey Bataevddf3db92018-04-13 17:31:06 +00004577 bool IsRegistered = PrivateScope.addPrivate(OrigVD, [this, OrigVD,
4578 InitAddrIt, InitVD,
4579 PvtVD]() {
Samuel Antaocc10b852016-07-28 14:23:26 +00004580 // Initialize the temporary initialization variable with the address we
4581 // get from the runtime library. We have to cast the source address
4582 // because it is always a void *. References are materialized in the
4583 // privatization scope, so the initialization here disregards the fact
4584 // the original variable is a reference.
4585 QualType AddrQTy =
4586 getContext().getPointerType(OrigVD->getType().getNonReferenceType());
4587 llvm::Type *AddrTy = ConvertTypeForMem(AddrQTy);
4588 Address InitAddr = Builder.CreateBitCast(InitAddrIt->second, AddrTy);
4589 setAddrOfLocalVar(InitVD, InitAddr);
4590
4591 // Emit private declaration, it will be initialized by the value we
4592 // declaration we just added to the local declarations map.
4593 EmitDecl(*PvtVD);
4594
4595 // The initialization variables reached its purpose in the emission
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00004596 // of the previous declaration, so we don't need it anymore.
Samuel Antaocc10b852016-07-28 14:23:26 +00004597 LocalDeclMap.erase(InitVD);
4598
4599 // Return the address of the private variable.
4600 return GetAddrOfLocalVar(PvtVD);
4601 });
4602 assert(IsRegistered && "firstprivate var already registered as private");
4603 // Silence the warning about unused variable.
4604 (void)IsRegistered;
4605
4606 ++OrigVarIt;
4607 ++InitIt;
4608 }
4609}
4610
Michael Wong65f367f2015-07-21 13:44:28 +00004611// Generate the instructions for '#pragma omp target data' directive.
4612void CodeGenFunction::EmitOMPTargetDataDirective(
4613 const OMPTargetDataDirective &S) {
Samuel Antaocc10b852016-07-28 14:23:26 +00004614 CGOpenMPRuntime::TargetDataInfo Info(/*RequiresDevicePointerInfo=*/true);
4615
4616 // Create a pre/post action to signal the privatization of the device pointer.
4617 // This action can be replaced by the OpenMP runtime code generation to
4618 // deactivate privatization.
4619 bool PrivatizeDevicePointers = false;
4620 class DevicePointerPrivActionTy : public PrePostActionTy {
4621 bool &PrivatizeDevicePointers;
4622
4623 public:
4624 explicit DevicePointerPrivActionTy(bool &PrivatizeDevicePointers)
4625 : PrePostActionTy(), PrivatizeDevicePointers(PrivatizeDevicePointers) {}
4626 void Enter(CodeGenFunction &CGF) override {
4627 PrivatizeDevicePointers = true;
4628 }
Samuel Antaodf158d52016-04-27 22:58:19 +00004629 };
Samuel Antaocc10b852016-07-28 14:23:26 +00004630 DevicePointerPrivActionTy PrivAction(PrivatizeDevicePointers);
4631
4632 auto &&CodeGen = [&S, &Info, &PrivatizeDevicePointers](
Alexey Bataev475a7442018-01-12 19:39:11 +00004633 CodeGenFunction &CGF, PrePostActionTy &Action) {
Samuel Antaocc10b852016-07-28 14:23:26 +00004634 auto &&InnermostCodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) {
Alexey Bataev475a7442018-01-12 19:39:11 +00004635 CGF.EmitStmt(S.getInnermostCapturedStmt()->getCapturedStmt());
Samuel Antaocc10b852016-07-28 14:23:26 +00004636 };
4637
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00004638 // Codegen that selects whether to generate the privatization code or not.
Samuel Antaocc10b852016-07-28 14:23:26 +00004639 auto &&PrivCodeGen = [&S, &Info, &PrivatizeDevicePointers,
4640 &InnermostCodeGen](CodeGenFunction &CGF,
4641 PrePostActionTy &Action) {
4642 RegionCodeGenTy RCG(InnermostCodeGen);
4643 PrivatizeDevicePointers = false;
4644
4645 // Call the pre-action to change the status of PrivatizeDevicePointers if
4646 // needed.
4647 Action.Enter(CGF);
4648
4649 if (PrivatizeDevicePointers) {
4650 OMPPrivateScope PrivateScope(CGF);
4651 // Emit all instances of the use_device_ptr clause.
4652 for (const auto *C : S.getClausesOfKind<OMPUseDevicePtrClause>())
4653 CGF.EmitOMPUseDevicePtrClause(*C, PrivateScope,
4654 Info.CaptureDeviceAddrMap);
4655 (void)PrivateScope.Privatize();
4656 RCG(CGF);
Alexey Bataevddf3db92018-04-13 17:31:06 +00004657 } else {
Samuel Antaocc10b852016-07-28 14:23:26 +00004658 RCG(CGF);
Alexey Bataevddf3db92018-04-13 17:31:06 +00004659 }
Samuel Antaocc10b852016-07-28 14:23:26 +00004660 };
4661
4662 // Forward the provided action to the privatization codegen.
4663 RegionCodeGenTy PrivRCG(PrivCodeGen);
4664 PrivRCG.setAction(Action);
4665
4666 // Notwithstanding the body of the region is emitted as inlined directive,
4667 // we don't use an inline scope as changes in the references inside the
4668 // region are expected to be visible outside, so we do not privative them.
4669 OMPLexicalScope Scope(CGF, S);
4670 CGF.CGM.getOpenMPRuntime().emitInlinedDirective(CGF, OMPD_target_data,
4671 PrivRCG);
4672 };
4673
4674 RegionCodeGenTy RCG(CodeGen);
Samuel Antaodf158d52016-04-27 22:58:19 +00004675
4676 // If we don't have target devices, don't bother emitting the data mapping
4677 // code.
4678 if (CGM.getLangOpts().OMPTargetTriples.empty()) {
Samuel Antaocc10b852016-07-28 14:23:26 +00004679 RCG(*this);
Samuel Antaodf158d52016-04-27 22:58:19 +00004680 return;
4681 }
4682
4683 // Check if we have any if clause associated with the directive.
4684 const Expr *IfCond = nullptr;
Alexey Bataevddf3db92018-04-13 17:31:06 +00004685 if (const auto *C = S.getSingleClause<OMPIfClause>())
Samuel Antaodf158d52016-04-27 22:58:19 +00004686 IfCond = C->getCondition();
4687
4688 // Check if we have any device clause associated with the directive.
4689 const Expr *Device = nullptr;
Alexey Bataevddf3db92018-04-13 17:31:06 +00004690 if (const auto *C = S.getSingleClause<OMPDeviceClause>())
Samuel Antaodf158d52016-04-27 22:58:19 +00004691 Device = C->getDevice();
4692
Samuel Antaocc10b852016-07-28 14:23:26 +00004693 // Set the action to signal privatization of device pointers.
4694 RCG.setAction(PrivAction);
4695
4696 // Emit region code.
4697 CGM.getOpenMPRuntime().emitTargetDataCalls(*this, S, IfCond, Device, RCG,
4698 Info);
Michael Wong65f367f2015-07-21 13:44:28 +00004699}
Alexey Bataev49f6e782015-12-01 04:18:41 +00004700
Samuel Antaodf67fc42016-01-19 19:15:56 +00004701void CodeGenFunction::EmitOMPTargetEnterDataDirective(
4702 const OMPTargetEnterDataDirective &S) {
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00004703 // If we don't have target devices, don't bother emitting the data mapping
4704 // code.
4705 if (CGM.getLangOpts().OMPTargetTriples.empty())
4706 return;
4707
4708 // Check if we have any if clause associated with the directive.
4709 const Expr *IfCond = nullptr;
Alexey Bataevddf3db92018-04-13 17:31:06 +00004710 if (const auto *C = S.getSingleClause<OMPIfClause>())
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00004711 IfCond = C->getCondition();
4712
4713 // Check if we have any device clause associated with the directive.
4714 const Expr *Device = nullptr;
Alexey Bataevddf3db92018-04-13 17:31:06 +00004715 if (const auto *C = S.getSingleClause<OMPDeviceClause>())
Samuel Antaobd0ae2e2016-04-27 23:07:29 +00004716 Device = C->getDevice();
4717
Alexey Bataev475a7442018-01-12 19:39:11 +00004718 OMPLexicalScope Scope(*this, S, OMPD_task);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00004719 CGM.getOpenMPRuntime().emitTargetDataStandAloneCall(*this, S, IfCond, Device);
Samuel Antaodf67fc42016-01-19 19:15:56 +00004720}
4721
Samuel Antao72590762016-01-19 20:04:50 +00004722void CodeGenFunction::EmitOMPTargetExitDataDirective(
4723 const OMPTargetExitDataDirective &S) {
Samuel Antao8dd66282016-04-27 23:14:30 +00004724 // If we don't have target devices, don't bother emitting the data mapping
4725 // code.
4726 if (CGM.getLangOpts().OMPTargetTriples.empty())
4727 return;
4728
4729 // Check if we have any if clause associated with the directive.
4730 const Expr *IfCond = nullptr;
Alexey Bataevddf3db92018-04-13 17:31:06 +00004731 if (const auto *C = S.getSingleClause<OMPIfClause>())
Samuel Antao8dd66282016-04-27 23:14:30 +00004732 IfCond = C->getCondition();
4733
4734 // Check if we have any device clause associated with the directive.
4735 const Expr *Device = nullptr;
Alexey Bataevddf3db92018-04-13 17:31:06 +00004736 if (const auto *C = S.getSingleClause<OMPDeviceClause>())
Samuel Antao8dd66282016-04-27 23:14:30 +00004737 Device = C->getDevice();
4738
Alexey Bataev475a7442018-01-12 19:39:11 +00004739 OMPLexicalScope Scope(*this, S, OMPD_task);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00004740 CGM.getOpenMPRuntime().emitTargetDataStandAloneCall(*this, S, IfCond, Device);
Samuel Antao72590762016-01-19 20:04:50 +00004741}
4742
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00004743static void emitTargetParallelRegion(CodeGenFunction &CGF,
4744 const OMPTargetParallelDirective &S,
4745 PrePostActionTy &Action) {
4746 // Get the captured statement associated with the 'parallel' region.
Alexey Bataevddf3db92018-04-13 17:31:06 +00004747 const CapturedStmt *CS = S.getCapturedStmt(OMPD_parallel);
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00004748 Action.Enter(CGF);
Alexey Bataevc99042b2018-03-15 18:10:54 +00004749 auto &&CodeGen = [&S, CS](CodeGenFunction &CGF, PrePostActionTy &Action) {
Alexey Bataev63cc8e92018-03-20 14:45:59 +00004750 Action.Enter(CGF);
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00004751 CodeGenFunction::OMPPrivateScope PrivateScope(CGF);
4752 (void)CGF.EmitOMPFirstprivateClause(S, PrivateScope);
4753 CGF.EmitOMPPrivateClause(S, PrivateScope);
4754 CGF.EmitOMPReductionClauseInit(S, PrivateScope);
4755 (void)PrivateScope.Privatize();
Alexey Bataev60705422018-10-30 15:50:12 +00004756 if (isOpenMPTargetExecutionDirective(S.getDirectiveKind()))
4757 CGF.CGM.getOpenMPRuntime().adjustTargetSpecificDataForLambdas(CGF, S);
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00004758 // TODO: Add support for clauses.
4759 CGF.EmitStmt(CS->getCapturedStmt());
Arpith Chacko Jacob101e8fb2017-02-16 16:20:16 +00004760 CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_parallel);
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00004761 };
Carlo Bertollib0ff0a62017-04-25 17:52:12 +00004762 emitCommonOMPParallelDirective(CGF, S, OMPD_parallel, CodeGen,
4763 emitEmptyBoundParameters);
Alexey Bataevddf3db92018-04-13 17:31:06 +00004764 emitPostUpdateForReductionClause(CGF, S,
4765 [](CodeGenFunction &) { return nullptr; });
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00004766}
4767
4768void CodeGenFunction::EmitOMPTargetParallelDeviceFunction(
4769 CodeGenModule &CGM, StringRef ParentName,
4770 const OMPTargetParallelDirective &S) {
4771 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4772 emitTargetParallelRegion(CGF, S, Action);
4773 };
4774 llvm::Function *Fn;
4775 llvm::Constant *Addr;
4776 // Emit target region as a standalone region.
4777 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(
4778 S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen);
4779 assert(Fn && Addr && "Target device function emission failed.");
4780}
4781
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00004782void CodeGenFunction::EmitOMPTargetParallelDirective(
4783 const OMPTargetParallelDirective &S) {
Arpith Chacko Jacob19b911c2017-01-18 18:18:53 +00004784 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4785 emitTargetParallelRegion(CGF, S, Action);
4786 };
4787 emitCommonOMPTargetDirective(*this, S, CodeGen);
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +00004788}
4789
Alexey Bataevfb0ebec2017-11-08 20:16:14 +00004790static void emitTargetParallelForRegion(CodeGenFunction &CGF,
4791 const OMPTargetParallelForDirective &S,
4792 PrePostActionTy &Action) {
4793 Action.Enter(CGF);
4794 // Emit directive as a combined directive that consists of two implicit
4795 // directives: 'parallel' with 'for' directive.
Alexey Bataevc99042b2018-03-15 18:10:54 +00004796 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4797 Action.Enter(CGF);
Alexey Bataev2139ed62017-11-16 18:20:21 +00004798 CodeGenFunction::OMPCancelStackRAII CancelRegion(
4799 CGF, OMPD_target_parallel_for, S.hasCancel());
Alexey Bataevfb0ebec2017-11-08 20:16:14 +00004800 CGF.EmitOMPWorksharingLoop(S, S.getEnsureUpperBound(), emitForLoopBounds,
4801 emitDispatchForLoopBounds);
4802 };
4803 emitCommonOMPParallelDirective(CGF, S, OMPD_for, CodeGen,
4804 emitEmptyBoundParameters);
4805}
4806
4807void CodeGenFunction::EmitOMPTargetParallelForDeviceFunction(
4808 CodeGenModule &CGM, StringRef ParentName,
4809 const OMPTargetParallelForDirective &S) {
4810 // Emit SPMD target parallel for region as a standalone region.
4811 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4812 emitTargetParallelForRegion(CGF, S, Action);
4813 };
4814 llvm::Function *Fn;
4815 llvm::Constant *Addr;
4816 // Emit target region as a standalone region.
4817 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(
4818 S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen);
4819 assert(Fn && Addr && "Target device function emission failed.");
4820}
4821
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00004822void CodeGenFunction::EmitOMPTargetParallelForDirective(
4823 const OMPTargetParallelForDirective &S) {
Alexey Bataevfb0ebec2017-11-08 20:16:14 +00004824 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4825 emitTargetParallelForRegion(CGF, S, Action);
4826 };
4827 emitCommonOMPTargetDirective(*this, S, CodeGen);
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +00004828}
4829
Alexey Bataev5d7edca2017-11-09 17:32:15 +00004830static void
4831emitTargetParallelForSimdRegion(CodeGenFunction &CGF,
4832 const OMPTargetParallelForSimdDirective &S,
4833 PrePostActionTy &Action) {
4834 Action.Enter(CGF);
4835 // Emit directive as a combined directive that consists of two implicit
4836 // directives: 'parallel' with 'for' directive.
Alexey Bataevc99042b2018-03-15 18:10:54 +00004837 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4838 Action.Enter(CGF);
Alexey Bataev5d7edca2017-11-09 17:32:15 +00004839 CGF.EmitOMPWorksharingLoop(S, S.getEnsureUpperBound(), emitForLoopBounds,
4840 emitDispatchForLoopBounds);
4841 };
4842 emitCommonOMPParallelDirective(CGF, S, OMPD_simd, CodeGen,
4843 emitEmptyBoundParameters);
4844}
4845
4846void CodeGenFunction::EmitOMPTargetParallelForSimdDeviceFunction(
4847 CodeGenModule &CGM, StringRef ParentName,
4848 const OMPTargetParallelForSimdDirective &S) {
4849 // Emit SPMD target parallel for region as a standalone region.
4850 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4851 emitTargetParallelForSimdRegion(CGF, S, Action);
4852 };
4853 llvm::Function *Fn;
4854 llvm::Constant *Addr;
4855 // Emit target region as a standalone region.
4856 CGM.getOpenMPRuntime().emitTargetOutlinedFunction(
4857 S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen);
4858 assert(Fn && Addr && "Target device function emission failed.");
4859}
4860
4861void CodeGenFunction::EmitOMPTargetParallelForSimdDirective(
4862 const OMPTargetParallelForSimdDirective &S) {
4863 auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) {
4864 emitTargetParallelForSimdRegion(CGF, S, Action);
4865 };
4866 emitCommonOMPTargetDirective(*this, S, CodeGen);
4867}
4868
Alexey Bataev7292c292016-04-25 12:22:29 +00004869/// Emit a helper variable and return corresponding lvalue.
4870static void mapParam(CodeGenFunction &CGF, const DeclRefExpr *Helper,
4871 const ImplicitParamDecl *PVD,
4872 CodeGenFunction::OMPPrivateScope &Privates) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00004873 const auto *VDecl = cast<VarDecl>(Helper->getDecl());
4874 Privates.addPrivate(VDecl,
4875 [&CGF, PVD]() { return CGF.GetAddrOfLocalVar(PVD); });
Alexey Bataev7292c292016-04-25 12:22:29 +00004876}
4877
4878void CodeGenFunction::EmitOMPTaskLoopBasedDirective(const OMPLoopDirective &S) {
4879 assert(isOpenMPTaskLoopDirective(S.getDirectiveKind()));
4880 // Emit outlined function for task construct.
Alexey Bataev475a7442018-01-12 19:39:11 +00004881 const CapturedStmt *CS = S.getCapturedStmt(OMPD_taskloop);
Alexey Bataevddf3db92018-04-13 17:31:06 +00004882 Address CapturedStruct = GenerateCapturedStmtArgument(*CS);
4883 QualType SharedsTy = getContext().getRecordType(CS->getCapturedRecordDecl());
Alexey Bataev7292c292016-04-25 12:22:29 +00004884 const Expr *IfCond = nullptr;
4885 for (const auto *C : S.getClausesOfKind<OMPIfClause>()) {
4886 if (C->getNameModifier() == OMPD_unknown ||
4887 C->getNameModifier() == OMPD_taskloop) {
4888 IfCond = C->getCondition();
4889 break;
4890 }
4891 }
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004892
4893 OMPTaskDataTy Data;
4894 // Check if taskloop must be emitted without taskgroup.
4895 Data.Nogroup = S.getSingleClause<OMPNogroupClause>();
Alexey Bataev7292c292016-04-25 12:22:29 +00004896 // TODO: Check if we should emit tied or untied task.
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004897 Data.Tied = true;
4898 // Set scheduling for taskloop
Alexey Bataev2b19a6f2016-04-28 09:15:06 +00004899 if (const auto* Clause = S.getSingleClause<OMPGrainsizeClause>()) {
4900 // grainsize clause
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004901 Data.Schedule.setInt(/*IntVal=*/false);
4902 Data.Schedule.setPointer(EmitScalarExpr(Clause->getGrainsize()));
Alexey Bataev2b19a6f2016-04-28 09:15:06 +00004903 } else if (const auto* Clause = S.getSingleClause<OMPNumTasksClause>()) {
4904 // num_tasks clause
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004905 Data.Schedule.setInt(/*IntVal=*/true);
4906 Data.Schedule.setPointer(EmitScalarExpr(Clause->getNumTasks()));
Alexey Bataev2b19a6f2016-04-28 09:15:06 +00004907 }
Alexey Bataev7292c292016-04-25 12:22:29 +00004908
4909 auto &&BodyGen = [CS, &S](CodeGenFunction &CGF, PrePostActionTy &) {
4910 // if (PreCond) {
4911 // for (IV in 0..LastIteration) BODY;
4912 // <Final counter/linear vars updates>;
4913 // }
4914 //
4915
4916 // Emit: if (PreCond) - begin.
4917 // If the condition constant folds and can be elided, avoid emitting the
4918 // whole loop.
4919 bool CondConstant;
4920 llvm::BasicBlock *ContBlock = nullptr;
4921 OMPLoopScope PreInitScope(CGF, S);
4922 if (CGF.ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) {
4923 if (!CondConstant)
4924 return;
4925 } else {
Alexey Bataevddf3db92018-04-13 17:31:06 +00004926 llvm::BasicBlock *ThenBlock = CGF.createBasicBlock("taskloop.if.then");
Alexey Bataev7292c292016-04-25 12:22:29 +00004927 ContBlock = CGF.createBasicBlock("taskloop.if.end");
4928 emitPreCond(CGF, S, S.getPreCond(), ThenBlock, ContBlock,
4929 CGF.getProfileCount(&S));
4930 CGF.EmitBlock(ThenBlock);
4931 CGF.incrementProfileCounter(&S);
4932 }
4933
Alexey Bataev1e73ef32016-04-28 12:14:51 +00004934 if (isOpenMPSimdDirective(S.getDirectiveKind()))
4935 CGF.EmitOMPSimdInit(S);
4936
Alexey Bataev7292c292016-04-25 12:22:29 +00004937 OMPPrivateScope LoopScope(CGF);
4938 // Emit helper vars inits.
4939 enum { LowerBound = 5, UpperBound, Stride, LastIter };
4940 auto *I = CS->getCapturedDecl()->param_begin();
4941 auto *LBP = std::next(I, LowerBound);
4942 auto *UBP = std::next(I, UpperBound);
4943 auto *STP = std::next(I, Stride);
4944 auto *LIP = std::next(I, LastIter);
4945 mapParam(CGF, cast<DeclRefExpr>(S.getLowerBoundVariable()), *LBP,
4946 LoopScope);
4947 mapParam(CGF, cast<DeclRefExpr>(S.getUpperBoundVariable()), *UBP,
4948 LoopScope);
4949 mapParam(CGF, cast<DeclRefExpr>(S.getStrideVariable()), *STP, LoopScope);
4950 mapParam(CGF, cast<DeclRefExpr>(S.getIsLastIterVariable()), *LIP,
4951 LoopScope);
4952 CGF.EmitOMPPrivateLoopCounters(S, LoopScope);
Alexey Bataevf93095a2016-05-05 08:46:22 +00004953 bool HasLastprivateClause = CGF.EmitOMPLastprivateClauseInit(S, LoopScope);
Alexey Bataev7292c292016-04-25 12:22:29 +00004954 (void)LoopScope.Privatize();
4955 // Emit the loop iteration variable.
4956 const Expr *IVExpr = S.getIterationVariable();
Alexey Bataevddf3db92018-04-13 17:31:06 +00004957 const auto *IVDecl = cast<VarDecl>(cast<DeclRefExpr>(IVExpr)->getDecl());
Alexey Bataev7292c292016-04-25 12:22:29 +00004958 CGF.EmitVarDecl(*IVDecl);
4959 CGF.EmitIgnoredExpr(S.getInit());
4960
4961 // Emit the iterations count variable.
4962 // If it is not a variable, Sema decided to calculate iterations count on
4963 // each iteration (e.g., it is foldable into a constant).
Alexey Bataevddf3db92018-04-13 17:31:06 +00004964 if (const auto *LIExpr = dyn_cast<DeclRefExpr>(S.getLastIteration())) {
Alexey Bataev7292c292016-04-25 12:22:29 +00004965 CGF.EmitVarDecl(*cast<VarDecl>(LIExpr->getDecl()));
4966 // Emit calculation of the iterations count.
4967 CGF.EmitIgnoredExpr(S.getCalcLastIteration());
4968 }
4969
4970 CGF.EmitOMPInnerLoop(S, LoopScope.requiresCleanups(), S.getCond(),
4971 S.getInc(),
4972 [&S](CodeGenFunction &CGF) {
4973 CGF.EmitOMPLoopBody(S, JumpDest());
4974 CGF.EmitStopPoint(&S);
4975 },
4976 [](CodeGenFunction &) {});
4977 // Emit: if (PreCond) - end.
4978 if (ContBlock) {
4979 CGF.EmitBranch(ContBlock);
4980 CGF.EmitBlock(ContBlock, true);
4981 }
Alexey Bataevf93095a2016-05-05 08:46:22 +00004982 // Emit final copy of the lastprivate variables if IsLastIter != 0.
4983 if (HasLastprivateClause) {
4984 CGF.EmitOMPLastprivateClauseFinal(
4985 S, isOpenMPSimdDirective(S.getDirectiveKind()),
4986 CGF.Builder.CreateIsNotNull(CGF.EmitLoadOfScalar(
4987 CGF.GetAddrOfLocalVar(*LIP), /*Volatile=*/false,
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004988 (*LIP)->getType(), S.getBeginLoc())));
Alexey Bataevf93095a2016-05-05 08:46:22 +00004989 }
Alexey Bataev7292c292016-04-25 12:22:29 +00004990 };
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004991 auto &&TaskGen = [&S, SharedsTy, CapturedStruct,
James Y Knight9871db02019-02-05 16:42:33 +00004992 IfCond](CodeGenFunction &CGF, llvm::Function *OutlinedFn,
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004993 const OMPTaskDataTy &Data) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00004994 auto &&CodeGen = [&S, OutlinedFn, SharedsTy, CapturedStruct, IfCond,
4995 &Data](CodeGenFunction &CGF, PrePostActionTy &) {
Alexey Bataev7292c292016-04-25 12:22:29 +00004996 OMPLoopScope PreInitScope(CGF, S);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004997 CGF.CGM.getOpenMPRuntime().emitTaskLoopCall(CGF, S.getBeginLoc(), S,
Alexey Bataev24b5bae2016-04-28 09:23:51 +00004998 OutlinedFn, SharedsTy,
4999 CapturedStruct, IfCond, Data);
Alexey Bataev7292c292016-04-25 12:22:29 +00005000 };
5001 CGF.CGM.getOpenMPRuntime().emitInlinedDirective(CGF, OMPD_taskloop,
5002 CodeGen);
5003 };
Alexey Bataev475a7442018-01-12 19:39:11 +00005004 if (Data.Nogroup) {
5005 EmitOMPTaskBasedDirective(S, OMPD_taskloop, BodyGen, TaskGen, Data);
5006 } else {
Alexey Bataev33446032017-07-12 18:09:32 +00005007 CGM.getOpenMPRuntime().emitTaskgroupRegion(
5008 *this,
5009 [&S, &BodyGen, &TaskGen, &Data](CodeGenFunction &CGF,
5010 PrePostActionTy &Action) {
5011 Action.Enter(CGF);
Alexey Bataev475a7442018-01-12 19:39:11 +00005012 CGF.EmitOMPTaskBasedDirective(S, OMPD_taskloop, BodyGen, TaskGen,
5013 Data);
Alexey Bataev33446032017-07-12 18:09:32 +00005014 },
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005015 S.getBeginLoc());
Alexey Bataev33446032017-07-12 18:09:32 +00005016 }
Alexey Bataev7292c292016-04-25 12:22:29 +00005017}
5018
Alexey Bataev49f6e782015-12-01 04:18:41 +00005019void CodeGenFunction::EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S) {
Alexey Bataev7292c292016-04-25 12:22:29 +00005020 EmitOMPTaskLoopBasedDirective(S);
Alexey Bataev49f6e782015-12-01 04:18:41 +00005021}
5022
Alexey Bataev0a6ed842015-12-03 09:40:15 +00005023void CodeGenFunction::EmitOMPTaskLoopSimdDirective(
5024 const OMPTaskLoopSimdDirective &S) {
Alexey Bataev1e73ef32016-04-28 12:14:51 +00005025 EmitOMPTaskLoopBasedDirective(S);
Alexey Bataev0a6ed842015-12-03 09:40:15 +00005026}
Samuel Antao686c70c2016-05-26 17:30:50 +00005027
5028// Generate the instructions for '#pragma omp target update' directive.
5029void CodeGenFunction::EmitOMPTargetUpdateDirective(
5030 const OMPTargetUpdateDirective &S) {
Samuel Antao8d2d7302016-05-26 18:30:22 +00005031 // If we don't have target devices, don't bother emitting the data mapping
5032 // code.
5033 if (CGM.getLangOpts().OMPTargetTriples.empty())
5034 return;
5035
5036 // Check if we have any if clause associated with the directive.
5037 const Expr *IfCond = nullptr;
Alexey Bataevddf3db92018-04-13 17:31:06 +00005038 if (const auto *C = S.getSingleClause<OMPIfClause>())
Samuel Antao8d2d7302016-05-26 18:30:22 +00005039 IfCond = C->getCondition();
5040
5041 // Check if we have any device clause associated with the directive.
5042 const Expr *Device = nullptr;
Alexey Bataevddf3db92018-04-13 17:31:06 +00005043 if (const auto *C = S.getSingleClause<OMPDeviceClause>())
Samuel Antao8d2d7302016-05-26 18:30:22 +00005044 Device = C->getDevice();
5045
Alexey Bataev475a7442018-01-12 19:39:11 +00005046 OMPLexicalScope Scope(*this, S, OMPD_task);
Alexey Bataevd2202ca2017-12-27 17:58:32 +00005047 CGM.getOpenMPRuntime().emitTargetDataStandAloneCall(*this, S, IfCond, Device);
Samuel Antao686c70c2016-05-26 17:30:50 +00005048}
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00005049
5050void CodeGenFunction::EmitSimpleOMPExecutableDirective(
5051 const OMPExecutableDirective &D) {
5052 if (!D.hasAssociatedStmt() || !D.getAssociatedStmt())
5053 return;
5054 auto &&CodeGen = [&D](CodeGenFunction &CGF, PrePostActionTy &Action) {
5055 if (isOpenMPSimdDirective(D.getDirectiveKind())) {
5056 emitOMPSimdRegion(CGF, cast<OMPLoopDirective>(D), Action);
5057 } else {
Alexey Bataev6ab5bb12018-10-29 15:01:58 +00005058 OMPPrivateScope LoopGlobals(CGF);
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00005059 if (const auto *LD = dyn_cast<OMPLoopDirective>(&D)) {
Alexey Bataevddf3db92018-04-13 17:31:06 +00005060 for (const Expr *E : LD->counters()) {
Alexey Bataev6ab5bb12018-10-29 15:01:58 +00005061 const auto *VD = dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl());
5062 if (!VD->hasLocalStorage() && !CGF.LocalDeclMap.count(VD)) {
5063 LValue GlobLVal = CGF.EmitLValue(E);
5064 LoopGlobals.addPrivate(
5065 VD, [&GlobLVal]() { return GlobLVal.getAddress(); });
5066 }
Bjorn Pettersson6c2d83b2018-10-30 08:49:26 +00005067 if (isa<OMPCapturedExprDecl>(VD)) {
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00005068 // Emit only those that were not explicitly referenced in clauses.
5069 if (!CGF.LocalDeclMap.count(VD))
5070 CGF.EmitVarDecl(*VD);
5071 }
5072 }
Alexey Bataevf138fda2018-08-13 19:04:24 +00005073 for (const auto *C : D.getClausesOfKind<OMPOrderedClause>()) {
5074 if (!C->getNumForLoops())
5075 continue;
5076 for (unsigned I = LD->getCollapsedNumber(),
5077 E = C->getLoopNumIterations().size();
5078 I < E; ++I) {
5079 if (const auto *VD = dyn_cast<OMPCapturedExprDecl>(
Mike Rice0ed46662018-09-20 17:19:41 +00005080 cast<DeclRefExpr>(C->getLoopCounter(I))->getDecl())) {
Alexey Bataevf138fda2018-08-13 19:04:24 +00005081 // Emit only those that were not explicitly referenced in clauses.
5082 if (!CGF.LocalDeclMap.count(VD))
5083 CGF.EmitVarDecl(*VD);
5084 }
5085 }
5086 }
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00005087 }
Alexey Bataev6ab5bb12018-10-29 15:01:58 +00005088 LoopGlobals.Privatize();
Alexey Bataev475a7442018-01-12 19:39:11 +00005089 CGF.EmitStmt(D.getInnermostCapturedStmt()->getCapturedStmt());
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00005090 }
5091 };
5092 OMPSimdLexicalScope Scope(*this, D);
5093 CGM.getOpenMPRuntime().emitInlinedDirective(
5094 *this,
5095 isOpenMPSimdDirective(D.getDirectiveKind()) ? OMPD_simd
5096 : D.getDirectiveKind(),
5097 CodeGen);
5098}