Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 1 | //===--- CGStmtOpenMP.cpp - Emit LLVM Code from Statements ----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code to emit OpenMP nodes as LLVM code. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 14 | #include "CGCleanup.h" |
Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 15 | #include "CGOpenMPRuntime.h" |
| 16 | #include "CodeGenFunction.h" |
| 17 | #include "CodeGenModule.h" |
Chandler Carruth | 0d9593d | 2015-01-14 11:29:14 +0000 | [diff] [blame] | 18 | #include "TargetInfo.h" |
Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 19 | #include "clang/AST/Stmt.h" |
| 20 | #include "clang/AST/StmtOpenMP.h" |
Alexey Bataev | 2bbf721 | 2016-03-03 03:52:24 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclOpenMP.h" |
Alexey Bataev | a839ddd | 2016-03-17 10:19:46 +0000 | [diff] [blame] | 22 | #include "llvm/IR/CallSite.h" |
Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 23 | using namespace clang; |
| 24 | using namespace CodeGen; |
| 25 | |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 26 | namespace { |
| 27 | /// Lexical scope for OpenMP executable constructs, that handles correct codegen |
| 28 | /// for captured expressions. |
Arpith Chacko Jacob | fe4890a | 2017-01-18 20:40:48 +0000 | [diff] [blame] | 29 | class OMPLexicalScope : public CodeGenFunction::LexicalScope { |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 30 | void emitPreInitStmt(CodeGenFunction &CGF, const OMPExecutableDirective &S) { |
| 31 | for (const auto *C : S.clauses()) { |
| 32 | if (auto *CPI = OMPClauseWithPreInit::get(C)) { |
| 33 | if (auto *PreInit = cast_or_null<DeclStmt>(CPI->getPreInitStmt())) { |
Alexey Bataev | 2bbf721 | 2016-03-03 03:52:24 +0000 | [diff] [blame] | 34 | for (const auto *I : PreInit->decls()) { |
| 35 | if (!I->hasAttr<OMPCaptureNoInitAttr>()) |
| 36 | CGF.EmitVarDecl(cast<VarDecl>(*I)); |
| 37 | else { |
| 38 | CodeGenFunction::AutoVarEmission Emission = |
| 39 | CGF.EmitAutoVarAlloca(cast<VarDecl>(*I)); |
| 40 | CGF.EmitAutoVarCleanups(Emission); |
| 41 | } |
| 42 | } |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 43 | } |
| 44 | } |
| 45 | } |
| 46 | } |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 47 | CodeGenFunction::OMPPrivateScope InlinedShareds; |
| 48 | |
| 49 | static bool isCapturedVar(CodeGenFunction &CGF, const VarDecl *VD) { |
| 50 | return CGF.LambdaCaptureFields.lookup(VD) || |
| 51 | (CGF.CapturedStmtInfo && CGF.CapturedStmtInfo->lookup(VD)) || |
| 52 | (CGF.CurCodeDecl && isa<BlockDecl>(CGF.CurCodeDecl)); |
| 53 | } |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 54 | |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 55 | public: |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 56 | OMPLexicalScope(CodeGenFunction &CGF, const OMPExecutableDirective &S, |
Arpith Chacko Jacob | fe4890a | 2017-01-18 20:40:48 +0000 | [diff] [blame] | 57 | bool AsInlined = false, bool EmitPreInitStmt = true) |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 58 | : CodeGenFunction::LexicalScope(CGF, S.getSourceRange()), |
| 59 | InlinedShareds(CGF) { |
Arpith Chacko Jacob | fe4890a | 2017-01-18 20:40:48 +0000 | [diff] [blame] | 60 | if (EmitPreInitStmt) |
| 61 | emitPreInitStmt(CGF, S); |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 62 | if (AsInlined) { |
| 63 | if (S.hasAssociatedStmt()) { |
| 64 | auto *CS = cast<CapturedStmt>(S.getAssociatedStmt()); |
| 65 | for (auto &C : CS->captures()) { |
| 66 | if (C.capturesVariable() || C.capturesVariableByCopy()) { |
| 67 | auto *VD = C.getCapturedVar(); |
| 68 | DeclRefExpr DRE(const_cast<VarDecl *>(VD), |
| 69 | isCapturedVar(CGF, VD) || |
| 70 | (CGF.CapturedStmtInfo && |
| 71 | InlinedShareds.isGlobalVarCaptured(VD)), |
| 72 | VD->getType().getNonReferenceType(), VK_LValue, |
| 73 | SourceLocation()); |
| 74 | InlinedShareds.addPrivate(VD, [&CGF, &DRE]() -> Address { |
| 75 | return CGF.EmitLValue(&DRE).getAddress(); |
| 76 | }); |
| 77 | } |
| 78 | } |
| 79 | (void)InlinedShareds.Privatize(); |
| 80 | } |
| 81 | } |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 82 | } |
| 83 | }; |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 84 | |
Arpith Chacko Jacob | fe4890a | 2017-01-18 20:40:48 +0000 | [diff] [blame] | 85 | /// Lexical scope for OpenMP parallel construct, that handles correct codegen |
| 86 | /// for captured expressions. |
| 87 | class OMPParallelScope final : public OMPLexicalScope { |
| 88 | bool EmitPreInitStmt(const OMPExecutableDirective &S) { |
| 89 | OpenMPDirectiveKind Kind = S.getDirectiveKind(); |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 90 | return !(isOpenMPTargetExecutionDirective(Kind) || |
| 91 | isOpenMPLoopBoundSharingDirective(Kind)) && |
Arpith Chacko Jacob | fe4890a | 2017-01-18 20:40:48 +0000 | [diff] [blame] | 92 | isOpenMPParallelDirective(Kind); |
| 93 | } |
| 94 | |
| 95 | public: |
| 96 | OMPParallelScope(CodeGenFunction &CGF, const OMPExecutableDirective &S) |
| 97 | : OMPLexicalScope(CGF, S, |
| 98 | /*AsInlined=*/false, |
| 99 | /*EmitPreInitStmt=*/EmitPreInitStmt(S)) {} |
| 100 | }; |
| 101 | |
Arpith Chacko Jacob | 99a1e0e | 2017-01-25 02:18:43 +0000 | [diff] [blame] | 102 | /// Lexical scope for OpenMP teams construct, that handles correct codegen |
| 103 | /// for captured expressions. |
| 104 | class OMPTeamsScope final : public OMPLexicalScope { |
| 105 | bool EmitPreInitStmt(const OMPExecutableDirective &S) { |
| 106 | OpenMPDirectiveKind Kind = S.getDirectiveKind(); |
| 107 | return !isOpenMPTargetExecutionDirective(Kind) && |
| 108 | isOpenMPTeamsDirective(Kind); |
| 109 | } |
| 110 | |
| 111 | public: |
| 112 | OMPTeamsScope(CodeGenFunction &CGF, const OMPExecutableDirective &S) |
| 113 | : OMPLexicalScope(CGF, S, |
| 114 | /*AsInlined=*/false, |
| 115 | /*EmitPreInitStmt=*/EmitPreInitStmt(S)) {} |
| 116 | }; |
| 117 | |
Alexey Bataev | 5a3af13 | 2016-03-29 08:58:54 +0000 | [diff] [blame] | 118 | /// Private scope for OpenMP loop-based directives, that supports capturing |
| 119 | /// of used expression from loop statement. |
| 120 | class OMPLoopScope : public CodeGenFunction::RunCleanupsScope { |
| 121 | void emitPreInitStmt(CodeGenFunction &CGF, const OMPLoopDirective &S) { |
| 122 | if (auto *LD = dyn_cast<OMPLoopDirective>(&S)) { |
| 123 | if (auto *PreInits = cast_or_null<DeclStmt>(LD->getPreInits())) { |
| 124 | for (const auto *I : PreInits->decls()) |
| 125 | CGF.EmitVarDecl(cast<VarDecl>(*I)); |
| 126 | } |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | public: |
| 131 | OMPLoopScope(CodeGenFunction &CGF, const OMPLoopDirective &S) |
| 132 | : CodeGenFunction::RunCleanupsScope(CGF) { |
| 133 | emitPreInitStmt(CGF, S); |
| 134 | } |
| 135 | }; |
| 136 | |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 137 | } // namespace |
| 138 | |
Alexey Bataev | 1189bd0 | 2016-01-26 12:20:39 +0000 | [diff] [blame] | 139 | llvm::Value *CodeGenFunction::getTypeSize(QualType Ty) { |
| 140 | auto &C = getContext(); |
| 141 | llvm::Value *Size = nullptr; |
| 142 | auto SizeInChars = C.getTypeSizeInChars(Ty); |
| 143 | if (SizeInChars.isZero()) { |
| 144 | // getTypeSizeInChars() returns 0 for a VLA. |
| 145 | while (auto *VAT = C.getAsVariableArrayType(Ty)) { |
| 146 | llvm::Value *ArraySize; |
| 147 | std::tie(ArraySize, Ty) = getVLASize(VAT); |
| 148 | Size = Size ? Builder.CreateNUWMul(Size, ArraySize) : ArraySize; |
| 149 | } |
| 150 | SizeInChars = C.getTypeSizeInChars(Ty); |
| 151 | if (SizeInChars.isZero()) |
| 152 | return llvm::ConstantInt::get(SizeTy, /*V=*/0); |
| 153 | Size = Builder.CreateNUWMul(Size, CGM.getSize(SizeInChars)); |
| 154 | } else |
| 155 | Size = CGM.getSize(SizeInChars); |
| 156 | return Size; |
| 157 | } |
| 158 | |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 159 | void CodeGenFunction::GenerateOpenMPCapturedVars( |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 160 | const CapturedStmt &S, SmallVectorImpl<llvm::Value *> &CapturedVars) { |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 161 | const RecordDecl *RD = S.getCapturedRecordDecl(); |
| 162 | auto CurField = RD->field_begin(); |
| 163 | auto CurCap = S.captures().begin(); |
| 164 | for (CapturedStmt::const_capture_init_iterator I = S.capture_init_begin(), |
| 165 | E = S.capture_init_end(); |
| 166 | I != E; ++I, ++CurField, ++CurCap) { |
| 167 | if (CurField->hasCapturedVLAType()) { |
| 168 | auto VAT = CurField->getCapturedVLAType(); |
Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 169 | auto *Val = VLASizeMap[VAT->getSizeExpr()]; |
Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 170 | CapturedVars.push_back(Val); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 171 | } else if (CurCap->capturesThis()) |
| 172 | CapturedVars.push_back(CXXThisValue); |
Samuel Antao | 6d00426 | 2016-06-16 18:39:34 +0000 | [diff] [blame] | 173 | else if (CurCap->capturesVariableByCopy()) { |
| 174 | llvm::Value *CV = |
| 175 | EmitLoadOfLValue(EmitLValue(*I), SourceLocation()).getScalarVal(); |
| 176 | |
| 177 | // If the field is not a pointer, we need to save the actual value |
| 178 | // and load it as a void pointer. |
| 179 | if (!CurField->getType()->isAnyPointerType()) { |
| 180 | auto &Ctx = getContext(); |
| 181 | auto DstAddr = CreateMemTemp( |
| 182 | Ctx.getUIntPtrType(), |
| 183 | Twine(CurCap->getCapturedVar()->getName()) + ".casted"); |
| 184 | LValue DstLV = MakeAddrLValue(DstAddr, Ctx.getUIntPtrType()); |
| 185 | |
| 186 | auto *SrcAddrVal = EmitScalarConversion( |
| 187 | DstAddr.getPointer(), Ctx.getPointerType(Ctx.getUIntPtrType()), |
| 188 | Ctx.getPointerType(CurField->getType()), SourceLocation()); |
| 189 | LValue SrcLV = |
| 190 | MakeNaturalAlignAddrLValue(SrcAddrVal, CurField->getType()); |
| 191 | |
| 192 | // Store the value using the source type pointer. |
| 193 | EmitStoreThroughLValue(RValue::get(CV), SrcLV); |
| 194 | |
| 195 | // Load the value using the destination type pointer. |
| 196 | CV = EmitLoadOfLValue(DstLV, SourceLocation()).getScalarVal(); |
| 197 | } |
| 198 | CapturedVars.push_back(CV); |
| 199 | } else { |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 200 | assert(CurCap->capturesVariable() && "Expected capture by reference."); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 201 | CapturedVars.push_back(EmitLValue(*I).getAddress().getPointer()); |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 202 | } |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 203 | } |
| 204 | } |
| 205 | |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 206 | static Address castValueFromUintptr(CodeGenFunction &CGF, QualType DstType, |
| 207 | StringRef Name, LValue AddrLV, |
| 208 | bool isReferenceType = false) { |
| 209 | ASTContext &Ctx = CGF.getContext(); |
| 210 | |
| 211 | auto *CastedPtr = CGF.EmitScalarConversion( |
| 212 | AddrLV.getAddress().getPointer(), Ctx.getUIntPtrType(), |
| 213 | Ctx.getPointerType(DstType), SourceLocation()); |
| 214 | auto TmpAddr = |
| 215 | CGF.MakeNaturalAlignAddrLValue(CastedPtr, Ctx.getPointerType(DstType)) |
| 216 | .getAddress(); |
| 217 | |
| 218 | // If we are dealing with references we need to return the address of the |
| 219 | // reference instead of the reference of the value. |
| 220 | if (isReferenceType) { |
| 221 | QualType RefType = Ctx.getLValueReferenceType(DstType); |
| 222 | auto *RefVal = TmpAddr.getPointer(); |
| 223 | TmpAddr = CGF.CreateMemTemp(RefType, Twine(Name) + ".ref"); |
| 224 | auto TmpLVal = CGF.MakeAddrLValue(TmpAddr, RefType); |
Akira Hatanaka | 642f799 | 2016-10-18 19:05:41 +0000 | [diff] [blame] | 225 | CGF.EmitStoreThroughLValue(RValue::get(RefVal), TmpLVal, /*isInit*/ true); |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | return TmpAddr; |
| 229 | } |
| 230 | |
Alexey Bataev | f7ce166 | 2017-04-10 19:16:45 +0000 | [diff] [blame] | 231 | static QualType getCanonicalParamType(ASTContext &C, QualType T) { |
| 232 | if (T->isLValueReferenceType()) { |
| 233 | return C.getLValueReferenceType( |
| 234 | getCanonicalParamType(C, T.getNonReferenceType()), |
| 235 | /*SpelledAsLValue=*/false); |
| 236 | } |
| 237 | if (T->isPointerType()) |
| 238 | return C.getPointerType(getCanonicalParamType(C, T->getPointeeType())); |
| 239 | return C.getCanonicalParamType(T); |
| 240 | } |
| 241 | |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 242 | namespace { |
| 243 | /// Contains required data for proper outlined function codegen. |
| 244 | struct FunctionOptions { |
| 245 | /// Captured statement for which the function is generated. |
| 246 | const CapturedStmt *S = nullptr; |
| 247 | /// true if cast to/from UIntPtr is required for variables captured by |
| 248 | /// value. |
| 249 | bool UIntPtrCastRequired = true; |
| 250 | /// true if only casted argumefnts must be registered as local args or VLA |
| 251 | /// sizes. |
| 252 | bool RegisterCastedArgsOnly = false; |
| 253 | /// Name of the generated function. |
| 254 | StringRef FunctionName; |
| 255 | explicit FunctionOptions(const CapturedStmt *S, bool UIntPtrCastRequired, |
| 256 | bool RegisterCastedArgsOnly, |
| 257 | StringRef FunctionName) |
| 258 | : S(S), UIntPtrCastRequired(UIntPtrCastRequired), |
| 259 | RegisterCastedArgsOnly(UIntPtrCastRequired && RegisterCastedArgsOnly), |
| 260 | FunctionName(FunctionName) {} |
| 261 | }; |
| 262 | } |
| 263 | |
| 264 | static std::pair<llvm::Function *, bool> emitOutlinedFunctionPrologue( |
| 265 | CodeGenFunction &CGF, FunctionArgList &Args, |
| 266 | llvm::DenseMap<const Decl *, std::pair<const VarDecl *, Address>> |
| 267 | &LocalAddrs, |
| 268 | llvm::DenseMap<const Decl *, std::pair<const Expr *, llvm::Value *>> |
| 269 | &VLASizes, |
| 270 | llvm::Value *&CXXThisValue, const FunctionOptions &FO) { |
| 271 | const CapturedDecl *CD = FO.S->getCapturedDecl(); |
| 272 | const RecordDecl *RD = FO.S->getCapturedRecordDecl(); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 273 | assert(CD->hasBody() && "missing CapturedDecl body"); |
| 274 | |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 275 | CXXThisValue = nullptr; |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 276 | // Build the argument list. |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 277 | CodeGenModule &CGM = CGF.CGM; |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 278 | ASTContext &Ctx = CGM.getContext(); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 279 | bool HasUIntPtrArgs = false; |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 280 | Args.append(CD->param_begin(), |
| 281 | std::next(CD->param_begin(), CD->getContextParamPosition())); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 282 | auto I = FO.S->captures().begin(); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 283 | for (auto *FD : RD->fields()) { |
| 284 | QualType ArgType = FD->getType(); |
| 285 | IdentifierInfo *II = nullptr; |
| 286 | VarDecl *CapVar = nullptr; |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 287 | |
| 288 | // If this is a capture by copy and the type is not a pointer, the outlined |
| 289 | // function argument type should be uintptr and the value properly casted to |
| 290 | // uintptr. This is necessary given that the runtime library is only able to |
| 291 | // deal with pointers. We can pass in the same way the VLA type sizes to the |
| 292 | // outlined function. |
Samuel Antao | 6d00426 | 2016-06-16 18:39:34 +0000 | [diff] [blame] | 293 | if ((I->capturesVariableByCopy() && !ArgType->isAnyPointerType()) || |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 294 | I->capturesVariableArrayType()) { |
| 295 | HasUIntPtrArgs = true; |
| 296 | if (FO.UIntPtrCastRequired) |
| 297 | ArgType = Ctx.getUIntPtrType(); |
| 298 | } |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 299 | |
| 300 | if (I->capturesVariable() || I->capturesVariableByCopy()) { |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 301 | CapVar = I->getCapturedVar(); |
| 302 | II = CapVar->getIdentifier(); |
| 303 | } else if (I->capturesThis()) |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 304 | II = &Ctx.Idents.get("this"); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 305 | else { |
| 306 | assert(I->capturesVariableArrayType()); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 307 | II = &Ctx.Idents.get("vla"); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 308 | } |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 309 | if (ArgType->isVariablyModifiedType()) |
| 310 | ArgType = getCanonicalParamType(Ctx, ArgType.getNonReferenceType()); |
| 311 | Args.push_back(ImplicitParamDecl::Create(Ctx, /*DC=*/nullptr, |
Alexey Bataev | 5622323 | 2017-06-09 13:40:18 +0000 | [diff] [blame] | 312 | FD->getLocation(), II, ArgType, |
| 313 | ImplicitParamDecl::Other)); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 314 | ++I; |
| 315 | } |
| 316 | Args.append( |
| 317 | std::next(CD->param_begin(), CD->getContextParamPosition() + 1), |
| 318 | CD->param_end()); |
| 319 | |
| 320 | // Create the function declaration. |
| 321 | FunctionType::ExtInfo ExtInfo; |
| 322 | const CGFunctionInfo &FuncInfo = |
John McCall | c56a8b3 | 2016-03-11 04:30:31 +0000 | [diff] [blame] | 323 | CGM.getTypes().arrangeBuiltinFunctionDeclaration(Ctx.VoidTy, Args); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 324 | llvm::FunctionType *FuncLLVMTy = CGM.getTypes().GetFunctionType(FuncInfo); |
| 325 | |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 326 | llvm::Function *F = |
| 327 | llvm::Function::Create(FuncLLVMTy, llvm::GlobalValue::InternalLinkage, |
| 328 | FO.FunctionName, &CGM.getModule()); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 329 | CGM.SetInternalFunctionAttributes(CD, F, FuncInfo); |
| 330 | if (CD->isNothrow()) |
| 331 | F->addFnAttr(llvm::Attribute::NoUnwind); |
| 332 | |
| 333 | // Generate the function. |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 334 | CGF.StartFunction(CD, Ctx.VoidTy, F, FuncInfo, Args, CD->getLocation(), |
| 335 | CD->getBody()->getLocStart()); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 336 | unsigned Cnt = CD->getContextParamPosition(); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 337 | I = FO.S->captures().begin(); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 338 | for (auto *FD : RD->fields()) { |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 339 | // If we are capturing a pointer by copy we don't need to do anything, just |
| 340 | // use the value that we get from the arguments. |
| 341 | if (I->capturesVariableByCopy() && FD->getType()->isAnyPointerType()) { |
Samuel Antao | 403ffd4 | 2016-07-27 22:49:49 +0000 | [diff] [blame] | 342 | const VarDecl *CurVD = I->getCapturedVar(); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 343 | Address LocalAddr = CGF.GetAddrOfLocalVar(Args[Cnt]); |
Samuel Antao | 403ffd4 | 2016-07-27 22:49:49 +0000 | [diff] [blame] | 344 | // If the variable is a reference we need to materialize it here. |
| 345 | if (CurVD->getType()->isReferenceType()) { |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 346 | Address RefAddr = CGF.CreateMemTemp( |
| 347 | CurVD->getType(), CGM.getPointerAlign(), ".materialized_ref"); |
| 348 | CGF.EmitStoreOfScalar(LocalAddr.getPointer(), RefAddr, |
| 349 | /*Volatile=*/false, CurVD->getType()); |
Samuel Antao | 403ffd4 | 2016-07-27 22:49:49 +0000 | [diff] [blame] | 350 | LocalAddr = RefAddr; |
| 351 | } |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 352 | if (!FO.RegisterCastedArgsOnly) |
| 353 | LocalAddrs.insert({Args[Cnt], {CurVD, LocalAddr}}); |
Richard Trieu | cc3949d | 2016-02-18 22:34:54 +0000 | [diff] [blame] | 354 | ++Cnt; |
| 355 | ++I; |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 356 | continue; |
| 357 | } |
| 358 | |
Krzysztof Parzyszek | 8f24823 | 2017-05-18 17:07:11 +0000 | [diff] [blame] | 359 | LValueBaseInfo BaseInfo(AlignmentSource::Decl, false); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 360 | LValue ArgLVal = CGF.MakeAddrLValue(CGF.GetAddrOfLocalVar(Args[Cnt]), |
| 361 | Args[Cnt]->getType(), BaseInfo); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 362 | if (FD->hasCapturedVLAType()) { |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 363 | if (FO.UIntPtrCastRequired) { |
| 364 | ArgLVal = CGF.MakeAddrLValue(castValueFromUintptr(CGF, FD->getType(), |
| 365 | Args[Cnt]->getName(), |
| 366 | ArgLVal), |
| 367 | FD->getType(), BaseInfo); |
| 368 | } |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 369 | auto *ExprArg = |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 370 | CGF.EmitLoadOfLValue(ArgLVal, SourceLocation()).getScalarVal(); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 371 | auto VAT = FD->getCapturedVLAType(); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 372 | VLASizes.insert({Args[Cnt], {VAT->getSizeExpr(), ExprArg}}); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 373 | } else if (I->capturesVariable()) { |
| 374 | auto *Var = I->getCapturedVar(); |
| 375 | QualType VarTy = Var->getType(); |
| 376 | Address ArgAddr = ArgLVal.getAddress(); |
| 377 | if (!VarTy->isReferenceType()) { |
Alexey Bataev | 2f5ed34 | 2016-10-13 09:52:46 +0000 | [diff] [blame] | 378 | if (ArgLVal.getType()->isLValueReferenceType()) { |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 379 | ArgAddr = CGF.EmitLoadOfReference( |
Alexey Bataev | 2f5ed34 | 2016-10-13 09:52:46 +0000 | [diff] [blame] | 380 | ArgAddr, ArgLVal.getType()->castAs<ReferenceType>()); |
Alexey Bataev | ac5eabb | 2016-11-07 11:16:04 +0000 | [diff] [blame] | 381 | } else if (!VarTy->isVariablyModifiedType() || !VarTy->isPointerType()) { |
Alexey Bataev | 2f5ed34 | 2016-10-13 09:52:46 +0000 | [diff] [blame] | 382 | assert(ArgLVal.getType()->isPointerType()); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 383 | ArgAddr = CGF.EmitLoadOfPointer( |
Alexey Bataev | 2f5ed34 | 2016-10-13 09:52:46 +0000 | [diff] [blame] | 384 | ArgAddr, ArgLVal.getType()->castAs<PointerType>()); |
| 385 | } |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 386 | } |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 387 | if (!FO.RegisterCastedArgsOnly) { |
| 388 | LocalAddrs.insert( |
| 389 | {Args[Cnt], |
| 390 | {Var, Address(ArgAddr.getPointer(), Ctx.getDeclAlign(Var))}}); |
| 391 | } |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 392 | } else if (I->capturesVariableByCopy()) { |
| 393 | assert(!FD->getType()->isAnyPointerType() && |
| 394 | "Not expecting a captured pointer."); |
| 395 | auto *Var = I->getCapturedVar(); |
| 396 | QualType VarTy = Var->getType(); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 397 | LocalAddrs.insert( |
| 398 | {Args[Cnt], |
| 399 | {Var, |
| 400 | FO.UIntPtrCastRequired |
| 401 | ? castValueFromUintptr(CGF, FD->getType(), Args[Cnt]->getName(), |
| 402 | ArgLVal, VarTy->isReferenceType()) |
| 403 | : ArgLVal.getAddress()}}); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 404 | } else { |
| 405 | // If 'this' is captured, load it into CXXThisValue. |
| 406 | assert(I->capturesThis()); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 407 | CXXThisValue = CGF.EmitLoadOfLValue(ArgLVal, Args[Cnt]->getLocation()) |
| 408 | .getScalarVal(); |
| 409 | LocalAddrs.insert({Args[Cnt], {nullptr, ArgLVal.getAddress()}}); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 410 | } |
Richard Trieu | cc3949d | 2016-02-18 22:34:54 +0000 | [diff] [blame] | 411 | ++Cnt; |
| 412 | ++I; |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 413 | } |
| 414 | |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 415 | return {F, HasUIntPtrArgs}; |
| 416 | } |
| 417 | |
| 418 | llvm::Function * |
| 419 | CodeGenFunction::GenerateOpenMPCapturedStmtFunction(const CapturedStmt &S) { |
| 420 | assert( |
| 421 | CapturedStmtInfo && |
| 422 | "CapturedStmtInfo should be set when generating the captured function"); |
| 423 | const CapturedDecl *CD = S.getCapturedDecl(); |
| 424 | // Build the argument list. |
| 425 | bool NeedWrapperFunction = |
| 426 | getDebugInfo() && |
| 427 | CGM.getCodeGenOpts().getDebugInfo() >= codegenoptions::LimitedDebugInfo; |
| 428 | FunctionArgList Args; |
| 429 | llvm::DenseMap<const Decl *, std::pair<const VarDecl *, Address>> LocalAddrs; |
| 430 | llvm::DenseMap<const Decl *, std::pair<const Expr *, llvm::Value *>> VLASizes; |
| 431 | FunctionOptions FO(&S, !NeedWrapperFunction, /*RegisterCastedArgsOnly=*/false, |
| 432 | CapturedStmtInfo->getHelperName()); |
| 433 | llvm::Function *F; |
| 434 | bool HasUIntPtrArgs; |
| 435 | std::tie(F, HasUIntPtrArgs) = emitOutlinedFunctionPrologue( |
| 436 | *this, Args, LocalAddrs, VLASizes, CXXThisValue, FO); |
| 437 | for (const auto &LocalAddrPair : LocalAddrs) { |
| 438 | if (LocalAddrPair.second.first) { |
| 439 | setAddrOfLocalVar(LocalAddrPair.second.first, |
| 440 | LocalAddrPair.second.second); |
| 441 | } |
| 442 | } |
| 443 | for (const auto &VLASizePair : VLASizes) |
| 444 | VLASizeMap[VLASizePair.second.first] = VLASizePair.second.second; |
Serge Pavlov | 3a56145 | 2015-12-06 14:32:39 +0000 | [diff] [blame] | 445 | PGO.assignRegionCounters(GlobalDecl(CD), F); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 446 | CapturedStmtInfo->EmitBody(*this, CD->getBody()); |
| 447 | FinishFunction(CD->getBodyRBrace()); |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 448 | if (!NeedWrapperFunction || !HasUIntPtrArgs) |
| 449 | return F; |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 450 | |
Alexey Bataev | 1fdfdf7 | 2017-06-29 16:43:05 +0000 | [diff] [blame] | 451 | FunctionOptions WrapperFO(&S, /*UIntPtrCastRequired=*/true, |
| 452 | /*RegisterCastedArgsOnly=*/true, |
| 453 | ".nondebug_wrapper."); |
| 454 | CodeGenFunction WrapperCGF(CGM, /*suppressNewContext=*/true); |
| 455 | WrapperCGF.disableDebugInfo(); |
| 456 | Args.clear(); |
| 457 | LocalAddrs.clear(); |
| 458 | VLASizes.clear(); |
| 459 | llvm::Function *WrapperF = |
| 460 | emitOutlinedFunctionPrologue(WrapperCGF, Args, LocalAddrs, VLASizes, |
| 461 | WrapperCGF.CXXThisValue, WrapperFO).first; |
| 462 | LValueBaseInfo BaseInfo(AlignmentSource::Decl, false); |
| 463 | llvm::SmallVector<llvm::Value *, 4> CallArgs; |
| 464 | for (const auto *Arg : Args) { |
| 465 | llvm::Value *CallArg; |
| 466 | auto I = LocalAddrs.find(Arg); |
| 467 | if (I != LocalAddrs.end()) { |
| 468 | LValue LV = |
| 469 | WrapperCGF.MakeAddrLValue(I->second.second, Arg->getType(), BaseInfo); |
| 470 | CallArg = WrapperCGF.EmitLoadOfScalar(LV, SourceLocation()); |
| 471 | } else { |
| 472 | auto EI = VLASizes.find(Arg); |
| 473 | if (EI != VLASizes.end()) |
| 474 | CallArg = EI->second.second; |
| 475 | else { |
| 476 | LValue LV = WrapperCGF.MakeAddrLValue(WrapperCGF.GetAddrOfLocalVar(Arg), |
| 477 | Arg->getType(), BaseInfo); |
| 478 | CallArg = WrapperCGF.EmitLoadOfScalar(LV, SourceLocation()); |
| 479 | } |
| 480 | } |
| 481 | CallArgs.emplace_back(CallArg); |
| 482 | } |
| 483 | WrapperCGF.Builder.CreateCall(F, CallArgs); |
| 484 | WrapperCGF.FinishFunction(); |
| 485 | return WrapperF; |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 486 | } |
| 487 | |
Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 488 | //===----------------------------------------------------------------------===// |
| 489 | // OpenMP Directive Emission |
| 490 | //===----------------------------------------------------------------------===// |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 491 | void CodeGenFunction::EmitOMPAggregateAssign( |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 492 | Address DestAddr, Address SrcAddr, QualType OriginalType, |
| 493 | const llvm::function_ref<void(Address, Address)> &CopyGen) { |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 494 | // Perform element-by-element initialization. |
| 495 | QualType ElementTy; |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 496 | |
| 497 | // Drill down to the base element type on both arrays. |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 498 | auto ArrayTy = OriginalType->getAsArrayTypeUnsafe(); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 499 | auto NumElements = emitArrayLength(ArrayTy, ElementTy, DestAddr); |
| 500 | SrcAddr = Builder.CreateElementBitCast(SrcAddr, DestAddr.getElementType()); |
| 501 | |
| 502 | auto SrcBegin = SrcAddr.getPointer(); |
| 503 | auto DestBegin = DestAddr.getPointer(); |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 504 | // Cast from pointer to array type to pointer to single element. |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 505 | auto DestEnd = Builder.CreateGEP(DestBegin, NumElements); |
| 506 | // The basic structure here is a while-do loop. |
| 507 | auto BodyBB = createBasicBlock("omp.arraycpy.body"); |
| 508 | auto DoneBB = createBasicBlock("omp.arraycpy.done"); |
| 509 | auto IsEmpty = |
| 510 | Builder.CreateICmpEQ(DestBegin, DestEnd, "omp.arraycpy.isempty"); |
| 511 | Builder.CreateCondBr(IsEmpty, DoneBB, BodyBB); |
Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 512 | |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 513 | // Enter the loop body, making that address the current address. |
| 514 | auto EntryBB = Builder.GetInsertBlock(); |
| 515 | EmitBlock(BodyBB); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 516 | |
| 517 | CharUnits ElementSize = getContext().getTypeSizeInChars(ElementTy); |
| 518 | |
| 519 | llvm::PHINode *SrcElementPHI = |
| 520 | Builder.CreatePHI(SrcBegin->getType(), 2, "omp.arraycpy.srcElementPast"); |
| 521 | SrcElementPHI->addIncoming(SrcBegin, EntryBB); |
| 522 | Address SrcElementCurrent = |
| 523 | Address(SrcElementPHI, |
| 524 | SrcAddr.getAlignment().alignmentOfArrayElement(ElementSize)); |
| 525 | |
| 526 | llvm::PHINode *DestElementPHI = |
| 527 | Builder.CreatePHI(DestBegin->getType(), 2, "omp.arraycpy.destElementPast"); |
| 528 | DestElementPHI->addIncoming(DestBegin, EntryBB); |
| 529 | Address DestElementCurrent = |
| 530 | Address(DestElementPHI, |
| 531 | DestAddr.getAlignment().alignmentOfArrayElement(ElementSize)); |
Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 532 | |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 533 | // Emit copy. |
| 534 | CopyGen(DestElementCurrent, SrcElementCurrent); |
| 535 | |
| 536 | // Shift the address forward by one element. |
| 537 | auto DestElementNext = Builder.CreateConstGEP1_32( |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 538 | DestElementPHI, /*Idx0=*/1, "omp.arraycpy.dest.element"); |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 539 | auto SrcElementNext = Builder.CreateConstGEP1_32( |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 540 | SrcElementPHI, /*Idx0=*/1, "omp.arraycpy.src.element"); |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 541 | // Check whether we've reached the end. |
| 542 | auto Done = |
| 543 | Builder.CreateICmpEQ(DestElementNext, DestEnd, "omp.arraycpy.done"); |
| 544 | Builder.CreateCondBr(Done, DoneBB, BodyBB); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 545 | DestElementPHI->addIncoming(DestElementNext, Builder.GetInsertBlock()); |
| 546 | SrcElementPHI->addIncoming(SrcElementNext, Builder.GetInsertBlock()); |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 547 | |
| 548 | // Done. |
| 549 | EmitBlock(DoneBB, /*IsFinished=*/true); |
| 550 | } |
| 551 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 552 | void CodeGenFunction::EmitOMPCopy(QualType OriginalType, Address DestAddr, |
| 553 | Address SrcAddr, const VarDecl *DestVD, |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 554 | const VarDecl *SrcVD, const Expr *Copy) { |
| 555 | if (OriginalType->isArrayType()) { |
| 556 | auto *BO = dyn_cast<BinaryOperator>(Copy); |
| 557 | if (BO && BO->getOpcode() == BO_Assign) { |
| 558 | // Perform simple memcpy for simple copying. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 559 | EmitAggregateAssign(DestAddr, SrcAddr, OriginalType); |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 560 | } else { |
| 561 | // For arrays with complex element types perform element by element |
| 562 | // copying. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 563 | EmitOMPAggregateAssign( |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 564 | DestAddr, SrcAddr, OriginalType, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 565 | [this, Copy, SrcVD, DestVD](Address DestElement, Address SrcElement) { |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 566 | // Working with the single array element, so have to remap |
| 567 | // destination and source variables to corresponding array |
| 568 | // elements. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 569 | CodeGenFunction::OMPPrivateScope Remap(*this); |
| 570 | Remap.addPrivate(DestVD, [DestElement]() -> Address { |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 571 | return DestElement; |
| 572 | }); |
| 573 | Remap.addPrivate( |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 574 | SrcVD, [SrcElement]() -> Address { return SrcElement; }); |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 575 | (void)Remap.Privatize(); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 576 | EmitIgnoredExpr(Copy); |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 577 | }); |
Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 578 | } |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 579 | } else { |
| 580 | // Remap pseudo source variable to private copy. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 581 | CodeGenFunction::OMPPrivateScope Remap(*this); |
| 582 | Remap.addPrivate(SrcVD, [SrcAddr]() -> Address { return SrcAddr; }); |
| 583 | Remap.addPrivate(DestVD, [DestAddr]() -> Address { return DestAddr; }); |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 584 | (void)Remap.Privatize(); |
| 585 | // Emit copying of the whole variable. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 586 | EmitIgnoredExpr(Copy); |
Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 587 | } |
Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 588 | } |
| 589 | |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 590 | bool CodeGenFunction::EmitOMPFirstprivateClause(const OMPExecutableDirective &D, |
| 591 | OMPPrivateScope &PrivateScope) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 592 | if (!HaveInsertPoint()) |
| 593 | return false; |
Alexey Bataev | cd8b6a2 | 2016-02-15 08:07:17 +0000 | [diff] [blame] | 594 | bool FirstprivateIsLastprivate = false; |
| 595 | llvm::DenseSet<const VarDecl *> Lastprivates; |
| 596 | for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { |
| 597 | for (const auto *D : C->varlists()) |
| 598 | Lastprivates.insert( |
| 599 | cast<VarDecl>(cast<DeclRefExpr>(D)->getDecl())->getCanonicalDecl()); |
| 600 | } |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 601 | llvm::DenseSet<const VarDecl *> EmittedAsFirstprivate; |
Alexey Bataev | 9afe575 | 2016-05-24 07:40:12 +0000 | [diff] [blame] | 602 | CGCapturedStmtInfo CapturesInfo(cast<CapturedStmt>(*D.getAssociatedStmt())); |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 603 | for (const auto *C : D.getClausesOfKind<OMPFirstprivateClause>()) { |
Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 604 | auto IRef = C->varlist_begin(); |
| 605 | auto InitsRef = C->inits().begin(); |
| 606 | for (auto IInit : C->private_copies()) { |
Alexey Bataev | 435ad7b | 2014-10-10 09:48:26 +0000 | [diff] [blame] | 607 | auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl()); |
Alexey Bataev | 7ace49d | 2016-05-17 08:55:33 +0000 | [diff] [blame] | 608 | bool ThisFirstprivateIsLastprivate = |
| 609 | Lastprivates.count(OrigVD->getCanonicalDecl()) > 0; |
Alexey Bataev | 9afe575 | 2016-05-24 07:40:12 +0000 | [diff] [blame] | 610 | auto *CapFD = CapturesInfo.lookup(OrigVD); |
Alexey Bataev | 7ace49d | 2016-05-17 08:55:33 +0000 | [diff] [blame] | 611 | auto *FD = CapturedStmtInfo->lookup(OrigVD); |
Alexey Bataev | 9afe575 | 2016-05-24 07:40:12 +0000 | [diff] [blame] | 612 | if (!ThisFirstprivateIsLastprivate && FD && (FD == CapFD) && |
Alexey Bataev | 7ace49d | 2016-05-17 08:55:33 +0000 | [diff] [blame] | 613 | !FD->getType()->isReferenceType()) { |
| 614 | EmittedAsFirstprivate.insert(OrigVD->getCanonicalDecl()); |
| 615 | ++IRef; |
| 616 | ++InitsRef; |
| 617 | continue; |
| 618 | } |
Alexey Bataev | cd8b6a2 | 2016-02-15 08:07:17 +0000 | [diff] [blame] | 619 | FirstprivateIsLastprivate = |
Alexey Bataev | 7ace49d | 2016-05-17 08:55:33 +0000 | [diff] [blame] | 620 | FirstprivateIsLastprivate || ThisFirstprivateIsLastprivate; |
Alexey Bataev | cd8b6a2 | 2016-02-15 08:07:17 +0000 | [diff] [blame] | 621 | if (EmittedAsFirstprivate.insert(OrigVD->getCanonicalDecl()).second) { |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 622 | auto *VD = cast<VarDecl>(cast<DeclRefExpr>(IInit)->getDecl()); |
| 623 | auto *VDInit = cast<VarDecl>(cast<DeclRefExpr>(*InitsRef)->getDecl()); |
| 624 | bool IsRegistered; |
Alexey Bataev | 7ace49d | 2016-05-17 08:55:33 +0000 | [diff] [blame] | 625 | DeclRefExpr DRE(const_cast<VarDecl *>(OrigVD), |
| 626 | /*RefersToEnclosingVariableOrCapture=*/FD != nullptr, |
| 627 | (*IRef)->getType(), VK_LValue, (*IRef)->getExprLoc()); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 628 | Address OriginalAddr = EmitLValue(&DRE).getAddress(); |
Alexey Bataev | feddd64 | 2016-04-22 09:05:03 +0000 | [diff] [blame] | 629 | QualType Type = VD->getType(); |
Alexey Bataev | 1d9c15c | 2015-05-19 12:31:28 +0000 | [diff] [blame] | 630 | if (Type->isArrayType()) { |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 631 | // Emit VarDecl with copy init for arrays. |
| 632 | // Get the address of the original variable captured in current |
| 633 | // captured region. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 634 | IsRegistered = PrivateScope.addPrivate(OrigVD, [&]() -> Address { |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 635 | auto Emission = EmitAutoVarAlloca(*VD); |
| 636 | auto *Init = VD->getInit(); |
| 637 | if (!isa<CXXConstructExpr>(Init) || isTrivialInitializer(Init)) { |
| 638 | // Perform simple memcpy. |
| 639 | EmitAggregateAssign(Emission.getAllocatedAddress(), OriginalAddr, |
Alexey Bataev | 1d9c15c | 2015-05-19 12:31:28 +0000 | [diff] [blame] | 640 | Type); |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 641 | } else { |
| 642 | EmitOMPAggregateAssign( |
Alexey Bataev | 1d9c15c | 2015-05-19 12:31:28 +0000 | [diff] [blame] | 643 | Emission.getAllocatedAddress(), OriginalAddr, Type, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 644 | [this, VDInit, Init](Address DestElement, |
| 645 | Address SrcElement) { |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 646 | // Clean up any temporaries needed by the initialization. |
| 647 | RunCleanupsScope InitScope(*this); |
| 648 | // Emit initialization for single element. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 649 | setAddrOfLocalVar(VDInit, SrcElement); |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 650 | EmitAnyExprToMem(Init, DestElement, |
| 651 | Init->getType().getQualifiers(), |
| 652 | /*IsInitializer*/ false); |
| 653 | LocalDeclMap.erase(VDInit); |
| 654 | }); |
| 655 | } |
| 656 | EmitAutoVarCleanups(Emission); |
| 657 | return Emission.getAllocatedAddress(); |
| 658 | }); |
| 659 | } else { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 660 | IsRegistered = PrivateScope.addPrivate(OrigVD, [&]() -> Address { |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 661 | // Emit private VarDecl with copy init. |
| 662 | // Remap temp VDInit variable to the address of the original |
| 663 | // variable |
| 664 | // (for proper handling of captured global variables). |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 665 | setAddrOfLocalVar(VDInit, OriginalAddr); |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 666 | EmitDecl(*VD); |
| 667 | LocalDeclMap.erase(VDInit); |
| 668 | return GetAddrOfLocalVar(VD); |
| 669 | }); |
| 670 | } |
| 671 | assert(IsRegistered && |
| 672 | "firstprivate var already registered as private"); |
| 673 | // Silence the warning about unused variable. |
| 674 | (void)IsRegistered; |
| 675 | } |
Richard Trieu | cc3949d | 2016-02-18 22:34:54 +0000 | [diff] [blame] | 676 | ++IRef; |
| 677 | ++InitsRef; |
Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 678 | } |
| 679 | } |
Alexey Bataev | cd8b6a2 | 2016-02-15 08:07:17 +0000 | [diff] [blame] | 680 | return FirstprivateIsLastprivate && !EmittedAsFirstprivate.empty(); |
Alexey Bataev | 4a5bb77 | 2014-10-08 14:01:46 +0000 | [diff] [blame] | 681 | } |
| 682 | |
Alexey Bataev | 03b340a | 2014-10-21 03:16:40 +0000 | [diff] [blame] | 683 | void CodeGenFunction::EmitOMPPrivateClause( |
| 684 | const OMPExecutableDirective &D, |
| 685 | CodeGenFunction::OMPPrivateScope &PrivateScope) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 686 | if (!HaveInsertPoint()) |
| 687 | return; |
Alexey Bataev | 50a6458 | 2015-04-22 12:24:45 +0000 | [diff] [blame] | 688 | llvm::DenseSet<const VarDecl *> EmittedAsPrivate; |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 689 | for (const auto *C : D.getClausesOfKind<OMPPrivateClause>()) { |
Alexey Bataev | 03b340a | 2014-10-21 03:16:40 +0000 | [diff] [blame] | 690 | auto IRef = C->varlist_begin(); |
| 691 | for (auto IInit : C->private_copies()) { |
| 692 | auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl()); |
Alexey Bataev | 50a6458 | 2015-04-22 12:24:45 +0000 | [diff] [blame] | 693 | if (EmittedAsPrivate.insert(OrigVD->getCanonicalDecl()).second) { |
| 694 | auto VD = cast<VarDecl>(cast<DeclRefExpr>(IInit)->getDecl()); |
| 695 | bool IsRegistered = |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 696 | PrivateScope.addPrivate(OrigVD, [&]() -> Address { |
Alexey Bataev | 50a6458 | 2015-04-22 12:24:45 +0000 | [diff] [blame] | 697 | // Emit private VarDecl with copy init. |
| 698 | EmitDecl(*VD); |
| 699 | return GetAddrOfLocalVar(VD); |
| 700 | }); |
| 701 | assert(IsRegistered && "private var already registered as private"); |
| 702 | // Silence the warning about unused variable. |
| 703 | (void)IsRegistered; |
| 704 | } |
Alexey Bataev | 03b340a | 2014-10-21 03:16:40 +0000 | [diff] [blame] | 705 | ++IRef; |
| 706 | } |
| 707 | } |
| 708 | } |
| 709 | |
Alexey Bataev | f56f98c | 2015-04-16 05:39:01 +0000 | [diff] [blame] | 710 | bool CodeGenFunction::EmitOMPCopyinClause(const OMPExecutableDirective &D) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 711 | if (!HaveInsertPoint()) |
| 712 | return false; |
Alexey Bataev | f56f98c | 2015-04-16 05:39:01 +0000 | [diff] [blame] | 713 | // threadprivate_var1 = master_threadprivate_var1; |
| 714 | // operator=(threadprivate_var2, master_threadprivate_var2); |
| 715 | // ... |
| 716 | // __kmpc_barrier(&loc, global_tid); |
Alexey Bataev | f56f98c | 2015-04-16 05:39:01 +0000 | [diff] [blame] | 717 | llvm::DenseSet<const VarDecl *> CopiedVars; |
| 718 | llvm::BasicBlock *CopyBegin = nullptr, *CopyEnd = nullptr; |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 719 | for (const auto *C : D.getClausesOfKind<OMPCopyinClause>()) { |
Alexey Bataev | f56f98c | 2015-04-16 05:39:01 +0000 | [diff] [blame] | 720 | auto IRef = C->varlist_begin(); |
| 721 | auto ISrcRef = C->source_exprs().begin(); |
| 722 | auto IDestRef = C->destination_exprs().begin(); |
| 723 | for (auto *AssignOp : C->assignment_ops()) { |
| 724 | auto *VD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl()); |
Alexey Bataev | 1d9c15c | 2015-05-19 12:31:28 +0000 | [diff] [blame] | 725 | QualType Type = VD->getType(); |
Alexey Bataev | f56f98c | 2015-04-16 05:39:01 +0000 | [diff] [blame] | 726 | if (CopiedVars.insert(VD->getCanonicalDecl()).second) { |
Samuel Antao | 9c75cfe | 2015-07-27 16:38:06 +0000 | [diff] [blame] | 727 | // Get the address of the master variable. If we are emitting code with |
| 728 | // TLS support, the address is passed from the master as field in the |
| 729 | // captured declaration. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 730 | Address MasterAddr = Address::invalid(); |
Samuel Antao | 9c75cfe | 2015-07-27 16:38:06 +0000 | [diff] [blame] | 731 | if (getLangOpts().OpenMPUseTLS && |
| 732 | getContext().getTargetInfo().isTLSSupported()) { |
| 733 | assert(CapturedStmtInfo->lookup(VD) && |
| 734 | "Copyin threadprivates should have been captured!"); |
| 735 | DeclRefExpr DRE(const_cast<VarDecl *>(VD), true, (*IRef)->getType(), |
| 736 | VK_LValue, (*IRef)->getExprLoc()); |
| 737 | MasterAddr = EmitLValue(&DRE).getAddress(); |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 738 | LocalDeclMap.erase(VD); |
Samuel Antao | 9c75cfe | 2015-07-27 16:38:06 +0000 | [diff] [blame] | 739 | } else { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 740 | MasterAddr = |
| 741 | Address(VD->isStaticLocal() ? CGM.getStaticLocalDeclAddress(VD) |
| 742 | : CGM.GetAddrOfGlobal(VD), |
| 743 | getContext().getDeclAlign(VD)); |
Samuel Antao | 9c75cfe | 2015-07-27 16:38:06 +0000 | [diff] [blame] | 744 | } |
Alexey Bataev | f56f98c | 2015-04-16 05:39:01 +0000 | [diff] [blame] | 745 | // Get the address of the threadprivate variable. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 746 | Address PrivateAddr = EmitLValue(*IRef).getAddress(); |
Alexey Bataev | f56f98c | 2015-04-16 05:39:01 +0000 | [diff] [blame] | 747 | if (CopiedVars.size() == 1) { |
| 748 | // At first check if current thread is a master thread. If it is, no |
| 749 | // need to copy data. |
| 750 | CopyBegin = createBasicBlock("copyin.not.master"); |
| 751 | CopyEnd = createBasicBlock("copyin.not.master.end"); |
| 752 | Builder.CreateCondBr( |
| 753 | Builder.CreateICmpNE( |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 754 | Builder.CreatePtrToInt(MasterAddr.getPointer(), CGM.IntPtrTy), |
| 755 | Builder.CreatePtrToInt(PrivateAddr.getPointer(), CGM.IntPtrTy)), |
Alexey Bataev | f56f98c | 2015-04-16 05:39:01 +0000 | [diff] [blame] | 756 | CopyBegin, CopyEnd); |
| 757 | EmitBlock(CopyBegin); |
| 758 | } |
| 759 | auto *SrcVD = cast<VarDecl>(cast<DeclRefExpr>(*ISrcRef)->getDecl()); |
| 760 | auto *DestVD = cast<VarDecl>(cast<DeclRefExpr>(*IDestRef)->getDecl()); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 761 | EmitOMPCopy(Type, PrivateAddr, MasterAddr, DestVD, SrcVD, AssignOp); |
Alexey Bataev | f56f98c | 2015-04-16 05:39:01 +0000 | [diff] [blame] | 762 | } |
| 763 | ++IRef; |
| 764 | ++ISrcRef; |
| 765 | ++IDestRef; |
| 766 | } |
| 767 | } |
| 768 | if (CopyEnd) { |
| 769 | // Exit out of copying procedure for non-master thread. |
| 770 | EmitBlock(CopyEnd, /*IsFinished=*/true); |
| 771 | return true; |
| 772 | } |
| 773 | return false; |
| 774 | } |
| 775 | |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 776 | bool CodeGenFunction::EmitOMPLastprivateClauseInit( |
| 777 | const OMPExecutableDirective &D, OMPPrivateScope &PrivateScope) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 778 | if (!HaveInsertPoint()) |
| 779 | return false; |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 780 | bool HasAtLeastOneLastprivate = false; |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 781 | llvm::DenseSet<const VarDecl *> SIMDLCVs; |
| 782 | if (isOpenMPSimdDirective(D.getDirectiveKind())) { |
| 783 | auto *LoopDirective = cast<OMPLoopDirective>(&D); |
| 784 | for (auto *C : LoopDirective->counters()) { |
| 785 | SIMDLCVs.insert( |
| 786 | cast<VarDecl>(cast<DeclRefExpr>(C)->getDecl())->getCanonicalDecl()); |
| 787 | } |
| 788 | } |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 789 | llvm::DenseSet<const VarDecl *> AlreadyEmittedVars; |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 790 | for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { |
Alexey Bataev | d130fd1 | 2015-05-13 10:23:02 +0000 | [diff] [blame] | 791 | HasAtLeastOneLastprivate = true; |
Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 792 | if (isOpenMPTaskLoopDirective(D.getDirectiveKind())) |
| 793 | break; |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 794 | auto IRef = C->varlist_begin(); |
| 795 | auto IDestRef = C->destination_exprs().begin(); |
| 796 | for (auto *IInit : C->private_copies()) { |
| 797 | // Keep the address of the original variable for future update at the end |
| 798 | // of the loop. |
| 799 | auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl()); |
Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 800 | // Taskloops do not require additional initialization, it is done in |
| 801 | // runtime support library. |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 802 | if (AlreadyEmittedVars.insert(OrigVD->getCanonicalDecl()).second) { |
| 803 | auto *DestVD = cast<VarDecl>(cast<DeclRefExpr>(*IDestRef)->getDecl()); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 804 | PrivateScope.addPrivate(DestVD, [this, OrigVD, IRef]() -> Address { |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 805 | DeclRefExpr DRE( |
| 806 | const_cast<VarDecl *>(OrigVD), |
| 807 | /*RefersToEnclosingVariableOrCapture=*/CapturedStmtInfo->lookup( |
| 808 | OrigVD) != nullptr, |
| 809 | (*IRef)->getType(), VK_LValue, (*IRef)->getExprLoc()); |
| 810 | return EmitLValue(&DRE).getAddress(); |
| 811 | }); |
| 812 | // Check if the variable is also a firstprivate: in this case IInit is |
| 813 | // not generated. Initialization of this variable will happen in codegen |
| 814 | // for 'firstprivate' clause. |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 815 | if (IInit && !SIMDLCVs.count(OrigVD->getCanonicalDecl())) { |
Alexey Bataev | d130fd1 | 2015-05-13 10:23:02 +0000 | [diff] [blame] | 816 | auto *VD = cast<VarDecl>(cast<DeclRefExpr>(IInit)->getDecl()); |
Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 817 | bool IsRegistered = PrivateScope.addPrivate(OrigVD, [&]() -> Address { |
| 818 | // Emit private VarDecl with copy init. |
| 819 | EmitDecl(*VD); |
| 820 | return GetAddrOfLocalVar(VD); |
| 821 | }); |
Alexey Bataev | d130fd1 | 2015-05-13 10:23:02 +0000 | [diff] [blame] | 822 | assert(IsRegistered && |
| 823 | "lastprivate var already registered as private"); |
| 824 | (void)IsRegistered; |
| 825 | } |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 826 | } |
Richard Trieu | cc3949d | 2016-02-18 22:34:54 +0000 | [diff] [blame] | 827 | ++IRef; |
| 828 | ++IDestRef; |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 829 | } |
| 830 | } |
| 831 | return HasAtLeastOneLastprivate; |
| 832 | } |
| 833 | |
| 834 | void CodeGenFunction::EmitOMPLastprivateClauseFinal( |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 835 | const OMPExecutableDirective &D, bool NoFinals, |
| 836 | llvm::Value *IsLastIterCond) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 837 | if (!HaveInsertPoint()) |
| 838 | return; |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 839 | // Emit following code: |
| 840 | // if (<IsLastIterCond>) { |
| 841 | // orig_var1 = private_orig_var1; |
| 842 | // ... |
| 843 | // orig_varn = private_orig_varn; |
| 844 | // } |
Alexey Bataev | fc087ec | 2015-06-16 13:14:42 +0000 | [diff] [blame] | 845 | llvm::BasicBlock *ThenBB = nullptr; |
| 846 | llvm::BasicBlock *DoneBB = nullptr; |
| 847 | if (IsLastIterCond) { |
| 848 | ThenBB = createBasicBlock(".omp.lastprivate.then"); |
| 849 | DoneBB = createBasicBlock(".omp.lastprivate.done"); |
| 850 | Builder.CreateCondBr(IsLastIterCond, ThenBB, DoneBB); |
| 851 | EmitBlock(ThenBB); |
| 852 | } |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 853 | llvm::DenseSet<const VarDecl *> AlreadyEmittedVars; |
| 854 | llvm::DenseMap<const VarDecl *, const Expr *> LoopCountersAndUpdates; |
Alexey Bataev | 7a228ff | 2015-05-21 07:59:51 +0000 | [diff] [blame] | 855 | if (auto *LoopDirective = dyn_cast<OMPLoopDirective>(&D)) { |
Alexey Bataev | 8ffcc94 | 2016-02-18 13:48:15 +0000 | [diff] [blame] | 856 | auto IC = LoopDirective->counters().begin(); |
| 857 | for (auto F : LoopDirective->finals()) { |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 858 | auto *D = |
| 859 | cast<VarDecl>(cast<DeclRefExpr>(*IC)->getDecl())->getCanonicalDecl(); |
| 860 | if (NoFinals) |
| 861 | AlreadyEmittedVars.insert(D); |
| 862 | else |
| 863 | LoopCountersAndUpdates[D] = F; |
Alexey Bataev | 8ffcc94 | 2016-02-18 13:48:15 +0000 | [diff] [blame] | 864 | ++IC; |
Alexey Bataev | 7a228ff | 2015-05-21 07:59:51 +0000 | [diff] [blame] | 865 | } |
| 866 | } |
Alexey Bataev | 8ffcc94 | 2016-02-18 13:48:15 +0000 | [diff] [blame] | 867 | for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { |
| 868 | auto IRef = C->varlist_begin(); |
| 869 | auto ISrcRef = C->source_exprs().begin(); |
| 870 | auto IDestRef = C->destination_exprs().begin(); |
| 871 | for (auto *AssignOp : C->assignment_ops()) { |
| 872 | auto *PrivateVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl()); |
| 873 | QualType Type = PrivateVD->getType(); |
| 874 | auto *CanonicalVD = PrivateVD->getCanonicalDecl(); |
| 875 | if (AlreadyEmittedVars.insert(CanonicalVD).second) { |
| 876 | // If lastprivate variable is a loop control variable for loop-based |
| 877 | // directive, update its value before copyin back to original |
| 878 | // variable. |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 879 | if (auto *FinalExpr = LoopCountersAndUpdates.lookup(CanonicalVD)) |
| 880 | EmitIgnoredExpr(FinalExpr); |
Alexey Bataev | 8ffcc94 | 2016-02-18 13:48:15 +0000 | [diff] [blame] | 881 | auto *SrcVD = cast<VarDecl>(cast<DeclRefExpr>(*ISrcRef)->getDecl()); |
| 882 | auto *DestVD = cast<VarDecl>(cast<DeclRefExpr>(*IDestRef)->getDecl()); |
| 883 | // Get the address of the original variable. |
| 884 | Address OriginalAddr = GetAddrOfLocalVar(DestVD); |
| 885 | // Get the address of the private variable. |
| 886 | Address PrivateAddr = GetAddrOfLocalVar(PrivateVD); |
| 887 | if (auto RefTy = PrivateVD->getType()->getAs<ReferenceType>()) |
| 888 | PrivateAddr = |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 889 | Address(Builder.CreateLoad(PrivateAddr), |
| 890 | getNaturalTypeAlignment(RefTy->getPointeeType())); |
Alexey Bataev | 8ffcc94 | 2016-02-18 13:48:15 +0000 | [diff] [blame] | 891 | EmitOMPCopy(Type, OriginalAddr, PrivateAddr, DestVD, SrcVD, AssignOp); |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 892 | } |
Alexey Bataev | 8ffcc94 | 2016-02-18 13:48:15 +0000 | [diff] [blame] | 893 | ++IRef; |
| 894 | ++ISrcRef; |
| 895 | ++IDestRef; |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 896 | } |
Alexey Bataev | 005248a | 2016-02-25 05:25:57 +0000 | [diff] [blame] | 897 | if (auto *PostUpdate = C->getPostUpdateExpr()) |
| 898 | EmitIgnoredExpr(PostUpdate); |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 899 | } |
Alexey Bataev | 8ffcc94 | 2016-02-18 13:48:15 +0000 | [diff] [blame] | 900 | if (IsLastIterCond) |
Alexey Bataev | fc087ec | 2015-06-16 13:14:42 +0000 | [diff] [blame] | 901 | EmitBlock(DoneBB, /*IsFinished=*/true); |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 902 | } |
| 903 | |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 904 | void CodeGenFunction::EmitOMPReductionClauseInit( |
| 905 | const OMPExecutableDirective &D, |
| 906 | CodeGenFunction::OMPPrivateScope &PrivateScope) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 907 | if (!HaveInsertPoint()) |
| 908 | return; |
Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame^] | 909 | SmallVector<const Expr *, 4> Shareds; |
| 910 | SmallVector<const Expr *, 4> Privates; |
| 911 | SmallVector<const Expr *, 4> ReductionOps; |
| 912 | SmallVector<const Expr *, 4> LHSs; |
| 913 | SmallVector<const Expr *, 4> RHSs; |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 914 | for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { |
Alexey Bataev | f24e7b1 | 2015-10-08 09:10:53 +0000 | [diff] [blame] | 915 | auto IPriv = C->privates().begin(); |
Alexey Bataev | a839ddd | 2016-03-17 10:19:46 +0000 | [diff] [blame] | 916 | auto IRed = C->reduction_ops().begin(); |
Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame^] | 917 | auto ILHS = C->lhs_exprs().begin(); |
| 918 | auto IRHS = C->rhs_exprs().begin(); |
| 919 | for (const auto *Ref : C->varlists()) { |
| 920 | Shareds.emplace_back(Ref); |
| 921 | Privates.emplace_back(*IPriv); |
| 922 | ReductionOps.emplace_back(*IRed); |
| 923 | LHSs.emplace_back(*ILHS); |
| 924 | RHSs.emplace_back(*IRHS); |
| 925 | std::advance(IPriv, 1); |
| 926 | std::advance(IRed, 1); |
| 927 | std::advance(ILHS, 1); |
| 928 | std::advance(IRHS, 1); |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 929 | } |
| 930 | } |
Alexey Bataev | 5c40bec | 2017-07-13 13:36:14 +0000 | [diff] [blame^] | 931 | ReductionCodeGen RedCG(Shareds, Privates, ReductionOps); |
| 932 | unsigned Count = 0; |
| 933 | auto ILHS = LHSs.begin(); |
| 934 | auto IRHS = RHSs.begin(); |
| 935 | auto IPriv = Privates.begin(); |
| 936 | for (const auto *IRef : Shareds) { |
| 937 | auto *PrivateVD = cast<VarDecl>(cast<DeclRefExpr>(*IPriv)->getDecl()); |
| 938 | // Emit private VarDecl with reduction init. |
| 939 | RedCG.emitSharedLValue(*this, Count); |
| 940 | RedCG.emitAggregateType(*this, Count); |
| 941 | auto Emission = EmitAutoVarAlloca(*PrivateVD); |
| 942 | RedCG.emitInitialization(*this, Count, Emission.getAllocatedAddress(), |
| 943 | RedCG.getSharedLValue(Count), |
| 944 | [&Emission](CodeGenFunction &CGF) { |
| 945 | CGF.EmitAutoVarInit(Emission); |
| 946 | return true; |
| 947 | }); |
| 948 | EmitAutoVarCleanups(Emission); |
| 949 | Address BaseAddr = RedCG.adjustPrivateAddress( |
| 950 | *this, Count, Emission.getAllocatedAddress()); |
| 951 | bool IsRegistered = PrivateScope.addPrivate( |
| 952 | RedCG.getBaseDecl(Count), [BaseAddr]() -> Address { return BaseAddr; }); |
| 953 | assert(IsRegistered && "private var already registered as private"); |
| 954 | // Silence the warning about unused variable. |
| 955 | (void)IsRegistered; |
| 956 | |
| 957 | auto *LHSVD = cast<VarDecl>(cast<DeclRefExpr>(*ILHS)->getDecl()); |
| 958 | auto *RHSVD = cast<VarDecl>(cast<DeclRefExpr>(*IRHS)->getDecl()); |
| 959 | if (auto *OASE = dyn_cast<OMPArraySectionExpr>(IRef)) { |
| 960 | // Store the address of the original variable associated with the LHS |
| 961 | // implicit variable. |
| 962 | PrivateScope.addPrivate(LHSVD, [&RedCG, Count]() -> Address { |
| 963 | return RedCG.getSharedLValue(Count).getAddress(); |
| 964 | }); |
| 965 | PrivateScope.addPrivate(RHSVD, [this, PrivateVD]() -> Address { |
| 966 | return GetAddrOfLocalVar(PrivateVD); |
| 967 | }); |
| 968 | } else if (auto *ASE = dyn_cast<ArraySubscriptExpr>(IRef)) { |
| 969 | // Store the address of the original variable associated with the LHS |
| 970 | // implicit variable. |
| 971 | PrivateScope.addPrivate(LHSVD, [&RedCG, Count]() -> Address { |
| 972 | return RedCG.getSharedLValue(Count).getAddress(); |
| 973 | }); |
| 974 | PrivateScope.addPrivate(RHSVD, [this, PrivateVD, RHSVD]() -> Address { |
| 975 | return Builder.CreateElementBitCast(GetAddrOfLocalVar(PrivateVD), |
| 976 | ConvertTypeForMem(RHSVD->getType()), |
| 977 | "rhs.begin"); |
| 978 | }); |
| 979 | } else { |
| 980 | QualType Type = PrivateVD->getType(); |
| 981 | bool IsArray = getContext().getAsArrayType(Type) != nullptr; |
| 982 | Address OriginalAddr = RedCG.getSharedLValue(Count).getAddress(); |
| 983 | // Store the address of the original variable associated with the LHS |
| 984 | // implicit variable. |
| 985 | if (IsArray) { |
| 986 | OriginalAddr = Builder.CreateElementBitCast( |
| 987 | OriginalAddr, ConvertTypeForMem(LHSVD->getType()), "lhs.begin"); |
| 988 | } |
| 989 | PrivateScope.addPrivate( |
| 990 | LHSVD, [OriginalAddr]() -> Address { return OriginalAddr; }); |
| 991 | PrivateScope.addPrivate( |
| 992 | RHSVD, [this, PrivateVD, RHSVD, IsArray]() -> Address { |
| 993 | return IsArray |
| 994 | ? Builder.CreateElementBitCast( |
| 995 | GetAddrOfLocalVar(PrivateVD), |
| 996 | ConvertTypeForMem(RHSVD->getType()), "rhs.begin") |
| 997 | : GetAddrOfLocalVar(PrivateVD); |
| 998 | }); |
| 999 | } |
| 1000 | ++ILHS; |
| 1001 | ++IRHS; |
| 1002 | ++IPriv; |
| 1003 | ++Count; |
| 1004 | } |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1005 | } |
| 1006 | |
| 1007 | void CodeGenFunction::EmitOMPReductionClauseFinal( |
Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 1008 | const OMPExecutableDirective &D, const OpenMPDirectiveKind ReductionKind) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 1009 | if (!HaveInsertPoint()) |
| 1010 | return; |
Alexey Bataev | f24e7b1 | 2015-10-08 09:10:53 +0000 | [diff] [blame] | 1011 | llvm::SmallVector<const Expr *, 8> Privates; |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1012 | llvm::SmallVector<const Expr *, 8> LHSExprs; |
| 1013 | llvm::SmallVector<const Expr *, 8> RHSExprs; |
| 1014 | llvm::SmallVector<const Expr *, 8> ReductionOps; |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1015 | bool HasAtLeastOneReduction = false; |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 1016 | for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1017 | HasAtLeastOneReduction = true; |
Alexey Bataev | f24e7b1 | 2015-10-08 09:10:53 +0000 | [diff] [blame] | 1018 | Privates.append(C->privates().begin(), C->privates().end()); |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1019 | LHSExprs.append(C->lhs_exprs().begin(), C->lhs_exprs().end()); |
| 1020 | RHSExprs.append(C->rhs_exprs().begin(), C->rhs_exprs().end()); |
| 1021 | ReductionOps.append(C->reduction_ops().begin(), C->reduction_ops().end()); |
| 1022 | } |
| 1023 | if (HasAtLeastOneReduction) { |
Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 1024 | bool WithNowait = D.getSingleClause<OMPNowaitClause>() || |
| 1025 | isOpenMPParallelDirective(D.getDirectiveKind()) || |
| 1026 | D.getDirectiveKind() == OMPD_simd; |
| 1027 | bool SimpleReduction = D.getDirectiveKind() == OMPD_simd; |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1028 | // Emit nowait reduction if nowait clause is present or directive is a |
| 1029 | // parallel directive (it always has implicit barrier). |
| 1030 | CGM.getOpenMPRuntime().emitReduction( |
Alexey Bataev | f24e7b1 | 2015-10-08 09:10:53 +0000 | [diff] [blame] | 1031 | *this, D.getLocEnd(), Privates, LHSExprs, RHSExprs, ReductionOps, |
Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 1032 | {WithNowait, SimpleReduction, ReductionKind}); |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 1033 | } |
| 1034 | } |
| 1035 | |
Alexey Bataev | 6120507 | 2016-03-02 04:57:40 +0000 | [diff] [blame] | 1036 | static void emitPostUpdateForReductionClause( |
| 1037 | CodeGenFunction &CGF, const OMPExecutableDirective &D, |
| 1038 | const llvm::function_ref<llvm::Value *(CodeGenFunction &)> &CondGen) { |
| 1039 | if (!CGF.HaveInsertPoint()) |
| 1040 | return; |
| 1041 | llvm::BasicBlock *DoneBB = nullptr; |
| 1042 | for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { |
| 1043 | if (auto *PostUpdate = C->getPostUpdateExpr()) { |
| 1044 | if (!DoneBB) { |
| 1045 | if (auto *Cond = CondGen(CGF)) { |
| 1046 | // If the first post-update expression is found, emit conditional |
| 1047 | // block if it was requested. |
| 1048 | auto *ThenBB = CGF.createBasicBlock(".omp.reduction.pu"); |
| 1049 | DoneBB = CGF.createBasicBlock(".omp.reduction.pu.done"); |
| 1050 | CGF.Builder.CreateCondBr(Cond, ThenBB, DoneBB); |
| 1051 | CGF.EmitBlock(ThenBB); |
| 1052 | } |
| 1053 | } |
| 1054 | CGF.EmitIgnoredExpr(PostUpdate); |
| 1055 | } |
| 1056 | } |
| 1057 | if (DoneBB) |
| 1058 | CGF.EmitBlock(DoneBB, /*IsFinished=*/true); |
| 1059 | } |
| 1060 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1061 | namespace { |
| 1062 | /// Codegen lambda for appending distribute lower and upper bounds to outlined |
| 1063 | /// parallel function. This is necessary for combined constructs such as |
| 1064 | /// 'distribute parallel for' |
| 1065 | typedef llvm::function_ref<void(CodeGenFunction &, |
| 1066 | const OMPExecutableDirective &, |
| 1067 | llvm::SmallVectorImpl<llvm::Value *> &)> |
| 1068 | CodeGenBoundParametersTy; |
| 1069 | } // anonymous namespace |
| 1070 | |
| 1071 | static void emitCommonOMPParallelDirective( |
| 1072 | CodeGenFunction &CGF, const OMPExecutableDirective &S, |
| 1073 | OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen, |
| 1074 | const CodeGenBoundParametersTy &CodeGenBoundParameters) { |
Arpith Chacko Jacob | 19b911c | 2017-01-18 18:18:53 +0000 | [diff] [blame] | 1075 | const CapturedStmt *CS = S.getCapturedStmt(OMPD_parallel); |
| 1076 | auto OutlinedFn = CGF.CGM.getOpenMPRuntime().emitParallelOutlinedFunction( |
| 1077 | S, *CS->getCapturedDecl()->param_begin(), InnermostKind, CodeGen); |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 1078 | if (const auto *NumThreadsClause = S.getSingleClause<OMPNumThreadsClause>()) { |
Alexey Bataev | 1d67713 | 2015-04-22 13:57:31 +0000 | [diff] [blame] | 1079 | CodeGenFunction::RunCleanupsScope NumThreadsScope(CGF); |
Alexey Bataev | 1d67713 | 2015-04-22 13:57:31 +0000 | [diff] [blame] | 1080 | auto NumThreads = CGF.EmitScalarExpr(NumThreadsClause->getNumThreads(), |
| 1081 | /*IgnoreResultAssign*/ true); |
| 1082 | CGF.CGM.getOpenMPRuntime().emitNumThreadsClause( |
| 1083 | CGF, NumThreads, NumThreadsClause->getLocStart()); |
| 1084 | } |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 1085 | if (const auto *ProcBindClause = S.getSingleClause<OMPProcBindClause>()) { |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 1086 | CodeGenFunction::RunCleanupsScope ProcBindScope(CGF); |
Alexey Bataev | 7f210c6 | 2015-06-18 13:40:03 +0000 | [diff] [blame] | 1087 | CGF.CGM.getOpenMPRuntime().emitProcBindClause( |
| 1088 | CGF, ProcBindClause->getProcBindKind(), ProcBindClause->getLocStart()); |
| 1089 | } |
Alexey Bataev | 1d67713 | 2015-04-22 13:57:31 +0000 | [diff] [blame] | 1090 | const Expr *IfCond = nullptr; |
Alexey Bataev | 7371aa3 | 2015-09-03 08:45:56 +0000 | [diff] [blame] | 1091 | for (const auto *C : S.getClausesOfKind<OMPIfClause>()) { |
| 1092 | if (C->getNameModifier() == OMPD_unknown || |
| 1093 | C->getNameModifier() == OMPD_parallel) { |
| 1094 | IfCond = C->getCondition(); |
| 1095 | break; |
| 1096 | } |
Alexey Bataev | 1d67713 | 2015-04-22 13:57:31 +0000 | [diff] [blame] | 1097 | } |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 1098 | |
Arpith Chacko Jacob | fe4890a | 2017-01-18 20:40:48 +0000 | [diff] [blame] | 1099 | OMPParallelScope Scope(CGF, S); |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 1100 | llvm::SmallVector<llvm::Value *, 16> CapturedVars; |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1101 | // Combining 'distribute' with 'for' requires sharing each 'distribute' chunk |
| 1102 | // lower and upper bounds with the pragma 'for' chunking mechanism. |
| 1103 | // The following lambda takes care of appending the lower and upper bound |
| 1104 | // parameters when necessary |
| 1105 | CodeGenBoundParameters(CGF, S, CapturedVars); |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 1106 | CGF.GenerateOpenMPCapturedVars(*CS, CapturedVars); |
Alexey Bataev | 1d67713 | 2015-04-22 13:57:31 +0000 | [diff] [blame] | 1107 | CGF.CGM.getOpenMPRuntime().emitParallelCall(CGF, S.getLocStart(), OutlinedFn, |
Alexey Bataev | 2377fe9 | 2015-09-10 08:12:02 +0000 | [diff] [blame] | 1108 | CapturedVars, IfCond); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1109 | } |
| 1110 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1111 | static void emitEmptyBoundParameters(CodeGenFunction &, |
| 1112 | const OMPExecutableDirective &, |
| 1113 | llvm::SmallVectorImpl<llvm::Value *> &) {} |
| 1114 | |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1115 | void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1116 | // Emit parallel region as a standalone region. |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 1117 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1118 | OMPPrivateScope PrivateScope(CGF); |
Alexey Bataev | f56f98c | 2015-04-16 05:39:01 +0000 | [diff] [blame] | 1119 | bool Copyins = CGF.EmitOMPCopyinClause(S); |
Alexey Bataev | cd8b6a2 | 2016-02-15 08:07:17 +0000 | [diff] [blame] | 1120 | (void)CGF.EmitOMPFirstprivateClause(S, PrivateScope); |
| 1121 | if (Copyins) { |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 1122 | // Emit implicit barrier to synchronize threads and avoid data races on |
Alexey Bataev | cd8b6a2 | 2016-02-15 08:07:17 +0000 | [diff] [blame] | 1123 | // propagation master's thread values of threadprivate variables to local |
| 1124 | // instances of that variables of all other implicit threads. |
Alexey Bataev | 25e5b44 | 2015-09-15 12:52:43 +0000 | [diff] [blame] | 1125 | CGF.CGM.getOpenMPRuntime().emitBarrierCall( |
| 1126 | CGF, S.getLocStart(), OMPD_unknown, /*EmitChecks=*/false, |
| 1127 | /*ForceSimpleCall=*/true); |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 1128 | } |
| 1129 | CGF.EmitOMPPrivateClause(S, PrivateScope); |
| 1130 | CGF.EmitOMPReductionClauseInit(S, PrivateScope); |
| 1131 | (void)PrivateScope.Privatize(); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1132 | CGF.EmitStmt(cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 1133 | CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_parallel); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1134 | }; |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1135 | emitCommonOMPParallelDirective(*this, S, OMPD_parallel, CodeGen, |
| 1136 | emitEmptyBoundParameters); |
Alexey Bataev | 6120507 | 2016-03-02 04:57:40 +0000 | [diff] [blame] | 1137 | emitPostUpdateForReductionClause( |
| 1138 | *this, S, [](CodeGenFunction &) -> llvm::Value * { return nullptr; }); |
Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 1139 | } |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 1140 | |
Alexey Bataev | 0f34da1 | 2015-07-02 04:17:07 +0000 | [diff] [blame] | 1141 | void CodeGenFunction::EmitOMPLoopBody(const OMPLoopDirective &D, |
| 1142 | JumpDest LoopExit) { |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1143 | RunCleanupsScope BodyScope(*this); |
| 1144 | // Update counters values on current iteration. |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1145 | for (auto I : D.updates()) { |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1146 | EmitIgnoredExpr(I); |
| 1147 | } |
Alexander Musman | 3276a27 | 2015-03-21 10:12:56 +0000 | [diff] [blame] | 1148 | // Update the linear variables. |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 1149 | for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1150 | for (auto *U : C->updates()) |
Alexander Musman | 3276a27 | 2015-03-21 10:12:56 +0000 | [diff] [blame] | 1151 | EmitIgnoredExpr(U); |
Alexander Musman | 3276a27 | 2015-03-21 10:12:56 +0000 | [diff] [blame] | 1152 | } |
| 1153 | |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1154 | // On a continue in the body, jump to the end. |
Alexander Musman | d196ef2 | 2014-10-07 08:57:09 +0000 | [diff] [blame] | 1155 | auto Continue = getJumpDestInCurrentScope("omp.body.continue"); |
Alexey Bataev | 0f34da1 | 2015-07-02 04:17:07 +0000 | [diff] [blame] | 1156 | BreakContinueStack.push_back(BreakContinue(LoopExit, Continue)); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1157 | // Emit loop body. |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1158 | EmitStmt(D.getBody()); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1159 | // The end (updates/cleanups). |
| 1160 | EmitBlock(Continue.getBlock()); |
| 1161 | BreakContinueStack.pop_back(); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1162 | } |
| 1163 | |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1164 | void CodeGenFunction::EmitOMPInnerLoop( |
| 1165 | const Stmt &S, bool RequiresCleanup, const Expr *LoopCond, |
| 1166 | const Expr *IncExpr, |
Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 1167 | const llvm::function_ref<void(CodeGenFunction &)> &BodyGen, |
| 1168 | const llvm::function_ref<void(CodeGenFunction &)> &PostIncGen) { |
Alexander Musman | d196ef2 | 2014-10-07 08:57:09 +0000 | [diff] [blame] | 1169 | auto LoopExit = getJumpDestInCurrentScope("omp.inner.for.end"); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1170 | |
| 1171 | // Start the loop with a block that tests the condition. |
Alexander Musman | d196ef2 | 2014-10-07 08:57:09 +0000 | [diff] [blame] | 1172 | auto CondBlock = createBasicBlock("omp.inner.for.cond"); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1173 | EmitBlock(CondBlock); |
Amara Emerson | 652795d | 2016-11-10 14:44:30 +0000 | [diff] [blame] | 1174 | const SourceRange &R = S.getSourceRange(); |
| 1175 | LoopStack.push(CondBlock, SourceLocToDebugLoc(R.getBegin()), |
| 1176 | SourceLocToDebugLoc(R.getEnd())); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1177 | |
| 1178 | // If there are any cleanups between here and the loop-exit scope, |
| 1179 | // create a block to stage a loop exit along. |
| 1180 | auto ExitBlock = LoopExit.getBlock(); |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 1181 | if (RequiresCleanup) |
Alexander Musman | d196ef2 | 2014-10-07 08:57:09 +0000 | [diff] [blame] | 1182 | ExitBlock = createBasicBlock("omp.inner.for.cond.cleanup"); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1183 | |
Alexander Musman | d196ef2 | 2014-10-07 08:57:09 +0000 | [diff] [blame] | 1184 | auto LoopBody = createBasicBlock("omp.inner.for.body"); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1185 | |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 1186 | // Emit condition. |
Justin Bogner | 66242d6 | 2015-04-23 23:06:47 +0000 | [diff] [blame] | 1187 | EmitBranchOnBoolExpr(LoopCond, LoopBody, ExitBlock, getProfileCount(&S)); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1188 | if (ExitBlock != LoopExit.getBlock()) { |
| 1189 | EmitBlock(ExitBlock); |
| 1190 | EmitBranchThroughCleanup(LoopExit); |
| 1191 | } |
| 1192 | |
| 1193 | EmitBlock(LoopBody); |
Justin Bogner | 66242d6 | 2015-04-23 23:06:47 +0000 | [diff] [blame] | 1194 | incrementProfileCounter(&S); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1195 | |
| 1196 | // Create a block for the increment. |
Alexander Musman | d196ef2 | 2014-10-07 08:57:09 +0000 | [diff] [blame] | 1197 | auto Continue = getJumpDestInCurrentScope("omp.inner.for.inc"); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1198 | BreakContinueStack.push_back(BreakContinue(LoopExit, Continue)); |
| 1199 | |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1200 | BodyGen(*this); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1201 | |
| 1202 | // Emit "IV = IV + 1" and a back-edge to the condition block. |
| 1203 | EmitBlock(Continue.getBlock()); |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 1204 | EmitIgnoredExpr(IncExpr); |
Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 1205 | PostIncGen(*this); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1206 | BreakContinueStack.pop_back(); |
| 1207 | EmitBranch(CondBlock); |
| 1208 | LoopStack.pop(); |
| 1209 | // Emit the fall-through block. |
| 1210 | EmitBlock(LoopExit.getBlock()); |
| 1211 | } |
| 1212 | |
Alexey Bataev | 3b5b5c4 | 2015-06-18 10:10:12 +0000 | [diff] [blame] | 1213 | void CodeGenFunction::EmitOMPLinearClauseInit(const OMPLoopDirective &D) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 1214 | if (!HaveInsertPoint()) |
| 1215 | return; |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1216 | // Emit inits for the linear variables. |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 1217 | for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1218 | for (auto *Init : C->inits()) { |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1219 | auto *VD = cast<VarDecl>(cast<DeclRefExpr>(Init)->getDecl()); |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1220 | if (auto *Ref = dyn_cast<DeclRefExpr>(VD->getInit()->IgnoreImpCasts())) { |
| 1221 | AutoVarEmission Emission = EmitAutoVarAlloca(*VD); |
| 1222 | auto *OrigVD = cast<VarDecl>(Ref->getDecl()); |
| 1223 | DeclRefExpr DRE(const_cast<VarDecl *>(OrigVD), |
| 1224 | CapturedStmtInfo->lookup(OrigVD) != nullptr, |
| 1225 | VD->getInit()->getType(), VK_LValue, |
| 1226 | VD->getInit()->getExprLoc()); |
| 1227 | EmitExprAsInit(&DRE, VD, MakeAddrLValue(Emission.getAllocatedAddress(), |
| 1228 | VD->getType()), |
| 1229 | /*capturedByInit=*/false); |
| 1230 | EmitAutoVarCleanups(Emission); |
| 1231 | } else |
| 1232 | EmitVarDecl(*VD); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1233 | } |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1234 | // Emit the linear steps for the linear clauses. |
| 1235 | // If a step is not constant, it is pre-calculated before the loop. |
| 1236 | if (auto CS = cast_or_null<BinaryOperator>(C->getCalcStep())) |
| 1237 | if (auto SaveRef = cast<DeclRefExpr>(CS->getLHS())) { |
Alexey Bataev | 3b5b5c4 | 2015-06-18 10:10:12 +0000 | [diff] [blame] | 1238 | EmitVarDecl(*cast<VarDecl>(SaveRef->getDecl())); |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1239 | // Emit calculation of the linear step. |
Alexey Bataev | 3b5b5c4 | 2015-06-18 10:10:12 +0000 | [diff] [blame] | 1240 | EmitIgnoredExpr(CS); |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1241 | } |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1242 | } |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1243 | } |
| 1244 | |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1245 | void CodeGenFunction::EmitOMPLinearClauseFinal( |
| 1246 | const OMPLoopDirective &D, |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1247 | const llvm::function_ref<llvm::Value *(CodeGenFunction &)> &CondGen) { |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1248 | if (!HaveInsertPoint()) |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 1249 | return; |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1250 | llvm::BasicBlock *DoneBB = nullptr; |
Alexander Musman | 3276a27 | 2015-03-21 10:12:56 +0000 | [diff] [blame] | 1251 | // Emit the final values of the linear variables. |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 1252 | for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { |
Alexey Bataev | 39f915b8 | 2015-05-08 10:41:21 +0000 | [diff] [blame] | 1253 | auto IC = C->varlist_begin(); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1254 | for (auto *F : C->finals()) { |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1255 | if (!DoneBB) { |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1256 | if (auto *Cond = CondGen(*this)) { |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1257 | // If the first post-update expression is found, emit conditional |
| 1258 | // block if it was requested. |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1259 | auto *ThenBB = createBasicBlock(".omp.linear.pu"); |
| 1260 | DoneBB = createBasicBlock(".omp.linear.pu.done"); |
| 1261 | Builder.CreateCondBr(Cond, ThenBB, DoneBB); |
| 1262 | EmitBlock(ThenBB); |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1263 | } |
| 1264 | } |
Alexey Bataev | 39f915b8 | 2015-05-08 10:41:21 +0000 | [diff] [blame] | 1265 | auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IC)->getDecl()); |
| 1266 | DeclRefExpr DRE(const_cast<VarDecl *>(OrigVD), |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1267 | CapturedStmtInfo->lookup(OrigVD) != nullptr, |
Alexey Bataev | 39f915b8 | 2015-05-08 10:41:21 +0000 | [diff] [blame] | 1268 | (*IC)->getType(), VK_LValue, (*IC)->getExprLoc()); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1269 | Address OrigAddr = EmitLValue(&DRE).getAddress(); |
| 1270 | CodeGenFunction::OMPPrivateScope VarScope(*this); |
| 1271 | VarScope.addPrivate(OrigVD, [OrigAddr]() -> Address { return OrigAddr; }); |
Alexey Bataev | 39f915b8 | 2015-05-08 10:41:21 +0000 | [diff] [blame] | 1272 | (void)VarScope.Privatize(); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1273 | EmitIgnoredExpr(F); |
Alexey Bataev | 39f915b8 | 2015-05-08 10:41:21 +0000 | [diff] [blame] | 1274 | ++IC; |
Alexander Musman | 3276a27 | 2015-03-21 10:12:56 +0000 | [diff] [blame] | 1275 | } |
Alexey Bataev | 78849fb | 2016-03-09 09:49:00 +0000 | [diff] [blame] | 1276 | if (auto *PostUpdate = C->getPostUpdateExpr()) |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1277 | EmitIgnoredExpr(PostUpdate); |
Alexander Musman | 3276a27 | 2015-03-21 10:12:56 +0000 | [diff] [blame] | 1278 | } |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1279 | if (DoneBB) |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1280 | EmitBlock(DoneBB, /*IsFinished=*/true); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1281 | } |
| 1282 | |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1283 | static void emitAlignedClause(CodeGenFunction &CGF, |
| 1284 | const OMPExecutableDirective &D) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 1285 | if (!CGF.HaveInsertPoint()) |
| 1286 | return; |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 1287 | for (const auto *Clause : D.getClausesOfKind<OMPAlignedClause>()) { |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1288 | unsigned ClauseAlignment = 0; |
| 1289 | if (auto AlignmentExpr = Clause->getAlignment()) { |
| 1290 | auto AlignmentCI = |
| 1291 | cast<llvm::ConstantInt>(CGF.EmitScalarExpr(AlignmentExpr)); |
| 1292 | ClauseAlignment = static_cast<unsigned>(AlignmentCI->getZExtValue()); |
Alexander Musman | 09184fe | 2014-09-30 05:29:28 +0000 | [diff] [blame] | 1293 | } |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1294 | for (auto E : Clause->varlists()) { |
| 1295 | unsigned Alignment = ClauseAlignment; |
| 1296 | if (Alignment == 0) { |
| 1297 | // OpenMP [2.8.1, Description] |
| 1298 | // If no optional parameter is specified, implementation-defined default |
| 1299 | // alignments for SIMD instructions on the target platforms are assumed. |
| 1300 | Alignment = |
Alexey Bataev | 0039651 | 2015-07-02 03:40:19 +0000 | [diff] [blame] | 1301 | CGF.getContext() |
| 1302 | .toCharUnitsFromBits(CGF.getContext().getOpenMPDefaultSimdAlign( |
| 1303 | E->getType()->getPointeeType())) |
| 1304 | .getQuantity(); |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1305 | } |
| 1306 | assert((Alignment == 0 || llvm::isPowerOf2_32(Alignment)) && |
| 1307 | "alignment is not power of 2"); |
| 1308 | if (Alignment != 0) { |
| 1309 | llvm::Value *PtrValue = CGF.EmitScalarExpr(E); |
| 1310 | CGF.EmitAlignmentAssumption(PtrValue, Alignment); |
| 1311 | } |
Alexander Musman | 09184fe | 2014-09-30 05:29:28 +0000 | [diff] [blame] | 1312 | } |
| 1313 | } |
| 1314 | } |
| 1315 | |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1316 | void CodeGenFunction::EmitOMPPrivateLoopCounters( |
| 1317 | const OMPLoopDirective &S, CodeGenFunction::OMPPrivateScope &LoopScope) { |
| 1318 | if (!HaveInsertPoint()) |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 1319 | return; |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1320 | auto I = S.private_counters().begin(); |
| 1321 | for (auto *E : S.counters()) { |
Alexey Bataev | a889917 | 2015-08-06 12:30:57 +0000 | [diff] [blame] | 1322 | auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); |
| 1323 | auto *PrivateVD = cast<VarDecl>(cast<DeclRefExpr>(*I)->getDecl()); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1324 | (void)LoopScope.addPrivate(VD, [&]() -> Address { |
Alexey Bataev | 435ad7b | 2014-10-10 09:48:26 +0000 | [diff] [blame] | 1325 | // Emit var without initialization. |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1326 | if (!LocalDeclMap.count(PrivateVD)) { |
| 1327 | auto VarEmission = EmitAutoVarAlloca(*PrivateVD); |
| 1328 | EmitAutoVarCleanups(VarEmission); |
| 1329 | } |
| 1330 | DeclRefExpr DRE(const_cast<VarDecl *>(PrivateVD), |
| 1331 | /*RefersToEnclosingVariableOrCapture=*/false, |
| 1332 | (*I)->getType(), VK_LValue, (*I)->getExprLoc()); |
| 1333 | return EmitLValue(&DRE).getAddress(); |
Alexey Bataev | 435ad7b | 2014-10-10 09:48:26 +0000 | [diff] [blame] | 1334 | }); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1335 | if (LocalDeclMap.count(VD) || CapturedStmtInfo->lookup(VD) || |
| 1336 | VD->hasGlobalStorage()) { |
| 1337 | (void)LoopScope.addPrivate(PrivateVD, [&]() -> Address { |
| 1338 | DeclRefExpr DRE(const_cast<VarDecl *>(VD), |
| 1339 | LocalDeclMap.count(VD) || CapturedStmtInfo->lookup(VD), |
| 1340 | E->getType(), VK_LValue, E->getExprLoc()); |
| 1341 | return EmitLValue(&DRE).getAddress(); |
| 1342 | }); |
| 1343 | } |
Alexey Bataev | a889917 | 2015-08-06 12:30:57 +0000 | [diff] [blame] | 1344 | ++I; |
Alexey Bataev | 435ad7b | 2014-10-10 09:48:26 +0000 | [diff] [blame] | 1345 | } |
Alexey Bataev | 435ad7b | 2014-10-10 09:48:26 +0000 | [diff] [blame] | 1346 | } |
| 1347 | |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1348 | static void emitPreCond(CodeGenFunction &CGF, const OMPLoopDirective &S, |
| 1349 | const Expr *Cond, llvm::BasicBlock *TrueBlock, |
| 1350 | llvm::BasicBlock *FalseBlock, uint64_t TrueCount) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 1351 | if (!CGF.HaveInsertPoint()) |
| 1352 | return; |
Alexey Bataev | 6e8248f | 2015-06-11 10:53:56 +0000 | [diff] [blame] | 1353 | { |
| 1354 | CodeGenFunction::OMPPrivateScope PreCondScope(CGF); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1355 | CGF.EmitOMPPrivateLoopCounters(S, PreCondScope); |
Alexey Bataev | 6e8248f | 2015-06-11 10:53:56 +0000 | [diff] [blame] | 1356 | (void)PreCondScope.Privatize(); |
Alexey Bataev | 6e8248f | 2015-06-11 10:53:56 +0000 | [diff] [blame] | 1357 | // Get initial values of real counters. |
Alexey Bataev | b08f89f | 2015-08-14 12:25:37 +0000 | [diff] [blame] | 1358 | for (auto I : S.inits()) { |
Alexey Bataev | 6e8248f | 2015-06-11 10:53:56 +0000 | [diff] [blame] | 1359 | CGF.EmitIgnoredExpr(I); |
| 1360 | } |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1361 | } |
| 1362 | // Check that loop is executed at least one time. |
| 1363 | CGF.EmitBranchOnBoolExpr(Cond, TrueBlock, FalseBlock, TrueCount); |
| 1364 | } |
| 1365 | |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1366 | void CodeGenFunction::EmitOMPLinearClause( |
| 1367 | const OMPLoopDirective &D, CodeGenFunction::OMPPrivateScope &PrivateScope) { |
| 1368 | if (!HaveInsertPoint()) |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 1369 | return; |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1370 | llvm::DenseSet<const VarDecl *> SIMDLCVs; |
| 1371 | if (isOpenMPSimdDirective(D.getDirectiveKind())) { |
| 1372 | auto *LoopDirective = cast<OMPLoopDirective>(&D); |
| 1373 | for (auto *C : LoopDirective->counters()) { |
| 1374 | SIMDLCVs.insert( |
| 1375 | cast<VarDecl>(cast<DeclRefExpr>(C)->getDecl())->getCanonicalDecl()); |
| 1376 | } |
| 1377 | } |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 1378 | for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { |
Alexey Bataev | bd9fec1 | 2015-08-18 06:47:21 +0000 | [diff] [blame] | 1379 | auto CurPrivate = C->privates().begin(); |
Alexey Bataev | c925aa3 | 2015-04-27 08:00:32 +0000 | [diff] [blame] | 1380 | for (auto *E : C->varlists()) { |
Alexey Bataev | bd9fec1 | 2015-08-18 06:47:21 +0000 | [diff] [blame] | 1381 | auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); |
| 1382 | auto *PrivateVD = |
| 1383 | cast<VarDecl>(cast<DeclRefExpr>(*CurPrivate)->getDecl()); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1384 | if (!SIMDLCVs.count(VD->getCanonicalDecl())) { |
| 1385 | bool IsRegistered = PrivateScope.addPrivate(VD, [&]() -> Address { |
| 1386 | // Emit private VarDecl with copy init. |
| 1387 | EmitVarDecl(*PrivateVD); |
| 1388 | return GetAddrOfLocalVar(PrivateVD); |
| 1389 | }); |
| 1390 | assert(IsRegistered && "linear var already registered as private"); |
| 1391 | // Silence the warning about unused variable. |
| 1392 | (void)IsRegistered; |
| 1393 | } else |
| 1394 | EmitVarDecl(*PrivateVD); |
Alexey Bataev | bd9fec1 | 2015-08-18 06:47:21 +0000 | [diff] [blame] | 1395 | ++CurPrivate; |
Alexander Musman | 3276a27 | 2015-03-21 10:12:56 +0000 | [diff] [blame] | 1396 | } |
| 1397 | } |
| 1398 | } |
| 1399 | |
Alexey Bataev | 45bfad5 | 2015-08-21 12:19:04 +0000 | [diff] [blame] | 1400 | static void emitSimdlenSafelenClause(CodeGenFunction &CGF, |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 1401 | const OMPExecutableDirective &D, |
| 1402 | bool IsMonotonic) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 1403 | if (!CGF.HaveInsertPoint()) |
| 1404 | return; |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 1405 | if (const auto *C = D.getSingleClause<OMPSimdlenClause>()) { |
Alexey Bataev | 45bfad5 | 2015-08-21 12:19:04 +0000 | [diff] [blame] | 1406 | RValue Len = CGF.EmitAnyExpr(C->getSimdlen(), AggValueSlot::ignored(), |
| 1407 | /*ignoreResult=*/true); |
| 1408 | llvm::ConstantInt *Val = cast<llvm::ConstantInt>(Len.getScalarVal()); |
| 1409 | CGF.LoopStack.setVectorizeWidth(Val->getZExtValue()); |
| 1410 | // In presence of finite 'safelen', it may be unsafe to mark all |
| 1411 | // the memory instructions parallel, because loop-carried |
| 1412 | // dependences of 'safelen' iterations are possible. |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 1413 | if (!IsMonotonic) |
| 1414 | CGF.LoopStack.setParallel(!D.getSingleClause<OMPSafelenClause>()); |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 1415 | } else if (const auto *C = D.getSingleClause<OMPSafelenClause>()) { |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1416 | RValue Len = CGF.EmitAnyExpr(C->getSafelen(), AggValueSlot::ignored(), |
| 1417 | /*ignoreResult=*/true); |
| 1418 | llvm::ConstantInt *Val = cast<llvm::ConstantInt>(Len.getScalarVal()); |
Tyler Nowicki | da46d0e | 2015-07-14 23:03:09 +0000 | [diff] [blame] | 1419 | CGF.LoopStack.setVectorizeWidth(Val->getZExtValue()); |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 1420 | // In presence of finite 'safelen', it may be unsafe to mark all |
| 1421 | // the memory instructions parallel, because loop-carried |
| 1422 | // dependences of 'safelen' iterations are possible. |
| 1423 | CGF.LoopStack.setParallel(false); |
| 1424 | } |
| 1425 | } |
| 1426 | |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 1427 | void CodeGenFunction::EmitOMPSimdInit(const OMPLoopDirective &D, |
| 1428 | bool IsMonotonic) { |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1429 | // Walk clauses and process safelen/lastprivate. |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 1430 | LoopStack.setParallel(!IsMonotonic); |
Tyler Nowicki | da46d0e | 2015-07-14 23:03:09 +0000 | [diff] [blame] | 1431 | LoopStack.setVectorizeEnable(true); |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 1432 | emitSimdlenSafelenClause(*this, D, IsMonotonic); |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1433 | } |
| 1434 | |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1435 | void CodeGenFunction::EmitOMPSimdFinal( |
| 1436 | const OMPLoopDirective &D, |
| 1437 | const llvm::function_ref<llvm::Value *(CodeGenFunction &)> &CondGen) { |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 1438 | if (!HaveInsertPoint()) |
| 1439 | return; |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1440 | llvm::BasicBlock *DoneBB = nullptr; |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1441 | auto IC = D.counters().begin(); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1442 | auto IPC = D.private_counters().begin(); |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1443 | for (auto F : D.finals()) { |
| 1444 | auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>((*IC))->getDecl()); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1445 | auto *PrivateVD = cast<VarDecl>(cast<DeclRefExpr>((*IPC))->getDecl()); |
| 1446 | auto *CED = dyn_cast<OMPCapturedExprDecl>(OrigVD); |
| 1447 | if (LocalDeclMap.count(OrigVD) || CapturedStmtInfo->lookup(OrigVD) || |
| 1448 | OrigVD->hasGlobalStorage() || CED) { |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1449 | if (!DoneBB) { |
| 1450 | if (auto *Cond = CondGen(*this)) { |
| 1451 | // If the first post-update expression is found, emit conditional |
| 1452 | // block if it was requested. |
| 1453 | auto *ThenBB = createBasicBlock(".omp.final.then"); |
| 1454 | DoneBB = createBasicBlock(".omp.final.done"); |
| 1455 | Builder.CreateCondBr(Cond, ThenBB, DoneBB); |
| 1456 | EmitBlock(ThenBB); |
| 1457 | } |
| 1458 | } |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1459 | Address OrigAddr = Address::invalid(); |
| 1460 | if (CED) |
| 1461 | OrigAddr = EmitLValue(CED->getInit()->IgnoreImpCasts()).getAddress(); |
| 1462 | else { |
| 1463 | DeclRefExpr DRE(const_cast<VarDecl *>(PrivateVD), |
| 1464 | /*RefersToEnclosingVariableOrCapture=*/false, |
| 1465 | (*IPC)->getType(), VK_LValue, (*IPC)->getExprLoc()); |
| 1466 | OrigAddr = EmitLValue(&DRE).getAddress(); |
| 1467 | } |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1468 | OMPPrivateScope VarScope(*this); |
| 1469 | VarScope.addPrivate(OrigVD, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1470 | [OrigAddr]() -> Address { return OrigAddr; }); |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1471 | (void)VarScope.Privatize(); |
| 1472 | EmitIgnoredExpr(F); |
| 1473 | } |
| 1474 | ++IC; |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1475 | ++IPC; |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1476 | } |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1477 | if (DoneBB) |
| 1478 | EmitBlock(DoneBB, /*IsFinished=*/true); |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1479 | } |
| 1480 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1481 | static void emitOMPLoopBodyWithStopPoint(CodeGenFunction &CGF, |
| 1482 | const OMPLoopDirective &S, |
| 1483 | CodeGenFunction::JumpDest LoopExit) { |
| 1484 | CGF.EmitOMPLoopBody(S, LoopExit); |
| 1485 | CGF.EmitStopPoint(&S); |
Hans Wennborg | ed129ae | 2017-04-27 17:02:25 +0000 | [diff] [blame] | 1486 | } |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1487 | |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 1488 | void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) { |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 1489 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
Alexey Bataev | 5a3af13 | 2016-03-29 08:58:54 +0000 | [diff] [blame] | 1490 | OMPLoopScope PreInitScope(CGF, S); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1491 | // if (PreCond) { |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1492 | // for (IV in 0..LastIteration) BODY; |
| 1493 | // <Final counter/linear vars updates>; |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1494 | // } |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1495 | // |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1496 | |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1497 | // Emit: if (PreCond) - begin. |
| 1498 | // If the condition constant folds and can be elided, avoid emitting the |
| 1499 | // whole loop. |
| 1500 | bool CondConstant; |
| 1501 | llvm::BasicBlock *ContBlock = nullptr; |
| 1502 | if (CGF.ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) { |
| 1503 | if (!CondConstant) |
| 1504 | return; |
| 1505 | } else { |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1506 | auto *ThenBlock = CGF.createBasicBlock("simd.if.then"); |
| 1507 | ContBlock = CGF.createBasicBlock("simd.if.end"); |
Justin Bogner | 66242d6 | 2015-04-23 23:06:47 +0000 | [diff] [blame] | 1508 | emitPreCond(CGF, S, S.getPreCond(), ThenBlock, ContBlock, |
| 1509 | CGF.getProfileCount(&S)); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1510 | CGF.EmitBlock(ThenBlock); |
Justin Bogner | 66242d6 | 2015-04-23 23:06:47 +0000 | [diff] [blame] | 1511 | CGF.incrementProfileCounter(&S); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1512 | } |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1513 | |
| 1514 | // Emit the loop iteration variable. |
| 1515 | const Expr *IVExpr = S.getIterationVariable(); |
| 1516 | const VarDecl *IVDecl = cast<VarDecl>(cast<DeclRefExpr>(IVExpr)->getDecl()); |
| 1517 | CGF.EmitVarDecl(*IVDecl); |
| 1518 | CGF.EmitIgnoredExpr(S.getInit()); |
| 1519 | |
| 1520 | // Emit the iterations count variable. |
| 1521 | // If it is not a variable, Sema decided to calculate iterations count on |
Alexey Bataev | 7a228ff | 2015-05-21 07:59:51 +0000 | [diff] [blame] | 1522 | // each iteration (e.g., it is foldable into a constant). |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1523 | if (auto LIExpr = dyn_cast<DeclRefExpr>(S.getLastIteration())) { |
| 1524 | CGF.EmitVarDecl(*cast<VarDecl>(LIExpr->getDecl())); |
| 1525 | // Emit calculation of the iterations count. |
| 1526 | CGF.EmitIgnoredExpr(S.getCalcLastIteration()); |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 1527 | } |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1528 | |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1529 | CGF.EmitOMPSimdInit(S); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1530 | |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1531 | emitAlignedClause(CGF, S); |
Alexey Bataev | 3b5b5c4 | 2015-06-18 10:10:12 +0000 | [diff] [blame] | 1532 | CGF.EmitOMPLinearClauseInit(S); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1533 | { |
| 1534 | OMPPrivateScope LoopScope(CGF); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1535 | CGF.EmitOMPPrivateLoopCounters(S, LoopScope); |
| 1536 | CGF.EmitOMPLinearClause(S, LoopScope); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1537 | CGF.EmitOMPPrivateClause(S, LoopScope); |
Alexey Bataev | 89e7e8e | 2015-06-17 06:21:39 +0000 | [diff] [blame] | 1538 | CGF.EmitOMPReductionClauseInit(S, LoopScope); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1539 | bool HasLastprivateClause = |
| 1540 | CGF.EmitOMPLastprivateClauseInit(S, LoopScope); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1541 | (void)LoopScope.Privatize(); |
Alexey Bataev | 0f34da1 | 2015-07-02 04:17:07 +0000 | [diff] [blame] | 1542 | CGF.EmitOMPInnerLoop(S, LoopScope.requiresCleanups(), S.getCond(), |
| 1543 | S.getInc(), |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1544 | [&S](CodeGenFunction &CGF) { |
Alexey Bataev | 0f34da1 | 2015-07-02 04:17:07 +0000 | [diff] [blame] | 1545 | CGF.EmitOMPLoopBody(S, JumpDest()); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1546 | CGF.EmitStopPoint(&S); |
| 1547 | }, |
| 1548 | [](CodeGenFunction &) {}); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1549 | CGF.EmitOMPSimdFinal( |
| 1550 | S, [](CodeGenFunction &) -> llvm::Value * { return nullptr; }); |
Alexey Bataev | fc087ec | 2015-06-16 13:14:42 +0000 | [diff] [blame] | 1551 | // Emit final copy of the lastprivate variables at the end of loops. |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 1552 | if (HasLastprivateClause) |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1553 | CGF.EmitOMPLastprivateClauseFinal(S, /*NoFinals=*/true); |
Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 1554 | CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_simd); |
Alexey Bataev | 6120507 | 2016-03-02 04:57:40 +0000 | [diff] [blame] | 1555 | emitPostUpdateForReductionClause( |
| 1556 | CGF, S, [](CodeGenFunction &) -> llvm::Value * { return nullptr; }); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1557 | } |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 1558 | CGF.EmitOMPLinearClauseFinal( |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 1559 | S, [](CodeGenFunction &) -> llvm::Value * { return nullptr; }); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 1560 | // Emit: if (PreCond) - end. |
| 1561 | if (ContBlock) { |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1562 | CGF.EmitBranch(ContBlock); |
| 1563 | CGF.EmitBlock(ContBlock, true); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 1564 | } |
| 1565 | }; |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 1566 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 1567 | CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_simd, CodeGen); |
Alexander Musman | 515ad8c | 2014-05-22 08:54:05 +0000 | [diff] [blame] | 1568 | } |
| 1569 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1570 | void CodeGenFunction::EmitOMPOuterLoop( |
| 1571 | bool DynamicOrOrdered, bool IsMonotonic, const OMPLoopDirective &S, |
| 1572 | CodeGenFunction::OMPPrivateScope &LoopScope, |
| 1573 | const CodeGenFunction::OMPLoopArguments &LoopArgs, |
| 1574 | const CodeGenFunction::CodeGenLoopTy &CodeGenLoop, |
| 1575 | const CodeGenFunction::CodeGenOrderedTy &CodeGenOrdered) { |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 1576 | auto &RT = CGM.getOpenMPRuntime(); |
Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1577 | |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 1578 | const Expr *IVExpr = S.getIterationVariable(); |
| 1579 | const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); |
| 1580 | const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); |
| 1581 | |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 1582 | auto LoopExit = getJumpDestInCurrentScope("omp.dispatch.end"); |
| 1583 | |
| 1584 | // Start the loop with a block that tests the condition. |
| 1585 | auto CondBlock = createBasicBlock("omp.dispatch.cond"); |
| 1586 | EmitBlock(CondBlock); |
Amara Emerson | 652795d | 2016-11-10 14:44:30 +0000 | [diff] [blame] | 1587 | const SourceRange &R = S.getSourceRange(); |
| 1588 | LoopStack.push(CondBlock, SourceLocToDebugLoc(R.getBegin()), |
| 1589 | SourceLocToDebugLoc(R.getEnd())); |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 1590 | |
| 1591 | llvm::Value *BoolCondVal = nullptr; |
Alexey Bataev | d7589ffe | 2015-05-20 13:12:48 +0000 | [diff] [blame] | 1592 | if (!DynamicOrOrdered) { |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1593 | // UB = min(UB, GlobalUB) or |
| 1594 | // UB = min(UB, PrevUB) for combined loop sharing constructs (e.g. |
| 1595 | // 'distribute parallel for') |
| 1596 | EmitIgnoredExpr(LoopArgs.EUB); |
Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1597 | // IV = LB |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1598 | EmitIgnoredExpr(LoopArgs.Init); |
Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1599 | // IV < UB |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1600 | BoolCondVal = EvaluateExprAsBool(LoopArgs.Cond); |
Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1601 | } else { |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1602 | BoolCondVal = |
| 1603 | RT.emitForNext(*this, S.getLocStart(), IVSize, IVSigned, LoopArgs.IL, |
| 1604 | LoopArgs.LB, LoopArgs.UB, LoopArgs.ST); |
Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1605 | } |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 1606 | |
| 1607 | // If there are any cleanups between here and the loop-exit scope, |
| 1608 | // create a block to stage a loop exit along. |
| 1609 | auto ExitBlock = LoopExit.getBlock(); |
| 1610 | if (LoopScope.requiresCleanups()) |
| 1611 | ExitBlock = createBasicBlock("omp.dispatch.cleanup"); |
| 1612 | |
| 1613 | auto LoopBody = createBasicBlock("omp.dispatch.body"); |
| 1614 | Builder.CreateCondBr(BoolCondVal, LoopBody, ExitBlock); |
| 1615 | if (ExitBlock != LoopExit.getBlock()) { |
| 1616 | EmitBlock(ExitBlock); |
| 1617 | EmitBranchThroughCleanup(LoopExit); |
| 1618 | } |
| 1619 | EmitBlock(LoopBody); |
| 1620 | |
Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1621 | // Emit "IV = LB" (in case of static schedule, we have already calculated new |
| 1622 | // LB for loop condition and emitted it above). |
Alexey Bataev | d7589ffe | 2015-05-20 13:12:48 +0000 | [diff] [blame] | 1623 | if (DynamicOrOrdered) |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1624 | EmitIgnoredExpr(LoopArgs.Init); |
Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1625 | |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 1626 | // Create a block for the increment. |
| 1627 | auto Continue = getJumpDestInCurrentScope("omp.dispatch.inc"); |
| 1628 | BreakContinueStack.push_back(BreakContinue(LoopExit, Continue)); |
| 1629 | |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1630 | // Generate !llvm.loop.parallel metadata for loads and stores for loops |
| 1631 | // with dynamic/guided scheduling and without ordered clause. |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 1632 | if (!isOpenMPSimdDirective(S.getDirectiveKind())) |
| 1633 | LoopStack.setParallel(!IsMonotonic); |
| 1634 | else |
| 1635 | EmitOMPSimdInit(S, IsMonotonic); |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 1636 | |
Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 1637 | SourceLocation Loc = S.getLocStart(); |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1638 | |
| 1639 | // when 'distribute' is not combined with a 'for': |
| 1640 | // while (idx <= UB) { BODY; ++idx; } |
| 1641 | // when 'distribute' is combined with a 'for' |
| 1642 | // (e.g. 'distribute parallel for') |
| 1643 | // while (idx <= UB) { <CodeGen rest of pragma>; idx += ST; } |
| 1644 | EmitOMPInnerLoop( |
| 1645 | S, LoopScope.requiresCleanups(), LoopArgs.Cond, LoopArgs.IncExpr, |
| 1646 | [&S, LoopExit, &CodeGenLoop](CodeGenFunction &CGF) { |
| 1647 | CodeGenLoop(CGF, S, LoopExit); |
| 1648 | }, |
| 1649 | [IVSize, IVSigned, Loc, &CodeGenOrdered](CodeGenFunction &CGF) { |
| 1650 | CodeGenOrdered(CGF, Loc, IVSize, IVSigned); |
| 1651 | }); |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 1652 | |
| 1653 | EmitBlock(Continue.getBlock()); |
| 1654 | BreakContinueStack.pop_back(); |
Alexey Bataev | d7589ffe | 2015-05-20 13:12:48 +0000 | [diff] [blame] | 1655 | if (!DynamicOrOrdered) { |
Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1656 | // Emit "LB = LB + Stride", "UB = UB + Stride". |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1657 | EmitIgnoredExpr(LoopArgs.NextLB); |
| 1658 | EmitIgnoredExpr(LoopArgs.NextUB); |
Alexander Musman | 92bdaab | 2015-03-12 13:37:50 +0000 | [diff] [blame] | 1659 | } |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 1660 | |
| 1661 | EmitBranch(CondBlock); |
| 1662 | LoopStack.pop(); |
| 1663 | // Emit the fall-through block. |
| 1664 | EmitBlock(LoopExit.getBlock()); |
| 1665 | |
| 1666 | // Tell the runtime we are done. |
Alexey Bataev | 957d856 | 2016-11-17 15:12:05 +0000 | [diff] [blame] | 1667 | auto &&CodeGen = [DynamicOrOrdered, &S](CodeGenFunction &CGF) { |
| 1668 | if (!DynamicOrOrdered) |
| 1669 | CGF.CGM.getOpenMPRuntime().emitForStaticFinish(CGF, S.getLocEnd()); |
| 1670 | }; |
| 1671 | OMPCancelStack.emitExit(*this, S.getDirectiveKind(), CodeGen); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1672 | } |
| 1673 | |
| 1674 | void CodeGenFunction::EmitOMPForOuterLoop( |
Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 1675 | const OpenMPScheduleTy &ScheduleKind, bool IsMonotonic, |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1676 | const OMPLoopDirective &S, OMPPrivateScope &LoopScope, bool Ordered, |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1677 | const OMPLoopArguments &LoopArgs, |
| 1678 | const CodeGenDispatchBoundsTy &CGDispatchBounds) { |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1679 | auto &RT = CGM.getOpenMPRuntime(); |
| 1680 | |
| 1681 | // Dynamic scheduling of the outer loop (dynamic, guided, auto, runtime). |
Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 1682 | const bool DynamicOrOrdered = |
| 1683 | Ordered || RT.isDynamic(ScheduleKind.Schedule); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1684 | |
| 1685 | assert((Ordered || |
Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 1686 | !RT.isStaticNonchunked(ScheduleKind.Schedule, |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1687 | LoopArgs.Chunk != nullptr)) && |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1688 | "static non-chunked schedule does not need outer loop"); |
| 1689 | |
| 1690 | // Emit outer loop. |
| 1691 | // |
| 1692 | // OpenMP [2.7.1, Loop Construct, Description, table 2-1] |
| 1693 | // When schedule(dynamic,chunk_size) is specified, the iterations are |
| 1694 | // distributed to threads in the team in chunks as the threads request them. |
| 1695 | // Each thread executes a chunk of iterations, then requests another chunk, |
| 1696 | // until no chunks remain to be distributed. Each chunk contains chunk_size |
| 1697 | // iterations, except for the last chunk to be distributed, which may have |
| 1698 | // fewer iterations. When no chunk_size is specified, it defaults to 1. |
| 1699 | // |
| 1700 | // When schedule(guided,chunk_size) is specified, the iterations are assigned |
| 1701 | // to threads in the team in chunks as the executing threads request them. |
| 1702 | // Each thread executes a chunk of iterations, then requests another chunk, |
| 1703 | // until no chunks remain to be assigned. For a chunk_size of 1, the size of |
| 1704 | // each chunk is proportional to the number of unassigned iterations divided |
| 1705 | // by the number of threads in the team, decreasing to 1. For a chunk_size |
| 1706 | // with value k (greater than 1), the size of each chunk is determined in the |
| 1707 | // same way, with the restriction that the chunks do not contain fewer than k |
| 1708 | // iterations (except for the last chunk to be assigned, which may have fewer |
| 1709 | // than k iterations). |
| 1710 | // |
| 1711 | // When schedule(auto) is specified, the decision regarding scheduling is |
| 1712 | // delegated to the compiler and/or runtime system. The programmer gives the |
| 1713 | // implementation the freedom to choose any possible mapping of iterations to |
| 1714 | // threads in the team. |
| 1715 | // |
| 1716 | // When schedule(runtime) is specified, the decision regarding scheduling is |
| 1717 | // deferred until run time, and the schedule and chunk size are taken from the |
| 1718 | // run-sched-var ICV. If the ICV is set to auto, the schedule is |
| 1719 | // implementation defined |
| 1720 | // |
| 1721 | // while(__kmpc_dispatch_next(&LB, &UB)) { |
| 1722 | // idx = LB; |
| 1723 | // while (idx <= UB) { BODY; ++idx; |
| 1724 | // __kmpc_dispatch_fini_(4|8)[u](); // For ordered loops only. |
| 1725 | // } // inner loop |
| 1726 | // } |
| 1727 | // |
| 1728 | // OpenMP [2.7.1, Loop Construct, Description, table 2-1] |
| 1729 | // When schedule(static, chunk_size) is specified, iterations are divided into |
| 1730 | // chunks of size chunk_size, and the chunks are assigned to the threads in |
| 1731 | // the team in a round-robin fashion in the order of the thread number. |
| 1732 | // |
| 1733 | // while(UB = min(UB, GlobalUB), idx = LB, idx < UB) { |
| 1734 | // while (idx <= UB) { BODY; ++idx; } // inner loop |
| 1735 | // LB = LB + ST; |
| 1736 | // UB = UB + ST; |
| 1737 | // } |
| 1738 | // |
| 1739 | |
| 1740 | const Expr *IVExpr = S.getIterationVariable(); |
| 1741 | const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); |
| 1742 | const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); |
| 1743 | |
| 1744 | if (DynamicOrOrdered) { |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1745 | auto DispatchBounds = CGDispatchBounds(*this, S, LoopArgs.LB, LoopArgs.UB); |
| 1746 | llvm::Value *LBVal = DispatchBounds.first; |
| 1747 | llvm::Value *UBVal = DispatchBounds.second; |
| 1748 | CGOpenMPRuntime::DispatchRTInput DipatchRTInputValues = {LBVal, UBVal, |
| 1749 | LoopArgs.Chunk}; |
Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 1750 | RT.emitForDispatchInit(*this, S.getLocStart(), ScheduleKind, IVSize, |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1751 | IVSigned, Ordered, DipatchRTInputValues); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1752 | } else { |
| 1753 | RT.emitForStaticInit(*this, S.getLocStart(), ScheduleKind, IVSize, IVSigned, |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1754 | Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, |
| 1755 | LoopArgs.ST, LoopArgs.Chunk); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1756 | } |
| 1757 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1758 | auto &&CodeGenOrdered = [Ordered](CodeGenFunction &CGF, SourceLocation Loc, |
| 1759 | const unsigned IVSize, |
| 1760 | const bool IVSigned) { |
| 1761 | if (Ordered) { |
| 1762 | CGF.CGM.getOpenMPRuntime().emitForOrderedIterationEnd(CGF, Loc, IVSize, |
| 1763 | IVSigned); |
| 1764 | } |
| 1765 | }; |
| 1766 | |
| 1767 | OMPLoopArguments OuterLoopArgs(LoopArgs.LB, LoopArgs.UB, LoopArgs.ST, |
| 1768 | LoopArgs.IL, LoopArgs.Chunk, LoopArgs.EUB); |
| 1769 | OuterLoopArgs.IncExpr = S.getInc(); |
| 1770 | OuterLoopArgs.Init = S.getInit(); |
| 1771 | OuterLoopArgs.Cond = S.getCond(); |
| 1772 | OuterLoopArgs.NextLB = S.getNextLowerBound(); |
| 1773 | OuterLoopArgs.NextUB = S.getNextUpperBound(); |
| 1774 | EmitOMPOuterLoop(DynamicOrOrdered, IsMonotonic, S, LoopScope, OuterLoopArgs, |
| 1775 | emitOMPLoopBodyWithStopPoint, CodeGenOrdered); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1776 | } |
| 1777 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1778 | static void emitEmptyOrdered(CodeGenFunction &, SourceLocation Loc, |
| 1779 | const unsigned IVSize, const bool IVSigned) {} |
| 1780 | |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1781 | void CodeGenFunction::EmitOMPDistributeOuterLoop( |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1782 | OpenMPDistScheduleClauseKind ScheduleKind, const OMPLoopDirective &S, |
| 1783 | OMPPrivateScope &LoopScope, const OMPLoopArguments &LoopArgs, |
| 1784 | const CodeGenLoopTy &CodeGenLoopContent) { |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1785 | |
| 1786 | auto &RT = CGM.getOpenMPRuntime(); |
| 1787 | |
| 1788 | // Emit outer loop. |
| 1789 | // Same behavior as a OMPForOuterLoop, except that schedule cannot be |
| 1790 | // dynamic |
| 1791 | // |
| 1792 | |
| 1793 | const Expr *IVExpr = S.getIterationVariable(); |
| 1794 | const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); |
| 1795 | const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); |
| 1796 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1797 | RT.emitDistributeStaticInit(*this, S.getLocStart(), ScheduleKind, IVSize, |
| 1798 | IVSigned, /* Ordered = */ false, LoopArgs.IL, |
| 1799 | LoopArgs.LB, LoopArgs.UB, LoopArgs.ST, |
| 1800 | LoopArgs.Chunk); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 1801 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1802 | // for combined 'distribute' and 'for' the increment expression of distribute |
| 1803 | // is store in DistInc. For 'distribute' alone, it is in Inc. |
| 1804 | Expr *IncExpr; |
| 1805 | if (isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())) |
| 1806 | IncExpr = S.getDistInc(); |
| 1807 | else |
| 1808 | IncExpr = S.getInc(); |
| 1809 | |
| 1810 | // this routine is shared by 'omp distribute parallel for' and |
| 1811 | // 'omp distribute': select the right EUB expression depending on the |
| 1812 | // directive |
| 1813 | OMPLoopArguments OuterLoopArgs; |
| 1814 | OuterLoopArgs.LB = LoopArgs.LB; |
| 1815 | OuterLoopArgs.UB = LoopArgs.UB; |
| 1816 | OuterLoopArgs.ST = LoopArgs.ST; |
| 1817 | OuterLoopArgs.IL = LoopArgs.IL; |
| 1818 | OuterLoopArgs.Chunk = LoopArgs.Chunk; |
| 1819 | OuterLoopArgs.EUB = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) |
| 1820 | ? S.getCombinedEnsureUpperBound() |
| 1821 | : S.getEnsureUpperBound(); |
| 1822 | OuterLoopArgs.IncExpr = IncExpr; |
| 1823 | OuterLoopArgs.Init = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) |
| 1824 | ? S.getCombinedInit() |
| 1825 | : S.getInit(); |
| 1826 | OuterLoopArgs.Cond = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) |
| 1827 | ? S.getCombinedCond() |
| 1828 | : S.getCond(); |
| 1829 | OuterLoopArgs.NextLB = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) |
| 1830 | ? S.getCombinedNextLowerBound() |
| 1831 | : S.getNextLowerBound(); |
| 1832 | OuterLoopArgs.NextUB = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) |
| 1833 | ? S.getCombinedNextUpperBound() |
| 1834 | : S.getNextUpperBound(); |
| 1835 | |
| 1836 | EmitOMPOuterLoop(/* DynamicOrOrdered = */ false, /* IsMonotonic = */ false, S, |
| 1837 | LoopScope, OuterLoopArgs, CodeGenLoopContent, |
| 1838 | emitEmptyOrdered); |
| 1839 | } |
| 1840 | |
| 1841 | /// Emit a helper variable and return corresponding lvalue. |
| 1842 | static LValue EmitOMPHelperVar(CodeGenFunction &CGF, |
| 1843 | const DeclRefExpr *Helper) { |
| 1844 | auto VDecl = cast<VarDecl>(Helper->getDecl()); |
| 1845 | CGF.EmitVarDecl(*VDecl); |
| 1846 | return CGF.EmitLValue(Helper); |
| 1847 | } |
| 1848 | |
| 1849 | static std::pair<LValue, LValue> |
| 1850 | emitDistributeParallelForInnerBounds(CodeGenFunction &CGF, |
| 1851 | const OMPExecutableDirective &S) { |
| 1852 | const OMPLoopDirective &LS = cast<OMPLoopDirective>(S); |
| 1853 | LValue LB = |
| 1854 | EmitOMPHelperVar(CGF, cast<DeclRefExpr>(LS.getLowerBoundVariable())); |
| 1855 | LValue UB = |
| 1856 | EmitOMPHelperVar(CGF, cast<DeclRefExpr>(LS.getUpperBoundVariable())); |
| 1857 | |
| 1858 | // When composing 'distribute' with 'for' (e.g. as in 'distribute |
| 1859 | // parallel for') we need to use the 'distribute' |
| 1860 | // chunk lower and upper bounds rather than the whole loop iteration |
| 1861 | // space. These are parameters to the outlined function for 'parallel' |
| 1862 | // and we copy the bounds of the previous schedule into the |
| 1863 | // the current ones. |
| 1864 | LValue PrevLB = CGF.EmitLValue(LS.getPrevLowerBoundVariable()); |
| 1865 | LValue PrevUB = CGF.EmitLValue(LS.getPrevUpperBoundVariable()); |
| 1866 | llvm::Value *PrevLBVal = CGF.EmitLoadOfScalar(PrevLB, SourceLocation()); |
| 1867 | PrevLBVal = CGF.EmitScalarConversion( |
| 1868 | PrevLBVal, LS.getPrevLowerBoundVariable()->getType(), |
| 1869 | LS.getIterationVariable()->getType(), SourceLocation()); |
| 1870 | llvm::Value *PrevUBVal = CGF.EmitLoadOfScalar(PrevUB, SourceLocation()); |
| 1871 | PrevUBVal = CGF.EmitScalarConversion( |
| 1872 | PrevUBVal, LS.getPrevUpperBoundVariable()->getType(), |
| 1873 | LS.getIterationVariable()->getType(), SourceLocation()); |
| 1874 | |
| 1875 | CGF.EmitStoreOfScalar(PrevLBVal, LB); |
| 1876 | CGF.EmitStoreOfScalar(PrevUBVal, UB); |
| 1877 | |
| 1878 | return {LB, UB}; |
| 1879 | } |
| 1880 | |
| 1881 | /// if the 'for' loop has a dispatch schedule (e.g. dynamic, guided) then |
| 1882 | /// we need to use the LB and UB expressions generated by the worksharing |
| 1883 | /// code generation support, whereas in non combined situations we would |
| 1884 | /// just emit 0 and the LastIteration expression |
| 1885 | /// This function is necessary due to the difference of the LB and UB |
| 1886 | /// types for the RT emission routines for 'for_static_init' and |
| 1887 | /// 'for_dispatch_init' |
| 1888 | static std::pair<llvm::Value *, llvm::Value *> |
| 1889 | emitDistributeParallelForDispatchBounds(CodeGenFunction &CGF, |
| 1890 | const OMPExecutableDirective &S, |
| 1891 | Address LB, Address UB) { |
| 1892 | const OMPLoopDirective &LS = cast<OMPLoopDirective>(S); |
| 1893 | const Expr *IVExpr = LS.getIterationVariable(); |
| 1894 | // when implementing a dynamic schedule for a 'for' combined with a |
| 1895 | // 'distribute' (e.g. 'distribute parallel for'), the 'for' loop |
| 1896 | // is not normalized as each team only executes its own assigned |
| 1897 | // distribute chunk |
| 1898 | QualType IteratorTy = IVExpr->getType(); |
| 1899 | llvm::Value *LBVal = CGF.EmitLoadOfScalar(LB, /*Volatile=*/false, IteratorTy, |
| 1900 | SourceLocation()); |
| 1901 | llvm::Value *UBVal = CGF.EmitLoadOfScalar(UB, /*Volatile=*/false, IteratorTy, |
| 1902 | SourceLocation()); |
| 1903 | return {LBVal, UBVal}; |
Hans Wennborg | ed129ae | 2017-04-27 17:02:25 +0000 | [diff] [blame] | 1904 | } |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1905 | |
| 1906 | static void emitDistributeParallelForDistributeInnerBoundParams( |
| 1907 | CodeGenFunction &CGF, const OMPExecutableDirective &S, |
| 1908 | llvm::SmallVectorImpl<llvm::Value *> &CapturedVars) { |
| 1909 | const auto &Dir = cast<OMPLoopDirective>(S); |
| 1910 | LValue LB = |
| 1911 | CGF.EmitLValue(cast<DeclRefExpr>(Dir.getCombinedLowerBoundVariable())); |
| 1912 | auto LBCast = CGF.Builder.CreateIntCast( |
| 1913 | CGF.Builder.CreateLoad(LB.getAddress()), CGF.SizeTy, /*isSigned=*/false); |
| 1914 | CapturedVars.push_back(LBCast); |
| 1915 | LValue UB = |
| 1916 | CGF.EmitLValue(cast<DeclRefExpr>(Dir.getCombinedUpperBoundVariable())); |
| 1917 | |
| 1918 | auto UBCast = CGF.Builder.CreateIntCast( |
| 1919 | CGF.Builder.CreateLoad(UB.getAddress()), CGF.SizeTy, /*isSigned=*/false); |
| 1920 | CapturedVars.push_back(UBCast); |
Hans Wennborg | ed129ae | 2017-04-27 17:02:25 +0000 | [diff] [blame] | 1921 | } |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1922 | |
| 1923 | static void |
| 1924 | emitInnerParallelForWhenCombined(CodeGenFunction &CGF, |
| 1925 | const OMPLoopDirective &S, |
| 1926 | CodeGenFunction::JumpDest LoopExit) { |
| 1927 | auto &&CGInlinedWorksharingLoop = [&S](CodeGenFunction &CGF, |
| 1928 | PrePostActionTy &) { |
| 1929 | CGF.EmitOMPWorksharingLoop(S, S.getPrevEnsureUpperBound(), |
| 1930 | emitDistributeParallelForInnerBounds, |
| 1931 | emitDistributeParallelForDispatchBounds); |
| 1932 | }; |
| 1933 | |
| 1934 | emitCommonOMPParallelDirective( |
| 1935 | CGF, S, OMPD_for, CGInlinedWorksharingLoop, |
| 1936 | emitDistributeParallelForDistributeInnerBoundParams); |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 1937 | } |
| 1938 | |
Carlo Bertolli | 9925f15 | 2016-06-27 14:55:37 +0000 | [diff] [blame] | 1939 | void CodeGenFunction::EmitOMPDistributeParallelForDirective( |
| 1940 | const OMPDistributeParallelForDirective &S) { |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1941 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 1942 | CGF.EmitOMPDistributeLoop(S, emitInnerParallelForWhenCombined, |
| 1943 | S.getDistInc()); |
| 1944 | }; |
Carlo Bertolli | 9925f15 | 2016-06-27 14:55:37 +0000 | [diff] [blame] | 1945 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 1946 | OMPCancelStackRAII CancelRegion(*this, OMPD_distribute_parallel_for, |
| 1947 | /*HasCancel=*/false); |
| 1948 | CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_distribute, CodeGen, |
| 1949 | /*HasCancel=*/false); |
Carlo Bertolli | 9925f15 | 2016-06-27 14:55:37 +0000 | [diff] [blame] | 1950 | } |
| 1951 | |
Kelvin Li | 4a39add | 2016-07-05 05:00:15 +0000 | [diff] [blame] | 1952 | void CodeGenFunction::EmitOMPDistributeParallelForSimdDirective( |
| 1953 | const OMPDistributeParallelForSimdDirective &S) { |
| 1954 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
| 1955 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 1956 | *this, OMPD_distribute_parallel_for_simd, |
| 1957 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 1958 | OMPLoopScope PreInitScope(CGF, S); |
| 1959 | CGF.EmitStmt( |
| 1960 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 1961 | }); |
| 1962 | } |
Kelvin Li | 787f3fc | 2016-07-06 04:45:38 +0000 | [diff] [blame] | 1963 | |
| 1964 | void CodeGenFunction::EmitOMPDistributeSimdDirective( |
| 1965 | const OMPDistributeSimdDirective &S) { |
| 1966 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
| 1967 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 1968 | *this, OMPD_distribute_simd, |
| 1969 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 1970 | OMPLoopScope PreInitScope(CGF, S); |
| 1971 | CGF.EmitStmt( |
| 1972 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 1973 | }); |
| 1974 | } |
| 1975 | |
Kelvin Li | a579b91 | 2016-07-14 02:54:56 +0000 | [diff] [blame] | 1976 | void CodeGenFunction::EmitOMPTargetParallelForSimdDirective( |
| 1977 | const OMPTargetParallelForSimdDirective &S) { |
| 1978 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
| 1979 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 1980 | *this, OMPD_target_parallel_for_simd, |
| 1981 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 1982 | OMPLoopScope PreInitScope(CGF, S); |
| 1983 | CGF.EmitStmt( |
| 1984 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 1985 | }); |
| 1986 | } |
| 1987 | |
Kelvin Li | 986330c | 2016-07-20 22:57:10 +0000 | [diff] [blame] | 1988 | void CodeGenFunction::EmitOMPTargetSimdDirective( |
| 1989 | const OMPTargetSimdDirective &S) { |
| 1990 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
| 1991 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 1992 | *this, OMPD_target_simd, [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 1993 | OMPLoopScope PreInitScope(CGF, S); |
| 1994 | CGF.EmitStmt( |
| 1995 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 1996 | }); |
| 1997 | } |
| 1998 | |
Kelvin Li | 0253287 | 2016-08-05 14:37:37 +0000 | [diff] [blame] | 1999 | void CodeGenFunction::EmitOMPTeamsDistributeDirective( |
| 2000 | const OMPTeamsDistributeDirective &S) { |
| 2001 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
| 2002 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 2003 | *this, OMPD_teams_distribute, |
| 2004 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 2005 | OMPLoopScope PreInitScope(CGF, S); |
| 2006 | CGF.EmitStmt( |
| 2007 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 2008 | }); |
| 2009 | } |
| 2010 | |
Kelvin Li | 4e325f7 | 2016-10-25 12:50:55 +0000 | [diff] [blame] | 2011 | void CodeGenFunction::EmitOMPTeamsDistributeSimdDirective( |
| 2012 | const OMPTeamsDistributeSimdDirective &S) { |
| 2013 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
| 2014 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 2015 | *this, OMPD_teams_distribute_simd, |
| 2016 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 2017 | OMPLoopScope PreInitScope(CGF, S); |
| 2018 | CGF.EmitStmt( |
| 2019 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 2020 | }); |
| 2021 | } |
| 2022 | |
Kelvin Li | 579e41c | 2016-11-30 23:51:03 +0000 | [diff] [blame] | 2023 | void CodeGenFunction::EmitOMPTeamsDistributeParallelForSimdDirective( |
| 2024 | const OMPTeamsDistributeParallelForSimdDirective &S) { |
| 2025 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
| 2026 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 2027 | *this, OMPD_teams_distribute_parallel_for_simd, |
| 2028 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 2029 | OMPLoopScope PreInitScope(CGF, S); |
| 2030 | CGF.EmitStmt( |
| 2031 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 2032 | }); |
| 2033 | } |
Kelvin Li | 4e325f7 | 2016-10-25 12:50:55 +0000 | [diff] [blame] | 2034 | |
Kelvin Li | 7ade93f | 2016-12-09 03:24:30 +0000 | [diff] [blame] | 2035 | void CodeGenFunction::EmitOMPTeamsDistributeParallelForDirective( |
| 2036 | const OMPTeamsDistributeParallelForDirective &S) { |
| 2037 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
| 2038 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 2039 | *this, OMPD_teams_distribute_parallel_for, |
| 2040 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 2041 | OMPLoopScope PreInitScope(CGF, S); |
| 2042 | CGF.EmitStmt( |
| 2043 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 2044 | }); |
| 2045 | } |
| 2046 | |
Kelvin Li | 83c451e | 2016-12-25 04:52:54 +0000 | [diff] [blame] | 2047 | void CodeGenFunction::EmitOMPTargetTeamsDistributeDirective( |
| 2048 | const OMPTargetTeamsDistributeDirective &S) { |
Kelvin Li | 26fd21a | 2016-12-28 17:57:07 +0000 | [diff] [blame] | 2049 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 2050 | *this, OMPD_target_teams_distribute, |
Kelvin Li | 83c451e | 2016-12-25 04:52:54 +0000 | [diff] [blame] | 2051 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
Kelvin Li | 26fd21a | 2016-12-28 17:57:07 +0000 | [diff] [blame] | 2052 | CGF.EmitStmt( |
| 2053 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
Kelvin Li | 83c451e | 2016-12-25 04:52:54 +0000 | [diff] [blame] | 2054 | }); |
| 2055 | } |
| 2056 | |
Kelvin Li | 80e8f56 | 2016-12-29 22:16:30 +0000 | [diff] [blame] | 2057 | void CodeGenFunction::EmitOMPTargetTeamsDistributeParallelForDirective( |
| 2058 | const OMPTargetTeamsDistributeParallelForDirective &S) { |
| 2059 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 2060 | *this, OMPD_target_teams_distribute_parallel_for, |
| 2061 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 2062 | CGF.EmitStmt( |
| 2063 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 2064 | }); |
| 2065 | } |
| 2066 | |
Kelvin Li | 1851df5 | 2017-01-03 05:23:48 +0000 | [diff] [blame] | 2067 | void CodeGenFunction::EmitOMPTargetTeamsDistributeParallelForSimdDirective( |
| 2068 | const OMPTargetTeamsDistributeParallelForSimdDirective &S) { |
| 2069 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 2070 | *this, OMPD_target_teams_distribute_parallel_for_simd, |
| 2071 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 2072 | CGF.EmitStmt( |
| 2073 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 2074 | }); |
| 2075 | } |
| 2076 | |
Kelvin Li | da68118 | 2017-01-10 18:08:18 +0000 | [diff] [blame] | 2077 | void CodeGenFunction::EmitOMPTargetTeamsDistributeSimdDirective( |
| 2078 | const OMPTargetTeamsDistributeSimdDirective &S) { |
| 2079 | CGM.getOpenMPRuntime().emitInlinedDirective( |
| 2080 | *this, OMPD_target_teams_distribute_simd, |
| 2081 | [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 2082 | CGF.EmitStmt( |
| 2083 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 2084 | }); |
| 2085 | } |
| 2086 | |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 2087 | namespace { |
| 2088 | struct ScheduleKindModifiersTy { |
| 2089 | OpenMPScheduleClauseKind Kind; |
| 2090 | OpenMPScheduleClauseModifier M1; |
| 2091 | OpenMPScheduleClauseModifier M2; |
| 2092 | ScheduleKindModifiersTy(OpenMPScheduleClauseKind Kind, |
| 2093 | OpenMPScheduleClauseModifier M1, |
| 2094 | OpenMPScheduleClauseModifier M2) |
| 2095 | : Kind(Kind), M1(M1), M2(M2) {} |
| 2096 | }; |
| 2097 | } // namespace |
| 2098 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2099 | bool CodeGenFunction::EmitOMPWorksharingLoop( |
| 2100 | const OMPLoopDirective &S, Expr *EUB, |
| 2101 | const CodeGenLoopBoundsTy &CodeGenLoopBounds, |
| 2102 | const CodeGenDispatchBoundsTy &CGDispatchBounds) { |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2103 | // Emit the loop iteration variable. |
| 2104 | auto IVExpr = cast<DeclRefExpr>(S.getIterationVariable()); |
| 2105 | auto IVDecl = cast<VarDecl>(IVExpr->getDecl()); |
| 2106 | EmitVarDecl(*IVDecl); |
| 2107 | |
| 2108 | // Emit the iterations count variable. |
| 2109 | // If it is not a variable, Sema decided to calculate iterations count on each |
| 2110 | // iteration (e.g., it is foldable into a constant). |
| 2111 | if (auto LIExpr = dyn_cast<DeclRefExpr>(S.getLastIteration())) { |
| 2112 | EmitVarDecl(*cast<VarDecl>(LIExpr->getDecl())); |
| 2113 | // Emit calculation of the iterations count. |
| 2114 | EmitIgnoredExpr(S.getCalcLastIteration()); |
| 2115 | } |
| 2116 | |
| 2117 | auto &RT = CGM.getOpenMPRuntime(); |
| 2118 | |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 2119 | bool HasLastprivateClause; |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2120 | // Check pre-condition. |
| 2121 | { |
Alexey Bataev | 5a3af13 | 2016-03-29 08:58:54 +0000 | [diff] [blame] | 2122 | OMPLoopScope PreInitScope(*this, S); |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2123 | // Skip the entire loop if we don't meet the precondition. |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 2124 | // If the condition constant folds and can be elided, avoid emitting the |
| 2125 | // whole loop. |
| 2126 | bool CondConstant; |
| 2127 | llvm::BasicBlock *ContBlock = nullptr; |
| 2128 | if (ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) { |
| 2129 | if (!CondConstant) |
| 2130 | return false; |
| 2131 | } else { |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 2132 | auto *ThenBlock = createBasicBlock("omp.precond.then"); |
| 2133 | ContBlock = createBasicBlock("omp.precond.end"); |
| 2134 | emitPreCond(*this, S, S.getPreCond(), ThenBlock, ContBlock, |
Justin Bogner | 66242d6 | 2015-04-23 23:06:47 +0000 | [diff] [blame] | 2135 | getProfileCount(&S)); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 2136 | EmitBlock(ThenBlock); |
Justin Bogner | 66242d6 | 2015-04-23 23:06:47 +0000 | [diff] [blame] | 2137 | incrementProfileCounter(&S); |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 2138 | } |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 2139 | |
Alexey Bataev | 8b42706 | 2016-05-25 12:36:08 +0000 | [diff] [blame] | 2140 | bool Ordered = false; |
| 2141 | if (auto *OrderedClause = S.getSingleClause<OMPOrderedClause>()) { |
| 2142 | if (OrderedClause->getNumForLoops()) |
| 2143 | RT.emitDoacrossInit(*this, S); |
| 2144 | else |
| 2145 | Ordered = true; |
| 2146 | } |
| 2147 | |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 2148 | llvm::DenseSet<const Expr *> EmittedFinals; |
Alexey Bataev | 58e5bdb | 2015-06-18 04:45:29 +0000 | [diff] [blame] | 2149 | emitAlignedClause(*this, S); |
Alexey Bataev | 3b5b5c4 | 2015-06-18 10:10:12 +0000 | [diff] [blame] | 2150 | EmitOMPLinearClauseInit(S); |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 2151 | // Emit helper vars inits. |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2152 | |
| 2153 | std::pair<LValue, LValue> Bounds = CodeGenLoopBounds(*this, S); |
| 2154 | LValue LB = Bounds.first; |
| 2155 | LValue UB = Bounds.second; |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 2156 | LValue ST = |
| 2157 | EmitOMPHelperVar(*this, cast<DeclRefExpr>(S.getStrideVariable())); |
| 2158 | LValue IL = |
| 2159 | EmitOMPHelperVar(*this, cast<DeclRefExpr>(S.getIsLastIterVariable())); |
| 2160 | |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2161 | // Emit 'then' code. |
| 2162 | { |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2163 | OMPPrivateScope LoopScope(*this); |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 2164 | if (EmitOMPFirstprivateClause(S, LoopScope)) { |
| 2165 | // Emit implicit barrier to synchronize threads and avoid data races on |
Alexey Bataev | cd8b6a2 | 2016-02-15 08:07:17 +0000 | [diff] [blame] | 2166 | // initialization of firstprivate variables and post-update of |
| 2167 | // lastprivate variables. |
Alexey Bataev | 25e5b44 | 2015-09-15 12:52:43 +0000 | [diff] [blame] | 2168 | CGM.getOpenMPRuntime().emitBarrierCall( |
| 2169 | *this, S.getLocStart(), OMPD_unknown, /*EmitChecks=*/false, |
| 2170 | /*ForceSimpleCall=*/true); |
Alexey Bataev | 69c62a9 | 2015-04-15 04:52:20 +0000 | [diff] [blame] | 2171 | } |
Alexey Bataev | 50a6458 | 2015-04-22 12:24:45 +0000 | [diff] [blame] | 2172 | EmitOMPPrivateClause(S, LoopScope); |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 2173 | HasLastprivateClause = EmitOMPLastprivateClauseInit(S, LoopScope); |
Alexey Bataev | 7ebe5fd | 2015-04-22 13:43:03 +0000 | [diff] [blame] | 2174 | EmitOMPReductionClauseInit(S, LoopScope); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 2175 | EmitOMPPrivateLoopCounters(S, LoopScope); |
| 2176 | EmitOMPLinearClause(S, LoopScope); |
Alexander Musman | 7931b98 | 2015-03-16 07:14:41 +0000 | [diff] [blame] | 2177 | (void)LoopScope.Privatize(); |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2178 | |
| 2179 | // Detect the loop schedule kind and chunk. |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2180 | llvm::Value *Chunk = nullptr; |
Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 2181 | OpenMPScheduleTy ScheduleKind; |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2182 | if (auto *C = S.getSingleClause<OMPScheduleClause>()) { |
Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 2183 | ScheduleKind.Schedule = C->getScheduleKind(); |
| 2184 | ScheduleKind.M1 = C->getFirstScheduleModifier(); |
| 2185 | ScheduleKind.M2 = C->getSecondScheduleModifier(); |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2186 | if (const auto *Ch = C->getChunkSize()) { |
| 2187 | Chunk = EmitScalarExpr(Ch); |
| 2188 | Chunk = EmitScalarConversion(Chunk, Ch->getType(), |
| 2189 | S.getIterationVariable()->getType(), |
| 2190 | S.getLocStart()); |
| 2191 | } |
| 2192 | } |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2193 | const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); |
| 2194 | const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 2195 | // OpenMP 4.5, 2.7.1 Loop Construct, Description. |
| 2196 | // If the static schedule kind is specified or if the ordered clause is |
| 2197 | // specified, and if no monotonic modifier is specified, the effect will |
| 2198 | // be as if the monotonic modifier was specified. |
Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 2199 | if (RT.isStaticNonchunked(ScheduleKind.Schedule, |
Alexey Bataev | d7589ffe | 2015-05-20 13:12:48 +0000 | [diff] [blame] | 2200 | /* Chunked */ Chunk != nullptr) && |
| 2201 | !Ordered) { |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 2202 | if (isOpenMPSimdDirective(S.getDirectiveKind())) |
| 2203 | EmitOMPSimdInit(S, /*IsMonotonic=*/true); |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2204 | // OpenMP [2.7.1, Loop Construct, Description, table 2-1] |
| 2205 | // When no chunk_size is specified, the iteration space is divided into |
| 2206 | // chunks that are approximately equal in size, and at most one chunk is |
| 2207 | // distributed to each thread. Note that the size of the chunks is |
| 2208 | // unspecified in this case. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2209 | RT.emitForStaticInit(*this, S.getLocStart(), ScheduleKind, |
| 2210 | IVSize, IVSigned, Ordered, |
| 2211 | IL.getAddress(), LB.getAddress(), |
| 2212 | UB.getAddress(), ST.getAddress()); |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 2213 | auto LoopExit = |
| 2214 | getJumpDestInCurrentScope(createBasicBlock("omp.loop.exit")); |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2215 | // UB = min(UB, GlobalUB); |
| 2216 | EmitIgnoredExpr(S.getEnsureUpperBound()); |
| 2217 | // IV = LB; |
| 2218 | EmitIgnoredExpr(S.getInit()); |
| 2219 | // while (idx <= UB) { BODY; ++idx; } |
Alexey Bataev | ae05c29 | 2015-06-16 11:59:36 +0000 | [diff] [blame] | 2220 | EmitOMPInnerLoop(S, LoopScope.requiresCleanups(), S.getCond(), |
| 2221 | S.getInc(), |
Alexey Bataev | 0f34da1 | 2015-07-02 04:17:07 +0000 | [diff] [blame] | 2222 | [&S, LoopExit](CodeGenFunction &CGF) { |
| 2223 | CGF.EmitOMPLoopBody(S, LoopExit); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2224 | CGF.EmitStopPoint(&S); |
Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 2225 | }, |
| 2226 | [](CodeGenFunction &) {}); |
Alexey Bataev | 0f34da1 | 2015-07-02 04:17:07 +0000 | [diff] [blame] | 2227 | EmitBlock(LoopExit.getBlock()); |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2228 | // Tell the runtime we are done. |
Alexey Bataev | 957d856 | 2016-11-17 15:12:05 +0000 | [diff] [blame] | 2229 | auto &&CodeGen = [&S](CodeGenFunction &CGF) { |
| 2230 | CGF.CGM.getOpenMPRuntime().emitForStaticFinish(CGF, S.getLocEnd()); |
| 2231 | }; |
| 2232 | OMPCancelStack.emitExit(*this, S.getDirectiveKind(), CodeGen); |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 2233 | } else { |
Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 2234 | const bool IsMonotonic = |
| 2235 | Ordered || ScheduleKind.Schedule == OMPC_SCHEDULE_static || |
| 2236 | ScheduleKind.Schedule == OMPC_SCHEDULE_unknown || |
| 2237 | ScheduleKind.M1 == OMPC_SCHEDULE_MODIFIER_monotonic || |
| 2238 | ScheduleKind.M2 == OMPC_SCHEDULE_MODIFIER_monotonic; |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 2239 | // Emit the outer loop, which requests its work chunk [LB..UB] from |
| 2240 | // runtime and runs the inner loop to process it. |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2241 | const OMPLoopArguments LoopArguments(LB.getAddress(), UB.getAddress(), |
| 2242 | ST.getAddress(), IL.getAddress(), |
| 2243 | Chunk, EUB); |
Alexey Bataev | a6f2a14 | 2015-12-31 06:52:34 +0000 | [diff] [blame] | 2244 | EmitOMPForOuterLoop(ScheduleKind, IsMonotonic, S, LoopScope, Ordered, |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2245 | LoopArguments, CGDispatchBounds); |
Alexander Musman | df7a8e2 | 2015-01-22 08:49:35 +0000 | [diff] [blame] | 2246 | } |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 2247 | if (isOpenMPSimdDirective(S.getDirectiveKind())) { |
| 2248 | EmitOMPSimdFinal(S, |
| 2249 | [&](CodeGenFunction &CGF) -> llvm::Value * { |
| 2250 | return CGF.Builder.CreateIsNotNull( |
| 2251 | CGF.EmitLoadOfScalar(IL, S.getLocStart())); |
| 2252 | }); |
| 2253 | } |
Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 2254 | EmitOMPReductionClauseFinal( |
| 2255 | S, /*ReductionKind=*/isOpenMPSimdDirective(S.getDirectiveKind()) |
| 2256 | ? /*Parallel and Simd*/ OMPD_parallel_for_simd |
| 2257 | : /*Parallel only*/ OMPD_parallel); |
Alexey Bataev | 6120507 | 2016-03-02 04:57:40 +0000 | [diff] [blame] | 2258 | // Emit post-update of the reduction variables if IsLastIter != 0. |
| 2259 | emitPostUpdateForReductionClause( |
| 2260 | *this, S, [&](CodeGenFunction &CGF) -> llvm::Value * { |
| 2261 | return CGF.Builder.CreateIsNotNull( |
| 2262 | CGF.EmitLoadOfScalar(IL, S.getLocStart())); |
| 2263 | }); |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 2264 | // Emit final copy of the lastprivate variables if IsLastIter != 0. |
| 2265 | if (HasLastprivateClause) |
| 2266 | EmitOMPLastprivateClauseFinal( |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 2267 | S, isOpenMPSimdDirective(S.getDirectiveKind()), |
| 2268 | Builder.CreateIsNotNull(EmitLoadOfScalar(IL, S.getLocStart()))); |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2269 | } |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 2270 | EmitOMPLinearClauseFinal(S, [&](CodeGenFunction &CGF) -> llvm::Value * { |
Alexey Bataev | ef549a8 | 2016-03-09 09:49:09 +0000 | [diff] [blame] | 2271 | return CGF.Builder.CreateIsNotNull( |
| 2272 | CGF.EmitLoadOfScalar(IL, S.getLocStart())); |
| 2273 | }); |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2274 | // We're now done with the loop, so jump to the continuation block. |
Alexey Bataev | 62dbb97 | 2015-04-22 11:59:37 +0000 | [diff] [blame] | 2275 | if (ContBlock) { |
| 2276 | EmitBranch(ContBlock); |
| 2277 | EmitBlock(ContBlock, true); |
| 2278 | } |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2279 | } |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 2280 | return HasLastprivateClause; |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2281 | } |
| 2282 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2283 | /// The following two functions generate expressions for the loop lower |
| 2284 | /// and upper bounds in case of static and dynamic (dispatch) schedule |
| 2285 | /// of the associated 'for' or 'distribute' loop. |
| 2286 | static std::pair<LValue, LValue> |
| 2287 | emitForLoopBounds(CodeGenFunction &CGF, const OMPExecutableDirective &S) { |
| 2288 | const OMPLoopDirective &LS = cast<OMPLoopDirective>(S); |
| 2289 | LValue LB = |
| 2290 | EmitOMPHelperVar(CGF, cast<DeclRefExpr>(LS.getLowerBoundVariable())); |
| 2291 | LValue UB = |
| 2292 | EmitOMPHelperVar(CGF, cast<DeclRefExpr>(LS.getUpperBoundVariable())); |
| 2293 | return {LB, UB}; |
| 2294 | } |
| 2295 | |
| 2296 | /// When dealing with dispatch schedules (e.g. dynamic, guided) we do not |
| 2297 | /// consider the lower and upper bound expressions generated by the |
| 2298 | /// worksharing loop support, but we use 0 and the iteration space size as |
| 2299 | /// constants |
| 2300 | static std::pair<llvm::Value *, llvm::Value *> |
| 2301 | emitDispatchForLoopBounds(CodeGenFunction &CGF, const OMPExecutableDirective &S, |
| 2302 | Address LB, Address UB) { |
| 2303 | const OMPLoopDirective &LS = cast<OMPLoopDirective>(S); |
| 2304 | const Expr *IVExpr = LS.getIterationVariable(); |
| 2305 | const unsigned IVSize = CGF.getContext().getTypeSize(IVExpr->getType()); |
| 2306 | llvm::Value *LBVal = CGF.Builder.getIntN(IVSize, 0); |
| 2307 | llvm::Value *UBVal = CGF.EmitScalarExpr(LS.getLastIteration()); |
| 2308 | return {LBVal, UBVal}; |
| 2309 | } |
| 2310 | |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2311 | void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { |
Alexey Bataev | 38e8953 | 2015-04-16 04:54:05 +0000 | [diff] [blame] | 2312 | bool HasLastprivates = false; |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2313 | auto &&CodeGen = [&S, &HasLastprivates](CodeGenFunction &CGF, |
| 2314 | PrePostActionTy &) { |
Alexey Bataev | 957d856 | 2016-11-17 15:12:05 +0000 | [diff] [blame] | 2315 | OMPCancelStackRAII CancelRegion(CGF, OMPD_for, S.hasCancel()); |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2316 | HasLastprivates = CGF.EmitOMPWorksharingLoop(S, S.getEnsureUpperBound(), |
| 2317 | emitForLoopBounds, |
| 2318 | emitDispatchForLoopBounds); |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2319 | }; |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2320 | { |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 2321 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2322 | CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_for, CodeGen, |
| 2323 | S.hasCancel()); |
| 2324 | } |
Alexander Musman | c638868 | 2014-12-15 07:07:06 +0000 | [diff] [blame] | 2325 | |
| 2326 | // Emit an implicit barrier at the end. |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 2327 | if (!S.getSingleClause<OMPNowaitClause>() || HasLastprivates) { |
Alexey Bataev | f268568 | 2015-03-30 04:30:22 +0000 | [diff] [blame] | 2328 | CGM.getOpenMPRuntime().emitBarrierCall(*this, S.getLocStart(), OMPD_for); |
| 2329 | } |
Alexey Bataev | f29276e | 2014-06-18 04:14:57 +0000 | [diff] [blame] | 2330 | } |
Alexey Bataev | d3f8dd2 | 2014-06-25 11:44:49 +0000 | [diff] [blame] | 2331 | |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 2332 | void CodeGenFunction::EmitOMPForSimdDirective(const OMPForSimdDirective &S) { |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 2333 | bool HasLastprivates = false; |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2334 | auto &&CodeGen = [&S, &HasLastprivates](CodeGenFunction &CGF, |
| 2335 | PrePostActionTy &) { |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2336 | HasLastprivates = CGF.EmitOMPWorksharingLoop(S, S.getEnsureUpperBound(), |
| 2337 | emitForLoopBounds, |
| 2338 | emitDispatchForLoopBounds); |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2339 | }; |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2340 | { |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 2341 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2342 | CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_simd, CodeGen); |
| 2343 | } |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 2344 | |
| 2345 | // Emit an implicit barrier at the end. |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 2346 | if (!S.getSingleClause<OMPNowaitClause>() || HasLastprivates) { |
Alexey Bataev | cbdcbb7 | 2015-06-17 07:45:51 +0000 | [diff] [blame] | 2347 | CGM.getOpenMPRuntime().emitBarrierCall(*this, S.getLocStart(), OMPD_for); |
| 2348 | } |
Alexander Musman | f82886e | 2014-09-18 05:12:34 +0000 | [diff] [blame] | 2349 | } |
| 2350 | |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 2351 | static LValue createSectionLVal(CodeGenFunction &CGF, QualType Ty, |
| 2352 | const Twine &Name, |
| 2353 | llvm::Value *Init = nullptr) { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2354 | auto LVal = CGF.MakeAddrLValue(CGF.CreateMemTemp(Ty, Name), Ty); |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 2355 | if (Init) |
Akira Hatanaka | 642f799 | 2016-10-18 19:05:41 +0000 | [diff] [blame] | 2356 | CGF.EmitStoreThroughLValue(RValue::get(Init), LVal, /*isInit*/ true); |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 2357 | return LVal; |
Alexey Bataev | d3f8dd2 | 2014-06-25 11:44:49 +0000 | [diff] [blame] | 2358 | } |
| 2359 | |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2360 | void CodeGenFunction::EmitSections(const OMPExecutableDirective &S) { |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 2361 | auto *Stmt = cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt(); |
| 2362 | auto *CS = dyn_cast<CompoundStmt>(Stmt); |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2363 | bool HasLastprivates = false; |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2364 | auto &&CodeGen = [&S, Stmt, CS, &HasLastprivates](CodeGenFunction &CGF, |
| 2365 | PrePostActionTy &) { |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2366 | auto &C = CGF.CGM.getContext(); |
| 2367 | auto KmpInt32Ty = C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/1); |
| 2368 | // Emit helper vars inits. |
| 2369 | LValue LB = createSectionLVal(CGF, KmpInt32Ty, ".omp.sections.lb.", |
| 2370 | CGF.Builder.getInt32(0)); |
| 2371 | auto *GlobalUBVal = CS != nullptr ? CGF.Builder.getInt32(CS->size() - 1) |
| 2372 | : CGF.Builder.getInt32(0); |
| 2373 | LValue UB = |
| 2374 | createSectionLVal(CGF, KmpInt32Ty, ".omp.sections.ub.", GlobalUBVal); |
| 2375 | LValue ST = createSectionLVal(CGF, KmpInt32Ty, ".omp.sections.st.", |
| 2376 | CGF.Builder.getInt32(1)); |
| 2377 | LValue IL = createSectionLVal(CGF, KmpInt32Ty, ".omp.sections.il.", |
| 2378 | CGF.Builder.getInt32(0)); |
| 2379 | // Loop counter. |
| 2380 | LValue IV = createSectionLVal(CGF, KmpInt32Ty, ".omp.sections.iv."); |
| 2381 | OpaqueValueExpr IVRefExpr(S.getLocStart(), KmpInt32Ty, VK_LValue); |
| 2382 | CodeGenFunction::OpaqueValueMapping OpaqueIV(CGF, &IVRefExpr, IV); |
| 2383 | OpaqueValueExpr UBRefExpr(S.getLocStart(), KmpInt32Ty, VK_LValue); |
| 2384 | CodeGenFunction::OpaqueValueMapping OpaqueUB(CGF, &UBRefExpr, UB); |
| 2385 | // Generate condition for loop. |
| 2386 | BinaryOperator Cond(&IVRefExpr, &UBRefExpr, BO_LE, C.BoolTy, VK_RValue, |
Adam Nemet | 484aa45 | 2017-03-27 19:17:25 +0000 | [diff] [blame] | 2387 | OK_Ordinary, S.getLocStart(), FPOptions()); |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2388 | // Increment for loop counter. |
| 2389 | UnaryOperator Inc(&IVRefExpr, UO_PreInc, KmpInt32Ty, VK_RValue, OK_Ordinary, |
| 2390 | S.getLocStart()); |
| 2391 | auto BodyGen = [Stmt, CS, &S, &IV](CodeGenFunction &CGF) { |
| 2392 | // Iterate through all sections and emit a switch construct: |
| 2393 | // switch (IV) { |
| 2394 | // case 0: |
| 2395 | // <SectionStmt[0]>; |
| 2396 | // break; |
| 2397 | // ... |
| 2398 | // case <NumSection> - 1: |
| 2399 | // <SectionStmt[<NumSection> - 1]>; |
| 2400 | // break; |
| 2401 | // } |
| 2402 | // .omp.sections.exit: |
| 2403 | auto *ExitBB = CGF.createBasicBlock(".omp.sections.exit"); |
| 2404 | auto *SwitchStmt = CGF.Builder.CreateSwitch( |
| 2405 | CGF.EmitLoadOfLValue(IV, S.getLocStart()).getScalarVal(), ExitBB, |
| 2406 | CS == nullptr ? 1 : CS->size()); |
| 2407 | if (CS) { |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2408 | unsigned CaseNumber = 0; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 2409 | for (auto *SubStmt : CS->children()) { |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2410 | auto CaseBB = CGF.createBasicBlock(".omp.sections.case"); |
| 2411 | CGF.EmitBlock(CaseBB); |
| 2412 | SwitchStmt->addCase(CGF.Builder.getInt32(CaseNumber), CaseBB); |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 2413 | CGF.EmitStmt(SubStmt); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2414 | CGF.EmitBranch(ExitBB); |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 2415 | ++CaseNumber; |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2416 | } |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2417 | } else { |
| 2418 | auto CaseBB = CGF.createBasicBlock(".omp.sections.case"); |
| 2419 | CGF.EmitBlock(CaseBB); |
| 2420 | SwitchStmt->addCase(CGF.Builder.getInt32(0), CaseBB); |
| 2421 | CGF.EmitStmt(Stmt); |
| 2422 | CGF.EmitBranch(ExitBB); |
Alexey Bataev | 2cb9b95 | 2015-04-24 03:37:03 +0000 | [diff] [blame] | 2423 | } |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2424 | CGF.EmitBlock(ExitBB, /*IsFinished=*/true); |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 2425 | }; |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2426 | |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2427 | CodeGenFunction::OMPPrivateScope LoopScope(CGF); |
| 2428 | if (CGF.EmitOMPFirstprivateClause(S, LoopScope)) { |
Alexey Bataev | 9efc03b | 2015-04-27 04:34:03 +0000 | [diff] [blame] | 2429 | // Emit implicit barrier to synchronize threads and avoid data races on |
Alexey Bataev | cd8b6a2 | 2016-02-15 08:07:17 +0000 | [diff] [blame] | 2430 | // initialization of firstprivate variables and post-update of lastprivate |
| 2431 | // variables. |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2432 | CGF.CGM.getOpenMPRuntime().emitBarrierCall( |
| 2433 | CGF, S.getLocStart(), OMPD_unknown, /*EmitChecks=*/false, |
| 2434 | /*ForceSimpleCall=*/true); |
Alexey Bataev | 9efc03b | 2015-04-27 04:34:03 +0000 | [diff] [blame] | 2435 | } |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2436 | CGF.EmitOMPPrivateClause(S, LoopScope); |
| 2437 | HasLastprivates = CGF.EmitOMPLastprivateClauseInit(S, LoopScope); |
| 2438 | CGF.EmitOMPReductionClauseInit(S, LoopScope); |
| 2439 | (void)LoopScope.Privatize(); |
Alexey Bataev | 2cb9b95 | 2015-04-24 03:37:03 +0000 | [diff] [blame] | 2440 | |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2441 | // Emit static non-chunked loop. |
Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 2442 | OpenMPScheduleTy ScheduleKind; |
| 2443 | ScheduleKind.Schedule = OMPC_SCHEDULE_static; |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2444 | CGF.CGM.getOpenMPRuntime().emitForStaticInit( |
Alexey Bataev | 9ebd742 | 2016-05-10 09:57:36 +0000 | [diff] [blame] | 2445 | CGF, S.getLocStart(), ScheduleKind, /*IVSize=*/32, |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2446 | /*IVSigned=*/true, /*Ordered=*/false, IL.getAddress(), LB.getAddress(), |
| 2447 | UB.getAddress(), ST.getAddress()); |
| 2448 | // UB = min(UB, GlobalUB); |
| 2449 | auto *UBVal = CGF.EmitLoadOfScalar(UB, S.getLocStart()); |
| 2450 | auto *MinUBGlobalUB = CGF.Builder.CreateSelect( |
| 2451 | CGF.Builder.CreateICmpSLT(UBVal, GlobalUBVal), UBVal, GlobalUBVal); |
| 2452 | CGF.EmitStoreOfScalar(MinUBGlobalUB, UB); |
| 2453 | // IV = LB; |
| 2454 | CGF.EmitStoreOfScalar(CGF.EmitLoadOfScalar(LB, S.getLocStart()), IV); |
| 2455 | // while (idx <= UB) { BODY; ++idx; } |
| 2456 | CGF.EmitOMPInnerLoop(S, /*RequiresCleanup=*/false, &Cond, &Inc, BodyGen, |
| 2457 | [](CodeGenFunction &) {}); |
| 2458 | // Tell the runtime we are done. |
Alexey Bataev | 957d856 | 2016-11-17 15:12:05 +0000 | [diff] [blame] | 2459 | auto &&CodeGen = [&S](CodeGenFunction &CGF) { |
| 2460 | CGF.CGM.getOpenMPRuntime().emitForStaticFinish(CGF, S.getLocEnd()); |
| 2461 | }; |
| 2462 | CGF.OMPCancelStack.emitExit(CGF, S.getDirectiveKind(), CodeGen); |
Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 2463 | CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_parallel); |
Alexey Bataev | 6120507 | 2016-03-02 04:57:40 +0000 | [diff] [blame] | 2464 | // Emit post-update of the reduction variables if IsLastIter != 0. |
| 2465 | emitPostUpdateForReductionClause( |
| 2466 | CGF, S, [&](CodeGenFunction &CGF) -> llvm::Value * { |
| 2467 | return CGF.Builder.CreateIsNotNull( |
| 2468 | CGF.EmitLoadOfScalar(IL, S.getLocStart())); |
| 2469 | }); |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2470 | |
| 2471 | // Emit final copy of the lastprivate variables if IsLastIter != 0. |
| 2472 | if (HasLastprivates) |
| 2473 | CGF.EmitOMPLastprivateClauseFinal( |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 2474 | S, /*NoFinals=*/false, |
| 2475 | CGF.Builder.CreateIsNotNull( |
| 2476 | CGF.EmitLoadOfScalar(IL, S.getLocStart()))); |
Alexey Bataev | 68adb7d | 2015-04-14 03:29:22 +0000 | [diff] [blame] | 2477 | }; |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2478 | |
| 2479 | bool HasCancel = false; |
| 2480 | if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) |
| 2481 | HasCancel = OSD->hasCancel(); |
| 2482 | else if (auto *OPSD = dyn_cast<OMPParallelSectionsDirective>(&S)) |
| 2483 | HasCancel = OPSD->hasCancel(); |
Alexey Bataev | 957d856 | 2016-11-17 15:12:05 +0000 | [diff] [blame] | 2484 | OMPCancelStackRAII CancelRegion(*this, S.getDirectiveKind(), HasCancel); |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2485 | CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_sections, CodeGen, |
| 2486 | HasCancel); |
| 2487 | // Emit barrier for lastprivates only if 'sections' directive has 'nowait' |
| 2488 | // clause. Otherwise the barrier will be generated by the codegen for the |
| 2489 | // directive. |
| 2490 | if (HasLastprivates && S.getSingleClause<OMPNowaitClause>()) { |
Alexey Bataev | 2cb9b95 | 2015-04-24 03:37:03 +0000 | [diff] [blame] | 2491 | // Emit implicit barrier to synchronize threads and avoid data races on |
| 2492 | // initialization of firstprivate variables. |
Alexey Bataev | 3015bcc | 2016-01-22 08:56:50 +0000 | [diff] [blame] | 2493 | CGM.getOpenMPRuntime().emitBarrierCall(*this, S.getLocStart(), |
| 2494 | OMPD_unknown); |
Alexey Bataev | 2cb9b95 | 2015-04-24 03:37:03 +0000 | [diff] [blame] | 2495 | } |
Alexey Bataev | 68adb7d | 2015-04-14 03:29:22 +0000 | [diff] [blame] | 2496 | } |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 2497 | |
Alexey Bataev | 68adb7d | 2015-04-14 03:29:22 +0000 | [diff] [blame] | 2498 | void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2499 | { |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 2500 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2501 | EmitSections(S); |
| 2502 | } |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 2503 | // Emit an implicit barrier at the end. |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 2504 | if (!S.getSingleClause<OMPNowaitClause>()) { |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2505 | CGM.getOpenMPRuntime().emitBarrierCall(*this, S.getLocStart(), |
| 2506 | OMPD_sections); |
Alexey Bataev | f268568 | 2015-03-30 04:30:22 +0000 | [diff] [blame] | 2507 | } |
Alexey Bataev | 2df54a0 | 2015-03-12 08:53:29 +0000 | [diff] [blame] | 2508 | } |
| 2509 | |
| 2510 | void CodeGenFunction::EmitOMPSectionDirective(const OMPSectionDirective &S) { |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2511 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2512 | CGF.EmitStmt(cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2513 | }; |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 2514 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | 25e5b44 | 2015-09-15 12:52:43 +0000 | [diff] [blame] | 2515 | CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_section, CodeGen, |
| 2516 | S.hasCancel()); |
Alexey Bataev | 1e0498a | 2014-06-26 08:21:58 +0000 | [diff] [blame] | 2517 | } |
| 2518 | |
Alexey Bataev | 6956e2e | 2015-02-05 06:35:41 +0000 | [diff] [blame] | 2519 | void CodeGenFunction::EmitOMPSingleDirective(const OMPSingleDirective &S) { |
Alexey Bataev | a63048e | 2015-03-23 06:18:07 +0000 | [diff] [blame] | 2520 | llvm::SmallVector<const Expr *, 8> CopyprivateVars; |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 2521 | llvm::SmallVector<const Expr *, 8> DestExprs; |
Alexey Bataev | a63048e | 2015-03-23 06:18:07 +0000 | [diff] [blame] | 2522 | llvm::SmallVector<const Expr *, 8> SrcExprs; |
Alexey Bataev | a63048e | 2015-03-23 06:18:07 +0000 | [diff] [blame] | 2523 | llvm::SmallVector<const Expr *, 8> AssignmentOps; |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2524 | // Check if there are any 'copyprivate' clauses associated with this |
Alexey Bataev | cd8b6a2 | 2016-02-15 08:07:17 +0000 | [diff] [blame] | 2525 | // 'single' construct. |
Alexey Bataev | a63048e | 2015-03-23 06:18:07 +0000 | [diff] [blame] | 2526 | // Build a list of copyprivate variables along with helper expressions |
| 2527 | // (<source>, <destination>, <destination>=<source> expressions) |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 2528 | for (const auto *C : S.getClausesOfKind<OMPCopyprivateClause>()) { |
Alexey Bataev | a63048e | 2015-03-23 06:18:07 +0000 | [diff] [blame] | 2529 | CopyprivateVars.append(C->varlists().begin(), C->varlists().end()); |
Alexey Bataev | 420d45b | 2015-04-14 05:11:24 +0000 | [diff] [blame] | 2530 | DestExprs.append(C->destination_exprs().begin(), |
| 2531 | C->destination_exprs().end()); |
Alexey Bataev | a63048e | 2015-03-23 06:18:07 +0000 | [diff] [blame] | 2532 | SrcExprs.append(C->source_exprs().begin(), C->source_exprs().end()); |
Alexey Bataev | a63048e | 2015-03-23 06:18:07 +0000 | [diff] [blame] | 2533 | AssignmentOps.append(C->assignment_ops().begin(), |
| 2534 | C->assignment_ops().end()); |
| 2535 | } |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2536 | // Emit code for 'single' region along with 'copyprivate' clauses |
| 2537 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 2538 | Action.Enter(CGF); |
| 2539 | OMPPrivateScope SingleScope(CGF); |
| 2540 | (void)CGF.EmitOMPFirstprivateClause(S, SingleScope); |
| 2541 | CGF.EmitOMPPrivateClause(S, SingleScope); |
| 2542 | (void)SingleScope.Privatize(); |
| 2543 | CGF.EmitStmt(cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 2544 | }; |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2545 | { |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 2546 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | 3392d76 | 2016-02-16 11:18:12 +0000 | [diff] [blame] | 2547 | CGM.getOpenMPRuntime().emitSingleRegion(*this, CodeGen, S.getLocStart(), |
| 2548 | CopyprivateVars, DestExprs, |
| 2549 | SrcExprs, AssignmentOps); |
| 2550 | } |
| 2551 | // Emit an implicit barrier at the end (to avoid data race on firstprivate |
| 2552 | // init or if no 'nowait' clause was specified and no 'copyprivate' clause). |
Alexey Bataev | 417089f | 2016-02-17 13:19:37 +0000 | [diff] [blame] | 2553 | if (!S.getSingleClause<OMPNowaitClause>() && CopyprivateVars.empty()) { |
Alexey Bataev | 5521d78 | 2015-04-24 04:21:15 +0000 | [diff] [blame] | 2554 | CGM.getOpenMPRuntime().emitBarrierCall( |
| 2555 | *this, S.getLocStart(), |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 2556 | S.getSingleClause<OMPNowaitClause>() ? OMPD_unknown : OMPD_single); |
Alexey Bataev | f268568 | 2015-03-30 04:30:22 +0000 | [diff] [blame] | 2557 | } |
Alexey Bataev | d1e40fb | 2014-06-26 12:05:45 +0000 | [diff] [blame] | 2558 | } |
| 2559 | |
Alexey Bataev | 8d69065 | 2014-12-04 07:23:53 +0000 | [diff] [blame] | 2560 | void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2561 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 2562 | Action.Enter(CGF); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2563 | CGF.EmitStmt(cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2564 | }; |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 2565 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2566 | CGM.getOpenMPRuntime().emitMasterRegion(*this, CodeGen, S.getLocStart()); |
Alexander Musman | 80c2289 | 2014-07-17 08:54:58 +0000 | [diff] [blame] | 2567 | } |
| 2568 | |
Alexey Bataev | 3a3bf0b | 2014-09-22 10:01:53 +0000 | [diff] [blame] | 2569 | void CodeGenFunction::EmitOMPCriticalDirective(const OMPCriticalDirective &S) { |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2570 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 2571 | Action.Enter(CGF); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2572 | CGF.EmitStmt(cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2573 | }; |
Alexey Bataev | fc57d16 | 2015-12-15 10:55:09 +0000 | [diff] [blame] | 2574 | Expr *Hint = nullptr; |
| 2575 | if (auto *HintClause = S.getSingleClause<OMPHintClause>()) |
| 2576 | Hint = HintClause->getHint(); |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 2577 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | fc57d16 | 2015-12-15 10:55:09 +0000 | [diff] [blame] | 2578 | CGM.getOpenMPRuntime().emitCriticalRegion(*this, |
| 2579 | S.getDirectiveName().getAsString(), |
| 2580 | CodeGen, S.getLocStart(), Hint); |
Alexander Musman | d9ed09f | 2014-07-21 09:42:05 +0000 | [diff] [blame] | 2581 | } |
| 2582 | |
Alexey Bataev | 671605e | 2015-04-13 05:28:11 +0000 | [diff] [blame] | 2583 | void CodeGenFunction::EmitOMPParallelForDirective( |
| 2584 | const OMPParallelForDirective &S) { |
| 2585 | // Emit directive as a combined directive that consists of two implicit |
| 2586 | // directives: 'parallel' with 'for' directive. |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2587 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
Alexey Bataev | 957d856 | 2016-11-17 15:12:05 +0000 | [diff] [blame] | 2588 | OMPCancelStackRAII CancelRegion(CGF, OMPD_parallel_for, S.hasCancel()); |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2589 | CGF.EmitOMPWorksharingLoop(S, S.getEnsureUpperBound(), emitForLoopBounds, |
| 2590 | emitDispatchForLoopBounds); |
Alexey Bataev | 671605e | 2015-04-13 05:28:11 +0000 | [diff] [blame] | 2591 | }; |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2592 | emitCommonOMPParallelDirective(*this, S, OMPD_for, CodeGen, |
| 2593 | emitEmptyBoundParameters); |
Alexey Bataev | 4acb859 | 2014-07-07 13:01:15 +0000 | [diff] [blame] | 2594 | } |
| 2595 | |
Alexander Musman | e4e893b | 2014-09-23 09:33:00 +0000 | [diff] [blame] | 2596 | void CodeGenFunction::EmitOMPParallelForSimdDirective( |
Alexey Bataev | 3b5b5c4 | 2015-06-18 10:10:12 +0000 | [diff] [blame] | 2597 | const OMPParallelForSimdDirective &S) { |
| 2598 | // Emit directive as a combined directive that consists of two implicit |
| 2599 | // directives: 'parallel' with 'for' directive. |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2600 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2601 | CGF.EmitOMPWorksharingLoop(S, S.getEnsureUpperBound(), emitForLoopBounds, |
| 2602 | emitDispatchForLoopBounds); |
Alexey Bataev | 3b5b5c4 | 2015-06-18 10:10:12 +0000 | [diff] [blame] | 2603 | }; |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2604 | emitCommonOMPParallelDirective(*this, S, OMPD_simd, CodeGen, |
| 2605 | emitEmptyBoundParameters); |
Alexander Musman | e4e893b | 2014-09-23 09:33:00 +0000 | [diff] [blame] | 2606 | } |
| 2607 | |
Alexey Bataev | 84d0b3e | 2014-07-08 08:12:03 +0000 | [diff] [blame] | 2608 | void CodeGenFunction::EmitOMPParallelSectionsDirective( |
Alexey Bataev | 68adb7d | 2015-04-14 03:29:22 +0000 | [diff] [blame] | 2609 | const OMPParallelSectionsDirective &S) { |
| 2610 | // Emit directive as a combined directive that consists of two implicit |
| 2611 | // directives: 'parallel' with 'sections' directive. |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2612 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 2613 | CGF.EmitSections(S); |
| 2614 | }; |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2615 | emitCommonOMPParallelDirective(*this, S, OMPD_sections, CodeGen, |
| 2616 | emitEmptyBoundParameters); |
Alexey Bataev | 84d0b3e | 2014-07-08 08:12:03 +0000 | [diff] [blame] | 2617 | } |
| 2618 | |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2619 | void CodeGenFunction::EmitOMPTaskBasedDirective(const OMPExecutableDirective &S, |
| 2620 | const RegionCodeGenTy &BodyGen, |
| 2621 | const TaskGenTy &TaskGen, |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 2622 | OMPTaskDataTy &Data) { |
Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 2623 | // Emit outlined function for task construct. |
| 2624 | auto CS = cast<CapturedStmt>(S.getAssociatedStmt()); |
Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 2625 | auto *I = CS->getCapturedDecl()->param_begin(); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2626 | auto *PartId = std::next(I); |
Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 2627 | auto *TaskT = std::next(I, 4); |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 2628 | // Check if the task is final |
| 2629 | if (const auto *Clause = S.getSingleClause<OMPFinalClause>()) { |
| 2630 | // If the condition constant folds and can be elided, try to avoid emitting |
| 2631 | // the condition and the dead arm of the if/else. |
| 2632 | auto *Cond = Clause->getCondition(); |
| 2633 | bool CondConstant; |
| 2634 | if (ConstantFoldsToSimpleInteger(Cond, CondConstant)) |
| 2635 | Data.Final.setInt(CondConstant); |
| 2636 | else |
| 2637 | Data.Final.setPointer(EvaluateExprAsBool(Cond)); |
| 2638 | } else { |
| 2639 | // By default the task is not final. |
| 2640 | Data.Final.setInt(/*IntVal=*/false); |
| 2641 | } |
Alexey Bataev | 1e1e286 | 2016-05-10 12:21:02 +0000 | [diff] [blame] | 2642 | // Check if the task has 'priority' clause. |
| 2643 | if (const auto *Clause = S.getSingleClause<OMPPriorityClause>()) { |
Alexey Bataev | 1e1e286 | 2016-05-10 12:21:02 +0000 | [diff] [blame] | 2644 | auto *Prio = Clause->getPriority(); |
Alexey Bataev | 5140e74 | 2016-07-19 04:21:09 +0000 | [diff] [blame] | 2645 | Data.Priority.setInt(/*IntVal=*/true); |
Alexey Bataev | ad537bb | 2016-05-30 09:06:50 +0000 | [diff] [blame] | 2646 | Data.Priority.setPointer(EmitScalarConversion( |
| 2647 | EmitScalarExpr(Prio), Prio->getType(), |
| 2648 | getContext().getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/1), |
| 2649 | Prio->getExprLoc())); |
Alexey Bataev | 1e1e286 | 2016-05-10 12:21:02 +0000 | [diff] [blame] | 2650 | } |
Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 2651 | // The first function argument for tasks is a thread id, the second one is a |
| 2652 | // part id (0 for tied tasks, >=0 for untied task). |
Alexey Bataev | 3ae88e2 | 2015-05-22 08:56:35 +0000 | [diff] [blame] | 2653 | llvm::DenseSet<const VarDecl *> EmittedAsPrivate; |
| 2654 | // Get list of private variables. |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 2655 | for (const auto *C : S.getClausesOfKind<OMPPrivateClause>()) { |
Alexey Bataev | 3ae88e2 | 2015-05-22 08:56:35 +0000 | [diff] [blame] | 2656 | auto IRef = C->varlist_begin(); |
| 2657 | for (auto *IInit : C->private_copies()) { |
| 2658 | auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl()); |
| 2659 | if (EmittedAsPrivate.insert(OrigVD->getCanonicalDecl()).second) { |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2660 | Data.PrivateVars.push_back(*IRef); |
| 2661 | Data.PrivateCopies.push_back(IInit); |
Alexey Bataev | 3ae88e2 | 2015-05-22 08:56:35 +0000 | [diff] [blame] | 2662 | } |
| 2663 | ++IRef; |
| 2664 | } |
| 2665 | } |
| 2666 | EmittedAsPrivate.clear(); |
| 2667 | // Get list of firstprivate variables. |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 2668 | for (const auto *C : S.getClausesOfKind<OMPFirstprivateClause>()) { |
Alexey Bataev | 3ae88e2 | 2015-05-22 08:56:35 +0000 | [diff] [blame] | 2669 | auto IRef = C->varlist_begin(); |
| 2670 | auto IElemInitRef = C->inits().begin(); |
| 2671 | for (auto *IInit : C->private_copies()) { |
| 2672 | auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl()); |
| 2673 | if (EmittedAsPrivate.insert(OrigVD->getCanonicalDecl()).second) { |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2674 | Data.FirstprivateVars.push_back(*IRef); |
| 2675 | Data.FirstprivateCopies.push_back(IInit); |
| 2676 | Data.FirstprivateInits.push_back(*IElemInitRef); |
Alexey Bataev | 3ae88e2 | 2015-05-22 08:56:35 +0000 | [diff] [blame] | 2677 | } |
Richard Trieu | cc3949d | 2016-02-18 22:34:54 +0000 | [diff] [blame] | 2678 | ++IRef; |
| 2679 | ++IElemInitRef; |
Alexey Bataev | 3ae88e2 | 2015-05-22 08:56:35 +0000 | [diff] [blame] | 2680 | } |
| 2681 | } |
Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 2682 | // Get list of lastprivate variables (for taskloops). |
| 2683 | llvm::DenseMap<const VarDecl *, const DeclRefExpr *> LastprivateDstsOrigs; |
| 2684 | for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { |
| 2685 | auto IRef = C->varlist_begin(); |
| 2686 | auto ID = C->destination_exprs().begin(); |
| 2687 | for (auto *IInit : C->private_copies()) { |
| 2688 | auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl()); |
| 2689 | if (EmittedAsPrivate.insert(OrigVD->getCanonicalDecl()).second) { |
| 2690 | Data.LastprivateVars.push_back(*IRef); |
| 2691 | Data.LastprivateCopies.push_back(IInit); |
| 2692 | } |
| 2693 | LastprivateDstsOrigs.insert( |
| 2694 | {cast<VarDecl>(cast<DeclRefExpr>(*ID)->getDecl()), |
| 2695 | cast<DeclRefExpr>(*IRef)}); |
| 2696 | ++IRef; |
| 2697 | ++ID; |
| 2698 | } |
| 2699 | } |
Alexey Bataev | 1d2353d | 2015-06-24 11:01:36 +0000 | [diff] [blame] | 2700 | // Build list of dependences. |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2701 | for (const auto *C : S.getClausesOfKind<OMPDependClause>()) |
| 2702 | for (auto *IRef : C->varlists()) |
| 2703 | Data.Dependences.push_back(std::make_pair(C->getDependencyKind(), IRef)); |
Malcolm Parsons | c6e4583 | 2017-01-13 18:55:32 +0000 | [diff] [blame] | 2704 | auto &&CodeGen = [&Data, CS, &BodyGen, &LastprivateDstsOrigs]( |
Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 2705 | CodeGenFunction &CGF, PrePostActionTy &Action) { |
Alexey Bataev | 3ae88e2 | 2015-05-22 08:56:35 +0000 | [diff] [blame] | 2706 | // Set proper addresses for generated private copies. |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2707 | OMPPrivateScope Scope(CGF); |
Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 2708 | if (!Data.PrivateVars.empty() || !Data.FirstprivateVars.empty() || |
| 2709 | !Data.LastprivateVars.empty()) { |
Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 2710 | auto *CopyFn = CGF.Builder.CreateLoad( |
| 2711 | CGF.GetAddrOfLocalVar(CS->getCapturedDecl()->getParam(3))); |
| 2712 | auto *PrivatesPtr = CGF.Builder.CreateLoad( |
| 2713 | CGF.GetAddrOfLocalVar(CS->getCapturedDecl()->getParam(2))); |
| 2714 | // Map privates. |
| 2715 | llvm::SmallVector<std::pair<const VarDecl *, Address>, 16> PrivatePtrs; |
| 2716 | llvm::SmallVector<llvm::Value *, 16> CallArgs; |
| 2717 | CallArgs.push_back(PrivatesPtr); |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2718 | for (auto *E : Data.PrivateVars) { |
Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 2719 | auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); |
| 2720 | Address PrivatePtr = CGF.CreateMemTemp( |
| 2721 | CGF.getContext().getPointerType(E->getType()), ".priv.ptr.addr"); |
| 2722 | PrivatePtrs.push_back(std::make_pair(VD, PrivatePtr)); |
| 2723 | CallArgs.push_back(PrivatePtr.getPointer()); |
Alexey Bataev | 3ae88e2 | 2015-05-22 08:56:35 +0000 | [diff] [blame] | 2724 | } |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2725 | for (auto *E : Data.FirstprivateVars) { |
Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 2726 | auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); |
| 2727 | Address PrivatePtr = |
| 2728 | CGF.CreateMemTemp(CGF.getContext().getPointerType(E->getType()), |
| 2729 | ".firstpriv.ptr.addr"); |
| 2730 | PrivatePtrs.push_back(std::make_pair(VD, PrivatePtr)); |
| 2731 | CallArgs.push_back(PrivatePtr.getPointer()); |
Alexey Bataev | 3ae88e2 | 2015-05-22 08:56:35 +0000 | [diff] [blame] | 2732 | } |
Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 2733 | for (auto *E : Data.LastprivateVars) { |
| 2734 | auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); |
| 2735 | Address PrivatePtr = |
| 2736 | CGF.CreateMemTemp(CGF.getContext().getPointerType(E->getType()), |
| 2737 | ".lastpriv.ptr.addr"); |
| 2738 | PrivatePtrs.push_back(std::make_pair(VD, PrivatePtr)); |
| 2739 | CallArgs.push_back(PrivatePtr.getPointer()); |
| 2740 | } |
Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 2741 | CGF.EmitRuntimeCall(CopyFn, CallArgs); |
Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 2742 | for (auto &&Pair : LastprivateDstsOrigs) { |
| 2743 | auto *OrigVD = cast<VarDecl>(Pair.second->getDecl()); |
| 2744 | DeclRefExpr DRE( |
| 2745 | const_cast<VarDecl *>(OrigVD), |
| 2746 | /*RefersToEnclosingVariableOrCapture=*/CGF.CapturedStmtInfo->lookup( |
| 2747 | OrigVD) != nullptr, |
| 2748 | Pair.second->getType(), VK_LValue, Pair.second->getExprLoc()); |
| 2749 | Scope.addPrivate(Pair.first, [&CGF, &DRE]() { |
| 2750 | return CGF.EmitLValue(&DRE).getAddress(); |
| 2751 | }); |
| 2752 | } |
Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 2753 | for (auto &&Pair : PrivatePtrs) { |
| 2754 | Address Replacement(CGF.Builder.CreateLoad(Pair.second), |
| 2755 | CGF.getContext().getDeclAlign(Pair.first)); |
| 2756 | Scope.addPrivate(Pair.first, [Replacement]() { return Replacement; }); |
| 2757 | } |
Alexey Bataev | 3ae88e2 | 2015-05-22 08:56:35 +0000 | [diff] [blame] | 2758 | } |
Alexey Bataev | 48591dd | 2016-04-20 04:01:36 +0000 | [diff] [blame] | 2759 | (void)Scope.Privatize(); |
| 2760 | |
| 2761 | Action.Enter(CGF); |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2762 | BodyGen(CGF); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 2763 | }; |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2764 | auto *OutlinedFn = CGM.getOpenMPRuntime().emitTaskOutlinedFunction( |
| 2765 | S, *I, *PartId, *TaskT, S.getDirectiveKind(), CodeGen, Data.Tied, |
| 2766 | Data.NumberOfParts); |
| 2767 | OMPLexicalScope Scope(*this, S); |
| 2768 | TaskGen(*this, OutlinedFn, Data); |
| 2769 | } |
| 2770 | |
| 2771 | void CodeGenFunction::EmitOMPTaskDirective(const OMPTaskDirective &S) { |
| 2772 | // Emit outlined function for task construct. |
| 2773 | auto CS = cast<CapturedStmt>(S.getAssociatedStmt()); |
| 2774 | auto CapturedStruct = GenerateCapturedStmtArgument(*CS); |
Alexey Bataev | 62b63b1 | 2015-03-10 07:28:44 +0000 | [diff] [blame] | 2775 | auto SharedsTy = getContext().getRecordType(CS->getCapturedRecordDecl()); |
Alexey Bataev | 1d67713 | 2015-04-22 13:57:31 +0000 | [diff] [blame] | 2776 | const Expr *IfCond = nullptr; |
Alexey Bataev | 7371aa3 | 2015-09-03 08:45:56 +0000 | [diff] [blame] | 2777 | for (const auto *C : S.getClausesOfKind<OMPIfClause>()) { |
| 2778 | if (C->getNameModifier() == OMPD_unknown || |
| 2779 | C->getNameModifier() == OMPD_task) { |
| 2780 | IfCond = C->getCondition(); |
| 2781 | break; |
| 2782 | } |
Alexey Bataev | 1d67713 | 2015-04-22 13:57:31 +0000 | [diff] [blame] | 2783 | } |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2784 | |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 2785 | OMPTaskDataTy Data; |
| 2786 | // Check if we should emit tied or untied task. |
| 2787 | Data.Tied = !S.getSingleClause<OMPUntiedClause>(); |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2788 | auto &&BodyGen = [CS](CodeGenFunction &CGF, PrePostActionTy &) { |
| 2789 | CGF.EmitStmt(CS->getCapturedStmt()); |
| 2790 | }; |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 2791 | auto &&TaskGen = [&S, SharedsTy, CapturedStruct, |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2792 | IfCond](CodeGenFunction &CGF, llvm::Value *OutlinedFn, |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 2793 | const OMPTaskDataTy &Data) { |
| 2794 | CGF.CGM.getOpenMPRuntime().emitTaskCall(CGF, S.getLocStart(), S, OutlinedFn, |
| 2795 | SharedsTy, CapturedStruct, IfCond, |
| 2796 | Data); |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 2797 | }; |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 2798 | EmitOMPTaskBasedDirective(S, BodyGen, TaskGen, Data); |
Alexey Bataev | 9c2e8ee | 2014-07-11 11:25:16 +0000 | [diff] [blame] | 2799 | } |
| 2800 | |
Alexey Bataev | 9f797f3 | 2015-02-05 05:57:51 +0000 | [diff] [blame] | 2801 | void CodeGenFunction::EmitOMPTaskyieldDirective( |
| 2802 | const OMPTaskyieldDirective &S) { |
Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 2803 | CGM.getOpenMPRuntime().emitTaskyieldCall(*this, S.getLocStart()); |
Alexey Bataev | 68446b7 | 2014-07-18 07:47:19 +0000 | [diff] [blame] | 2804 | } |
| 2805 | |
Alexey Bataev | 8f7c1b0 | 2014-12-05 04:09:23 +0000 | [diff] [blame] | 2806 | void CodeGenFunction::EmitOMPBarrierDirective(const OMPBarrierDirective &S) { |
Alexey Bataev | f268568 | 2015-03-30 04:30:22 +0000 | [diff] [blame] | 2807 | CGM.getOpenMPRuntime().emitBarrierCall(*this, S.getLocStart(), OMPD_barrier); |
Alexey Bataev | 4d1dfea | 2014-07-18 09:11:51 +0000 | [diff] [blame] | 2808 | } |
| 2809 | |
Alexey Bataev | 8b8e202 | 2015-04-27 05:22:09 +0000 | [diff] [blame] | 2810 | void CodeGenFunction::EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S) { |
| 2811 | CGM.getOpenMPRuntime().emitTaskwaitCall(*this, S.getLocStart()); |
Alexey Bataev | 2df347a | 2014-07-18 10:17:07 +0000 | [diff] [blame] | 2812 | } |
| 2813 | |
Alexey Bataev | c30dd2d | 2015-06-18 12:14:09 +0000 | [diff] [blame] | 2814 | void CodeGenFunction::EmitOMPTaskgroupDirective( |
| 2815 | const OMPTaskgroupDirective &S) { |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2816 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 2817 | Action.Enter(CGF); |
Alexey Bataev | c30dd2d | 2015-06-18 12:14:09 +0000 | [diff] [blame] | 2818 | CGF.EmitStmt(cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
Alexey Bataev | c30dd2d | 2015-06-18 12:14:09 +0000 | [diff] [blame] | 2819 | }; |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 2820 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | c30dd2d | 2015-06-18 12:14:09 +0000 | [diff] [blame] | 2821 | CGM.getOpenMPRuntime().emitTaskgroupRegion(*this, CodeGen, S.getLocStart()); |
| 2822 | } |
| 2823 | |
Alexey Bataev | cc37cc1 | 2014-11-20 04:34:54 +0000 | [diff] [blame] | 2824 | void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { |
Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 2825 | CGM.getOpenMPRuntime().emitFlush(*this, [&]() -> ArrayRef<const Expr *> { |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 2826 | if (const auto *FlushClause = S.getSingleClause<OMPFlushClause>()) { |
Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 2827 | return llvm::makeArrayRef(FlushClause->varlist_begin(), |
| 2828 | FlushClause->varlist_end()); |
| 2829 | } |
| 2830 | return llvm::None; |
| 2831 | }(), S.getLocStart()); |
Alexey Bataev | 6125da9 | 2014-07-21 11:26:11 +0000 | [diff] [blame] | 2832 | } |
| 2833 | |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2834 | void CodeGenFunction::EmitOMPDistributeLoop(const OMPLoopDirective &S, |
| 2835 | const CodeGenLoopTy &CodeGenLoop, |
| 2836 | Expr *IncExpr) { |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2837 | // Emit the loop iteration variable. |
| 2838 | auto IVExpr = cast<DeclRefExpr>(S.getIterationVariable()); |
| 2839 | auto IVDecl = cast<VarDecl>(IVExpr->getDecl()); |
| 2840 | EmitVarDecl(*IVDecl); |
| 2841 | |
| 2842 | // Emit the iterations count variable. |
| 2843 | // If it is not a variable, Sema decided to calculate iterations count on each |
| 2844 | // iteration (e.g., it is foldable into a constant). |
| 2845 | if (auto LIExpr = dyn_cast<DeclRefExpr>(S.getLastIteration())) { |
| 2846 | EmitVarDecl(*cast<VarDecl>(LIExpr->getDecl())); |
| 2847 | // Emit calculation of the iterations count. |
| 2848 | EmitIgnoredExpr(S.getCalcLastIteration()); |
| 2849 | } |
| 2850 | |
| 2851 | auto &RT = CGM.getOpenMPRuntime(); |
| 2852 | |
Carlo Bertolli | 962bb80 | 2017-01-03 18:24:42 +0000 | [diff] [blame] | 2853 | bool HasLastprivateClause = false; |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2854 | // Check pre-condition. |
| 2855 | { |
Alexey Bataev | 5a3af13 | 2016-03-29 08:58:54 +0000 | [diff] [blame] | 2856 | OMPLoopScope PreInitScope(*this, S); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2857 | // Skip the entire loop if we don't meet the precondition. |
| 2858 | // If the condition constant folds and can be elided, avoid emitting the |
| 2859 | // whole loop. |
| 2860 | bool CondConstant; |
| 2861 | llvm::BasicBlock *ContBlock = nullptr; |
| 2862 | if (ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) { |
| 2863 | if (!CondConstant) |
| 2864 | return; |
| 2865 | } else { |
| 2866 | auto *ThenBlock = createBasicBlock("omp.precond.then"); |
| 2867 | ContBlock = createBasicBlock("omp.precond.end"); |
| 2868 | emitPreCond(*this, S, S.getPreCond(), ThenBlock, ContBlock, |
| 2869 | getProfileCount(&S)); |
| 2870 | EmitBlock(ThenBlock); |
| 2871 | incrementProfileCounter(&S); |
| 2872 | } |
| 2873 | |
| 2874 | // Emit 'then' code. |
| 2875 | { |
| 2876 | // Emit helper vars inits. |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2877 | |
| 2878 | LValue LB = EmitOMPHelperVar( |
| 2879 | *this, cast<DeclRefExpr>( |
| 2880 | (isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) |
| 2881 | ? S.getCombinedLowerBoundVariable() |
| 2882 | : S.getLowerBoundVariable()))); |
| 2883 | LValue UB = EmitOMPHelperVar( |
| 2884 | *this, cast<DeclRefExpr>( |
| 2885 | (isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) |
| 2886 | ? S.getCombinedUpperBoundVariable() |
| 2887 | : S.getUpperBoundVariable()))); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2888 | LValue ST = |
| 2889 | EmitOMPHelperVar(*this, cast<DeclRefExpr>(S.getStrideVariable())); |
| 2890 | LValue IL = |
| 2891 | EmitOMPHelperVar(*this, cast<DeclRefExpr>(S.getIsLastIterVariable())); |
| 2892 | |
| 2893 | OMPPrivateScope LoopScope(*this); |
Carlo Bertolli | 962bb80 | 2017-01-03 18:24:42 +0000 | [diff] [blame] | 2894 | if (EmitOMPFirstprivateClause(S, LoopScope)) { |
| 2895 | // Emit implicit barrier to synchronize threads and avoid data races on |
| 2896 | // initialization of firstprivate variables and post-update of |
| 2897 | // lastprivate variables. |
| 2898 | CGM.getOpenMPRuntime().emitBarrierCall( |
| 2899 | *this, S.getLocStart(), OMPD_unknown, /*EmitChecks=*/false, |
| 2900 | /*ForceSimpleCall=*/true); |
| 2901 | } |
| 2902 | EmitOMPPrivateClause(S, LoopScope); |
| 2903 | HasLastprivateClause = EmitOMPLastprivateClauseInit(S, LoopScope); |
Alexey Bataev | 5dff95c | 2016-04-22 03:56:56 +0000 | [diff] [blame] | 2904 | EmitOMPPrivateLoopCounters(S, LoopScope); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2905 | (void)LoopScope.Privatize(); |
| 2906 | |
| 2907 | // Detect the distribute schedule kind and chunk. |
| 2908 | llvm::Value *Chunk = nullptr; |
| 2909 | OpenMPDistScheduleClauseKind ScheduleKind = OMPC_DIST_SCHEDULE_unknown; |
| 2910 | if (auto *C = S.getSingleClause<OMPDistScheduleClause>()) { |
| 2911 | ScheduleKind = C->getDistScheduleKind(); |
| 2912 | if (const auto *Ch = C->getChunkSize()) { |
| 2913 | Chunk = EmitScalarExpr(Ch); |
| 2914 | Chunk = EmitScalarConversion(Chunk, Ch->getType(), |
| 2915 | S.getIterationVariable()->getType(), |
| 2916 | S.getLocStart()); |
| 2917 | } |
| 2918 | } |
| 2919 | const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); |
| 2920 | const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); |
| 2921 | |
| 2922 | // OpenMP [2.10.8, distribute Construct, Description] |
| 2923 | // If dist_schedule is specified, kind must be static. If specified, |
| 2924 | // iterations are divided into chunks of size chunk_size, chunks are |
| 2925 | // assigned to the teams of the league in a round-robin fashion in the |
| 2926 | // order of the team number. When no chunk_size is specified, the |
| 2927 | // iteration space is divided into chunks that are approximately equal |
| 2928 | // in size, and at most one chunk is distributed to each team of the |
| 2929 | // league. The size of the chunks is unspecified in this case. |
| 2930 | if (RT.isStaticNonchunked(ScheduleKind, |
| 2931 | /* Chunked */ Chunk != nullptr)) { |
| 2932 | RT.emitDistributeStaticInit(*this, S.getLocStart(), ScheduleKind, |
| 2933 | IVSize, IVSigned, /* Ordered = */ false, |
| 2934 | IL.getAddress(), LB.getAddress(), |
| 2935 | UB.getAddress(), ST.getAddress()); |
| 2936 | auto LoopExit = |
| 2937 | getJumpDestInCurrentScope(createBasicBlock("omp.loop.exit")); |
| 2938 | // UB = min(UB, GlobalUB); |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2939 | EmitIgnoredExpr(isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) |
| 2940 | ? S.getCombinedEnsureUpperBound() |
| 2941 | : S.getEnsureUpperBound()); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2942 | // IV = LB; |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2943 | EmitIgnoredExpr(isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) |
| 2944 | ? S.getCombinedInit() |
| 2945 | : S.getInit()); |
| 2946 | |
| 2947 | Expr *Cond = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind()) |
| 2948 | ? S.getCombinedCond() |
| 2949 | : S.getCond(); |
| 2950 | |
| 2951 | // for distribute alone, codegen |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2952 | // while (idx <= UB) { BODY; ++idx; } |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2953 | // when combined with 'for' (e.g. as in 'distribute parallel for') |
| 2954 | // while (idx <= UB) { <CodeGen rest of pragma>; idx += ST; } |
| 2955 | EmitOMPInnerLoop(S, LoopScope.requiresCleanups(), Cond, IncExpr, |
| 2956 | [&S, LoopExit, &CodeGenLoop](CodeGenFunction &CGF) { |
| 2957 | CodeGenLoop(CGF, S, LoopExit); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2958 | }, |
| 2959 | [](CodeGenFunction &) {}); |
| 2960 | EmitBlock(LoopExit.getBlock()); |
| 2961 | // Tell the runtime we are done. |
| 2962 | RT.emitForStaticFinish(*this, S.getLocStart()); |
| 2963 | } else { |
| 2964 | // Emit the outer loop, which requests its work chunk [LB..UB] from |
| 2965 | // runtime and runs the inner loop to process it. |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2966 | const OMPLoopArguments LoopArguments = { |
| 2967 | LB.getAddress(), UB.getAddress(), ST.getAddress(), IL.getAddress(), |
| 2968 | Chunk}; |
| 2969 | EmitOMPDistributeOuterLoop(ScheduleKind, S, LoopScope, LoopArguments, |
| 2970 | CodeGenLoop); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2971 | } |
Carlo Bertolli | 962bb80 | 2017-01-03 18:24:42 +0000 | [diff] [blame] | 2972 | |
| 2973 | // Emit final copy of the lastprivate variables if IsLastIter != 0. |
| 2974 | if (HasLastprivateClause) |
| 2975 | EmitOMPLastprivateClauseFinal( |
| 2976 | S, /*NoFinals=*/false, |
| 2977 | Builder.CreateIsNotNull( |
| 2978 | EmitLoadOfScalar(IL, S.getLocStart()))); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2979 | } |
| 2980 | |
| 2981 | // We're now done with the loop, so jump to the continuation block. |
| 2982 | if (ContBlock) { |
| 2983 | EmitBranch(ContBlock); |
| 2984 | EmitBlock(ContBlock, true); |
| 2985 | } |
| 2986 | } |
| 2987 | } |
| 2988 | |
Carlo Bertolli | 6200a3d | 2015-12-14 14:51:25 +0000 | [diff] [blame] | 2989 | void CodeGenFunction::EmitOMPDistributeDirective( |
| 2990 | const OMPDistributeDirective &S) { |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 2991 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 2992 | |
| 2993 | CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2994 | }; |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 2995 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Carlo Bertolli | fc35ad2 | 2016-03-07 16:04:49 +0000 | [diff] [blame] | 2996 | CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_distribute, CodeGen, |
| 2997 | false); |
Carlo Bertolli | 6200a3d | 2015-12-14 14:51:25 +0000 | [diff] [blame] | 2998 | } |
| 2999 | |
Alexey Bataev | 5f600d6 | 2015-09-29 03:48:57 +0000 | [diff] [blame] | 3000 | static llvm::Function *emitOutlinedOrderedFunction(CodeGenModule &CGM, |
| 3001 | const CapturedStmt *S) { |
| 3002 | CodeGenFunction CGF(CGM, /*suppressNewContext=*/true); |
| 3003 | CodeGenFunction::CGCapturedStmtInfo CapStmtInfo; |
| 3004 | CGF.CapturedStmtInfo = &CapStmtInfo; |
| 3005 | auto *Fn = CGF.GenerateOpenMPCapturedStmtFunction(*S); |
| 3006 | Fn->addFnAttr(llvm::Attribute::NoInline); |
| 3007 | return Fn; |
| 3008 | } |
| 3009 | |
Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 3010 | void CodeGenFunction::EmitOMPOrderedDirective(const OMPOrderedDirective &S) { |
Alexey Bataev | 8b42706 | 2016-05-25 12:36:08 +0000 | [diff] [blame] | 3011 | if (!S.getAssociatedStmt()) { |
| 3012 | for (const auto *DC : S.getClausesOfKind<OMPDependClause>()) |
| 3013 | CGM.getOpenMPRuntime().emitDoacrossOrdered(*this, DC); |
Alexey Bataev | 8ef3141 | 2015-12-18 07:58:25 +0000 | [diff] [blame] | 3014 | return; |
Alexey Bataev | 8b42706 | 2016-05-25 12:36:08 +0000 | [diff] [blame] | 3015 | } |
Alexey Bataev | 5f600d6 | 2015-09-29 03:48:57 +0000 | [diff] [blame] | 3016 | auto *C = S.getSingleClause<OMPSIMDClause>(); |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 3017 | auto &&CodeGen = [&S, C, this](CodeGenFunction &CGF, |
| 3018 | PrePostActionTy &Action) { |
Alexey Bataev | 5f600d6 | 2015-09-29 03:48:57 +0000 | [diff] [blame] | 3019 | if (C) { |
| 3020 | auto CS = cast<CapturedStmt>(S.getAssociatedStmt()); |
| 3021 | llvm::SmallVector<llvm::Value *, 16> CapturedVars; |
| 3022 | CGF.GenerateOpenMPCapturedVars(*CS, CapturedVars); |
| 3023 | auto *OutlinedFn = emitOutlinedOrderedFunction(CGM, CS); |
| 3024 | CGF.EmitNounwindRuntimeCall(OutlinedFn, CapturedVars); |
| 3025 | } else { |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 3026 | Action.Enter(CGF); |
Alexey Bataev | 5f600d6 | 2015-09-29 03:48:57 +0000 | [diff] [blame] | 3027 | CGF.EmitStmt( |
| 3028 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 3029 | } |
Alexey Bataev | 98eb6e3 | 2015-04-22 11:15:40 +0000 | [diff] [blame] | 3030 | }; |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 3031 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | 5f600d6 | 2015-09-29 03:48:57 +0000 | [diff] [blame] | 3032 | CGM.getOpenMPRuntime().emitOrderedRegion(*this, CodeGen, S.getLocStart(), !C); |
Alexey Bataev | 9fb6e64 | 2014-07-22 06:45:04 +0000 | [diff] [blame] | 3033 | } |
| 3034 | |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3035 | static llvm::Value *convertToScalarValue(CodeGenFunction &CGF, RValue Val, |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3036 | QualType SrcType, QualType DestType, |
| 3037 | SourceLocation Loc) { |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3038 | assert(CGF.hasScalarEvaluationKind(DestType) && |
| 3039 | "DestType must have scalar evaluation kind."); |
| 3040 | assert(!Val.isAggregate() && "Must be a scalar or complex."); |
| 3041 | return Val.isScalar() |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3042 | ? CGF.EmitScalarConversion(Val.getScalarVal(), SrcType, DestType, |
| 3043 | Loc) |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3044 | : CGF.EmitComplexToScalarConversion(Val.getComplexVal(), SrcType, |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3045 | DestType, Loc); |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3046 | } |
| 3047 | |
| 3048 | static CodeGenFunction::ComplexPairTy |
| 3049 | convertToComplexValue(CodeGenFunction &CGF, RValue Val, QualType SrcType, |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3050 | QualType DestType, SourceLocation Loc) { |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3051 | assert(CGF.getEvaluationKind(DestType) == TEK_Complex && |
| 3052 | "DestType must have complex evaluation kind."); |
| 3053 | CodeGenFunction::ComplexPairTy ComplexVal; |
| 3054 | if (Val.isScalar()) { |
| 3055 | // Convert the input element to the element type of the complex. |
| 3056 | auto DestElementType = DestType->castAs<ComplexType>()->getElementType(); |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3057 | auto ScalarVal = CGF.EmitScalarConversion(Val.getScalarVal(), SrcType, |
| 3058 | DestElementType, Loc); |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3059 | ComplexVal = CodeGenFunction::ComplexPairTy( |
| 3060 | ScalarVal, llvm::Constant::getNullValue(ScalarVal->getType())); |
| 3061 | } else { |
| 3062 | assert(Val.isComplex() && "Must be a scalar or complex."); |
| 3063 | auto SrcElementType = SrcType->castAs<ComplexType>()->getElementType(); |
| 3064 | auto DestElementType = DestType->castAs<ComplexType>()->getElementType(); |
| 3065 | ComplexVal.first = CGF.EmitScalarConversion( |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3066 | Val.getComplexVal().first, SrcElementType, DestElementType, Loc); |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3067 | ComplexVal.second = CGF.EmitScalarConversion( |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3068 | Val.getComplexVal().second, SrcElementType, DestElementType, Loc); |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3069 | } |
| 3070 | return ComplexVal; |
| 3071 | } |
| 3072 | |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3073 | static void emitSimpleAtomicStore(CodeGenFunction &CGF, bool IsSeqCst, |
| 3074 | LValue LVal, RValue RVal) { |
| 3075 | if (LVal.isGlobalReg()) { |
| 3076 | CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal); |
| 3077 | } else { |
JF Bastien | 92f4ef1 | 2016-04-06 17:26:42 +0000 | [diff] [blame] | 3078 | CGF.EmitAtomicStore(RVal, LVal, |
| 3079 | IsSeqCst ? llvm::AtomicOrdering::SequentiallyConsistent |
| 3080 | : llvm::AtomicOrdering::Monotonic, |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3081 | LVal.isVolatile(), /*IsInit=*/false); |
| 3082 | } |
| 3083 | } |
| 3084 | |
Alexey Bataev | 8524d15 | 2016-01-21 12:35:58 +0000 | [diff] [blame] | 3085 | void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal, |
| 3086 | QualType RValTy, SourceLocation Loc) { |
| 3087 | switch (getEvaluationKind(LVal.getType())) { |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3088 | case TEK_Scalar: |
Alexey Bataev | 8524d15 | 2016-01-21 12:35:58 +0000 | [diff] [blame] | 3089 | EmitStoreThroughLValue(RValue::get(convertToScalarValue( |
| 3090 | *this, RVal, RValTy, LVal.getType(), Loc)), |
| 3091 | LVal); |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3092 | break; |
| 3093 | case TEK_Complex: |
Alexey Bataev | 8524d15 | 2016-01-21 12:35:58 +0000 | [diff] [blame] | 3094 | EmitStoreOfComplex( |
| 3095 | convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal, |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3096 | /*isInit=*/false); |
| 3097 | break; |
| 3098 | case TEK_Aggregate: |
| 3099 | llvm_unreachable("Must be a scalar or complex."); |
| 3100 | } |
| 3101 | } |
| 3102 | |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3103 | static void EmitOMPAtomicReadExpr(CodeGenFunction &CGF, bool IsSeqCst, |
| 3104 | const Expr *X, const Expr *V, |
| 3105 | SourceLocation Loc) { |
| 3106 | // v = x; |
| 3107 | assert(V->isLValue() && "V of 'omp atomic read' is not lvalue"); |
| 3108 | assert(X->isLValue() && "X of 'omp atomic read' is not lvalue"); |
| 3109 | LValue XLValue = CGF.EmitLValue(X); |
| 3110 | LValue VLValue = CGF.EmitLValue(V); |
David Majnemer | a5b195a | 2015-02-14 01:35:12 +0000 | [diff] [blame] | 3111 | RValue Res = XLValue.isGlobalReg() |
| 3112 | ? CGF.EmitLoadOfLValue(XLValue, Loc) |
JF Bastien | 92f4ef1 | 2016-04-06 17:26:42 +0000 | [diff] [blame] | 3113 | : CGF.EmitAtomicLoad( |
| 3114 | XLValue, Loc, |
| 3115 | IsSeqCst ? llvm::AtomicOrdering::SequentiallyConsistent |
| 3116 | : llvm::AtomicOrdering::Monotonic, |
| 3117 | XLValue.isVolatile()); |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3118 | // OpenMP, 2.12.6, atomic Construct |
| 3119 | // Any atomic construct with a seq_cst clause forces the atomically |
| 3120 | // performed operation to include an implicit flush operation without a |
| 3121 | // list. |
| 3122 | if (IsSeqCst) |
Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 3123 | CGF.CGM.getOpenMPRuntime().emitFlush(CGF, llvm::None, Loc); |
Alexey Bataev | 8524d15 | 2016-01-21 12:35:58 +0000 | [diff] [blame] | 3124 | CGF.emitOMPSimpleStore(VLValue, Res, X->getType().getNonReferenceType(), Loc); |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3125 | } |
| 3126 | |
Alexey Bataev | b832926 | 2015-02-27 06:33:30 +0000 | [diff] [blame] | 3127 | static void EmitOMPAtomicWriteExpr(CodeGenFunction &CGF, bool IsSeqCst, |
| 3128 | const Expr *X, const Expr *E, |
| 3129 | SourceLocation Loc) { |
| 3130 | // x = expr; |
| 3131 | assert(X->isLValue() && "X of 'omp atomic write' is not lvalue"); |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3132 | emitSimpleAtomicStore(CGF, IsSeqCst, CGF.EmitLValue(X), CGF.EmitAnyExpr(E)); |
Alexey Bataev | b832926 | 2015-02-27 06:33:30 +0000 | [diff] [blame] | 3133 | // OpenMP, 2.12.6, atomic Construct |
| 3134 | // Any atomic construct with a seq_cst clause forces the atomically |
| 3135 | // performed operation to include an implicit flush operation without a |
| 3136 | // list. |
| 3137 | if (IsSeqCst) |
| 3138 | CGF.CGM.getOpenMPRuntime().emitFlush(CGF, llvm::None, Loc); |
| 3139 | } |
| 3140 | |
Benjamin Kramer | 439ee9d | 2015-05-01 13:59:53 +0000 | [diff] [blame] | 3141 | static std::pair<bool, RValue> emitOMPAtomicRMW(CodeGenFunction &CGF, LValue X, |
| 3142 | RValue Update, |
| 3143 | BinaryOperatorKind BO, |
| 3144 | llvm::AtomicOrdering AO, |
| 3145 | bool IsXLHSInRHSPart) { |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3146 | auto &Context = CGF.CGM.getContext(); |
| 3147 | // Allow atomicrmw only if 'x' and 'update' are integer values, lvalue for 'x' |
Alexey Bataev | b4505a7 | 2015-03-30 05:20:59 +0000 | [diff] [blame] | 3148 | // expression is simple and atomic is allowed for the given type for the |
| 3149 | // target platform. |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3150 | if (BO == BO_Comma || !Update.isScalar() || |
Alexey Bataev | 9d541a7 | 2015-05-08 11:47:16 +0000 | [diff] [blame] | 3151 | !Update.getScalarVal()->getType()->isIntegerTy() || |
| 3152 | !X.isSimple() || (!isa<llvm::ConstantInt>(Update.getScalarVal()) && |
| 3153 | (Update.getScalarVal()->getType() != |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3154 | X.getAddress().getElementType())) || |
| 3155 | !X.getAddress().getElementType()->isIntegerTy() || |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3156 | !Context.getTargetInfo().hasBuiltinAtomic( |
| 3157 | Context.getTypeSize(X.getType()), Context.toBits(X.getAlignment()))) |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3158 | return std::make_pair(false, RValue::get(nullptr)); |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3159 | |
| 3160 | llvm::AtomicRMWInst::BinOp RMWOp; |
| 3161 | switch (BO) { |
| 3162 | case BO_Add: |
| 3163 | RMWOp = llvm::AtomicRMWInst::Add; |
| 3164 | break; |
| 3165 | case BO_Sub: |
| 3166 | if (!IsXLHSInRHSPart) |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3167 | return std::make_pair(false, RValue::get(nullptr)); |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3168 | RMWOp = llvm::AtomicRMWInst::Sub; |
| 3169 | break; |
| 3170 | case BO_And: |
| 3171 | RMWOp = llvm::AtomicRMWInst::And; |
| 3172 | break; |
| 3173 | case BO_Or: |
| 3174 | RMWOp = llvm::AtomicRMWInst::Or; |
| 3175 | break; |
| 3176 | case BO_Xor: |
| 3177 | RMWOp = llvm::AtomicRMWInst::Xor; |
| 3178 | break; |
| 3179 | case BO_LT: |
| 3180 | RMWOp = X.getType()->hasSignedIntegerRepresentation() |
| 3181 | ? (IsXLHSInRHSPart ? llvm::AtomicRMWInst::Min |
| 3182 | : llvm::AtomicRMWInst::Max) |
| 3183 | : (IsXLHSInRHSPart ? llvm::AtomicRMWInst::UMin |
| 3184 | : llvm::AtomicRMWInst::UMax); |
| 3185 | break; |
| 3186 | case BO_GT: |
| 3187 | RMWOp = X.getType()->hasSignedIntegerRepresentation() |
| 3188 | ? (IsXLHSInRHSPart ? llvm::AtomicRMWInst::Max |
| 3189 | : llvm::AtomicRMWInst::Min) |
| 3190 | : (IsXLHSInRHSPart ? llvm::AtomicRMWInst::UMax |
| 3191 | : llvm::AtomicRMWInst::UMin); |
| 3192 | break; |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3193 | case BO_Assign: |
| 3194 | RMWOp = llvm::AtomicRMWInst::Xchg; |
| 3195 | break; |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3196 | case BO_Mul: |
| 3197 | case BO_Div: |
| 3198 | case BO_Rem: |
| 3199 | case BO_Shl: |
| 3200 | case BO_Shr: |
| 3201 | case BO_LAnd: |
| 3202 | case BO_LOr: |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3203 | return std::make_pair(false, RValue::get(nullptr)); |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3204 | case BO_PtrMemD: |
| 3205 | case BO_PtrMemI: |
| 3206 | case BO_LE: |
| 3207 | case BO_GE: |
| 3208 | case BO_EQ: |
| 3209 | case BO_NE: |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3210 | case BO_AddAssign: |
| 3211 | case BO_SubAssign: |
| 3212 | case BO_AndAssign: |
| 3213 | case BO_OrAssign: |
| 3214 | case BO_XorAssign: |
| 3215 | case BO_MulAssign: |
| 3216 | case BO_DivAssign: |
| 3217 | case BO_RemAssign: |
| 3218 | case BO_ShlAssign: |
| 3219 | case BO_ShrAssign: |
| 3220 | case BO_Comma: |
| 3221 | llvm_unreachable("Unsupported atomic update operation"); |
| 3222 | } |
| 3223 | auto *UpdateVal = Update.getScalarVal(); |
| 3224 | if (auto *IC = dyn_cast<llvm::ConstantInt>(UpdateVal)) { |
| 3225 | UpdateVal = CGF.Builder.CreateIntCast( |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3226 | IC, X.getAddress().getElementType(), |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3227 | X.getType()->hasSignedIntegerRepresentation()); |
| 3228 | } |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3229 | auto *Res = CGF.Builder.CreateAtomicRMW(RMWOp, X.getPointer(), UpdateVal, AO); |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3230 | return std::make_pair(true, RValue::get(Res)); |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3231 | } |
| 3232 | |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3233 | std::pair<bool, RValue> CodeGenFunction::EmitOMPAtomicSimpleUpdateExpr( |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3234 | LValue X, RValue E, BinaryOperatorKind BO, bool IsXLHSInRHSPart, |
| 3235 | llvm::AtomicOrdering AO, SourceLocation Loc, |
| 3236 | const llvm::function_ref<RValue(RValue)> &CommonGen) { |
| 3237 | // Update expressions are allowed to have the following forms: |
| 3238 | // x binop= expr; -> xrval + expr; |
| 3239 | // x++, ++x -> xrval + 1; |
| 3240 | // x--, --x -> xrval - 1; |
| 3241 | // x = x binop expr; -> xrval binop expr |
| 3242 | // x = expr Op x; - > expr binop xrval; |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3243 | auto Res = emitOMPAtomicRMW(*this, X, E, BO, AO, IsXLHSInRHSPart); |
| 3244 | if (!Res.first) { |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3245 | if (X.isGlobalReg()) { |
| 3246 | // Emit an update expression: 'xrval' binop 'expr' or 'expr' binop |
| 3247 | // 'xrval'. |
| 3248 | EmitStoreThroughLValue(CommonGen(EmitLoadOfLValue(X, Loc)), X); |
| 3249 | } else { |
| 3250 | // Perform compare-and-swap procedure. |
| 3251 | EmitAtomicUpdate(X, AO, CommonGen, X.getType().isVolatileQualified()); |
Alexey Bataev | b4505a7 | 2015-03-30 05:20:59 +0000 | [diff] [blame] | 3252 | } |
| 3253 | } |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3254 | return Res; |
Alexey Bataev | b4505a7 | 2015-03-30 05:20:59 +0000 | [diff] [blame] | 3255 | } |
| 3256 | |
| 3257 | static void EmitOMPAtomicUpdateExpr(CodeGenFunction &CGF, bool IsSeqCst, |
| 3258 | const Expr *X, const Expr *E, |
| 3259 | const Expr *UE, bool IsXLHSInRHSPart, |
| 3260 | SourceLocation Loc) { |
| 3261 | assert(isa<BinaryOperator>(UE->IgnoreImpCasts()) && |
| 3262 | "Update expr in 'atomic update' must be a binary operator."); |
| 3263 | auto *BOUE = cast<BinaryOperator>(UE->IgnoreImpCasts()); |
| 3264 | // Update expressions are allowed to have the following forms: |
| 3265 | // x binop= expr; -> xrval + expr; |
| 3266 | // x++, ++x -> xrval + 1; |
| 3267 | // x--, --x -> xrval - 1; |
| 3268 | // x = x binop expr; -> xrval binop expr |
| 3269 | // x = expr Op x; - > expr binop xrval; |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3270 | assert(X->isLValue() && "X of 'omp atomic update' is not lvalue"); |
Alexey Bataev | b4505a7 | 2015-03-30 05:20:59 +0000 | [diff] [blame] | 3271 | LValue XLValue = CGF.EmitLValue(X); |
| 3272 | RValue ExprRValue = CGF.EmitAnyExpr(E); |
JF Bastien | 92f4ef1 | 2016-04-06 17:26:42 +0000 | [diff] [blame] | 3273 | auto AO = IsSeqCst ? llvm::AtomicOrdering::SequentiallyConsistent |
| 3274 | : llvm::AtomicOrdering::Monotonic; |
Alexey Bataev | 794ba0d | 2015-04-10 10:43:45 +0000 | [diff] [blame] | 3275 | auto *LHS = cast<OpaqueValueExpr>(BOUE->getLHS()->IgnoreImpCasts()); |
| 3276 | auto *RHS = cast<OpaqueValueExpr>(BOUE->getRHS()->IgnoreImpCasts()); |
| 3277 | auto *XRValExpr = IsXLHSInRHSPart ? LHS : RHS; |
| 3278 | auto *ERValExpr = IsXLHSInRHSPart ? RHS : LHS; |
| 3279 | auto Gen = |
| 3280 | [&CGF, UE, ExprRValue, XRValExpr, ERValExpr](RValue XRValue) -> RValue { |
| 3281 | CodeGenFunction::OpaqueValueMapping MapExpr(CGF, ERValExpr, ExprRValue); |
| 3282 | CodeGenFunction::OpaqueValueMapping MapX(CGF, XRValExpr, XRValue); |
| 3283 | return CGF.EmitAnyExpr(UE); |
| 3284 | }; |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3285 | (void)CGF.EmitOMPAtomicSimpleUpdateExpr( |
| 3286 | XLValue, ExprRValue, BOUE->getOpcode(), IsXLHSInRHSPart, AO, Loc, Gen); |
| 3287 | // OpenMP, 2.12.6, atomic Construct |
| 3288 | // Any atomic construct with a seq_cst clause forces the atomically |
| 3289 | // performed operation to include an implicit flush operation without a |
| 3290 | // list. |
| 3291 | if (IsSeqCst) |
| 3292 | CGF.CGM.getOpenMPRuntime().emitFlush(CGF, llvm::None, Loc); |
| 3293 | } |
| 3294 | |
| 3295 | static RValue convertToType(CodeGenFunction &CGF, RValue Value, |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3296 | QualType SourceType, QualType ResType, |
| 3297 | SourceLocation Loc) { |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3298 | switch (CGF.getEvaluationKind(ResType)) { |
| 3299 | case TEK_Scalar: |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3300 | return RValue::get( |
| 3301 | convertToScalarValue(CGF, Value, SourceType, ResType, Loc)); |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3302 | case TEK_Complex: { |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3303 | auto Res = convertToComplexValue(CGF, Value, SourceType, ResType, Loc); |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3304 | return RValue::getComplex(Res.first, Res.second); |
| 3305 | } |
| 3306 | case TEK_Aggregate: |
| 3307 | break; |
| 3308 | } |
| 3309 | llvm_unreachable("Must be a scalar or complex."); |
| 3310 | } |
| 3311 | |
| 3312 | static void EmitOMPAtomicCaptureExpr(CodeGenFunction &CGF, bool IsSeqCst, |
| 3313 | bool IsPostfixUpdate, const Expr *V, |
| 3314 | const Expr *X, const Expr *E, |
| 3315 | const Expr *UE, bool IsXLHSInRHSPart, |
| 3316 | SourceLocation Loc) { |
| 3317 | assert(X->isLValue() && "X of 'omp atomic capture' is not lvalue"); |
| 3318 | assert(V->isLValue() && "V of 'omp atomic capture' is not lvalue"); |
| 3319 | RValue NewVVal; |
| 3320 | LValue VLValue = CGF.EmitLValue(V); |
| 3321 | LValue XLValue = CGF.EmitLValue(X); |
| 3322 | RValue ExprRValue = CGF.EmitAnyExpr(E); |
JF Bastien | 92f4ef1 | 2016-04-06 17:26:42 +0000 | [diff] [blame] | 3323 | auto AO = IsSeqCst ? llvm::AtomicOrdering::SequentiallyConsistent |
| 3324 | : llvm::AtomicOrdering::Monotonic; |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3325 | QualType NewVValType; |
| 3326 | if (UE) { |
| 3327 | // 'x' is updated with some additional value. |
| 3328 | assert(isa<BinaryOperator>(UE->IgnoreImpCasts()) && |
| 3329 | "Update expr in 'atomic capture' must be a binary operator."); |
| 3330 | auto *BOUE = cast<BinaryOperator>(UE->IgnoreImpCasts()); |
| 3331 | // Update expressions are allowed to have the following forms: |
| 3332 | // x binop= expr; -> xrval + expr; |
| 3333 | // x++, ++x -> xrval + 1; |
| 3334 | // x--, --x -> xrval - 1; |
| 3335 | // x = x binop expr; -> xrval binop expr |
| 3336 | // x = expr Op x; - > expr binop xrval; |
| 3337 | auto *LHS = cast<OpaqueValueExpr>(BOUE->getLHS()->IgnoreImpCasts()); |
| 3338 | auto *RHS = cast<OpaqueValueExpr>(BOUE->getRHS()->IgnoreImpCasts()); |
| 3339 | auto *XRValExpr = IsXLHSInRHSPart ? LHS : RHS; |
| 3340 | NewVValType = XRValExpr->getType(); |
| 3341 | auto *ERValExpr = IsXLHSInRHSPart ? RHS : LHS; |
| 3342 | auto &&Gen = [&CGF, &NewVVal, UE, ExprRValue, XRValExpr, ERValExpr, |
Malcolm Parsons | c6e4583 | 2017-01-13 18:55:32 +0000 | [diff] [blame] | 3343 | IsPostfixUpdate](RValue XRValue) -> RValue { |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3344 | CodeGenFunction::OpaqueValueMapping MapExpr(CGF, ERValExpr, ExprRValue); |
| 3345 | CodeGenFunction::OpaqueValueMapping MapX(CGF, XRValExpr, XRValue); |
| 3346 | RValue Res = CGF.EmitAnyExpr(UE); |
| 3347 | NewVVal = IsPostfixUpdate ? XRValue : Res; |
| 3348 | return Res; |
| 3349 | }; |
| 3350 | auto Res = CGF.EmitOMPAtomicSimpleUpdateExpr( |
| 3351 | XLValue, ExprRValue, BOUE->getOpcode(), IsXLHSInRHSPart, AO, Loc, Gen); |
| 3352 | if (Res.first) { |
| 3353 | // 'atomicrmw' instruction was generated. |
| 3354 | if (IsPostfixUpdate) { |
| 3355 | // Use old value from 'atomicrmw'. |
| 3356 | NewVVal = Res.second; |
| 3357 | } else { |
| 3358 | // 'atomicrmw' does not provide new value, so evaluate it using old |
| 3359 | // value of 'x'. |
| 3360 | CodeGenFunction::OpaqueValueMapping MapExpr(CGF, ERValExpr, ExprRValue); |
| 3361 | CodeGenFunction::OpaqueValueMapping MapX(CGF, XRValExpr, Res.second); |
| 3362 | NewVVal = CGF.EmitAnyExpr(UE); |
| 3363 | } |
| 3364 | } |
| 3365 | } else { |
| 3366 | // 'x' is simply rewritten with some 'expr'. |
| 3367 | NewVValType = X->getType().getNonReferenceType(); |
| 3368 | ExprRValue = convertToType(CGF, ExprRValue, E->getType(), |
Filipe Cabecinhas | 7af183d | 2015-08-11 04:19:28 +0000 | [diff] [blame] | 3369 | X->getType().getNonReferenceType(), Loc); |
Malcolm Parsons | c6e4583 | 2017-01-13 18:55:32 +0000 | [diff] [blame] | 3370 | auto &&Gen = [&NewVVal, ExprRValue](RValue XRValue) -> RValue { |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3371 | NewVVal = XRValue; |
| 3372 | return ExprRValue; |
| 3373 | }; |
| 3374 | // Try to perform atomicrmw xchg, otherwise simple exchange. |
| 3375 | auto Res = CGF.EmitOMPAtomicSimpleUpdateExpr( |
| 3376 | XLValue, ExprRValue, /*BO=*/BO_Assign, /*IsXLHSInRHSPart=*/false, AO, |
| 3377 | Loc, Gen); |
| 3378 | if (Res.first) { |
| 3379 | // 'atomicrmw' instruction was generated. |
| 3380 | NewVVal = IsPostfixUpdate ? Res.second : ExprRValue; |
| 3381 | } |
| 3382 | } |
| 3383 | // Emit post-update store to 'v' of old/new 'x' value. |
Alexey Bataev | 8524d15 | 2016-01-21 12:35:58 +0000 | [diff] [blame] | 3384 | CGF.emitOMPSimpleStore(VLValue, NewVVal, NewVValType, Loc); |
Alexey Bataev | b4505a7 | 2015-03-30 05:20:59 +0000 | [diff] [blame] | 3385 | // OpenMP, 2.12.6, atomic Construct |
| 3386 | // Any atomic construct with a seq_cst clause forces the atomically |
| 3387 | // performed operation to include an implicit flush operation without a |
| 3388 | // list. |
| 3389 | if (IsSeqCst) |
| 3390 | CGF.CGM.getOpenMPRuntime().emitFlush(CGF, llvm::None, Loc); |
| 3391 | } |
| 3392 | |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3393 | static void EmitOMPAtomicExpr(CodeGenFunction &CGF, OpenMPClauseKind Kind, |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3394 | bool IsSeqCst, bool IsPostfixUpdate, |
| 3395 | const Expr *X, const Expr *V, const Expr *E, |
| 3396 | const Expr *UE, bool IsXLHSInRHSPart, |
| 3397 | SourceLocation Loc) { |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3398 | switch (Kind) { |
| 3399 | case OMPC_read: |
| 3400 | EmitOMPAtomicReadExpr(CGF, IsSeqCst, X, V, Loc); |
| 3401 | break; |
| 3402 | case OMPC_write: |
Alexey Bataev | b832926 | 2015-02-27 06:33:30 +0000 | [diff] [blame] | 3403 | EmitOMPAtomicWriteExpr(CGF, IsSeqCst, X, E, Loc); |
| 3404 | break; |
Alexey Bataev | b4505a7 | 2015-03-30 05:20:59 +0000 | [diff] [blame] | 3405 | case OMPC_unknown: |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3406 | case OMPC_update: |
Alexey Bataev | b4505a7 | 2015-03-30 05:20:59 +0000 | [diff] [blame] | 3407 | EmitOMPAtomicUpdateExpr(CGF, IsSeqCst, X, E, UE, IsXLHSInRHSPart, Loc); |
| 3408 | break; |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3409 | case OMPC_capture: |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3410 | EmitOMPAtomicCaptureExpr(CGF, IsSeqCst, IsPostfixUpdate, V, X, E, UE, |
| 3411 | IsXLHSInRHSPart, Loc); |
| 3412 | break; |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3413 | case OMPC_if: |
| 3414 | case OMPC_final: |
| 3415 | case OMPC_num_threads: |
| 3416 | case OMPC_private: |
| 3417 | case OMPC_firstprivate: |
| 3418 | case OMPC_lastprivate: |
| 3419 | case OMPC_reduction: |
| 3420 | case OMPC_safelen: |
Alexey Bataev | 66b15b5 | 2015-08-21 11:14:16 +0000 | [diff] [blame] | 3421 | case OMPC_simdlen: |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3422 | case OMPC_collapse: |
| 3423 | case OMPC_default: |
| 3424 | case OMPC_seq_cst: |
| 3425 | case OMPC_shared: |
| 3426 | case OMPC_linear: |
| 3427 | case OMPC_aligned: |
| 3428 | case OMPC_copyin: |
| 3429 | case OMPC_copyprivate: |
| 3430 | case OMPC_flush: |
| 3431 | case OMPC_proc_bind: |
| 3432 | case OMPC_schedule: |
| 3433 | case OMPC_ordered: |
| 3434 | case OMPC_nowait: |
| 3435 | case OMPC_untied: |
| 3436 | case OMPC_threadprivate: |
Alexey Bataev | 1c2cfbc | 2015-06-23 14:25:19 +0000 | [diff] [blame] | 3437 | case OMPC_depend: |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3438 | case OMPC_mergeable: |
Michael Wong | e710d54 | 2015-08-07 16:16:36 +0000 | [diff] [blame] | 3439 | case OMPC_device: |
Alexey Bataev | 346265e | 2015-09-25 10:37:12 +0000 | [diff] [blame] | 3440 | case OMPC_threads: |
Alexey Bataev | d14d1e6 | 2015-09-28 06:39:35 +0000 | [diff] [blame] | 3441 | case OMPC_simd: |
Kelvin Li | 0bff7af | 2015-11-23 05:32:03 +0000 | [diff] [blame] | 3442 | case OMPC_map: |
Kelvin Li | 099bb8c | 2015-11-24 20:50:12 +0000 | [diff] [blame] | 3443 | case OMPC_num_teams: |
Kelvin Li | a15fb1a | 2015-11-27 18:47:36 +0000 | [diff] [blame] | 3444 | case OMPC_thread_limit: |
Alexey Bataev | a056935 | 2015-12-01 10:17:31 +0000 | [diff] [blame] | 3445 | case OMPC_priority: |
Alexey Bataev | 1fd4aed | 2015-12-07 12:52:51 +0000 | [diff] [blame] | 3446 | case OMPC_grainsize: |
Alexey Bataev | b825de1 | 2015-12-07 10:51:44 +0000 | [diff] [blame] | 3447 | case OMPC_nogroup: |
Alexey Bataev | 382967a | 2015-12-08 12:06:20 +0000 | [diff] [blame] | 3448 | case OMPC_num_tasks: |
Alexey Bataev | 28c7541 | 2015-12-15 08:19:24 +0000 | [diff] [blame] | 3449 | case OMPC_hint: |
Carlo Bertolli | b4adf55 | 2016-01-15 18:50:31 +0000 | [diff] [blame] | 3450 | case OMPC_dist_schedule: |
Arpith Chacko Jacob | 3cf8904 | 2016-01-26 16:37:23 +0000 | [diff] [blame] | 3451 | case OMPC_defaultmap: |
Alexey Bataev | e48a5fc | 2016-04-12 05:28:34 +0000 | [diff] [blame] | 3452 | case OMPC_uniform: |
Samuel Antao | 661c090 | 2016-05-26 17:39:58 +0000 | [diff] [blame] | 3453 | case OMPC_to: |
Samuel Antao | ec172c6 | 2016-05-26 17:49:04 +0000 | [diff] [blame] | 3454 | case OMPC_from: |
Carlo Bertolli | 2404b17 | 2016-07-13 15:37:16 +0000 | [diff] [blame] | 3455 | case OMPC_use_device_ptr: |
Carlo Bertolli | 70594e9 | 2016-07-13 17:16:49 +0000 | [diff] [blame] | 3456 | case OMPC_is_device_ptr: |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3457 | llvm_unreachable("Clause is not allowed in 'omp atomic'."); |
| 3458 | } |
| 3459 | } |
| 3460 | |
| 3461 | void CodeGenFunction::EmitOMPAtomicDirective(const OMPAtomicDirective &S) { |
Benjamin Kramer | fc600dc | 2015-08-30 15:12:28 +0000 | [diff] [blame] | 3462 | bool IsSeqCst = S.getSingleClause<OMPSeqCstClause>(); |
Alexey Bataev | b57056f | 2015-01-22 06:17:56 +0000 | [diff] [blame] | 3463 | OpenMPClauseKind Kind = OMPC_unknown; |
| 3464 | for (auto *C : S.clauses()) { |
| 3465 | // Find first clause (skip seq_cst clause, if it is first). |
| 3466 | if (C->getClauseKind() != OMPC_seq_cst) { |
| 3467 | Kind = C->getClauseKind(); |
| 3468 | break; |
| 3469 | } |
| 3470 | } |
Alexey Bataev | 10fec57 | 2015-03-11 04:48:56 +0000 | [diff] [blame] | 3471 | |
| 3472 | const auto *CS = |
| 3473 | S.getAssociatedStmt()->IgnoreContainers(/*IgnoreCaptured=*/true); |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3474 | if (const auto *EWC = dyn_cast<ExprWithCleanups>(CS)) { |
Alexey Bataev | 10fec57 | 2015-03-11 04:48:56 +0000 | [diff] [blame] | 3475 | enterFullExpression(EWC); |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3476 | } |
| 3477 | // Processing for statements under 'atomic capture'. |
| 3478 | if (const auto *Compound = dyn_cast<CompoundStmt>(CS)) { |
| 3479 | for (const auto *C : Compound->body()) { |
| 3480 | if (const auto *EWC = dyn_cast<ExprWithCleanups>(C)) { |
| 3481 | enterFullExpression(EWC); |
| 3482 | } |
| 3483 | } |
| 3484 | } |
Alexey Bataev | 10fec57 | 2015-03-11 04:48:56 +0000 | [diff] [blame] | 3485 | |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 3486 | auto &&CodeGen = [&S, Kind, IsSeqCst, CS](CodeGenFunction &CGF, |
| 3487 | PrePostActionTy &) { |
Alexey Bataev | 33c5640 | 2015-12-14 09:26:19 +0000 | [diff] [blame] | 3488 | CGF.EmitStopPoint(CS); |
Alexey Bataev | 5e018f9 | 2015-04-23 06:35:10 +0000 | [diff] [blame] | 3489 | EmitOMPAtomicExpr(CGF, Kind, IsSeqCst, S.isPostfixUpdate(), S.getX(), |
| 3490 | S.getV(), S.getExpr(), S.getUpdateExpr(), |
| 3491 | S.isXLHSInRHSPart(), S.getLocStart()); |
Alexey Bataev | 6f1ffc0 | 2015-04-10 04:50:10 +0000 | [diff] [blame] | 3492 | }; |
Alexey Bataev | 4ba78a4 | 2016-04-27 07:56:03 +0000 | [diff] [blame] | 3493 | OMPLexicalScope Scope(*this, S, /*AsInlined=*/true); |
Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 3494 | CGM.getOpenMPRuntime().emitInlinedDirective(*this, OMPD_atomic, CodeGen); |
Alexey Bataev | 0162e45 | 2014-07-22 10:10:35 +0000 | [diff] [blame] | 3495 | } |
| 3496 | |
Arpith Chacko Jacob | 43a8b7b | 2017-01-16 15:26:02 +0000 | [diff] [blame] | 3497 | static void emitCommonOMPTargetDirective(CodeGenFunction &CGF, |
| 3498 | const OMPExecutableDirective &S, |
| 3499 | const RegionCodeGenTy &CodeGen) { |
| 3500 | assert(isOpenMPTargetExecutionDirective(S.getDirectiveKind())); |
| 3501 | CodeGenModule &CGM = CGF.CGM; |
Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 3502 | const CapturedStmt &CS = *cast<CapturedStmt>(S.getAssociatedStmt()); |
| 3503 | |
Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 3504 | llvm::Function *Fn = nullptr; |
| 3505 | llvm::Constant *FnID = nullptr; |
Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 3506 | |
Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 3507 | const Expr *IfCond = nullptr; |
Arpith Chacko Jacob | fe4890a | 2017-01-18 20:40:48 +0000 | [diff] [blame] | 3508 | // Check for the at most one if clause associated with the target region. |
| 3509 | for (const auto *C : S.getClausesOfKind<OMPIfClause>()) { |
| 3510 | if (C->getNameModifier() == OMPD_unknown || |
| 3511 | C->getNameModifier() == OMPD_target) { |
| 3512 | IfCond = C->getCondition(); |
| 3513 | break; |
| 3514 | } |
Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 3515 | } |
| 3516 | |
| 3517 | // Check if we have any device clause associated with the directive. |
| 3518 | const Expr *Device = nullptr; |
| 3519 | if (auto *C = S.getSingleClause<OMPDeviceClause>()) { |
| 3520 | Device = C->getDevice(); |
| 3521 | } |
| 3522 | |
Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 3523 | // Check if we have an if clause whose conditional always evaluates to false |
| 3524 | // or if we do not have any targets specified. If so the target region is not |
| 3525 | // an offload entry point. |
| 3526 | bool IsOffloadEntry = true; |
| 3527 | if (IfCond) { |
| 3528 | bool Val; |
Arpith Chacko Jacob | 43a8b7b | 2017-01-16 15:26:02 +0000 | [diff] [blame] | 3529 | if (CGF.ConstantFoldsToSimpleInteger(IfCond, Val) && !Val) |
Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 3530 | IsOffloadEntry = false; |
| 3531 | } |
| 3532 | if (CGM.getLangOpts().OMPTargetTriples.empty()) |
| 3533 | IsOffloadEntry = false; |
| 3534 | |
Arpith Chacko Jacob | 43a8b7b | 2017-01-16 15:26:02 +0000 | [diff] [blame] | 3535 | assert(CGF.CurFuncDecl && "No parent declaration for target region!"); |
Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 3536 | StringRef ParentName; |
| 3537 | // In case we have Ctors/Dtors we use the complete type variant to produce |
| 3538 | // the mangling of the device outlined kernel. |
Arpith Chacko Jacob | 43a8b7b | 2017-01-16 15:26:02 +0000 | [diff] [blame] | 3539 | if (auto *D = dyn_cast<CXXConstructorDecl>(CGF.CurFuncDecl)) |
Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 3540 | ParentName = CGM.getMangledName(GlobalDecl(D, Ctor_Complete)); |
Arpith Chacko Jacob | 43a8b7b | 2017-01-16 15:26:02 +0000 | [diff] [blame] | 3541 | else if (auto *D = dyn_cast<CXXDestructorDecl>(CGF.CurFuncDecl)) |
Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 3542 | ParentName = CGM.getMangledName(GlobalDecl(D, Dtor_Complete)); |
| 3543 | else |
| 3544 | ParentName = |
Arpith Chacko Jacob | 43a8b7b | 2017-01-16 15:26:02 +0000 | [diff] [blame] | 3545 | CGM.getMangledName(GlobalDecl(cast<FunctionDecl>(CGF.CurFuncDecl))); |
Samuel Antao | ee8fb30 | 2016-01-06 13:42:12 +0000 | [diff] [blame] | 3546 | |
Arpith Chacko Jacob | 43a8b7b | 2017-01-16 15:26:02 +0000 | [diff] [blame] | 3547 | // Emit target region as a standalone region. |
| 3548 | CGM.getOpenMPRuntime().emitTargetOutlinedFunction(S, ParentName, Fn, FnID, |
| 3549 | IsOffloadEntry, CodeGen); |
| 3550 | OMPLexicalScope Scope(CGF, S); |
Arpith Chacko Jacob | fe4890a | 2017-01-18 20:40:48 +0000 | [diff] [blame] | 3551 | llvm::SmallVector<llvm::Value *, 16> CapturedVars; |
| 3552 | CGF.GenerateOpenMPCapturedVars(CS, CapturedVars); |
Arpith Chacko Jacob | 43a8b7b | 2017-01-16 15:26:02 +0000 | [diff] [blame] | 3553 | CGM.getOpenMPRuntime().emitTargetCall(CGF, S, Fn, FnID, IfCond, Device, |
Samuel Antao | bed3c46 | 2015-10-02 16:14:20 +0000 | [diff] [blame] | 3554 | CapturedVars); |
Alexey Bataev | 0bd520b | 2014-09-19 08:19:49 +0000 | [diff] [blame] | 3555 | } |
| 3556 | |
Arpith Chacko Jacob | 43a8b7b | 2017-01-16 15:26:02 +0000 | [diff] [blame] | 3557 | static void emitTargetRegion(CodeGenFunction &CGF, const OMPTargetDirective &S, |
| 3558 | PrePostActionTy &Action) { |
| 3559 | CodeGenFunction::OMPPrivateScope PrivateScope(CGF); |
| 3560 | (void)CGF.EmitOMPFirstprivateClause(S, PrivateScope); |
| 3561 | CGF.EmitOMPPrivateClause(S, PrivateScope); |
| 3562 | (void)PrivateScope.Privatize(); |
| 3563 | |
| 3564 | Action.Enter(CGF); |
| 3565 | CGF.EmitStmt(cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 3566 | } |
| 3567 | |
| 3568 | void CodeGenFunction::EmitOMPTargetDeviceFunction(CodeGenModule &CGM, |
| 3569 | StringRef ParentName, |
| 3570 | const OMPTargetDirective &S) { |
| 3571 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 3572 | emitTargetRegion(CGF, S, Action); |
| 3573 | }; |
| 3574 | llvm::Function *Fn; |
| 3575 | llvm::Constant *Addr; |
| 3576 | // Emit target region as a standalone region. |
| 3577 | CGM.getOpenMPRuntime().emitTargetOutlinedFunction( |
| 3578 | S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen); |
| 3579 | assert(Fn && Addr && "Target device function emission failed."); |
| 3580 | } |
| 3581 | |
| 3582 | void CodeGenFunction::EmitOMPTargetDirective(const OMPTargetDirective &S) { |
| 3583 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 3584 | emitTargetRegion(CGF, S, Action); |
| 3585 | }; |
| 3586 | emitCommonOMPTargetDirective(*this, S, CodeGen); |
| 3587 | } |
| 3588 | |
Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 3589 | static void emitCommonOMPTeamsDirective(CodeGenFunction &CGF, |
| 3590 | const OMPExecutableDirective &S, |
| 3591 | OpenMPDirectiveKind InnermostKind, |
| 3592 | const RegionCodeGenTy &CodeGen) { |
Arpith Chacko Jacob | 19b911c | 2017-01-18 18:18:53 +0000 | [diff] [blame] | 3593 | const CapturedStmt *CS = S.getCapturedStmt(OMPD_teams); |
| 3594 | auto OutlinedFn = CGF.CGM.getOpenMPRuntime().emitTeamsOutlinedFunction( |
| 3595 | S, *CS->getCapturedDecl()->param_begin(), InnermostKind, CodeGen); |
Samuel Antao | b68e2db | 2016-03-03 16:20:23 +0000 | [diff] [blame] | 3596 | |
Arpith Chacko Jacob | 99a1e0e | 2017-01-25 02:18:43 +0000 | [diff] [blame] | 3597 | const OMPNumTeamsClause *NT = S.getSingleClause<OMPNumTeamsClause>(); |
| 3598 | const OMPThreadLimitClause *TL = S.getSingleClause<OMPThreadLimitClause>(); |
Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 3599 | if (NT || TL) { |
Carlo Bertolli | c687225 | 2016-04-04 15:55:02 +0000 | [diff] [blame] | 3600 | Expr *NumTeams = (NT) ? NT->getNumTeams() : nullptr; |
| 3601 | Expr *ThreadLimit = (TL) ? TL->getThreadLimit() : nullptr; |
Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 3602 | |
Carlo Bertolli | c687225 | 2016-04-04 15:55:02 +0000 | [diff] [blame] | 3603 | CGF.CGM.getOpenMPRuntime().emitNumTeamsClause(CGF, NumTeams, ThreadLimit, |
| 3604 | S.getLocStart()); |
Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 3605 | } |
| 3606 | |
Arpith Chacko Jacob | 99a1e0e | 2017-01-25 02:18:43 +0000 | [diff] [blame] | 3607 | OMPTeamsScope Scope(CGF, S); |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 3608 | llvm::SmallVector<llvm::Value *, 16> CapturedVars; |
| 3609 | CGF.GenerateOpenMPCapturedVars(*CS, CapturedVars); |
Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 3610 | CGF.CGM.getOpenMPRuntime().emitTeamsCall(CGF, S, S.getLocStart(), OutlinedFn, |
| 3611 | CapturedVars); |
| 3612 | } |
| 3613 | |
| 3614 | void CodeGenFunction::EmitOMPTeamsDirective(const OMPTeamsDirective &S) { |
Kelvin Li | 51336dd | 2016-12-15 17:55:32 +0000 | [diff] [blame] | 3615 | // Emit teams region as a standalone region. |
Alexey Bataev | 14fa1c6 | 2016-03-29 05:34:15 +0000 | [diff] [blame] | 3616 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 3617 | OMPPrivateScope PrivateScope(CGF); |
Carlo Bertolli | 6ad7b5a | 2016-03-03 22:09:40 +0000 | [diff] [blame] | 3618 | (void)CGF.EmitOMPFirstprivateClause(S, PrivateScope); |
| 3619 | CGF.EmitOMPPrivateClause(S, PrivateScope); |
Arpith Chacko Jacob | fc711b1 | 2017-02-16 16:48:49 +0000 | [diff] [blame] | 3620 | CGF.EmitOMPReductionClauseInit(S, PrivateScope); |
Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 3621 | (void)PrivateScope.Privatize(); |
| 3622 | CGF.EmitStmt(cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
Arpith Chacko Jacob | fc711b1 | 2017-02-16 16:48:49 +0000 | [diff] [blame] | 3623 | CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_teams); |
Carlo Bertolli | 430d8ec | 2016-03-03 20:34:23 +0000 | [diff] [blame] | 3624 | }; |
| 3625 | emitCommonOMPTeamsDirective(*this, S, OMPD_teams, CodeGen); |
Arpith Chacko Jacob | fc711b1 | 2017-02-16 16:48:49 +0000 | [diff] [blame] | 3626 | emitPostUpdateForReductionClause( |
| 3627 | *this, S, [](CodeGenFunction &) -> llvm::Value * { return nullptr; }); |
Alexey Bataev | 13314bf | 2014-10-09 04:18:56 +0000 | [diff] [blame] | 3628 | } |
Alexey Bataev | 6d4ed05 | 2015-07-01 06:57:41 +0000 | [diff] [blame] | 3629 | |
Arpith Chacko Jacob | 99a1e0e | 2017-01-25 02:18:43 +0000 | [diff] [blame] | 3630 | static void emitTargetTeamsRegion(CodeGenFunction &CGF, PrePostActionTy &Action, |
| 3631 | const OMPTargetTeamsDirective &S) { |
| 3632 | auto *CS = S.getCapturedStmt(OMPD_teams); |
| 3633 | Action.Enter(CGF); |
| 3634 | auto &&CodeGen = [CS](CodeGenFunction &CGF, PrePostActionTy &) { |
| 3635 | // TODO: Add support for clauses. |
| 3636 | CGF.EmitStmt(CS->getCapturedStmt()); |
| 3637 | }; |
| 3638 | emitCommonOMPTeamsDirective(CGF, S, OMPD_teams, CodeGen); |
| 3639 | } |
| 3640 | |
| 3641 | void CodeGenFunction::EmitOMPTargetTeamsDeviceFunction( |
| 3642 | CodeGenModule &CGM, StringRef ParentName, |
| 3643 | const OMPTargetTeamsDirective &S) { |
| 3644 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 3645 | emitTargetTeamsRegion(CGF, Action, S); |
| 3646 | }; |
| 3647 | llvm::Function *Fn; |
| 3648 | llvm::Constant *Addr; |
| 3649 | // Emit target region as a standalone region. |
| 3650 | CGM.getOpenMPRuntime().emitTargetOutlinedFunction( |
| 3651 | S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen); |
| 3652 | assert(Fn && Addr && "Target device function emission failed."); |
| 3653 | } |
| 3654 | |
| 3655 | void CodeGenFunction::EmitOMPTargetTeamsDirective( |
| 3656 | const OMPTargetTeamsDirective &S) { |
| 3657 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 3658 | emitTargetTeamsRegion(CGF, Action, S); |
| 3659 | }; |
| 3660 | emitCommonOMPTargetDirective(*this, S, CodeGen); |
| 3661 | } |
| 3662 | |
Alexey Bataev | 6d4ed05 | 2015-07-01 06:57:41 +0000 | [diff] [blame] | 3663 | void CodeGenFunction::EmitOMPCancellationPointDirective( |
| 3664 | const OMPCancellationPointDirective &S) { |
Alexey Bataev | 0f34da1 | 2015-07-02 04:17:07 +0000 | [diff] [blame] | 3665 | CGM.getOpenMPRuntime().emitCancellationPointCall(*this, S.getLocStart(), |
| 3666 | S.getCancelRegion()); |
Alexey Bataev | 6d4ed05 | 2015-07-01 06:57:41 +0000 | [diff] [blame] | 3667 | } |
| 3668 | |
Alexey Bataev | 8090987 | 2015-07-02 11:25:17 +0000 | [diff] [blame] | 3669 | void CodeGenFunction::EmitOMPCancelDirective(const OMPCancelDirective &S) { |
Alexey Bataev | 87933c7 | 2015-09-18 08:07:34 +0000 | [diff] [blame] | 3670 | const Expr *IfCond = nullptr; |
| 3671 | for (const auto *C : S.getClausesOfKind<OMPIfClause>()) { |
| 3672 | if (C->getNameModifier() == OMPD_unknown || |
| 3673 | C->getNameModifier() == OMPD_cancel) { |
| 3674 | IfCond = C->getCondition(); |
| 3675 | break; |
| 3676 | } |
| 3677 | } |
| 3678 | CGM.getOpenMPRuntime().emitCancelCall(*this, S.getLocStart(), IfCond, |
Alexey Bataev | 7d5d33e | 2015-07-06 05:50:32 +0000 | [diff] [blame] | 3679 | S.getCancelRegion()); |
Alexey Bataev | 8090987 | 2015-07-02 11:25:17 +0000 | [diff] [blame] | 3680 | } |
| 3681 | |
Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 3682 | CodeGenFunction::JumpDest |
| 3683 | CodeGenFunction::getOMPCancelDestination(OpenMPDirectiveKind Kind) { |
Alexey Bataev | 957d856 | 2016-11-17 15:12:05 +0000 | [diff] [blame] | 3684 | if (Kind == OMPD_parallel || Kind == OMPD_task || |
| 3685 | Kind == OMPD_target_parallel) |
Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 3686 | return ReturnBlock; |
Alexey Bataev | 25e5b44 | 2015-09-15 12:52:43 +0000 | [diff] [blame] | 3687 | assert(Kind == OMPD_for || Kind == OMPD_section || Kind == OMPD_sections || |
Alexey Bataev | 957d856 | 2016-11-17 15:12:05 +0000 | [diff] [blame] | 3688 | Kind == OMPD_parallel_sections || Kind == OMPD_parallel_for || |
| 3689 | Kind == OMPD_distribute_parallel_for || |
| 3690 | Kind == OMPD_target_parallel_for); |
| 3691 | return OMPCancelStack.getExitBlock(); |
Alexey Bataev | 81c7ea0 | 2015-07-03 09:56:58 +0000 | [diff] [blame] | 3692 | } |
Michael Wong | 65f367f | 2015-07-21 13:44:28 +0000 | [diff] [blame] | 3693 | |
Samuel Antao | cc10b85 | 2016-07-28 14:23:26 +0000 | [diff] [blame] | 3694 | void CodeGenFunction::EmitOMPUseDevicePtrClause( |
| 3695 | const OMPClause &NC, OMPPrivateScope &PrivateScope, |
| 3696 | const llvm::DenseMap<const ValueDecl *, Address> &CaptureDeviceAddrMap) { |
| 3697 | const auto &C = cast<OMPUseDevicePtrClause>(NC); |
| 3698 | auto OrigVarIt = C.varlist_begin(); |
| 3699 | auto InitIt = C.inits().begin(); |
| 3700 | for (auto PvtVarIt : C.private_copies()) { |
| 3701 | auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*OrigVarIt)->getDecl()); |
| 3702 | auto *InitVD = cast<VarDecl>(cast<DeclRefExpr>(*InitIt)->getDecl()); |
| 3703 | auto *PvtVD = cast<VarDecl>(cast<DeclRefExpr>(PvtVarIt)->getDecl()); |
| 3704 | |
| 3705 | // In order to identify the right initializer we need to match the |
| 3706 | // declaration used by the mapping logic. In some cases we may get |
| 3707 | // OMPCapturedExprDecl that refers to the original declaration. |
| 3708 | const ValueDecl *MatchingVD = OrigVD; |
| 3709 | if (auto *OED = dyn_cast<OMPCapturedExprDecl>(MatchingVD)) { |
| 3710 | // OMPCapturedExprDecl are used to privative fields of the current |
| 3711 | // structure. |
| 3712 | auto *ME = cast<MemberExpr>(OED->getInit()); |
| 3713 | assert(isa<CXXThisExpr>(ME->getBase()) && |
| 3714 | "Base should be the current struct!"); |
| 3715 | MatchingVD = ME->getMemberDecl(); |
| 3716 | } |
| 3717 | |
| 3718 | // If we don't have information about the current list item, move on to |
| 3719 | // the next one. |
| 3720 | auto InitAddrIt = CaptureDeviceAddrMap.find(MatchingVD); |
| 3721 | if (InitAddrIt == CaptureDeviceAddrMap.end()) |
| 3722 | continue; |
| 3723 | |
| 3724 | bool IsRegistered = PrivateScope.addPrivate(OrigVD, [&]() -> Address { |
| 3725 | // Initialize the temporary initialization variable with the address we |
| 3726 | // get from the runtime library. We have to cast the source address |
| 3727 | // because it is always a void *. References are materialized in the |
| 3728 | // privatization scope, so the initialization here disregards the fact |
| 3729 | // the original variable is a reference. |
| 3730 | QualType AddrQTy = |
| 3731 | getContext().getPointerType(OrigVD->getType().getNonReferenceType()); |
| 3732 | llvm::Type *AddrTy = ConvertTypeForMem(AddrQTy); |
| 3733 | Address InitAddr = Builder.CreateBitCast(InitAddrIt->second, AddrTy); |
| 3734 | setAddrOfLocalVar(InitVD, InitAddr); |
| 3735 | |
| 3736 | // Emit private declaration, it will be initialized by the value we |
| 3737 | // declaration we just added to the local declarations map. |
| 3738 | EmitDecl(*PvtVD); |
| 3739 | |
| 3740 | // The initialization variables reached its purpose in the emission |
| 3741 | // ofthe previous declaration, so we don't need it anymore. |
| 3742 | LocalDeclMap.erase(InitVD); |
| 3743 | |
| 3744 | // Return the address of the private variable. |
| 3745 | return GetAddrOfLocalVar(PvtVD); |
| 3746 | }); |
| 3747 | assert(IsRegistered && "firstprivate var already registered as private"); |
| 3748 | // Silence the warning about unused variable. |
| 3749 | (void)IsRegistered; |
| 3750 | |
| 3751 | ++OrigVarIt; |
| 3752 | ++InitIt; |
| 3753 | } |
| 3754 | } |
| 3755 | |
Michael Wong | 65f367f | 2015-07-21 13:44:28 +0000 | [diff] [blame] | 3756 | // Generate the instructions for '#pragma omp target data' directive. |
| 3757 | void CodeGenFunction::EmitOMPTargetDataDirective( |
| 3758 | const OMPTargetDataDirective &S) { |
Samuel Antao | cc10b85 | 2016-07-28 14:23:26 +0000 | [diff] [blame] | 3759 | CGOpenMPRuntime::TargetDataInfo Info(/*RequiresDevicePointerInfo=*/true); |
| 3760 | |
| 3761 | // Create a pre/post action to signal the privatization of the device pointer. |
| 3762 | // This action can be replaced by the OpenMP runtime code generation to |
| 3763 | // deactivate privatization. |
| 3764 | bool PrivatizeDevicePointers = false; |
| 3765 | class DevicePointerPrivActionTy : public PrePostActionTy { |
| 3766 | bool &PrivatizeDevicePointers; |
| 3767 | |
| 3768 | public: |
| 3769 | explicit DevicePointerPrivActionTy(bool &PrivatizeDevicePointers) |
| 3770 | : PrePostActionTy(), PrivatizeDevicePointers(PrivatizeDevicePointers) {} |
| 3771 | void Enter(CodeGenFunction &CGF) override { |
| 3772 | PrivatizeDevicePointers = true; |
| 3773 | } |
Samuel Antao | df158d5 | 2016-04-27 22:58:19 +0000 | [diff] [blame] | 3774 | }; |
Samuel Antao | cc10b85 | 2016-07-28 14:23:26 +0000 | [diff] [blame] | 3775 | DevicePointerPrivActionTy PrivAction(PrivatizeDevicePointers); |
| 3776 | |
| 3777 | auto &&CodeGen = [&S, &Info, &PrivatizeDevicePointers]( |
| 3778 | CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 3779 | auto &&InnermostCodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 3780 | CGF.EmitStmt( |
| 3781 | cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt()); |
| 3782 | }; |
| 3783 | |
| 3784 | // Codegen that selects wheather to generate the privatization code or not. |
| 3785 | auto &&PrivCodeGen = [&S, &Info, &PrivatizeDevicePointers, |
| 3786 | &InnermostCodeGen](CodeGenFunction &CGF, |
| 3787 | PrePostActionTy &Action) { |
| 3788 | RegionCodeGenTy RCG(InnermostCodeGen); |
| 3789 | PrivatizeDevicePointers = false; |
| 3790 | |
| 3791 | // Call the pre-action to change the status of PrivatizeDevicePointers if |
| 3792 | // needed. |
| 3793 | Action.Enter(CGF); |
| 3794 | |
| 3795 | if (PrivatizeDevicePointers) { |
| 3796 | OMPPrivateScope PrivateScope(CGF); |
| 3797 | // Emit all instances of the use_device_ptr clause. |
| 3798 | for (const auto *C : S.getClausesOfKind<OMPUseDevicePtrClause>()) |
| 3799 | CGF.EmitOMPUseDevicePtrClause(*C, PrivateScope, |
| 3800 | Info.CaptureDeviceAddrMap); |
| 3801 | (void)PrivateScope.Privatize(); |
| 3802 | RCG(CGF); |
| 3803 | } else |
| 3804 | RCG(CGF); |
| 3805 | }; |
| 3806 | |
| 3807 | // Forward the provided action to the privatization codegen. |
| 3808 | RegionCodeGenTy PrivRCG(PrivCodeGen); |
| 3809 | PrivRCG.setAction(Action); |
| 3810 | |
| 3811 | // Notwithstanding the body of the region is emitted as inlined directive, |
| 3812 | // we don't use an inline scope as changes in the references inside the |
| 3813 | // region are expected to be visible outside, so we do not privative them. |
| 3814 | OMPLexicalScope Scope(CGF, S); |
| 3815 | CGF.CGM.getOpenMPRuntime().emitInlinedDirective(CGF, OMPD_target_data, |
| 3816 | PrivRCG); |
| 3817 | }; |
| 3818 | |
| 3819 | RegionCodeGenTy RCG(CodeGen); |
Samuel Antao | df158d5 | 2016-04-27 22:58:19 +0000 | [diff] [blame] | 3820 | |
| 3821 | // If we don't have target devices, don't bother emitting the data mapping |
| 3822 | // code. |
| 3823 | if (CGM.getLangOpts().OMPTargetTriples.empty()) { |
Samuel Antao | cc10b85 | 2016-07-28 14:23:26 +0000 | [diff] [blame] | 3824 | RCG(*this); |
Samuel Antao | df158d5 | 2016-04-27 22:58:19 +0000 | [diff] [blame] | 3825 | return; |
| 3826 | } |
| 3827 | |
| 3828 | // Check if we have any if clause associated with the directive. |
| 3829 | const Expr *IfCond = nullptr; |
| 3830 | if (auto *C = S.getSingleClause<OMPIfClause>()) |
| 3831 | IfCond = C->getCondition(); |
| 3832 | |
| 3833 | // Check if we have any device clause associated with the directive. |
| 3834 | const Expr *Device = nullptr; |
| 3835 | if (auto *C = S.getSingleClause<OMPDeviceClause>()) |
| 3836 | Device = C->getDevice(); |
| 3837 | |
Samuel Antao | cc10b85 | 2016-07-28 14:23:26 +0000 | [diff] [blame] | 3838 | // Set the action to signal privatization of device pointers. |
| 3839 | RCG.setAction(PrivAction); |
| 3840 | |
| 3841 | // Emit region code. |
| 3842 | CGM.getOpenMPRuntime().emitTargetDataCalls(*this, S, IfCond, Device, RCG, |
| 3843 | Info); |
Michael Wong | 65f367f | 2015-07-21 13:44:28 +0000 | [diff] [blame] | 3844 | } |
Alexey Bataev | 49f6e78 | 2015-12-01 04:18:41 +0000 | [diff] [blame] | 3845 | |
Samuel Antao | df67fc4 | 2016-01-19 19:15:56 +0000 | [diff] [blame] | 3846 | void CodeGenFunction::EmitOMPTargetEnterDataDirective( |
| 3847 | const OMPTargetEnterDataDirective &S) { |
Samuel Antao | bd0ae2e | 2016-04-27 23:07:29 +0000 | [diff] [blame] | 3848 | // If we don't have target devices, don't bother emitting the data mapping |
| 3849 | // code. |
| 3850 | if (CGM.getLangOpts().OMPTargetTriples.empty()) |
| 3851 | return; |
| 3852 | |
| 3853 | // Check if we have any if clause associated with the directive. |
| 3854 | const Expr *IfCond = nullptr; |
| 3855 | if (auto *C = S.getSingleClause<OMPIfClause>()) |
| 3856 | IfCond = C->getCondition(); |
| 3857 | |
| 3858 | // Check if we have any device clause associated with the directive. |
| 3859 | const Expr *Device = nullptr; |
| 3860 | if (auto *C = S.getSingleClause<OMPDeviceClause>()) |
| 3861 | Device = C->getDevice(); |
| 3862 | |
Samuel Antao | 8d2d730 | 2016-05-26 18:30:22 +0000 | [diff] [blame] | 3863 | CGM.getOpenMPRuntime().emitTargetDataStandAloneCall(*this, S, IfCond, Device); |
Samuel Antao | df67fc4 | 2016-01-19 19:15:56 +0000 | [diff] [blame] | 3864 | } |
| 3865 | |
Samuel Antao | 7259076 | 2016-01-19 20:04:50 +0000 | [diff] [blame] | 3866 | void CodeGenFunction::EmitOMPTargetExitDataDirective( |
| 3867 | const OMPTargetExitDataDirective &S) { |
Samuel Antao | 8dd6628 | 2016-04-27 23:14:30 +0000 | [diff] [blame] | 3868 | // If we don't have target devices, don't bother emitting the data mapping |
| 3869 | // code. |
| 3870 | if (CGM.getLangOpts().OMPTargetTriples.empty()) |
| 3871 | return; |
| 3872 | |
| 3873 | // Check if we have any if clause associated with the directive. |
| 3874 | const Expr *IfCond = nullptr; |
| 3875 | if (auto *C = S.getSingleClause<OMPIfClause>()) |
| 3876 | IfCond = C->getCondition(); |
| 3877 | |
| 3878 | // Check if we have any device clause associated with the directive. |
| 3879 | const Expr *Device = nullptr; |
| 3880 | if (auto *C = S.getSingleClause<OMPDeviceClause>()) |
| 3881 | Device = C->getDevice(); |
| 3882 | |
Samuel Antao | 8d2d730 | 2016-05-26 18:30:22 +0000 | [diff] [blame] | 3883 | CGM.getOpenMPRuntime().emitTargetDataStandAloneCall(*this, S, IfCond, Device); |
Samuel Antao | 7259076 | 2016-01-19 20:04:50 +0000 | [diff] [blame] | 3884 | } |
| 3885 | |
Arpith Chacko Jacob | 19b911c | 2017-01-18 18:18:53 +0000 | [diff] [blame] | 3886 | static void emitTargetParallelRegion(CodeGenFunction &CGF, |
| 3887 | const OMPTargetParallelDirective &S, |
| 3888 | PrePostActionTy &Action) { |
| 3889 | // Get the captured statement associated with the 'parallel' region. |
| 3890 | auto *CS = S.getCapturedStmt(OMPD_parallel); |
| 3891 | Action.Enter(CGF); |
Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 3892 | auto &&CodeGen = [&S, CS](CodeGenFunction &CGF, PrePostActionTy &) { |
| 3893 | CodeGenFunction::OMPPrivateScope PrivateScope(CGF); |
| 3894 | (void)CGF.EmitOMPFirstprivateClause(S, PrivateScope); |
| 3895 | CGF.EmitOMPPrivateClause(S, PrivateScope); |
| 3896 | CGF.EmitOMPReductionClauseInit(S, PrivateScope); |
| 3897 | (void)PrivateScope.Privatize(); |
Arpith Chacko Jacob | 19b911c | 2017-01-18 18:18:53 +0000 | [diff] [blame] | 3898 | // TODO: Add support for clauses. |
| 3899 | CGF.EmitStmt(CS->getCapturedStmt()); |
Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 3900 | CGF.EmitOMPReductionClauseFinal(S, /*ReductionKind=*/OMPD_parallel); |
Arpith Chacko Jacob | 19b911c | 2017-01-18 18:18:53 +0000 | [diff] [blame] | 3901 | }; |
Carlo Bertolli | b0ff0a6 | 2017-04-25 17:52:12 +0000 | [diff] [blame] | 3902 | emitCommonOMPParallelDirective(CGF, S, OMPD_parallel, CodeGen, |
| 3903 | emitEmptyBoundParameters); |
Arpith Chacko Jacob | 101e8fb | 2017-02-16 16:20:16 +0000 | [diff] [blame] | 3904 | emitPostUpdateForReductionClause( |
| 3905 | CGF, S, [](CodeGenFunction &) -> llvm::Value * { return nullptr; }); |
Arpith Chacko Jacob | 19b911c | 2017-01-18 18:18:53 +0000 | [diff] [blame] | 3906 | } |
| 3907 | |
| 3908 | void CodeGenFunction::EmitOMPTargetParallelDeviceFunction( |
| 3909 | CodeGenModule &CGM, StringRef ParentName, |
| 3910 | const OMPTargetParallelDirective &S) { |
| 3911 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 3912 | emitTargetParallelRegion(CGF, S, Action); |
| 3913 | }; |
| 3914 | llvm::Function *Fn; |
| 3915 | llvm::Constant *Addr; |
| 3916 | // Emit target region as a standalone region. |
| 3917 | CGM.getOpenMPRuntime().emitTargetOutlinedFunction( |
| 3918 | S, ParentName, Fn, Addr, /*IsOffloadEntry=*/true, CodeGen); |
| 3919 | assert(Fn && Addr && "Target device function emission failed."); |
| 3920 | } |
| 3921 | |
Arpith Chacko Jacob | e955b3d | 2016-01-26 18:48:41 +0000 | [diff] [blame] | 3922 | void CodeGenFunction::EmitOMPTargetParallelDirective( |
| 3923 | const OMPTargetParallelDirective &S) { |
Arpith Chacko Jacob | 19b911c | 2017-01-18 18:18:53 +0000 | [diff] [blame] | 3924 | auto &&CodeGen = [&S](CodeGenFunction &CGF, PrePostActionTy &Action) { |
| 3925 | emitTargetParallelRegion(CGF, S, Action); |
| 3926 | }; |
| 3927 | emitCommonOMPTargetDirective(*this, S, CodeGen); |
Arpith Chacko Jacob | e955b3d | 2016-01-26 18:48:41 +0000 | [diff] [blame] | 3928 | } |
| 3929 | |
Arpith Chacko Jacob | 05bebb5 | 2016-02-03 15:46:42 +0000 | [diff] [blame] | 3930 | void CodeGenFunction::EmitOMPTargetParallelForDirective( |
| 3931 | const OMPTargetParallelForDirective &S) { |
| 3932 | // TODO: codegen for target parallel for. |
| 3933 | } |
| 3934 | |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 3935 | /// Emit a helper variable and return corresponding lvalue. |
| 3936 | static void mapParam(CodeGenFunction &CGF, const DeclRefExpr *Helper, |
| 3937 | const ImplicitParamDecl *PVD, |
| 3938 | CodeGenFunction::OMPPrivateScope &Privates) { |
| 3939 | auto *VDecl = cast<VarDecl>(Helper->getDecl()); |
| 3940 | Privates.addPrivate( |
| 3941 | VDecl, [&CGF, PVD]() -> Address { return CGF.GetAddrOfLocalVar(PVD); }); |
| 3942 | } |
| 3943 | |
| 3944 | void CodeGenFunction::EmitOMPTaskLoopBasedDirective(const OMPLoopDirective &S) { |
| 3945 | assert(isOpenMPTaskLoopDirective(S.getDirectiveKind())); |
| 3946 | // Emit outlined function for task construct. |
| 3947 | auto CS = cast<CapturedStmt>(S.getAssociatedStmt()); |
| 3948 | auto CapturedStruct = GenerateCapturedStmtArgument(*CS); |
| 3949 | auto SharedsTy = getContext().getRecordType(CS->getCapturedRecordDecl()); |
| 3950 | const Expr *IfCond = nullptr; |
| 3951 | for (const auto *C : S.getClausesOfKind<OMPIfClause>()) { |
| 3952 | if (C->getNameModifier() == OMPD_unknown || |
| 3953 | C->getNameModifier() == OMPD_taskloop) { |
| 3954 | IfCond = C->getCondition(); |
| 3955 | break; |
| 3956 | } |
| 3957 | } |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 3958 | |
| 3959 | OMPTaskDataTy Data; |
| 3960 | // Check if taskloop must be emitted without taskgroup. |
| 3961 | Data.Nogroup = S.getSingleClause<OMPNogroupClause>(); |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 3962 | // TODO: Check if we should emit tied or untied task. |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 3963 | Data.Tied = true; |
| 3964 | // Set scheduling for taskloop |
Alexey Bataev | 2b19a6f | 2016-04-28 09:15:06 +0000 | [diff] [blame] | 3965 | if (const auto* Clause = S.getSingleClause<OMPGrainsizeClause>()) { |
| 3966 | // grainsize clause |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 3967 | Data.Schedule.setInt(/*IntVal=*/false); |
| 3968 | Data.Schedule.setPointer(EmitScalarExpr(Clause->getGrainsize())); |
Alexey Bataev | 2b19a6f | 2016-04-28 09:15:06 +0000 | [diff] [blame] | 3969 | } else if (const auto* Clause = S.getSingleClause<OMPNumTasksClause>()) { |
| 3970 | // num_tasks clause |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 3971 | Data.Schedule.setInt(/*IntVal=*/true); |
| 3972 | Data.Schedule.setPointer(EmitScalarExpr(Clause->getNumTasks())); |
Alexey Bataev | 2b19a6f | 2016-04-28 09:15:06 +0000 | [diff] [blame] | 3973 | } |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 3974 | |
| 3975 | auto &&BodyGen = [CS, &S](CodeGenFunction &CGF, PrePostActionTy &) { |
| 3976 | // if (PreCond) { |
| 3977 | // for (IV in 0..LastIteration) BODY; |
| 3978 | // <Final counter/linear vars updates>; |
| 3979 | // } |
| 3980 | // |
| 3981 | |
| 3982 | // Emit: if (PreCond) - begin. |
| 3983 | // If the condition constant folds and can be elided, avoid emitting the |
| 3984 | // whole loop. |
| 3985 | bool CondConstant; |
| 3986 | llvm::BasicBlock *ContBlock = nullptr; |
| 3987 | OMPLoopScope PreInitScope(CGF, S); |
| 3988 | if (CGF.ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) { |
| 3989 | if (!CondConstant) |
| 3990 | return; |
| 3991 | } else { |
| 3992 | auto *ThenBlock = CGF.createBasicBlock("taskloop.if.then"); |
| 3993 | ContBlock = CGF.createBasicBlock("taskloop.if.end"); |
| 3994 | emitPreCond(CGF, S, S.getPreCond(), ThenBlock, ContBlock, |
| 3995 | CGF.getProfileCount(&S)); |
| 3996 | CGF.EmitBlock(ThenBlock); |
| 3997 | CGF.incrementProfileCounter(&S); |
| 3998 | } |
| 3999 | |
Alexey Bataev | 1e73ef3 | 2016-04-28 12:14:51 +0000 | [diff] [blame] | 4000 | if (isOpenMPSimdDirective(S.getDirectiveKind())) |
| 4001 | CGF.EmitOMPSimdInit(S); |
| 4002 | |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 4003 | OMPPrivateScope LoopScope(CGF); |
| 4004 | // Emit helper vars inits. |
| 4005 | enum { LowerBound = 5, UpperBound, Stride, LastIter }; |
| 4006 | auto *I = CS->getCapturedDecl()->param_begin(); |
| 4007 | auto *LBP = std::next(I, LowerBound); |
| 4008 | auto *UBP = std::next(I, UpperBound); |
| 4009 | auto *STP = std::next(I, Stride); |
| 4010 | auto *LIP = std::next(I, LastIter); |
| 4011 | mapParam(CGF, cast<DeclRefExpr>(S.getLowerBoundVariable()), *LBP, |
| 4012 | LoopScope); |
| 4013 | mapParam(CGF, cast<DeclRefExpr>(S.getUpperBoundVariable()), *UBP, |
| 4014 | LoopScope); |
| 4015 | mapParam(CGF, cast<DeclRefExpr>(S.getStrideVariable()), *STP, LoopScope); |
| 4016 | mapParam(CGF, cast<DeclRefExpr>(S.getIsLastIterVariable()), *LIP, |
| 4017 | LoopScope); |
| 4018 | CGF.EmitOMPPrivateLoopCounters(S, LoopScope); |
Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 4019 | bool HasLastprivateClause = CGF.EmitOMPLastprivateClauseInit(S, LoopScope); |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 4020 | (void)LoopScope.Privatize(); |
| 4021 | // Emit the loop iteration variable. |
| 4022 | const Expr *IVExpr = S.getIterationVariable(); |
| 4023 | const VarDecl *IVDecl = cast<VarDecl>(cast<DeclRefExpr>(IVExpr)->getDecl()); |
| 4024 | CGF.EmitVarDecl(*IVDecl); |
| 4025 | CGF.EmitIgnoredExpr(S.getInit()); |
| 4026 | |
| 4027 | // Emit the iterations count variable. |
| 4028 | // If it is not a variable, Sema decided to calculate iterations count on |
| 4029 | // each iteration (e.g., it is foldable into a constant). |
| 4030 | if (auto LIExpr = dyn_cast<DeclRefExpr>(S.getLastIteration())) { |
| 4031 | CGF.EmitVarDecl(*cast<VarDecl>(LIExpr->getDecl())); |
| 4032 | // Emit calculation of the iterations count. |
| 4033 | CGF.EmitIgnoredExpr(S.getCalcLastIteration()); |
| 4034 | } |
| 4035 | |
| 4036 | CGF.EmitOMPInnerLoop(S, LoopScope.requiresCleanups(), S.getCond(), |
| 4037 | S.getInc(), |
| 4038 | [&S](CodeGenFunction &CGF) { |
| 4039 | CGF.EmitOMPLoopBody(S, JumpDest()); |
| 4040 | CGF.EmitStopPoint(&S); |
| 4041 | }, |
| 4042 | [](CodeGenFunction &) {}); |
| 4043 | // Emit: if (PreCond) - end. |
| 4044 | if (ContBlock) { |
| 4045 | CGF.EmitBranch(ContBlock); |
| 4046 | CGF.EmitBlock(ContBlock, true); |
| 4047 | } |
Alexey Bataev | f93095a | 2016-05-05 08:46:22 +0000 | [diff] [blame] | 4048 | // Emit final copy of the lastprivate variables if IsLastIter != 0. |
| 4049 | if (HasLastprivateClause) { |
| 4050 | CGF.EmitOMPLastprivateClauseFinal( |
| 4051 | S, isOpenMPSimdDirective(S.getDirectiveKind()), |
| 4052 | CGF.Builder.CreateIsNotNull(CGF.EmitLoadOfScalar( |
| 4053 | CGF.GetAddrOfLocalVar(*LIP), /*Volatile=*/false, |
| 4054 | (*LIP)->getType(), S.getLocStart()))); |
| 4055 | } |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 4056 | }; |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 4057 | auto &&TaskGen = [&S, SharedsTy, CapturedStruct, |
| 4058 | IfCond](CodeGenFunction &CGF, llvm::Value *OutlinedFn, |
| 4059 | const OMPTaskDataTy &Data) { |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 4060 | auto &&CodeGen = [&](CodeGenFunction &CGF, PrePostActionTy &) { |
| 4061 | OMPLoopScope PreInitScope(CGF, S); |
Alexey Bataev | 24b5bae | 2016-04-28 09:23:51 +0000 | [diff] [blame] | 4062 | CGF.CGM.getOpenMPRuntime().emitTaskLoopCall(CGF, S.getLocStart(), S, |
| 4063 | OutlinedFn, SharedsTy, |
| 4064 | CapturedStruct, IfCond, Data); |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 4065 | }; |
| 4066 | CGF.CGM.getOpenMPRuntime().emitInlinedDirective(CGF, OMPD_taskloop, |
| 4067 | CodeGen); |
| 4068 | }; |
Alexey Bataev | 3344603 | 2017-07-12 18:09:32 +0000 | [diff] [blame] | 4069 | if (Data.Nogroup) |
| 4070 | EmitOMPTaskBasedDirective(S, BodyGen, TaskGen, Data); |
| 4071 | else { |
| 4072 | CGM.getOpenMPRuntime().emitTaskgroupRegion( |
| 4073 | *this, |
| 4074 | [&S, &BodyGen, &TaskGen, &Data](CodeGenFunction &CGF, |
| 4075 | PrePostActionTy &Action) { |
| 4076 | Action.Enter(CGF); |
| 4077 | CGF.EmitOMPTaskBasedDirective(S, BodyGen, TaskGen, Data); |
| 4078 | }, |
| 4079 | S.getLocStart()); |
| 4080 | } |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 4081 | } |
| 4082 | |
Alexey Bataev | 49f6e78 | 2015-12-01 04:18:41 +0000 | [diff] [blame] | 4083 | void CodeGenFunction::EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S) { |
Alexey Bataev | 7292c29 | 2016-04-25 12:22:29 +0000 | [diff] [blame] | 4084 | EmitOMPTaskLoopBasedDirective(S); |
Alexey Bataev | 49f6e78 | 2015-12-01 04:18:41 +0000 | [diff] [blame] | 4085 | } |
| 4086 | |
Alexey Bataev | 0a6ed84 | 2015-12-03 09:40:15 +0000 | [diff] [blame] | 4087 | void CodeGenFunction::EmitOMPTaskLoopSimdDirective( |
| 4088 | const OMPTaskLoopSimdDirective &S) { |
Alexey Bataev | 1e73ef3 | 2016-04-28 12:14:51 +0000 | [diff] [blame] | 4089 | EmitOMPTaskLoopBasedDirective(S); |
Alexey Bataev | 0a6ed84 | 2015-12-03 09:40:15 +0000 | [diff] [blame] | 4090 | } |
Samuel Antao | 686c70c | 2016-05-26 17:30:50 +0000 | [diff] [blame] | 4091 | |
| 4092 | // Generate the instructions for '#pragma omp target update' directive. |
| 4093 | void CodeGenFunction::EmitOMPTargetUpdateDirective( |
| 4094 | const OMPTargetUpdateDirective &S) { |
Samuel Antao | 8d2d730 | 2016-05-26 18:30:22 +0000 | [diff] [blame] | 4095 | // If we don't have target devices, don't bother emitting the data mapping |
| 4096 | // code. |
| 4097 | if (CGM.getLangOpts().OMPTargetTriples.empty()) |
| 4098 | return; |
| 4099 | |
| 4100 | // Check if we have any if clause associated with the directive. |
| 4101 | const Expr *IfCond = nullptr; |
| 4102 | if (auto *C = S.getSingleClause<OMPIfClause>()) |
| 4103 | IfCond = C->getCondition(); |
| 4104 | |
| 4105 | // Check if we have any device clause associated with the directive. |
| 4106 | const Expr *Device = nullptr; |
| 4107 | if (auto *C = S.getSingleClause<OMPDeviceClause>()) |
| 4108 | Device = C->getDevice(); |
| 4109 | |
| 4110 | CGM.getOpenMPRuntime().emitTargetDataStandAloneCall(*this, S, IfCond, Device); |
Samuel Antao | 686c70c | 2016-05-26 17:30:50 +0000 | [diff] [blame] | 4111 | } |