1 //===----- CGOpenMPRuntime.cpp - Interface to OpenMP Runtimes -------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This provides a class for OpenMP runtime code generation. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "CGCXXABI.h" 15 #include "CGCleanup.h" 16 #include "CGOpenMPRuntime.h" 17 #include "CodeGenFunction.h" 18 #include "clang/CodeGen/ConstantInitBuilder.h" 19 #include "clang/AST/Decl.h" 20 #include "clang/AST/StmtOpenMP.h" 21 #include "llvm/ADT/ArrayRef.h" 22 #include "llvm/ADT/BitmaskEnum.h" 23 #include "llvm/Bitcode/BitcodeReader.h" 24 #include "llvm/IR/CallSite.h" 25 #include "llvm/IR/DerivedTypes.h" 26 #include "llvm/IR/GlobalValue.h" 27 #include "llvm/IR/Value.h" 28 #include "llvm/Support/Format.h" 29 #include "llvm/Support/raw_ostream.h" 30 #include <cassert> 31 32 using namespace clang; 33 using namespace CodeGen; 34 35 namespace { 36 /// \brief Base class for handling code generation inside OpenMP regions. 37 class CGOpenMPRegionInfo : public CodeGenFunction::CGCapturedStmtInfo { 38 public: 39 /// \brief Kinds of OpenMP regions used in codegen. 40 enum CGOpenMPRegionKind { 41 /// \brief Region with outlined function for standalone 'parallel' 42 /// directive. 43 ParallelOutlinedRegion, 44 /// \brief Region with outlined function for standalone 'task' directive. 45 TaskOutlinedRegion, 46 /// \brief Region for constructs that do not require function outlining, 47 /// like 'for', 'sections', 'atomic' etc. directives. 48 InlinedRegion, 49 /// \brief Region with outlined function for standalone 'target' directive. 50 TargetRegion, 51 }; 52 53 CGOpenMPRegionInfo(const CapturedStmt &CS, 54 const CGOpenMPRegionKind RegionKind, 55 const RegionCodeGenTy &CodeGen, OpenMPDirectiveKind Kind, 56 bool HasCancel) 57 : CGCapturedStmtInfo(CS, CR_OpenMP), RegionKind(RegionKind), 58 CodeGen(CodeGen), Kind(Kind), HasCancel(HasCancel) {} 59 60 CGOpenMPRegionInfo(const CGOpenMPRegionKind RegionKind, 61 const RegionCodeGenTy &CodeGen, OpenMPDirectiveKind Kind, 62 bool HasCancel) 63 : CGCapturedStmtInfo(CR_OpenMP), RegionKind(RegionKind), CodeGen(CodeGen), 64 Kind(Kind), HasCancel(HasCancel) {} 65 66 /// \brief Get a variable or parameter for storing global thread id 67 /// inside OpenMP construct. 68 virtual const VarDecl *getThreadIDVariable() const = 0; 69 70 /// \brief Emit the captured statement body. 71 void EmitBody(CodeGenFunction &CGF, const Stmt *S) override; 72 73 /// \brief Get an LValue for the current ThreadID variable. 74 /// \return LValue for thread id variable. This LValue always has type int32*. 75 virtual LValue getThreadIDVariableLValue(CodeGenFunction &CGF); 76 77 virtual void emitUntiedSwitch(CodeGenFunction & /*CGF*/) {} 78 79 CGOpenMPRegionKind getRegionKind() const { return RegionKind; } 80 81 OpenMPDirectiveKind getDirectiveKind() const { return Kind; } 82 83 bool hasCancel() const { return HasCancel; } 84 85 static bool classof(const CGCapturedStmtInfo *Info) { 86 return Info->getKind() == CR_OpenMP; 87 } 88 89 ~CGOpenMPRegionInfo() override = default; 90 91 protected: 92 CGOpenMPRegionKind RegionKind; 93 RegionCodeGenTy CodeGen; 94 OpenMPDirectiveKind Kind; 95 bool HasCancel; 96 }; 97 98 /// \brief API for captured statement code generation in OpenMP constructs. 99 class CGOpenMPOutlinedRegionInfo final : public CGOpenMPRegionInfo { 100 public: 101 CGOpenMPOutlinedRegionInfo(const CapturedStmt &CS, const VarDecl *ThreadIDVar, 102 const RegionCodeGenTy &CodeGen, 103 OpenMPDirectiveKind Kind, bool HasCancel, 104 StringRef HelperName) 105 : CGOpenMPRegionInfo(CS, ParallelOutlinedRegion, CodeGen, Kind, 106 HasCancel), 107 ThreadIDVar(ThreadIDVar), HelperName(HelperName) { 108 assert(ThreadIDVar != nullptr && "No ThreadID in OpenMP region."); 109 } 110 111 /// \brief Get a variable or parameter for storing global thread id 112 /// inside OpenMP construct. 113 const VarDecl *getThreadIDVariable() const override { return ThreadIDVar; } 114 115 /// \brief Get the name of the capture helper. 116 StringRef getHelperName() const override { return HelperName; } 117 118 static bool classof(const CGCapturedStmtInfo *Info) { 119 return CGOpenMPRegionInfo::classof(Info) && 120 cast<CGOpenMPRegionInfo>(Info)->getRegionKind() == 121 ParallelOutlinedRegion; 122 } 123 124 private: 125 /// \brief A variable or parameter storing global thread id for OpenMP 126 /// constructs. 127 const VarDecl *ThreadIDVar; 128 StringRef HelperName; 129 }; 130 131 /// \brief API for captured statement code generation in OpenMP constructs. 132 class CGOpenMPTaskOutlinedRegionInfo final : public CGOpenMPRegionInfo { 133 public: 134 class UntiedTaskActionTy final : public PrePostActionTy { 135 bool Untied; 136 const VarDecl *PartIDVar; 137 const RegionCodeGenTy UntiedCodeGen; 138 llvm::SwitchInst *UntiedSwitch = nullptr; 139 140 public: 141 UntiedTaskActionTy(bool Tied, const VarDecl *PartIDVar, 142 const RegionCodeGenTy &UntiedCodeGen) 143 : Untied(!Tied), PartIDVar(PartIDVar), UntiedCodeGen(UntiedCodeGen) {} 144 void Enter(CodeGenFunction &CGF) override { 145 if (Untied) { 146 // Emit task switching point. 147 auto PartIdLVal = CGF.EmitLoadOfPointerLValue( 148 CGF.GetAddrOfLocalVar(PartIDVar), 149 PartIDVar->getType()->castAs<PointerType>()); 150 auto *Res = CGF.EmitLoadOfScalar(PartIdLVal, SourceLocation()); 151 auto *DoneBB = CGF.createBasicBlock(".untied.done."); 152 UntiedSwitch = CGF.Builder.CreateSwitch(Res, DoneBB); 153 CGF.EmitBlock(DoneBB); 154 CGF.EmitBranchThroughCleanup(CGF.ReturnBlock); 155 CGF.EmitBlock(CGF.createBasicBlock(".untied.jmp.")); 156 UntiedSwitch->addCase(CGF.Builder.getInt32(0), 157 CGF.Builder.GetInsertBlock()); 158 emitUntiedSwitch(CGF); 159 } 160 } 161 void emitUntiedSwitch(CodeGenFunction &CGF) const { 162 if (Untied) { 163 auto PartIdLVal = CGF.EmitLoadOfPointerLValue( 164 CGF.GetAddrOfLocalVar(PartIDVar), 165 PartIDVar->getType()->castAs<PointerType>()); 166 CGF.EmitStoreOfScalar(CGF.Builder.getInt32(UntiedSwitch->getNumCases()), 167 PartIdLVal); 168 UntiedCodeGen(CGF); 169 CodeGenFunction::JumpDest CurPoint = 170 CGF.getJumpDestInCurrentScope(".untied.next."); 171 CGF.EmitBranchThroughCleanup(CGF.ReturnBlock); 172 CGF.EmitBlock(CGF.createBasicBlock(".untied.jmp.")); 173 UntiedSwitch->addCase(CGF.Builder.getInt32(UntiedSwitch->getNumCases()), 174 CGF.Builder.GetInsertBlock()); 175 CGF.EmitBranchThroughCleanup(CurPoint); 176 CGF.EmitBlock(CurPoint.getBlock()); 177 } 178 } 179 unsigned getNumberOfParts() const { return UntiedSwitch->getNumCases(); } 180 }; 181 CGOpenMPTaskOutlinedRegionInfo(const CapturedStmt &CS, 182 const VarDecl *ThreadIDVar, 183 const RegionCodeGenTy &CodeGen, 184 OpenMPDirectiveKind Kind, bool HasCancel, 185 const UntiedTaskActionTy &Action) 186 : CGOpenMPRegionInfo(CS, TaskOutlinedRegion, CodeGen, Kind, HasCancel), 187 ThreadIDVar(ThreadIDVar), Action(Action) { 188 assert(ThreadIDVar != nullptr && "No ThreadID in OpenMP region."); 189 } 190 191 /// \brief Get a variable or parameter for storing global thread id 192 /// inside OpenMP construct. 193 const VarDecl *getThreadIDVariable() const override { return ThreadIDVar; } 194 195 /// \brief Get an LValue for the current ThreadID variable. 196 LValue getThreadIDVariableLValue(CodeGenFunction &CGF) override; 197 198 /// \brief Get the name of the capture helper. 199 StringRef getHelperName() const override { return ".omp_outlined."; } 200 201 void emitUntiedSwitch(CodeGenFunction &CGF) override { 202 Action.emitUntiedSwitch(CGF); 203 } 204 205 static bool classof(const CGCapturedStmtInfo *Info) { 206 return CGOpenMPRegionInfo::classof(Info) && 207 cast<CGOpenMPRegionInfo>(Info)->getRegionKind() == 208 TaskOutlinedRegion; 209 } 210 211 private: 212 /// \brief A variable or parameter storing global thread id for OpenMP 213 /// constructs. 214 const VarDecl *ThreadIDVar; 215 /// Action for emitting code for untied tasks. 216 const UntiedTaskActionTy &Action; 217 }; 218 219 /// \brief API for inlined captured statement code generation in OpenMP 220 /// constructs. 221 class CGOpenMPInlinedRegionInfo : public CGOpenMPRegionInfo { 222 public: 223 CGOpenMPInlinedRegionInfo(CodeGenFunction::CGCapturedStmtInfo *OldCSI, 224 const RegionCodeGenTy &CodeGen, 225 OpenMPDirectiveKind Kind, bool HasCancel) 226 : CGOpenMPRegionInfo(InlinedRegion, CodeGen, Kind, HasCancel), 227 OldCSI(OldCSI), 228 OuterRegionInfo(dyn_cast_or_null<CGOpenMPRegionInfo>(OldCSI)) {} 229 230 // \brief Retrieve the value of the context parameter. 231 llvm::Value *getContextValue() const override { 232 if (OuterRegionInfo) 233 return OuterRegionInfo->getContextValue(); 234 llvm_unreachable("No context value for inlined OpenMP region"); 235 } 236 237 void setContextValue(llvm::Value *V) override { 238 if (OuterRegionInfo) { 239 OuterRegionInfo->setContextValue(V); 240 return; 241 } 242 llvm_unreachable("No context value for inlined OpenMP region"); 243 } 244 245 /// \brief Lookup the captured field decl for a variable. 246 const FieldDecl *lookup(const VarDecl *VD) const override { 247 if (OuterRegionInfo) 248 return OuterRegionInfo->lookup(VD); 249 // If there is no outer outlined region,no need to lookup in a list of 250 // captured variables, we can use the original one. 251 return nullptr; 252 } 253 254 FieldDecl *getThisFieldDecl() const override { 255 if (OuterRegionInfo) 256 return OuterRegionInfo->getThisFieldDecl(); 257 return nullptr; 258 } 259 260 /// \brief Get a variable or parameter for storing global thread id 261 /// inside OpenMP construct. 262 const VarDecl *getThreadIDVariable() const override { 263 if (OuterRegionInfo) 264 return OuterRegionInfo->getThreadIDVariable(); 265 return nullptr; 266 } 267 268 /// \brief Get an LValue for the current ThreadID variable. 269 LValue getThreadIDVariableLValue(CodeGenFunction &CGF) override { 270 if (OuterRegionInfo) 271 return OuterRegionInfo->getThreadIDVariableLValue(CGF); 272 llvm_unreachable("No LValue for inlined OpenMP construct"); 273 } 274 275 /// \brief Get the name of the capture helper. 276 StringRef getHelperName() const override { 277 if (auto *OuterRegionInfo = getOldCSI()) 278 return OuterRegionInfo->getHelperName(); 279 llvm_unreachable("No helper name for inlined OpenMP construct"); 280 } 281 282 void emitUntiedSwitch(CodeGenFunction &CGF) override { 283 if (OuterRegionInfo) 284 OuterRegionInfo->emitUntiedSwitch(CGF); 285 } 286 287 CodeGenFunction::CGCapturedStmtInfo *getOldCSI() const { return OldCSI; } 288 289 static bool classof(const CGCapturedStmtInfo *Info) { 290 return CGOpenMPRegionInfo::classof(Info) && 291 cast<CGOpenMPRegionInfo>(Info)->getRegionKind() == InlinedRegion; 292 } 293 294 ~CGOpenMPInlinedRegionInfo() override = default; 295 296 private: 297 /// \brief CodeGen info about outer OpenMP region. 298 CodeGenFunction::CGCapturedStmtInfo *OldCSI; 299 CGOpenMPRegionInfo *OuterRegionInfo; 300 }; 301 302 /// \brief API for captured statement code generation in OpenMP target 303 /// constructs. For this captures, implicit parameters are used instead of the 304 /// captured fields. The name of the target region has to be unique in a given 305 /// application so it is provided by the client, because only the client has 306 /// the information to generate that. 307 class CGOpenMPTargetRegionInfo final : public CGOpenMPRegionInfo { 308 public: 309 CGOpenMPTargetRegionInfo(const CapturedStmt &CS, 310 const RegionCodeGenTy &CodeGen, StringRef HelperName) 311 : CGOpenMPRegionInfo(CS, TargetRegion, CodeGen, OMPD_target, 312 /*HasCancel=*/false), 313 HelperName(HelperName) {} 314 315 /// \brief This is unused for target regions because each starts executing 316 /// with a single thread. 317 const VarDecl *getThreadIDVariable() const override { return nullptr; } 318 319 /// \brief Get the name of the capture helper. 320 StringRef getHelperName() const override { return HelperName; } 321 322 static bool classof(const CGCapturedStmtInfo *Info) { 323 return CGOpenMPRegionInfo::classof(Info) && 324 cast<CGOpenMPRegionInfo>(Info)->getRegionKind() == TargetRegion; 325 } 326 327 private: 328 StringRef HelperName; 329 }; 330 331 static void EmptyCodeGen(CodeGenFunction &, PrePostActionTy &) { 332 llvm_unreachable("No codegen for expressions"); 333 } 334 /// \brief API for generation of expressions captured in a innermost OpenMP 335 /// region. 336 class CGOpenMPInnerExprInfo final : public CGOpenMPInlinedRegionInfo { 337 public: 338 CGOpenMPInnerExprInfo(CodeGenFunction &CGF, const CapturedStmt &CS) 339 : CGOpenMPInlinedRegionInfo(CGF.CapturedStmtInfo, EmptyCodeGen, 340 OMPD_unknown, 341 /*HasCancel=*/false), 342 PrivScope(CGF) { 343 // Make sure the globals captured in the provided statement are local by 344 // using the privatization logic. We assume the same variable is not 345 // captured more than once. 346 for (auto &C : CS.captures()) { 347 if (!C.capturesVariable() && !C.capturesVariableByCopy()) 348 continue; 349 350 const VarDecl *VD = C.getCapturedVar(); 351 if (VD->isLocalVarDeclOrParm()) 352 continue; 353 354 DeclRefExpr DRE(const_cast<VarDecl *>(VD), 355 /*RefersToEnclosingVariableOrCapture=*/false, 356 VD->getType().getNonReferenceType(), VK_LValue, 357 SourceLocation()); 358 PrivScope.addPrivate(VD, [&CGF, &DRE]() -> Address { 359 return CGF.EmitLValue(&DRE).getAddress(); 360 }); 361 } 362 (void)PrivScope.Privatize(); 363 } 364 365 /// \brief Lookup the captured field decl for a variable. 366 const FieldDecl *lookup(const VarDecl *VD) const override { 367 if (auto *FD = CGOpenMPInlinedRegionInfo::lookup(VD)) 368 return FD; 369 return nullptr; 370 } 371 372 /// \brief Emit the captured statement body. 373 void EmitBody(CodeGenFunction &CGF, const Stmt *S) override { 374 llvm_unreachable("No body for expressions"); 375 } 376 377 /// \brief Get a variable or parameter for storing global thread id 378 /// inside OpenMP construct. 379 const VarDecl *getThreadIDVariable() const override { 380 llvm_unreachable("No thread id for expressions"); 381 } 382 383 /// \brief Get the name of the capture helper. 384 StringRef getHelperName() const override { 385 llvm_unreachable("No helper name for expressions"); 386 } 387 388 static bool classof(const CGCapturedStmtInfo *Info) { return false; } 389 390 private: 391 /// Private scope to capture global variables. 392 CodeGenFunction::OMPPrivateScope PrivScope; 393 }; 394 395 /// \brief RAII for emitting code of OpenMP constructs. 396 class InlinedOpenMPRegionRAII { 397 CodeGenFunction &CGF; 398 llvm::DenseMap<const VarDecl *, FieldDecl *> LambdaCaptureFields; 399 FieldDecl *LambdaThisCaptureField = nullptr; 400 const CodeGen::CGBlockInfo *BlockInfo = nullptr; 401 402 public: 403 /// \brief Constructs region for combined constructs. 404 /// \param CodeGen Code generation sequence for combined directives. Includes 405 /// a list of functions used for code generation of implicitly inlined 406 /// regions. 407 InlinedOpenMPRegionRAII(CodeGenFunction &CGF, const RegionCodeGenTy &CodeGen, 408 OpenMPDirectiveKind Kind, bool HasCancel) 409 : CGF(CGF) { 410 // Start emission for the construct. 411 CGF.CapturedStmtInfo = new CGOpenMPInlinedRegionInfo( 412 CGF.CapturedStmtInfo, CodeGen, Kind, HasCancel); 413 std::swap(CGF.LambdaCaptureFields, LambdaCaptureFields); 414 LambdaThisCaptureField = CGF.LambdaThisCaptureField; 415 CGF.LambdaThisCaptureField = nullptr; 416 BlockInfo = CGF.BlockInfo; 417 CGF.BlockInfo = nullptr; 418 } 419 420 ~InlinedOpenMPRegionRAII() { 421 // Restore original CapturedStmtInfo only if we're done with code emission. 422 auto *OldCSI = 423 cast<CGOpenMPInlinedRegionInfo>(CGF.CapturedStmtInfo)->getOldCSI(); 424 delete CGF.CapturedStmtInfo; 425 CGF.CapturedStmtInfo = OldCSI; 426 std::swap(CGF.LambdaCaptureFields, LambdaCaptureFields); 427 CGF.LambdaThisCaptureField = LambdaThisCaptureField; 428 CGF.BlockInfo = BlockInfo; 429 } 430 }; 431 432 /// \brief Values for bit flags used in the ident_t to describe the fields. 433 /// All enumeric elements are named and described in accordance with the code 434 /// from http://llvm.org/svn/llvm-project/openmp/trunk/runtime/src/kmp.h 435 enum OpenMPLocationFlags : unsigned { 436 /// \brief Use trampoline for internal microtask. 437 OMP_IDENT_IMD = 0x01, 438 /// \brief Use c-style ident structure. 439 OMP_IDENT_KMPC = 0x02, 440 /// \brief Atomic reduction option for kmpc_reduce. 441 OMP_ATOMIC_REDUCE = 0x10, 442 /// \brief Explicit 'barrier' directive. 443 OMP_IDENT_BARRIER_EXPL = 0x20, 444 /// \brief Implicit barrier in code. 445 OMP_IDENT_BARRIER_IMPL = 0x40, 446 /// \brief Implicit barrier in 'for' directive. 447 OMP_IDENT_BARRIER_IMPL_FOR = 0x40, 448 /// \brief Implicit barrier in 'sections' directive. 449 OMP_IDENT_BARRIER_IMPL_SECTIONS = 0xC0, 450 /// \brief Implicit barrier in 'single' directive. 451 OMP_IDENT_BARRIER_IMPL_SINGLE = 0x140, 452 /// Call of __kmp_for_static_init for static loop. 453 OMP_IDENT_WORK_LOOP = 0x200, 454 /// Call of __kmp_for_static_init for sections. 455 OMP_IDENT_WORK_SECTIONS = 0x400, 456 /// Call of __kmp_for_static_init for distribute. 457 OMP_IDENT_WORK_DISTRIBUTE = 0x800, 458 LLVM_MARK_AS_BITMASK_ENUM(/*LargestValue=*/OMP_IDENT_WORK_DISTRIBUTE) 459 }; 460 461 /// \brief Describes ident structure that describes a source location. 462 /// All descriptions are taken from 463 /// http://llvm.org/svn/llvm-project/openmp/trunk/runtime/src/kmp.h 464 /// Original structure: 465 /// typedef struct ident { 466 /// kmp_int32 reserved_1; /**< might be used in Fortran; 467 /// see above */ 468 /// kmp_int32 flags; /**< also f.flags; KMP_IDENT_xxx flags; 469 /// KMP_IDENT_KMPC identifies this union 470 /// member */ 471 /// kmp_int32 reserved_2; /**< not really used in Fortran any more; 472 /// see above */ 473 ///#if USE_ITT_BUILD 474 /// /* but currently used for storing 475 /// region-specific ITT */ 476 /// /* contextual information. */ 477 ///#endif /* USE_ITT_BUILD */ 478 /// kmp_int32 reserved_3; /**< source[4] in Fortran, do not use for 479 /// C++ */ 480 /// char const *psource; /**< String describing the source location. 481 /// The string is composed of semi-colon separated 482 // fields which describe the source file, 483 /// the function and a pair of line numbers that 484 /// delimit the construct. 485 /// */ 486 /// } ident_t; 487 enum IdentFieldIndex { 488 /// \brief might be used in Fortran 489 IdentField_Reserved_1, 490 /// \brief OMP_IDENT_xxx flags; OMP_IDENT_KMPC identifies this union member. 491 IdentField_Flags, 492 /// \brief Not really used in Fortran any more 493 IdentField_Reserved_2, 494 /// \brief Source[4] in Fortran, do not use for C++ 495 IdentField_Reserved_3, 496 /// \brief String describing the source location. The string is composed of 497 /// semi-colon separated fields which describe the source file, the function 498 /// and a pair of line numbers that delimit the construct. 499 IdentField_PSource 500 }; 501 502 /// \brief Schedule types for 'omp for' loops (these enumerators are taken from 503 /// the enum sched_type in kmp.h). 504 enum OpenMPSchedType { 505 /// \brief Lower bound for default (unordered) versions. 506 OMP_sch_lower = 32, 507 OMP_sch_static_chunked = 33, 508 OMP_sch_static = 34, 509 OMP_sch_dynamic_chunked = 35, 510 OMP_sch_guided_chunked = 36, 511 OMP_sch_runtime = 37, 512 OMP_sch_auto = 38, 513 /// static with chunk adjustment (e.g., simd) 514 OMP_sch_static_balanced_chunked = 45, 515 /// \brief Lower bound for 'ordered' versions. 516 OMP_ord_lower = 64, 517 OMP_ord_static_chunked = 65, 518 OMP_ord_static = 66, 519 OMP_ord_dynamic_chunked = 67, 520 OMP_ord_guided_chunked = 68, 521 OMP_ord_runtime = 69, 522 OMP_ord_auto = 70, 523 OMP_sch_default = OMP_sch_static, 524 /// \brief dist_schedule types 525 OMP_dist_sch_static_chunked = 91, 526 OMP_dist_sch_static = 92, 527 /// Support for OpenMP 4.5 monotonic and nonmonotonic schedule modifiers. 528 /// Set if the monotonic schedule modifier was present. 529 OMP_sch_modifier_monotonic = (1 << 29), 530 /// Set if the nonmonotonic schedule modifier was present. 531 OMP_sch_modifier_nonmonotonic = (1 << 30), 532 }; 533 534 enum OpenMPRTLFunction { 535 /// \brief Call to void __kmpc_fork_call(ident_t *loc, kmp_int32 argc, 536 /// kmpc_micro microtask, ...); 537 OMPRTL__kmpc_fork_call, 538 /// \brief Call to void *__kmpc_threadprivate_cached(ident_t *loc, 539 /// kmp_int32 global_tid, void *data, size_t size, void ***cache); 540 OMPRTL__kmpc_threadprivate_cached, 541 /// \brief Call to void __kmpc_threadprivate_register( ident_t *, 542 /// void *data, kmpc_ctor ctor, kmpc_cctor cctor, kmpc_dtor dtor); 543 OMPRTL__kmpc_threadprivate_register, 544 // Call to __kmpc_int32 kmpc_global_thread_num(ident_t *loc); 545 OMPRTL__kmpc_global_thread_num, 546 // Call to void __kmpc_critical(ident_t *loc, kmp_int32 global_tid, 547 // kmp_critical_name *crit); 548 OMPRTL__kmpc_critical, 549 // Call to void __kmpc_critical_with_hint(ident_t *loc, kmp_int32 550 // global_tid, kmp_critical_name *crit, uintptr_t hint); 551 OMPRTL__kmpc_critical_with_hint, 552 // Call to void __kmpc_end_critical(ident_t *loc, kmp_int32 global_tid, 553 // kmp_critical_name *crit); 554 OMPRTL__kmpc_end_critical, 555 // Call to kmp_int32 __kmpc_cancel_barrier(ident_t *loc, kmp_int32 556 // global_tid); 557 OMPRTL__kmpc_cancel_barrier, 558 // Call to void __kmpc_barrier(ident_t *loc, kmp_int32 global_tid); 559 OMPRTL__kmpc_barrier, 560 // Call to void __kmpc_for_static_fini(ident_t *loc, kmp_int32 global_tid); 561 OMPRTL__kmpc_for_static_fini, 562 // Call to void __kmpc_serialized_parallel(ident_t *loc, kmp_int32 563 // global_tid); 564 OMPRTL__kmpc_serialized_parallel, 565 // Call to void __kmpc_end_serialized_parallel(ident_t *loc, kmp_int32 566 // global_tid); 567 OMPRTL__kmpc_end_serialized_parallel, 568 // Call to void __kmpc_push_num_threads(ident_t *loc, kmp_int32 global_tid, 569 // kmp_int32 num_threads); 570 OMPRTL__kmpc_push_num_threads, 571 // Call to void __kmpc_flush(ident_t *loc); 572 OMPRTL__kmpc_flush, 573 // Call to kmp_int32 __kmpc_master(ident_t *, kmp_int32 global_tid); 574 OMPRTL__kmpc_master, 575 // Call to void __kmpc_end_master(ident_t *, kmp_int32 global_tid); 576 OMPRTL__kmpc_end_master, 577 // Call to kmp_int32 __kmpc_omp_taskyield(ident_t *, kmp_int32 global_tid, 578 // int end_part); 579 OMPRTL__kmpc_omp_taskyield, 580 // Call to kmp_int32 __kmpc_single(ident_t *, kmp_int32 global_tid); 581 OMPRTL__kmpc_single, 582 // Call to void __kmpc_end_single(ident_t *, kmp_int32 global_tid); 583 OMPRTL__kmpc_end_single, 584 // Call to kmp_task_t * __kmpc_omp_task_alloc(ident_t *, kmp_int32 gtid, 585 // kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds, 586 // kmp_routine_entry_t *task_entry); 587 OMPRTL__kmpc_omp_task_alloc, 588 // Call to kmp_int32 __kmpc_omp_task(ident_t *, kmp_int32 gtid, kmp_task_t * 589 // new_task); 590 OMPRTL__kmpc_omp_task, 591 // Call to void __kmpc_copyprivate(ident_t *loc, kmp_int32 global_tid, 592 // size_t cpy_size, void *cpy_data, void(*cpy_func)(void *, void *), 593 // kmp_int32 didit); 594 OMPRTL__kmpc_copyprivate, 595 // Call to kmp_int32 __kmpc_reduce(ident_t *loc, kmp_int32 global_tid, 596 // kmp_int32 num_vars, size_t reduce_size, void *reduce_data, void 597 // (*reduce_func)(void *lhs_data, void *rhs_data), kmp_critical_name *lck); 598 OMPRTL__kmpc_reduce, 599 // Call to kmp_int32 __kmpc_reduce_nowait(ident_t *loc, kmp_int32 600 // global_tid, kmp_int32 num_vars, size_t reduce_size, void *reduce_data, 601 // void (*reduce_func)(void *lhs_data, void *rhs_data), kmp_critical_name 602 // *lck); 603 OMPRTL__kmpc_reduce_nowait, 604 // Call to void __kmpc_end_reduce(ident_t *loc, kmp_int32 global_tid, 605 // kmp_critical_name *lck); 606 OMPRTL__kmpc_end_reduce, 607 // Call to void __kmpc_end_reduce_nowait(ident_t *loc, kmp_int32 global_tid, 608 // kmp_critical_name *lck); 609 OMPRTL__kmpc_end_reduce_nowait, 610 // Call to void __kmpc_omp_task_begin_if0(ident_t *, kmp_int32 gtid, 611 // kmp_task_t * new_task); 612 OMPRTL__kmpc_omp_task_begin_if0, 613 // Call to void __kmpc_omp_task_complete_if0(ident_t *, kmp_int32 gtid, 614 // kmp_task_t * new_task); 615 OMPRTL__kmpc_omp_task_complete_if0, 616 // Call to void __kmpc_ordered(ident_t *loc, kmp_int32 global_tid); 617 OMPRTL__kmpc_ordered, 618 // Call to void __kmpc_end_ordered(ident_t *loc, kmp_int32 global_tid); 619 OMPRTL__kmpc_end_ordered, 620 // Call to kmp_int32 __kmpc_omp_taskwait(ident_t *loc, kmp_int32 621 // global_tid); 622 OMPRTL__kmpc_omp_taskwait, 623 // Call to void __kmpc_taskgroup(ident_t *loc, kmp_int32 global_tid); 624 OMPRTL__kmpc_taskgroup, 625 // Call to void __kmpc_end_taskgroup(ident_t *loc, kmp_int32 global_tid); 626 OMPRTL__kmpc_end_taskgroup, 627 // Call to void __kmpc_push_proc_bind(ident_t *loc, kmp_int32 global_tid, 628 // int proc_bind); 629 OMPRTL__kmpc_push_proc_bind, 630 // Call to kmp_int32 __kmpc_omp_task_with_deps(ident_t *loc_ref, kmp_int32 631 // gtid, kmp_task_t * new_task, kmp_int32 ndeps, kmp_depend_info_t 632 // *dep_list, kmp_int32 ndeps_noalias, kmp_depend_info_t *noalias_dep_list); 633 OMPRTL__kmpc_omp_task_with_deps, 634 // Call to void __kmpc_omp_wait_deps(ident_t *loc_ref, kmp_int32 635 // gtid, kmp_int32 ndeps, kmp_depend_info_t *dep_list, kmp_int32 636 // ndeps_noalias, kmp_depend_info_t *noalias_dep_list); 637 OMPRTL__kmpc_omp_wait_deps, 638 // Call to kmp_int32 __kmpc_cancellationpoint(ident_t *loc, kmp_int32 639 // global_tid, kmp_int32 cncl_kind); 640 OMPRTL__kmpc_cancellationpoint, 641 // Call to kmp_int32 __kmpc_cancel(ident_t *loc, kmp_int32 global_tid, 642 // kmp_int32 cncl_kind); 643 OMPRTL__kmpc_cancel, 644 // Call to void __kmpc_push_num_teams(ident_t *loc, kmp_int32 global_tid, 645 // kmp_int32 num_teams, kmp_int32 thread_limit); 646 OMPRTL__kmpc_push_num_teams, 647 // Call to void __kmpc_fork_teams(ident_t *loc, kmp_int32 argc, kmpc_micro 648 // microtask, ...); 649 OMPRTL__kmpc_fork_teams, 650 // Call to void __kmpc_taskloop(ident_t *loc, int gtid, kmp_task_t *task, int 651 // if_val, kmp_uint64 *lb, kmp_uint64 *ub, kmp_int64 st, int nogroup, int 652 // sched, kmp_uint64 grainsize, void *task_dup); 653 OMPRTL__kmpc_taskloop, 654 // Call to void __kmpc_doacross_init(ident_t *loc, kmp_int32 gtid, kmp_int32 655 // num_dims, struct kmp_dim *dims); 656 OMPRTL__kmpc_doacross_init, 657 // Call to void __kmpc_doacross_fini(ident_t *loc, kmp_int32 gtid); 658 OMPRTL__kmpc_doacross_fini, 659 // Call to void __kmpc_doacross_post(ident_t *loc, kmp_int32 gtid, kmp_int64 660 // *vec); 661 OMPRTL__kmpc_doacross_post, 662 // Call to void __kmpc_doacross_wait(ident_t *loc, kmp_int32 gtid, kmp_int64 663 // *vec); 664 OMPRTL__kmpc_doacross_wait, 665 // Call to void *__kmpc_task_reduction_init(int gtid, int num_data, void 666 // *data); 667 OMPRTL__kmpc_task_reduction_init, 668 // Call to void *__kmpc_task_reduction_get_th_data(int gtid, void *tg, void 669 // *d); 670 OMPRTL__kmpc_task_reduction_get_th_data, 671 672 // 673 // Offloading related calls 674 // 675 // Call to int32_t __tgt_target(int64_t device_id, void *host_ptr, int32_t 676 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t 677 // *arg_types); 678 OMPRTL__tgt_target, 679 // Call to int32_t __tgt_target_nowait(int64_t device_id, void *host_ptr, 680 // int32_t arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t 681 // *arg_types); 682 OMPRTL__tgt_target_nowait, 683 // Call to int32_t __tgt_target_teams(int64_t device_id, void *host_ptr, 684 // int32_t arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t 685 // *arg_types, int32_t num_teams, int32_t thread_limit); 686 OMPRTL__tgt_target_teams, 687 // Call to int32_t __tgt_target_teams_nowait(int64_t device_id, void 688 // *host_ptr, int32_t arg_num, void** args_base, void **args, size_t 689 // *arg_sizes, int64_t *arg_types, int32_t num_teams, int32_t thread_limit); 690 OMPRTL__tgt_target_teams_nowait, 691 // Call to void __tgt_register_lib(__tgt_bin_desc *desc); 692 OMPRTL__tgt_register_lib, 693 // Call to void __tgt_unregister_lib(__tgt_bin_desc *desc); 694 OMPRTL__tgt_unregister_lib, 695 // Call to void __tgt_target_data_begin(int64_t device_id, int32_t arg_num, 696 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types); 697 OMPRTL__tgt_target_data_begin, 698 // Call to void __tgt_target_data_begin_nowait(int64_t device_id, int32_t 699 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t 700 // *arg_types); 701 OMPRTL__tgt_target_data_begin_nowait, 702 // Call to void __tgt_target_data_end(int64_t device_id, int32_t arg_num, 703 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types); 704 OMPRTL__tgt_target_data_end, 705 // Call to void __tgt_target_data_end_nowait(int64_t device_id, int32_t 706 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t 707 // *arg_types); 708 OMPRTL__tgt_target_data_end_nowait, 709 // Call to void __tgt_target_data_update(int64_t device_id, int32_t arg_num, 710 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types); 711 OMPRTL__tgt_target_data_update, 712 // Call to void __tgt_target_data_update_nowait(int64_t device_id, int32_t 713 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t 714 // *arg_types); 715 OMPRTL__tgt_target_data_update_nowait, 716 }; 717 718 /// A basic class for pre|post-action for advanced codegen sequence for OpenMP 719 /// region. 720 class CleanupTy final : public EHScopeStack::Cleanup { 721 PrePostActionTy *Action; 722 723 public: 724 explicit CleanupTy(PrePostActionTy *Action) : Action(Action) {} 725 void Emit(CodeGenFunction &CGF, Flags /*flags*/) override { 726 if (!CGF.HaveInsertPoint()) 727 return; 728 Action->Exit(CGF); 729 } 730 }; 731 732 } // anonymous namespace 733 734 void RegionCodeGenTy::operator()(CodeGenFunction &CGF) const { 735 CodeGenFunction::RunCleanupsScope Scope(CGF); 736 if (PrePostAction) { 737 CGF.EHStack.pushCleanup<CleanupTy>(NormalAndEHCleanup, PrePostAction); 738 Callback(CodeGen, CGF, *PrePostAction); 739 } else { 740 PrePostActionTy Action; 741 Callback(CodeGen, CGF, Action); 742 } 743 } 744 745 /// Check if the combiner is a call to UDR combiner and if it is so return the 746 /// UDR decl used for reduction. 747 static const OMPDeclareReductionDecl * 748 getReductionInit(const Expr *ReductionOp) { 749 if (auto *CE = dyn_cast<CallExpr>(ReductionOp)) 750 if (auto *OVE = dyn_cast<OpaqueValueExpr>(CE->getCallee())) 751 if (auto *DRE = 752 dyn_cast<DeclRefExpr>(OVE->getSourceExpr()->IgnoreImpCasts())) 753 if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(DRE->getDecl())) 754 return DRD; 755 return nullptr; 756 } 757 758 static void emitInitWithReductionInitializer(CodeGenFunction &CGF, 759 const OMPDeclareReductionDecl *DRD, 760 const Expr *InitOp, 761 Address Private, Address Original, 762 QualType Ty) { 763 if (DRD->getInitializer()) { 764 std::pair<llvm::Function *, llvm::Function *> Reduction = 765 CGF.CGM.getOpenMPRuntime().getUserDefinedReduction(DRD); 766 auto *CE = cast<CallExpr>(InitOp); 767 auto *OVE = cast<OpaqueValueExpr>(CE->getCallee()); 768 const Expr *LHS = CE->getArg(/*Arg=*/0)->IgnoreParenImpCasts(); 769 const Expr *RHS = CE->getArg(/*Arg=*/1)->IgnoreParenImpCasts(); 770 auto *LHSDRE = cast<DeclRefExpr>(cast<UnaryOperator>(LHS)->getSubExpr()); 771 auto *RHSDRE = cast<DeclRefExpr>(cast<UnaryOperator>(RHS)->getSubExpr()); 772 CodeGenFunction::OMPPrivateScope PrivateScope(CGF); 773 PrivateScope.addPrivate(cast<VarDecl>(LHSDRE->getDecl()), 774 [=]() -> Address { return Private; }); 775 PrivateScope.addPrivate(cast<VarDecl>(RHSDRE->getDecl()), 776 [=]() -> Address { return Original; }); 777 (void)PrivateScope.Privatize(); 778 RValue Func = RValue::get(Reduction.second); 779 CodeGenFunction::OpaqueValueMapping Map(CGF, OVE, Func); 780 CGF.EmitIgnoredExpr(InitOp); 781 } else { 782 llvm::Constant *Init = CGF.CGM.EmitNullConstant(Ty); 783 auto *GV = new llvm::GlobalVariable( 784 CGF.CGM.getModule(), Init->getType(), /*isConstant=*/true, 785 llvm::GlobalValue::PrivateLinkage, Init, ".init"); 786 LValue LV = CGF.MakeNaturalAlignAddrLValue(GV, Ty); 787 RValue InitRVal; 788 switch (CGF.getEvaluationKind(Ty)) { 789 case TEK_Scalar: 790 InitRVal = CGF.EmitLoadOfLValue(LV, SourceLocation()); 791 break; 792 case TEK_Complex: 793 InitRVal = 794 RValue::getComplex(CGF.EmitLoadOfComplex(LV, SourceLocation())); 795 break; 796 case TEK_Aggregate: 797 InitRVal = RValue::getAggregate(LV.getAddress()); 798 break; 799 } 800 OpaqueValueExpr OVE(SourceLocation(), Ty, VK_RValue); 801 CodeGenFunction::OpaqueValueMapping OpaqueMap(CGF, &OVE, InitRVal); 802 CGF.EmitAnyExprToMem(&OVE, Private, Ty.getQualifiers(), 803 /*IsInitializer=*/false); 804 } 805 } 806 807 /// \brief Emit initialization of arrays of complex types. 808 /// \param DestAddr Address of the array. 809 /// \param Type Type of array. 810 /// \param Init Initial expression of array. 811 /// \param SrcAddr Address of the original array. 812 static void EmitOMPAggregateInit(CodeGenFunction &CGF, Address DestAddr, 813 QualType Type, bool EmitDeclareReductionInit, 814 const Expr *Init, 815 const OMPDeclareReductionDecl *DRD, 816 Address SrcAddr = Address::invalid()) { 817 // Perform element-by-element initialization. 818 QualType ElementTy; 819 820 // Drill down to the base element type on both arrays. 821 auto ArrayTy = Type->getAsArrayTypeUnsafe(); 822 auto NumElements = CGF.emitArrayLength(ArrayTy, ElementTy, DestAddr); 823 DestAddr = 824 CGF.Builder.CreateElementBitCast(DestAddr, DestAddr.getElementType()); 825 if (DRD) 826 SrcAddr = 827 CGF.Builder.CreateElementBitCast(SrcAddr, DestAddr.getElementType()); 828 829 llvm::Value *SrcBegin = nullptr; 830 if (DRD) 831 SrcBegin = SrcAddr.getPointer(); 832 auto DestBegin = DestAddr.getPointer(); 833 // Cast from pointer to array type to pointer to single element. 834 auto DestEnd = CGF.Builder.CreateGEP(DestBegin, NumElements); 835 // The basic structure here is a while-do loop. 836 auto BodyBB = CGF.createBasicBlock("omp.arrayinit.body"); 837 auto DoneBB = CGF.createBasicBlock("omp.arrayinit.done"); 838 auto IsEmpty = 839 CGF.Builder.CreateICmpEQ(DestBegin, DestEnd, "omp.arrayinit.isempty"); 840 CGF.Builder.CreateCondBr(IsEmpty, DoneBB, BodyBB); 841 842 // Enter the loop body, making that address the current address. 843 auto EntryBB = CGF.Builder.GetInsertBlock(); 844 CGF.EmitBlock(BodyBB); 845 846 CharUnits ElementSize = CGF.getContext().getTypeSizeInChars(ElementTy); 847 848 llvm::PHINode *SrcElementPHI = nullptr; 849 Address SrcElementCurrent = Address::invalid(); 850 if (DRD) { 851 SrcElementPHI = CGF.Builder.CreatePHI(SrcBegin->getType(), 2, 852 "omp.arraycpy.srcElementPast"); 853 SrcElementPHI->addIncoming(SrcBegin, EntryBB); 854 SrcElementCurrent = 855 Address(SrcElementPHI, 856 SrcAddr.getAlignment().alignmentOfArrayElement(ElementSize)); 857 } 858 llvm::PHINode *DestElementPHI = CGF.Builder.CreatePHI( 859 DestBegin->getType(), 2, "omp.arraycpy.destElementPast"); 860 DestElementPHI->addIncoming(DestBegin, EntryBB); 861 Address DestElementCurrent = 862 Address(DestElementPHI, 863 DestAddr.getAlignment().alignmentOfArrayElement(ElementSize)); 864 865 // Emit copy. 866 { 867 CodeGenFunction::RunCleanupsScope InitScope(CGF); 868 if (EmitDeclareReductionInit) { 869 emitInitWithReductionInitializer(CGF, DRD, Init, DestElementCurrent, 870 SrcElementCurrent, ElementTy); 871 } else 872 CGF.EmitAnyExprToMem(Init, DestElementCurrent, ElementTy.getQualifiers(), 873 /*IsInitializer=*/false); 874 } 875 876 if (DRD) { 877 // Shift the address forward by one element. 878 auto SrcElementNext = CGF.Builder.CreateConstGEP1_32( 879 SrcElementPHI, /*Idx0=*/1, "omp.arraycpy.dest.element"); 880 SrcElementPHI->addIncoming(SrcElementNext, CGF.Builder.GetInsertBlock()); 881 } 882 883 // Shift the address forward by one element. 884 auto DestElementNext = CGF.Builder.CreateConstGEP1_32( 885 DestElementPHI, /*Idx0=*/1, "omp.arraycpy.dest.element"); 886 // Check whether we've reached the end. 887 auto Done = 888 CGF.Builder.CreateICmpEQ(DestElementNext, DestEnd, "omp.arraycpy.done"); 889 CGF.Builder.CreateCondBr(Done, DoneBB, BodyBB); 890 DestElementPHI->addIncoming(DestElementNext, CGF.Builder.GetInsertBlock()); 891 892 // Done. 893 CGF.EmitBlock(DoneBB, /*IsFinished=*/true); 894 } 895 896 LValue ReductionCodeGen::emitSharedLValue(CodeGenFunction &CGF, const Expr *E) { 897 return CGF.EmitOMPSharedLValue(E); 898 } 899 900 LValue ReductionCodeGen::emitSharedLValueUB(CodeGenFunction &CGF, 901 const Expr *E) { 902 if (const auto *OASE = dyn_cast<OMPArraySectionExpr>(E)) 903 return CGF.EmitOMPArraySectionExpr(OASE, /*IsLowerBound=*/false); 904 return LValue(); 905 } 906 907 void ReductionCodeGen::emitAggregateInitialization( 908 CodeGenFunction &CGF, unsigned N, Address PrivateAddr, LValue SharedLVal, 909 const OMPDeclareReductionDecl *DRD) { 910 // Emit VarDecl with copy init for arrays. 911 // Get the address of the original variable captured in current 912 // captured region. 913 auto *PrivateVD = 914 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl()); 915 bool EmitDeclareReductionInit = 916 DRD && (DRD->getInitializer() || !PrivateVD->hasInit()); 917 EmitOMPAggregateInit(CGF, PrivateAddr, PrivateVD->getType(), 918 EmitDeclareReductionInit, 919 EmitDeclareReductionInit ? ClausesData[N].ReductionOp 920 : PrivateVD->getInit(), 921 DRD, SharedLVal.getAddress()); 922 } 923 924 ReductionCodeGen::ReductionCodeGen(ArrayRef<const Expr *> Shareds, 925 ArrayRef<const Expr *> Privates, 926 ArrayRef<const Expr *> ReductionOps) { 927 ClausesData.reserve(Shareds.size()); 928 SharedAddresses.reserve(Shareds.size()); 929 Sizes.reserve(Shareds.size()); 930 BaseDecls.reserve(Shareds.size()); 931 auto IPriv = Privates.begin(); 932 auto IRed = ReductionOps.begin(); 933 for (const auto *Ref : Shareds) { 934 ClausesData.emplace_back(Ref, *IPriv, *IRed); 935 std::advance(IPriv, 1); 936 std::advance(IRed, 1); 937 } 938 } 939 940 void ReductionCodeGen::emitSharedLValue(CodeGenFunction &CGF, unsigned N) { 941 assert(SharedAddresses.size() == N && 942 "Number of generated lvalues must be exactly N."); 943 LValue First = emitSharedLValue(CGF, ClausesData[N].Ref); 944 LValue Second = emitSharedLValueUB(CGF, ClausesData[N].Ref); 945 SharedAddresses.emplace_back(First, Second); 946 } 947 948 void ReductionCodeGen::emitAggregateType(CodeGenFunction &CGF, unsigned N) { 949 auto *PrivateVD = 950 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl()); 951 QualType PrivateType = PrivateVD->getType(); 952 bool AsArraySection = isa<OMPArraySectionExpr>(ClausesData[N].Ref); 953 if (!PrivateType->isVariablyModifiedType()) { 954 Sizes.emplace_back( 955 CGF.getTypeSize( 956 SharedAddresses[N].first.getType().getNonReferenceType()), 957 nullptr); 958 return; 959 } 960 llvm::Value *Size; 961 llvm::Value *SizeInChars; 962 llvm::Type *ElemType = 963 cast<llvm::PointerType>(SharedAddresses[N].first.getPointer()->getType()) 964 ->getElementType(); 965 auto *ElemSizeOf = llvm::ConstantExpr::getSizeOf(ElemType); 966 if (AsArraySection) { 967 Size = CGF.Builder.CreatePtrDiff(SharedAddresses[N].second.getPointer(), 968 SharedAddresses[N].first.getPointer()); 969 Size = CGF.Builder.CreateNUWAdd( 970 Size, llvm::ConstantInt::get(Size->getType(), /*V=*/1)); 971 SizeInChars = CGF.Builder.CreateNUWMul(Size, ElemSizeOf); 972 } else { 973 SizeInChars = CGF.getTypeSize( 974 SharedAddresses[N].first.getType().getNonReferenceType()); 975 Size = CGF.Builder.CreateExactUDiv(SizeInChars, ElemSizeOf); 976 } 977 Sizes.emplace_back(SizeInChars, Size); 978 CodeGenFunction::OpaqueValueMapping OpaqueMap( 979 CGF, 980 cast<OpaqueValueExpr>( 981 CGF.getContext().getAsVariableArrayType(PrivateType)->getSizeExpr()), 982 RValue::get(Size)); 983 CGF.EmitVariablyModifiedType(PrivateType); 984 } 985 986 void ReductionCodeGen::emitAggregateType(CodeGenFunction &CGF, unsigned N, 987 llvm::Value *Size) { 988 auto *PrivateVD = 989 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl()); 990 QualType PrivateType = PrivateVD->getType(); 991 if (!PrivateType->isVariablyModifiedType()) { 992 assert(!Size && !Sizes[N].second && 993 "Size should be nullptr for non-variably modified reduction " 994 "items."); 995 return; 996 } 997 CodeGenFunction::OpaqueValueMapping OpaqueMap( 998 CGF, 999 cast<OpaqueValueExpr>( 1000 CGF.getContext().getAsVariableArrayType(PrivateType)->getSizeExpr()), 1001 RValue::get(Size)); 1002 CGF.EmitVariablyModifiedType(PrivateType); 1003 } 1004 1005 void ReductionCodeGen::emitInitialization( 1006 CodeGenFunction &CGF, unsigned N, Address PrivateAddr, LValue SharedLVal, 1007 llvm::function_ref<bool(CodeGenFunction &)> DefaultInit) { 1008 assert(SharedAddresses.size() > N && "No variable was generated"); 1009 auto *PrivateVD = 1010 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl()); 1011 auto *DRD = getReductionInit(ClausesData[N].ReductionOp); 1012 QualType PrivateType = PrivateVD->getType(); 1013 PrivateAddr = CGF.Builder.CreateElementBitCast( 1014 PrivateAddr, CGF.ConvertTypeForMem(PrivateType)); 1015 QualType SharedType = SharedAddresses[N].first.getType(); 1016 SharedLVal = CGF.MakeAddrLValue( 1017 CGF.Builder.CreateElementBitCast(SharedLVal.getAddress(), 1018 CGF.ConvertTypeForMem(SharedType)), 1019 SharedType, SharedAddresses[N].first.getBaseInfo(), 1020 CGF.CGM.getTBAAInfoForSubobject(SharedAddresses[N].first, SharedType)); 1021 if (CGF.getContext().getAsArrayType(PrivateVD->getType())) { 1022 emitAggregateInitialization(CGF, N, PrivateAddr, SharedLVal, DRD); 1023 } else if (DRD && (DRD->getInitializer() || !PrivateVD->hasInit())) { 1024 emitInitWithReductionInitializer(CGF, DRD, ClausesData[N].ReductionOp, 1025 PrivateAddr, SharedLVal.getAddress(), 1026 SharedLVal.getType()); 1027 } else if (!DefaultInit(CGF) && PrivateVD->hasInit() && 1028 !CGF.isTrivialInitializer(PrivateVD->getInit())) { 1029 CGF.EmitAnyExprToMem(PrivateVD->getInit(), PrivateAddr, 1030 PrivateVD->getType().getQualifiers(), 1031 /*IsInitializer=*/false); 1032 } 1033 } 1034 1035 bool ReductionCodeGen::needCleanups(unsigned N) { 1036 auto *PrivateVD = 1037 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl()); 1038 QualType PrivateType = PrivateVD->getType(); 1039 QualType::DestructionKind DTorKind = PrivateType.isDestructedType(); 1040 return DTorKind != QualType::DK_none; 1041 } 1042 1043 void ReductionCodeGen::emitCleanups(CodeGenFunction &CGF, unsigned N, 1044 Address PrivateAddr) { 1045 auto *PrivateVD = 1046 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Private)->getDecl()); 1047 QualType PrivateType = PrivateVD->getType(); 1048 QualType::DestructionKind DTorKind = PrivateType.isDestructedType(); 1049 if (needCleanups(N)) { 1050 PrivateAddr = CGF.Builder.CreateElementBitCast( 1051 PrivateAddr, CGF.ConvertTypeForMem(PrivateType)); 1052 CGF.pushDestroy(DTorKind, PrivateAddr, PrivateType); 1053 } 1054 } 1055 1056 static LValue loadToBegin(CodeGenFunction &CGF, QualType BaseTy, QualType ElTy, 1057 LValue BaseLV) { 1058 BaseTy = BaseTy.getNonReferenceType(); 1059 while ((BaseTy->isPointerType() || BaseTy->isReferenceType()) && 1060 !CGF.getContext().hasSameType(BaseTy, ElTy)) { 1061 if (auto *PtrTy = BaseTy->getAs<PointerType>()) 1062 BaseLV = CGF.EmitLoadOfPointerLValue(BaseLV.getAddress(), PtrTy); 1063 else { 1064 LValue RefLVal = CGF.MakeAddrLValue(BaseLV.getAddress(), BaseTy); 1065 BaseLV = CGF.EmitLoadOfReferenceLValue(RefLVal); 1066 } 1067 BaseTy = BaseTy->getPointeeType(); 1068 } 1069 return CGF.MakeAddrLValue( 1070 CGF.Builder.CreateElementBitCast(BaseLV.getAddress(), 1071 CGF.ConvertTypeForMem(ElTy)), 1072 BaseLV.getType(), BaseLV.getBaseInfo(), 1073 CGF.CGM.getTBAAInfoForSubobject(BaseLV, BaseLV.getType())); 1074 } 1075 1076 static Address castToBase(CodeGenFunction &CGF, QualType BaseTy, QualType ElTy, 1077 llvm::Type *BaseLVType, CharUnits BaseLVAlignment, 1078 llvm::Value *Addr) { 1079 Address Tmp = Address::invalid(); 1080 Address TopTmp = Address::invalid(); 1081 Address MostTopTmp = Address::invalid(); 1082 BaseTy = BaseTy.getNonReferenceType(); 1083 while ((BaseTy->isPointerType() || BaseTy->isReferenceType()) && 1084 !CGF.getContext().hasSameType(BaseTy, ElTy)) { 1085 Tmp = CGF.CreateMemTemp(BaseTy); 1086 if (TopTmp.isValid()) 1087 CGF.Builder.CreateStore(Tmp.getPointer(), TopTmp); 1088 else 1089 MostTopTmp = Tmp; 1090 TopTmp = Tmp; 1091 BaseTy = BaseTy->getPointeeType(); 1092 } 1093 llvm::Type *Ty = BaseLVType; 1094 if (Tmp.isValid()) 1095 Ty = Tmp.getElementType(); 1096 Addr = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(Addr, Ty); 1097 if (Tmp.isValid()) { 1098 CGF.Builder.CreateStore(Addr, Tmp); 1099 return MostTopTmp; 1100 } 1101 return Address(Addr, BaseLVAlignment); 1102 } 1103 1104 Address ReductionCodeGen::adjustPrivateAddress(CodeGenFunction &CGF, unsigned N, 1105 Address PrivateAddr) { 1106 const DeclRefExpr *DE; 1107 const VarDecl *OrigVD = nullptr; 1108 if (auto *OASE = dyn_cast<OMPArraySectionExpr>(ClausesData[N].Ref)) { 1109 auto *Base = OASE->getBase()->IgnoreParenImpCasts(); 1110 while (auto *TempOASE = dyn_cast<OMPArraySectionExpr>(Base)) 1111 Base = TempOASE->getBase()->IgnoreParenImpCasts(); 1112 while (auto *TempASE = dyn_cast<ArraySubscriptExpr>(Base)) 1113 Base = TempASE->getBase()->IgnoreParenImpCasts(); 1114 DE = cast<DeclRefExpr>(Base); 1115 OrigVD = cast<VarDecl>(DE->getDecl()); 1116 } else if (auto *ASE = dyn_cast<ArraySubscriptExpr>(ClausesData[N].Ref)) { 1117 auto *Base = ASE->getBase()->IgnoreParenImpCasts(); 1118 while (auto *TempASE = dyn_cast<ArraySubscriptExpr>(Base)) 1119 Base = TempASE->getBase()->IgnoreParenImpCasts(); 1120 DE = cast<DeclRefExpr>(Base); 1121 OrigVD = cast<VarDecl>(DE->getDecl()); 1122 } 1123 if (OrigVD) { 1124 BaseDecls.emplace_back(OrigVD); 1125 auto OriginalBaseLValue = CGF.EmitLValue(DE); 1126 LValue BaseLValue = 1127 loadToBegin(CGF, OrigVD->getType(), SharedAddresses[N].first.getType(), 1128 OriginalBaseLValue); 1129 llvm::Value *Adjustment = CGF.Builder.CreatePtrDiff( 1130 BaseLValue.getPointer(), SharedAddresses[N].first.getPointer()); 1131 llvm::Value *PrivatePointer = 1132 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 1133 PrivateAddr.getPointer(), 1134 SharedAddresses[N].first.getAddress().getType()); 1135 llvm::Value *Ptr = CGF.Builder.CreateGEP(PrivatePointer, Adjustment); 1136 return castToBase(CGF, OrigVD->getType(), 1137 SharedAddresses[N].first.getType(), 1138 OriginalBaseLValue.getAddress().getType(), 1139 OriginalBaseLValue.getAlignment(), Ptr); 1140 } 1141 BaseDecls.emplace_back( 1142 cast<VarDecl>(cast<DeclRefExpr>(ClausesData[N].Ref)->getDecl())); 1143 return PrivateAddr; 1144 } 1145 1146 bool ReductionCodeGen::usesReductionInitializer(unsigned N) const { 1147 auto *DRD = getReductionInit(ClausesData[N].ReductionOp); 1148 return DRD && DRD->getInitializer(); 1149 } 1150 1151 LValue CGOpenMPRegionInfo::getThreadIDVariableLValue(CodeGenFunction &CGF) { 1152 return CGF.EmitLoadOfPointerLValue( 1153 CGF.GetAddrOfLocalVar(getThreadIDVariable()), 1154 getThreadIDVariable()->getType()->castAs<PointerType>()); 1155 } 1156 1157 void CGOpenMPRegionInfo::EmitBody(CodeGenFunction &CGF, const Stmt * /*S*/) { 1158 if (!CGF.HaveInsertPoint()) 1159 return; 1160 // 1.2.2 OpenMP Language Terminology 1161 // Structured block - An executable statement with a single entry at the 1162 // top and a single exit at the bottom. 1163 // The point of exit cannot be a branch out of the structured block. 1164 // longjmp() and throw() must not violate the entry/exit criteria. 1165 CGF.EHStack.pushTerminate(); 1166 CodeGen(CGF); 1167 CGF.EHStack.popTerminate(); 1168 } 1169 1170 LValue CGOpenMPTaskOutlinedRegionInfo::getThreadIDVariableLValue( 1171 CodeGenFunction &CGF) { 1172 return CGF.MakeAddrLValue(CGF.GetAddrOfLocalVar(getThreadIDVariable()), 1173 getThreadIDVariable()->getType(), 1174 AlignmentSource::Decl); 1175 } 1176 1177 CGOpenMPRuntime::CGOpenMPRuntime(CodeGenModule &CGM) 1178 : CGM(CGM), OffloadEntriesInfoManager(CGM) { 1179 IdentTy = llvm::StructType::create( 1180 "ident_t", CGM.Int32Ty /* reserved_1 */, CGM.Int32Ty /* flags */, 1181 CGM.Int32Ty /* reserved_2 */, CGM.Int32Ty /* reserved_3 */, 1182 CGM.Int8PtrTy /* psource */); 1183 KmpCriticalNameTy = llvm::ArrayType::get(CGM.Int32Ty, /*NumElements*/ 8); 1184 1185 loadOffloadInfoMetadata(); 1186 } 1187 1188 void CGOpenMPRuntime::clear() { 1189 InternalVars.clear(); 1190 } 1191 1192 static llvm::Function * 1193 emitCombinerOrInitializer(CodeGenModule &CGM, QualType Ty, 1194 const Expr *CombinerInitializer, const VarDecl *In, 1195 const VarDecl *Out, bool IsCombiner) { 1196 // void .omp_combiner.(Ty *in, Ty *out); 1197 auto &C = CGM.getContext(); 1198 QualType PtrTy = C.getPointerType(Ty).withRestrict(); 1199 FunctionArgList Args; 1200 ImplicitParamDecl OmpOutParm(C, /*DC=*/nullptr, Out->getLocation(), 1201 /*Id=*/nullptr, PtrTy, ImplicitParamDecl::Other); 1202 ImplicitParamDecl OmpInParm(C, /*DC=*/nullptr, In->getLocation(), 1203 /*Id=*/nullptr, PtrTy, ImplicitParamDecl::Other); 1204 Args.push_back(&OmpOutParm); 1205 Args.push_back(&OmpInParm); 1206 auto &FnInfo = 1207 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args); 1208 auto *FnTy = CGM.getTypes().GetFunctionType(FnInfo); 1209 auto *Fn = llvm::Function::Create( 1210 FnTy, llvm::GlobalValue::InternalLinkage, 1211 IsCombiner ? ".omp_combiner." : ".omp_initializer.", &CGM.getModule()); 1212 CGM.SetInternalFunctionAttributes(/*D=*/nullptr, Fn, FnInfo); 1213 Fn->removeFnAttr(llvm::Attribute::NoInline); 1214 Fn->removeFnAttr(llvm::Attribute::OptimizeNone); 1215 Fn->addFnAttr(llvm::Attribute::AlwaysInline); 1216 CodeGenFunction CGF(CGM); 1217 // Map "T omp_in;" variable to "*omp_in_parm" value in all expressions. 1218 // Map "T omp_out;" variable to "*omp_out_parm" value in all expressions. 1219 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FnInfo, Args, In->getLocation(), 1220 Out->getLocation()); 1221 CodeGenFunction::OMPPrivateScope Scope(CGF); 1222 Address AddrIn = CGF.GetAddrOfLocalVar(&OmpInParm); 1223 Scope.addPrivate(In, [&CGF, AddrIn, PtrTy]() -> Address { 1224 return CGF.EmitLoadOfPointerLValue(AddrIn, PtrTy->castAs<PointerType>()) 1225 .getAddress(); 1226 }); 1227 Address AddrOut = CGF.GetAddrOfLocalVar(&OmpOutParm); 1228 Scope.addPrivate(Out, [&CGF, AddrOut, PtrTy]() -> Address { 1229 return CGF.EmitLoadOfPointerLValue(AddrOut, PtrTy->castAs<PointerType>()) 1230 .getAddress(); 1231 }); 1232 (void)Scope.Privatize(); 1233 if (!IsCombiner && Out->hasInit() && 1234 !CGF.isTrivialInitializer(Out->getInit())) { 1235 CGF.EmitAnyExprToMem(Out->getInit(), CGF.GetAddrOfLocalVar(Out), 1236 Out->getType().getQualifiers(), 1237 /*IsInitializer=*/true); 1238 } 1239 if (CombinerInitializer) 1240 CGF.EmitIgnoredExpr(CombinerInitializer); 1241 Scope.ForceCleanup(); 1242 CGF.FinishFunction(); 1243 return Fn; 1244 } 1245 1246 void CGOpenMPRuntime::emitUserDefinedReduction( 1247 CodeGenFunction *CGF, const OMPDeclareReductionDecl *D) { 1248 if (UDRMap.count(D) > 0) 1249 return; 1250 auto &C = CGM.getContext(); 1251 if (!In || !Out) { 1252 In = &C.Idents.get("omp_in"); 1253 Out = &C.Idents.get("omp_out"); 1254 } 1255 llvm::Function *Combiner = emitCombinerOrInitializer( 1256 CGM, D->getType(), D->getCombiner(), cast<VarDecl>(D->lookup(In).front()), 1257 cast<VarDecl>(D->lookup(Out).front()), 1258 /*IsCombiner=*/true); 1259 llvm::Function *Initializer = nullptr; 1260 if (auto *Init = D->getInitializer()) { 1261 if (!Priv || !Orig) { 1262 Priv = &C.Idents.get("omp_priv"); 1263 Orig = &C.Idents.get("omp_orig"); 1264 } 1265 Initializer = emitCombinerOrInitializer( 1266 CGM, D->getType(), 1267 D->getInitializerKind() == OMPDeclareReductionDecl::CallInit ? Init 1268 : nullptr, 1269 cast<VarDecl>(D->lookup(Orig).front()), 1270 cast<VarDecl>(D->lookup(Priv).front()), 1271 /*IsCombiner=*/false); 1272 } 1273 UDRMap.insert(std::make_pair(D, std::make_pair(Combiner, Initializer))); 1274 if (CGF) { 1275 auto &Decls = FunctionUDRMap.FindAndConstruct(CGF->CurFn); 1276 Decls.second.push_back(D); 1277 } 1278 } 1279 1280 std::pair<llvm::Function *, llvm::Function *> 1281 CGOpenMPRuntime::getUserDefinedReduction(const OMPDeclareReductionDecl *D) { 1282 auto I = UDRMap.find(D); 1283 if (I != UDRMap.end()) 1284 return I->second; 1285 emitUserDefinedReduction(/*CGF=*/nullptr, D); 1286 return UDRMap.lookup(D); 1287 } 1288 1289 // Layout information for ident_t. 1290 static CharUnits getIdentAlign(CodeGenModule &CGM) { 1291 return CGM.getPointerAlign(); 1292 } 1293 static CharUnits getIdentSize(CodeGenModule &CGM) { 1294 assert((4 * CGM.getPointerSize()).isMultipleOf(CGM.getPointerAlign())); 1295 return CharUnits::fromQuantity(16) + CGM.getPointerSize(); 1296 } 1297 static CharUnits getOffsetOfIdentField(IdentFieldIndex Field) { 1298 // All the fields except the last are i32, so this works beautifully. 1299 return unsigned(Field) * CharUnits::fromQuantity(4); 1300 } 1301 static Address createIdentFieldGEP(CodeGenFunction &CGF, Address Addr, 1302 IdentFieldIndex Field, 1303 const llvm::Twine &Name = "") { 1304 auto Offset = getOffsetOfIdentField(Field); 1305 return CGF.Builder.CreateStructGEP(Addr, Field, Offset, Name); 1306 } 1307 1308 static llvm::Value *emitParallelOrTeamsOutlinedFunction( 1309 CodeGenModule &CGM, const OMPExecutableDirective &D, const CapturedStmt *CS, 1310 const VarDecl *ThreadIDVar, OpenMPDirectiveKind InnermostKind, 1311 const StringRef OutlinedHelperName, const RegionCodeGenTy &CodeGen) { 1312 assert(ThreadIDVar->getType()->isPointerType() && 1313 "thread id variable must be of type kmp_int32 *"); 1314 CodeGenFunction CGF(CGM, true); 1315 bool HasCancel = false; 1316 if (auto *OPD = dyn_cast<OMPParallelDirective>(&D)) 1317 HasCancel = OPD->hasCancel(); 1318 else if (auto *OPSD = dyn_cast<OMPParallelSectionsDirective>(&D)) 1319 HasCancel = OPSD->hasCancel(); 1320 else if (auto *OPFD = dyn_cast<OMPParallelForDirective>(&D)) 1321 HasCancel = OPFD->hasCancel(); 1322 else if (auto *OPFD = dyn_cast<OMPTargetParallelForDirective>(&D)) 1323 HasCancel = OPFD->hasCancel(); 1324 else if (auto *OPFD = dyn_cast<OMPDistributeParallelForDirective>(&D)) 1325 HasCancel = OPFD->hasCancel(); 1326 else if (auto *OPFD = dyn_cast<OMPTeamsDistributeParallelForDirective>(&D)) 1327 HasCancel = OPFD->hasCancel(); 1328 else if (auto *OPFD = 1329 dyn_cast<OMPTargetTeamsDistributeParallelForDirective>(&D)) 1330 HasCancel = OPFD->hasCancel(); 1331 CGOpenMPOutlinedRegionInfo CGInfo(*CS, ThreadIDVar, CodeGen, InnermostKind, 1332 HasCancel, OutlinedHelperName); 1333 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CGInfo); 1334 return CGF.GenerateOpenMPCapturedStmtFunction(*CS); 1335 } 1336 1337 llvm::Value *CGOpenMPRuntime::emitParallelOutlinedFunction( 1338 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar, 1339 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen) { 1340 const CapturedStmt *CS = D.getCapturedStmt(OMPD_parallel); 1341 return emitParallelOrTeamsOutlinedFunction( 1342 CGM, D, CS, ThreadIDVar, InnermostKind, getOutlinedHelperName(), CodeGen); 1343 } 1344 1345 llvm::Value *CGOpenMPRuntime::emitTeamsOutlinedFunction( 1346 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar, 1347 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen) { 1348 const CapturedStmt *CS = D.getCapturedStmt(OMPD_teams); 1349 return emitParallelOrTeamsOutlinedFunction( 1350 CGM, D, CS, ThreadIDVar, InnermostKind, getOutlinedHelperName(), CodeGen); 1351 } 1352 1353 llvm::Value *CGOpenMPRuntime::emitTaskOutlinedFunction( 1354 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar, 1355 const VarDecl *PartIDVar, const VarDecl *TaskTVar, 1356 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen, 1357 bool Tied, unsigned &NumberOfParts) { 1358 auto &&UntiedCodeGen = [this, &D, TaskTVar](CodeGenFunction &CGF, 1359 PrePostActionTy &) { 1360 auto *ThreadID = getThreadID(CGF, D.getLocStart()); 1361 auto *UpLoc = emitUpdateLocation(CGF, D.getLocStart()); 1362 llvm::Value *TaskArgs[] = { 1363 UpLoc, ThreadID, 1364 CGF.EmitLoadOfPointerLValue(CGF.GetAddrOfLocalVar(TaskTVar), 1365 TaskTVar->getType()->castAs<PointerType>()) 1366 .getPointer()}; 1367 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_omp_task), TaskArgs); 1368 }; 1369 CGOpenMPTaskOutlinedRegionInfo::UntiedTaskActionTy Action(Tied, PartIDVar, 1370 UntiedCodeGen); 1371 CodeGen.setAction(Action); 1372 assert(!ThreadIDVar->getType()->isPointerType() && 1373 "thread id variable must be of type kmp_int32 for tasks"); 1374 const OpenMPDirectiveKind Region = 1375 isOpenMPTaskLoopDirective(D.getDirectiveKind()) ? OMPD_taskloop 1376 : OMPD_task; 1377 auto *CS = D.getCapturedStmt(Region); 1378 auto *TD = dyn_cast<OMPTaskDirective>(&D); 1379 CodeGenFunction CGF(CGM, true); 1380 CGOpenMPTaskOutlinedRegionInfo CGInfo(*CS, ThreadIDVar, CodeGen, 1381 InnermostKind, 1382 TD ? TD->hasCancel() : false, Action); 1383 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CGInfo); 1384 auto *Res = CGF.GenerateCapturedStmtFunction(*CS); 1385 if (!Tied) 1386 NumberOfParts = Action.getNumberOfParts(); 1387 return Res; 1388 } 1389 1390 Address CGOpenMPRuntime::getOrCreateDefaultLocation(unsigned Flags) { 1391 CharUnits Align = getIdentAlign(CGM); 1392 llvm::Value *Entry = OpenMPDefaultLocMap.lookup(Flags); 1393 if (!Entry) { 1394 if (!DefaultOpenMPPSource) { 1395 // Initialize default location for psource field of ident_t structure of 1396 // all ident_t objects. Format is ";file;function;line;column;;". 1397 // Taken from 1398 // http://llvm.org/svn/llvm-project/openmp/trunk/runtime/src/kmp_str.c 1399 DefaultOpenMPPSource = 1400 CGM.GetAddrOfConstantCString(";unknown;unknown;0;0;;").getPointer(); 1401 DefaultOpenMPPSource = 1402 llvm::ConstantExpr::getBitCast(DefaultOpenMPPSource, CGM.Int8PtrTy); 1403 } 1404 1405 ConstantInitBuilder builder(CGM); 1406 auto fields = builder.beginStruct(IdentTy); 1407 fields.addInt(CGM.Int32Ty, 0); 1408 fields.addInt(CGM.Int32Ty, Flags); 1409 fields.addInt(CGM.Int32Ty, 0); 1410 fields.addInt(CGM.Int32Ty, 0); 1411 fields.add(DefaultOpenMPPSource); 1412 auto DefaultOpenMPLocation = 1413 fields.finishAndCreateGlobal("", Align, /*isConstant*/ true, 1414 llvm::GlobalValue::PrivateLinkage); 1415 DefaultOpenMPLocation->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 1416 1417 OpenMPDefaultLocMap[Flags] = Entry = DefaultOpenMPLocation; 1418 } 1419 return Address(Entry, Align); 1420 } 1421 1422 llvm::Value *CGOpenMPRuntime::emitUpdateLocation(CodeGenFunction &CGF, 1423 SourceLocation Loc, 1424 unsigned Flags) { 1425 Flags |= OMP_IDENT_KMPC; 1426 // If no debug info is generated - return global default location. 1427 if (CGM.getCodeGenOpts().getDebugInfo() == codegenoptions::NoDebugInfo || 1428 Loc.isInvalid()) 1429 return getOrCreateDefaultLocation(Flags).getPointer(); 1430 1431 assert(CGF.CurFn && "No function in current CodeGenFunction."); 1432 1433 Address LocValue = Address::invalid(); 1434 auto I = OpenMPLocThreadIDMap.find(CGF.CurFn); 1435 if (I != OpenMPLocThreadIDMap.end()) 1436 LocValue = Address(I->second.DebugLoc, getIdentAlign(CGF.CGM)); 1437 1438 // OpenMPLocThreadIDMap may have null DebugLoc and non-null ThreadID, if 1439 // GetOpenMPThreadID was called before this routine. 1440 if (!LocValue.isValid()) { 1441 // Generate "ident_t .kmpc_loc.addr;" 1442 Address AI = CGF.CreateTempAlloca(IdentTy, getIdentAlign(CGF.CGM), 1443 ".kmpc_loc.addr"); 1444 auto &Elem = OpenMPLocThreadIDMap.FindAndConstruct(CGF.CurFn); 1445 Elem.second.DebugLoc = AI.getPointer(); 1446 LocValue = AI; 1447 1448 CGBuilderTy::InsertPointGuard IPG(CGF.Builder); 1449 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt); 1450 CGF.Builder.CreateMemCpy(LocValue, getOrCreateDefaultLocation(Flags), 1451 CGM.getSize(getIdentSize(CGF.CGM))); 1452 } 1453 1454 // char **psource = &.kmpc_loc_<flags>.addr.psource; 1455 Address PSource = createIdentFieldGEP(CGF, LocValue, IdentField_PSource); 1456 1457 auto OMPDebugLoc = OpenMPDebugLocMap.lookup(Loc.getRawEncoding()); 1458 if (OMPDebugLoc == nullptr) { 1459 SmallString<128> Buffer2; 1460 llvm::raw_svector_ostream OS2(Buffer2); 1461 // Build debug location 1462 PresumedLoc PLoc = CGF.getContext().getSourceManager().getPresumedLoc(Loc); 1463 OS2 << ";" << PLoc.getFilename() << ";"; 1464 if (const FunctionDecl *FD = 1465 dyn_cast_or_null<FunctionDecl>(CGF.CurFuncDecl)) { 1466 OS2 << FD->getQualifiedNameAsString(); 1467 } 1468 OS2 << ";" << PLoc.getLine() << ";" << PLoc.getColumn() << ";;"; 1469 OMPDebugLoc = CGF.Builder.CreateGlobalStringPtr(OS2.str()); 1470 OpenMPDebugLocMap[Loc.getRawEncoding()] = OMPDebugLoc; 1471 } 1472 // *psource = ";<File>;<Function>;<Line>;<Column>;;"; 1473 CGF.Builder.CreateStore(OMPDebugLoc, PSource); 1474 1475 // Our callers always pass this to a runtime function, so for 1476 // convenience, go ahead and return a naked pointer. 1477 return LocValue.getPointer(); 1478 } 1479 1480 llvm::Value *CGOpenMPRuntime::getThreadID(CodeGenFunction &CGF, 1481 SourceLocation Loc) { 1482 assert(CGF.CurFn && "No function in current CodeGenFunction."); 1483 1484 llvm::Value *ThreadID = nullptr; 1485 // Check whether we've already cached a load of the thread id in this 1486 // function. 1487 auto I = OpenMPLocThreadIDMap.find(CGF.CurFn); 1488 if (I != OpenMPLocThreadIDMap.end()) { 1489 ThreadID = I->second.ThreadID; 1490 if (ThreadID != nullptr) 1491 return ThreadID; 1492 } 1493 // If exceptions are enabled, do not use parameter to avoid possible crash. 1494 if (!CGF.EHStack.requiresLandingPad() || !CGF.getLangOpts().Exceptions || 1495 !CGF.getLangOpts().CXXExceptions || 1496 CGF.Builder.GetInsertBlock() == CGF.AllocaInsertPt->getParent()) { 1497 if (auto *OMPRegionInfo = 1498 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) { 1499 if (OMPRegionInfo->getThreadIDVariable()) { 1500 // Check if this an outlined function with thread id passed as argument. 1501 auto LVal = OMPRegionInfo->getThreadIDVariableLValue(CGF); 1502 ThreadID = CGF.EmitLoadOfLValue(LVal, Loc).getScalarVal(); 1503 // If value loaded in entry block, cache it and use it everywhere in 1504 // function. 1505 if (CGF.Builder.GetInsertBlock() == CGF.AllocaInsertPt->getParent()) { 1506 auto &Elem = OpenMPLocThreadIDMap.FindAndConstruct(CGF.CurFn); 1507 Elem.second.ThreadID = ThreadID; 1508 } 1509 return ThreadID; 1510 } 1511 } 1512 } 1513 1514 // This is not an outlined function region - need to call __kmpc_int32 1515 // kmpc_global_thread_num(ident_t *loc). 1516 // Generate thread id value and cache this value for use across the 1517 // function. 1518 CGBuilderTy::InsertPointGuard IPG(CGF.Builder); 1519 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt); 1520 auto *Call = CGF.Builder.CreateCall( 1521 createRuntimeFunction(OMPRTL__kmpc_global_thread_num), 1522 emitUpdateLocation(CGF, Loc)); 1523 Call->setCallingConv(CGF.getRuntimeCC()); 1524 auto &Elem = OpenMPLocThreadIDMap.FindAndConstruct(CGF.CurFn); 1525 Elem.second.ThreadID = Call; 1526 return Call; 1527 } 1528 1529 void CGOpenMPRuntime::functionFinished(CodeGenFunction &CGF) { 1530 assert(CGF.CurFn && "No function in current CodeGenFunction."); 1531 if (OpenMPLocThreadIDMap.count(CGF.CurFn)) 1532 OpenMPLocThreadIDMap.erase(CGF.CurFn); 1533 if (FunctionUDRMap.count(CGF.CurFn) > 0) { 1534 for(auto *D : FunctionUDRMap[CGF.CurFn]) { 1535 UDRMap.erase(D); 1536 } 1537 FunctionUDRMap.erase(CGF.CurFn); 1538 } 1539 } 1540 1541 llvm::Type *CGOpenMPRuntime::getIdentTyPointerTy() { 1542 if (!IdentTy) { 1543 } 1544 return llvm::PointerType::getUnqual(IdentTy); 1545 } 1546 1547 llvm::Type *CGOpenMPRuntime::getKmpc_MicroPointerTy() { 1548 if (!Kmpc_MicroTy) { 1549 // Build void (*kmpc_micro)(kmp_int32 *global_tid, kmp_int32 *bound_tid,...) 1550 llvm::Type *MicroParams[] = {llvm::PointerType::getUnqual(CGM.Int32Ty), 1551 llvm::PointerType::getUnqual(CGM.Int32Ty)}; 1552 Kmpc_MicroTy = llvm::FunctionType::get(CGM.VoidTy, MicroParams, true); 1553 } 1554 return llvm::PointerType::getUnqual(Kmpc_MicroTy); 1555 } 1556 1557 llvm::Constant * 1558 CGOpenMPRuntime::createRuntimeFunction(unsigned Function) { 1559 llvm::Constant *RTLFn = nullptr; 1560 switch (static_cast<OpenMPRTLFunction>(Function)) { 1561 case OMPRTL__kmpc_fork_call: { 1562 // Build void __kmpc_fork_call(ident_t *loc, kmp_int32 argc, kmpc_micro 1563 // microtask, ...); 1564 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 1565 getKmpc_MicroPointerTy()}; 1566 llvm::FunctionType *FnTy = 1567 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ true); 1568 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_fork_call"); 1569 break; 1570 } 1571 case OMPRTL__kmpc_global_thread_num: { 1572 // Build kmp_int32 __kmpc_global_thread_num(ident_t *loc); 1573 llvm::Type *TypeParams[] = {getIdentTyPointerTy()}; 1574 llvm::FunctionType *FnTy = 1575 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 1576 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_global_thread_num"); 1577 break; 1578 } 1579 case OMPRTL__kmpc_threadprivate_cached: { 1580 // Build void *__kmpc_threadprivate_cached(ident_t *loc, 1581 // kmp_int32 global_tid, void *data, size_t size, void ***cache); 1582 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 1583 CGM.VoidPtrTy, CGM.SizeTy, 1584 CGM.VoidPtrTy->getPointerTo()->getPointerTo()}; 1585 llvm::FunctionType *FnTy = 1586 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg*/ false); 1587 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_threadprivate_cached"); 1588 break; 1589 } 1590 case OMPRTL__kmpc_critical: { 1591 // Build void __kmpc_critical(ident_t *loc, kmp_int32 global_tid, 1592 // kmp_critical_name *crit); 1593 llvm::Type *TypeParams[] = { 1594 getIdentTyPointerTy(), CGM.Int32Ty, 1595 llvm::PointerType::getUnqual(KmpCriticalNameTy)}; 1596 llvm::FunctionType *FnTy = 1597 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 1598 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_critical"); 1599 break; 1600 } 1601 case OMPRTL__kmpc_critical_with_hint: { 1602 // Build void __kmpc_critical_with_hint(ident_t *loc, kmp_int32 global_tid, 1603 // kmp_critical_name *crit, uintptr_t hint); 1604 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 1605 llvm::PointerType::getUnqual(KmpCriticalNameTy), 1606 CGM.IntPtrTy}; 1607 llvm::FunctionType *FnTy = 1608 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 1609 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_critical_with_hint"); 1610 break; 1611 } 1612 case OMPRTL__kmpc_threadprivate_register: { 1613 // Build void __kmpc_threadprivate_register(ident_t *, void *data, 1614 // kmpc_ctor ctor, kmpc_cctor cctor, kmpc_dtor dtor); 1615 // typedef void *(*kmpc_ctor)(void *); 1616 auto KmpcCtorTy = 1617 llvm::FunctionType::get(CGM.VoidPtrTy, CGM.VoidPtrTy, 1618 /*isVarArg*/ false)->getPointerTo(); 1619 // typedef void *(*kmpc_cctor)(void *, void *); 1620 llvm::Type *KmpcCopyCtorTyArgs[] = {CGM.VoidPtrTy, CGM.VoidPtrTy}; 1621 auto KmpcCopyCtorTy = 1622 llvm::FunctionType::get(CGM.VoidPtrTy, KmpcCopyCtorTyArgs, 1623 /*isVarArg*/ false)->getPointerTo(); 1624 // typedef void (*kmpc_dtor)(void *); 1625 auto KmpcDtorTy = 1626 llvm::FunctionType::get(CGM.VoidTy, CGM.VoidPtrTy, /*isVarArg*/ false) 1627 ->getPointerTo(); 1628 llvm::Type *FnTyArgs[] = {getIdentTyPointerTy(), CGM.VoidPtrTy, KmpcCtorTy, 1629 KmpcCopyCtorTy, KmpcDtorTy}; 1630 auto FnTy = llvm::FunctionType::get(CGM.VoidTy, FnTyArgs, 1631 /*isVarArg*/ false); 1632 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_threadprivate_register"); 1633 break; 1634 } 1635 case OMPRTL__kmpc_end_critical: { 1636 // Build void __kmpc_end_critical(ident_t *loc, kmp_int32 global_tid, 1637 // kmp_critical_name *crit); 1638 llvm::Type *TypeParams[] = { 1639 getIdentTyPointerTy(), CGM.Int32Ty, 1640 llvm::PointerType::getUnqual(KmpCriticalNameTy)}; 1641 llvm::FunctionType *FnTy = 1642 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 1643 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_end_critical"); 1644 break; 1645 } 1646 case OMPRTL__kmpc_cancel_barrier: { 1647 // Build kmp_int32 __kmpc_cancel_barrier(ident_t *loc, kmp_int32 1648 // global_tid); 1649 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1650 llvm::FunctionType *FnTy = 1651 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 1652 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name*/ "__kmpc_cancel_barrier"); 1653 break; 1654 } 1655 case OMPRTL__kmpc_barrier: { 1656 // Build void __kmpc_barrier(ident_t *loc, kmp_int32 global_tid); 1657 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1658 llvm::FunctionType *FnTy = 1659 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 1660 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name*/ "__kmpc_barrier"); 1661 break; 1662 } 1663 case OMPRTL__kmpc_for_static_fini: { 1664 // Build void __kmpc_for_static_fini(ident_t *loc, kmp_int32 global_tid); 1665 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1666 llvm::FunctionType *FnTy = 1667 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 1668 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_for_static_fini"); 1669 break; 1670 } 1671 case OMPRTL__kmpc_push_num_threads: { 1672 // Build void __kmpc_push_num_threads(ident_t *loc, kmp_int32 global_tid, 1673 // kmp_int32 num_threads) 1674 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 1675 CGM.Int32Ty}; 1676 llvm::FunctionType *FnTy = 1677 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 1678 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_push_num_threads"); 1679 break; 1680 } 1681 case OMPRTL__kmpc_serialized_parallel: { 1682 // Build void __kmpc_serialized_parallel(ident_t *loc, kmp_int32 1683 // global_tid); 1684 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1685 llvm::FunctionType *FnTy = 1686 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 1687 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_serialized_parallel"); 1688 break; 1689 } 1690 case OMPRTL__kmpc_end_serialized_parallel: { 1691 // Build void __kmpc_end_serialized_parallel(ident_t *loc, kmp_int32 1692 // global_tid); 1693 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1694 llvm::FunctionType *FnTy = 1695 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 1696 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_end_serialized_parallel"); 1697 break; 1698 } 1699 case OMPRTL__kmpc_flush: { 1700 // Build void __kmpc_flush(ident_t *loc); 1701 llvm::Type *TypeParams[] = {getIdentTyPointerTy()}; 1702 llvm::FunctionType *FnTy = 1703 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 1704 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_flush"); 1705 break; 1706 } 1707 case OMPRTL__kmpc_master: { 1708 // Build kmp_int32 __kmpc_master(ident_t *loc, kmp_int32 global_tid); 1709 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1710 llvm::FunctionType *FnTy = 1711 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false); 1712 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_master"); 1713 break; 1714 } 1715 case OMPRTL__kmpc_end_master: { 1716 // Build void __kmpc_end_master(ident_t *loc, kmp_int32 global_tid); 1717 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1718 llvm::FunctionType *FnTy = 1719 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1720 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_end_master"); 1721 break; 1722 } 1723 case OMPRTL__kmpc_omp_taskyield: { 1724 // Build kmp_int32 __kmpc_omp_taskyield(ident_t *, kmp_int32 global_tid, 1725 // int end_part); 1726 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.IntTy}; 1727 llvm::FunctionType *FnTy = 1728 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false); 1729 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_taskyield"); 1730 break; 1731 } 1732 case OMPRTL__kmpc_single: { 1733 // Build kmp_int32 __kmpc_single(ident_t *loc, kmp_int32 global_tid); 1734 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1735 llvm::FunctionType *FnTy = 1736 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false); 1737 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_single"); 1738 break; 1739 } 1740 case OMPRTL__kmpc_end_single: { 1741 // Build void __kmpc_end_single(ident_t *loc, kmp_int32 global_tid); 1742 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1743 llvm::FunctionType *FnTy = 1744 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1745 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_end_single"); 1746 break; 1747 } 1748 case OMPRTL__kmpc_omp_task_alloc: { 1749 // Build kmp_task_t *__kmpc_omp_task_alloc(ident_t *, kmp_int32 gtid, 1750 // kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds, 1751 // kmp_routine_entry_t *task_entry); 1752 assert(KmpRoutineEntryPtrTy != nullptr && 1753 "Type kmp_routine_entry_t must be created."); 1754 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.Int32Ty, 1755 CGM.SizeTy, CGM.SizeTy, KmpRoutineEntryPtrTy}; 1756 // Return void * and then cast to particular kmp_task_t type. 1757 llvm::FunctionType *FnTy = 1758 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg=*/false); 1759 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_task_alloc"); 1760 break; 1761 } 1762 case OMPRTL__kmpc_omp_task: { 1763 // Build kmp_int32 __kmpc_omp_task(ident_t *, kmp_int32 gtid, kmp_task_t 1764 // *new_task); 1765 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 1766 CGM.VoidPtrTy}; 1767 llvm::FunctionType *FnTy = 1768 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false); 1769 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_task"); 1770 break; 1771 } 1772 case OMPRTL__kmpc_copyprivate: { 1773 // Build void __kmpc_copyprivate(ident_t *loc, kmp_int32 global_tid, 1774 // size_t cpy_size, void *cpy_data, void(*cpy_func)(void *, void *), 1775 // kmp_int32 didit); 1776 llvm::Type *CpyTypeParams[] = {CGM.VoidPtrTy, CGM.VoidPtrTy}; 1777 auto *CpyFnTy = 1778 llvm::FunctionType::get(CGM.VoidTy, CpyTypeParams, /*isVarArg=*/false); 1779 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.SizeTy, 1780 CGM.VoidPtrTy, CpyFnTy->getPointerTo(), 1781 CGM.Int32Ty}; 1782 llvm::FunctionType *FnTy = 1783 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1784 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_copyprivate"); 1785 break; 1786 } 1787 case OMPRTL__kmpc_reduce: { 1788 // Build kmp_int32 __kmpc_reduce(ident_t *loc, kmp_int32 global_tid, 1789 // kmp_int32 num_vars, size_t reduce_size, void *reduce_data, void 1790 // (*reduce_func)(void *lhs_data, void *rhs_data), kmp_critical_name *lck); 1791 llvm::Type *ReduceTypeParams[] = {CGM.VoidPtrTy, CGM.VoidPtrTy}; 1792 auto *ReduceFnTy = llvm::FunctionType::get(CGM.VoidTy, ReduceTypeParams, 1793 /*isVarArg=*/false); 1794 llvm::Type *TypeParams[] = { 1795 getIdentTyPointerTy(), CGM.Int32Ty, CGM.Int32Ty, CGM.SizeTy, 1796 CGM.VoidPtrTy, ReduceFnTy->getPointerTo(), 1797 llvm::PointerType::getUnqual(KmpCriticalNameTy)}; 1798 llvm::FunctionType *FnTy = 1799 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false); 1800 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_reduce"); 1801 break; 1802 } 1803 case OMPRTL__kmpc_reduce_nowait: { 1804 // Build kmp_int32 __kmpc_reduce_nowait(ident_t *loc, kmp_int32 1805 // global_tid, kmp_int32 num_vars, size_t reduce_size, void *reduce_data, 1806 // void (*reduce_func)(void *lhs_data, void *rhs_data), kmp_critical_name 1807 // *lck); 1808 llvm::Type *ReduceTypeParams[] = {CGM.VoidPtrTy, CGM.VoidPtrTy}; 1809 auto *ReduceFnTy = llvm::FunctionType::get(CGM.VoidTy, ReduceTypeParams, 1810 /*isVarArg=*/false); 1811 llvm::Type *TypeParams[] = { 1812 getIdentTyPointerTy(), CGM.Int32Ty, CGM.Int32Ty, CGM.SizeTy, 1813 CGM.VoidPtrTy, ReduceFnTy->getPointerTo(), 1814 llvm::PointerType::getUnqual(KmpCriticalNameTy)}; 1815 llvm::FunctionType *FnTy = 1816 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false); 1817 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_reduce_nowait"); 1818 break; 1819 } 1820 case OMPRTL__kmpc_end_reduce: { 1821 // Build void __kmpc_end_reduce(ident_t *loc, kmp_int32 global_tid, 1822 // kmp_critical_name *lck); 1823 llvm::Type *TypeParams[] = { 1824 getIdentTyPointerTy(), CGM.Int32Ty, 1825 llvm::PointerType::getUnqual(KmpCriticalNameTy)}; 1826 llvm::FunctionType *FnTy = 1827 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1828 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_end_reduce"); 1829 break; 1830 } 1831 case OMPRTL__kmpc_end_reduce_nowait: { 1832 // Build __kmpc_end_reduce_nowait(ident_t *loc, kmp_int32 global_tid, 1833 // kmp_critical_name *lck); 1834 llvm::Type *TypeParams[] = { 1835 getIdentTyPointerTy(), CGM.Int32Ty, 1836 llvm::PointerType::getUnqual(KmpCriticalNameTy)}; 1837 llvm::FunctionType *FnTy = 1838 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1839 RTLFn = 1840 CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_end_reduce_nowait"); 1841 break; 1842 } 1843 case OMPRTL__kmpc_omp_task_begin_if0: { 1844 // Build void __kmpc_omp_task(ident_t *, kmp_int32 gtid, kmp_task_t 1845 // *new_task); 1846 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 1847 CGM.VoidPtrTy}; 1848 llvm::FunctionType *FnTy = 1849 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1850 RTLFn = 1851 CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_task_begin_if0"); 1852 break; 1853 } 1854 case OMPRTL__kmpc_omp_task_complete_if0: { 1855 // Build void __kmpc_omp_task(ident_t *, kmp_int32 gtid, kmp_task_t 1856 // *new_task); 1857 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 1858 CGM.VoidPtrTy}; 1859 llvm::FunctionType *FnTy = 1860 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1861 RTLFn = CGM.CreateRuntimeFunction(FnTy, 1862 /*Name=*/"__kmpc_omp_task_complete_if0"); 1863 break; 1864 } 1865 case OMPRTL__kmpc_ordered: { 1866 // Build void __kmpc_ordered(ident_t *loc, kmp_int32 global_tid); 1867 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1868 llvm::FunctionType *FnTy = 1869 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1870 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_ordered"); 1871 break; 1872 } 1873 case OMPRTL__kmpc_end_ordered: { 1874 // Build void __kmpc_end_ordered(ident_t *loc, kmp_int32 global_tid); 1875 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1876 llvm::FunctionType *FnTy = 1877 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1878 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_end_ordered"); 1879 break; 1880 } 1881 case OMPRTL__kmpc_omp_taskwait: { 1882 // Build kmp_int32 __kmpc_omp_taskwait(ident_t *loc, kmp_int32 global_tid); 1883 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1884 llvm::FunctionType *FnTy = 1885 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false); 1886 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_omp_taskwait"); 1887 break; 1888 } 1889 case OMPRTL__kmpc_taskgroup: { 1890 // Build void __kmpc_taskgroup(ident_t *loc, kmp_int32 global_tid); 1891 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1892 llvm::FunctionType *FnTy = 1893 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1894 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_taskgroup"); 1895 break; 1896 } 1897 case OMPRTL__kmpc_end_taskgroup: { 1898 // Build void __kmpc_end_taskgroup(ident_t *loc, kmp_int32 global_tid); 1899 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 1900 llvm::FunctionType *FnTy = 1901 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1902 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_end_taskgroup"); 1903 break; 1904 } 1905 case OMPRTL__kmpc_push_proc_bind: { 1906 // Build void __kmpc_push_proc_bind(ident_t *loc, kmp_int32 global_tid, 1907 // int proc_bind) 1908 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.IntTy}; 1909 llvm::FunctionType *FnTy = 1910 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 1911 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_push_proc_bind"); 1912 break; 1913 } 1914 case OMPRTL__kmpc_omp_task_with_deps: { 1915 // Build kmp_int32 __kmpc_omp_task_with_deps(ident_t *, kmp_int32 gtid, 1916 // kmp_task_t *new_task, kmp_int32 ndeps, kmp_depend_info_t *dep_list, 1917 // kmp_int32 ndeps_noalias, kmp_depend_info_t *noalias_dep_list); 1918 llvm::Type *TypeParams[] = { 1919 getIdentTyPointerTy(), CGM.Int32Ty, CGM.VoidPtrTy, CGM.Int32Ty, 1920 CGM.VoidPtrTy, CGM.Int32Ty, CGM.VoidPtrTy}; 1921 llvm::FunctionType *FnTy = 1922 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg=*/false); 1923 RTLFn = 1924 CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_task_with_deps"); 1925 break; 1926 } 1927 case OMPRTL__kmpc_omp_wait_deps: { 1928 // Build void __kmpc_omp_wait_deps(ident_t *, kmp_int32 gtid, 1929 // kmp_int32 ndeps, kmp_depend_info_t *dep_list, kmp_int32 ndeps_noalias, 1930 // kmp_depend_info_t *noalias_dep_list); 1931 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 1932 CGM.Int32Ty, CGM.VoidPtrTy, 1933 CGM.Int32Ty, CGM.VoidPtrTy}; 1934 llvm::FunctionType *FnTy = 1935 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1936 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_omp_wait_deps"); 1937 break; 1938 } 1939 case OMPRTL__kmpc_cancellationpoint: { 1940 // Build kmp_int32 __kmpc_cancellationpoint(ident_t *loc, kmp_int32 1941 // global_tid, kmp_int32 cncl_kind) 1942 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.IntTy}; 1943 llvm::FunctionType *FnTy = 1944 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 1945 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_cancellationpoint"); 1946 break; 1947 } 1948 case OMPRTL__kmpc_cancel: { 1949 // Build kmp_int32 __kmpc_cancel(ident_t *loc, kmp_int32 global_tid, 1950 // kmp_int32 cncl_kind) 1951 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.IntTy}; 1952 llvm::FunctionType *FnTy = 1953 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 1954 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_cancel"); 1955 break; 1956 } 1957 case OMPRTL__kmpc_push_num_teams: { 1958 // Build void kmpc_push_num_teams (ident_t loc, kmp_int32 global_tid, 1959 // kmp_int32 num_teams, kmp_int32 num_threads) 1960 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, CGM.Int32Ty, 1961 CGM.Int32Ty}; 1962 llvm::FunctionType *FnTy = 1963 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 1964 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_push_num_teams"); 1965 break; 1966 } 1967 case OMPRTL__kmpc_fork_teams: { 1968 // Build void __kmpc_fork_teams(ident_t *loc, kmp_int32 argc, kmpc_micro 1969 // microtask, ...); 1970 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 1971 getKmpc_MicroPointerTy()}; 1972 llvm::FunctionType *FnTy = 1973 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ true); 1974 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__kmpc_fork_teams"); 1975 break; 1976 } 1977 case OMPRTL__kmpc_taskloop: { 1978 // Build void __kmpc_taskloop(ident_t *loc, int gtid, kmp_task_t *task, int 1979 // if_val, kmp_uint64 *lb, kmp_uint64 *ub, kmp_int64 st, int nogroup, int 1980 // sched, kmp_uint64 grainsize, void *task_dup); 1981 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), 1982 CGM.IntTy, 1983 CGM.VoidPtrTy, 1984 CGM.IntTy, 1985 CGM.Int64Ty->getPointerTo(), 1986 CGM.Int64Ty->getPointerTo(), 1987 CGM.Int64Ty, 1988 CGM.IntTy, 1989 CGM.IntTy, 1990 CGM.Int64Ty, 1991 CGM.VoidPtrTy}; 1992 llvm::FunctionType *FnTy = 1993 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 1994 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_taskloop"); 1995 break; 1996 } 1997 case OMPRTL__kmpc_doacross_init: { 1998 // Build void __kmpc_doacross_init(ident_t *loc, kmp_int32 gtid, kmp_int32 1999 // num_dims, struct kmp_dim *dims); 2000 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), 2001 CGM.Int32Ty, 2002 CGM.Int32Ty, 2003 CGM.VoidPtrTy}; 2004 llvm::FunctionType *FnTy = 2005 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 2006 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_doacross_init"); 2007 break; 2008 } 2009 case OMPRTL__kmpc_doacross_fini: { 2010 // Build void __kmpc_doacross_fini(ident_t *loc, kmp_int32 gtid); 2011 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty}; 2012 llvm::FunctionType *FnTy = 2013 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 2014 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_doacross_fini"); 2015 break; 2016 } 2017 case OMPRTL__kmpc_doacross_post: { 2018 // Build void __kmpc_doacross_post(ident_t *loc, kmp_int32 gtid, kmp_int64 2019 // *vec); 2020 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 2021 CGM.Int64Ty->getPointerTo()}; 2022 llvm::FunctionType *FnTy = 2023 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 2024 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_doacross_post"); 2025 break; 2026 } 2027 case OMPRTL__kmpc_doacross_wait: { 2028 // Build void __kmpc_doacross_wait(ident_t *loc, kmp_int32 gtid, kmp_int64 2029 // *vec); 2030 llvm::Type *TypeParams[] = {getIdentTyPointerTy(), CGM.Int32Ty, 2031 CGM.Int64Ty->getPointerTo()}; 2032 llvm::FunctionType *FnTy = 2033 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 2034 RTLFn = CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_doacross_wait"); 2035 break; 2036 } 2037 case OMPRTL__kmpc_task_reduction_init: { 2038 // Build void *__kmpc_task_reduction_init(int gtid, int num_data, void 2039 // *data); 2040 llvm::Type *TypeParams[] = {CGM.IntTy, CGM.IntTy, CGM.VoidPtrTy}; 2041 llvm::FunctionType *FnTy = 2042 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg=*/false); 2043 RTLFn = 2044 CGM.CreateRuntimeFunction(FnTy, /*Name=*/"__kmpc_task_reduction_init"); 2045 break; 2046 } 2047 case OMPRTL__kmpc_task_reduction_get_th_data: { 2048 // Build void *__kmpc_task_reduction_get_th_data(int gtid, void *tg, void 2049 // *d); 2050 llvm::Type *TypeParams[] = {CGM.IntTy, CGM.VoidPtrTy, CGM.VoidPtrTy}; 2051 llvm::FunctionType *FnTy = 2052 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg=*/false); 2053 RTLFn = CGM.CreateRuntimeFunction( 2054 FnTy, /*Name=*/"__kmpc_task_reduction_get_th_data"); 2055 break; 2056 } 2057 case OMPRTL__tgt_target: { 2058 // Build int32_t __tgt_target(int64_t device_id, void *host_ptr, int32_t 2059 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t 2060 // *arg_types); 2061 llvm::Type *TypeParams[] = {CGM.Int64Ty, 2062 CGM.VoidPtrTy, 2063 CGM.Int32Ty, 2064 CGM.VoidPtrPtrTy, 2065 CGM.VoidPtrPtrTy, 2066 CGM.SizeTy->getPointerTo(), 2067 CGM.Int64Ty->getPointerTo()}; 2068 llvm::FunctionType *FnTy = 2069 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 2070 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target"); 2071 break; 2072 } 2073 case OMPRTL__tgt_target_nowait: { 2074 // Build int32_t __tgt_target_nowait(int64_t device_id, void *host_ptr, 2075 // int32_t arg_num, void** args_base, void **args, size_t *arg_sizes, 2076 // int64_t *arg_types); 2077 llvm::Type *TypeParams[] = {CGM.Int64Ty, 2078 CGM.VoidPtrTy, 2079 CGM.Int32Ty, 2080 CGM.VoidPtrPtrTy, 2081 CGM.VoidPtrPtrTy, 2082 CGM.SizeTy->getPointerTo(), 2083 CGM.Int64Ty->getPointerTo()}; 2084 llvm::FunctionType *FnTy = 2085 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 2086 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_nowait"); 2087 break; 2088 } 2089 case OMPRTL__tgt_target_teams: { 2090 // Build int32_t __tgt_target_teams(int64_t device_id, void *host_ptr, 2091 // int32_t arg_num, void** args_base, void **args, size_t *arg_sizes, 2092 // int64_t *arg_types, int32_t num_teams, int32_t thread_limit); 2093 llvm::Type *TypeParams[] = {CGM.Int64Ty, 2094 CGM.VoidPtrTy, 2095 CGM.Int32Ty, 2096 CGM.VoidPtrPtrTy, 2097 CGM.VoidPtrPtrTy, 2098 CGM.SizeTy->getPointerTo(), 2099 CGM.Int64Ty->getPointerTo(), 2100 CGM.Int32Ty, 2101 CGM.Int32Ty}; 2102 llvm::FunctionType *FnTy = 2103 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 2104 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_teams"); 2105 break; 2106 } 2107 case OMPRTL__tgt_target_teams_nowait: { 2108 // Build int32_t __tgt_target_teams_nowait(int64_t device_id, void 2109 // *host_ptr, int32_t arg_num, void** args_base, void **args, size_t 2110 // *arg_sizes, int64_t *arg_types, int32_t num_teams, int32_t thread_limit); 2111 llvm::Type *TypeParams[] = {CGM.Int64Ty, 2112 CGM.VoidPtrTy, 2113 CGM.Int32Ty, 2114 CGM.VoidPtrPtrTy, 2115 CGM.VoidPtrPtrTy, 2116 CGM.SizeTy->getPointerTo(), 2117 CGM.Int64Ty->getPointerTo(), 2118 CGM.Int32Ty, 2119 CGM.Int32Ty}; 2120 llvm::FunctionType *FnTy = 2121 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 2122 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_teams_nowait"); 2123 break; 2124 } 2125 case OMPRTL__tgt_register_lib: { 2126 // Build void __tgt_register_lib(__tgt_bin_desc *desc); 2127 QualType ParamTy = 2128 CGM.getContext().getPointerType(getTgtBinaryDescriptorQTy()); 2129 llvm::Type *TypeParams[] = {CGM.getTypes().ConvertTypeForMem(ParamTy)}; 2130 llvm::FunctionType *FnTy = 2131 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 2132 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_register_lib"); 2133 break; 2134 } 2135 case OMPRTL__tgt_unregister_lib: { 2136 // Build void __tgt_unregister_lib(__tgt_bin_desc *desc); 2137 QualType ParamTy = 2138 CGM.getContext().getPointerType(getTgtBinaryDescriptorQTy()); 2139 llvm::Type *TypeParams[] = {CGM.getTypes().ConvertTypeForMem(ParamTy)}; 2140 llvm::FunctionType *FnTy = 2141 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 2142 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_unregister_lib"); 2143 break; 2144 } 2145 case OMPRTL__tgt_target_data_begin: { 2146 // Build void __tgt_target_data_begin(int64_t device_id, int32_t arg_num, 2147 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types); 2148 llvm::Type *TypeParams[] = {CGM.Int64Ty, 2149 CGM.Int32Ty, 2150 CGM.VoidPtrPtrTy, 2151 CGM.VoidPtrPtrTy, 2152 CGM.SizeTy->getPointerTo(), 2153 CGM.Int64Ty->getPointerTo()}; 2154 llvm::FunctionType *FnTy = 2155 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 2156 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_begin"); 2157 break; 2158 } 2159 case OMPRTL__tgt_target_data_begin_nowait: { 2160 // Build void __tgt_target_data_begin_nowait(int64_t device_id, int32_t 2161 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t 2162 // *arg_types); 2163 llvm::Type *TypeParams[] = {CGM.Int64Ty, 2164 CGM.Int32Ty, 2165 CGM.VoidPtrPtrTy, 2166 CGM.VoidPtrPtrTy, 2167 CGM.SizeTy->getPointerTo(), 2168 CGM.Int64Ty->getPointerTo()}; 2169 auto *FnTy = 2170 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 2171 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_begin_nowait"); 2172 break; 2173 } 2174 case OMPRTL__tgt_target_data_end: { 2175 // Build void __tgt_target_data_end(int64_t device_id, int32_t arg_num, 2176 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types); 2177 llvm::Type *TypeParams[] = {CGM.Int64Ty, 2178 CGM.Int32Ty, 2179 CGM.VoidPtrPtrTy, 2180 CGM.VoidPtrPtrTy, 2181 CGM.SizeTy->getPointerTo(), 2182 CGM.Int64Ty->getPointerTo()}; 2183 llvm::FunctionType *FnTy = 2184 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 2185 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_end"); 2186 break; 2187 } 2188 case OMPRTL__tgt_target_data_end_nowait: { 2189 // Build void __tgt_target_data_end_nowait(int64_t device_id, int32_t 2190 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t 2191 // *arg_types); 2192 llvm::Type *TypeParams[] = {CGM.Int64Ty, 2193 CGM.Int32Ty, 2194 CGM.VoidPtrPtrTy, 2195 CGM.VoidPtrPtrTy, 2196 CGM.SizeTy->getPointerTo(), 2197 CGM.Int64Ty->getPointerTo()}; 2198 auto *FnTy = 2199 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 2200 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_end_nowait"); 2201 break; 2202 } 2203 case OMPRTL__tgt_target_data_update: { 2204 // Build void __tgt_target_data_update(int64_t device_id, int32_t arg_num, 2205 // void** args_base, void **args, size_t *arg_sizes, int64_t *arg_types); 2206 llvm::Type *TypeParams[] = {CGM.Int64Ty, 2207 CGM.Int32Ty, 2208 CGM.VoidPtrPtrTy, 2209 CGM.VoidPtrPtrTy, 2210 CGM.SizeTy->getPointerTo(), 2211 CGM.Int64Ty->getPointerTo()}; 2212 llvm::FunctionType *FnTy = 2213 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 2214 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_update"); 2215 break; 2216 } 2217 case OMPRTL__tgt_target_data_update_nowait: { 2218 // Build void __tgt_target_data_update_nowait(int64_t device_id, int32_t 2219 // arg_num, void** args_base, void **args, size_t *arg_sizes, int64_t 2220 // *arg_types); 2221 llvm::Type *TypeParams[] = {CGM.Int64Ty, 2222 CGM.Int32Ty, 2223 CGM.VoidPtrPtrTy, 2224 CGM.VoidPtrPtrTy, 2225 CGM.SizeTy->getPointerTo(), 2226 CGM.Int64Ty->getPointerTo()}; 2227 auto *FnTy = 2228 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 2229 RTLFn = CGM.CreateRuntimeFunction(FnTy, "__tgt_target_data_update_nowait"); 2230 break; 2231 } 2232 } 2233 assert(RTLFn && "Unable to find OpenMP runtime function"); 2234 return RTLFn; 2235 } 2236 2237 llvm::Constant *CGOpenMPRuntime::createForStaticInitFunction(unsigned IVSize, 2238 bool IVSigned) { 2239 assert((IVSize == 32 || IVSize == 64) && 2240 "IV size is not compatible with the omp runtime"); 2241 auto Name = IVSize == 32 ? (IVSigned ? "__kmpc_for_static_init_4" 2242 : "__kmpc_for_static_init_4u") 2243 : (IVSigned ? "__kmpc_for_static_init_8" 2244 : "__kmpc_for_static_init_8u"); 2245 auto ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty; 2246 auto PtrTy = llvm::PointerType::getUnqual(ITy); 2247 llvm::Type *TypeParams[] = { 2248 getIdentTyPointerTy(), // loc 2249 CGM.Int32Ty, // tid 2250 CGM.Int32Ty, // schedtype 2251 llvm::PointerType::getUnqual(CGM.Int32Ty), // p_lastiter 2252 PtrTy, // p_lower 2253 PtrTy, // p_upper 2254 PtrTy, // p_stride 2255 ITy, // incr 2256 ITy // chunk 2257 }; 2258 llvm::FunctionType *FnTy = 2259 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 2260 return CGM.CreateRuntimeFunction(FnTy, Name); 2261 } 2262 2263 llvm::Constant *CGOpenMPRuntime::createDispatchInitFunction(unsigned IVSize, 2264 bool IVSigned) { 2265 assert((IVSize == 32 || IVSize == 64) && 2266 "IV size is not compatible with the omp runtime"); 2267 auto Name = 2268 IVSize == 32 2269 ? (IVSigned ? "__kmpc_dispatch_init_4" : "__kmpc_dispatch_init_4u") 2270 : (IVSigned ? "__kmpc_dispatch_init_8" : "__kmpc_dispatch_init_8u"); 2271 auto ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty; 2272 llvm::Type *TypeParams[] = { getIdentTyPointerTy(), // loc 2273 CGM.Int32Ty, // tid 2274 CGM.Int32Ty, // schedtype 2275 ITy, // lower 2276 ITy, // upper 2277 ITy, // stride 2278 ITy // chunk 2279 }; 2280 llvm::FunctionType *FnTy = 2281 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false); 2282 return CGM.CreateRuntimeFunction(FnTy, Name); 2283 } 2284 2285 llvm::Constant *CGOpenMPRuntime::createDispatchFiniFunction(unsigned IVSize, 2286 bool IVSigned) { 2287 assert((IVSize == 32 || IVSize == 64) && 2288 "IV size is not compatible with the omp runtime"); 2289 auto Name = 2290 IVSize == 32 2291 ? (IVSigned ? "__kmpc_dispatch_fini_4" : "__kmpc_dispatch_fini_4u") 2292 : (IVSigned ? "__kmpc_dispatch_fini_8" : "__kmpc_dispatch_fini_8u"); 2293 llvm::Type *TypeParams[] = { 2294 getIdentTyPointerTy(), // loc 2295 CGM.Int32Ty, // tid 2296 }; 2297 llvm::FunctionType *FnTy = 2298 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg=*/false); 2299 return CGM.CreateRuntimeFunction(FnTy, Name); 2300 } 2301 2302 llvm::Constant *CGOpenMPRuntime::createDispatchNextFunction(unsigned IVSize, 2303 bool IVSigned) { 2304 assert((IVSize == 32 || IVSize == 64) && 2305 "IV size is not compatible with the omp runtime"); 2306 auto Name = 2307 IVSize == 32 2308 ? (IVSigned ? "__kmpc_dispatch_next_4" : "__kmpc_dispatch_next_4u") 2309 : (IVSigned ? "__kmpc_dispatch_next_8" : "__kmpc_dispatch_next_8u"); 2310 auto ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty; 2311 auto PtrTy = llvm::PointerType::getUnqual(ITy); 2312 llvm::Type *TypeParams[] = { 2313 getIdentTyPointerTy(), // loc 2314 CGM.Int32Ty, // tid 2315 llvm::PointerType::getUnqual(CGM.Int32Ty), // p_lastiter 2316 PtrTy, // p_lower 2317 PtrTy, // p_upper 2318 PtrTy // p_stride 2319 }; 2320 llvm::FunctionType *FnTy = 2321 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false); 2322 return CGM.CreateRuntimeFunction(FnTy, Name); 2323 } 2324 2325 llvm::Constant * 2326 CGOpenMPRuntime::getOrCreateThreadPrivateCache(const VarDecl *VD) { 2327 assert(!CGM.getLangOpts().OpenMPUseTLS || 2328 !CGM.getContext().getTargetInfo().isTLSSupported()); 2329 // Lookup the entry, lazily creating it if necessary. 2330 return getOrCreateInternalVariable(CGM.Int8PtrPtrTy, 2331 Twine(CGM.getMangledName(VD)) + ".cache."); 2332 } 2333 2334 Address CGOpenMPRuntime::getAddrOfThreadPrivate(CodeGenFunction &CGF, 2335 const VarDecl *VD, 2336 Address VDAddr, 2337 SourceLocation Loc) { 2338 if (CGM.getLangOpts().OpenMPUseTLS && 2339 CGM.getContext().getTargetInfo().isTLSSupported()) 2340 return VDAddr; 2341 2342 auto VarTy = VDAddr.getElementType(); 2343 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc), 2344 CGF.Builder.CreatePointerCast(VDAddr.getPointer(), 2345 CGM.Int8PtrTy), 2346 CGM.getSize(CGM.GetTargetTypeStoreSize(VarTy)), 2347 getOrCreateThreadPrivateCache(VD)}; 2348 return Address(CGF.EmitRuntimeCall( 2349 createRuntimeFunction(OMPRTL__kmpc_threadprivate_cached), Args), 2350 VDAddr.getAlignment()); 2351 } 2352 2353 void CGOpenMPRuntime::emitThreadPrivateVarInit( 2354 CodeGenFunction &CGF, Address VDAddr, llvm::Value *Ctor, 2355 llvm::Value *CopyCtor, llvm::Value *Dtor, SourceLocation Loc) { 2356 // Call kmp_int32 __kmpc_global_thread_num(&loc) to init OpenMP runtime 2357 // library. 2358 auto OMPLoc = emitUpdateLocation(CGF, Loc); 2359 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_global_thread_num), 2360 OMPLoc); 2361 // Call __kmpc_threadprivate_register(&loc, &var, ctor, cctor/*NULL*/, dtor) 2362 // to register constructor/destructor for variable. 2363 llvm::Value *Args[] = {OMPLoc, 2364 CGF.Builder.CreatePointerCast(VDAddr.getPointer(), 2365 CGM.VoidPtrTy), 2366 Ctor, CopyCtor, Dtor}; 2367 CGF.EmitRuntimeCall( 2368 createRuntimeFunction(OMPRTL__kmpc_threadprivate_register), Args); 2369 } 2370 2371 llvm::Function *CGOpenMPRuntime::emitThreadPrivateVarDefinition( 2372 const VarDecl *VD, Address VDAddr, SourceLocation Loc, 2373 bool PerformInit, CodeGenFunction *CGF) { 2374 if (CGM.getLangOpts().OpenMPUseTLS && 2375 CGM.getContext().getTargetInfo().isTLSSupported()) 2376 return nullptr; 2377 2378 VD = VD->getDefinition(CGM.getContext()); 2379 if (VD && ThreadPrivateWithDefinition.count(VD) == 0) { 2380 ThreadPrivateWithDefinition.insert(VD); 2381 QualType ASTTy = VD->getType(); 2382 2383 llvm::Value *Ctor = nullptr, *CopyCtor = nullptr, *Dtor = nullptr; 2384 auto Init = VD->getAnyInitializer(); 2385 if (CGM.getLangOpts().CPlusPlus && PerformInit) { 2386 // Generate function that re-emits the declaration's initializer into the 2387 // threadprivate copy of the variable VD 2388 CodeGenFunction CtorCGF(CGM); 2389 FunctionArgList Args; 2390 ImplicitParamDecl Dst(CGM.getContext(), /*DC=*/nullptr, Loc, 2391 /*Id=*/nullptr, CGM.getContext().VoidPtrTy, 2392 ImplicitParamDecl::Other); 2393 Args.push_back(&Dst); 2394 2395 auto &FI = CGM.getTypes().arrangeBuiltinFunctionDeclaration( 2396 CGM.getContext().VoidPtrTy, Args); 2397 auto FTy = CGM.getTypes().GetFunctionType(FI); 2398 auto Fn = CGM.CreateGlobalInitOrDestructFunction( 2399 FTy, ".__kmpc_global_ctor_.", FI, Loc); 2400 CtorCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidPtrTy, Fn, FI, 2401 Args, Loc, Loc); 2402 auto ArgVal = CtorCGF.EmitLoadOfScalar( 2403 CtorCGF.GetAddrOfLocalVar(&Dst), /*Volatile=*/false, 2404 CGM.getContext().VoidPtrTy, Dst.getLocation()); 2405 Address Arg = Address(ArgVal, VDAddr.getAlignment()); 2406 Arg = CtorCGF.Builder.CreateElementBitCast( 2407 Arg, CtorCGF.ConvertTypeForMem(ASTTy)); 2408 CtorCGF.EmitAnyExprToMem(Init, Arg, Init->getType().getQualifiers(), 2409 /*IsInitializer=*/true); 2410 ArgVal = CtorCGF.EmitLoadOfScalar( 2411 CtorCGF.GetAddrOfLocalVar(&Dst), /*Volatile=*/false, 2412 CGM.getContext().VoidPtrTy, Dst.getLocation()); 2413 CtorCGF.Builder.CreateStore(ArgVal, CtorCGF.ReturnValue); 2414 CtorCGF.FinishFunction(); 2415 Ctor = Fn; 2416 } 2417 if (VD->getType().isDestructedType() != QualType::DK_none) { 2418 // Generate function that emits destructor call for the threadprivate copy 2419 // of the variable VD 2420 CodeGenFunction DtorCGF(CGM); 2421 FunctionArgList Args; 2422 ImplicitParamDecl Dst(CGM.getContext(), /*DC=*/nullptr, Loc, 2423 /*Id=*/nullptr, CGM.getContext().VoidPtrTy, 2424 ImplicitParamDecl::Other); 2425 Args.push_back(&Dst); 2426 2427 auto &FI = CGM.getTypes().arrangeBuiltinFunctionDeclaration( 2428 CGM.getContext().VoidTy, Args); 2429 auto FTy = CGM.getTypes().GetFunctionType(FI); 2430 auto Fn = CGM.CreateGlobalInitOrDestructFunction( 2431 FTy, ".__kmpc_global_dtor_.", FI, Loc); 2432 auto NL = ApplyDebugLocation::CreateEmpty(DtorCGF); 2433 DtorCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, Fn, FI, Args, 2434 Loc, Loc); 2435 // Create a scope with an artificial location for the body of this function. 2436 auto AL = ApplyDebugLocation::CreateArtificial(DtorCGF); 2437 auto ArgVal = DtorCGF.EmitLoadOfScalar( 2438 DtorCGF.GetAddrOfLocalVar(&Dst), 2439 /*Volatile=*/false, CGM.getContext().VoidPtrTy, Dst.getLocation()); 2440 DtorCGF.emitDestroy(Address(ArgVal, VDAddr.getAlignment()), ASTTy, 2441 DtorCGF.getDestroyer(ASTTy.isDestructedType()), 2442 DtorCGF.needsEHCleanup(ASTTy.isDestructedType())); 2443 DtorCGF.FinishFunction(); 2444 Dtor = Fn; 2445 } 2446 // Do not emit init function if it is not required. 2447 if (!Ctor && !Dtor) 2448 return nullptr; 2449 2450 llvm::Type *CopyCtorTyArgs[] = {CGM.VoidPtrTy, CGM.VoidPtrTy}; 2451 auto CopyCtorTy = 2452 llvm::FunctionType::get(CGM.VoidPtrTy, CopyCtorTyArgs, 2453 /*isVarArg=*/false)->getPointerTo(); 2454 // Copying constructor for the threadprivate variable. 2455 // Must be NULL - reserved by runtime, but currently it requires that this 2456 // parameter is always NULL. Otherwise it fires assertion. 2457 CopyCtor = llvm::Constant::getNullValue(CopyCtorTy); 2458 if (Ctor == nullptr) { 2459 auto CtorTy = llvm::FunctionType::get(CGM.VoidPtrTy, CGM.VoidPtrTy, 2460 /*isVarArg=*/false)->getPointerTo(); 2461 Ctor = llvm::Constant::getNullValue(CtorTy); 2462 } 2463 if (Dtor == nullptr) { 2464 auto DtorTy = llvm::FunctionType::get(CGM.VoidTy, CGM.VoidPtrTy, 2465 /*isVarArg=*/false)->getPointerTo(); 2466 Dtor = llvm::Constant::getNullValue(DtorTy); 2467 } 2468 if (!CGF) { 2469 auto InitFunctionTy = 2470 llvm::FunctionType::get(CGM.VoidTy, /*isVarArg*/ false); 2471 auto InitFunction = CGM.CreateGlobalInitOrDestructFunction( 2472 InitFunctionTy, ".__omp_threadprivate_init_.", 2473 CGM.getTypes().arrangeNullaryFunction()); 2474 CodeGenFunction InitCGF(CGM); 2475 FunctionArgList ArgList; 2476 InitCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, InitFunction, 2477 CGM.getTypes().arrangeNullaryFunction(), ArgList, 2478 Loc, Loc); 2479 emitThreadPrivateVarInit(InitCGF, VDAddr, Ctor, CopyCtor, Dtor, Loc); 2480 InitCGF.FinishFunction(); 2481 return InitFunction; 2482 } 2483 emitThreadPrivateVarInit(*CGF, VDAddr, Ctor, CopyCtor, Dtor, Loc); 2484 } 2485 return nullptr; 2486 } 2487 2488 Address CGOpenMPRuntime::getAddrOfArtificialThreadPrivate(CodeGenFunction &CGF, 2489 QualType VarType, 2490 StringRef Name) { 2491 llvm::Twine VarName(Name, ".artificial."); 2492 llvm::Type *VarLVType = CGF.ConvertTypeForMem(VarType); 2493 llvm::Value *GAddr = getOrCreateInternalVariable(VarLVType, VarName); 2494 llvm::Value *Args[] = { 2495 emitUpdateLocation(CGF, SourceLocation()), 2496 getThreadID(CGF, SourceLocation()), 2497 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(GAddr, CGM.VoidPtrTy), 2498 CGF.Builder.CreateIntCast(CGF.getTypeSize(VarType), CGM.SizeTy, 2499 /*IsSigned=*/false), 2500 getOrCreateInternalVariable(CGM.VoidPtrPtrTy, VarName + ".cache.")}; 2501 return Address( 2502 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 2503 CGF.EmitRuntimeCall( 2504 createRuntimeFunction(OMPRTL__kmpc_threadprivate_cached), Args), 2505 VarLVType->getPointerTo(/*AddrSpace=*/0)), 2506 CGM.getPointerAlign()); 2507 } 2508 2509 /// \brief Emits code for OpenMP 'if' clause using specified \a CodeGen 2510 /// function. Here is the logic: 2511 /// if (Cond) { 2512 /// ThenGen(); 2513 /// } else { 2514 /// ElseGen(); 2515 /// } 2516 void CGOpenMPRuntime::emitOMPIfClause(CodeGenFunction &CGF, const Expr *Cond, 2517 const RegionCodeGenTy &ThenGen, 2518 const RegionCodeGenTy &ElseGen) { 2519 CodeGenFunction::LexicalScope ConditionScope(CGF, Cond->getSourceRange()); 2520 2521 // If the condition constant folds and can be elided, try to avoid emitting 2522 // the condition and the dead arm of the if/else. 2523 bool CondConstant; 2524 if (CGF.ConstantFoldsToSimpleInteger(Cond, CondConstant)) { 2525 if (CondConstant) 2526 ThenGen(CGF); 2527 else 2528 ElseGen(CGF); 2529 return; 2530 } 2531 2532 // Otherwise, the condition did not fold, or we couldn't elide it. Just 2533 // emit the conditional branch. 2534 auto ThenBlock = CGF.createBasicBlock("omp_if.then"); 2535 auto ElseBlock = CGF.createBasicBlock("omp_if.else"); 2536 auto ContBlock = CGF.createBasicBlock("omp_if.end"); 2537 CGF.EmitBranchOnBoolExpr(Cond, ThenBlock, ElseBlock, /*TrueCount=*/0); 2538 2539 // Emit the 'then' code. 2540 CGF.EmitBlock(ThenBlock); 2541 ThenGen(CGF); 2542 CGF.EmitBranch(ContBlock); 2543 // Emit the 'else' code if present. 2544 // There is no need to emit line number for unconditional branch. 2545 (void)ApplyDebugLocation::CreateEmpty(CGF); 2546 CGF.EmitBlock(ElseBlock); 2547 ElseGen(CGF); 2548 // There is no need to emit line number for unconditional branch. 2549 (void)ApplyDebugLocation::CreateEmpty(CGF); 2550 CGF.EmitBranch(ContBlock); 2551 // Emit the continuation block for code after the if. 2552 CGF.EmitBlock(ContBlock, /*IsFinished=*/true); 2553 } 2554 2555 void CGOpenMPRuntime::emitParallelCall(CodeGenFunction &CGF, SourceLocation Loc, 2556 llvm::Value *OutlinedFn, 2557 ArrayRef<llvm::Value *> CapturedVars, 2558 const Expr *IfCond) { 2559 if (!CGF.HaveInsertPoint()) 2560 return; 2561 auto *RTLoc = emitUpdateLocation(CGF, Loc); 2562 auto &&ThenGen = [OutlinedFn, CapturedVars, RTLoc](CodeGenFunction &CGF, 2563 PrePostActionTy &) { 2564 // Build call __kmpc_fork_call(loc, n, microtask, var1, .., varn); 2565 auto &RT = CGF.CGM.getOpenMPRuntime(); 2566 llvm::Value *Args[] = { 2567 RTLoc, 2568 CGF.Builder.getInt32(CapturedVars.size()), // Number of captured vars 2569 CGF.Builder.CreateBitCast(OutlinedFn, RT.getKmpc_MicroPointerTy())}; 2570 llvm::SmallVector<llvm::Value *, 16> RealArgs; 2571 RealArgs.append(std::begin(Args), std::end(Args)); 2572 RealArgs.append(CapturedVars.begin(), CapturedVars.end()); 2573 2574 auto RTLFn = RT.createRuntimeFunction(OMPRTL__kmpc_fork_call); 2575 CGF.EmitRuntimeCall(RTLFn, RealArgs); 2576 }; 2577 auto &&ElseGen = [OutlinedFn, CapturedVars, RTLoc, Loc](CodeGenFunction &CGF, 2578 PrePostActionTy &) { 2579 auto &RT = CGF.CGM.getOpenMPRuntime(); 2580 auto ThreadID = RT.getThreadID(CGF, Loc); 2581 // Build calls: 2582 // __kmpc_serialized_parallel(&Loc, GTid); 2583 llvm::Value *Args[] = {RTLoc, ThreadID}; 2584 CGF.EmitRuntimeCall( 2585 RT.createRuntimeFunction(OMPRTL__kmpc_serialized_parallel), Args); 2586 2587 // OutlinedFn(>id, &zero, CapturedStruct); 2588 auto ThreadIDAddr = RT.emitThreadIDAddress(CGF, Loc); 2589 Address ZeroAddr = 2590 CGF.CreateTempAlloca(CGF.Int32Ty, CharUnits::fromQuantity(4), 2591 /*Name*/ ".zero.addr"); 2592 CGF.InitTempAlloca(ZeroAddr, CGF.Builder.getInt32(/*C*/ 0)); 2593 llvm::SmallVector<llvm::Value *, 16> OutlinedFnArgs; 2594 OutlinedFnArgs.push_back(ThreadIDAddr.getPointer()); 2595 OutlinedFnArgs.push_back(ZeroAddr.getPointer()); 2596 OutlinedFnArgs.append(CapturedVars.begin(), CapturedVars.end()); 2597 RT.emitOutlinedFunctionCall(CGF, Loc, OutlinedFn, OutlinedFnArgs); 2598 2599 // __kmpc_end_serialized_parallel(&Loc, GTid); 2600 llvm::Value *EndArgs[] = {RT.emitUpdateLocation(CGF, Loc), ThreadID}; 2601 CGF.EmitRuntimeCall( 2602 RT.createRuntimeFunction(OMPRTL__kmpc_end_serialized_parallel), 2603 EndArgs); 2604 }; 2605 if (IfCond) 2606 emitOMPIfClause(CGF, IfCond, ThenGen, ElseGen); 2607 else { 2608 RegionCodeGenTy ThenRCG(ThenGen); 2609 ThenRCG(CGF); 2610 } 2611 } 2612 2613 // If we're inside an (outlined) parallel region, use the region info's 2614 // thread-ID variable (it is passed in a first argument of the outlined function 2615 // as "kmp_int32 *gtid"). Otherwise, if we're not inside parallel region, but in 2616 // regular serial code region, get thread ID by calling kmp_int32 2617 // kmpc_global_thread_num(ident_t *loc), stash this thread ID in a temporary and 2618 // return the address of that temp. 2619 Address CGOpenMPRuntime::emitThreadIDAddress(CodeGenFunction &CGF, 2620 SourceLocation Loc) { 2621 if (auto *OMPRegionInfo = 2622 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) 2623 if (OMPRegionInfo->getThreadIDVariable()) 2624 return OMPRegionInfo->getThreadIDVariableLValue(CGF).getAddress(); 2625 2626 auto ThreadID = getThreadID(CGF, Loc); 2627 auto Int32Ty = 2628 CGF.getContext().getIntTypeForBitwidth(/*DestWidth*/ 32, /*Signed*/ true); 2629 auto ThreadIDTemp = CGF.CreateMemTemp(Int32Ty, /*Name*/ ".threadid_temp."); 2630 CGF.EmitStoreOfScalar(ThreadID, 2631 CGF.MakeAddrLValue(ThreadIDTemp, Int32Ty)); 2632 2633 return ThreadIDTemp; 2634 } 2635 2636 llvm::Constant * 2637 CGOpenMPRuntime::getOrCreateInternalVariable(llvm::Type *Ty, 2638 const llvm::Twine &Name) { 2639 SmallString<256> Buffer; 2640 llvm::raw_svector_ostream Out(Buffer); 2641 Out << Name; 2642 auto RuntimeName = Out.str(); 2643 auto &Elem = *InternalVars.insert(std::make_pair(RuntimeName, nullptr)).first; 2644 if (Elem.second) { 2645 assert(Elem.second->getType()->getPointerElementType() == Ty && 2646 "OMP internal variable has different type than requested"); 2647 return &*Elem.second; 2648 } 2649 2650 return Elem.second = new llvm::GlobalVariable( 2651 CGM.getModule(), Ty, /*IsConstant*/ false, 2652 llvm::GlobalValue::CommonLinkage, llvm::Constant::getNullValue(Ty), 2653 Elem.first()); 2654 } 2655 2656 llvm::Value *CGOpenMPRuntime::getCriticalRegionLock(StringRef CriticalName) { 2657 llvm::Twine Name(".gomp_critical_user_", CriticalName); 2658 return getOrCreateInternalVariable(KmpCriticalNameTy, Name.concat(".var")); 2659 } 2660 2661 namespace { 2662 /// Common pre(post)-action for different OpenMP constructs. 2663 class CommonActionTy final : public PrePostActionTy { 2664 llvm::Value *EnterCallee; 2665 ArrayRef<llvm::Value *> EnterArgs; 2666 llvm::Value *ExitCallee; 2667 ArrayRef<llvm::Value *> ExitArgs; 2668 bool Conditional; 2669 llvm::BasicBlock *ContBlock = nullptr; 2670 2671 public: 2672 CommonActionTy(llvm::Value *EnterCallee, ArrayRef<llvm::Value *> EnterArgs, 2673 llvm::Value *ExitCallee, ArrayRef<llvm::Value *> ExitArgs, 2674 bool Conditional = false) 2675 : EnterCallee(EnterCallee), EnterArgs(EnterArgs), ExitCallee(ExitCallee), 2676 ExitArgs(ExitArgs), Conditional(Conditional) {} 2677 void Enter(CodeGenFunction &CGF) override { 2678 llvm::Value *EnterRes = CGF.EmitRuntimeCall(EnterCallee, EnterArgs); 2679 if (Conditional) { 2680 llvm::Value *CallBool = CGF.Builder.CreateIsNotNull(EnterRes); 2681 auto *ThenBlock = CGF.createBasicBlock("omp_if.then"); 2682 ContBlock = CGF.createBasicBlock("omp_if.end"); 2683 // Generate the branch (If-stmt) 2684 CGF.Builder.CreateCondBr(CallBool, ThenBlock, ContBlock); 2685 CGF.EmitBlock(ThenBlock); 2686 } 2687 } 2688 void Done(CodeGenFunction &CGF) { 2689 // Emit the rest of blocks/branches 2690 CGF.EmitBranch(ContBlock); 2691 CGF.EmitBlock(ContBlock, true); 2692 } 2693 void Exit(CodeGenFunction &CGF) override { 2694 CGF.EmitRuntimeCall(ExitCallee, ExitArgs); 2695 } 2696 }; 2697 } // anonymous namespace 2698 2699 void CGOpenMPRuntime::emitCriticalRegion(CodeGenFunction &CGF, 2700 StringRef CriticalName, 2701 const RegionCodeGenTy &CriticalOpGen, 2702 SourceLocation Loc, const Expr *Hint) { 2703 // __kmpc_critical[_with_hint](ident_t *, gtid, Lock[, hint]); 2704 // CriticalOpGen(); 2705 // __kmpc_end_critical(ident_t *, gtid, Lock); 2706 // Prepare arguments and build a call to __kmpc_critical 2707 if (!CGF.HaveInsertPoint()) 2708 return; 2709 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc), 2710 getCriticalRegionLock(CriticalName)}; 2711 llvm::SmallVector<llvm::Value *, 4> EnterArgs(std::begin(Args), 2712 std::end(Args)); 2713 if (Hint) { 2714 EnterArgs.push_back(CGF.Builder.CreateIntCast( 2715 CGF.EmitScalarExpr(Hint), CGM.IntPtrTy, /*isSigned=*/false)); 2716 } 2717 CommonActionTy Action( 2718 createRuntimeFunction(Hint ? OMPRTL__kmpc_critical_with_hint 2719 : OMPRTL__kmpc_critical), 2720 EnterArgs, createRuntimeFunction(OMPRTL__kmpc_end_critical), Args); 2721 CriticalOpGen.setAction(Action); 2722 emitInlinedDirective(CGF, OMPD_critical, CriticalOpGen); 2723 } 2724 2725 void CGOpenMPRuntime::emitMasterRegion(CodeGenFunction &CGF, 2726 const RegionCodeGenTy &MasterOpGen, 2727 SourceLocation Loc) { 2728 if (!CGF.HaveInsertPoint()) 2729 return; 2730 // if(__kmpc_master(ident_t *, gtid)) { 2731 // MasterOpGen(); 2732 // __kmpc_end_master(ident_t *, gtid); 2733 // } 2734 // Prepare arguments and build a call to __kmpc_master 2735 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)}; 2736 CommonActionTy Action(createRuntimeFunction(OMPRTL__kmpc_master), Args, 2737 createRuntimeFunction(OMPRTL__kmpc_end_master), Args, 2738 /*Conditional=*/true); 2739 MasterOpGen.setAction(Action); 2740 emitInlinedDirective(CGF, OMPD_master, MasterOpGen); 2741 Action.Done(CGF); 2742 } 2743 2744 void CGOpenMPRuntime::emitTaskyieldCall(CodeGenFunction &CGF, 2745 SourceLocation Loc) { 2746 if (!CGF.HaveInsertPoint()) 2747 return; 2748 // Build call __kmpc_omp_taskyield(loc, thread_id, 0); 2749 llvm::Value *Args[] = { 2750 emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc), 2751 llvm::ConstantInt::get(CGM.IntTy, /*V=*/0, /*isSigned=*/true)}; 2752 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_omp_taskyield), Args); 2753 if (auto *Region = dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) 2754 Region->emitUntiedSwitch(CGF); 2755 } 2756 2757 void CGOpenMPRuntime::emitTaskgroupRegion(CodeGenFunction &CGF, 2758 const RegionCodeGenTy &TaskgroupOpGen, 2759 SourceLocation Loc) { 2760 if (!CGF.HaveInsertPoint()) 2761 return; 2762 // __kmpc_taskgroup(ident_t *, gtid); 2763 // TaskgroupOpGen(); 2764 // __kmpc_end_taskgroup(ident_t *, gtid); 2765 // Prepare arguments and build a call to __kmpc_taskgroup 2766 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)}; 2767 CommonActionTy Action(createRuntimeFunction(OMPRTL__kmpc_taskgroup), Args, 2768 createRuntimeFunction(OMPRTL__kmpc_end_taskgroup), 2769 Args); 2770 TaskgroupOpGen.setAction(Action); 2771 emitInlinedDirective(CGF, OMPD_taskgroup, TaskgroupOpGen); 2772 } 2773 2774 /// Given an array of pointers to variables, project the address of a 2775 /// given variable. 2776 static Address emitAddrOfVarFromArray(CodeGenFunction &CGF, Address Array, 2777 unsigned Index, const VarDecl *Var) { 2778 // Pull out the pointer to the variable. 2779 Address PtrAddr = 2780 CGF.Builder.CreateConstArrayGEP(Array, Index, CGF.getPointerSize()); 2781 llvm::Value *Ptr = CGF.Builder.CreateLoad(PtrAddr); 2782 2783 Address Addr = Address(Ptr, CGF.getContext().getDeclAlign(Var)); 2784 Addr = CGF.Builder.CreateElementBitCast( 2785 Addr, CGF.ConvertTypeForMem(Var->getType())); 2786 return Addr; 2787 } 2788 2789 static llvm::Value *emitCopyprivateCopyFunction( 2790 CodeGenModule &CGM, llvm::Type *ArgsType, 2791 ArrayRef<const Expr *> CopyprivateVars, ArrayRef<const Expr *> DestExprs, 2792 ArrayRef<const Expr *> SrcExprs, ArrayRef<const Expr *> AssignmentOps, 2793 SourceLocation Loc) { 2794 auto &C = CGM.getContext(); 2795 // void copy_func(void *LHSArg, void *RHSArg); 2796 FunctionArgList Args; 2797 ImplicitParamDecl LHSArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy, 2798 ImplicitParamDecl::Other); 2799 ImplicitParamDecl RHSArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy, 2800 ImplicitParamDecl::Other); 2801 Args.push_back(&LHSArg); 2802 Args.push_back(&RHSArg); 2803 auto &CGFI = CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args); 2804 auto *Fn = llvm::Function::Create( 2805 CGM.getTypes().GetFunctionType(CGFI), llvm::GlobalValue::InternalLinkage, 2806 ".omp.copyprivate.copy_func", &CGM.getModule()); 2807 CGM.SetInternalFunctionAttributes(/*D=*/nullptr, Fn, CGFI); 2808 CodeGenFunction CGF(CGM); 2809 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, CGFI, Args, Loc, Loc); 2810 // Dest = (void*[n])(LHSArg); 2811 // Src = (void*[n])(RHSArg); 2812 Address LHS(CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 2813 CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(&LHSArg)), 2814 ArgsType), CGF.getPointerAlign()); 2815 Address RHS(CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 2816 CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(&RHSArg)), 2817 ArgsType), CGF.getPointerAlign()); 2818 // *(Type0*)Dst[0] = *(Type0*)Src[0]; 2819 // *(Type1*)Dst[1] = *(Type1*)Src[1]; 2820 // ... 2821 // *(Typen*)Dst[n] = *(Typen*)Src[n]; 2822 for (unsigned I = 0, E = AssignmentOps.size(); I < E; ++I) { 2823 auto DestVar = cast<VarDecl>(cast<DeclRefExpr>(DestExprs[I])->getDecl()); 2824 Address DestAddr = emitAddrOfVarFromArray(CGF, LHS, I, DestVar); 2825 2826 auto SrcVar = cast<VarDecl>(cast<DeclRefExpr>(SrcExprs[I])->getDecl()); 2827 Address SrcAddr = emitAddrOfVarFromArray(CGF, RHS, I, SrcVar); 2828 2829 auto *VD = cast<DeclRefExpr>(CopyprivateVars[I])->getDecl(); 2830 QualType Type = VD->getType(); 2831 CGF.EmitOMPCopy(Type, DestAddr, SrcAddr, DestVar, SrcVar, AssignmentOps[I]); 2832 } 2833 CGF.FinishFunction(); 2834 return Fn; 2835 } 2836 2837 void CGOpenMPRuntime::emitSingleRegion(CodeGenFunction &CGF, 2838 const RegionCodeGenTy &SingleOpGen, 2839 SourceLocation Loc, 2840 ArrayRef<const Expr *> CopyprivateVars, 2841 ArrayRef<const Expr *> SrcExprs, 2842 ArrayRef<const Expr *> DstExprs, 2843 ArrayRef<const Expr *> AssignmentOps) { 2844 if (!CGF.HaveInsertPoint()) 2845 return; 2846 assert(CopyprivateVars.size() == SrcExprs.size() && 2847 CopyprivateVars.size() == DstExprs.size() && 2848 CopyprivateVars.size() == AssignmentOps.size()); 2849 auto &C = CGM.getContext(); 2850 // int32 did_it = 0; 2851 // if(__kmpc_single(ident_t *, gtid)) { 2852 // SingleOpGen(); 2853 // __kmpc_end_single(ident_t *, gtid); 2854 // did_it = 1; 2855 // } 2856 // call __kmpc_copyprivate(ident_t *, gtid, <buf_size>, <copyprivate list>, 2857 // <copy_func>, did_it); 2858 2859 Address DidIt = Address::invalid(); 2860 if (!CopyprivateVars.empty()) { 2861 // int32 did_it = 0; 2862 auto KmpInt32Ty = C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/1); 2863 DidIt = CGF.CreateMemTemp(KmpInt32Ty, ".omp.copyprivate.did_it"); 2864 CGF.Builder.CreateStore(CGF.Builder.getInt32(0), DidIt); 2865 } 2866 // Prepare arguments and build a call to __kmpc_single 2867 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)}; 2868 CommonActionTy Action(createRuntimeFunction(OMPRTL__kmpc_single), Args, 2869 createRuntimeFunction(OMPRTL__kmpc_end_single), Args, 2870 /*Conditional=*/true); 2871 SingleOpGen.setAction(Action); 2872 emitInlinedDirective(CGF, OMPD_single, SingleOpGen); 2873 if (DidIt.isValid()) { 2874 // did_it = 1; 2875 CGF.Builder.CreateStore(CGF.Builder.getInt32(1), DidIt); 2876 } 2877 Action.Done(CGF); 2878 // call __kmpc_copyprivate(ident_t *, gtid, <buf_size>, <copyprivate list>, 2879 // <copy_func>, did_it); 2880 if (DidIt.isValid()) { 2881 llvm::APInt ArraySize(/*unsigned int numBits=*/32, CopyprivateVars.size()); 2882 auto CopyprivateArrayTy = 2883 C.getConstantArrayType(C.VoidPtrTy, ArraySize, ArrayType::Normal, 2884 /*IndexTypeQuals=*/0); 2885 // Create a list of all private variables for copyprivate. 2886 Address CopyprivateList = 2887 CGF.CreateMemTemp(CopyprivateArrayTy, ".omp.copyprivate.cpr_list"); 2888 for (unsigned I = 0, E = CopyprivateVars.size(); I < E; ++I) { 2889 Address Elem = CGF.Builder.CreateConstArrayGEP( 2890 CopyprivateList, I, CGF.getPointerSize()); 2891 CGF.Builder.CreateStore( 2892 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 2893 CGF.EmitLValue(CopyprivateVars[I]).getPointer(), CGF.VoidPtrTy), 2894 Elem); 2895 } 2896 // Build function that copies private values from single region to all other 2897 // threads in the corresponding parallel region. 2898 auto *CpyFn = emitCopyprivateCopyFunction( 2899 CGM, CGF.ConvertTypeForMem(CopyprivateArrayTy)->getPointerTo(), 2900 CopyprivateVars, SrcExprs, DstExprs, AssignmentOps, Loc); 2901 auto *BufSize = CGF.getTypeSize(CopyprivateArrayTy); 2902 Address CL = 2903 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(CopyprivateList, 2904 CGF.VoidPtrTy); 2905 auto *DidItVal = CGF.Builder.CreateLoad(DidIt); 2906 llvm::Value *Args[] = { 2907 emitUpdateLocation(CGF, Loc), // ident_t *<loc> 2908 getThreadID(CGF, Loc), // i32 <gtid> 2909 BufSize, // size_t <buf_size> 2910 CL.getPointer(), // void *<copyprivate list> 2911 CpyFn, // void (*) (void *, void *) <copy_func> 2912 DidItVal // i32 did_it 2913 }; 2914 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_copyprivate), Args); 2915 } 2916 } 2917 2918 void CGOpenMPRuntime::emitOrderedRegion(CodeGenFunction &CGF, 2919 const RegionCodeGenTy &OrderedOpGen, 2920 SourceLocation Loc, bool IsThreads) { 2921 if (!CGF.HaveInsertPoint()) 2922 return; 2923 // __kmpc_ordered(ident_t *, gtid); 2924 // OrderedOpGen(); 2925 // __kmpc_end_ordered(ident_t *, gtid); 2926 // Prepare arguments and build a call to __kmpc_ordered 2927 if (IsThreads) { 2928 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)}; 2929 CommonActionTy Action(createRuntimeFunction(OMPRTL__kmpc_ordered), Args, 2930 createRuntimeFunction(OMPRTL__kmpc_end_ordered), 2931 Args); 2932 OrderedOpGen.setAction(Action); 2933 emitInlinedDirective(CGF, OMPD_ordered, OrderedOpGen); 2934 return; 2935 } 2936 emitInlinedDirective(CGF, OMPD_ordered, OrderedOpGen); 2937 } 2938 2939 void CGOpenMPRuntime::emitBarrierCall(CodeGenFunction &CGF, SourceLocation Loc, 2940 OpenMPDirectiveKind Kind, bool EmitChecks, 2941 bool ForceSimpleCall) { 2942 if (!CGF.HaveInsertPoint()) 2943 return; 2944 // Build call __kmpc_cancel_barrier(loc, thread_id); 2945 // Build call __kmpc_barrier(loc, thread_id); 2946 unsigned Flags; 2947 if (Kind == OMPD_for) 2948 Flags = OMP_IDENT_BARRIER_IMPL_FOR; 2949 else if (Kind == OMPD_sections) 2950 Flags = OMP_IDENT_BARRIER_IMPL_SECTIONS; 2951 else if (Kind == OMPD_single) 2952 Flags = OMP_IDENT_BARRIER_IMPL_SINGLE; 2953 else if (Kind == OMPD_barrier) 2954 Flags = OMP_IDENT_BARRIER_EXPL; 2955 else 2956 Flags = OMP_IDENT_BARRIER_IMPL; 2957 // Build call __kmpc_cancel_barrier(loc, thread_id) or __kmpc_barrier(loc, 2958 // thread_id); 2959 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc, Flags), 2960 getThreadID(CGF, Loc)}; 2961 if (auto *OMPRegionInfo = 2962 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) { 2963 if (!ForceSimpleCall && OMPRegionInfo->hasCancel()) { 2964 auto *Result = CGF.EmitRuntimeCall( 2965 createRuntimeFunction(OMPRTL__kmpc_cancel_barrier), Args); 2966 if (EmitChecks) { 2967 // if (__kmpc_cancel_barrier()) { 2968 // exit from construct; 2969 // } 2970 auto *ExitBB = CGF.createBasicBlock(".cancel.exit"); 2971 auto *ContBB = CGF.createBasicBlock(".cancel.continue"); 2972 auto *Cmp = CGF.Builder.CreateIsNotNull(Result); 2973 CGF.Builder.CreateCondBr(Cmp, ExitBB, ContBB); 2974 CGF.EmitBlock(ExitBB); 2975 // exit from construct; 2976 auto CancelDestination = 2977 CGF.getOMPCancelDestination(OMPRegionInfo->getDirectiveKind()); 2978 CGF.EmitBranchThroughCleanup(CancelDestination); 2979 CGF.EmitBlock(ContBB, /*IsFinished=*/true); 2980 } 2981 return; 2982 } 2983 } 2984 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_barrier), Args); 2985 } 2986 2987 /// \brief Map the OpenMP loop schedule to the runtime enumeration. 2988 static OpenMPSchedType getRuntimeSchedule(OpenMPScheduleClauseKind ScheduleKind, 2989 bool Chunked, bool Ordered) { 2990 switch (ScheduleKind) { 2991 case OMPC_SCHEDULE_static: 2992 return Chunked ? (Ordered ? OMP_ord_static_chunked : OMP_sch_static_chunked) 2993 : (Ordered ? OMP_ord_static : OMP_sch_static); 2994 case OMPC_SCHEDULE_dynamic: 2995 return Ordered ? OMP_ord_dynamic_chunked : OMP_sch_dynamic_chunked; 2996 case OMPC_SCHEDULE_guided: 2997 return Ordered ? OMP_ord_guided_chunked : OMP_sch_guided_chunked; 2998 case OMPC_SCHEDULE_runtime: 2999 return Ordered ? OMP_ord_runtime : OMP_sch_runtime; 3000 case OMPC_SCHEDULE_auto: 3001 return Ordered ? OMP_ord_auto : OMP_sch_auto; 3002 case OMPC_SCHEDULE_unknown: 3003 assert(!Chunked && "chunk was specified but schedule kind not known"); 3004 return Ordered ? OMP_ord_static : OMP_sch_static; 3005 } 3006 llvm_unreachable("Unexpected runtime schedule"); 3007 } 3008 3009 /// \brief Map the OpenMP distribute schedule to the runtime enumeration. 3010 static OpenMPSchedType 3011 getRuntimeSchedule(OpenMPDistScheduleClauseKind ScheduleKind, bool Chunked) { 3012 // only static is allowed for dist_schedule 3013 return Chunked ? OMP_dist_sch_static_chunked : OMP_dist_sch_static; 3014 } 3015 3016 bool CGOpenMPRuntime::isStaticNonchunked(OpenMPScheduleClauseKind ScheduleKind, 3017 bool Chunked) const { 3018 auto Schedule = getRuntimeSchedule(ScheduleKind, Chunked, /*Ordered=*/false); 3019 return Schedule == OMP_sch_static; 3020 } 3021 3022 bool CGOpenMPRuntime::isStaticNonchunked( 3023 OpenMPDistScheduleClauseKind ScheduleKind, bool Chunked) const { 3024 auto Schedule = getRuntimeSchedule(ScheduleKind, Chunked); 3025 return Schedule == OMP_dist_sch_static; 3026 } 3027 3028 3029 bool CGOpenMPRuntime::isDynamic(OpenMPScheduleClauseKind ScheduleKind) const { 3030 auto Schedule = 3031 getRuntimeSchedule(ScheduleKind, /*Chunked=*/false, /*Ordered=*/false); 3032 assert(Schedule != OMP_sch_static_chunked && "cannot be chunked here"); 3033 return Schedule != OMP_sch_static; 3034 } 3035 3036 static int addMonoNonMonoModifier(OpenMPSchedType Schedule, 3037 OpenMPScheduleClauseModifier M1, 3038 OpenMPScheduleClauseModifier M2) { 3039 int Modifier = 0; 3040 switch (M1) { 3041 case OMPC_SCHEDULE_MODIFIER_monotonic: 3042 Modifier = OMP_sch_modifier_monotonic; 3043 break; 3044 case OMPC_SCHEDULE_MODIFIER_nonmonotonic: 3045 Modifier = OMP_sch_modifier_nonmonotonic; 3046 break; 3047 case OMPC_SCHEDULE_MODIFIER_simd: 3048 if (Schedule == OMP_sch_static_chunked) 3049 Schedule = OMP_sch_static_balanced_chunked; 3050 break; 3051 case OMPC_SCHEDULE_MODIFIER_last: 3052 case OMPC_SCHEDULE_MODIFIER_unknown: 3053 break; 3054 } 3055 switch (M2) { 3056 case OMPC_SCHEDULE_MODIFIER_monotonic: 3057 Modifier = OMP_sch_modifier_monotonic; 3058 break; 3059 case OMPC_SCHEDULE_MODIFIER_nonmonotonic: 3060 Modifier = OMP_sch_modifier_nonmonotonic; 3061 break; 3062 case OMPC_SCHEDULE_MODIFIER_simd: 3063 if (Schedule == OMP_sch_static_chunked) 3064 Schedule = OMP_sch_static_balanced_chunked; 3065 break; 3066 case OMPC_SCHEDULE_MODIFIER_last: 3067 case OMPC_SCHEDULE_MODIFIER_unknown: 3068 break; 3069 } 3070 return Schedule | Modifier; 3071 } 3072 3073 void CGOpenMPRuntime::emitForDispatchInit( 3074 CodeGenFunction &CGF, SourceLocation Loc, 3075 const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned, 3076 bool Ordered, const DispatchRTInput &DispatchValues) { 3077 if (!CGF.HaveInsertPoint()) 3078 return; 3079 OpenMPSchedType Schedule = getRuntimeSchedule( 3080 ScheduleKind.Schedule, DispatchValues.Chunk != nullptr, Ordered); 3081 assert(Ordered || 3082 (Schedule != OMP_sch_static && Schedule != OMP_sch_static_chunked && 3083 Schedule != OMP_ord_static && Schedule != OMP_ord_static_chunked && 3084 Schedule != OMP_sch_static_balanced_chunked)); 3085 // Call __kmpc_dispatch_init( 3086 // ident_t *loc, kmp_int32 tid, kmp_int32 schedule, 3087 // kmp_int[32|64] lower, kmp_int[32|64] upper, 3088 // kmp_int[32|64] stride, kmp_int[32|64] chunk); 3089 3090 // If the Chunk was not specified in the clause - use default value 1. 3091 llvm::Value *Chunk = DispatchValues.Chunk ? DispatchValues.Chunk 3092 : CGF.Builder.getIntN(IVSize, 1); 3093 llvm::Value *Args[] = { 3094 emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc), 3095 CGF.Builder.getInt32(addMonoNonMonoModifier( 3096 Schedule, ScheduleKind.M1, ScheduleKind.M2)), // Schedule type 3097 DispatchValues.LB, // Lower 3098 DispatchValues.UB, // Upper 3099 CGF.Builder.getIntN(IVSize, 1), // Stride 3100 Chunk // Chunk 3101 }; 3102 CGF.EmitRuntimeCall(createDispatchInitFunction(IVSize, IVSigned), Args); 3103 } 3104 3105 static void emitForStaticInitCall( 3106 CodeGenFunction &CGF, llvm::Value *UpdateLocation, llvm::Value *ThreadId, 3107 llvm::Constant *ForStaticInitFunction, OpenMPSchedType Schedule, 3108 OpenMPScheduleClauseModifier M1, OpenMPScheduleClauseModifier M2, 3109 const CGOpenMPRuntime::StaticRTInput &Values) { 3110 if (!CGF.HaveInsertPoint()) 3111 return; 3112 3113 assert(!Values.Ordered); 3114 assert(Schedule == OMP_sch_static || Schedule == OMP_sch_static_chunked || 3115 Schedule == OMP_sch_static_balanced_chunked || 3116 Schedule == OMP_ord_static || Schedule == OMP_ord_static_chunked || 3117 Schedule == OMP_dist_sch_static || 3118 Schedule == OMP_dist_sch_static_chunked); 3119 3120 // Call __kmpc_for_static_init( 3121 // ident_t *loc, kmp_int32 tid, kmp_int32 schedtype, 3122 // kmp_int32 *p_lastiter, kmp_int[32|64] *p_lower, 3123 // kmp_int[32|64] *p_upper, kmp_int[32|64] *p_stride, 3124 // kmp_int[32|64] incr, kmp_int[32|64] chunk); 3125 llvm::Value *Chunk = Values.Chunk; 3126 if (Chunk == nullptr) { 3127 assert((Schedule == OMP_sch_static || Schedule == OMP_ord_static || 3128 Schedule == OMP_dist_sch_static) && 3129 "expected static non-chunked schedule"); 3130 // If the Chunk was not specified in the clause - use default value 1. 3131 Chunk = CGF.Builder.getIntN(Values.IVSize, 1); 3132 } else { 3133 assert((Schedule == OMP_sch_static_chunked || 3134 Schedule == OMP_sch_static_balanced_chunked || 3135 Schedule == OMP_ord_static_chunked || 3136 Schedule == OMP_dist_sch_static_chunked) && 3137 "expected static chunked schedule"); 3138 } 3139 llvm::Value *Args[] = { 3140 UpdateLocation, 3141 ThreadId, 3142 CGF.Builder.getInt32(addMonoNonMonoModifier(Schedule, M1, 3143 M2)), // Schedule type 3144 Values.IL.getPointer(), // &isLastIter 3145 Values.LB.getPointer(), // &LB 3146 Values.UB.getPointer(), // &UB 3147 Values.ST.getPointer(), // &Stride 3148 CGF.Builder.getIntN(Values.IVSize, 1), // Incr 3149 Chunk // Chunk 3150 }; 3151 CGF.EmitRuntimeCall(ForStaticInitFunction, Args); 3152 } 3153 3154 void CGOpenMPRuntime::emitForStaticInit(CodeGenFunction &CGF, 3155 SourceLocation Loc, 3156 OpenMPDirectiveKind DKind, 3157 const OpenMPScheduleTy &ScheduleKind, 3158 const StaticRTInput &Values) { 3159 OpenMPSchedType ScheduleNum = getRuntimeSchedule( 3160 ScheduleKind.Schedule, Values.Chunk != nullptr, Values.Ordered); 3161 assert(isOpenMPWorksharingDirective(DKind) && 3162 "Expected loop-based or sections-based directive."); 3163 auto *UpdatedLocation = emitUpdateLocation(CGF, Loc, 3164 isOpenMPLoopDirective(DKind) 3165 ? OMP_IDENT_WORK_LOOP 3166 : OMP_IDENT_WORK_SECTIONS); 3167 auto *ThreadId = getThreadID(CGF, Loc); 3168 auto *StaticInitFunction = 3169 createForStaticInitFunction(Values.IVSize, Values.IVSigned); 3170 emitForStaticInitCall(CGF, UpdatedLocation, ThreadId, StaticInitFunction, 3171 ScheduleNum, ScheduleKind.M1, ScheduleKind.M2, Values); 3172 } 3173 3174 void CGOpenMPRuntime::emitDistributeStaticInit( 3175 CodeGenFunction &CGF, SourceLocation Loc, 3176 OpenMPDistScheduleClauseKind SchedKind, 3177 const CGOpenMPRuntime::StaticRTInput &Values) { 3178 OpenMPSchedType ScheduleNum = 3179 getRuntimeSchedule(SchedKind, Values.Chunk != nullptr); 3180 auto *UpdatedLocation = 3181 emitUpdateLocation(CGF, Loc, OMP_IDENT_WORK_DISTRIBUTE); 3182 auto *ThreadId = getThreadID(CGF, Loc); 3183 auto *StaticInitFunction = 3184 createForStaticInitFunction(Values.IVSize, Values.IVSigned); 3185 emitForStaticInitCall(CGF, UpdatedLocation, ThreadId, StaticInitFunction, 3186 ScheduleNum, OMPC_SCHEDULE_MODIFIER_unknown, 3187 OMPC_SCHEDULE_MODIFIER_unknown, Values); 3188 } 3189 3190 void CGOpenMPRuntime::emitForStaticFinish(CodeGenFunction &CGF, 3191 SourceLocation Loc, 3192 OpenMPDirectiveKind DKind) { 3193 if (!CGF.HaveInsertPoint()) 3194 return; 3195 // Call __kmpc_for_static_fini(ident_t *loc, kmp_int32 tid); 3196 llvm::Value *Args[] = { 3197 emitUpdateLocation(CGF, Loc, 3198 isOpenMPDistributeDirective(DKind) 3199 ? OMP_IDENT_WORK_DISTRIBUTE 3200 : isOpenMPLoopDirective(DKind) 3201 ? OMP_IDENT_WORK_LOOP 3202 : OMP_IDENT_WORK_SECTIONS), 3203 getThreadID(CGF, Loc)}; 3204 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_for_static_fini), 3205 Args); 3206 } 3207 3208 void CGOpenMPRuntime::emitForOrderedIterationEnd(CodeGenFunction &CGF, 3209 SourceLocation Loc, 3210 unsigned IVSize, 3211 bool IVSigned) { 3212 if (!CGF.HaveInsertPoint()) 3213 return; 3214 // Call __kmpc_for_dynamic_fini_(4|8)[u](ident_t *loc, kmp_int32 tid); 3215 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)}; 3216 CGF.EmitRuntimeCall(createDispatchFiniFunction(IVSize, IVSigned), Args); 3217 } 3218 3219 llvm::Value *CGOpenMPRuntime::emitForNext(CodeGenFunction &CGF, 3220 SourceLocation Loc, unsigned IVSize, 3221 bool IVSigned, Address IL, 3222 Address LB, Address UB, 3223 Address ST) { 3224 // Call __kmpc_dispatch_next( 3225 // ident_t *loc, kmp_int32 tid, kmp_int32 *p_lastiter, 3226 // kmp_int[32|64] *p_lower, kmp_int[32|64] *p_upper, 3227 // kmp_int[32|64] *p_stride); 3228 llvm::Value *Args[] = { 3229 emitUpdateLocation(CGF, Loc), 3230 getThreadID(CGF, Loc), 3231 IL.getPointer(), // &isLastIter 3232 LB.getPointer(), // &Lower 3233 UB.getPointer(), // &Upper 3234 ST.getPointer() // &Stride 3235 }; 3236 llvm::Value *Call = 3237 CGF.EmitRuntimeCall(createDispatchNextFunction(IVSize, IVSigned), Args); 3238 return CGF.EmitScalarConversion( 3239 Call, CGF.getContext().getIntTypeForBitwidth(32, /* Signed */ true), 3240 CGF.getContext().BoolTy, Loc); 3241 } 3242 3243 void CGOpenMPRuntime::emitNumThreadsClause(CodeGenFunction &CGF, 3244 llvm::Value *NumThreads, 3245 SourceLocation Loc) { 3246 if (!CGF.HaveInsertPoint()) 3247 return; 3248 // Build call __kmpc_push_num_threads(&loc, global_tid, num_threads) 3249 llvm::Value *Args[] = { 3250 emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc), 3251 CGF.Builder.CreateIntCast(NumThreads, CGF.Int32Ty, /*isSigned*/ true)}; 3252 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_push_num_threads), 3253 Args); 3254 } 3255 3256 void CGOpenMPRuntime::emitProcBindClause(CodeGenFunction &CGF, 3257 OpenMPProcBindClauseKind ProcBind, 3258 SourceLocation Loc) { 3259 if (!CGF.HaveInsertPoint()) 3260 return; 3261 // Constants for proc bind value accepted by the runtime. 3262 enum ProcBindTy { 3263 ProcBindFalse = 0, 3264 ProcBindTrue, 3265 ProcBindMaster, 3266 ProcBindClose, 3267 ProcBindSpread, 3268 ProcBindIntel, 3269 ProcBindDefault 3270 } RuntimeProcBind; 3271 switch (ProcBind) { 3272 case OMPC_PROC_BIND_master: 3273 RuntimeProcBind = ProcBindMaster; 3274 break; 3275 case OMPC_PROC_BIND_close: 3276 RuntimeProcBind = ProcBindClose; 3277 break; 3278 case OMPC_PROC_BIND_spread: 3279 RuntimeProcBind = ProcBindSpread; 3280 break; 3281 case OMPC_PROC_BIND_unknown: 3282 llvm_unreachable("Unsupported proc_bind value."); 3283 } 3284 // Build call __kmpc_push_proc_bind(&loc, global_tid, proc_bind) 3285 llvm::Value *Args[] = { 3286 emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc), 3287 llvm::ConstantInt::get(CGM.IntTy, RuntimeProcBind, /*isSigned=*/true)}; 3288 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_push_proc_bind), Args); 3289 } 3290 3291 void CGOpenMPRuntime::emitFlush(CodeGenFunction &CGF, ArrayRef<const Expr *>, 3292 SourceLocation Loc) { 3293 if (!CGF.HaveInsertPoint()) 3294 return; 3295 // Build call void __kmpc_flush(ident_t *loc) 3296 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_flush), 3297 emitUpdateLocation(CGF, Loc)); 3298 } 3299 3300 namespace { 3301 /// \brief Indexes of fields for type kmp_task_t. 3302 enum KmpTaskTFields { 3303 /// \brief List of shared variables. 3304 KmpTaskTShareds, 3305 /// \brief Task routine. 3306 KmpTaskTRoutine, 3307 /// \brief Partition id for the untied tasks. 3308 KmpTaskTPartId, 3309 /// Function with call of destructors for private variables. 3310 Data1, 3311 /// Task priority. 3312 Data2, 3313 /// (Taskloops only) Lower bound. 3314 KmpTaskTLowerBound, 3315 /// (Taskloops only) Upper bound. 3316 KmpTaskTUpperBound, 3317 /// (Taskloops only) Stride. 3318 KmpTaskTStride, 3319 /// (Taskloops only) Is last iteration flag. 3320 KmpTaskTLastIter, 3321 /// (Taskloops only) Reduction data. 3322 KmpTaskTReductions, 3323 }; 3324 } // anonymous namespace 3325 3326 bool CGOpenMPRuntime::OffloadEntriesInfoManagerTy::empty() const { 3327 // FIXME: Add other entries type when they become supported. 3328 return OffloadEntriesTargetRegion.empty(); 3329 } 3330 3331 /// \brief Initialize target region entry. 3332 void CGOpenMPRuntime::OffloadEntriesInfoManagerTy:: 3333 initializeTargetRegionEntryInfo(unsigned DeviceID, unsigned FileID, 3334 StringRef ParentName, unsigned LineNum, 3335 unsigned Order) { 3336 assert(CGM.getLangOpts().OpenMPIsDevice && "Initialization of entries is " 3337 "only required for the device " 3338 "code generation."); 3339 OffloadEntriesTargetRegion[DeviceID][FileID][ParentName][LineNum] = 3340 OffloadEntryInfoTargetRegion(Order, /*Addr=*/nullptr, /*ID=*/nullptr, 3341 /*Flags=*/0); 3342 ++OffloadingEntriesNum; 3343 } 3344 3345 void CGOpenMPRuntime::OffloadEntriesInfoManagerTy:: 3346 registerTargetRegionEntryInfo(unsigned DeviceID, unsigned FileID, 3347 StringRef ParentName, unsigned LineNum, 3348 llvm::Constant *Addr, llvm::Constant *ID, 3349 int32_t Flags) { 3350 // If we are emitting code for a target, the entry is already initialized, 3351 // only has to be registered. 3352 if (CGM.getLangOpts().OpenMPIsDevice) { 3353 assert(hasTargetRegionEntryInfo(DeviceID, FileID, ParentName, LineNum) && 3354 "Entry must exist."); 3355 auto &Entry = 3356 OffloadEntriesTargetRegion[DeviceID][FileID][ParentName][LineNum]; 3357 assert(Entry.isValid() && "Entry not initialized!"); 3358 Entry.setAddress(Addr); 3359 Entry.setID(ID); 3360 Entry.setFlags(Flags); 3361 return; 3362 } else { 3363 OffloadEntryInfoTargetRegion Entry(OffloadingEntriesNum++, Addr, ID, Flags); 3364 OffloadEntriesTargetRegion[DeviceID][FileID][ParentName][LineNum] = Entry; 3365 } 3366 } 3367 3368 bool CGOpenMPRuntime::OffloadEntriesInfoManagerTy::hasTargetRegionEntryInfo( 3369 unsigned DeviceID, unsigned FileID, StringRef ParentName, 3370 unsigned LineNum) const { 3371 auto PerDevice = OffloadEntriesTargetRegion.find(DeviceID); 3372 if (PerDevice == OffloadEntriesTargetRegion.end()) 3373 return false; 3374 auto PerFile = PerDevice->second.find(FileID); 3375 if (PerFile == PerDevice->second.end()) 3376 return false; 3377 auto PerParentName = PerFile->second.find(ParentName); 3378 if (PerParentName == PerFile->second.end()) 3379 return false; 3380 auto PerLine = PerParentName->second.find(LineNum); 3381 if (PerLine == PerParentName->second.end()) 3382 return false; 3383 // Fail if this entry is already registered. 3384 if (PerLine->second.getAddress() || PerLine->second.getID()) 3385 return false; 3386 return true; 3387 } 3388 3389 void CGOpenMPRuntime::OffloadEntriesInfoManagerTy::actOnTargetRegionEntriesInfo( 3390 const OffloadTargetRegionEntryInfoActTy &Action) { 3391 // Scan all target region entries and perform the provided action. 3392 for (auto &D : OffloadEntriesTargetRegion) 3393 for (auto &F : D.second) 3394 for (auto &P : F.second) 3395 for (auto &L : P.second) 3396 Action(D.first, F.first, P.first(), L.first, L.second); 3397 } 3398 3399 /// \brief Create a Ctor/Dtor-like function whose body is emitted through 3400 /// \a Codegen. This is used to emit the two functions that register and 3401 /// unregister the descriptor of the current compilation unit. 3402 static llvm::Function * 3403 createOffloadingBinaryDescriptorFunction(CodeGenModule &CGM, StringRef Name, 3404 const RegionCodeGenTy &Codegen) { 3405 auto &C = CGM.getContext(); 3406 FunctionArgList Args; 3407 ImplicitParamDecl DummyPtr(C, C.VoidPtrTy, ImplicitParamDecl::Other); 3408 Args.push_back(&DummyPtr); 3409 3410 CodeGenFunction CGF(CGM); 3411 // Disable debug info for global (de-)initializer because they are not part of 3412 // some particular construct. 3413 CGF.disableDebugInfo(); 3414 auto &FI = CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args); 3415 auto FTy = CGM.getTypes().GetFunctionType(FI); 3416 auto *Fn = CGM.CreateGlobalInitOrDestructFunction(FTy, Name, FI); 3417 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FI, Args); 3418 Codegen(CGF); 3419 CGF.FinishFunction(); 3420 return Fn; 3421 } 3422 3423 llvm::Function * 3424 CGOpenMPRuntime::createOffloadingBinaryDescriptorRegistration() { 3425 // If we don't have entries or if we are emitting code for the device, we 3426 // don't need to do anything. 3427 if (CGM.getLangOpts().OpenMPIsDevice || OffloadEntriesInfoManager.empty()) 3428 return nullptr; 3429 3430 auto &M = CGM.getModule(); 3431 auto &C = CGM.getContext(); 3432 3433 // Get list of devices we care about 3434 auto &Devices = CGM.getLangOpts().OMPTargetTriples; 3435 3436 // We should be creating an offloading descriptor only if there are devices 3437 // specified. 3438 assert(!Devices.empty() && "No OpenMP offloading devices??"); 3439 3440 // Create the external variables that will point to the begin and end of the 3441 // host entries section. These will be defined by the linker. 3442 auto *OffloadEntryTy = 3443 CGM.getTypes().ConvertTypeForMem(getTgtOffloadEntryQTy()); 3444 llvm::GlobalVariable *HostEntriesBegin = new llvm::GlobalVariable( 3445 M, OffloadEntryTy, /*isConstant=*/true, 3446 llvm::GlobalValue::ExternalLinkage, /*Initializer=*/nullptr, 3447 ".omp_offloading.entries_begin"); 3448 llvm::GlobalVariable *HostEntriesEnd = new llvm::GlobalVariable( 3449 M, OffloadEntryTy, /*isConstant=*/true, 3450 llvm::GlobalValue::ExternalLinkage, /*Initializer=*/nullptr, 3451 ".omp_offloading.entries_end"); 3452 3453 // Create all device images 3454 auto *DeviceImageTy = cast<llvm::StructType>( 3455 CGM.getTypes().ConvertTypeForMem(getTgtDeviceImageQTy())); 3456 ConstantInitBuilder DeviceImagesBuilder(CGM); 3457 auto DeviceImagesEntries = DeviceImagesBuilder.beginArray(DeviceImageTy); 3458 3459 for (unsigned i = 0; i < Devices.size(); ++i) { 3460 StringRef T = Devices[i].getTriple(); 3461 auto *ImgBegin = new llvm::GlobalVariable( 3462 M, CGM.Int8Ty, /*isConstant=*/true, llvm::GlobalValue::ExternalLinkage, 3463 /*Initializer=*/nullptr, 3464 Twine(".omp_offloading.img_start.") + Twine(T)); 3465 auto *ImgEnd = new llvm::GlobalVariable( 3466 M, CGM.Int8Ty, /*isConstant=*/true, llvm::GlobalValue::ExternalLinkage, 3467 /*Initializer=*/nullptr, Twine(".omp_offloading.img_end.") + Twine(T)); 3468 3469 auto Dev = DeviceImagesEntries.beginStruct(DeviceImageTy); 3470 Dev.add(ImgBegin); 3471 Dev.add(ImgEnd); 3472 Dev.add(HostEntriesBegin); 3473 Dev.add(HostEntriesEnd); 3474 Dev.finishAndAddTo(DeviceImagesEntries); 3475 } 3476 3477 // Create device images global array. 3478 llvm::GlobalVariable *DeviceImages = 3479 DeviceImagesEntries.finishAndCreateGlobal(".omp_offloading.device_images", 3480 CGM.getPointerAlign(), 3481 /*isConstant=*/true); 3482 DeviceImages->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 3483 3484 // This is a Zero array to be used in the creation of the constant expressions 3485 llvm::Constant *Index[] = {llvm::Constant::getNullValue(CGM.Int32Ty), 3486 llvm::Constant::getNullValue(CGM.Int32Ty)}; 3487 3488 // Create the target region descriptor. 3489 auto *BinaryDescriptorTy = cast<llvm::StructType>( 3490 CGM.getTypes().ConvertTypeForMem(getTgtBinaryDescriptorQTy())); 3491 ConstantInitBuilder DescBuilder(CGM); 3492 auto DescInit = DescBuilder.beginStruct(BinaryDescriptorTy); 3493 DescInit.addInt(CGM.Int32Ty, Devices.size()); 3494 DescInit.add(llvm::ConstantExpr::getGetElementPtr(DeviceImages->getValueType(), 3495 DeviceImages, 3496 Index)); 3497 DescInit.add(HostEntriesBegin); 3498 DescInit.add(HostEntriesEnd); 3499 3500 auto *Desc = DescInit.finishAndCreateGlobal(".omp_offloading.descriptor", 3501 CGM.getPointerAlign(), 3502 /*isConstant=*/true); 3503 3504 // Emit code to register or unregister the descriptor at execution 3505 // startup or closing, respectively. 3506 3507 // Create a variable to drive the registration and unregistration of the 3508 // descriptor, so we can reuse the logic that emits Ctors and Dtors. 3509 auto *IdentInfo = &C.Idents.get(".omp_offloading.reg_unreg_var"); 3510 ImplicitParamDecl RegUnregVar(C, C.getTranslationUnitDecl(), SourceLocation(), 3511 IdentInfo, C.CharTy, ImplicitParamDecl::Other); 3512 3513 auto *UnRegFn = createOffloadingBinaryDescriptorFunction( 3514 CGM, ".omp_offloading.descriptor_unreg", 3515 [&](CodeGenFunction &CGF, PrePostActionTy &) { 3516 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__tgt_unregister_lib), 3517 Desc); 3518 }); 3519 auto *RegFn = createOffloadingBinaryDescriptorFunction( 3520 CGM, ".omp_offloading.descriptor_reg", 3521 [&](CodeGenFunction &CGF, PrePostActionTy &) { 3522 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__tgt_register_lib), 3523 Desc); 3524 CGM.getCXXABI().registerGlobalDtor(CGF, RegUnregVar, UnRegFn, Desc); 3525 }); 3526 if (CGM.supportsCOMDAT()) { 3527 // It is sufficient to call registration function only once, so create a 3528 // COMDAT group for registration/unregistration functions and associated 3529 // data. That would reduce startup time and code size. Registration 3530 // function serves as a COMDAT group key. 3531 auto ComdatKey = M.getOrInsertComdat(RegFn->getName()); 3532 RegFn->setLinkage(llvm::GlobalValue::LinkOnceAnyLinkage); 3533 RegFn->setVisibility(llvm::GlobalValue::HiddenVisibility); 3534 RegFn->setComdat(ComdatKey); 3535 UnRegFn->setComdat(ComdatKey); 3536 DeviceImages->setComdat(ComdatKey); 3537 Desc->setComdat(ComdatKey); 3538 } 3539 return RegFn; 3540 } 3541 3542 void CGOpenMPRuntime::createOffloadEntry(llvm::Constant *ID, 3543 llvm::Constant *Addr, uint64_t Size, 3544 int32_t Flags) { 3545 StringRef Name = Addr->getName(); 3546 auto *TgtOffloadEntryType = cast<llvm::StructType>( 3547 CGM.getTypes().ConvertTypeForMem(getTgtOffloadEntryQTy())); 3548 llvm::LLVMContext &C = CGM.getModule().getContext(); 3549 llvm::Module &M = CGM.getModule(); 3550 3551 // Make sure the address has the right type. 3552 llvm::Constant *AddrPtr = llvm::ConstantExpr::getBitCast(ID, CGM.VoidPtrTy); 3553 3554 // Create constant string with the name. 3555 llvm::Constant *StrPtrInit = llvm::ConstantDataArray::getString(C, Name); 3556 3557 llvm::GlobalVariable *Str = 3558 new llvm::GlobalVariable(M, StrPtrInit->getType(), /*isConstant=*/true, 3559 llvm::GlobalValue::InternalLinkage, StrPtrInit, 3560 ".omp_offloading.entry_name"); 3561 Str->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 3562 llvm::Constant *StrPtr = llvm::ConstantExpr::getBitCast(Str, CGM.Int8PtrTy); 3563 3564 // We can't have any padding between symbols, so we need to have 1-byte 3565 // alignment. 3566 auto Align = CharUnits::fromQuantity(1); 3567 3568 // Create the entry struct. 3569 ConstantInitBuilder EntryBuilder(CGM); 3570 auto EntryInit = EntryBuilder.beginStruct(TgtOffloadEntryType); 3571 EntryInit.add(AddrPtr); 3572 EntryInit.add(StrPtr); 3573 EntryInit.addInt(CGM.SizeTy, Size); 3574 EntryInit.addInt(CGM.Int32Ty, Flags); 3575 EntryInit.addInt(CGM.Int32Ty, 0); 3576 llvm::GlobalVariable *Entry = EntryInit.finishAndCreateGlobal( 3577 Twine(".omp_offloading.entry.") + Name, Align, 3578 /*constant*/ true, llvm::GlobalValue::ExternalLinkage); 3579 3580 // The entry has to be created in the section the linker expects it to be. 3581 Entry->setSection(".omp_offloading.entries"); 3582 } 3583 3584 void CGOpenMPRuntime::createOffloadEntriesAndInfoMetadata() { 3585 // Emit the offloading entries and metadata so that the device codegen side 3586 // can easily figure out what to emit. The produced metadata looks like 3587 // this: 3588 // 3589 // !omp_offload.info = !{!1, ...} 3590 // 3591 // Right now we only generate metadata for function that contain target 3592 // regions. 3593 3594 // If we do not have entries, we dont need to do anything. 3595 if (OffloadEntriesInfoManager.empty()) 3596 return; 3597 3598 llvm::Module &M = CGM.getModule(); 3599 llvm::LLVMContext &C = M.getContext(); 3600 SmallVector<OffloadEntriesInfoManagerTy::OffloadEntryInfo *, 16> 3601 OrderedEntries(OffloadEntriesInfoManager.size()); 3602 3603 // Create the offloading info metadata node. 3604 llvm::NamedMDNode *MD = M.getOrInsertNamedMetadata("omp_offload.info"); 3605 3606 // Auxiliary methods to create metadata values and strings. 3607 auto getMDInt = [&](unsigned v) { 3608 return llvm::ConstantAsMetadata::get( 3609 llvm::ConstantInt::get(llvm::Type::getInt32Ty(C), v)); 3610 }; 3611 3612 auto getMDString = [&](StringRef v) { return llvm::MDString::get(C, v); }; 3613 3614 // Create function that emits metadata for each target region entry; 3615 auto &&TargetRegionMetadataEmitter = [&]( 3616 unsigned DeviceID, unsigned FileID, StringRef ParentName, unsigned Line, 3617 OffloadEntriesInfoManagerTy::OffloadEntryInfoTargetRegion &E) { 3618 llvm::SmallVector<llvm::Metadata *, 32> Ops; 3619 // Generate metadata for target regions. Each entry of this metadata 3620 // contains: 3621 // - Entry 0 -> Kind of this type of metadata (0). 3622 // - Entry 1 -> Device ID of the file where the entry was identified. 3623 // - Entry 2 -> File ID of the file where the entry was identified. 3624 // - Entry 3 -> Mangled name of the function where the entry was identified. 3625 // - Entry 4 -> Line in the file where the entry was identified. 3626 // - Entry 5 -> Order the entry was created. 3627 // The first element of the metadata node is the kind. 3628 Ops.push_back(getMDInt(E.getKind())); 3629 Ops.push_back(getMDInt(DeviceID)); 3630 Ops.push_back(getMDInt(FileID)); 3631 Ops.push_back(getMDString(ParentName)); 3632 Ops.push_back(getMDInt(Line)); 3633 Ops.push_back(getMDInt(E.getOrder())); 3634 3635 // Save this entry in the right position of the ordered entries array. 3636 OrderedEntries[E.getOrder()] = &E; 3637 3638 // Add metadata to the named metadata node. 3639 MD->addOperand(llvm::MDNode::get(C, Ops)); 3640 }; 3641 3642 OffloadEntriesInfoManager.actOnTargetRegionEntriesInfo( 3643 TargetRegionMetadataEmitter); 3644 3645 for (auto *E : OrderedEntries) { 3646 assert(E && "All ordered entries must exist!"); 3647 if (auto *CE = 3648 dyn_cast<OffloadEntriesInfoManagerTy::OffloadEntryInfoTargetRegion>( 3649 E)) { 3650 assert(CE->getID() && CE->getAddress() && 3651 "Entry ID and Addr are invalid!"); 3652 createOffloadEntry(CE->getID(), CE->getAddress(), /*Size=*/0); 3653 } else 3654 llvm_unreachable("Unsupported entry kind."); 3655 } 3656 } 3657 3658 /// \brief Loads all the offload entries information from the host IR 3659 /// metadata. 3660 void CGOpenMPRuntime::loadOffloadInfoMetadata() { 3661 // If we are in target mode, load the metadata from the host IR. This code has 3662 // to match the metadaata creation in createOffloadEntriesAndInfoMetadata(). 3663 3664 if (!CGM.getLangOpts().OpenMPIsDevice) 3665 return; 3666 3667 if (CGM.getLangOpts().OMPHostIRFile.empty()) 3668 return; 3669 3670 auto Buf = llvm::MemoryBuffer::getFile(CGM.getLangOpts().OMPHostIRFile); 3671 if (Buf.getError()) 3672 return; 3673 3674 llvm::LLVMContext C; 3675 auto ME = expectedToErrorOrAndEmitErrors( 3676 C, llvm::parseBitcodeFile(Buf.get()->getMemBufferRef(), C)); 3677 3678 if (ME.getError()) 3679 return; 3680 3681 llvm::NamedMDNode *MD = ME.get()->getNamedMetadata("omp_offload.info"); 3682 if (!MD) 3683 return; 3684 3685 for (auto I : MD->operands()) { 3686 llvm::MDNode *MN = cast<llvm::MDNode>(I); 3687 3688 auto getMDInt = [&](unsigned Idx) { 3689 llvm::ConstantAsMetadata *V = 3690 cast<llvm::ConstantAsMetadata>(MN->getOperand(Idx)); 3691 return cast<llvm::ConstantInt>(V->getValue())->getZExtValue(); 3692 }; 3693 3694 auto getMDString = [&](unsigned Idx) { 3695 llvm::MDString *V = cast<llvm::MDString>(MN->getOperand(Idx)); 3696 return V->getString(); 3697 }; 3698 3699 switch (getMDInt(0)) { 3700 default: 3701 llvm_unreachable("Unexpected metadata!"); 3702 break; 3703 case OffloadEntriesInfoManagerTy::OffloadEntryInfo:: 3704 OFFLOAD_ENTRY_INFO_TARGET_REGION: 3705 OffloadEntriesInfoManager.initializeTargetRegionEntryInfo( 3706 /*DeviceID=*/getMDInt(1), /*FileID=*/getMDInt(2), 3707 /*ParentName=*/getMDString(3), /*Line=*/getMDInt(4), 3708 /*Order=*/getMDInt(5)); 3709 break; 3710 } 3711 } 3712 } 3713 3714 void CGOpenMPRuntime::emitKmpRoutineEntryT(QualType KmpInt32Ty) { 3715 if (!KmpRoutineEntryPtrTy) { 3716 // Build typedef kmp_int32 (* kmp_routine_entry_t)(kmp_int32, void *); type. 3717 auto &C = CGM.getContext(); 3718 QualType KmpRoutineEntryTyArgs[] = {KmpInt32Ty, C.VoidPtrTy}; 3719 FunctionProtoType::ExtProtoInfo EPI; 3720 KmpRoutineEntryPtrQTy = C.getPointerType( 3721 C.getFunctionType(KmpInt32Ty, KmpRoutineEntryTyArgs, EPI)); 3722 KmpRoutineEntryPtrTy = CGM.getTypes().ConvertType(KmpRoutineEntryPtrQTy); 3723 } 3724 } 3725 3726 static FieldDecl *addFieldToRecordDecl(ASTContext &C, DeclContext *DC, 3727 QualType FieldTy) { 3728 auto *Field = FieldDecl::Create( 3729 C, DC, SourceLocation(), SourceLocation(), /*Id=*/nullptr, FieldTy, 3730 C.getTrivialTypeSourceInfo(FieldTy, SourceLocation()), 3731 /*BW=*/nullptr, /*Mutable=*/false, /*InitStyle=*/ICIS_NoInit); 3732 Field->setAccess(AS_public); 3733 DC->addDecl(Field); 3734 return Field; 3735 } 3736 3737 QualType CGOpenMPRuntime::getTgtOffloadEntryQTy() { 3738 3739 // Make sure the type of the entry is already created. This is the type we 3740 // have to create: 3741 // struct __tgt_offload_entry{ 3742 // void *addr; // Pointer to the offload entry info. 3743 // // (function or global) 3744 // char *name; // Name of the function or global. 3745 // size_t size; // Size of the entry info (0 if it a function). 3746 // int32_t flags; // Flags associated with the entry, e.g. 'link'. 3747 // int32_t reserved; // Reserved, to use by the runtime library. 3748 // }; 3749 if (TgtOffloadEntryQTy.isNull()) { 3750 ASTContext &C = CGM.getContext(); 3751 auto *RD = C.buildImplicitRecord("__tgt_offload_entry"); 3752 RD->startDefinition(); 3753 addFieldToRecordDecl(C, RD, C.VoidPtrTy); 3754 addFieldToRecordDecl(C, RD, C.getPointerType(C.CharTy)); 3755 addFieldToRecordDecl(C, RD, C.getSizeType()); 3756 addFieldToRecordDecl( 3757 C, RD, C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/true)); 3758 addFieldToRecordDecl( 3759 C, RD, C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/true)); 3760 RD->completeDefinition(); 3761 RD->addAttr(PackedAttr::CreateImplicit(C)); 3762 TgtOffloadEntryQTy = C.getRecordType(RD); 3763 } 3764 return TgtOffloadEntryQTy; 3765 } 3766 3767 QualType CGOpenMPRuntime::getTgtDeviceImageQTy() { 3768 // These are the types we need to build: 3769 // struct __tgt_device_image{ 3770 // void *ImageStart; // Pointer to the target code start. 3771 // void *ImageEnd; // Pointer to the target code end. 3772 // // We also add the host entries to the device image, as it may be useful 3773 // // for the target runtime to have access to that information. 3774 // __tgt_offload_entry *EntriesBegin; // Begin of the table with all 3775 // // the entries. 3776 // __tgt_offload_entry *EntriesEnd; // End of the table with all the 3777 // // entries (non inclusive). 3778 // }; 3779 if (TgtDeviceImageQTy.isNull()) { 3780 ASTContext &C = CGM.getContext(); 3781 auto *RD = C.buildImplicitRecord("__tgt_device_image"); 3782 RD->startDefinition(); 3783 addFieldToRecordDecl(C, RD, C.VoidPtrTy); 3784 addFieldToRecordDecl(C, RD, C.VoidPtrTy); 3785 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy())); 3786 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy())); 3787 RD->completeDefinition(); 3788 TgtDeviceImageQTy = C.getRecordType(RD); 3789 } 3790 return TgtDeviceImageQTy; 3791 } 3792 3793 QualType CGOpenMPRuntime::getTgtBinaryDescriptorQTy() { 3794 // struct __tgt_bin_desc{ 3795 // int32_t NumDevices; // Number of devices supported. 3796 // __tgt_device_image *DeviceImages; // Arrays of device images 3797 // // (one per device). 3798 // __tgt_offload_entry *EntriesBegin; // Begin of the table with all the 3799 // // entries. 3800 // __tgt_offload_entry *EntriesEnd; // End of the table with all the 3801 // // entries (non inclusive). 3802 // }; 3803 if (TgtBinaryDescriptorQTy.isNull()) { 3804 ASTContext &C = CGM.getContext(); 3805 auto *RD = C.buildImplicitRecord("__tgt_bin_desc"); 3806 RD->startDefinition(); 3807 addFieldToRecordDecl( 3808 C, RD, C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/true)); 3809 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtDeviceImageQTy())); 3810 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy())); 3811 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy())); 3812 RD->completeDefinition(); 3813 TgtBinaryDescriptorQTy = C.getRecordType(RD); 3814 } 3815 return TgtBinaryDescriptorQTy; 3816 } 3817 3818 namespace { 3819 struct PrivateHelpersTy { 3820 PrivateHelpersTy(const VarDecl *Original, const VarDecl *PrivateCopy, 3821 const VarDecl *PrivateElemInit) 3822 : Original(Original), PrivateCopy(PrivateCopy), 3823 PrivateElemInit(PrivateElemInit) {} 3824 const VarDecl *Original; 3825 const VarDecl *PrivateCopy; 3826 const VarDecl *PrivateElemInit; 3827 }; 3828 typedef std::pair<CharUnits /*Align*/, PrivateHelpersTy> PrivateDataTy; 3829 } // anonymous namespace 3830 3831 static RecordDecl * 3832 createPrivatesRecordDecl(CodeGenModule &CGM, ArrayRef<PrivateDataTy> Privates) { 3833 if (!Privates.empty()) { 3834 auto &C = CGM.getContext(); 3835 // Build struct .kmp_privates_t. { 3836 // /* private vars */ 3837 // }; 3838 auto *RD = C.buildImplicitRecord(".kmp_privates.t"); 3839 RD->startDefinition(); 3840 for (auto &&Pair : Privates) { 3841 auto *VD = Pair.second.Original; 3842 auto Type = VD->getType(); 3843 Type = Type.getNonReferenceType(); 3844 auto *FD = addFieldToRecordDecl(C, RD, Type); 3845 if (VD->hasAttrs()) { 3846 for (specific_attr_iterator<AlignedAttr> I(VD->getAttrs().begin()), 3847 E(VD->getAttrs().end()); 3848 I != E; ++I) 3849 FD->addAttr(*I); 3850 } 3851 } 3852 RD->completeDefinition(); 3853 return RD; 3854 } 3855 return nullptr; 3856 } 3857 3858 static RecordDecl * 3859 createKmpTaskTRecordDecl(CodeGenModule &CGM, OpenMPDirectiveKind Kind, 3860 QualType KmpInt32Ty, 3861 QualType KmpRoutineEntryPointerQTy) { 3862 auto &C = CGM.getContext(); 3863 // Build struct kmp_task_t { 3864 // void * shareds; 3865 // kmp_routine_entry_t routine; 3866 // kmp_int32 part_id; 3867 // kmp_cmplrdata_t data1; 3868 // kmp_cmplrdata_t data2; 3869 // For taskloops additional fields: 3870 // kmp_uint64 lb; 3871 // kmp_uint64 ub; 3872 // kmp_int64 st; 3873 // kmp_int32 liter; 3874 // void * reductions; 3875 // }; 3876 auto *UD = C.buildImplicitRecord("kmp_cmplrdata_t", TTK_Union); 3877 UD->startDefinition(); 3878 addFieldToRecordDecl(C, UD, KmpInt32Ty); 3879 addFieldToRecordDecl(C, UD, KmpRoutineEntryPointerQTy); 3880 UD->completeDefinition(); 3881 QualType KmpCmplrdataTy = C.getRecordType(UD); 3882 auto *RD = C.buildImplicitRecord("kmp_task_t"); 3883 RD->startDefinition(); 3884 addFieldToRecordDecl(C, RD, C.VoidPtrTy); 3885 addFieldToRecordDecl(C, RD, KmpRoutineEntryPointerQTy); 3886 addFieldToRecordDecl(C, RD, KmpInt32Ty); 3887 addFieldToRecordDecl(C, RD, KmpCmplrdataTy); 3888 addFieldToRecordDecl(C, RD, KmpCmplrdataTy); 3889 if (isOpenMPTaskLoopDirective(Kind)) { 3890 QualType KmpUInt64Ty = 3891 CGM.getContext().getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/0); 3892 QualType KmpInt64Ty = 3893 CGM.getContext().getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/1); 3894 addFieldToRecordDecl(C, RD, KmpUInt64Ty); 3895 addFieldToRecordDecl(C, RD, KmpUInt64Ty); 3896 addFieldToRecordDecl(C, RD, KmpInt64Ty); 3897 addFieldToRecordDecl(C, RD, KmpInt32Ty); 3898 addFieldToRecordDecl(C, RD, C.VoidPtrTy); 3899 } 3900 RD->completeDefinition(); 3901 return RD; 3902 } 3903 3904 static RecordDecl * 3905 createKmpTaskTWithPrivatesRecordDecl(CodeGenModule &CGM, QualType KmpTaskTQTy, 3906 ArrayRef<PrivateDataTy> Privates) { 3907 auto &C = CGM.getContext(); 3908 // Build struct kmp_task_t_with_privates { 3909 // kmp_task_t task_data; 3910 // .kmp_privates_t. privates; 3911 // }; 3912 auto *RD = C.buildImplicitRecord("kmp_task_t_with_privates"); 3913 RD->startDefinition(); 3914 addFieldToRecordDecl(C, RD, KmpTaskTQTy); 3915 if (auto *PrivateRD = createPrivatesRecordDecl(CGM, Privates)) { 3916 addFieldToRecordDecl(C, RD, C.getRecordType(PrivateRD)); 3917 } 3918 RD->completeDefinition(); 3919 return RD; 3920 } 3921 3922 /// \brief Emit a proxy function which accepts kmp_task_t as the second 3923 /// argument. 3924 /// \code 3925 /// kmp_int32 .omp_task_entry.(kmp_int32 gtid, kmp_task_t *tt) { 3926 /// TaskFunction(gtid, tt->part_id, &tt->privates, task_privates_map, tt, 3927 /// For taskloops: 3928 /// tt->task_data.lb, tt->task_data.ub, tt->task_data.st, tt->task_data.liter, 3929 /// tt->reductions, tt->shareds); 3930 /// return 0; 3931 /// } 3932 /// \endcode 3933 static llvm::Value * 3934 emitProxyTaskFunction(CodeGenModule &CGM, SourceLocation Loc, 3935 OpenMPDirectiveKind Kind, QualType KmpInt32Ty, 3936 QualType KmpTaskTWithPrivatesPtrQTy, 3937 QualType KmpTaskTWithPrivatesQTy, QualType KmpTaskTQTy, 3938 QualType SharedsPtrTy, llvm::Value *TaskFunction, 3939 llvm::Value *TaskPrivatesMap) { 3940 auto &C = CGM.getContext(); 3941 FunctionArgList Args; 3942 ImplicitParamDecl GtidArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, KmpInt32Ty, 3943 ImplicitParamDecl::Other); 3944 ImplicitParamDecl TaskTypeArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, 3945 KmpTaskTWithPrivatesPtrQTy.withRestrict(), 3946 ImplicitParamDecl::Other); 3947 Args.push_back(&GtidArg); 3948 Args.push_back(&TaskTypeArg); 3949 auto &TaskEntryFnInfo = 3950 CGM.getTypes().arrangeBuiltinFunctionDeclaration(KmpInt32Ty, Args); 3951 auto *TaskEntryTy = CGM.getTypes().GetFunctionType(TaskEntryFnInfo); 3952 auto *TaskEntry = 3953 llvm::Function::Create(TaskEntryTy, llvm::GlobalValue::InternalLinkage, 3954 ".omp_task_entry.", &CGM.getModule()); 3955 CGM.SetInternalFunctionAttributes(/*D=*/nullptr, TaskEntry, TaskEntryFnInfo); 3956 CodeGenFunction CGF(CGM); 3957 CGF.StartFunction(GlobalDecl(), KmpInt32Ty, TaskEntry, TaskEntryFnInfo, Args, 3958 Loc, Loc); 3959 3960 // TaskFunction(gtid, tt->task_data.part_id, &tt->privates, task_privates_map, 3961 // tt, 3962 // For taskloops: 3963 // tt->task_data.lb, tt->task_data.ub, tt->task_data.st, tt->task_data.liter, 3964 // tt->task_data.shareds); 3965 auto *GtidParam = CGF.EmitLoadOfScalar( 3966 CGF.GetAddrOfLocalVar(&GtidArg), /*Volatile=*/false, KmpInt32Ty, Loc); 3967 LValue TDBase = CGF.EmitLoadOfPointerLValue( 3968 CGF.GetAddrOfLocalVar(&TaskTypeArg), 3969 KmpTaskTWithPrivatesPtrQTy->castAs<PointerType>()); 3970 auto *KmpTaskTWithPrivatesQTyRD = 3971 cast<RecordDecl>(KmpTaskTWithPrivatesQTy->getAsTagDecl()); 3972 LValue Base = 3973 CGF.EmitLValueForField(TDBase, *KmpTaskTWithPrivatesQTyRD->field_begin()); 3974 auto *KmpTaskTQTyRD = cast<RecordDecl>(KmpTaskTQTy->getAsTagDecl()); 3975 auto PartIdFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTPartId); 3976 auto PartIdLVal = CGF.EmitLValueForField(Base, *PartIdFI); 3977 auto *PartidParam = PartIdLVal.getPointer(); 3978 3979 auto SharedsFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTShareds); 3980 auto SharedsLVal = CGF.EmitLValueForField(Base, *SharedsFI); 3981 auto *SharedsParam = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 3982 CGF.EmitLoadOfLValue(SharedsLVal, Loc).getScalarVal(), 3983 CGF.ConvertTypeForMem(SharedsPtrTy)); 3984 3985 auto PrivatesFI = std::next(KmpTaskTWithPrivatesQTyRD->field_begin(), 1); 3986 llvm::Value *PrivatesParam; 3987 if (PrivatesFI != KmpTaskTWithPrivatesQTyRD->field_end()) { 3988 auto PrivatesLVal = CGF.EmitLValueForField(TDBase, *PrivatesFI); 3989 PrivatesParam = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 3990 PrivatesLVal.getPointer(), CGF.VoidPtrTy); 3991 } else 3992 PrivatesParam = llvm::ConstantPointerNull::get(CGF.VoidPtrTy); 3993 3994 llvm::Value *CommonArgs[] = {GtidParam, PartidParam, PrivatesParam, 3995 TaskPrivatesMap, 3996 CGF.Builder 3997 .CreatePointerBitCastOrAddrSpaceCast( 3998 TDBase.getAddress(), CGF.VoidPtrTy) 3999 .getPointer()}; 4000 SmallVector<llvm::Value *, 16> CallArgs(std::begin(CommonArgs), 4001 std::end(CommonArgs)); 4002 if (isOpenMPTaskLoopDirective(Kind)) { 4003 auto LBFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTLowerBound); 4004 auto LBLVal = CGF.EmitLValueForField(Base, *LBFI); 4005 auto *LBParam = CGF.EmitLoadOfLValue(LBLVal, Loc).getScalarVal(); 4006 auto UBFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTUpperBound); 4007 auto UBLVal = CGF.EmitLValueForField(Base, *UBFI); 4008 auto *UBParam = CGF.EmitLoadOfLValue(UBLVal, Loc).getScalarVal(); 4009 auto StFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTStride); 4010 auto StLVal = CGF.EmitLValueForField(Base, *StFI); 4011 auto *StParam = CGF.EmitLoadOfLValue(StLVal, Loc).getScalarVal(); 4012 auto LIFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTLastIter); 4013 auto LILVal = CGF.EmitLValueForField(Base, *LIFI); 4014 auto *LIParam = CGF.EmitLoadOfLValue(LILVal, Loc).getScalarVal(); 4015 auto RFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTReductions); 4016 auto RLVal = CGF.EmitLValueForField(Base, *RFI); 4017 auto *RParam = CGF.EmitLoadOfLValue(RLVal, Loc).getScalarVal(); 4018 CallArgs.push_back(LBParam); 4019 CallArgs.push_back(UBParam); 4020 CallArgs.push_back(StParam); 4021 CallArgs.push_back(LIParam); 4022 CallArgs.push_back(RParam); 4023 } 4024 CallArgs.push_back(SharedsParam); 4025 4026 CGM.getOpenMPRuntime().emitOutlinedFunctionCall(CGF, Loc, TaskFunction, 4027 CallArgs); 4028 CGF.EmitStoreThroughLValue( 4029 RValue::get(CGF.Builder.getInt32(/*C=*/0)), 4030 CGF.MakeAddrLValue(CGF.ReturnValue, KmpInt32Ty)); 4031 CGF.FinishFunction(); 4032 return TaskEntry; 4033 } 4034 4035 static llvm::Value *emitDestructorsFunction(CodeGenModule &CGM, 4036 SourceLocation Loc, 4037 QualType KmpInt32Ty, 4038 QualType KmpTaskTWithPrivatesPtrQTy, 4039 QualType KmpTaskTWithPrivatesQTy) { 4040 auto &C = CGM.getContext(); 4041 FunctionArgList Args; 4042 ImplicitParamDecl GtidArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, KmpInt32Ty, 4043 ImplicitParamDecl::Other); 4044 ImplicitParamDecl TaskTypeArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, 4045 KmpTaskTWithPrivatesPtrQTy.withRestrict(), 4046 ImplicitParamDecl::Other); 4047 Args.push_back(&GtidArg); 4048 Args.push_back(&TaskTypeArg); 4049 auto &DestructorFnInfo = 4050 CGM.getTypes().arrangeBuiltinFunctionDeclaration(KmpInt32Ty, Args); 4051 auto *DestructorFnTy = CGM.getTypes().GetFunctionType(DestructorFnInfo); 4052 auto *DestructorFn = 4053 llvm::Function::Create(DestructorFnTy, llvm::GlobalValue::InternalLinkage, 4054 ".omp_task_destructor.", &CGM.getModule()); 4055 CGM.SetInternalFunctionAttributes(/*D=*/nullptr, DestructorFn, 4056 DestructorFnInfo); 4057 CodeGenFunction CGF(CGM); 4058 CGF.StartFunction(GlobalDecl(), KmpInt32Ty, DestructorFn, DestructorFnInfo, 4059 Args, Loc, Loc); 4060 4061 LValue Base = CGF.EmitLoadOfPointerLValue( 4062 CGF.GetAddrOfLocalVar(&TaskTypeArg), 4063 KmpTaskTWithPrivatesPtrQTy->castAs<PointerType>()); 4064 auto *KmpTaskTWithPrivatesQTyRD = 4065 cast<RecordDecl>(KmpTaskTWithPrivatesQTy->getAsTagDecl()); 4066 auto FI = std::next(KmpTaskTWithPrivatesQTyRD->field_begin()); 4067 Base = CGF.EmitLValueForField(Base, *FI); 4068 for (auto *Field : 4069 cast<RecordDecl>(FI->getType()->getAsTagDecl())->fields()) { 4070 if (auto DtorKind = Field->getType().isDestructedType()) { 4071 auto FieldLValue = CGF.EmitLValueForField(Base, Field); 4072 CGF.pushDestroy(DtorKind, FieldLValue.getAddress(), Field->getType()); 4073 } 4074 } 4075 CGF.FinishFunction(); 4076 return DestructorFn; 4077 } 4078 4079 /// \brief Emit a privates mapping function for correct handling of private and 4080 /// firstprivate variables. 4081 /// \code 4082 /// void .omp_task_privates_map.(const .privates. *noalias privs, <ty1> 4083 /// **noalias priv1,..., <tyn> **noalias privn) { 4084 /// *priv1 = &.privates.priv1; 4085 /// ...; 4086 /// *privn = &.privates.privn; 4087 /// } 4088 /// \endcode 4089 static llvm::Value * 4090 emitTaskPrivateMappingFunction(CodeGenModule &CGM, SourceLocation Loc, 4091 ArrayRef<const Expr *> PrivateVars, 4092 ArrayRef<const Expr *> FirstprivateVars, 4093 ArrayRef<const Expr *> LastprivateVars, 4094 QualType PrivatesQTy, 4095 ArrayRef<PrivateDataTy> Privates) { 4096 auto &C = CGM.getContext(); 4097 FunctionArgList Args; 4098 ImplicitParamDecl TaskPrivatesArg( 4099 C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, 4100 C.getPointerType(PrivatesQTy).withConst().withRestrict(), 4101 ImplicitParamDecl::Other); 4102 Args.push_back(&TaskPrivatesArg); 4103 llvm::DenseMap<const VarDecl *, unsigned> PrivateVarsPos; 4104 unsigned Counter = 1; 4105 for (auto *E: PrivateVars) { 4106 Args.push_back(ImplicitParamDecl::Create( 4107 C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, 4108 C.getPointerType(C.getPointerType(E->getType())) 4109 .withConst() 4110 .withRestrict(), 4111 ImplicitParamDecl::Other)); 4112 auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); 4113 PrivateVarsPos[VD] = Counter; 4114 ++Counter; 4115 } 4116 for (auto *E : FirstprivateVars) { 4117 Args.push_back(ImplicitParamDecl::Create( 4118 C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, 4119 C.getPointerType(C.getPointerType(E->getType())) 4120 .withConst() 4121 .withRestrict(), 4122 ImplicitParamDecl::Other)); 4123 auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); 4124 PrivateVarsPos[VD] = Counter; 4125 ++Counter; 4126 } 4127 for (auto *E: LastprivateVars) { 4128 Args.push_back(ImplicitParamDecl::Create( 4129 C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, 4130 C.getPointerType(C.getPointerType(E->getType())) 4131 .withConst() 4132 .withRestrict(), 4133 ImplicitParamDecl::Other)); 4134 auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); 4135 PrivateVarsPos[VD] = Counter; 4136 ++Counter; 4137 } 4138 auto &TaskPrivatesMapFnInfo = 4139 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args); 4140 auto *TaskPrivatesMapTy = 4141 CGM.getTypes().GetFunctionType(TaskPrivatesMapFnInfo); 4142 auto *TaskPrivatesMap = llvm::Function::Create( 4143 TaskPrivatesMapTy, llvm::GlobalValue::InternalLinkage, 4144 ".omp_task_privates_map.", &CGM.getModule()); 4145 CGM.SetInternalFunctionAttributes(/*D=*/nullptr, TaskPrivatesMap, 4146 TaskPrivatesMapFnInfo); 4147 TaskPrivatesMap->removeFnAttr(llvm::Attribute::NoInline); 4148 TaskPrivatesMap->removeFnAttr(llvm::Attribute::OptimizeNone); 4149 TaskPrivatesMap->addFnAttr(llvm::Attribute::AlwaysInline); 4150 CodeGenFunction CGF(CGM); 4151 CGF.StartFunction(GlobalDecl(), C.VoidTy, TaskPrivatesMap, 4152 TaskPrivatesMapFnInfo, Args, Loc, Loc); 4153 4154 // *privi = &.privates.privi; 4155 LValue Base = CGF.EmitLoadOfPointerLValue( 4156 CGF.GetAddrOfLocalVar(&TaskPrivatesArg), 4157 TaskPrivatesArg.getType()->castAs<PointerType>()); 4158 auto *PrivatesQTyRD = cast<RecordDecl>(PrivatesQTy->getAsTagDecl()); 4159 Counter = 0; 4160 for (auto *Field : PrivatesQTyRD->fields()) { 4161 auto FieldLVal = CGF.EmitLValueForField(Base, Field); 4162 auto *VD = Args[PrivateVarsPos[Privates[Counter].second.Original]]; 4163 auto RefLVal = CGF.MakeAddrLValue(CGF.GetAddrOfLocalVar(VD), VD->getType()); 4164 auto RefLoadLVal = CGF.EmitLoadOfPointerLValue( 4165 RefLVal.getAddress(), RefLVal.getType()->castAs<PointerType>()); 4166 CGF.EmitStoreOfScalar(FieldLVal.getPointer(), RefLoadLVal); 4167 ++Counter; 4168 } 4169 CGF.FinishFunction(); 4170 return TaskPrivatesMap; 4171 } 4172 4173 static bool stable_sort_comparator(const PrivateDataTy P1, 4174 const PrivateDataTy P2) { 4175 return P1.first > P2.first; 4176 } 4177 4178 /// Emit initialization for private variables in task-based directives. 4179 static void emitPrivatesInit(CodeGenFunction &CGF, 4180 const OMPExecutableDirective &D, 4181 Address KmpTaskSharedsPtr, LValue TDBase, 4182 const RecordDecl *KmpTaskTWithPrivatesQTyRD, 4183 QualType SharedsTy, QualType SharedsPtrTy, 4184 const OMPTaskDataTy &Data, 4185 ArrayRef<PrivateDataTy> Privates, bool ForDup) { 4186 auto &C = CGF.getContext(); 4187 auto FI = std::next(KmpTaskTWithPrivatesQTyRD->field_begin()); 4188 LValue PrivatesBase = CGF.EmitLValueForField(TDBase, *FI); 4189 OpenMPDirectiveKind Kind = isOpenMPTaskLoopDirective(D.getDirectiveKind()) 4190 ? OMPD_taskloop 4191 : OMPD_task; 4192 const CapturedStmt &CS = *D.getCapturedStmt(Kind); 4193 CodeGenFunction::CGCapturedStmtInfo CapturesInfo(CS); 4194 LValue SrcBase; 4195 bool IsTargetTask = 4196 isOpenMPTargetDataManagementDirective(D.getDirectiveKind()) || 4197 isOpenMPTargetExecutionDirective(D.getDirectiveKind()); 4198 // For target-based directives skip 3 firstprivate arrays BasePointersArray, 4199 // PointersArray and SizesArray. The original variables for these arrays are 4200 // not captured and we get their addresses explicitly. 4201 if ((!IsTargetTask && !Data.FirstprivateVars.empty()) || 4202 (IsTargetTask && KmpTaskSharedsPtr.isValid())) { 4203 SrcBase = CGF.MakeAddrLValue( 4204 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 4205 KmpTaskSharedsPtr, CGF.ConvertTypeForMem(SharedsPtrTy)), 4206 SharedsTy); 4207 } 4208 FI = cast<RecordDecl>(FI->getType()->getAsTagDecl())->field_begin(); 4209 for (auto &&Pair : Privates) { 4210 auto *VD = Pair.second.PrivateCopy; 4211 auto *Init = VD->getAnyInitializer(); 4212 if (Init && (!ForDup || (isa<CXXConstructExpr>(Init) && 4213 !CGF.isTrivialInitializer(Init)))) { 4214 LValue PrivateLValue = CGF.EmitLValueForField(PrivatesBase, *FI); 4215 if (auto *Elem = Pair.second.PrivateElemInit) { 4216 auto *OriginalVD = Pair.second.Original; 4217 // Check if the variable is the target-based BasePointersArray, 4218 // PointersArray or SizesArray. 4219 LValue SharedRefLValue; 4220 QualType Type = OriginalVD->getType(); 4221 auto *SharedField = CapturesInfo.lookup(OriginalVD); 4222 if (IsTargetTask && !SharedField) { 4223 assert(isa<ImplicitParamDecl>(OriginalVD) && 4224 isa<CapturedDecl>(OriginalVD->getDeclContext()) && 4225 cast<CapturedDecl>(OriginalVD->getDeclContext()) 4226 ->getNumParams() == 0 && 4227 isa<TranslationUnitDecl>( 4228 cast<CapturedDecl>(OriginalVD->getDeclContext()) 4229 ->getDeclContext()) && 4230 "Expected artificial target data variable."); 4231 SharedRefLValue = 4232 CGF.MakeAddrLValue(CGF.GetAddrOfLocalVar(OriginalVD), Type); 4233 } else { 4234 SharedRefLValue = CGF.EmitLValueForField(SrcBase, SharedField); 4235 SharedRefLValue = CGF.MakeAddrLValue( 4236 Address(SharedRefLValue.getPointer(), C.getDeclAlign(OriginalVD)), 4237 SharedRefLValue.getType(), LValueBaseInfo(AlignmentSource::Decl), 4238 SharedRefLValue.getTBAAInfo()); 4239 } 4240 if (Type->isArrayType()) { 4241 // Initialize firstprivate array. 4242 if (!isa<CXXConstructExpr>(Init) || CGF.isTrivialInitializer(Init)) { 4243 // Perform simple memcpy. 4244 CGF.EmitAggregateAssign(PrivateLValue.getAddress(), 4245 SharedRefLValue.getAddress(), Type); 4246 } else { 4247 // Initialize firstprivate array using element-by-element 4248 // initialization. 4249 CGF.EmitOMPAggregateAssign( 4250 PrivateLValue.getAddress(), SharedRefLValue.getAddress(), Type, 4251 [&CGF, Elem, Init, &CapturesInfo](Address DestElement, 4252 Address SrcElement) { 4253 // Clean up any temporaries needed by the initialization. 4254 CodeGenFunction::OMPPrivateScope InitScope(CGF); 4255 InitScope.addPrivate( 4256 Elem, [SrcElement]() -> Address { return SrcElement; }); 4257 (void)InitScope.Privatize(); 4258 // Emit initialization for single element. 4259 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII( 4260 CGF, &CapturesInfo); 4261 CGF.EmitAnyExprToMem(Init, DestElement, 4262 Init->getType().getQualifiers(), 4263 /*IsInitializer=*/false); 4264 }); 4265 } 4266 } else { 4267 CodeGenFunction::OMPPrivateScope InitScope(CGF); 4268 InitScope.addPrivate(Elem, [SharedRefLValue]() -> Address { 4269 return SharedRefLValue.getAddress(); 4270 }); 4271 (void)InitScope.Privatize(); 4272 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CapturesInfo); 4273 CGF.EmitExprAsInit(Init, VD, PrivateLValue, 4274 /*capturedByInit=*/false); 4275 } 4276 } else 4277 CGF.EmitExprAsInit(Init, VD, PrivateLValue, /*capturedByInit=*/false); 4278 } 4279 ++FI; 4280 } 4281 } 4282 4283 /// Check if duplication function is required for taskloops. 4284 static bool checkInitIsRequired(CodeGenFunction &CGF, 4285 ArrayRef<PrivateDataTy> Privates) { 4286 bool InitRequired = false; 4287 for (auto &&Pair : Privates) { 4288 auto *VD = Pair.second.PrivateCopy; 4289 auto *Init = VD->getAnyInitializer(); 4290 InitRequired = InitRequired || (Init && isa<CXXConstructExpr>(Init) && 4291 !CGF.isTrivialInitializer(Init)); 4292 } 4293 return InitRequired; 4294 } 4295 4296 4297 /// Emit task_dup function (for initialization of 4298 /// private/firstprivate/lastprivate vars and last_iter flag) 4299 /// \code 4300 /// void __task_dup_entry(kmp_task_t *task_dst, const kmp_task_t *task_src, int 4301 /// lastpriv) { 4302 /// // setup lastprivate flag 4303 /// task_dst->last = lastpriv; 4304 /// // could be constructor calls here... 4305 /// } 4306 /// \endcode 4307 static llvm::Value * 4308 emitTaskDupFunction(CodeGenModule &CGM, SourceLocation Loc, 4309 const OMPExecutableDirective &D, 4310 QualType KmpTaskTWithPrivatesPtrQTy, 4311 const RecordDecl *KmpTaskTWithPrivatesQTyRD, 4312 const RecordDecl *KmpTaskTQTyRD, QualType SharedsTy, 4313 QualType SharedsPtrTy, const OMPTaskDataTy &Data, 4314 ArrayRef<PrivateDataTy> Privates, bool WithLastIter) { 4315 auto &C = CGM.getContext(); 4316 FunctionArgList Args; 4317 ImplicitParamDecl DstArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, 4318 KmpTaskTWithPrivatesPtrQTy, 4319 ImplicitParamDecl::Other); 4320 ImplicitParamDecl SrcArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, 4321 KmpTaskTWithPrivatesPtrQTy, 4322 ImplicitParamDecl::Other); 4323 ImplicitParamDecl LastprivArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.IntTy, 4324 ImplicitParamDecl::Other); 4325 Args.push_back(&DstArg); 4326 Args.push_back(&SrcArg); 4327 Args.push_back(&LastprivArg); 4328 auto &TaskDupFnInfo = 4329 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args); 4330 auto *TaskDupTy = CGM.getTypes().GetFunctionType(TaskDupFnInfo); 4331 auto *TaskDup = 4332 llvm::Function::Create(TaskDupTy, llvm::GlobalValue::InternalLinkage, 4333 ".omp_task_dup.", &CGM.getModule()); 4334 CGM.SetInternalFunctionAttributes(/*D=*/nullptr, TaskDup, TaskDupFnInfo); 4335 CodeGenFunction CGF(CGM); 4336 CGF.StartFunction(GlobalDecl(), C.VoidTy, TaskDup, TaskDupFnInfo, Args, Loc, 4337 Loc); 4338 4339 LValue TDBase = CGF.EmitLoadOfPointerLValue( 4340 CGF.GetAddrOfLocalVar(&DstArg), 4341 KmpTaskTWithPrivatesPtrQTy->castAs<PointerType>()); 4342 // task_dst->liter = lastpriv; 4343 if (WithLastIter) { 4344 auto LIFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTLastIter); 4345 LValue Base = CGF.EmitLValueForField( 4346 TDBase, *KmpTaskTWithPrivatesQTyRD->field_begin()); 4347 LValue LILVal = CGF.EmitLValueForField(Base, *LIFI); 4348 llvm::Value *Lastpriv = CGF.EmitLoadOfScalar( 4349 CGF.GetAddrOfLocalVar(&LastprivArg), /*Volatile=*/false, C.IntTy, Loc); 4350 CGF.EmitStoreOfScalar(Lastpriv, LILVal); 4351 } 4352 4353 // Emit initial values for private copies (if any). 4354 assert(!Privates.empty()); 4355 Address KmpTaskSharedsPtr = Address::invalid(); 4356 if (!Data.FirstprivateVars.empty()) { 4357 LValue TDBase = CGF.EmitLoadOfPointerLValue( 4358 CGF.GetAddrOfLocalVar(&SrcArg), 4359 KmpTaskTWithPrivatesPtrQTy->castAs<PointerType>()); 4360 LValue Base = CGF.EmitLValueForField( 4361 TDBase, *KmpTaskTWithPrivatesQTyRD->field_begin()); 4362 KmpTaskSharedsPtr = Address( 4363 CGF.EmitLoadOfScalar(CGF.EmitLValueForField( 4364 Base, *std::next(KmpTaskTQTyRD->field_begin(), 4365 KmpTaskTShareds)), 4366 Loc), 4367 CGF.getNaturalTypeAlignment(SharedsTy)); 4368 } 4369 emitPrivatesInit(CGF, D, KmpTaskSharedsPtr, TDBase, KmpTaskTWithPrivatesQTyRD, 4370 SharedsTy, SharedsPtrTy, Data, Privates, /*ForDup=*/true); 4371 CGF.FinishFunction(); 4372 return TaskDup; 4373 } 4374 4375 /// Checks if destructor function is required to be generated. 4376 /// \return true if cleanups are required, false otherwise. 4377 static bool 4378 checkDestructorsRequired(const RecordDecl *KmpTaskTWithPrivatesQTyRD) { 4379 bool NeedsCleanup = false; 4380 auto FI = std::next(KmpTaskTWithPrivatesQTyRD->field_begin()); 4381 auto *PrivateRD = cast<RecordDecl>(FI->getType()->getAsTagDecl()); 4382 for (auto *FD : PrivateRD->fields()) { 4383 NeedsCleanup = NeedsCleanup || FD->getType().isDestructedType(); 4384 if (NeedsCleanup) 4385 break; 4386 } 4387 return NeedsCleanup; 4388 } 4389 4390 CGOpenMPRuntime::TaskResultTy 4391 CGOpenMPRuntime::emitTaskInit(CodeGenFunction &CGF, SourceLocation Loc, 4392 const OMPExecutableDirective &D, 4393 llvm::Value *TaskFunction, QualType SharedsTy, 4394 Address Shareds, const OMPTaskDataTy &Data) { 4395 auto &C = CGM.getContext(); 4396 llvm::SmallVector<PrivateDataTy, 4> Privates; 4397 // Aggregate privates and sort them by the alignment. 4398 auto I = Data.PrivateCopies.begin(); 4399 for (auto *E : Data.PrivateVars) { 4400 auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); 4401 Privates.push_back(std::make_pair( 4402 C.getDeclAlign(VD), 4403 PrivateHelpersTy(VD, cast<VarDecl>(cast<DeclRefExpr>(*I)->getDecl()), 4404 /*PrivateElemInit=*/nullptr))); 4405 ++I; 4406 } 4407 I = Data.FirstprivateCopies.begin(); 4408 auto IElemInitRef = Data.FirstprivateInits.begin(); 4409 for (auto *E : Data.FirstprivateVars) { 4410 auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); 4411 Privates.push_back(std::make_pair( 4412 C.getDeclAlign(VD), 4413 PrivateHelpersTy( 4414 VD, cast<VarDecl>(cast<DeclRefExpr>(*I)->getDecl()), 4415 cast<VarDecl>(cast<DeclRefExpr>(*IElemInitRef)->getDecl())))); 4416 ++I; 4417 ++IElemInitRef; 4418 } 4419 I = Data.LastprivateCopies.begin(); 4420 for (auto *E : Data.LastprivateVars) { 4421 auto *VD = cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl()); 4422 Privates.push_back(std::make_pair( 4423 C.getDeclAlign(VD), 4424 PrivateHelpersTy(VD, cast<VarDecl>(cast<DeclRefExpr>(*I)->getDecl()), 4425 /*PrivateElemInit=*/nullptr))); 4426 ++I; 4427 } 4428 std::stable_sort(Privates.begin(), Privates.end(), stable_sort_comparator); 4429 auto KmpInt32Ty = C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/1); 4430 // Build type kmp_routine_entry_t (if not built yet). 4431 emitKmpRoutineEntryT(KmpInt32Ty); 4432 // Build type kmp_task_t (if not built yet). 4433 if (isOpenMPTaskLoopDirective(D.getDirectiveKind())) { 4434 if (SavedKmpTaskloopTQTy.isNull()) { 4435 SavedKmpTaskloopTQTy = C.getRecordType(createKmpTaskTRecordDecl( 4436 CGM, D.getDirectiveKind(), KmpInt32Ty, KmpRoutineEntryPtrQTy)); 4437 } 4438 KmpTaskTQTy = SavedKmpTaskloopTQTy; 4439 } else { 4440 assert((D.getDirectiveKind() == OMPD_task || 4441 isOpenMPTargetExecutionDirective(D.getDirectiveKind()) || 4442 isOpenMPTargetDataManagementDirective(D.getDirectiveKind())) && 4443 "Expected taskloop, task or target directive"); 4444 if (SavedKmpTaskTQTy.isNull()) { 4445 SavedKmpTaskTQTy = C.getRecordType(createKmpTaskTRecordDecl( 4446 CGM, D.getDirectiveKind(), KmpInt32Ty, KmpRoutineEntryPtrQTy)); 4447 } 4448 KmpTaskTQTy = SavedKmpTaskTQTy; 4449 } 4450 auto *KmpTaskTQTyRD = cast<RecordDecl>(KmpTaskTQTy->getAsTagDecl()); 4451 // Build particular struct kmp_task_t for the given task. 4452 auto *KmpTaskTWithPrivatesQTyRD = 4453 createKmpTaskTWithPrivatesRecordDecl(CGM, KmpTaskTQTy, Privates); 4454 auto KmpTaskTWithPrivatesQTy = C.getRecordType(KmpTaskTWithPrivatesQTyRD); 4455 QualType KmpTaskTWithPrivatesPtrQTy = 4456 C.getPointerType(KmpTaskTWithPrivatesQTy); 4457 auto *KmpTaskTWithPrivatesTy = CGF.ConvertType(KmpTaskTWithPrivatesQTy); 4458 auto *KmpTaskTWithPrivatesPtrTy = KmpTaskTWithPrivatesTy->getPointerTo(); 4459 auto *KmpTaskTWithPrivatesTySize = CGF.getTypeSize(KmpTaskTWithPrivatesQTy); 4460 QualType SharedsPtrTy = C.getPointerType(SharedsTy); 4461 4462 // Emit initial values for private copies (if any). 4463 llvm::Value *TaskPrivatesMap = nullptr; 4464 auto *TaskPrivatesMapTy = 4465 std::next(cast<llvm::Function>(TaskFunction)->arg_begin(), 3)->getType(); 4466 if (!Privates.empty()) { 4467 auto FI = std::next(KmpTaskTWithPrivatesQTyRD->field_begin()); 4468 TaskPrivatesMap = emitTaskPrivateMappingFunction( 4469 CGM, Loc, Data.PrivateVars, Data.FirstprivateVars, Data.LastprivateVars, 4470 FI->getType(), Privates); 4471 TaskPrivatesMap = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 4472 TaskPrivatesMap, TaskPrivatesMapTy); 4473 } else { 4474 TaskPrivatesMap = llvm::ConstantPointerNull::get( 4475 cast<llvm::PointerType>(TaskPrivatesMapTy)); 4476 } 4477 // Build a proxy function kmp_int32 .omp_task_entry.(kmp_int32 gtid, 4478 // kmp_task_t *tt); 4479 auto *TaskEntry = emitProxyTaskFunction( 4480 CGM, Loc, D.getDirectiveKind(), KmpInt32Ty, KmpTaskTWithPrivatesPtrQTy, 4481 KmpTaskTWithPrivatesQTy, KmpTaskTQTy, SharedsPtrTy, TaskFunction, 4482 TaskPrivatesMap); 4483 4484 // Build call kmp_task_t * __kmpc_omp_task_alloc(ident_t *, kmp_int32 gtid, 4485 // kmp_int32 flags, size_t sizeof_kmp_task_t, size_t sizeof_shareds, 4486 // kmp_routine_entry_t *task_entry); 4487 // Task flags. Format is taken from 4488 // http://llvm.org/svn/llvm-project/openmp/trunk/runtime/src/kmp.h, 4489 // description of kmp_tasking_flags struct. 4490 enum { 4491 TiedFlag = 0x1, 4492 FinalFlag = 0x2, 4493 DestructorsFlag = 0x8, 4494 PriorityFlag = 0x20 4495 }; 4496 unsigned Flags = Data.Tied ? TiedFlag : 0; 4497 bool NeedsCleanup = false; 4498 if (!Privates.empty()) { 4499 NeedsCleanup = checkDestructorsRequired(KmpTaskTWithPrivatesQTyRD); 4500 if (NeedsCleanup) 4501 Flags = Flags | DestructorsFlag; 4502 } 4503 if (Data.Priority.getInt()) 4504 Flags = Flags | PriorityFlag; 4505 auto *TaskFlags = 4506 Data.Final.getPointer() 4507 ? CGF.Builder.CreateSelect(Data.Final.getPointer(), 4508 CGF.Builder.getInt32(FinalFlag), 4509 CGF.Builder.getInt32(/*C=*/0)) 4510 : CGF.Builder.getInt32(Data.Final.getInt() ? FinalFlag : 0); 4511 TaskFlags = CGF.Builder.CreateOr(TaskFlags, CGF.Builder.getInt32(Flags)); 4512 auto *SharedsSize = CGM.getSize(C.getTypeSizeInChars(SharedsTy)); 4513 llvm::Value *AllocArgs[] = {emitUpdateLocation(CGF, Loc), 4514 getThreadID(CGF, Loc), TaskFlags, 4515 KmpTaskTWithPrivatesTySize, SharedsSize, 4516 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 4517 TaskEntry, KmpRoutineEntryPtrTy)}; 4518 auto *NewTask = CGF.EmitRuntimeCall( 4519 createRuntimeFunction(OMPRTL__kmpc_omp_task_alloc), AllocArgs); 4520 auto *NewTaskNewTaskTTy = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 4521 NewTask, KmpTaskTWithPrivatesPtrTy); 4522 LValue Base = CGF.MakeNaturalAlignAddrLValue(NewTaskNewTaskTTy, 4523 KmpTaskTWithPrivatesQTy); 4524 LValue TDBase = 4525 CGF.EmitLValueForField(Base, *KmpTaskTWithPrivatesQTyRD->field_begin()); 4526 // Fill the data in the resulting kmp_task_t record. 4527 // Copy shareds if there are any. 4528 Address KmpTaskSharedsPtr = Address::invalid(); 4529 if (!SharedsTy->getAsStructureType()->getDecl()->field_empty()) { 4530 KmpTaskSharedsPtr = 4531 Address(CGF.EmitLoadOfScalar( 4532 CGF.EmitLValueForField( 4533 TDBase, *std::next(KmpTaskTQTyRD->field_begin(), 4534 KmpTaskTShareds)), 4535 Loc), 4536 CGF.getNaturalTypeAlignment(SharedsTy)); 4537 CGF.EmitAggregateCopy(KmpTaskSharedsPtr, Shareds, SharedsTy); 4538 } 4539 // Emit initial values for private copies (if any). 4540 TaskResultTy Result; 4541 if (!Privates.empty()) { 4542 emitPrivatesInit(CGF, D, KmpTaskSharedsPtr, Base, KmpTaskTWithPrivatesQTyRD, 4543 SharedsTy, SharedsPtrTy, Data, Privates, 4544 /*ForDup=*/false); 4545 if (isOpenMPTaskLoopDirective(D.getDirectiveKind()) && 4546 (!Data.LastprivateVars.empty() || checkInitIsRequired(CGF, Privates))) { 4547 Result.TaskDupFn = emitTaskDupFunction( 4548 CGM, Loc, D, KmpTaskTWithPrivatesPtrQTy, KmpTaskTWithPrivatesQTyRD, 4549 KmpTaskTQTyRD, SharedsTy, SharedsPtrTy, Data, Privates, 4550 /*WithLastIter=*/!Data.LastprivateVars.empty()); 4551 } 4552 } 4553 // Fields of union "kmp_cmplrdata_t" for destructors and priority. 4554 enum { Priority = 0, Destructors = 1 }; 4555 // Provide pointer to function with destructors for privates. 4556 auto FI = std::next(KmpTaskTQTyRD->field_begin(), Data1); 4557 auto *KmpCmplrdataUD = (*FI)->getType()->getAsUnionType()->getDecl(); 4558 if (NeedsCleanup) { 4559 llvm::Value *DestructorFn = emitDestructorsFunction( 4560 CGM, Loc, KmpInt32Ty, KmpTaskTWithPrivatesPtrQTy, 4561 KmpTaskTWithPrivatesQTy); 4562 LValue Data1LV = CGF.EmitLValueForField(TDBase, *FI); 4563 LValue DestructorsLV = CGF.EmitLValueForField( 4564 Data1LV, *std::next(KmpCmplrdataUD->field_begin(), Destructors)); 4565 CGF.EmitStoreOfScalar(CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 4566 DestructorFn, KmpRoutineEntryPtrTy), 4567 DestructorsLV); 4568 } 4569 // Set priority. 4570 if (Data.Priority.getInt()) { 4571 LValue Data2LV = CGF.EmitLValueForField( 4572 TDBase, *std::next(KmpTaskTQTyRD->field_begin(), Data2)); 4573 LValue PriorityLV = CGF.EmitLValueForField( 4574 Data2LV, *std::next(KmpCmplrdataUD->field_begin(), Priority)); 4575 CGF.EmitStoreOfScalar(Data.Priority.getPointer(), PriorityLV); 4576 } 4577 Result.NewTask = NewTask; 4578 Result.TaskEntry = TaskEntry; 4579 Result.NewTaskNewTaskTTy = NewTaskNewTaskTTy; 4580 Result.TDBase = TDBase; 4581 Result.KmpTaskTQTyRD = KmpTaskTQTyRD; 4582 return Result; 4583 } 4584 4585 void CGOpenMPRuntime::emitTaskCall(CodeGenFunction &CGF, SourceLocation Loc, 4586 const OMPExecutableDirective &D, 4587 llvm::Value *TaskFunction, 4588 QualType SharedsTy, Address Shareds, 4589 const Expr *IfCond, 4590 const OMPTaskDataTy &Data) { 4591 if (!CGF.HaveInsertPoint()) 4592 return; 4593 4594 TaskResultTy Result = 4595 emitTaskInit(CGF, Loc, D, TaskFunction, SharedsTy, Shareds, Data); 4596 llvm::Value *NewTask = Result.NewTask; 4597 llvm::Value *TaskEntry = Result.TaskEntry; 4598 llvm::Value *NewTaskNewTaskTTy = Result.NewTaskNewTaskTTy; 4599 LValue TDBase = Result.TDBase; 4600 RecordDecl *KmpTaskTQTyRD = Result.KmpTaskTQTyRD; 4601 auto &C = CGM.getContext(); 4602 // Process list of dependences. 4603 Address DependenciesArray = Address::invalid(); 4604 unsigned NumDependencies = Data.Dependences.size(); 4605 if (NumDependencies) { 4606 // Dependence kind for RTL. 4607 enum RTLDependenceKindTy { DepIn = 0x01, DepInOut = 0x3 }; 4608 enum RTLDependInfoFieldsTy { BaseAddr, Len, Flags }; 4609 RecordDecl *KmpDependInfoRD; 4610 QualType FlagsTy = 4611 C.getIntTypeForBitwidth(C.getTypeSize(C.BoolTy), /*Signed=*/false); 4612 llvm::Type *LLVMFlagsTy = CGF.ConvertTypeForMem(FlagsTy); 4613 if (KmpDependInfoTy.isNull()) { 4614 KmpDependInfoRD = C.buildImplicitRecord("kmp_depend_info"); 4615 KmpDependInfoRD->startDefinition(); 4616 addFieldToRecordDecl(C, KmpDependInfoRD, C.getIntPtrType()); 4617 addFieldToRecordDecl(C, KmpDependInfoRD, C.getSizeType()); 4618 addFieldToRecordDecl(C, KmpDependInfoRD, FlagsTy); 4619 KmpDependInfoRD->completeDefinition(); 4620 KmpDependInfoTy = C.getRecordType(KmpDependInfoRD); 4621 } else 4622 KmpDependInfoRD = cast<RecordDecl>(KmpDependInfoTy->getAsTagDecl()); 4623 CharUnits DependencySize = C.getTypeSizeInChars(KmpDependInfoTy); 4624 // Define type kmp_depend_info[<Dependences.size()>]; 4625 QualType KmpDependInfoArrayTy = C.getConstantArrayType( 4626 KmpDependInfoTy, llvm::APInt(/*numBits=*/64, NumDependencies), 4627 ArrayType::Normal, /*IndexTypeQuals=*/0); 4628 // kmp_depend_info[<Dependences.size()>] deps; 4629 DependenciesArray = 4630 CGF.CreateMemTemp(KmpDependInfoArrayTy, ".dep.arr.addr"); 4631 for (unsigned i = 0; i < NumDependencies; ++i) { 4632 const Expr *E = Data.Dependences[i].second; 4633 auto Addr = CGF.EmitLValue(E); 4634 llvm::Value *Size; 4635 QualType Ty = E->getType(); 4636 if (auto *ASE = dyn_cast<OMPArraySectionExpr>(E->IgnoreParenImpCasts())) { 4637 LValue UpAddrLVal = 4638 CGF.EmitOMPArraySectionExpr(ASE, /*LowerBound=*/false); 4639 llvm::Value *UpAddr = 4640 CGF.Builder.CreateConstGEP1_32(UpAddrLVal.getPointer(), /*Idx0=*/1); 4641 llvm::Value *LowIntPtr = 4642 CGF.Builder.CreatePtrToInt(Addr.getPointer(), CGM.SizeTy); 4643 llvm::Value *UpIntPtr = CGF.Builder.CreatePtrToInt(UpAddr, CGM.SizeTy); 4644 Size = CGF.Builder.CreateNUWSub(UpIntPtr, LowIntPtr); 4645 } else 4646 Size = CGF.getTypeSize(Ty); 4647 auto Base = CGF.MakeAddrLValue( 4648 CGF.Builder.CreateConstArrayGEP(DependenciesArray, i, DependencySize), 4649 KmpDependInfoTy); 4650 // deps[i].base_addr = &<Dependences[i].second>; 4651 auto BaseAddrLVal = CGF.EmitLValueForField( 4652 Base, *std::next(KmpDependInfoRD->field_begin(), BaseAddr)); 4653 CGF.EmitStoreOfScalar( 4654 CGF.Builder.CreatePtrToInt(Addr.getPointer(), CGF.IntPtrTy), 4655 BaseAddrLVal); 4656 // deps[i].len = sizeof(<Dependences[i].second>); 4657 auto LenLVal = CGF.EmitLValueForField( 4658 Base, *std::next(KmpDependInfoRD->field_begin(), Len)); 4659 CGF.EmitStoreOfScalar(Size, LenLVal); 4660 // deps[i].flags = <Dependences[i].first>; 4661 RTLDependenceKindTy DepKind; 4662 switch (Data.Dependences[i].first) { 4663 case OMPC_DEPEND_in: 4664 DepKind = DepIn; 4665 break; 4666 // Out and InOut dependencies must use the same code. 4667 case OMPC_DEPEND_out: 4668 case OMPC_DEPEND_inout: 4669 DepKind = DepInOut; 4670 break; 4671 case OMPC_DEPEND_source: 4672 case OMPC_DEPEND_sink: 4673 case OMPC_DEPEND_unknown: 4674 llvm_unreachable("Unknown task dependence type"); 4675 } 4676 auto FlagsLVal = CGF.EmitLValueForField( 4677 Base, *std::next(KmpDependInfoRD->field_begin(), Flags)); 4678 CGF.EmitStoreOfScalar(llvm::ConstantInt::get(LLVMFlagsTy, DepKind), 4679 FlagsLVal); 4680 } 4681 DependenciesArray = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 4682 CGF.Builder.CreateStructGEP(DependenciesArray, 0, CharUnits::Zero()), 4683 CGF.VoidPtrTy); 4684 } 4685 4686 // NOTE: routine and part_id fields are intialized by __kmpc_omp_task_alloc() 4687 // libcall. 4688 // Build kmp_int32 __kmpc_omp_task_with_deps(ident_t *, kmp_int32 gtid, 4689 // kmp_task_t *new_task, kmp_int32 ndeps, kmp_depend_info_t *dep_list, 4690 // kmp_int32 ndeps_noalias, kmp_depend_info_t *noalias_dep_list) if dependence 4691 // list is not empty 4692 auto *ThreadID = getThreadID(CGF, Loc); 4693 auto *UpLoc = emitUpdateLocation(CGF, Loc); 4694 llvm::Value *TaskArgs[] = { UpLoc, ThreadID, NewTask }; 4695 llvm::Value *DepTaskArgs[7]; 4696 if (NumDependencies) { 4697 DepTaskArgs[0] = UpLoc; 4698 DepTaskArgs[1] = ThreadID; 4699 DepTaskArgs[2] = NewTask; 4700 DepTaskArgs[3] = CGF.Builder.getInt32(NumDependencies); 4701 DepTaskArgs[4] = DependenciesArray.getPointer(); 4702 DepTaskArgs[5] = CGF.Builder.getInt32(0); 4703 DepTaskArgs[6] = llvm::ConstantPointerNull::get(CGF.VoidPtrTy); 4704 } 4705 auto &&ThenCodeGen = [this, &Data, TDBase, KmpTaskTQTyRD, NumDependencies, 4706 &TaskArgs, 4707 &DepTaskArgs](CodeGenFunction &CGF, PrePostActionTy &) { 4708 if (!Data.Tied) { 4709 auto PartIdFI = std::next(KmpTaskTQTyRD->field_begin(), KmpTaskTPartId); 4710 auto PartIdLVal = CGF.EmitLValueForField(TDBase, *PartIdFI); 4711 CGF.EmitStoreOfScalar(CGF.Builder.getInt32(0), PartIdLVal); 4712 } 4713 if (NumDependencies) { 4714 CGF.EmitRuntimeCall( 4715 createRuntimeFunction(OMPRTL__kmpc_omp_task_with_deps), DepTaskArgs); 4716 } else { 4717 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_omp_task), 4718 TaskArgs); 4719 } 4720 // Check if parent region is untied and build return for untied task; 4721 if (auto *Region = 4722 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) 4723 Region->emitUntiedSwitch(CGF); 4724 }; 4725 4726 llvm::Value *DepWaitTaskArgs[6]; 4727 if (NumDependencies) { 4728 DepWaitTaskArgs[0] = UpLoc; 4729 DepWaitTaskArgs[1] = ThreadID; 4730 DepWaitTaskArgs[2] = CGF.Builder.getInt32(NumDependencies); 4731 DepWaitTaskArgs[3] = DependenciesArray.getPointer(); 4732 DepWaitTaskArgs[4] = CGF.Builder.getInt32(0); 4733 DepWaitTaskArgs[5] = llvm::ConstantPointerNull::get(CGF.VoidPtrTy); 4734 } 4735 auto &&ElseCodeGen = [&TaskArgs, ThreadID, NewTaskNewTaskTTy, TaskEntry, 4736 NumDependencies, &DepWaitTaskArgs, 4737 Loc](CodeGenFunction &CGF, PrePostActionTy &) { 4738 auto &RT = CGF.CGM.getOpenMPRuntime(); 4739 CodeGenFunction::RunCleanupsScope LocalScope(CGF); 4740 // Build void __kmpc_omp_wait_deps(ident_t *, kmp_int32 gtid, 4741 // kmp_int32 ndeps, kmp_depend_info_t *dep_list, kmp_int32 4742 // ndeps_noalias, kmp_depend_info_t *noalias_dep_list); if dependence info 4743 // is specified. 4744 if (NumDependencies) 4745 CGF.EmitRuntimeCall(RT.createRuntimeFunction(OMPRTL__kmpc_omp_wait_deps), 4746 DepWaitTaskArgs); 4747 // Call proxy_task_entry(gtid, new_task); 4748 auto &&CodeGen = [TaskEntry, ThreadID, NewTaskNewTaskTTy, 4749 Loc](CodeGenFunction &CGF, PrePostActionTy &Action) { 4750 Action.Enter(CGF); 4751 llvm::Value *OutlinedFnArgs[] = {ThreadID, NewTaskNewTaskTTy}; 4752 CGF.CGM.getOpenMPRuntime().emitOutlinedFunctionCall(CGF, Loc, TaskEntry, 4753 OutlinedFnArgs); 4754 }; 4755 4756 // Build void __kmpc_omp_task_begin_if0(ident_t *, kmp_int32 gtid, 4757 // kmp_task_t *new_task); 4758 // Build void __kmpc_omp_task_complete_if0(ident_t *, kmp_int32 gtid, 4759 // kmp_task_t *new_task); 4760 RegionCodeGenTy RCG(CodeGen); 4761 CommonActionTy Action( 4762 RT.createRuntimeFunction(OMPRTL__kmpc_omp_task_begin_if0), TaskArgs, 4763 RT.createRuntimeFunction(OMPRTL__kmpc_omp_task_complete_if0), TaskArgs); 4764 RCG.setAction(Action); 4765 RCG(CGF); 4766 }; 4767 4768 if (IfCond) 4769 emitOMPIfClause(CGF, IfCond, ThenCodeGen, ElseCodeGen); 4770 else { 4771 RegionCodeGenTy ThenRCG(ThenCodeGen); 4772 ThenRCG(CGF); 4773 } 4774 } 4775 4776 void CGOpenMPRuntime::emitTaskLoopCall(CodeGenFunction &CGF, SourceLocation Loc, 4777 const OMPLoopDirective &D, 4778 llvm::Value *TaskFunction, 4779 QualType SharedsTy, Address Shareds, 4780 const Expr *IfCond, 4781 const OMPTaskDataTy &Data) { 4782 if (!CGF.HaveInsertPoint()) 4783 return; 4784 TaskResultTy Result = 4785 emitTaskInit(CGF, Loc, D, TaskFunction, SharedsTy, Shareds, Data); 4786 // NOTE: routine and part_id fields are intialized by __kmpc_omp_task_alloc() 4787 // libcall. 4788 // Call to void __kmpc_taskloop(ident_t *loc, int gtid, kmp_task_t *task, int 4789 // if_val, kmp_uint64 *lb, kmp_uint64 *ub, kmp_int64 st, int nogroup, int 4790 // sched, kmp_uint64 grainsize, void *task_dup); 4791 llvm::Value *ThreadID = getThreadID(CGF, Loc); 4792 llvm::Value *UpLoc = emitUpdateLocation(CGF, Loc); 4793 llvm::Value *IfVal; 4794 if (IfCond) { 4795 IfVal = CGF.Builder.CreateIntCast(CGF.EvaluateExprAsBool(IfCond), CGF.IntTy, 4796 /*isSigned=*/true); 4797 } else 4798 IfVal = llvm::ConstantInt::getSigned(CGF.IntTy, /*V=*/1); 4799 4800 LValue LBLVal = CGF.EmitLValueForField( 4801 Result.TDBase, 4802 *std::next(Result.KmpTaskTQTyRD->field_begin(), KmpTaskTLowerBound)); 4803 auto *LBVar = 4804 cast<VarDecl>(cast<DeclRefExpr>(D.getLowerBoundVariable())->getDecl()); 4805 CGF.EmitAnyExprToMem(LBVar->getInit(), LBLVal.getAddress(), LBLVal.getQuals(), 4806 /*IsInitializer=*/true); 4807 LValue UBLVal = CGF.EmitLValueForField( 4808 Result.TDBase, 4809 *std::next(Result.KmpTaskTQTyRD->field_begin(), KmpTaskTUpperBound)); 4810 auto *UBVar = 4811 cast<VarDecl>(cast<DeclRefExpr>(D.getUpperBoundVariable())->getDecl()); 4812 CGF.EmitAnyExprToMem(UBVar->getInit(), UBLVal.getAddress(), UBLVal.getQuals(), 4813 /*IsInitializer=*/true); 4814 LValue StLVal = CGF.EmitLValueForField( 4815 Result.TDBase, 4816 *std::next(Result.KmpTaskTQTyRD->field_begin(), KmpTaskTStride)); 4817 auto *StVar = 4818 cast<VarDecl>(cast<DeclRefExpr>(D.getStrideVariable())->getDecl()); 4819 CGF.EmitAnyExprToMem(StVar->getInit(), StLVal.getAddress(), StLVal.getQuals(), 4820 /*IsInitializer=*/true); 4821 // Store reductions address. 4822 LValue RedLVal = CGF.EmitLValueForField( 4823 Result.TDBase, 4824 *std::next(Result.KmpTaskTQTyRD->field_begin(), KmpTaskTReductions)); 4825 if (Data.Reductions) 4826 CGF.EmitStoreOfScalar(Data.Reductions, RedLVal); 4827 else { 4828 CGF.EmitNullInitialization(RedLVal.getAddress(), 4829 CGF.getContext().VoidPtrTy); 4830 } 4831 enum { NoSchedule = 0, Grainsize = 1, NumTasks = 2 }; 4832 llvm::Value *TaskArgs[] = { 4833 UpLoc, 4834 ThreadID, 4835 Result.NewTask, 4836 IfVal, 4837 LBLVal.getPointer(), 4838 UBLVal.getPointer(), 4839 CGF.EmitLoadOfScalar(StLVal, SourceLocation()), 4840 llvm::ConstantInt::getNullValue( 4841 CGF.IntTy), // Always 0 because taskgroup emitted by the compiler 4842 llvm::ConstantInt::getSigned( 4843 CGF.IntTy, Data.Schedule.getPointer() 4844 ? Data.Schedule.getInt() ? NumTasks : Grainsize 4845 : NoSchedule), 4846 Data.Schedule.getPointer() 4847 ? CGF.Builder.CreateIntCast(Data.Schedule.getPointer(), CGF.Int64Ty, 4848 /*isSigned=*/false) 4849 : llvm::ConstantInt::get(CGF.Int64Ty, /*V=*/0), 4850 Result.TaskDupFn ? CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 4851 Result.TaskDupFn, CGF.VoidPtrTy) 4852 : llvm::ConstantPointerNull::get(CGF.VoidPtrTy)}; 4853 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_taskloop), TaskArgs); 4854 } 4855 4856 /// \brief Emit reduction operation for each element of array (required for 4857 /// array sections) LHS op = RHS. 4858 /// \param Type Type of array. 4859 /// \param LHSVar Variable on the left side of the reduction operation 4860 /// (references element of array in original variable). 4861 /// \param RHSVar Variable on the right side of the reduction operation 4862 /// (references element of array in original variable). 4863 /// \param RedOpGen Generator of reduction operation with use of LHSVar and 4864 /// RHSVar. 4865 static void EmitOMPAggregateReduction( 4866 CodeGenFunction &CGF, QualType Type, const VarDecl *LHSVar, 4867 const VarDecl *RHSVar, 4868 const llvm::function_ref<void(CodeGenFunction &CGF, const Expr *, 4869 const Expr *, const Expr *)> &RedOpGen, 4870 const Expr *XExpr = nullptr, const Expr *EExpr = nullptr, 4871 const Expr *UpExpr = nullptr) { 4872 // Perform element-by-element initialization. 4873 QualType ElementTy; 4874 Address LHSAddr = CGF.GetAddrOfLocalVar(LHSVar); 4875 Address RHSAddr = CGF.GetAddrOfLocalVar(RHSVar); 4876 4877 // Drill down to the base element type on both arrays. 4878 auto ArrayTy = Type->getAsArrayTypeUnsafe(); 4879 auto NumElements = CGF.emitArrayLength(ArrayTy, ElementTy, LHSAddr); 4880 4881 auto RHSBegin = RHSAddr.getPointer(); 4882 auto LHSBegin = LHSAddr.getPointer(); 4883 // Cast from pointer to array type to pointer to single element. 4884 auto LHSEnd = CGF.Builder.CreateGEP(LHSBegin, NumElements); 4885 // The basic structure here is a while-do loop. 4886 auto BodyBB = CGF.createBasicBlock("omp.arraycpy.body"); 4887 auto DoneBB = CGF.createBasicBlock("omp.arraycpy.done"); 4888 auto IsEmpty = 4889 CGF.Builder.CreateICmpEQ(LHSBegin, LHSEnd, "omp.arraycpy.isempty"); 4890 CGF.Builder.CreateCondBr(IsEmpty, DoneBB, BodyBB); 4891 4892 // Enter the loop body, making that address the current address. 4893 auto EntryBB = CGF.Builder.GetInsertBlock(); 4894 CGF.EmitBlock(BodyBB); 4895 4896 CharUnits ElementSize = CGF.getContext().getTypeSizeInChars(ElementTy); 4897 4898 llvm::PHINode *RHSElementPHI = CGF.Builder.CreatePHI( 4899 RHSBegin->getType(), 2, "omp.arraycpy.srcElementPast"); 4900 RHSElementPHI->addIncoming(RHSBegin, EntryBB); 4901 Address RHSElementCurrent = 4902 Address(RHSElementPHI, 4903 RHSAddr.getAlignment().alignmentOfArrayElement(ElementSize)); 4904 4905 llvm::PHINode *LHSElementPHI = CGF.Builder.CreatePHI( 4906 LHSBegin->getType(), 2, "omp.arraycpy.destElementPast"); 4907 LHSElementPHI->addIncoming(LHSBegin, EntryBB); 4908 Address LHSElementCurrent = 4909 Address(LHSElementPHI, 4910 LHSAddr.getAlignment().alignmentOfArrayElement(ElementSize)); 4911 4912 // Emit copy. 4913 CodeGenFunction::OMPPrivateScope Scope(CGF); 4914 Scope.addPrivate(LHSVar, [=]() -> Address { return LHSElementCurrent; }); 4915 Scope.addPrivate(RHSVar, [=]() -> Address { return RHSElementCurrent; }); 4916 Scope.Privatize(); 4917 RedOpGen(CGF, XExpr, EExpr, UpExpr); 4918 Scope.ForceCleanup(); 4919 4920 // Shift the address forward by one element. 4921 auto LHSElementNext = CGF.Builder.CreateConstGEP1_32( 4922 LHSElementPHI, /*Idx0=*/1, "omp.arraycpy.dest.element"); 4923 auto RHSElementNext = CGF.Builder.CreateConstGEP1_32( 4924 RHSElementPHI, /*Idx0=*/1, "omp.arraycpy.src.element"); 4925 // Check whether we've reached the end. 4926 auto Done = 4927 CGF.Builder.CreateICmpEQ(LHSElementNext, LHSEnd, "omp.arraycpy.done"); 4928 CGF.Builder.CreateCondBr(Done, DoneBB, BodyBB); 4929 LHSElementPHI->addIncoming(LHSElementNext, CGF.Builder.GetInsertBlock()); 4930 RHSElementPHI->addIncoming(RHSElementNext, CGF.Builder.GetInsertBlock()); 4931 4932 // Done. 4933 CGF.EmitBlock(DoneBB, /*IsFinished=*/true); 4934 } 4935 4936 /// Emit reduction combiner. If the combiner is a simple expression emit it as 4937 /// is, otherwise consider it as combiner of UDR decl and emit it as a call of 4938 /// UDR combiner function. 4939 static void emitReductionCombiner(CodeGenFunction &CGF, 4940 const Expr *ReductionOp) { 4941 if (auto *CE = dyn_cast<CallExpr>(ReductionOp)) 4942 if (auto *OVE = dyn_cast<OpaqueValueExpr>(CE->getCallee())) 4943 if (auto *DRE = 4944 dyn_cast<DeclRefExpr>(OVE->getSourceExpr()->IgnoreImpCasts())) 4945 if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(DRE->getDecl())) { 4946 std::pair<llvm::Function *, llvm::Function *> Reduction = 4947 CGF.CGM.getOpenMPRuntime().getUserDefinedReduction(DRD); 4948 RValue Func = RValue::get(Reduction.first); 4949 CodeGenFunction::OpaqueValueMapping Map(CGF, OVE, Func); 4950 CGF.EmitIgnoredExpr(ReductionOp); 4951 return; 4952 } 4953 CGF.EmitIgnoredExpr(ReductionOp); 4954 } 4955 4956 llvm::Value *CGOpenMPRuntime::emitReductionFunction( 4957 CodeGenModule &CGM, SourceLocation Loc, llvm::Type *ArgsType, 4958 ArrayRef<const Expr *> Privates, ArrayRef<const Expr *> LHSExprs, 4959 ArrayRef<const Expr *> RHSExprs, ArrayRef<const Expr *> ReductionOps) { 4960 auto &C = CGM.getContext(); 4961 4962 // void reduction_func(void *LHSArg, void *RHSArg); 4963 FunctionArgList Args; 4964 ImplicitParamDecl LHSArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy, 4965 ImplicitParamDecl::Other); 4966 ImplicitParamDecl RHSArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy, 4967 ImplicitParamDecl::Other); 4968 Args.push_back(&LHSArg); 4969 Args.push_back(&RHSArg); 4970 auto &CGFI = CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args); 4971 auto *Fn = llvm::Function::Create( 4972 CGM.getTypes().GetFunctionType(CGFI), llvm::GlobalValue::InternalLinkage, 4973 ".omp.reduction.reduction_func", &CGM.getModule()); 4974 CGM.SetInternalFunctionAttributes(/*D=*/nullptr, Fn, CGFI); 4975 CodeGenFunction CGF(CGM); 4976 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, CGFI, Args, Loc, Loc); 4977 4978 // Dst = (void*[n])(LHSArg); 4979 // Src = (void*[n])(RHSArg); 4980 Address LHS(CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 4981 CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(&LHSArg)), 4982 ArgsType), CGF.getPointerAlign()); 4983 Address RHS(CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 4984 CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(&RHSArg)), 4985 ArgsType), CGF.getPointerAlign()); 4986 4987 // ... 4988 // *(Type<i>*)lhs[i] = RedOp<i>(*(Type<i>*)lhs[i], *(Type<i>*)rhs[i]); 4989 // ... 4990 CodeGenFunction::OMPPrivateScope Scope(CGF); 4991 auto IPriv = Privates.begin(); 4992 unsigned Idx = 0; 4993 for (unsigned I = 0, E = ReductionOps.size(); I < E; ++I, ++IPriv, ++Idx) { 4994 auto RHSVar = cast<VarDecl>(cast<DeclRefExpr>(RHSExprs[I])->getDecl()); 4995 Scope.addPrivate(RHSVar, [&]() -> Address { 4996 return emitAddrOfVarFromArray(CGF, RHS, Idx, RHSVar); 4997 }); 4998 auto LHSVar = cast<VarDecl>(cast<DeclRefExpr>(LHSExprs[I])->getDecl()); 4999 Scope.addPrivate(LHSVar, [&]() -> Address { 5000 return emitAddrOfVarFromArray(CGF, LHS, Idx, LHSVar); 5001 }); 5002 QualType PrivTy = (*IPriv)->getType(); 5003 if (PrivTy->isVariablyModifiedType()) { 5004 // Get array size and emit VLA type. 5005 ++Idx; 5006 Address Elem = 5007 CGF.Builder.CreateConstArrayGEP(LHS, Idx, CGF.getPointerSize()); 5008 llvm::Value *Ptr = CGF.Builder.CreateLoad(Elem); 5009 auto *VLA = CGF.getContext().getAsVariableArrayType(PrivTy); 5010 auto *OVE = cast<OpaqueValueExpr>(VLA->getSizeExpr()); 5011 CodeGenFunction::OpaqueValueMapping OpaqueMap( 5012 CGF, OVE, RValue::get(CGF.Builder.CreatePtrToInt(Ptr, CGF.SizeTy))); 5013 CGF.EmitVariablyModifiedType(PrivTy); 5014 } 5015 } 5016 Scope.Privatize(); 5017 IPriv = Privates.begin(); 5018 auto ILHS = LHSExprs.begin(); 5019 auto IRHS = RHSExprs.begin(); 5020 for (auto *E : ReductionOps) { 5021 if ((*IPriv)->getType()->isArrayType()) { 5022 // Emit reduction for array section. 5023 auto *LHSVar = cast<VarDecl>(cast<DeclRefExpr>(*ILHS)->getDecl()); 5024 auto *RHSVar = cast<VarDecl>(cast<DeclRefExpr>(*IRHS)->getDecl()); 5025 EmitOMPAggregateReduction( 5026 CGF, (*IPriv)->getType(), LHSVar, RHSVar, 5027 [=](CodeGenFunction &CGF, const Expr *, const Expr *, const Expr *) { 5028 emitReductionCombiner(CGF, E); 5029 }); 5030 } else 5031 // Emit reduction for array subscript or single variable. 5032 emitReductionCombiner(CGF, E); 5033 ++IPriv; 5034 ++ILHS; 5035 ++IRHS; 5036 } 5037 Scope.ForceCleanup(); 5038 CGF.FinishFunction(); 5039 return Fn; 5040 } 5041 5042 void CGOpenMPRuntime::emitSingleReductionCombiner(CodeGenFunction &CGF, 5043 const Expr *ReductionOp, 5044 const Expr *PrivateRef, 5045 const DeclRefExpr *LHS, 5046 const DeclRefExpr *RHS) { 5047 if (PrivateRef->getType()->isArrayType()) { 5048 // Emit reduction for array section. 5049 auto *LHSVar = cast<VarDecl>(LHS->getDecl()); 5050 auto *RHSVar = cast<VarDecl>(RHS->getDecl()); 5051 EmitOMPAggregateReduction( 5052 CGF, PrivateRef->getType(), LHSVar, RHSVar, 5053 [=](CodeGenFunction &CGF, const Expr *, const Expr *, const Expr *) { 5054 emitReductionCombiner(CGF, ReductionOp); 5055 }); 5056 } else 5057 // Emit reduction for array subscript or single variable. 5058 emitReductionCombiner(CGF, ReductionOp); 5059 } 5060 5061 void CGOpenMPRuntime::emitReduction(CodeGenFunction &CGF, SourceLocation Loc, 5062 ArrayRef<const Expr *> Privates, 5063 ArrayRef<const Expr *> LHSExprs, 5064 ArrayRef<const Expr *> RHSExprs, 5065 ArrayRef<const Expr *> ReductionOps, 5066 ReductionOptionsTy Options) { 5067 if (!CGF.HaveInsertPoint()) 5068 return; 5069 5070 bool WithNowait = Options.WithNowait; 5071 bool SimpleReduction = Options.SimpleReduction; 5072 5073 // Next code should be emitted for reduction: 5074 // 5075 // static kmp_critical_name lock = { 0 }; 5076 // 5077 // void reduce_func(void *lhs[<n>], void *rhs[<n>]) { 5078 // *(Type0*)lhs[0] = ReductionOperation0(*(Type0*)lhs[0], *(Type0*)rhs[0]); 5079 // ... 5080 // *(Type<n>-1*)lhs[<n>-1] = ReductionOperation<n>-1(*(Type<n>-1*)lhs[<n>-1], 5081 // *(Type<n>-1*)rhs[<n>-1]); 5082 // } 5083 // 5084 // ... 5085 // void *RedList[<n>] = {&<RHSExprs>[0], ..., &<RHSExprs>[<n>-1]}; 5086 // switch (__kmpc_reduce{_nowait}(<loc>, <gtid>, <n>, sizeof(RedList), 5087 // RedList, reduce_func, &<lock>)) { 5088 // case 1: 5089 // ... 5090 // <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]); 5091 // ... 5092 // __kmpc_end_reduce{_nowait}(<loc>, <gtid>, &<lock>); 5093 // break; 5094 // case 2: 5095 // ... 5096 // Atomic(<LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i])); 5097 // ... 5098 // [__kmpc_end_reduce(<loc>, <gtid>, &<lock>);] 5099 // break; 5100 // default:; 5101 // } 5102 // 5103 // if SimpleReduction is true, only the next code is generated: 5104 // ... 5105 // <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]); 5106 // ... 5107 5108 auto &C = CGM.getContext(); 5109 5110 if (SimpleReduction) { 5111 CodeGenFunction::RunCleanupsScope Scope(CGF); 5112 auto IPriv = Privates.begin(); 5113 auto ILHS = LHSExprs.begin(); 5114 auto IRHS = RHSExprs.begin(); 5115 for (auto *E : ReductionOps) { 5116 emitSingleReductionCombiner(CGF, E, *IPriv, cast<DeclRefExpr>(*ILHS), 5117 cast<DeclRefExpr>(*IRHS)); 5118 ++IPriv; 5119 ++ILHS; 5120 ++IRHS; 5121 } 5122 return; 5123 } 5124 5125 // 1. Build a list of reduction variables. 5126 // void *RedList[<n>] = {<ReductionVars>[0], ..., <ReductionVars>[<n>-1]}; 5127 auto Size = RHSExprs.size(); 5128 for (auto *E : Privates) { 5129 if (E->getType()->isVariablyModifiedType()) 5130 // Reserve place for array size. 5131 ++Size; 5132 } 5133 llvm::APInt ArraySize(/*unsigned int numBits=*/32, Size); 5134 QualType ReductionArrayTy = 5135 C.getConstantArrayType(C.VoidPtrTy, ArraySize, ArrayType::Normal, 5136 /*IndexTypeQuals=*/0); 5137 Address ReductionList = 5138 CGF.CreateMemTemp(ReductionArrayTy, ".omp.reduction.red_list"); 5139 auto IPriv = Privates.begin(); 5140 unsigned Idx = 0; 5141 for (unsigned I = 0, E = RHSExprs.size(); I < E; ++I, ++IPriv, ++Idx) { 5142 Address Elem = 5143 CGF.Builder.CreateConstArrayGEP(ReductionList, Idx, CGF.getPointerSize()); 5144 CGF.Builder.CreateStore( 5145 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 5146 CGF.EmitLValue(RHSExprs[I]).getPointer(), CGF.VoidPtrTy), 5147 Elem); 5148 if ((*IPriv)->getType()->isVariablyModifiedType()) { 5149 // Store array size. 5150 ++Idx; 5151 Elem = CGF.Builder.CreateConstArrayGEP(ReductionList, Idx, 5152 CGF.getPointerSize()); 5153 llvm::Value *Size = CGF.Builder.CreateIntCast( 5154 CGF.getVLASize( 5155 CGF.getContext().getAsVariableArrayType((*IPriv)->getType())) 5156 .first, 5157 CGF.SizeTy, /*isSigned=*/false); 5158 CGF.Builder.CreateStore(CGF.Builder.CreateIntToPtr(Size, CGF.VoidPtrTy), 5159 Elem); 5160 } 5161 } 5162 5163 // 2. Emit reduce_func(). 5164 auto *ReductionFn = emitReductionFunction( 5165 CGM, Loc, CGF.ConvertTypeForMem(ReductionArrayTy)->getPointerTo(), 5166 Privates, LHSExprs, RHSExprs, ReductionOps); 5167 5168 // 3. Create static kmp_critical_name lock = { 0 }; 5169 auto *Lock = getCriticalRegionLock(".reduction"); 5170 5171 // 4. Build res = __kmpc_reduce{_nowait}(<loc>, <gtid>, <n>, sizeof(RedList), 5172 // RedList, reduce_func, &<lock>); 5173 auto *IdentTLoc = emitUpdateLocation(CGF, Loc, OMP_ATOMIC_REDUCE); 5174 auto *ThreadId = getThreadID(CGF, Loc); 5175 auto *ReductionArrayTySize = CGF.getTypeSize(ReductionArrayTy); 5176 auto *RL = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 5177 ReductionList.getPointer(), CGF.VoidPtrTy); 5178 llvm::Value *Args[] = { 5179 IdentTLoc, // ident_t *<loc> 5180 ThreadId, // i32 <gtid> 5181 CGF.Builder.getInt32(RHSExprs.size()), // i32 <n> 5182 ReductionArrayTySize, // size_type sizeof(RedList) 5183 RL, // void *RedList 5184 ReductionFn, // void (*) (void *, void *) <reduce_func> 5185 Lock // kmp_critical_name *&<lock> 5186 }; 5187 auto Res = CGF.EmitRuntimeCall( 5188 createRuntimeFunction(WithNowait ? OMPRTL__kmpc_reduce_nowait 5189 : OMPRTL__kmpc_reduce), 5190 Args); 5191 5192 // 5. Build switch(res) 5193 auto *DefaultBB = CGF.createBasicBlock(".omp.reduction.default"); 5194 auto *SwInst = CGF.Builder.CreateSwitch(Res, DefaultBB, /*NumCases=*/2); 5195 5196 // 6. Build case 1: 5197 // ... 5198 // <LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i]); 5199 // ... 5200 // __kmpc_end_reduce{_nowait}(<loc>, <gtid>, &<lock>); 5201 // break; 5202 auto *Case1BB = CGF.createBasicBlock(".omp.reduction.case1"); 5203 SwInst->addCase(CGF.Builder.getInt32(1), Case1BB); 5204 CGF.EmitBlock(Case1BB); 5205 5206 // Add emission of __kmpc_end_reduce{_nowait}(<loc>, <gtid>, &<lock>); 5207 llvm::Value *EndArgs[] = { 5208 IdentTLoc, // ident_t *<loc> 5209 ThreadId, // i32 <gtid> 5210 Lock // kmp_critical_name *&<lock> 5211 }; 5212 auto &&CodeGen = [&Privates, &LHSExprs, &RHSExprs, &ReductionOps]( 5213 CodeGenFunction &CGF, PrePostActionTy &Action) { 5214 auto &RT = CGF.CGM.getOpenMPRuntime(); 5215 auto IPriv = Privates.begin(); 5216 auto ILHS = LHSExprs.begin(); 5217 auto IRHS = RHSExprs.begin(); 5218 for (auto *E : ReductionOps) { 5219 RT.emitSingleReductionCombiner(CGF, E, *IPriv, cast<DeclRefExpr>(*ILHS), 5220 cast<DeclRefExpr>(*IRHS)); 5221 ++IPriv; 5222 ++ILHS; 5223 ++IRHS; 5224 } 5225 }; 5226 RegionCodeGenTy RCG(CodeGen); 5227 CommonActionTy Action( 5228 nullptr, llvm::None, 5229 createRuntimeFunction(WithNowait ? OMPRTL__kmpc_end_reduce_nowait 5230 : OMPRTL__kmpc_end_reduce), 5231 EndArgs); 5232 RCG.setAction(Action); 5233 RCG(CGF); 5234 5235 CGF.EmitBranch(DefaultBB); 5236 5237 // 7. Build case 2: 5238 // ... 5239 // Atomic(<LHSExprs>[i] = RedOp<i>(*<LHSExprs>[i], *<RHSExprs>[i])); 5240 // ... 5241 // break; 5242 auto *Case2BB = CGF.createBasicBlock(".omp.reduction.case2"); 5243 SwInst->addCase(CGF.Builder.getInt32(2), Case2BB); 5244 CGF.EmitBlock(Case2BB); 5245 5246 auto &&AtomicCodeGen = [Loc, &Privates, &LHSExprs, &RHSExprs, &ReductionOps]( 5247 CodeGenFunction &CGF, PrePostActionTy &Action) { 5248 auto ILHS = LHSExprs.begin(); 5249 auto IRHS = RHSExprs.begin(); 5250 auto IPriv = Privates.begin(); 5251 for (auto *E : ReductionOps) { 5252 const Expr *XExpr = nullptr; 5253 const Expr *EExpr = nullptr; 5254 const Expr *UpExpr = nullptr; 5255 BinaryOperatorKind BO = BO_Comma; 5256 if (auto *BO = dyn_cast<BinaryOperator>(E)) { 5257 if (BO->getOpcode() == BO_Assign) { 5258 XExpr = BO->getLHS(); 5259 UpExpr = BO->getRHS(); 5260 } 5261 } 5262 // Try to emit update expression as a simple atomic. 5263 auto *RHSExpr = UpExpr; 5264 if (RHSExpr) { 5265 // Analyze RHS part of the whole expression. 5266 if (auto *ACO = dyn_cast<AbstractConditionalOperator>( 5267 RHSExpr->IgnoreParenImpCasts())) { 5268 // If this is a conditional operator, analyze its condition for 5269 // min/max reduction operator. 5270 RHSExpr = ACO->getCond(); 5271 } 5272 if (auto *BORHS = 5273 dyn_cast<BinaryOperator>(RHSExpr->IgnoreParenImpCasts())) { 5274 EExpr = BORHS->getRHS(); 5275 BO = BORHS->getOpcode(); 5276 } 5277 } 5278 if (XExpr) { 5279 auto *VD = cast<VarDecl>(cast<DeclRefExpr>(*ILHS)->getDecl()); 5280 auto &&AtomicRedGen = [BO, VD, 5281 Loc](CodeGenFunction &CGF, const Expr *XExpr, 5282 const Expr *EExpr, const Expr *UpExpr) { 5283 LValue X = CGF.EmitLValue(XExpr); 5284 RValue E; 5285 if (EExpr) 5286 E = CGF.EmitAnyExpr(EExpr); 5287 CGF.EmitOMPAtomicSimpleUpdateExpr( 5288 X, E, BO, /*IsXLHSInRHSPart=*/true, 5289 llvm::AtomicOrdering::Monotonic, Loc, 5290 [&CGF, UpExpr, VD, Loc](RValue XRValue) { 5291 CodeGenFunction::OMPPrivateScope PrivateScope(CGF); 5292 PrivateScope.addPrivate( 5293 VD, [&CGF, VD, XRValue, Loc]() -> Address { 5294 Address LHSTemp = CGF.CreateMemTemp(VD->getType()); 5295 CGF.emitOMPSimpleStore( 5296 CGF.MakeAddrLValue(LHSTemp, VD->getType()), XRValue, 5297 VD->getType().getNonReferenceType(), Loc); 5298 return LHSTemp; 5299 }); 5300 (void)PrivateScope.Privatize(); 5301 return CGF.EmitAnyExpr(UpExpr); 5302 }); 5303 }; 5304 if ((*IPriv)->getType()->isArrayType()) { 5305 // Emit atomic reduction for array section. 5306 auto *RHSVar = cast<VarDecl>(cast<DeclRefExpr>(*IRHS)->getDecl()); 5307 EmitOMPAggregateReduction(CGF, (*IPriv)->getType(), VD, RHSVar, 5308 AtomicRedGen, XExpr, EExpr, UpExpr); 5309 } else 5310 // Emit atomic reduction for array subscript or single variable. 5311 AtomicRedGen(CGF, XExpr, EExpr, UpExpr); 5312 } else { 5313 // Emit as a critical region. 5314 auto &&CritRedGen = [E, Loc](CodeGenFunction &CGF, const Expr *, 5315 const Expr *, const Expr *) { 5316 auto &RT = CGF.CGM.getOpenMPRuntime(); 5317 RT.emitCriticalRegion( 5318 CGF, ".atomic_reduction", 5319 [=](CodeGenFunction &CGF, PrePostActionTy &Action) { 5320 Action.Enter(CGF); 5321 emitReductionCombiner(CGF, E); 5322 }, 5323 Loc); 5324 }; 5325 if ((*IPriv)->getType()->isArrayType()) { 5326 auto *LHSVar = cast<VarDecl>(cast<DeclRefExpr>(*ILHS)->getDecl()); 5327 auto *RHSVar = cast<VarDecl>(cast<DeclRefExpr>(*IRHS)->getDecl()); 5328 EmitOMPAggregateReduction(CGF, (*IPriv)->getType(), LHSVar, RHSVar, 5329 CritRedGen); 5330 } else 5331 CritRedGen(CGF, nullptr, nullptr, nullptr); 5332 } 5333 ++ILHS; 5334 ++IRHS; 5335 ++IPriv; 5336 } 5337 }; 5338 RegionCodeGenTy AtomicRCG(AtomicCodeGen); 5339 if (!WithNowait) { 5340 // Add emission of __kmpc_end_reduce(<loc>, <gtid>, &<lock>); 5341 llvm::Value *EndArgs[] = { 5342 IdentTLoc, // ident_t *<loc> 5343 ThreadId, // i32 <gtid> 5344 Lock // kmp_critical_name *&<lock> 5345 }; 5346 CommonActionTy Action(nullptr, llvm::None, 5347 createRuntimeFunction(OMPRTL__kmpc_end_reduce), 5348 EndArgs); 5349 AtomicRCG.setAction(Action); 5350 AtomicRCG(CGF); 5351 } else 5352 AtomicRCG(CGF); 5353 5354 CGF.EmitBranch(DefaultBB); 5355 CGF.EmitBlock(DefaultBB, /*IsFinished=*/true); 5356 } 5357 5358 /// Generates unique name for artificial threadprivate variables. 5359 /// Format is: <Prefix> "." <Loc_raw_encoding> "_" <N> 5360 static std::string generateUniqueName(StringRef Prefix, SourceLocation Loc, 5361 unsigned N) { 5362 SmallString<256> Buffer; 5363 llvm::raw_svector_ostream Out(Buffer); 5364 Out << Prefix << "." << Loc.getRawEncoding() << "_" << N; 5365 return Out.str(); 5366 } 5367 5368 /// Emits reduction initializer function: 5369 /// \code 5370 /// void @.red_init(void* %arg) { 5371 /// %0 = bitcast void* %arg to <type>* 5372 /// store <type> <init>, <type>* %0 5373 /// ret void 5374 /// } 5375 /// \endcode 5376 static llvm::Value *emitReduceInitFunction(CodeGenModule &CGM, 5377 SourceLocation Loc, 5378 ReductionCodeGen &RCG, unsigned N) { 5379 auto &C = CGM.getContext(); 5380 FunctionArgList Args; 5381 ImplicitParamDecl Param(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy, 5382 ImplicitParamDecl::Other); 5383 Args.emplace_back(&Param); 5384 auto &FnInfo = 5385 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args); 5386 auto *FnTy = CGM.getTypes().GetFunctionType(FnInfo); 5387 auto *Fn = llvm::Function::Create(FnTy, llvm::GlobalValue::InternalLinkage, 5388 ".red_init.", &CGM.getModule()); 5389 CGM.SetInternalFunctionAttributes(/*D=*/nullptr, Fn, FnInfo); 5390 CodeGenFunction CGF(CGM); 5391 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FnInfo, Args, Loc, Loc); 5392 Address PrivateAddr = CGF.EmitLoadOfPointer( 5393 CGF.GetAddrOfLocalVar(&Param), 5394 C.getPointerType(C.VoidPtrTy).castAs<PointerType>()); 5395 llvm::Value *Size = nullptr; 5396 // If the size of the reduction item is non-constant, load it from global 5397 // threadprivate variable. 5398 if (RCG.getSizes(N).second) { 5399 Address SizeAddr = CGM.getOpenMPRuntime().getAddrOfArtificialThreadPrivate( 5400 CGF, CGM.getContext().getSizeType(), 5401 generateUniqueName("reduction_size", Loc, N)); 5402 Size = 5403 CGF.EmitLoadOfScalar(SizeAddr, /*Volatile=*/false, 5404 CGM.getContext().getSizeType(), SourceLocation()); 5405 } 5406 RCG.emitAggregateType(CGF, N, Size); 5407 LValue SharedLVal; 5408 // If initializer uses initializer from declare reduction construct, emit a 5409 // pointer to the address of the original reduction item (reuired by reduction 5410 // initializer) 5411 if (RCG.usesReductionInitializer(N)) { 5412 Address SharedAddr = 5413 CGM.getOpenMPRuntime().getAddrOfArtificialThreadPrivate( 5414 CGF, CGM.getContext().VoidPtrTy, 5415 generateUniqueName("reduction", Loc, N)); 5416 SharedLVal = CGF.MakeAddrLValue(SharedAddr, CGM.getContext().VoidPtrTy); 5417 } else { 5418 SharedLVal = CGF.MakeNaturalAlignAddrLValue( 5419 llvm::ConstantPointerNull::get(CGM.VoidPtrTy), 5420 CGM.getContext().VoidPtrTy); 5421 } 5422 // Emit the initializer: 5423 // %0 = bitcast void* %arg to <type>* 5424 // store <type> <init>, <type>* %0 5425 RCG.emitInitialization(CGF, N, PrivateAddr, SharedLVal, 5426 [](CodeGenFunction &) { return false; }); 5427 CGF.FinishFunction(); 5428 return Fn; 5429 } 5430 5431 /// Emits reduction combiner function: 5432 /// \code 5433 /// void @.red_comb(void* %arg0, void* %arg1) { 5434 /// %lhs = bitcast void* %arg0 to <type>* 5435 /// %rhs = bitcast void* %arg1 to <type>* 5436 /// %2 = <ReductionOp>(<type>* %lhs, <type>* %rhs) 5437 /// store <type> %2, <type>* %lhs 5438 /// ret void 5439 /// } 5440 /// \endcode 5441 static llvm::Value *emitReduceCombFunction(CodeGenModule &CGM, 5442 SourceLocation Loc, 5443 ReductionCodeGen &RCG, unsigned N, 5444 const Expr *ReductionOp, 5445 const Expr *LHS, const Expr *RHS, 5446 const Expr *PrivateRef) { 5447 auto &C = CGM.getContext(); 5448 auto *LHSVD = cast<VarDecl>(cast<DeclRefExpr>(LHS)->getDecl()); 5449 auto *RHSVD = cast<VarDecl>(cast<DeclRefExpr>(RHS)->getDecl()); 5450 FunctionArgList Args; 5451 ImplicitParamDecl ParamInOut(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, 5452 C.VoidPtrTy, ImplicitParamDecl::Other); 5453 ImplicitParamDecl ParamIn(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy, 5454 ImplicitParamDecl::Other); 5455 Args.emplace_back(&ParamInOut); 5456 Args.emplace_back(&ParamIn); 5457 auto &FnInfo = 5458 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args); 5459 auto *FnTy = CGM.getTypes().GetFunctionType(FnInfo); 5460 auto *Fn = llvm::Function::Create(FnTy, llvm::GlobalValue::InternalLinkage, 5461 ".red_comb.", &CGM.getModule()); 5462 CGM.SetInternalFunctionAttributes(/*D=*/nullptr, Fn, FnInfo); 5463 CodeGenFunction CGF(CGM); 5464 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FnInfo, Args, Loc, Loc); 5465 llvm::Value *Size = nullptr; 5466 // If the size of the reduction item is non-constant, load it from global 5467 // threadprivate variable. 5468 if (RCG.getSizes(N).second) { 5469 Address SizeAddr = CGM.getOpenMPRuntime().getAddrOfArtificialThreadPrivate( 5470 CGF, CGM.getContext().getSizeType(), 5471 generateUniqueName("reduction_size", Loc, N)); 5472 Size = 5473 CGF.EmitLoadOfScalar(SizeAddr, /*Volatile=*/false, 5474 CGM.getContext().getSizeType(), SourceLocation()); 5475 } 5476 RCG.emitAggregateType(CGF, N, Size); 5477 // Remap lhs and rhs variables to the addresses of the function arguments. 5478 // %lhs = bitcast void* %arg0 to <type>* 5479 // %rhs = bitcast void* %arg1 to <type>* 5480 CodeGenFunction::OMPPrivateScope PrivateScope(CGF); 5481 PrivateScope.addPrivate(LHSVD, [&C, &CGF, &ParamInOut, LHSVD]() -> Address { 5482 // Pull out the pointer to the variable. 5483 Address PtrAddr = CGF.EmitLoadOfPointer( 5484 CGF.GetAddrOfLocalVar(&ParamInOut), 5485 C.getPointerType(C.VoidPtrTy).castAs<PointerType>()); 5486 return CGF.Builder.CreateElementBitCast( 5487 PtrAddr, CGF.ConvertTypeForMem(LHSVD->getType())); 5488 }); 5489 PrivateScope.addPrivate(RHSVD, [&C, &CGF, &ParamIn, RHSVD]() -> Address { 5490 // Pull out the pointer to the variable. 5491 Address PtrAddr = CGF.EmitLoadOfPointer( 5492 CGF.GetAddrOfLocalVar(&ParamIn), 5493 C.getPointerType(C.VoidPtrTy).castAs<PointerType>()); 5494 return CGF.Builder.CreateElementBitCast( 5495 PtrAddr, CGF.ConvertTypeForMem(RHSVD->getType())); 5496 }); 5497 PrivateScope.Privatize(); 5498 // Emit the combiner body: 5499 // %2 = <ReductionOp>(<type> *%lhs, <type> *%rhs) 5500 // store <type> %2, <type>* %lhs 5501 CGM.getOpenMPRuntime().emitSingleReductionCombiner( 5502 CGF, ReductionOp, PrivateRef, cast<DeclRefExpr>(LHS), 5503 cast<DeclRefExpr>(RHS)); 5504 CGF.FinishFunction(); 5505 return Fn; 5506 } 5507 5508 /// Emits reduction finalizer function: 5509 /// \code 5510 /// void @.red_fini(void* %arg) { 5511 /// %0 = bitcast void* %arg to <type>* 5512 /// <destroy>(<type>* %0) 5513 /// ret void 5514 /// } 5515 /// \endcode 5516 static llvm::Value *emitReduceFiniFunction(CodeGenModule &CGM, 5517 SourceLocation Loc, 5518 ReductionCodeGen &RCG, unsigned N) { 5519 if (!RCG.needCleanups(N)) 5520 return nullptr; 5521 auto &C = CGM.getContext(); 5522 FunctionArgList Args; 5523 ImplicitParamDecl Param(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.VoidPtrTy, 5524 ImplicitParamDecl::Other); 5525 Args.emplace_back(&Param); 5526 auto &FnInfo = 5527 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, Args); 5528 auto *FnTy = CGM.getTypes().GetFunctionType(FnInfo); 5529 auto *Fn = llvm::Function::Create(FnTy, llvm::GlobalValue::InternalLinkage, 5530 ".red_fini.", &CGM.getModule()); 5531 CGM.SetInternalFunctionAttributes(/*D=*/nullptr, Fn, FnInfo); 5532 CodeGenFunction CGF(CGM); 5533 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FnInfo, Args, Loc, Loc); 5534 Address PrivateAddr = CGF.EmitLoadOfPointer( 5535 CGF.GetAddrOfLocalVar(&Param), 5536 C.getPointerType(C.VoidPtrTy).castAs<PointerType>()); 5537 llvm::Value *Size = nullptr; 5538 // If the size of the reduction item is non-constant, load it from global 5539 // threadprivate variable. 5540 if (RCG.getSizes(N).second) { 5541 Address SizeAddr = CGM.getOpenMPRuntime().getAddrOfArtificialThreadPrivate( 5542 CGF, CGM.getContext().getSizeType(), 5543 generateUniqueName("reduction_size", Loc, N)); 5544 Size = 5545 CGF.EmitLoadOfScalar(SizeAddr, /*Volatile=*/false, 5546 CGM.getContext().getSizeType(), SourceLocation()); 5547 } 5548 RCG.emitAggregateType(CGF, N, Size); 5549 // Emit the finalizer body: 5550 // <destroy>(<type>* %0) 5551 RCG.emitCleanups(CGF, N, PrivateAddr); 5552 CGF.FinishFunction(); 5553 return Fn; 5554 } 5555 5556 llvm::Value *CGOpenMPRuntime::emitTaskReductionInit( 5557 CodeGenFunction &CGF, SourceLocation Loc, ArrayRef<const Expr *> LHSExprs, 5558 ArrayRef<const Expr *> RHSExprs, const OMPTaskDataTy &Data) { 5559 if (!CGF.HaveInsertPoint() || Data.ReductionVars.empty()) 5560 return nullptr; 5561 5562 // Build typedef struct: 5563 // kmp_task_red_input { 5564 // void *reduce_shar; // shared reduction item 5565 // size_t reduce_size; // size of data item 5566 // void *reduce_init; // data initialization routine 5567 // void *reduce_fini; // data finalization routine 5568 // void *reduce_comb; // data combiner routine 5569 // kmp_task_red_flags_t flags; // flags for additional info from compiler 5570 // } kmp_task_red_input_t; 5571 ASTContext &C = CGM.getContext(); 5572 auto *RD = C.buildImplicitRecord("kmp_task_red_input_t"); 5573 RD->startDefinition(); 5574 const FieldDecl *SharedFD = addFieldToRecordDecl(C, RD, C.VoidPtrTy); 5575 const FieldDecl *SizeFD = addFieldToRecordDecl(C, RD, C.getSizeType()); 5576 const FieldDecl *InitFD = addFieldToRecordDecl(C, RD, C.VoidPtrTy); 5577 const FieldDecl *FiniFD = addFieldToRecordDecl(C, RD, C.VoidPtrTy); 5578 const FieldDecl *CombFD = addFieldToRecordDecl(C, RD, C.VoidPtrTy); 5579 const FieldDecl *FlagsFD = addFieldToRecordDecl( 5580 C, RD, C.getIntTypeForBitwidth(/*DestWidth=*/32, /*Signed=*/false)); 5581 RD->completeDefinition(); 5582 QualType RDType = C.getRecordType(RD); 5583 unsigned Size = Data.ReductionVars.size(); 5584 llvm::APInt ArraySize(/*numBits=*/64, Size); 5585 QualType ArrayRDType = C.getConstantArrayType( 5586 RDType, ArraySize, ArrayType::Normal, /*IndexTypeQuals=*/0); 5587 // kmp_task_red_input_t .rd_input.[Size]; 5588 Address TaskRedInput = CGF.CreateMemTemp(ArrayRDType, ".rd_input."); 5589 ReductionCodeGen RCG(Data.ReductionVars, Data.ReductionCopies, 5590 Data.ReductionOps); 5591 for (unsigned Cnt = 0; Cnt < Size; ++Cnt) { 5592 // kmp_task_red_input_t &ElemLVal = .rd_input.[Cnt]; 5593 llvm::Value *Idxs[] = {llvm::ConstantInt::get(CGM.SizeTy, /*V=*/0), 5594 llvm::ConstantInt::get(CGM.SizeTy, Cnt)}; 5595 llvm::Value *GEP = CGF.EmitCheckedInBoundsGEP( 5596 TaskRedInput.getPointer(), Idxs, 5597 /*SignedIndices=*/false, /*IsSubtraction=*/false, Loc, 5598 ".rd_input.gep."); 5599 LValue ElemLVal = CGF.MakeNaturalAlignAddrLValue(GEP, RDType); 5600 // ElemLVal.reduce_shar = &Shareds[Cnt]; 5601 LValue SharedLVal = CGF.EmitLValueForField(ElemLVal, SharedFD); 5602 RCG.emitSharedLValue(CGF, Cnt); 5603 llvm::Value *CastedShared = 5604 CGF.EmitCastToVoidPtr(RCG.getSharedLValue(Cnt).getPointer()); 5605 CGF.EmitStoreOfScalar(CastedShared, SharedLVal); 5606 RCG.emitAggregateType(CGF, Cnt); 5607 llvm::Value *SizeValInChars; 5608 llvm::Value *SizeVal; 5609 std::tie(SizeValInChars, SizeVal) = RCG.getSizes(Cnt); 5610 // We use delayed creation/initialization for VLAs, array sections and 5611 // custom reduction initializations. It is required because runtime does not 5612 // provide the way to pass the sizes of VLAs/array sections to 5613 // initializer/combiner/finalizer functions and does not pass the pointer to 5614 // original reduction item to the initializer. Instead threadprivate global 5615 // variables are used to store these values and use them in the functions. 5616 bool DelayedCreation = !!SizeVal; 5617 SizeValInChars = CGF.Builder.CreateIntCast(SizeValInChars, CGM.SizeTy, 5618 /*isSigned=*/false); 5619 LValue SizeLVal = CGF.EmitLValueForField(ElemLVal, SizeFD); 5620 CGF.EmitStoreOfScalar(SizeValInChars, SizeLVal); 5621 // ElemLVal.reduce_init = init; 5622 LValue InitLVal = CGF.EmitLValueForField(ElemLVal, InitFD); 5623 llvm::Value *InitAddr = 5624 CGF.EmitCastToVoidPtr(emitReduceInitFunction(CGM, Loc, RCG, Cnt)); 5625 CGF.EmitStoreOfScalar(InitAddr, InitLVal); 5626 DelayedCreation = DelayedCreation || RCG.usesReductionInitializer(Cnt); 5627 // ElemLVal.reduce_fini = fini; 5628 LValue FiniLVal = CGF.EmitLValueForField(ElemLVal, FiniFD); 5629 llvm::Value *Fini = emitReduceFiniFunction(CGM, Loc, RCG, Cnt); 5630 llvm::Value *FiniAddr = Fini 5631 ? CGF.EmitCastToVoidPtr(Fini) 5632 : llvm::ConstantPointerNull::get(CGM.VoidPtrTy); 5633 CGF.EmitStoreOfScalar(FiniAddr, FiniLVal); 5634 // ElemLVal.reduce_comb = comb; 5635 LValue CombLVal = CGF.EmitLValueForField(ElemLVal, CombFD); 5636 llvm::Value *CombAddr = CGF.EmitCastToVoidPtr(emitReduceCombFunction( 5637 CGM, Loc, RCG, Cnt, Data.ReductionOps[Cnt], LHSExprs[Cnt], 5638 RHSExprs[Cnt], Data.ReductionCopies[Cnt])); 5639 CGF.EmitStoreOfScalar(CombAddr, CombLVal); 5640 // ElemLVal.flags = 0; 5641 LValue FlagsLVal = CGF.EmitLValueForField(ElemLVal, FlagsFD); 5642 if (DelayedCreation) { 5643 CGF.EmitStoreOfScalar( 5644 llvm::ConstantInt::get(CGM.Int32Ty, /*V=*/1, /*IsSigned=*/true), 5645 FlagsLVal); 5646 } else 5647 CGF.EmitNullInitialization(FlagsLVal.getAddress(), FlagsLVal.getType()); 5648 } 5649 // Build call void *__kmpc_task_reduction_init(int gtid, int num_data, void 5650 // *data); 5651 llvm::Value *Args[] = { 5652 CGF.Builder.CreateIntCast(getThreadID(CGF, Loc), CGM.IntTy, 5653 /*isSigned=*/true), 5654 llvm::ConstantInt::get(CGM.IntTy, Size, /*isSigned=*/true), 5655 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(TaskRedInput.getPointer(), 5656 CGM.VoidPtrTy)}; 5657 return CGF.EmitRuntimeCall( 5658 createRuntimeFunction(OMPRTL__kmpc_task_reduction_init), Args); 5659 } 5660 5661 void CGOpenMPRuntime::emitTaskReductionFixups(CodeGenFunction &CGF, 5662 SourceLocation Loc, 5663 ReductionCodeGen &RCG, 5664 unsigned N) { 5665 auto Sizes = RCG.getSizes(N); 5666 // Emit threadprivate global variable if the type is non-constant 5667 // (Sizes.second = nullptr). 5668 if (Sizes.second) { 5669 llvm::Value *SizeVal = CGF.Builder.CreateIntCast(Sizes.second, CGM.SizeTy, 5670 /*isSigned=*/false); 5671 Address SizeAddr = getAddrOfArtificialThreadPrivate( 5672 CGF, CGM.getContext().getSizeType(), 5673 generateUniqueName("reduction_size", Loc, N)); 5674 CGF.Builder.CreateStore(SizeVal, SizeAddr, /*IsVolatile=*/false); 5675 } 5676 // Store address of the original reduction item if custom initializer is used. 5677 if (RCG.usesReductionInitializer(N)) { 5678 Address SharedAddr = getAddrOfArtificialThreadPrivate( 5679 CGF, CGM.getContext().VoidPtrTy, 5680 generateUniqueName("reduction", Loc, N)); 5681 CGF.Builder.CreateStore( 5682 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 5683 RCG.getSharedLValue(N).getPointer(), CGM.VoidPtrTy), 5684 SharedAddr, /*IsVolatile=*/false); 5685 } 5686 } 5687 5688 Address CGOpenMPRuntime::getTaskReductionItem(CodeGenFunction &CGF, 5689 SourceLocation Loc, 5690 llvm::Value *ReductionsPtr, 5691 LValue SharedLVal) { 5692 // Build call void *__kmpc_task_reduction_get_th_data(int gtid, void *tg, void 5693 // *d); 5694 llvm::Value *Args[] = { 5695 CGF.Builder.CreateIntCast(getThreadID(CGF, Loc), CGM.IntTy, 5696 /*isSigned=*/true), 5697 ReductionsPtr, 5698 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(SharedLVal.getPointer(), 5699 CGM.VoidPtrTy)}; 5700 return Address( 5701 CGF.EmitRuntimeCall( 5702 createRuntimeFunction(OMPRTL__kmpc_task_reduction_get_th_data), Args), 5703 SharedLVal.getAlignment()); 5704 } 5705 5706 void CGOpenMPRuntime::emitTaskwaitCall(CodeGenFunction &CGF, 5707 SourceLocation Loc) { 5708 if (!CGF.HaveInsertPoint()) 5709 return; 5710 // Build call kmp_int32 __kmpc_omp_taskwait(ident_t *loc, kmp_int32 5711 // global_tid); 5712 llvm::Value *Args[] = {emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc)}; 5713 // Ignore return result until untied tasks are supported. 5714 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_omp_taskwait), Args); 5715 if (auto *Region = dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) 5716 Region->emitUntiedSwitch(CGF); 5717 } 5718 5719 void CGOpenMPRuntime::emitInlinedDirective(CodeGenFunction &CGF, 5720 OpenMPDirectiveKind InnerKind, 5721 const RegionCodeGenTy &CodeGen, 5722 bool HasCancel) { 5723 if (!CGF.HaveInsertPoint()) 5724 return; 5725 InlinedOpenMPRegionRAII Region(CGF, CodeGen, InnerKind, HasCancel); 5726 CGF.CapturedStmtInfo->EmitBody(CGF, /*S=*/nullptr); 5727 } 5728 5729 namespace { 5730 enum RTCancelKind { 5731 CancelNoreq = 0, 5732 CancelParallel = 1, 5733 CancelLoop = 2, 5734 CancelSections = 3, 5735 CancelTaskgroup = 4 5736 }; 5737 } // anonymous namespace 5738 5739 static RTCancelKind getCancellationKind(OpenMPDirectiveKind CancelRegion) { 5740 RTCancelKind CancelKind = CancelNoreq; 5741 if (CancelRegion == OMPD_parallel) 5742 CancelKind = CancelParallel; 5743 else if (CancelRegion == OMPD_for) 5744 CancelKind = CancelLoop; 5745 else if (CancelRegion == OMPD_sections) 5746 CancelKind = CancelSections; 5747 else { 5748 assert(CancelRegion == OMPD_taskgroup); 5749 CancelKind = CancelTaskgroup; 5750 } 5751 return CancelKind; 5752 } 5753 5754 void CGOpenMPRuntime::emitCancellationPointCall( 5755 CodeGenFunction &CGF, SourceLocation Loc, 5756 OpenMPDirectiveKind CancelRegion) { 5757 if (!CGF.HaveInsertPoint()) 5758 return; 5759 // Build call kmp_int32 __kmpc_cancellationpoint(ident_t *loc, kmp_int32 5760 // global_tid, kmp_int32 cncl_kind); 5761 if (auto *OMPRegionInfo = 5762 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) { 5763 // For 'cancellation point taskgroup', the task region info may not have a 5764 // cancel. This may instead happen in another adjacent task. 5765 if (CancelRegion == OMPD_taskgroup || OMPRegionInfo->hasCancel()) { 5766 llvm::Value *Args[] = { 5767 emitUpdateLocation(CGF, Loc), getThreadID(CGF, Loc), 5768 CGF.Builder.getInt32(getCancellationKind(CancelRegion))}; 5769 // Ignore return result until untied tasks are supported. 5770 auto *Result = CGF.EmitRuntimeCall( 5771 createRuntimeFunction(OMPRTL__kmpc_cancellationpoint), Args); 5772 // if (__kmpc_cancellationpoint()) { 5773 // exit from construct; 5774 // } 5775 auto *ExitBB = CGF.createBasicBlock(".cancel.exit"); 5776 auto *ContBB = CGF.createBasicBlock(".cancel.continue"); 5777 auto *Cmp = CGF.Builder.CreateIsNotNull(Result); 5778 CGF.Builder.CreateCondBr(Cmp, ExitBB, ContBB); 5779 CGF.EmitBlock(ExitBB); 5780 // exit from construct; 5781 auto CancelDest = 5782 CGF.getOMPCancelDestination(OMPRegionInfo->getDirectiveKind()); 5783 CGF.EmitBranchThroughCleanup(CancelDest); 5784 CGF.EmitBlock(ContBB, /*IsFinished=*/true); 5785 } 5786 } 5787 } 5788 5789 void CGOpenMPRuntime::emitCancelCall(CodeGenFunction &CGF, SourceLocation Loc, 5790 const Expr *IfCond, 5791 OpenMPDirectiveKind CancelRegion) { 5792 if (!CGF.HaveInsertPoint()) 5793 return; 5794 // Build call kmp_int32 __kmpc_cancel(ident_t *loc, kmp_int32 global_tid, 5795 // kmp_int32 cncl_kind); 5796 if (auto *OMPRegionInfo = 5797 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) { 5798 auto &&ThenGen = [Loc, CancelRegion, OMPRegionInfo](CodeGenFunction &CGF, 5799 PrePostActionTy &) { 5800 auto &RT = CGF.CGM.getOpenMPRuntime(); 5801 llvm::Value *Args[] = { 5802 RT.emitUpdateLocation(CGF, Loc), RT.getThreadID(CGF, Loc), 5803 CGF.Builder.getInt32(getCancellationKind(CancelRegion))}; 5804 // Ignore return result until untied tasks are supported. 5805 auto *Result = CGF.EmitRuntimeCall( 5806 RT.createRuntimeFunction(OMPRTL__kmpc_cancel), Args); 5807 // if (__kmpc_cancel()) { 5808 // exit from construct; 5809 // } 5810 auto *ExitBB = CGF.createBasicBlock(".cancel.exit"); 5811 auto *ContBB = CGF.createBasicBlock(".cancel.continue"); 5812 auto *Cmp = CGF.Builder.CreateIsNotNull(Result); 5813 CGF.Builder.CreateCondBr(Cmp, ExitBB, ContBB); 5814 CGF.EmitBlock(ExitBB); 5815 // exit from construct; 5816 auto CancelDest = 5817 CGF.getOMPCancelDestination(OMPRegionInfo->getDirectiveKind()); 5818 CGF.EmitBranchThroughCleanup(CancelDest); 5819 CGF.EmitBlock(ContBB, /*IsFinished=*/true); 5820 }; 5821 if (IfCond) 5822 emitOMPIfClause(CGF, IfCond, ThenGen, 5823 [](CodeGenFunction &, PrePostActionTy &) {}); 5824 else { 5825 RegionCodeGenTy ThenRCG(ThenGen); 5826 ThenRCG(CGF); 5827 } 5828 } 5829 } 5830 5831 /// \brief Obtain information that uniquely identifies a target entry. This 5832 /// consists of the file and device IDs as well as line number associated with 5833 /// the relevant entry source location. 5834 static void getTargetEntryUniqueInfo(ASTContext &C, SourceLocation Loc, 5835 unsigned &DeviceID, unsigned &FileID, 5836 unsigned &LineNum) { 5837 5838 auto &SM = C.getSourceManager(); 5839 5840 // The loc should be always valid and have a file ID (the user cannot use 5841 // #pragma directives in macros) 5842 5843 assert(Loc.isValid() && "Source location is expected to be always valid."); 5844 assert(Loc.isFileID() && "Source location is expected to refer to a file."); 5845 5846 PresumedLoc PLoc = SM.getPresumedLoc(Loc); 5847 assert(PLoc.isValid() && "Source location is expected to be always valid."); 5848 5849 llvm::sys::fs::UniqueID ID; 5850 if (llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID)) 5851 llvm_unreachable("Source file with target region no longer exists!"); 5852 5853 DeviceID = ID.getDevice(); 5854 FileID = ID.getFile(); 5855 LineNum = PLoc.getLine(); 5856 } 5857 5858 void CGOpenMPRuntime::emitTargetOutlinedFunction( 5859 const OMPExecutableDirective &D, StringRef ParentName, 5860 llvm::Function *&OutlinedFn, llvm::Constant *&OutlinedFnID, 5861 bool IsOffloadEntry, const RegionCodeGenTy &CodeGen) { 5862 assert(!ParentName.empty() && "Invalid target region parent name!"); 5863 5864 emitTargetOutlinedFunctionHelper(D, ParentName, OutlinedFn, OutlinedFnID, 5865 IsOffloadEntry, CodeGen); 5866 } 5867 5868 void CGOpenMPRuntime::emitTargetOutlinedFunctionHelper( 5869 const OMPExecutableDirective &D, StringRef ParentName, 5870 llvm::Function *&OutlinedFn, llvm::Constant *&OutlinedFnID, 5871 bool IsOffloadEntry, const RegionCodeGenTy &CodeGen) { 5872 // Create a unique name for the entry function using the source location 5873 // information of the current target region. The name will be something like: 5874 // 5875 // __omp_offloading_DD_FFFF_PP_lBB 5876 // 5877 // where DD_FFFF is an ID unique to the file (device and file IDs), PP is the 5878 // mangled name of the function that encloses the target region and BB is the 5879 // line number of the target region. 5880 5881 unsigned DeviceID; 5882 unsigned FileID; 5883 unsigned Line; 5884 getTargetEntryUniqueInfo(CGM.getContext(), D.getLocStart(), DeviceID, FileID, 5885 Line); 5886 SmallString<64> EntryFnName; 5887 { 5888 llvm::raw_svector_ostream OS(EntryFnName); 5889 OS << "__omp_offloading" << llvm::format("_%x", DeviceID) 5890 << llvm::format("_%x_", FileID) << ParentName << "_l" << Line; 5891 } 5892 5893 const CapturedStmt &CS = *D.getCapturedStmt(OMPD_target); 5894 5895 CodeGenFunction CGF(CGM, true); 5896 CGOpenMPTargetRegionInfo CGInfo(CS, CodeGen, EntryFnName); 5897 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CGInfo); 5898 5899 OutlinedFn = CGF.GenerateOpenMPCapturedStmtFunction(CS); 5900 5901 // If this target outline function is not an offload entry, we don't need to 5902 // register it. 5903 if (!IsOffloadEntry) 5904 return; 5905 5906 // The target region ID is used by the runtime library to identify the current 5907 // target region, so it only has to be unique and not necessarily point to 5908 // anything. It could be the pointer to the outlined function that implements 5909 // the target region, but we aren't using that so that the compiler doesn't 5910 // need to keep that, and could therefore inline the host function if proven 5911 // worthwhile during optimization. In the other hand, if emitting code for the 5912 // device, the ID has to be the function address so that it can retrieved from 5913 // the offloading entry and launched by the runtime library. We also mark the 5914 // outlined function to have external linkage in case we are emitting code for 5915 // the device, because these functions will be entry points to the device. 5916 5917 if (CGM.getLangOpts().OpenMPIsDevice) { 5918 OutlinedFnID = llvm::ConstantExpr::getBitCast(OutlinedFn, CGM.Int8PtrTy); 5919 OutlinedFn->setLinkage(llvm::GlobalValue::ExternalLinkage); 5920 OutlinedFn->setDSOLocal(false); 5921 } else 5922 OutlinedFnID = new llvm::GlobalVariable( 5923 CGM.getModule(), CGM.Int8Ty, /*isConstant=*/true, 5924 llvm::GlobalValue::PrivateLinkage, 5925 llvm::Constant::getNullValue(CGM.Int8Ty), ".omp_offload.region_id"); 5926 5927 // Register the information for the entry associated with this target region. 5928 OffloadEntriesInfoManager.registerTargetRegionEntryInfo( 5929 DeviceID, FileID, ParentName, Line, OutlinedFn, OutlinedFnID, 5930 /*Flags=*/0); 5931 } 5932 5933 /// discard all CompoundStmts intervening between two constructs 5934 static const Stmt *ignoreCompoundStmts(const Stmt *Body) { 5935 while (auto *CS = dyn_cast_or_null<CompoundStmt>(Body)) 5936 Body = CS->body_front(); 5937 5938 return Body; 5939 } 5940 5941 /// Emit the number of teams for a target directive. Inspect the num_teams 5942 /// clause associated with a teams construct combined or closely nested 5943 /// with the target directive. 5944 /// 5945 /// Emit a team of size one for directives such as 'target parallel' that 5946 /// have no associated teams construct. 5947 /// 5948 /// Otherwise, return nullptr. 5949 static llvm::Value * 5950 emitNumTeamsForTargetDirective(CGOpenMPRuntime &OMPRuntime, 5951 CodeGenFunction &CGF, 5952 const OMPExecutableDirective &D) { 5953 5954 assert(!CGF.getLangOpts().OpenMPIsDevice && "Clauses associated with the " 5955 "teams directive expected to be " 5956 "emitted only for the host!"); 5957 5958 auto &Bld = CGF.Builder; 5959 5960 // If the target directive is combined with a teams directive: 5961 // Return the value in the num_teams clause, if any. 5962 // Otherwise, return 0 to denote the runtime default. 5963 if (isOpenMPTeamsDirective(D.getDirectiveKind())) { 5964 if (const auto *NumTeamsClause = D.getSingleClause<OMPNumTeamsClause>()) { 5965 CodeGenFunction::RunCleanupsScope NumTeamsScope(CGF); 5966 auto NumTeams = CGF.EmitScalarExpr(NumTeamsClause->getNumTeams(), 5967 /*IgnoreResultAssign*/ true); 5968 return Bld.CreateIntCast(NumTeams, CGF.Int32Ty, 5969 /*IsSigned=*/true); 5970 } 5971 5972 // The default value is 0. 5973 return Bld.getInt32(0); 5974 } 5975 5976 // If the target directive is combined with a parallel directive but not a 5977 // teams directive, start one team. 5978 if (isOpenMPParallelDirective(D.getDirectiveKind())) 5979 return Bld.getInt32(1); 5980 5981 // If the current target region has a teams region enclosed, we need to get 5982 // the number of teams to pass to the runtime function call. This is done 5983 // by generating the expression in a inlined region. This is required because 5984 // the expression is captured in the enclosing target environment when the 5985 // teams directive is not combined with target. 5986 5987 const CapturedStmt &CS = *D.getCapturedStmt(OMPD_target); 5988 5989 if (auto *TeamsDir = dyn_cast_or_null<OMPExecutableDirective>( 5990 ignoreCompoundStmts(CS.getCapturedStmt()))) { 5991 if (isOpenMPTeamsDirective(TeamsDir->getDirectiveKind())) { 5992 if (auto *NTE = TeamsDir->getSingleClause<OMPNumTeamsClause>()) { 5993 CGOpenMPInnerExprInfo CGInfo(CGF, CS); 5994 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CGInfo); 5995 llvm::Value *NumTeams = CGF.EmitScalarExpr(NTE->getNumTeams()); 5996 return Bld.CreateIntCast(NumTeams, CGF.Int32Ty, 5997 /*IsSigned=*/true); 5998 } 5999 6000 // If we have an enclosed teams directive but no num_teams clause we use 6001 // the default value 0. 6002 return Bld.getInt32(0); 6003 } 6004 } 6005 6006 // No teams associated with the directive. 6007 return nullptr; 6008 } 6009 6010 /// Emit the number of threads for a target directive. Inspect the 6011 /// thread_limit clause associated with a teams construct combined or closely 6012 /// nested with the target directive. 6013 /// 6014 /// Emit the num_threads clause for directives such as 'target parallel' that 6015 /// have no associated teams construct. 6016 /// 6017 /// Otherwise, return nullptr. 6018 static llvm::Value * 6019 emitNumThreadsForTargetDirective(CGOpenMPRuntime &OMPRuntime, 6020 CodeGenFunction &CGF, 6021 const OMPExecutableDirective &D) { 6022 6023 assert(!CGF.getLangOpts().OpenMPIsDevice && "Clauses associated with the " 6024 "teams directive expected to be " 6025 "emitted only for the host!"); 6026 6027 auto &Bld = CGF.Builder; 6028 6029 // 6030 // If the target directive is combined with a teams directive: 6031 // Return the value in the thread_limit clause, if any. 6032 // 6033 // If the target directive is combined with a parallel directive: 6034 // Return the value in the num_threads clause, if any. 6035 // 6036 // If both clauses are set, select the minimum of the two. 6037 // 6038 // If neither teams or parallel combined directives set the number of threads 6039 // in a team, return 0 to denote the runtime default. 6040 // 6041 // If this is not a teams directive return nullptr. 6042 6043 if (isOpenMPTeamsDirective(D.getDirectiveKind()) || 6044 isOpenMPParallelDirective(D.getDirectiveKind())) { 6045 llvm::Value *DefaultThreadLimitVal = Bld.getInt32(0); 6046 llvm::Value *NumThreadsVal = nullptr; 6047 llvm::Value *ThreadLimitVal = nullptr; 6048 6049 if (const auto *ThreadLimitClause = 6050 D.getSingleClause<OMPThreadLimitClause>()) { 6051 CodeGenFunction::RunCleanupsScope ThreadLimitScope(CGF); 6052 auto ThreadLimit = CGF.EmitScalarExpr(ThreadLimitClause->getThreadLimit(), 6053 /*IgnoreResultAssign*/ true); 6054 ThreadLimitVal = Bld.CreateIntCast(ThreadLimit, CGF.Int32Ty, 6055 /*IsSigned=*/true); 6056 } 6057 6058 if (const auto *NumThreadsClause = 6059 D.getSingleClause<OMPNumThreadsClause>()) { 6060 CodeGenFunction::RunCleanupsScope NumThreadsScope(CGF); 6061 llvm::Value *NumThreads = 6062 CGF.EmitScalarExpr(NumThreadsClause->getNumThreads(), 6063 /*IgnoreResultAssign*/ true); 6064 NumThreadsVal = 6065 Bld.CreateIntCast(NumThreads, CGF.Int32Ty, /*IsSigned=*/true); 6066 } 6067 6068 // Select the lesser of thread_limit and num_threads. 6069 if (NumThreadsVal) 6070 ThreadLimitVal = ThreadLimitVal 6071 ? Bld.CreateSelect(Bld.CreateICmpSLT(NumThreadsVal, 6072 ThreadLimitVal), 6073 NumThreadsVal, ThreadLimitVal) 6074 : NumThreadsVal; 6075 6076 // Set default value passed to the runtime if either teams or a target 6077 // parallel type directive is found but no clause is specified. 6078 if (!ThreadLimitVal) 6079 ThreadLimitVal = DefaultThreadLimitVal; 6080 6081 return ThreadLimitVal; 6082 } 6083 6084 // If the current target region has a teams region enclosed, we need to get 6085 // the thread limit to pass to the runtime function call. This is done 6086 // by generating the expression in a inlined region. This is required because 6087 // the expression is captured in the enclosing target environment when the 6088 // teams directive is not combined with target. 6089 6090 const CapturedStmt &CS = *D.getCapturedStmt(OMPD_target); 6091 6092 if (auto *TeamsDir = dyn_cast_or_null<OMPExecutableDirective>( 6093 ignoreCompoundStmts(CS.getCapturedStmt()))) { 6094 if (isOpenMPTeamsDirective(TeamsDir->getDirectiveKind())) { 6095 if (auto *TLE = TeamsDir->getSingleClause<OMPThreadLimitClause>()) { 6096 CGOpenMPInnerExprInfo CGInfo(CGF, CS); 6097 CodeGenFunction::CGCapturedStmtRAII CapInfoRAII(CGF, &CGInfo); 6098 llvm::Value *ThreadLimit = CGF.EmitScalarExpr(TLE->getThreadLimit()); 6099 return CGF.Builder.CreateIntCast(ThreadLimit, CGF.Int32Ty, 6100 /*IsSigned=*/true); 6101 } 6102 6103 // If we have an enclosed teams directive but no thread_limit clause we 6104 // use the default value 0. 6105 return CGF.Builder.getInt32(0); 6106 } 6107 } 6108 6109 // No teams associated with the directive. 6110 return nullptr; 6111 } 6112 6113 namespace { 6114 // \brief Utility to handle information from clauses associated with a given 6115 // construct that use mappable expressions (e.g. 'map' clause, 'to' clause). 6116 // It provides a convenient interface to obtain the information and generate 6117 // code for that information. 6118 class MappableExprsHandler { 6119 public: 6120 /// \brief Values for bit flags used to specify the mapping type for 6121 /// offloading. 6122 enum OpenMPOffloadMappingFlags { 6123 /// \brief Allocate memory on the device and move data from host to device. 6124 OMP_MAP_TO = 0x01, 6125 /// \brief Allocate memory on the device and move data from device to host. 6126 OMP_MAP_FROM = 0x02, 6127 /// \brief Always perform the requested mapping action on the element, even 6128 /// if it was already mapped before. 6129 OMP_MAP_ALWAYS = 0x04, 6130 /// \brief Delete the element from the device environment, ignoring the 6131 /// current reference count associated with the element. 6132 OMP_MAP_DELETE = 0x08, 6133 /// \brief The element being mapped is a pointer-pointee pair; both the 6134 /// pointer and the pointee should be mapped. 6135 OMP_MAP_PTR_AND_OBJ = 0x10, 6136 /// \brief This flags signals that the base address of an entry should be 6137 /// passed to the target kernel as an argument. 6138 OMP_MAP_TARGET_PARAM = 0x20, 6139 /// \brief Signal that the runtime library has to return the device pointer 6140 /// in the current position for the data being mapped. Used when we have the 6141 /// use_device_ptr clause. 6142 OMP_MAP_RETURN_PARAM = 0x40, 6143 /// \brief This flag signals that the reference being passed is a pointer to 6144 /// private data. 6145 OMP_MAP_PRIVATE = 0x80, 6146 /// \brief Pass the element to the device by value. 6147 OMP_MAP_LITERAL = 0x100, 6148 /// Implicit map 6149 OMP_MAP_IMPLICIT = 0x200, 6150 }; 6151 6152 /// Class that associates information with a base pointer to be passed to the 6153 /// runtime library. 6154 class BasePointerInfo { 6155 /// The base pointer. 6156 llvm::Value *Ptr = nullptr; 6157 /// The base declaration that refers to this device pointer, or null if 6158 /// there is none. 6159 const ValueDecl *DevPtrDecl = nullptr; 6160 6161 public: 6162 BasePointerInfo(llvm::Value *Ptr, const ValueDecl *DevPtrDecl = nullptr) 6163 : Ptr(Ptr), DevPtrDecl(DevPtrDecl) {} 6164 llvm::Value *operator*() const { return Ptr; } 6165 const ValueDecl *getDevicePtrDecl() const { return DevPtrDecl; } 6166 void setDevicePtrDecl(const ValueDecl *D) { DevPtrDecl = D; } 6167 }; 6168 6169 typedef SmallVector<BasePointerInfo, 16> MapBaseValuesArrayTy; 6170 typedef SmallVector<llvm::Value *, 16> MapValuesArrayTy; 6171 typedef SmallVector<uint64_t, 16> MapFlagsArrayTy; 6172 6173 private: 6174 /// \brief Directive from where the map clauses were extracted. 6175 const OMPExecutableDirective &CurDir; 6176 6177 /// \brief Function the directive is being generated for. 6178 CodeGenFunction &CGF; 6179 6180 /// \brief Set of all first private variables in the current directive. 6181 llvm::SmallPtrSet<const VarDecl *, 8> FirstPrivateDecls; 6182 /// Set of all reduction variables in the current directive. 6183 llvm::SmallPtrSet<const VarDecl *, 8> ReductionDecls; 6184 6185 /// Map between device pointer declarations and their expression components. 6186 /// The key value for declarations in 'this' is null. 6187 llvm::DenseMap< 6188 const ValueDecl *, 6189 SmallVector<OMPClauseMappableExprCommon::MappableExprComponentListRef, 4>> 6190 DevPointersMap; 6191 6192 llvm::Value *getExprTypeSize(const Expr *E) const { 6193 auto ExprTy = E->getType().getCanonicalType(); 6194 6195 // Reference types are ignored for mapping purposes. 6196 if (auto *RefTy = ExprTy->getAs<ReferenceType>()) 6197 ExprTy = RefTy->getPointeeType().getCanonicalType(); 6198 6199 // Given that an array section is considered a built-in type, we need to 6200 // do the calculation based on the length of the section instead of relying 6201 // on CGF.getTypeSize(E->getType()). 6202 if (const auto *OAE = dyn_cast<OMPArraySectionExpr>(E)) { 6203 QualType BaseTy = OMPArraySectionExpr::getBaseOriginalType( 6204 OAE->getBase()->IgnoreParenImpCasts()) 6205 .getCanonicalType(); 6206 6207 // If there is no length associated with the expression, that means we 6208 // are using the whole length of the base. 6209 if (!OAE->getLength() && OAE->getColonLoc().isValid()) 6210 return CGF.getTypeSize(BaseTy); 6211 6212 llvm::Value *ElemSize; 6213 if (auto *PTy = BaseTy->getAs<PointerType>()) 6214 ElemSize = CGF.getTypeSize(PTy->getPointeeType().getCanonicalType()); 6215 else { 6216 auto *ATy = cast<ArrayType>(BaseTy.getTypePtr()); 6217 assert(ATy && "Expecting array type if not a pointer type."); 6218 ElemSize = CGF.getTypeSize(ATy->getElementType().getCanonicalType()); 6219 } 6220 6221 // If we don't have a length at this point, that is because we have an 6222 // array section with a single element. 6223 if (!OAE->getLength()) 6224 return ElemSize; 6225 6226 auto *LengthVal = CGF.EmitScalarExpr(OAE->getLength()); 6227 LengthVal = 6228 CGF.Builder.CreateIntCast(LengthVal, CGF.SizeTy, /*isSigned=*/false); 6229 return CGF.Builder.CreateNUWMul(LengthVal, ElemSize); 6230 } 6231 return CGF.getTypeSize(ExprTy); 6232 } 6233 6234 /// \brief Return the corresponding bits for a given map clause modifier. Add 6235 /// a flag marking the map as a pointer if requested. Add a flag marking the 6236 /// map as the first one of a series of maps that relate to the same map 6237 /// expression. 6238 uint64_t getMapTypeBits(OpenMPMapClauseKind MapType, 6239 OpenMPMapClauseKind MapTypeModifier, bool AddPtrFlag, 6240 bool AddIsTargetParamFlag) const { 6241 uint64_t Bits = 0u; 6242 switch (MapType) { 6243 case OMPC_MAP_alloc: 6244 case OMPC_MAP_release: 6245 // alloc and release is the default behavior in the runtime library, i.e. 6246 // if we don't pass any bits alloc/release that is what the runtime is 6247 // going to do. Therefore, we don't need to signal anything for these two 6248 // type modifiers. 6249 break; 6250 case OMPC_MAP_to: 6251 Bits = OMP_MAP_TO; 6252 break; 6253 case OMPC_MAP_from: 6254 Bits = OMP_MAP_FROM; 6255 break; 6256 case OMPC_MAP_tofrom: 6257 Bits = OMP_MAP_TO | OMP_MAP_FROM; 6258 break; 6259 case OMPC_MAP_delete: 6260 Bits = OMP_MAP_DELETE; 6261 break; 6262 default: 6263 llvm_unreachable("Unexpected map type!"); 6264 break; 6265 } 6266 if (AddPtrFlag) 6267 Bits |= OMP_MAP_PTR_AND_OBJ; 6268 if (AddIsTargetParamFlag) 6269 Bits |= OMP_MAP_TARGET_PARAM; 6270 if (MapTypeModifier == OMPC_MAP_always) 6271 Bits |= OMP_MAP_ALWAYS; 6272 return Bits; 6273 } 6274 6275 /// \brief Return true if the provided expression is a final array section. A 6276 /// final array section, is one whose length can't be proved to be one. 6277 bool isFinalArraySectionExpression(const Expr *E) const { 6278 auto *OASE = dyn_cast<OMPArraySectionExpr>(E); 6279 6280 // It is not an array section and therefore not a unity-size one. 6281 if (!OASE) 6282 return false; 6283 6284 // An array section with no colon always refer to a single element. 6285 if (OASE->getColonLoc().isInvalid()) 6286 return false; 6287 6288 auto *Length = OASE->getLength(); 6289 6290 // If we don't have a length we have to check if the array has size 1 6291 // for this dimension. Also, we should always expect a length if the 6292 // base type is pointer. 6293 if (!Length) { 6294 auto BaseQTy = OMPArraySectionExpr::getBaseOriginalType( 6295 OASE->getBase()->IgnoreParenImpCasts()) 6296 .getCanonicalType(); 6297 if (auto *ATy = dyn_cast<ConstantArrayType>(BaseQTy.getTypePtr())) 6298 return ATy->getSize().getSExtValue() != 1; 6299 // If we don't have a constant dimension length, we have to consider 6300 // the current section as having any size, so it is not necessarily 6301 // unitary. If it happen to be unity size, that's user fault. 6302 return true; 6303 } 6304 6305 // Check if the length evaluates to 1. 6306 llvm::APSInt ConstLength; 6307 if (!Length->EvaluateAsInt(ConstLength, CGF.getContext())) 6308 return true; // Can have more that size 1. 6309 6310 return ConstLength.getSExtValue() != 1; 6311 } 6312 6313 /// \brief Generate the base pointers, section pointers, sizes and map type 6314 /// bits for the provided map type, map modifier, and expression components. 6315 /// \a IsFirstComponent should be set to true if the provided set of 6316 /// components is the first associated with a capture. 6317 void generateInfoForComponentList( 6318 OpenMPMapClauseKind MapType, OpenMPMapClauseKind MapTypeModifier, 6319 OMPClauseMappableExprCommon::MappableExprComponentListRef Components, 6320 MapBaseValuesArrayTy &BasePointers, MapValuesArrayTy &Pointers, 6321 MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types, 6322 bool IsFirstComponentList, bool IsImplicit) const { 6323 6324 // The following summarizes what has to be generated for each map and the 6325 // types bellow. The generated information is expressed in this order: 6326 // base pointer, section pointer, size, flags 6327 // (to add to the ones that come from the map type and modifier). 6328 // 6329 // double d; 6330 // int i[100]; 6331 // float *p; 6332 // 6333 // struct S1 { 6334 // int i; 6335 // float f[50]; 6336 // } 6337 // struct S2 { 6338 // int i; 6339 // float f[50]; 6340 // S1 s; 6341 // double *p; 6342 // struct S2 *ps; 6343 // } 6344 // S2 s; 6345 // S2 *ps; 6346 // 6347 // map(d) 6348 // &d, &d, sizeof(double), noflags 6349 // 6350 // map(i) 6351 // &i, &i, 100*sizeof(int), noflags 6352 // 6353 // map(i[1:23]) 6354 // &i(=&i[0]), &i[1], 23*sizeof(int), noflags 6355 // 6356 // map(p) 6357 // &p, &p, sizeof(float*), noflags 6358 // 6359 // map(p[1:24]) 6360 // p, &p[1], 24*sizeof(float), noflags 6361 // 6362 // map(s) 6363 // &s, &s, sizeof(S2), noflags 6364 // 6365 // map(s.i) 6366 // &s, &(s.i), sizeof(int), noflags 6367 // 6368 // map(s.s.f) 6369 // &s, &(s.i.f), 50*sizeof(int), noflags 6370 // 6371 // map(s.p) 6372 // &s, &(s.p), sizeof(double*), noflags 6373 // 6374 // map(s.p[:22], s.a s.b) 6375 // &s, &(s.p), sizeof(double*), noflags 6376 // &(s.p), &(s.p[0]), 22*sizeof(double), ptr_flag 6377 // 6378 // map(s.ps) 6379 // &s, &(s.ps), sizeof(S2*), noflags 6380 // 6381 // map(s.ps->s.i) 6382 // &s, &(s.ps), sizeof(S2*), noflags 6383 // &(s.ps), &(s.ps->s.i), sizeof(int), ptr_flag 6384 // 6385 // map(s.ps->ps) 6386 // &s, &(s.ps), sizeof(S2*), noflags 6387 // &(s.ps), &(s.ps->ps), sizeof(S2*), ptr_flag 6388 // 6389 // map(s.ps->ps->ps) 6390 // &s, &(s.ps), sizeof(S2*), noflags 6391 // &(s.ps), &(s.ps->ps), sizeof(S2*), ptr_flag 6392 // &(s.ps->ps), &(s.ps->ps->ps), sizeof(S2*), ptr_flag 6393 // 6394 // map(s.ps->ps->s.f[:22]) 6395 // &s, &(s.ps), sizeof(S2*), noflags 6396 // &(s.ps), &(s.ps->ps), sizeof(S2*), ptr_flag 6397 // &(s.ps->ps), &(s.ps->ps->s.f[0]), 22*sizeof(float), ptr_flag 6398 // 6399 // map(ps) 6400 // &ps, &ps, sizeof(S2*), noflags 6401 // 6402 // map(ps->i) 6403 // ps, &(ps->i), sizeof(int), noflags 6404 // 6405 // map(ps->s.f) 6406 // ps, &(ps->s.f[0]), 50*sizeof(float), noflags 6407 // 6408 // map(ps->p) 6409 // ps, &(ps->p), sizeof(double*), noflags 6410 // 6411 // map(ps->p[:22]) 6412 // ps, &(ps->p), sizeof(double*), noflags 6413 // &(ps->p), &(ps->p[0]), 22*sizeof(double), ptr_flag 6414 // 6415 // map(ps->ps) 6416 // ps, &(ps->ps), sizeof(S2*), noflags 6417 // 6418 // map(ps->ps->s.i) 6419 // ps, &(ps->ps), sizeof(S2*), noflags 6420 // &(ps->ps), &(ps->ps->s.i), sizeof(int), ptr_flag 6421 // 6422 // map(ps->ps->ps) 6423 // ps, &(ps->ps), sizeof(S2*), noflags 6424 // &(ps->ps), &(ps->ps->ps), sizeof(S2*), ptr_flag 6425 // 6426 // map(ps->ps->ps->ps) 6427 // ps, &(ps->ps), sizeof(S2*), noflags 6428 // &(ps->ps), &(ps->ps->ps), sizeof(S2*), ptr_flag 6429 // &(ps->ps->ps), &(ps->ps->ps->ps), sizeof(S2*), ptr_flag 6430 // 6431 // map(ps->ps->ps->s.f[:22]) 6432 // ps, &(ps->ps), sizeof(S2*), noflags 6433 // &(ps->ps), &(ps->ps->ps), sizeof(S2*), ptr_flag 6434 // &(ps->ps->ps), &(ps->ps->ps->s.f[0]), 22*sizeof(float), ptr_flag 6435 6436 // Track if the map information being generated is the first for a capture. 6437 bool IsCaptureFirstInfo = IsFirstComponentList; 6438 6439 // Scan the components from the base to the complete expression. 6440 auto CI = Components.rbegin(); 6441 auto CE = Components.rend(); 6442 auto I = CI; 6443 6444 // Track if the map information being generated is the first for a list of 6445 // components. 6446 bool IsExpressionFirstInfo = true; 6447 llvm::Value *BP = nullptr; 6448 6449 if (auto *ME = dyn_cast<MemberExpr>(I->getAssociatedExpression())) { 6450 // The base is the 'this' pointer. The content of the pointer is going 6451 // to be the base of the field being mapped. 6452 BP = CGF.EmitScalarExpr(ME->getBase()); 6453 } else { 6454 // The base is the reference to the variable. 6455 // BP = &Var. 6456 BP = CGF.EmitOMPSharedLValue(I->getAssociatedExpression()).getPointer(); 6457 6458 // If the variable is a pointer and is being dereferenced (i.e. is not 6459 // the last component), the base has to be the pointer itself, not its 6460 // reference. References are ignored for mapping purposes. 6461 QualType Ty = 6462 I->getAssociatedDeclaration()->getType().getNonReferenceType(); 6463 if (Ty->isAnyPointerType() && std::next(I) != CE) { 6464 auto PtrAddr = CGF.MakeNaturalAlignAddrLValue(BP, Ty); 6465 BP = CGF.EmitLoadOfPointerLValue(PtrAddr.getAddress(), 6466 Ty->castAs<PointerType>()) 6467 .getPointer(); 6468 6469 // We do not need to generate individual map information for the 6470 // pointer, it can be associated with the combined storage. 6471 ++I; 6472 } 6473 } 6474 6475 uint64_t DefaultFlags = IsImplicit ? OMP_MAP_IMPLICIT : 0; 6476 for (; I != CE; ++I) { 6477 auto Next = std::next(I); 6478 6479 // We need to generate the addresses and sizes if this is the last 6480 // component, if the component is a pointer or if it is an array section 6481 // whose length can't be proved to be one. If this is a pointer, it 6482 // becomes the base address for the following components. 6483 6484 // A final array section, is one whose length can't be proved to be one. 6485 bool IsFinalArraySection = 6486 isFinalArraySectionExpression(I->getAssociatedExpression()); 6487 6488 // Get information on whether the element is a pointer. Have to do a 6489 // special treatment for array sections given that they are built-in 6490 // types. 6491 const auto *OASE = 6492 dyn_cast<OMPArraySectionExpr>(I->getAssociatedExpression()); 6493 bool IsPointer = 6494 (OASE && 6495 OMPArraySectionExpr::getBaseOriginalType(OASE) 6496 .getCanonicalType() 6497 ->isAnyPointerType()) || 6498 I->getAssociatedExpression()->getType()->isAnyPointerType(); 6499 6500 if (Next == CE || IsPointer || IsFinalArraySection) { 6501 6502 // If this is not the last component, we expect the pointer to be 6503 // associated with an array expression or member expression. 6504 assert((Next == CE || 6505 isa<MemberExpr>(Next->getAssociatedExpression()) || 6506 isa<ArraySubscriptExpr>(Next->getAssociatedExpression()) || 6507 isa<OMPArraySectionExpr>(Next->getAssociatedExpression())) && 6508 "Unexpected expression"); 6509 6510 llvm::Value *LB = 6511 CGF.EmitOMPSharedLValue(I->getAssociatedExpression()).getPointer(); 6512 auto *Size = getExprTypeSize(I->getAssociatedExpression()); 6513 6514 // If we have a member expression and the current component is a 6515 // reference, we have to map the reference too. Whenever we have a 6516 // reference, the section that reference refers to is going to be a 6517 // load instruction from the storage assigned to the reference. 6518 if (isa<MemberExpr>(I->getAssociatedExpression()) && 6519 I->getAssociatedDeclaration()->getType()->isReferenceType()) { 6520 auto *LI = cast<llvm::LoadInst>(LB); 6521 auto *RefAddr = LI->getPointerOperand(); 6522 6523 BasePointers.push_back(BP); 6524 Pointers.push_back(RefAddr); 6525 Sizes.push_back(CGF.getTypeSize(CGF.getContext().VoidPtrTy)); 6526 Types.push_back(DefaultFlags | 6527 getMapTypeBits( 6528 /*MapType*/ OMPC_MAP_alloc, 6529 /*MapTypeModifier=*/OMPC_MAP_unknown, 6530 !IsExpressionFirstInfo, IsCaptureFirstInfo)); 6531 IsExpressionFirstInfo = false; 6532 IsCaptureFirstInfo = false; 6533 // The reference will be the next base address. 6534 BP = RefAddr; 6535 } 6536 6537 BasePointers.push_back(BP); 6538 Pointers.push_back(LB); 6539 Sizes.push_back(Size); 6540 6541 // We need to add a pointer flag for each map that comes from the 6542 // same expression except for the first one. We also need to signal 6543 // this map is the first one that relates with the current capture 6544 // (there is a set of entries for each capture). 6545 Types.push_back(DefaultFlags | getMapTypeBits(MapType, MapTypeModifier, 6546 !IsExpressionFirstInfo, 6547 IsCaptureFirstInfo)); 6548 6549 // If we have a final array section, we are done with this expression. 6550 if (IsFinalArraySection) 6551 break; 6552 6553 // The pointer becomes the base for the next element. 6554 if (Next != CE) 6555 BP = LB; 6556 6557 IsExpressionFirstInfo = false; 6558 IsCaptureFirstInfo = false; 6559 } 6560 } 6561 } 6562 6563 /// \brief Return the adjusted map modifiers if the declaration a capture 6564 /// refers to appears in a first-private clause. This is expected to be used 6565 /// only with directives that start with 'target'. 6566 unsigned adjustMapModifiersForPrivateClauses(const CapturedStmt::Capture &Cap, 6567 unsigned CurrentModifiers) { 6568 assert(Cap.capturesVariable() && "Expected capture by reference only!"); 6569 6570 // A first private variable captured by reference will use only the 6571 // 'private ptr' and 'map to' flag. Return the right flags if the captured 6572 // declaration is known as first-private in this handler. 6573 if (FirstPrivateDecls.count(Cap.getCapturedVar())) 6574 return MappableExprsHandler::OMP_MAP_PRIVATE | 6575 MappableExprsHandler::OMP_MAP_TO; 6576 // Reduction variable will use only the 'private ptr' and 'map to_from' 6577 // flag. 6578 if (ReductionDecls.count(Cap.getCapturedVar())) { 6579 return MappableExprsHandler::OMP_MAP_TO | 6580 MappableExprsHandler::OMP_MAP_FROM; 6581 } 6582 6583 // We didn't modify anything. 6584 return CurrentModifiers; 6585 } 6586 6587 public: 6588 MappableExprsHandler(const OMPExecutableDirective &Dir, CodeGenFunction &CGF) 6589 : CurDir(Dir), CGF(CGF) { 6590 // Extract firstprivate clause information. 6591 for (const auto *C : Dir.getClausesOfKind<OMPFirstprivateClause>()) 6592 for (const auto *D : C->varlists()) 6593 FirstPrivateDecls.insert( 6594 cast<VarDecl>(cast<DeclRefExpr>(D)->getDecl())->getCanonicalDecl()); 6595 for (const auto *C : Dir.getClausesOfKind<OMPReductionClause>()) { 6596 for (const auto *D : C->varlists()) { 6597 ReductionDecls.insert( 6598 cast<VarDecl>(cast<DeclRefExpr>(D)->getDecl())->getCanonicalDecl()); 6599 } 6600 } 6601 // Extract device pointer clause information. 6602 for (const auto *C : Dir.getClausesOfKind<OMPIsDevicePtrClause>()) 6603 for (auto L : C->component_lists()) 6604 DevPointersMap[L.first].push_back(L.second); 6605 } 6606 6607 /// \brief Generate all the base pointers, section pointers, sizes and map 6608 /// types for the extracted mappable expressions. Also, for each item that 6609 /// relates with a device pointer, a pair of the relevant declaration and 6610 /// index where it occurs is appended to the device pointers info array. 6611 void generateAllInfo(MapBaseValuesArrayTy &BasePointers, 6612 MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes, 6613 MapFlagsArrayTy &Types) const { 6614 BasePointers.clear(); 6615 Pointers.clear(); 6616 Sizes.clear(); 6617 Types.clear(); 6618 6619 struct MapInfo { 6620 /// Kind that defines how a device pointer has to be returned. 6621 enum ReturnPointerKind { 6622 // Don't have to return any pointer. 6623 RPK_None, 6624 // Pointer is the base of the declaration. 6625 RPK_Base, 6626 // Pointer is a member of the base declaration - 'this' 6627 RPK_Member, 6628 // Pointer is a reference and a member of the base declaration - 'this' 6629 RPK_MemberReference, 6630 }; 6631 OMPClauseMappableExprCommon::MappableExprComponentListRef Components; 6632 OpenMPMapClauseKind MapType = OMPC_MAP_unknown; 6633 OpenMPMapClauseKind MapTypeModifier = OMPC_MAP_unknown; 6634 ReturnPointerKind ReturnDevicePointer = RPK_None; 6635 bool IsImplicit = false; 6636 6637 MapInfo() = default; 6638 MapInfo( 6639 OMPClauseMappableExprCommon::MappableExprComponentListRef Components, 6640 OpenMPMapClauseKind MapType, OpenMPMapClauseKind MapTypeModifier, 6641 ReturnPointerKind ReturnDevicePointer, bool IsImplicit) 6642 : Components(Components), MapType(MapType), 6643 MapTypeModifier(MapTypeModifier), 6644 ReturnDevicePointer(ReturnDevicePointer), IsImplicit(IsImplicit) {} 6645 }; 6646 6647 // We have to process the component lists that relate with the same 6648 // declaration in a single chunk so that we can generate the map flags 6649 // correctly. Therefore, we organize all lists in a map. 6650 llvm::MapVector<const ValueDecl *, SmallVector<MapInfo, 8>> Info; 6651 6652 // Helper function to fill the information map for the different supported 6653 // clauses. 6654 auto &&InfoGen = [&Info]( 6655 const ValueDecl *D, 6656 OMPClauseMappableExprCommon::MappableExprComponentListRef L, 6657 OpenMPMapClauseKind MapType, OpenMPMapClauseKind MapModifier, 6658 MapInfo::ReturnPointerKind ReturnDevicePointer, bool IsImplicit) { 6659 const ValueDecl *VD = 6660 D ? cast<ValueDecl>(D->getCanonicalDecl()) : nullptr; 6661 Info[VD].emplace_back(L, MapType, MapModifier, ReturnDevicePointer, 6662 IsImplicit); 6663 }; 6664 6665 // FIXME: MSVC 2013 seems to require this-> to find member CurDir. 6666 for (auto *C : this->CurDir.getClausesOfKind<OMPMapClause>()) 6667 for (auto L : C->component_lists()) { 6668 InfoGen(L.first, L.second, C->getMapType(), C->getMapTypeModifier(), 6669 MapInfo::RPK_None, C->isImplicit()); 6670 } 6671 for (auto *C : this->CurDir.getClausesOfKind<OMPToClause>()) 6672 for (auto L : C->component_lists()) { 6673 InfoGen(L.first, L.second, OMPC_MAP_to, OMPC_MAP_unknown, 6674 MapInfo::RPK_None, C->isImplicit()); 6675 } 6676 for (auto *C : this->CurDir.getClausesOfKind<OMPFromClause>()) 6677 for (auto L : C->component_lists()) { 6678 InfoGen(L.first, L.second, OMPC_MAP_from, OMPC_MAP_unknown, 6679 MapInfo::RPK_None, C->isImplicit()); 6680 } 6681 6682 // Look at the use_device_ptr clause information and mark the existing map 6683 // entries as such. If there is no map information for an entry in the 6684 // use_device_ptr list, we create one with map type 'alloc' and zero size 6685 // section. It is the user fault if that was not mapped before. 6686 // FIXME: MSVC 2013 seems to require this-> to find member CurDir. 6687 for (auto *C : this->CurDir.getClausesOfKind<OMPUseDevicePtrClause>()) 6688 for (auto L : C->component_lists()) { 6689 assert(!L.second.empty() && "Not expecting empty list of components!"); 6690 const ValueDecl *VD = L.second.back().getAssociatedDeclaration(); 6691 VD = cast<ValueDecl>(VD->getCanonicalDecl()); 6692 auto *IE = L.second.back().getAssociatedExpression(); 6693 // If the first component is a member expression, we have to look into 6694 // 'this', which maps to null in the map of map information. Otherwise 6695 // look directly for the information. 6696 auto It = Info.find(isa<MemberExpr>(IE) ? nullptr : VD); 6697 6698 // We potentially have map information for this declaration already. 6699 // Look for the first set of components that refer to it. 6700 if (It != Info.end()) { 6701 auto CI = std::find_if( 6702 It->second.begin(), It->second.end(), [VD](const MapInfo &MI) { 6703 return MI.Components.back().getAssociatedDeclaration() == VD; 6704 }); 6705 // If we found a map entry, signal that the pointer has to be returned 6706 // and move on to the next declaration. 6707 if (CI != It->second.end()) { 6708 CI->ReturnDevicePointer = isa<MemberExpr>(IE) 6709 ? (VD->getType()->isReferenceType() 6710 ? MapInfo::RPK_MemberReference 6711 : MapInfo::RPK_Member) 6712 : MapInfo::RPK_Base; 6713 continue; 6714 } 6715 } 6716 6717 // We didn't find any match in our map information - generate a zero 6718 // size array section. 6719 // FIXME: MSVC 2013 seems to require this-> to find member CGF. 6720 llvm::Value *Ptr = 6721 this->CGF 6722 .EmitLoadOfLValue(this->CGF.EmitLValue(IE), SourceLocation()) 6723 .getScalarVal(); 6724 BasePointers.push_back({Ptr, VD}); 6725 Pointers.push_back(Ptr); 6726 Sizes.push_back(llvm::Constant::getNullValue(this->CGF.SizeTy)); 6727 Types.push_back(OMP_MAP_RETURN_PARAM | OMP_MAP_TARGET_PARAM); 6728 } 6729 6730 for (auto &M : Info) { 6731 // We need to know when we generate information for the first component 6732 // associated with a capture, because the mapping flags depend on it. 6733 bool IsFirstComponentList = true; 6734 for (MapInfo &L : M.second) { 6735 assert(!L.Components.empty() && 6736 "Not expecting declaration with no component lists."); 6737 6738 // Remember the current base pointer index. 6739 unsigned CurrentBasePointersIdx = BasePointers.size(); 6740 // FIXME: MSVC 2013 seems to require this-> to find the member method. 6741 this->generateInfoForComponentList( 6742 L.MapType, L.MapTypeModifier, L.Components, BasePointers, Pointers, 6743 Sizes, Types, IsFirstComponentList, L.IsImplicit); 6744 6745 // If this entry relates with a device pointer, set the relevant 6746 // declaration and add the 'return pointer' flag. 6747 if (IsFirstComponentList && 6748 L.ReturnDevicePointer != MapInfo::RPK_None) { 6749 // If the pointer is not the base of the map, we need to skip the 6750 // base. If it is a reference in a member field, we also need to skip 6751 // the map of the reference. 6752 if (L.ReturnDevicePointer != MapInfo::RPK_Base) { 6753 ++CurrentBasePointersIdx; 6754 if (L.ReturnDevicePointer == MapInfo::RPK_MemberReference) 6755 ++CurrentBasePointersIdx; 6756 } 6757 assert(BasePointers.size() > CurrentBasePointersIdx && 6758 "Unexpected number of mapped base pointers."); 6759 6760 auto *RelevantVD = L.Components.back().getAssociatedDeclaration(); 6761 assert(RelevantVD && 6762 "No relevant declaration related with device pointer??"); 6763 6764 BasePointers[CurrentBasePointersIdx].setDevicePtrDecl(RelevantVD); 6765 Types[CurrentBasePointersIdx] |= OMP_MAP_RETURN_PARAM; 6766 } 6767 IsFirstComponentList = false; 6768 } 6769 } 6770 } 6771 6772 /// \brief Generate the base pointers, section pointers, sizes and map types 6773 /// associated to a given capture. 6774 void generateInfoForCapture(const CapturedStmt::Capture *Cap, 6775 llvm::Value *Arg, 6776 MapBaseValuesArrayTy &BasePointers, 6777 MapValuesArrayTy &Pointers, 6778 MapValuesArrayTy &Sizes, 6779 MapFlagsArrayTy &Types) const { 6780 assert(!Cap->capturesVariableArrayType() && 6781 "Not expecting to generate map info for a variable array type!"); 6782 6783 BasePointers.clear(); 6784 Pointers.clear(); 6785 Sizes.clear(); 6786 Types.clear(); 6787 6788 // We need to know when we generating information for the first component 6789 // associated with a capture, because the mapping flags depend on it. 6790 bool IsFirstComponentList = true; 6791 6792 const ValueDecl *VD = 6793 Cap->capturesThis() 6794 ? nullptr 6795 : cast<ValueDecl>(Cap->getCapturedVar()->getCanonicalDecl()); 6796 6797 // If this declaration appears in a is_device_ptr clause we just have to 6798 // pass the pointer by value. If it is a reference to a declaration, we just 6799 // pass its value, otherwise, if it is a member expression, we need to map 6800 // 'to' the field. 6801 if (!VD) { 6802 auto It = DevPointersMap.find(VD); 6803 if (It != DevPointersMap.end()) { 6804 for (auto L : It->second) { 6805 generateInfoForComponentList( 6806 /*MapType=*/OMPC_MAP_to, /*MapTypeModifier=*/OMPC_MAP_unknown, L, 6807 BasePointers, Pointers, Sizes, Types, IsFirstComponentList, 6808 /*IsImplicit=*/false); 6809 IsFirstComponentList = false; 6810 } 6811 return; 6812 } 6813 } else if (DevPointersMap.count(VD)) { 6814 BasePointers.push_back({Arg, VD}); 6815 Pointers.push_back(Arg); 6816 Sizes.push_back(CGF.getTypeSize(CGF.getContext().VoidPtrTy)); 6817 Types.push_back(OMP_MAP_LITERAL | OMP_MAP_TARGET_PARAM); 6818 return; 6819 } 6820 6821 // FIXME: MSVC 2013 seems to require this-> to find member CurDir. 6822 for (auto *C : this->CurDir.getClausesOfKind<OMPMapClause>()) 6823 for (auto L : C->decl_component_lists(VD)) { 6824 assert(L.first == VD && 6825 "We got information for the wrong declaration??"); 6826 assert(!L.second.empty() && 6827 "Not expecting declaration with no component lists."); 6828 generateInfoForComponentList( 6829 C->getMapType(), C->getMapTypeModifier(), L.second, BasePointers, 6830 Pointers, Sizes, Types, IsFirstComponentList, C->isImplicit()); 6831 IsFirstComponentList = false; 6832 } 6833 6834 return; 6835 } 6836 6837 /// \brief Generate the default map information for a given capture \a CI, 6838 /// record field declaration \a RI and captured value \a CV. 6839 void generateDefaultMapInfo(const CapturedStmt::Capture &CI, 6840 const FieldDecl &RI, llvm::Value *CV, 6841 MapBaseValuesArrayTy &CurBasePointers, 6842 MapValuesArrayTy &CurPointers, 6843 MapValuesArrayTy &CurSizes, 6844 MapFlagsArrayTy &CurMapTypes) { 6845 6846 // Do the default mapping. 6847 if (CI.capturesThis()) { 6848 CurBasePointers.push_back(CV); 6849 CurPointers.push_back(CV); 6850 const PointerType *PtrTy = cast<PointerType>(RI.getType().getTypePtr()); 6851 CurSizes.push_back(CGF.getTypeSize(PtrTy->getPointeeType())); 6852 // Default map type. 6853 CurMapTypes.push_back(OMP_MAP_TO | OMP_MAP_FROM); 6854 } else if (CI.capturesVariableByCopy()) { 6855 CurBasePointers.push_back(CV); 6856 CurPointers.push_back(CV); 6857 if (!RI.getType()->isAnyPointerType()) { 6858 // We have to signal to the runtime captures passed by value that are 6859 // not pointers. 6860 CurMapTypes.push_back(OMP_MAP_LITERAL); 6861 CurSizes.push_back(CGF.getTypeSize(RI.getType())); 6862 } else { 6863 // Pointers are implicitly mapped with a zero size and no flags 6864 // (other than first map that is added for all implicit maps). 6865 CurMapTypes.push_back(0u); 6866 CurSizes.push_back(llvm::Constant::getNullValue(CGF.SizeTy)); 6867 } 6868 } else { 6869 assert(CI.capturesVariable() && "Expected captured reference."); 6870 CurBasePointers.push_back(CV); 6871 CurPointers.push_back(CV); 6872 6873 const ReferenceType *PtrTy = 6874 cast<ReferenceType>(RI.getType().getTypePtr()); 6875 QualType ElementType = PtrTy->getPointeeType(); 6876 CurSizes.push_back(CGF.getTypeSize(ElementType)); 6877 // The default map type for a scalar/complex type is 'to' because by 6878 // default the value doesn't have to be retrieved. For an aggregate 6879 // type, the default is 'tofrom'. 6880 CurMapTypes.emplace_back(adjustMapModifiersForPrivateClauses( 6881 CI, ElementType->isAggregateType() ? (OMP_MAP_TO | OMP_MAP_FROM) 6882 : OMP_MAP_TO)); 6883 } 6884 // Every default map produces a single argument which is a target parameter. 6885 CurMapTypes.back() |= OMP_MAP_TARGET_PARAM; 6886 } 6887 }; 6888 6889 enum OpenMPOffloadingReservedDeviceIDs { 6890 /// \brief Device ID if the device was not defined, runtime should get it 6891 /// from environment variables in the spec. 6892 OMP_DEVICEID_UNDEF = -1, 6893 }; 6894 } // anonymous namespace 6895 6896 /// \brief Emit the arrays used to pass the captures and map information to the 6897 /// offloading runtime library. If there is no map or capture information, 6898 /// return nullptr by reference. 6899 static void 6900 emitOffloadingArrays(CodeGenFunction &CGF, 6901 MappableExprsHandler::MapBaseValuesArrayTy &BasePointers, 6902 MappableExprsHandler::MapValuesArrayTy &Pointers, 6903 MappableExprsHandler::MapValuesArrayTy &Sizes, 6904 MappableExprsHandler::MapFlagsArrayTy &MapTypes, 6905 CGOpenMPRuntime::TargetDataInfo &Info) { 6906 auto &CGM = CGF.CGM; 6907 auto &Ctx = CGF.getContext(); 6908 6909 // Reset the array information. 6910 Info.clearArrayInfo(); 6911 Info.NumberOfPtrs = BasePointers.size(); 6912 6913 if (Info.NumberOfPtrs) { 6914 // Detect if we have any capture size requiring runtime evaluation of the 6915 // size so that a constant array could be eventually used. 6916 bool hasRuntimeEvaluationCaptureSize = false; 6917 for (auto *S : Sizes) 6918 if (!isa<llvm::Constant>(S)) { 6919 hasRuntimeEvaluationCaptureSize = true; 6920 break; 6921 } 6922 6923 llvm::APInt PointerNumAP(32, Info.NumberOfPtrs, /*isSigned=*/true); 6924 QualType PointerArrayType = 6925 Ctx.getConstantArrayType(Ctx.VoidPtrTy, PointerNumAP, ArrayType::Normal, 6926 /*IndexTypeQuals=*/0); 6927 6928 Info.BasePointersArray = 6929 CGF.CreateMemTemp(PointerArrayType, ".offload_baseptrs").getPointer(); 6930 Info.PointersArray = 6931 CGF.CreateMemTemp(PointerArrayType, ".offload_ptrs").getPointer(); 6932 6933 // If we don't have any VLA types or other types that require runtime 6934 // evaluation, we can use a constant array for the map sizes, otherwise we 6935 // need to fill up the arrays as we do for the pointers. 6936 if (hasRuntimeEvaluationCaptureSize) { 6937 QualType SizeArrayType = Ctx.getConstantArrayType( 6938 Ctx.getSizeType(), PointerNumAP, ArrayType::Normal, 6939 /*IndexTypeQuals=*/0); 6940 Info.SizesArray = 6941 CGF.CreateMemTemp(SizeArrayType, ".offload_sizes").getPointer(); 6942 } else { 6943 // We expect all the sizes to be constant, so we collect them to create 6944 // a constant array. 6945 SmallVector<llvm::Constant *, 16> ConstSizes; 6946 for (auto S : Sizes) 6947 ConstSizes.push_back(cast<llvm::Constant>(S)); 6948 6949 auto *SizesArrayInit = llvm::ConstantArray::get( 6950 llvm::ArrayType::get(CGM.SizeTy, ConstSizes.size()), ConstSizes); 6951 auto *SizesArrayGbl = new llvm::GlobalVariable( 6952 CGM.getModule(), SizesArrayInit->getType(), 6953 /*isConstant=*/true, llvm::GlobalValue::PrivateLinkage, 6954 SizesArrayInit, ".offload_sizes"); 6955 SizesArrayGbl->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 6956 Info.SizesArray = SizesArrayGbl; 6957 } 6958 6959 // The map types are always constant so we don't need to generate code to 6960 // fill arrays. Instead, we create an array constant. 6961 llvm::Constant *MapTypesArrayInit = 6962 llvm::ConstantDataArray::get(CGF.Builder.getContext(), MapTypes); 6963 auto *MapTypesArrayGbl = new llvm::GlobalVariable( 6964 CGM.getModule(), MapTypesArrayInit->getType(), 6965 /*isConstant=*/true, llvm::GlobalValue::PrivateLinkage, 6966 MapTypesArrayInit, ".offload_maptypes"); 6967 MapTypesArrayGbl->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 6968 Info.MapTypesArray = MapTypesArrayGbl; 6969 6970 for (unsigned i = 0; i < Info.NumberOfPtrs; ++i) { 6971 llvm::Value *BPVal = *BasePointers[i]; 6972 llvm::Value *BP = CGF.Builder.CreateConstInBoundsGEP2_32( 6973 llvm::ArrayType::get(CGM.VoidPtrTy, Info.NumberOfPtrs), 6974 Info.BasePointersArray, 0, i); 6975 BP = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 6976 BP, BPVal->getType()->getPointerTo(/*AddrSpace=*/0)); 6977 Address BPAddr(BP, Ctx.getTypeAlignInChars(Ctx.VoidPtrTy)); 6978 CGF.Builder.CreateStore(BPVal, BPAddr); 6979 6980 if (Info.requiresDevicePointerInfo()) 6981 if (auto *DevVD = BasePointers[i].getDevicePtrDecl()) 6982 Info.CaptureDeviceAddrMap.insert(std::make_pair(DevVD, BPAddr)); 6983 6984 llvm::Value *PVal = Pointers[i]; 6985 llvm::Value *P = CGF.Builder.CreateConstInBoundsGEP2_32( 6986 llvm::ArrayType::get(CGM.VoidPtrTy, Info.NumberOfPtrs), 6987 Info.PointersArray, 0, i); 6988 P = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 6989 P, PVal->getType()->getPointerTo(/*AddrSpace=*/0)); 6990 Address PAddr(P, Ctx.getTypeAlignInChars(Ctx.VoidPtrTy)); 6991 CGF.Builder.CreateStore(PVal, PAddr); 6992 6993 if (hasRuntimeEvaluationCaptureSize) { 6994 llvm::Value *S = CGF.Builder.CreateConstInBoundsGEP2_32( 6995 llvm::ArrayType::get(CGM.SizeTy, Info.NumberOfPtrs), 6996 Info.SizesArray, 6997 /*Idx0=*/0, 6998 /*Idx1=*/i); 6999 Address SAddr(S, Ctx.getTypeAlignInChars(Ctx.getSizeType())); 7000 CGF.Builder.CreateStore( 7001 CGF.Builder.CreateIntCast(Sizes[i], CGM.SizeTy, /*isSigned=*/true), 7002 SAddr); 7003 } 7004 } 7005 } 7006 } 7007 /// \brief Emit the arguments to be passed to the runtime library based on the 7008 /// arrays of pointers, sizes and map types. 7009 static void emitOffloadingArraysArgument( 7010 CodeGenFunction &CGF, llvm::Value *&BasePointersArrayArg, 7011 llvm::Value *&PointersArrayArg, llvm::Value *&SizesArrayArg, 7012 llvm::Value *&MapTypesArrayArg, CGOpenMPRuntime::TargetDataInfo &Info) { 7013 auto &CGM = CGF.CGM; 7014 if (Info.NumberOfPtrs) { 7015 BasePointersArrayArg = CGF.Builder.CreateConstInBoundsGEP2_32( 7016 llvm::ArrayType::get(CGM.VoidPtrTy, Info.NumberOfPtrs), 7017 Info.BasePointersArray, 7018 /*Idx0=*/0, /*Idx1=*/0); 7019 PointersArrayArg = CGF.Builder.CreateConstInBoundsGEP2_32( 7020 llvm::ArrayType::get(CGM.VoidPtrTy, Info.NumberOfPtrs), 7021 Info.PointersArray, 7022 /*Idx0=*/0, 7023 /*Idx1=*/0); 7024 SizesArrayArg = CGF.Builder.CreateConstInBoundsGEP2_32( 7025 llvm::ArrayType::get(CGM.SizeTy, Info.NumberOfPtrs), Info.SizesArray, 7026 /*Idx0=*/0, /*Idx1=*/0); 7027 MapTypesArrayArg = CGF.Builder.CreateConstInBoundsGEP2_32( 7028 llvm::ArrayType::get(CGM.Int64Ty, Info.NumberOfPtrs), 7029 Info.MapTypesArray, 7030 /*Idx0=*/0, 7031 /*Idx1=*/0); 7032 } else { 7033 BasePointersArrayArg = llvm::ConstantPointerNull::get(CGM.VoidPtrPtrTy); 7034 PointersArrayArg = llvm::ConstantPointerNull::get(CGM.VoidPtrPtrTy); 7035 SizesArrayArg = llvm::ConstantPointerNull::get(CGM.SizeTy->getPointerTo()); 7036 MapTypesArrayArg = 7037 llvm::ConstantPointerNull::get(CGM.Int64Ty->getPointerTo()); 7038 } 7039 } 7040 7041 void CGOpenMPRuntime::emitTargetCall(CodeGenFunction &CGF, 7042 const OMPExecutableDirective &D, 7043 llvm::Value *OutlinedFn, 7044 llvm::Value *OutlinedFnID, 7045 const Expr *IfCond, const Expr *Device) { 7046 if (!CGF.HaveInsertPoint()) 7047 return; 7048 7049 assert(OutlinedFn && "Invalid outlined function!"); 7050 7051 const bool RequiresOuterTask = D.hasClausesOfKind<OMPDependClause>(); 7052 llvm::SmallVector<llvm::Value *, 16> CapturedVars; 7053 const CapturedStmt &CS = *D.getCapturedStmt(OMPD_target); 7054 auto &&ArgsCodegen = [&CS, &CapturedVars](CodeGenFunction &CGF, 7055 PrePostActionTy &) { 7056 CGF.GenerateOpenMPCapturedVars(CS, CapturedVars); 7057 }; 7058 emitInlinedDirective(CGF, OMPD_unknown, ArgsCodegen); 7059 7060 CodeGenFunction::OMPTargetDataInfo InputInfo; 7061 llvm::Value *MapTypesArray = nullptr; 7062 // Fill up the pointer arrays and transfer execution to the device. 7063 auto &&ThenGen = [this, Device, OutlinedFn, OutlinedFnID, &D, &InputInfo, 7064 &MapTypesArray, &CS, RequiresOuterTask, 7065 &CapturedVars](CodeGenFunction &CGF, PrePostActionTy &) { 7066 // On top of the arrays that were filled up, the target offloading call 7067 // takes as arguments the device id as well as the host pointer. The host 7068 // pointer is used by the runtime library to identify the current target 7069 // region, so it only has to be unique and not necessarily point to 7070 // anything. It could be the pointer to the outlined function that 7071 // implements the target region, but we aren't using that so that the 7072 // compiler doesn't need to keep that, and could therefore inline the host 7073 // function if proven worthwhile during optimization. 7074 7075 // From this point on, we need to have an ID of the target region defined. 7076 assert(OutlinedFnID && "Invalid outlined function ID!"); 7077 7078 // Emit device ID if any. 7079 llvm::Value *DeviceID; 7080 if (Device) { 7081 DeviceID = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(Device), 7082 CGF.Int64Ty, /*isSigned=*/true); 7083 } else { 7084 DeviceID = CGF.Builder.getInt64(OMP_DEVICEID_UNDEF); 7085 } 7086 7087 // Emit the number of elements in the offloading arrays. 7088 llvm::Value *PointerNum = 7089 CGF.Builder.getInt32(InputInfo.NumberOfTargetItems); 7090 7091 // Return value of the runtime offloading call. 7092 llvm::Value *Return; 7093 7094 auto *NumTeams = emitNumTeamsForTargetDirective(*this, CGF, D); 7095 auto *NumThreads = emitNumThreadsForTargetDirective(*this, CGF, D); 7096 7097 bool HasNowait = D.hasClausesOfKind<OMPNowaitClause>(); 7098 // The target region is an outlined function launched by the runtime 7099 // via calls __tgt_target() or __tgt_target_teams(). 7100 // 7101 // __tgt_target() launches a target region with one team and one thread, 7102 // executing a serial region. This master thread may in turn launch 7103 // more threads within its team upon encountering a parallel region, 7104 // however, no additional teams can be launched on the device. 7105 // 7106 // __tgt_target_teams() launches a target region with one or more teams, 7107 // each with one or more threads. This call is required for target 7108 // constructs such as: 7109 // 'target teams' 7110 // 'target' / 'teams' 7111 // 'target teams distribute parallel for' 7112 // 'target parallel' 7113 // and so on. 7114 // 7115 // Note that on the host and CPU targets, the runtime implementation of 7116 // these calls simply call the outlined function without forking threads. 7117 // The outlined functions themselves have runtime calls to 7118 // __kmpc_fork_teams() and __kmpc_fork() for this purpose, codegen'd by 7119 // the compiler in emitTeamsCall() and emitParallelCall(). 7120 // 7121 // In contrast, on the NVPTX target, the implementation of 7122 // __tgt_target_teams() launches a GPU kernel with the requested number 7123 // of teams and threads so no additional calls to the runtime are required. 7124 if (NumTeams) { 7125 // If we have NumTeams defined this means that we have an enclosed teams 7126 // region. Therefore we also expect to have NumThreads defined. These two 7127 // values should be defined in the presence of a teams directive, 7128 // regardless of having any clauses associated. If the user is using teams 7129 // but no clauses, these two values will be the default that should be 7130 // passed to the runtime library - a 32-bit integer with the value zero. 7131 assert(NumThreads && "Thread limit expression should be available along " 7132 "with number of teams."); 7133 llvm::Value *OffloadingArgs[] = {DeviceID, 7134 OutlinedFnID, 7135 PointerNum, 7136 InputInfo.BasePointersArray.getPointer(), 7137 InputInfo.PointersArray.getPointer(), 7138 InputInfo.SizesArray.getPointer(), 7139 MapTypesArray, 7140 NumTeams, 7141 NumThreads}; 7142 Return = CGF.EmitRuntimeCall( 7143 createRuntimeFunction(HasNowait ? OMPRTL__tgt_target_teams_nowait 7144 : OMPRTL__tgt_target_teams), 7145 OffloadingArgs); 7146 } else { 7147 llvm::Value *OffloadingArgs[] = {DeviceID, 7148 OutlinedFnID, 7149 PointerNum, 7150 InputInfo.BasePointersArray.getPointer(), 7151 InputInfo.PointersArray.getPointer(), 7152 InputInfo.SizesArray.getPointer(), 7153 MapTypesArray}; 7154 Return = CGF.EmitRuntimeCall( 7155 createRuntimeFunction(HasNowait ? OMPRTL__tgt_target_nowait 7156 : OMPRTL__tgt_target), 7157 OffloadingArgs); 7158 } 7159 7160 // Check the error code and execute the host version if required. 7161 llvm::BasicBlock *OffloadFailedBlock = 7162 CGF.createBasicBlock("omp_offload.failed"); 7163 llvm::BasicBlock *OffloadContBlock = 7164 CGF.createBasicBlock("omp_offload.cont"); 7165 llvm::Value *Failed = CGF.Builder.CreateIsNotNull(Return); 7166 CGF.Builder.CreateCondBr(Failed, OffloadFailedBlock, OffloadContBlock); 7167 7168 CGF.EmitBlock(OffloadFailedBlock); 7169 if (RequiresOuterTask) { 7170 CapturedVars.clear(); 7171 CGF.GenerateOpenMPCapturedVars(CS, CapturedVars); 7172 } 7173 emitOutlinedFunctionCall(CGF, D.getLocStart(), OutlinedFn, CapturedVars); 7174 CGF.EmitBranch(OffloadContBlock); 7175 7176 CGF.EmitBlock(OffloadContBlock, /*IsFinished=*/true); 7177 }; 7178 7179 // Notify that the host version must be executed. 7180 auto &&ElseGen = [this, &D, OutlinedFn, &CS, &CapturedVars, 7181 RequiresOuterTask](CodeGenFunction &CGF, 7182 PrePostActionTy &) { 7183 if (RequiresOuterTask) { 7184 CapturedVars.clear(); 7185 CGF.GenerateOpenMPCapturedVars(CS, CapturedVars); 7186 } 7187 emitOutlinedFunctionCall(CGF, D.getLocStart(), OutlinedFn, CapturedVars); 7188 }; 7189 7190 auto &&TargetThenGen = [this, &ThenGen, &D, &InputInfo, &MapTypesArray, 7191 &CapturedVars, RequiresOuterTask, 7192 &CS](CodeGenFunction &CGF, PrePostActionTy &) { 7193 // Fill up the arrays with all the captured variables. 7194 MappableExprsHandler::MapBaseValuesArrayTy BasePointers; 7195 MappableExprsHandler::MapValuesArrayTy Pointers; 7196 MappableExprsHandler::MapValuesArrayTy Sizes; 7197 MappableExprsHandler::MapFlagsArrayTy MapTypes; 7198 7199 MappableExprsHandler::MapBaseValuesArrayTy CurBasePointers; 7200 MappableExprsHandler::MapValuesArrayTy CurPointers; 7201 MappableExprsHandler::MapValuesArrayTy CurSizes; 7202 MappableExprsHandler::MapFlagsArrayTy CurMapTypes; 7203 7204 // Get mappable expression information. 7205 MappableExprsHandler MEHandler(D, CGF); 7206 7207 auto RI = CS.getCapturedRecordDecl()->field_begin(); 7208 auto CV = CapturedVars.begin(); 7209 for (CapturedStmt::const_capture_iterator CI = CS.capture_begin(), 7210 CE = CS.capture_end(); 7211 CI != CE; ++CI, ++RI, ++CV) { 7212 CurBasePointers.clear(); 7213 CurPointers.clear(); 7214 CurSizes.clear(); 7215 CurMapTypes.clear(); 7216 7217 // VLA sizes are passed to the outlined region by copy and do not have map 7218 // information associated. 7219 if (CI->capturesVariableArrayType()) { 7220 CurBasePointers.push_back(*CV); 7221 CurPointers.push_back(*CV); 7222 CurSizes.push_back(CGF.getTypeSize(RI->getType())); 7223 // Copy to the device as an argument. No need to retrieve it. 7224 CurMapTypes.push_back(MappableExprsHandler::OMP_MAP_LITERAL | 7225 MappableExprsHandler::OMP_MAP_TARGET_PARAM); 7226 } else { 7227 // If we have any information in the map clause, we use it, otherwise we 7228 // just do a default mapping. 7229 MEHandler.generateInfoForCapture(CI, *CV, CurBasePointers, CurPointers, 7230 CurSizes, CurMapTypes); 7231 if (CurBasePointers.empty()) 7232 MEHandler.generateDefaultMapInfo(*CI, **RI, *CV, CurBasePointers, 7233 CurPointers, CurSizes, CurMapTypes); 7234 } 7235 // We expect to have at least an element of information for this capture. 7236 assert(!CurBasePointers.empty() && 7237 "Non-existing map pointer for capture!"); 7238 assert(CurBasePointers.size() == CurPointers.size() && 7239 CurBasePointers.size() == CurSizes.size() && 7240 CurBasePointers.size() == CurMapTypes.size() && 7241 "Inconsistent map information sizes!"); 7242 7243 // We need to append the results of this capture to what we already have. 7244 BasePointers.append(CurBasePointers.begin(), CurBasePointers.end()); 7245 Pointers.append(CurPointers.begin(), CurPointers.end()); 7246 Sizes.append(CurSizes.begin(), CurSizes.end()); 7247 MapTypes.append(CurMapTypes.begin(), CurMapTypes.end()); 7248 } 7249 7250 TargetDataInfo Info; 7251 // Fill up the arrays and create the arguments. 7252 emitOffloadingArrays(CGF, BasePointers, Pointers, Sizes, MapTypes, Info); 7253 emitOffloadingArraysArgument(CGF, Info.BasePointersArray, 7254 Info.PointersArray, Info.SizesArray, 7255 Info.MapTypesArray, Info); 7256 InputInfo.NumberOfTargetItems = Info.NumberOfPtrs; 7257 InputInfo.BasePointersArray = 7258 Address(Info.BasePointersArray, CGM.getPointerAlign()); 7259 InputInfo.PointersArray = 7260 Address(Info.PointersArray, CGM.getPointerAlign()); 7261 InputInfo.SizesArray = Address(Info.SizesArray, CGM.getPointerAlign()); 7262 MapTypesArray = Info.MapTypesArray; 7263 if (RequiresOuterTask) 7264 CGF.EmitOMPTargetTaskBasedDirective(D, ThenGen, InputInfo); 7265 else 7266 emitInlinedDirective(CGF, D.getDirectiveKind(), ThenGen); 7267 }; 7268 7269 auto &&TargetElseGen = [this, &ElseGen, &D, RequiresOuterTask]( 7270 CodeGenFunction &CGF, PrePostActionTy &) { 7271 if (RequiresOuterTask) { 7272 CodeGenFunction::OMPTargetDataInfo InputInfo; 7273 CGF.EmitOMPTargetTaskBasedDirective(D, ElseGen, InputInfo); 7274 } else { 7275 emitInlinedDirective(CGF, D.getDirectiveKind(), ElseGen); 7276 } 7277 }; 7278 7279 // If we have a target function ID it means that we need to support 7280 // offloading, otherwise, just execute on the host. We need to execute on host 7281 // regardless of the conditional in the if clause if, e.g., the user do not 7282 // specify target triples. 7283 if (OutlinedFnID) { 7284 if (IfCond) { 7285 emitOMPIfClause(CGF, IfCond, TargetThenGen, TargetElseGen); 7286 } else { 7287 RegionCodeGenTy ThenRCG(TargetThenGen); 7288 ThenRCG(CGF); 7289 } 7290 } else { 7291 RegionCodeGenTy ElseRCG(TargetElseGen); 7292 ElseRCG(CGF); 7293 } 7294 } 7295 7296 void CGOpenMPRuntime::scanForTargetRegionsFunctions(const Stmt *S, 7297 StringRef ParentName) { 7298 if (!S) 7299 return; 7300 7301 // Codegen OMP target directives that offload compute to the device. 7302 bool requiresDeviceCodegen = 7303 isa<OMPExecutableDirective>(S) && 7304 isOpenMPTargetExecutionDirective( 7305 cast<OMPExecutableDirective>(S)->getDirectiveKind()); 7306 7307 if (requiresDeviceCodegen) { 7308 auto &E = *cast<OMPExecutableDirective>(S); 7309 unsigned DeviceID; 7310 unsigned FileID; 7311 unsigned Line; 7312 getTargetEntryUniqueInfo(CGM.getContext(), E.getLocStart(), DeviceID, 7313 FileID, Line); 7314 7315 // Is this a target region that should not be emitted as an entry point? If 7316 // so just signal we are done with this target region. 7317 if (!OffloadEntriesInfoManager.hasTargetRegionEntryInfo(DeviceID, FileID, 7318 ParentName, Line)) 7319 return; 7320 7321 switch (S->getStmtClass()) { 7322 case Stmt::OMPTargetDirectiveClass: 7323 CodeGenFunction::EmitOMPTargetDeviceFunction( 7324 CGM, ParentName, cast<OMPTargetDirective>(*S)); 7325 break; 7326 case Stmt::OMPTargetParallelDirectiveClass: 7327 CodeGenFunction::EmitOMPTargetParallelDeviceFunction( 7328 CGM, ParentName, cast<OMPTargetParallelDirective>(*S)); 7329 break; 7330 case Stmt::OMPTargetTeamsDirectiveClass: 7331 CodeGenFunction::EmitOMPTargetTeamsDeviceFunction( 7332 CGM, ParentName, cast<OMPTargetTeamsDirective>(*S)); 7333 break; 7334 case Stmt::OMPTargetTeamsDistributeDirectiveClass: 7335 CodeGenFunction::EmitOMPTargetTeamsDistributeDeviceFunction( 7336 CGM, ParentName, cast<OMPTargetTeamsDistributeDirective>(*S)); 7337 break; 7338 case Stmt::OMPTargetTeamsDistributeSimdDirectiveClass: 7339 CodeGenFunction::EmitOMPTargetTeamsDistributeSimdDeviceFunction( 7340 CGM, ParentName, cast<OMPTargetTeamsDistributeSimdDirective>(*S)); 7341 break; 7342 case Stmt::OMPTargetParallelForDirectiveClass: 7343 CodeGenFunction::EmitOMPTargetParallelForDeviceFunction( 7344 CGM, ParentName, cast<OMPTargetParallelForDirective>(*S)); 7345 break; 7346 case Stmt::OMPTargetParallelForSimdDirectiveClass: 7347 CodeGenFunction::EmitOMPTargetParallelForSimdDeviceFunction( 7348 CGM, ParentName, cast<OMPTargetParallelForSimdDirective>(*S)); 7349 break; 7350 case Stmt::OMPTargetSimdDirectiveClass: 7351 CodeGenFunction::EmitOMPTargetSimdDeviceFunction( 7352 CGM, ParentName, cast<OMPTargetSimdDirective>(*S)); 7353 break; 7354 case Stmt::OMPTargetTeamsDistributeParallelForDirectiveClass: 7355 CodeGenFunction::EmitOMPTargetTeamsDistributeParallelForDeviceFunction( 7356 CGM, ParentName, 7357 cast<OMPTargetTeamsDistributeParallelForDirective>(*S)); 7358 break; 7359 case Stmt::OMPTargetTeamsDistributeParallelForSimdDirectiveClass: 7360 CodeGenFunction:: 7361 EmitOMPTargetTeamsDistributeParallelForSimdDeviceFunction( 7362 CGM, ParentName, 7363 cast<OMPTargetTeamsDistributeParallelForSimdDirective>(*S)); 7364 break; 7365 default: 7366 llvm_unreachable("Unknown target directive for OpenMP device codegen."); 7367 } 7368 return; 7369 } 7370 7371 if (const OMPExecutableDirective *E = dyn_cast<OMPExecutableDirective>(S)) { 7372 if (!E->hasAssociatedStmt() || !E->getAssociatedStmt()) 7373 return; 7374 7375 scanForTargetRegionsFunctions( 7376 E->getInnermostCapturedStmt()->getCapturedStmt(), ParentName); 7377 return; 7378 } 7379 7380 // If this is a lambda function, look into its body. 7381 if (auto *L = dyn_cast<LambdaExpr>(S)) 7382 S = L->getBody(); 7383 7384 // Keep looking for target regions recursively. 7385 for (auto *II : S->children()) 7386 scanForTargetRegionsFunctions(II, ParentName); 7387 } 7388 7389 bool CGOpenMPRuntime::emitTargetFunctions(GlobalDecl GD) { 7390 auto &FD = *cast<FunctionDecl>(GD.getDecl()); 7391 7392 // If emitting code for the host, we do not process FD here. Instead we do 7393 // the normal code generation. 7394 if (!CGM.getLangOpts().OpenMPIsDevice) 7395 return false; 7396 7397 // Try to detect target regions in the function. 7398 scanForTargetRegionsFunctions(FD.getBody(), CGM.getMangledName(GD)); 7399 7400 // We should not emit any function other that the ones created during the 7401 // scanning. Therefore, we signal that this function is completely dealt 7402 // with. 7403 return true; 7404 } 7405 7406 bool CGOpenMPRuntime::emitTargetGlobalVariable(GlobalDecl GD) { 7407 if (!CGM.getLangOpts().OpenMPIsDevice) 7408 return false; 7409 7410 // Check if there are Ctors/Dtors in this declaration and look for target 7411 // regions in it. We use the complete variant to produce the kernel name 7412 // mangling. 7413 QualType RDTy = cast<VarDecl>(GD.getDecl())->getType(); 7414 if (auto *RD = RDTy->getBaseElementTypeUnsafe()->getAsCXXRecordDecl()) { 7415 for (auto *Ctor : RD->ctors()) { 7416 StringRef ParentName = 7417 CGM.getMangledName(GlobalDecl(Ctor, Ctor_Complete)); 7418 scanForTargetRegionsFunctions(Ctor->getBody(), ParentName); 7419 } 7420 auto *Dtor = RD->getDestructor(); 7421 if (Dtor) { 7422 StringRef ParentName = 7423 CGM.getMangledName(GlobalDecl(Dtor, Dtor_Complete)); 7424 scanForTargetRegionsFunctions(Dtor->getBody(), ParentName); 7425 } 7426 } 7427 7428 // If we are in target mode, we do not emit any global (declare target is not 7429 // implemented yet). Therefore we signal that GD was processed in this case. 7430 return true; 7431 } 7432 7433 bool CGOpenMPRuntime::emitTargetGlobal(GlobalDecl GD) { 7434 auto *VD = GD.getDecl(); 7435 if (isa<FunctionDecl>(VD)) 7436 return emitTargetFunctions(GD); 7437 7438 return emitTargetGlobalVariable(GD); 7439 } 7440 7441 llvm::Function *CGOpenMPRuntime::emitRegistrationFunction() { 7442 // If we have offloading in the current module, we need to emit the entries 7443 // now and register the offloading descriptor. 7444 createOffloadEntriesAndInfoMetadata(); 7445 7446 // Create and register the offloading binary descriptors. This is the main 7447 // entity that captures all the information about offloading in the current 7448 // compilation unit. 7449 return createOffloadingBinaryDescriptorRegistration(); 7450 } 7451 7452 void CGOpenMPRuntime::emitTeamsCall(CodeGenFunction &CGF, 7453 const OMPExecutableDirective &D, 7454 SourceLocation Loc, 7455 llvm::Value *OutlinedFn, 7456 ArrayRef<llvm::Value *> CapturedVars) { 7457 if (!CGF.HaveInsertPoint()) 7458 return; 7459 7460 auto *RTLoc = emitUpdateLocation(CGF, Loc); 7461 CodeGenFunction::RunCleanupsScope Scope(CGF); 7462 7463 // Build call __kmpc_fork_teams(loc, n, microtask, var1, .., varn); 7464 llvm::Value *Args[] = { 7465 RTLoc, 7466 CGF.Builder.getInt32(CapturedVars.size()), // Number of captured vars 7467 CGF.Builder.CreateBitCast(OutlinedFn, getKmpc_MicroPointerTy())}; 7468 llvm::SmallVector<llvm::Value *, 16> RealArgs; 7469 RealArgs.append(std::begin(Args), std::end(Args)); 7470 RealArgs.append(CapturedVars.begin(), CapturedVars.end()); 7471 7472 auto RTLFn = createRuntimeFunction(OMPRTL__kmpc_fork_teams); 7473 CGF.EmitRuntimeCall(RTLFn, RealArgs); 7474 } 7475 7476 void CGOpenMPRuntime::emitNumTeamsClause(CodeGenFunction &CGF, 7477 const Expr *NumTeams, 7478 const Expr *ThreadLimit, 7479 SourceLocation Loc) { 7480 if (!CGF.HaveInsertPoint()) 7481 return; 7482 7483 auto *RTLoc = emitUpdateLocation(CGF, Loc); 7484 7485 llvm::Value *NumTeamsVal = 7486 (NumTeams) 7487 ? CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(NumTeams), 7488 CGF.CGM.Int32Ty, /* isSigned = */ true) 7489 : CGF.Builder.getInt32(0); 7490 7491 llvm::Value *ThreadLimitVal = 7492 (ThreadLimit) 7493 ? CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(ThreadLimit), 7494 CGF.CGM.Int32Ty, /* isSigned = */ true) 7495 : CGF.Builder.getInt32(0); 7496 7497 // Build call __kmpc_push_num_teamss(&loc, global_tid, num_teams, thread_limit) 7498 llvm::Value *PushNumTeamsArgs[] = {RTLoc, getThreadID(CGF, Loc), NumTeamsVal, 7499 ThreadLimitVal}; 7500 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__kmpc_push_num_teams), 7501 PushNumTeamsArgs); 7502 } 7503 7504 void CGOpenMPRuntime::emitTargetDataCalls( 7505 CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond, 7506 const Expr *Device, const RegionCodeGenTy &CodeGen, TargetDataInfo &Info) { 7507 if (!CGF.HaveInsertPoint()) 7508 return; 7509 7510 // Action used to replace the default codegen action and turn privatization 7511 // off. 7512 PrePostActionTy NoPrivAction; 7513 7514 // Generate the code for the opening of the data environment. Capture all the 7515 // arguments of the runtime call by reference because they are used in the 7516 // closing of the region. 7517 auto &&BeginThenGen = [this, &D, Device, &Info, 7518 &CodeGen](CodeGenFunction &CGF, PrePostActionTy &) { 7519 // Fill up the arrays with all the mapped variables. 7520 MappableExprsHandler::MapBaseValuesArrayTy BasePointers; 7521 MappableExprsHandler::MapValuesArrayTy Pointers; 7522 MappableExprsHandler::MapValuesArrayTy Sizes; 7523 MappableExprsHandler::MapFlagsArrayTy MapTypes; 7524 7525 // Get map clause information. 7526 MappableExprsHandler MCHandler(D, CGF); 7527 MCHandler.generateAllInfo(BasePointers, Pointers, Sizes, MapTypes); 7528 7529 // Fill up the arrays and create the arguments. 7530 emitOffloadingArrays(CGF, BasePointers, Pointers, Sizes, MapTypes, Info); 7531 7532 llvm::Value *BasePointersArrayArg = nullptr; 7533 llvm::Value *PointersArrayArg = nullptr; 7534 llvm::Value *SizesArrayArg = nullptr; 7535 llvm::Value *MapTypesArrayArg = nullptr; 7536 emitOffloadingArraysArgument(CGF, BasePointersArrayArg, PointersArrayArg, 7537 SizesArrayArg, MapTypesArrayArg, Info); 7538 7539 // Emit device ID if any. 7540 llvm::Value *DeviceID = nullptr; 7541 if (Device) { 7542 DeviceID = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(Device), 7543 CGF.Int64Ty, /*isSigned=*/true); 7544 } else { 7545 DeviceID = CGF.Builder.getInt64(OMP_DEVICEID_UNDEF); 7546 } 7547 7548 // Emit the number of elements in the offloading arrays. 7549 auto *PointerNum = CGF.Builder.getInt32(Info.NumberOfPtrs); 7550 7551 llvm::Value *OffloadingArgs[] = { 7552 DeviceID, PointerNum, BasePointersArrayArg, 7553 PointersArrayArg, SizesArrayArg, MapTypesArrayArg}; 7554 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__tgt_target_data_begin), 7555 OffloadingArgs); 7556 7557 // If device pointer privatization is required, emit the body of the region 7558 // here. It will have to be duplicated: with and without privatization. 7559 if (!Info.CaptureDeviceAddrMap.empty()) 7560 CodeGen(CGF); 7561 }; 7562 7563 // Generate code for the closing of the data region. 7564 auto &&EndThenGen = [this, Device, &Info](CodeGenFunction &CGF, 7565 PrePostActionTy &) { 7566 assert(Info.isValid() && "Invalid data environment closing arguments."); 7567 7568 llvm::Value *BasePointersArrayArg = nullptr; 7569 llvm::Value *PointersArrayArg = nullptr; 7570 llvm::Value *SizesArrayArg = nullptr; 7571 llvm::Value *MapTypesArrayArg = nullptr; 7572 emitOffloadingArraysArgument(CGF, BasePointersArrayArg, PointersArrayArg, 7573 SizesArrayArg, MapTypesArrayArg, Info); 7574 7575 // Emit device ID if any. 7576 llvm::Value *DeviceID = nullptr; 7577 if (Device) { 7578 DeviceID = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(Device), 7579 CGF.Int64Ty, /*isSigned=*/true); 7580 } else { 7581 DeviceID = CGF.Builder.getInt64(OMP_DEVICEID_UNDEF); 7582 } 7583 7584 // Emit the number of elements in the offloading arrays. 7585 auto *PointerNum = CGF.Builder.getInt32(Info.NumberOfPtrs); 7586 7587 llvm::Value *OffloadingArgs[] = { 7588 DeviceID, PointerNum, BasePointersArrayArg, 7589 PointersArrayArg, SizesArrayArg, MapTypesArrayArg}; 7590 CGF.EmitRuntimeCall(createRuntimeFunction(OMPRTL__tgt_target_data_end), 7591 OffloadingArgs); 7592 }; 7593 7594 // If we need device pointer privatization, we need to emit the body of the 7595 // region with no privatization in the 'else' branch of the conditional. 7596 // Otherwise, we don't have to do anything. 7597 auto &&BeginElseGen = [&Info, &CodeGen, &NoPrivAction](CodeGenFunction &CGF, 7598 PrePostActionTy &) { 7599 if (!Info.CaptureDeviceAddrMap.empty()) { 7600 CodeGen.setAction(NoPrivAction); 7601 CodeGen(CGF); 7602 } 7603 }; 7604 7605 // We don't have to do anything to close the region if the if clause evaluates 7606 // to false. 7607 auto &&EndElseGen = [](CodeGenFunction &CGF, PrePostActionTy &) {}; 7608 7609 if (IfCond) { 7610 emitOMPIfClause(CGF, IfCond, BeginThenGen, BeginElseGen); 7611 } else { 7612 RegionCodeGenTy RCG(BeginThenGen); 7613 RCG(CGF); 7614 } 7615 7616 // If we don't require privatization of device pointers, we emit the body in 7617 // between the runtime calls. This avoids duplicating the body code. 7618 if (Info.CaptureDeviceAddrMap.empty()) { 7619 CodeGen.setAction(NoPrivAction); 7620 CodeGen(CGF); 7621 } 7622 7623 if (IfCond) { 7624 emitOMPIfClause(CGF, IfCond, EndThenGen, EndElseGen); 7625 } else { 7626 RegionCodeGenTy RCG(EndThenGen); 7627 RCG(CGF); 7628 } 7629 } 7630 7631 void CGOpenMPRuntime::emitTargetDataStandAloneCall( 7632 CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond, 7633 const Expr *Device) { 7634 if (!CGF.HaveInsertPoint()) 7635 return; 7636 7637 assert((isa<OMPTargetEnterDataDirective>(D) || 7638 isa<OMPTargetExitDataDirective>(D) || 7639 isa<OMPTargetUpdateDirective>(D)) && 7640 "Expecting either target enter, exit data, or update directives."); 7641 7642 CodeGenFunction::OMPTargetDataInfo InputInfo; 7643 llvm::Value *MapTypesArray = nullptr; 7644 // Generate the code for the opening of the data environment. 7645 auto &&ThenGen = [this, &D, Device, &InputInfo, 7646 &MapTypesArray](CodeGenFunction &CGF, PrePostActionTy &) { 7647 // Emit device ID if any. 7648 llvm::Value *DeviceID = nullptr; 7649 if (Device) { 7650 DeviceID = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(Device), 7651 CGF.Int64Ty, /*isSigned=*/true); 7652 } else { 7653 DeviceID = CGF.Builder.getInt64(OMP_DEVICEID_UNDEF); 7654 } 7655 7656 // Emit the number of elements in the offloading arrays. 7657 llvm::Constant *PointerNum = 7658 CGF.Builder.getInt32(InputInfo.NumberOfTargetItems); 7659 7660 llvm::Value *OffloadingArgs[] = {DeviceID, 7661 PointerNum, 7662 InputInfo.BasePointersArray.getPointer(), 7663 InputInfo.PointersArray.getPointer(), 7664 InputInfo.SizesArray.getPointer(), 7665 MapTypesArray}; 7666 7667 // Select the right runtime function call for each expected standalone 7668 // directive. 7669 const bool HasNowait = D.hasClausesOfKind<OMPNowaitClause>(); 7670 OpenMPRTLFunction RTLFn; 7671 switch (D.getDirectiveKind()) { 7672 default: 7673 llvm_unreachable("Unexpected standalone target data directive."); 7674 break; 7675 case OMPD_target_enter_data: 7676 RTLFn = HasNowait ? OMPRTL__tgt_target_data_begin_nowait 7677 : OMPRTL__tgt_target_data_begin; 7678 break; 7679 case OMPD_target_exit_data: 7680 RTLFn = HasNowait ? OMPRTL__tgt_target_data_end_nowait 7681 : OMPRTL__tgt_target_data_end; 7682 break; 7683 case OMPD_target_update: 7684 RTLFn = HasNowait ? OMPRTL__tgt_target_data_update_nowait 7685 : OMPRTL__tgt_target_data_update; 7686 break; 7687 } 7688 CGF.EmitRuntimeCall(createRuntimeFunction(RTLFn), OffloadingArgs); 7689 }; 7690 7691 auto &&TargetThenGen = [this, &ThenGen, &D, &InputInfo, &MapTypesArray]( 7692 CodeGenFunction &CGF, PrePostActionTy &) { 7693 // Fill up the arrays with all the mapped variables. 7694 MappableExprsHandler::MapBaseValuesArrayTy BasePointers; 7695 MappableExprsHandler::MapValuesArrayTy Pointers; 7696 MappableExprsHandler::MapValuesArrayTy Sizes; 7697 MappableExprsHandler::MapFlagsArrayTy MapTypes; 7698 7699 // Get map clause information. 7700 MappableExprsHandler MEHandler(D, CGF); 7701 MEHandler.generateAllInfo(BasePointers, Pointers, Sizes, MapTypes); 7702 7703 TargetDataInfo Info; 7704 // Fill up the arrays and create the arguments. 7705 emitOffloadingArrays(CGF, BasePointers, Pointers, Sizes, MapTypes, Info); 7706 emitOffloadingArraysArgument(CGF, Info.BasePointersArray, 7707 Info.PointersArray, Info.SizesArray, 7708 Info.MapTypesArray, Info); 7709 InputInfo.NumberOfTargetItems = Info.NumberOfPtrs; 7710 InputInfo.BasePointersArray = 7711 Address(Info.BasePointersArray, CGM.getPointerAlign()); 7712 InputInfo.PointersArray = 7713 Address(Info.PointersArray, CGM.getPointerAlign()); 7714 InputInfo.SizesArray = 7715 Address(Info.SizesArray, CGM.getPointerAlign()); 7716 MapTypesArray = Info.MapTypesArray; 7717 if (D.hasClausesOfKind<OMPDependClause>()) 7718 CGF.EmitOMPTargetTaskBasedDirective(D, ThenGen, InputInfo); 7719 else 7720 emitInlinedDirective(CGF, D.getDirectiveKind(), ThenGen); 7721 }; 7722 7723 if (IfCond) 7724 emitOMPIfClause(CGF, IfCond, TargetThenGen, 7725 [](CodeGenFunction &CGF, PrePostActionTy &) {}); 7726 else { 7727 RegionCodeGenTy ThenRCG(TargetThenGen); 7728 ThenRCG(CGF); 7729 } 7730 } 7731 7732 namespace { 7733 /// Kind of parameter in a function with 'declare simd' directive. 7734 enum ParamKindTy { LinearWithVarStride, Linear, Uniform, Vector }; 7735 /// Attribute set of the parameter. 7736 struct ParamAttrTy { 7737 ParamKindTy Kind = Vector; 7738 llvm::APSInt StrideOrArg; 7739 llvm::APSInt Alignment; 7740 }; 7741 } // namespace 7742 7743 static unsigned evaluateCDTSize(const FunctionDecl *FD, 7744 ArrayRef<ParamAttrTy> ParamAttrs) { 7745 // Every vector variant of a SIMD-enabled function has a vector length (VLEN). 7746 // If OpenMP clause "simdlen" is used, the VLEN is the value of the argument 7747 // of that clause. The VLEN value must be power of 2. 7748 // In other case the notion of the function`s "characteristic data type" (CDT) 7749 // is used to compute the vector length. 7750 // CDT is defined in the following order: 7751 // a) For non-void function, the CDT is the return type. 7752 // b) If the function has any non-uniform, non-linear parameters, then the 7753 // CDT is the type of the first such parameter. 7754 // c) If the CDT determined by a) or b) above is struct, union, or class 7755 // type which is pass-by-value (except for the type that maps to the 7756 // built-in complex data type), the characteristic data type is int. 7757 // d) If none of the above three cases is applicable, the CDT is int. 7758 // The VLEN is then determined based on the CDT and the size of vector 7759 // register of that ISA for which current vector version is generated. The 7760 // VLEN is computed using the formula below: 7761 // VLEN = sizeof(vector_register) / sizeof(CDT), 7762 // where vector register size specified in section 3.2.1 Registers and the 7763 // Stack Frame of original AMD64 ABI document. 7764 QualType RetType = FD->getReturnType(); 7765 if (RetType.isNull()) 7766 return 0; 7767 ASTContext &C = FD->getASTContext(); 7768 QualType CDT; 7769 if (!RetType.isNull() && !RetType->isVoidType()) 7770 CDT = RetType; 7771 else { 7772 unsigned Offset = 0; 7773 if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) { 7774 if (ParamAttrs[Offset].Kind == Vector) 7775 CDT = C.getPointerType(C.getRecordType(MD->getParent())); 7776 ++Offset; 7777 } 7778 if (CDT.isNull()) { 7779 for (unsigned I = 0, E = FD->getNumParams(); I < E; ++I) { 7780 if (ParamAttrs[I + Offset].Kind == Vector) { 7781 CDT = FD->getParamDecl(I)->getType(); 7782 break; 7783 } 7784 } 7785 } 7786 } 7787 if (CDT.isNull()) 7788 CDT = C.IntTy; 7789 CDT = CDT->getCanonicalTypeUnqualified(); 7790 if (CDT->isRecordType() || CDT->isUnionType()) 7791 CDT = C.IntTy; 7792 return C.getTypeSize(CDT); 7793 } 7794 7795 static void 7796 emitX86DeclareSimdFunction(const FunctionDecl *FD, llvm::Function *Fn, 7797 const llvm::APSInt &VLENVal, 7798 ArrayRef<ParamAttrTy> ParamAttrs, 7799 OMPDeclareSimdDeclAttr::BranchStateTy State) { 7800 struct ISADataTy { 7801 char ISA; 7802 unsigned VecRegSize; 7803 }; 7804 ISADataTy ISAData[] = { 7805 { 7806 'b', 128 7807 }, // SSE 7808 { 7809 'c', 256 7810 }, // AVX 7811 { 7812 'd', 256 7813 }, // AVX2 7814 { 7815 'e', 512 7816 }, // AVX512 7817 }; 7818 llvm::SmallVector<char, 2> Masked; 7819 switch (State) { 7820 case OMPDeclareSimdDeclAttr::BS_Undefined: 7821 Masked.push_back('N'); 7822 Masked.push_back('M'); 7823 break; 7824 case OMPDeclareSimdDeclAttr::BS_Notinbranch: 7825 Masked.push_back('N'); 7826 break; 7827 case OMPDeclareSimdDeclAttr::BS_Inbranch: 7828 Masked.push_back('M'); 7829 break; 7830 } 7831 for (auto Mask : Masked) { 7832 for (auto &Data : ISAData) { 7833 SmallString<256> Buffer; 7834 llvm::raw_svector_ostream Out(Buffer); 7835 Out << "_ZGV" << Data.ISA << Mask; 7836 if (!VLENVal) { 7837 Out << llvm::APSInt::getUnsigned(Data.VecRegSize / 7838 evaluateCDTSize(FD, ParamAttrs)); 7839 } else 7840 Out << VLENVal; 7841 for (auto &ParamAttr : ParamAttrs) { 7842 switch (ParamAttr.Kind){ 7843 case LinearWithVarStride: 7844 Out << 's' << ParamAttr.StrideOrArg; 7845 break; 7846 case Linear: 7847 Out << 'l'; 7848 if (!!ParamAttr.StrideOrArg) 7849 Out << ParamAttr.StrideOrArg; 7850 break; 7851 case Uniform: 7852 Out << 'u'; 7853 break; 7854 case Vector: 7855 Out << 'v'; 7856 break; 7857 } 7858 if (!!ParamAttr.Alignment) 7859 Out << 'a' << ParamAttr.Alignment; 7860 } 7861 Out << '_' << Fn->getName(); 7862 Fn->addFnAttr(Out.str()); 7863 } 7864 } 7865 } 7866 7867 void CGOpenMPRuntime::emitDeclareSimdFunction(const FunctionDecl *FD, 7868 llvm::Function *Fn) { 7869 ASTContext &C = CGM.getContext(); 7870 FD = FD->getCanonicalDecl(); 7871 // Map params to their positions in function decl. 7872 llvm::DenseMap<const Decl *, unsigned> ParamPositions; 7873 if (isa<CXXMethodDecl>(FD)) 7874 ParamPositions.insert({FD, 0}); 7875 unsigned ParamPos = ParamPositions.size(); 7876 for (auto *P : FD->parameters()) { 7877 ParamPositions.insert({P->getCanonicalDecl(), ParamPos}); 7878 ++ParamPos; 7879 } 7880 for (auto *Attr : FD->specific_attrs<OMPDeclareSimdDeclAttr>()) { 7881 llvm::SmallVector<ParamAttrTy, 8> ParamAttrs(ParamPositions.size()); 7882 // Mark uniform parameters. 7883 for (auto *E : Attr->uniforms()) { 7884 E = E->IgnoreParenImpCasts(); 7885 unsigned Pos; 7886 if (isa<CXXThisExpr>(E)) 7887 Pos = ParamPositions[FD]; 7888 else { 7889 auto *PVD = cast<ParmVarDecl>(cast<DeclRefExpr>(E)->getDecl()) 7890 ->getCanonicalDecl(); 7891 Pos = ParamPositions[PVD]; 7892 } 7893 ParamAttrs[Pos].Kind = Uniform; 7894 } 7895 // Get alignment info. 7896 auto NI = Attr->alignments_begin(); 7897 for (auto *E : Attr->aligneds()) { 7898 E = E->IgnoreParenImpCasts(); 7899 unsigned Pos; 7900 QualType ParmTy; 7901 if (isa<CXXThisExpr>(E)) { 7902 Pos = ParamPositions[FD]; 7903 ParmTy = E->getType(); 7904 } else { 7905 auto *PVD = cast<ParmVarDecl>(cast<DeclRefExpr>(E)->getDecl()) 7906 ->getCanonicalDecl(); 7907 Pos = ParamPositions[PVD]; 7908 ParmTy = PVD->getType(); 7909 } 7910 ParamAttrs[Pos].Alignment = 7911 (*NI) ? (*NI)->EvaluateKnownConstInt(C) 7912 : llvm::APSInt::getUnsigned( 7913 C.toCharUnitsFromBits(C.getOpenMPDefaultSimdAlign(ParmTy)) 7914 .getQuantity()); 7915 ++NI; 7916 } 7917 // Mark linear parameters. 7918 auto SI = Attr->steps_begin(); 7919 auto MI = Attr->modifiers_begin(); 7920 for (auto *E : Attr->linears()) { 7921 E = E->IgnoreParenImpCasts(); 7922 unsigned Pos; 7923 if (isa<CXXThisExpr>(E)) 7924 Pos = ParamPositions[FD]; 7925 else { 7926 auto *PVD = cast<ParmVarDecl>(cast<DeclRefExpr>(E)->getDecl()) 7927 ->getCanonicalDecl(); 7928 Pos = ParamPositions[PVD]; 7929 } 7930 auto &ParamAttr = ParamAttrs[Pos]; 7931 ParamAttr.Kind = Linear; 7932 if (*SI) { 7933 if (!(*SI)->EvaluateAsInt(ParamAttr.StrideOrArg, C, 7934 Expr::SE_AllowSideEffects)) { 7935 if (auto *DRE = cast<DeclRefExpr>((*SI)->IgnoreParenImpCasts())) { 7936 if (auto *StridePVD = cast<ParmVarDecl>(DRE->getDecl())) { 7937 ParamAttr.Kind = LinearWithVarStride; 7938 ParamAttr.StrideOrArg = llvm::APSInt::getUnsigned( 7939 ParamPositions[StridePVD->getCanonicalDecl()]); 7940 } 7941 } 7942 } 7943 } 7944 ++SI; 7945 ++MI; 7946 } 7947 llvm::APSInt VLENVal; 7948 if (const Expr *VLEN = Attr->getSimdlen()) 7949 VLENVal = VLEN->EvaluateKnownConstInt(C); 7950 OMPDeclareSimdDeclAttr::BranchStateTy State = Attr->getBranchState(); 7951 if (CGM.getTriple().getArch() == llvm::Triple::x86 || 7952 CGM.getTriple().getArch() == llvm::Triple::x86_64) 7953 emitX86DeclareSimdFunction(FD, Fn, VLENVal, ParamAttrs, State); 7954 } 7955 } 7956 7957 namespace { 7958 /// Cleanup action for doacross support. 7959 class DoacrossCleanupTy final : public EHScopeStack::Cleanup { 7960 public: 7961 static const int DoacrossFinArgs = 2; 7962 7963 private: 7964 llvm::Value *RTLFn; 7965 llvm::Value *Args[DoacrossFinArgs]; 7966 7967 public: 7968 DoacrossCleanupTy(llvm::Value *RTLFn, ArrayRef<llvm::Value *> CallArgs) 7969 : RTLFn(RTLFn) { 7970 assert(CallArgs.size() == DoacrossFinArgs); 7971 std::copy(CallArgs.begin(), CallArgs.end(), std::begin(Args)); 7972 } 7973 void Emit(CodeGenFunction &CGF, Flags /*flags*/) override { 7974 if (!CGF.HaveInsertPoint()) 7975 return; 7976 CGF.EmitRuntimeCall(RTLFn, Args); 7977 } 7978 }; 7979 } // namespace 7980 7981 void CGOpenMPRuntime::emitDoacrossInit(CodeGenFunction &CGF, 7982 const OMPLoopDirective &D) { 7983 if (!CGF.HaveInsertPoint()) 7984 return; 7985 7986 ASTContext &C = CGM.getContext(); 7987 QualType Int64Ty = C.getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/true); 7988 RecordDecl *RD; 7989 if (KmpDimTy.isNull()) { 7990 // Build struct kmp_dim { // loop bounds info casted to kmp_int64 7991 // kmp_int64 lo; // lower 7992 // kmp_int64 up; // upper 7993 // kmp_int64 st; // stride 7994 // }; 7995 RD = C.buildImplicitRecord("kmp_dim"); 7996 RD->startDefinition(); 7997 addFieldToRecordDecl(C, RD, Int64Ty); 7998 addFieldToRecordDecl(C, RD, Int64Ty); 7999 addFieldToRecordDecl(C, RD, Int64Ty); 8000 RD->completeDefinition(); 8001 KmpDimTy = C.getRecordType(RD); 8002 } else 8003 RD = cast<RecordDecl>(KmpDimTy->getAsTagDecl()); 8004 8005 Address DimsAddr = CGF.CreateMemTemp(KmpDimTy, "dims"); 8006 CGF.EmitNullInitialization(DimsAddr, KmpDimTy); 8007 enum { LowerFD = 0, UpperFD, StrideFD }; 8008 // Fill dims with data. 8009 LValue DimsLVal = CGF.MakeAddrLValue(DimsAddr, KmpDimTy); 8010 // dims.upper = num_iterations; 8011 LValue UpperLVal = 8012 CGF.EmitLValueForField(DimsLVal, *std::next(RD->field_begin(), UpperFD)); 8013 llvm::Value *NumIterVal = CGF.EmitScalarConversion( 8014 CGF.EmitScalarExpr(D.getNumIterations()), D.getNumIterations()->getType(), 8015 Int64Ty, D.getNumIterations()->getExprLoc()); 8016 CGF.EmitStoreOfScalar(NumIterVal, UpperLVal); 8017 // dims.stride = 1; 8018 LValue StrideLVal = 8019 CGF.EmitLValueForField(DimsLVal, *std::next(RD->field_begin(), StrideFD)); 8020 CGF.EmitStoreOfScalar(llvm::ConstantInt::getSigned(CGM.Int64Ty, /*V=*/1), 8021 StrideLVal); 8022 8023 // Build call void __kmpc_doacross_init(ident_t *loc, kmp_int32 gtid, 8024 // kmp_int32 num_dims, struct kmp_dim * dims); 8025 llvm::Value *Args[] = {emitUpdateLocation(CGF, D.getLocStart()), 8026 getThreadID(CGF, D.getLocStart()), 8027 llvm::ConstantInt::getSigned(CGM.Int32Ty, 1), 8028 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast( 8029 DimsAddr.getPointer(), CGM.VoidPtrTy)}; 8030 8031 llvm::Value *RTLFn = createRuntimeFunction(OMPRTL__kmpc_doacross_init); 8032 CGF.EmitRuntimeCall(RTLFn, Args); 8033 llvm::Value *FiniArgs[DoacrossCleanupTy::DoacrossFinArgs] = { 8034 emitUpdateLocation(CGF, D.getLocEnd()), getThreadID(CGF, D.getLocEnd())}; 8035 llvm::Value *FiniRTLFn = createRuntimeFunction(OMPRTL__kmpc_doacross_fini); 8036 CGF.EHStack.pushCleanup<DoacrossCleanupTy>(NormalAndEHCleanup, FiniRTLFn, 8037 llvm::makeArrayRef(FiniArgs)); 8038 } 8039 8040 void CGOpenMPRuntime::emitDoacrossOrdered(CodeGenFunction &CGF, 8041 const OMPDependClause *C) { 8042 QualType Int64Ty = 8043 CGM.getContext().getIntTypeForBitwidth(/*DestWidth=*/64, /*Signed=*/1); 8044 const Expr *CounterVal = C->getCounterValue(); 8045 assert(CounterVal); 8046 llvm::Value *CntVal = CGF.EmitScalarConversion(CGF.EmitScalarExpr(CounterVal), 8047 CounterVal->getType(), Int64Ty, 8048 CounterVal->getExprLoc()); 8049 Address CntAddr = CGF.CreateMemTemp(Int64Ty, ".cnt.addr"); 8050 CGF.EmitStoreOfScalar(CntVal, CntAddr, /*Volatile=*/false, Int64Ty); 8051 llvm::Value *Args[] = {emitUpdateLocation(CGF, C->getLocStart()), 8052 getThreadID(CGF, C->getLocStart()), 8053 CntAddr.getPointer()}; 8054 llvm::Value *RTLFn; 8055 if (C->getDependencyKind() == OMPC_DEPEND_source) 8056 RTLFn = createRuntimeFunction(OMPRTL__kmpc_doacross_post); 8057 else { 8058 assert(C->getDependencyKind() == OMPC_DEPEND_sink); 8059 RTLFn = createRuntimeFunction(OMPRTL__kmpc_doacross_wait); 8060 } 8061 CGF.EmitRuntimeCall(RTLFn, Args); 8062 } 8063 8064 void CGOpenMPRuntime::emitCall(CodeGenFunction &CGF, llvm::Value *Callee, 8065 ArrayRef<llvm::Value *> Args, 8066 SourceLocation Loc) const { 8067 auto DL = ApplyDebugLocation::CreateDefaultArtificial(CGF, Loc); 8068 8069 if (auto *Fn = dyn_cast<llvm::Function>(Callee)) { 8070 if (Fn->doesNotThrow()) { 8071 CGF.EmitNounwindRuntimeCall(Fn, Args); 8072 return; 8073 } 8074 } 8075 CGF.EmitRuntimeCall(Callee, Args); 8076 } 8077 8078 void CGOpenMPRuntime::emitOutlinedFunctionCall( 8079 CodeGenFunction &CGF, SourceLocation Loc, llvm::Value *OutlinedFn, 8080 ArrayRef<llvm::Value *> Args) const { 8081 assert(Loc.isValid() && "Outlined function call location must be valid."); 8082 emitCall(CGF, OutlinedFn, Args, Loc); 8083 } 8084 8085 Address CGOpenMPRuntime::getParameterAddress(CodeGenFunction &CGF, 8086 const VarDecl *NativeParam, 8087 const VarDecl *TargetParam) const { 8088 return CGF.GetAddrOfLocalVar(NativeParam); 8089 } 8090 8091 llvm::Value *CGOpenMPSIMDRuntime::emitParallelOutlinedFunction( 8092 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar, 8093 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen) { 8094 llvm_unreachable("Not supported in SIMD-only mode"); 8095 } 8096 8097 llvm::Value *CGOpenMPSIMDRuntime::emitTeamsOutlinedFunction( 8098 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar, 8099 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen) { 8100 llvm_unreachable("Not supported in SIMD-only mode"); 8101 } 8102 8103 llvm::Value *CGOpenMPSIMDRuntime::emitTaskOutlinedFunction( 8104 const OMPExecutableDirective &D, const VarDecl *ThreadIDVar, 8105 const VarDecl *PartIDVar, const VarDecl *TaskTVar, 8106 OpenMPDirectiveKind InnermostKind, const RegionCodeGenTy &CodeGen, 8107 bool Tied, unsigned &NumberOfParts) { 8108 llvm_unreachable("Not supported in SIMD-only mode"); 8109 } 8110 8111 void CGOpenMPSIMDRuntime::emitParallelCall(CodeGenFunction &CGF, 8112 SourceLocation Loc, 8113 llvm::Value *OutlinedFn, 8114 ArrayRef<llvm::Value *> CapturedVars, 8115 const Expr *IfCond) { 8116 llvm_unreachable("Not supported in SIMD-only mode"); 8117 } 8118 8119 void CGOpenMPSIMDRuntime::emitCriticalRegion( 8120 CodeGenFunction &CGF, StringRef CriticalName, 8121 const RegionCodeGenTy &CriticalOpGen, SourceLocation Loc, 8122 const Expr *Hint) { 8123 llvm_unreachable("Not supported in SIMD-only mode"); 8124 } 8125 8126 void CGOpenMPSIMDRuntime::emitMasterRegion(CodeGenFunction &CGF, 8127 const RegionCodeGenTy &MasterOpGen, 8128 SourceLocation Loc) { 8129 llvm_unreachable("Not supported in SIMD-only mode"); 8130 } 8131 8132 void CGOpenMPSIMDRuntime::emitTaskyieldCall(CodeGenFunction &CGF, 8133 SourceLocation Loc) { 8134 llvm_unreachable("Not supported in SIMD-only mode"); 8135 } 8136 8137 void CGOpenMPSIMDRuntime::emitTaskgroupRegion( 8138 CodeGenFunction &CGF, const RegionCodeGenTy &TaskgroupOpGen, 8139 SourceLocation Loc) { 8140 llvm_unreachable("Not supported in SIMD-only mode"); 8141 } 8142 8143 void CGOpenMPSIMDRuntime::emitSingleRegion( 8144 CodeGenFunction &CGF, const RegionCodeGenTy &SingleOpGen, 8145 SourceLocation Loc, ArrayRef<const Expr *> CopyprivateVars, 8146 ArrayRef<const Expr *> DestExprs, ArrayRef<const Expr *> SrcExprs, 8147 ArrayRef<const Expr *> AssignmentOps) { 8148 llvm_unreachable("Not supported in SIMD-only mode"); 8149 } 8150 8151 void CGOpenMPSIMDRuntime::emitOrderedRegion(CodeGenFunction &CGF, 8152 const RegionCodeGenTy &OrderedOpGen, 8153 SourceLocation Loc, 8154 bool IsThreads) { 8155 llvm_unreachable("Not supported in SIMD-only mode"); 8156 } 8157 8158 void CGOpenMPSIMDRuntime::emitBarrierCall(CodeGenFunction &CGF, 8159 SourceLocation Loc, 8160 OpenMPDirectiveKind Kind, 8161 bool EmitChecks, 8162 bool ForceSimpleCall) { 8163 llvm_unreachable("Not supported in SIMD-only mode"); 8164 } 8165 8166 void CGOpenMPSIMDRuntime::emitForDispatchInit( 8167 CodeGenFunction &CGF, SourceLocation Loc, 8168 const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned, 8169 bool Ordered, const DispatchRTInput &DispatchValues) { 8170 llvm_unreachable("Not supported in SIMD-only mode"); 8171 } 8172 8173 void CGOpenMPSIMDRuntime::emitForStaticInit( 8174 CodeGenFunction &CGF, SourceLocation Loc, OpenMPDirectiveKind DKind, 8175 const OpenMPScheduleTy &ScheduleKind, const StaticRTInput &Values) { 8176 llvm_unreachable("Not supported in SIMD-only mode"); 8177 } 8178 8179 void CGOpenMPSIMDRuntime::emitDistributeStaticInit( 8180 CodeGenFunction &CGF, SourceLocation Loc, 8181 OpenMPDistScheduleClauseKind SchedKind, const StaticRTInput &Values) { 8182 llvm_unreachable("Not supported in SIMD-only mode"); 8183 } 8184 8185 void CGOpenMPSIMDRuntime::emitForOrderedIterationEnd(CodeGenFunction &CGF, 8186 SourceLocation Loc, 8187 unsigned IVSize, 8188 bool IVSigned) { 8189 llvm_unreachable("Not supported in SIMD-only mode"); 8190 } 8191 8192 void CGOpenMPSIMDRuntime::emitForStaticFinish(CodeGenFunction &CGF, 8193 SourceLocation Loc, 8194 OpenMPDirectiveKind DKind) { 8195 llvm_unreachable("Not supported in SIMD-only mode"); 8196 } 8197 8198 llvm::Value *CGOpenMPSIMDRuntime::emitForNext(CodeGenFunction &CGF, 8199 SourceLocation Loc, 8200 unsigned IVSize, bool IVSigned, 8201 Address IL, Address LB, 8202 Address UB, Address ST) { 8203 llvm_unreachable("Not supported in SIMD-only mode"); 8204 } 8205 8206 void CGOpenMPSIMDRuntime::emitNumThreadsClause(CodeGenFunction &CGF, 8207 llvm::Value *NumThreads, 8208 SourceLocation Loc) { 8209 llvm_unreachable("Not supported in SIMD-only mode"); 8210 } 8211 8212 void CGOpenMPSIMDRuntime::emitProcBindClause(CodeGenFunction &CGF, 8213 OpenMPProcBindClauseKind ProcBind, 8214 SourceLocation Loc) { 8215 llvm_unreachable("Not supported in SIMD-only mode"); 8216 } 8217 8218 Address CGOpenMPSIMDRuntime::getAddrOfThreadPrivate(CodeGenFunction &CGF, 8219 const VarDecl *VD, 8220 Address VDAddr, 8221 SourceLocation Loc) { 8222 llvm_unreachable("Not supported in SIMD-only mode"); 8223 } 8224 8225 llvm::Function *CGOpenMPSIMDRuntime::emitThreadPrivateVarDefinition( 8226 const VarDecl *VD, Address VDAddr, SourceLocation Loc, bool PerformInit, 8227 CodeGenFunction *CGF) { 8228 llvm_unreachable("Not supported in SIMD-only mode"); 8229 } 8230 8231 Address CGOpenMPSIMDRuntime::getAddrOfArtificialThreadPrivate( 8232 CodeGenFunction &CGF, QualType VarType, StringRef Name) { 8233 llvm_unreachable("Not supported in SIMD-only mode"); 8234 } 8235 8236 void CGOpenMPSIMDRuntime::emitFlush(CodeGenFunction &CGF, 8237 ArrayRef<const Expr *> Vars, 8238 SourceLocation Loc) { 8239 llvm_unreachable("Not supported in SIMD-only mode"); 8240 } 8241 8242 void CGOpenMPSIMDRuntime::emitTaskCall(CodeGenFunction &CGF, SourceLocation Loc, 8243 const OMPExecutableDirective &D, 8244 llvm::Value *TaskFunction, 8245 QualType SharedsTy, Address Shareds, 8246 const Expr *IfCond, 8247 const OMPTaskDataTy &Data) { 8248 llvm_unreachable("Not supported in SIMD-only mode"); 8249 } 8250 8251 void CGOpenMPSIMDRuntime::emitTaskLoopCall( 8252 CodeGenFunction &CGF, SourceLocation Loc, const OMPLoopDirective &D, 8253 llvm::Value *TaskFunction, QualType SharedsTy, Address Shareds, 8254 const Expr *IfCond, const OMPTaskDataTy &Data) { 8255 llvm_unreachable("Not supported in SIMD-only mode"); 8256 } 8257 8258 void CGOpenMPSIMDRuntime::emitReduction( 8259 CodeGenFunction &CGF, SourceLocation Loc, ArrayRef<const Expr *> Privates, 8260 ArrayRef<const Expr *> LHSExprs, ArrayRef<const Expr *> RHSExprs, 8261 ArrayRef<const Expr *> ReductionOps, ReductionOptionsTy Options) { 8262 assert(Options.SimpleReduction && "Only simple reduction is expected."); 8263 CGOpenMPRuntime::emitReduction(CGF, Loc, Privates, LHSExprs, RHSExprs, 8264 ReductionOps, Options); 8265 } 8266 8267 llvm::Value *CGOpenMPSIMDRuntime::emitTaskReductionInit( 8268 CodeGenFunction &CGF, SourceLocation Loc, ArrayRef<const Expr *> LHSExprs, 8269 ArrayRef<const Expr *> RHSExprs, const OMPTaskDataTy &Data) { 8270 llvm_unreachable("Not supported in SIMD-only mode"); 8271 } 8272 8273 void CGOpenMPSIMDRuntime::emitTaskReductionFixups(CodeGenFunction &CGF, 8274 SourceLocation Loc, 8275 ReductionCodeGen &RCG, 8276 unsigned N) { 8277 llvm_unreachable("Not supported in SIMD-only mode"); 8278 } 8279 8280 Address CGOpenMPSIMDRuntime::getTaskReductionItem(CodeGenFunction &CGF, 8281 SourceLocation Loc, 8282 llvm::Value *ReductionsPtr, 8283 LValue SharedLVal) { 8284 llvm_unreachable("Not supported in SIMD-only mode"); 8285 } 8286 8287 void CGOpenMPSIMDRuntime::emitTaskwaitCall(CodeGenFunction &CGF, 8288 SourceLocation Loc) { 8289 llvm_unreachable("Not supported in SIMD-only mode"); 8290 } 8291 8292 void CGOpenMPSIMDRuntime::emitCancellationPointCall( 8293 CodeGenFunction &CGF, SourceLocation Loc, 8294 OpenMPDirectiveKind CancelRegion) { 8295 llvm_unreachable("Not supported in SIMD-only mode"); 8296 } 8297 8298 void CGOpenMPSIMDRuntime::emitCancelCall(CodeGenFunction &CGF, 8299 SourceLocation Loc, const Expr *IfCond, 8300 OpenMPDirectiveKind CancelRegion) { 8301 llvm_unreachable("Not supported in SIMD-only mode"); 8302 } 8303 8304 void CGOpenMPSIMDRuntime::emitTargetOutlinedFunction( 8305 const OMPExecutableDirective &D, StringRef ParentName, 8306 llvm::Function *&OutlinedFn, llvm::Constant *&OutlinedFnID, 8307 bool IsOffloadEntry, const RegionCodeGenTy &CodeGen) { 8308 llvm_unreachable("Not supported in SIMD-only mode"); 8309 } 8310 8311 void CGOpenMPSIMDRuntime::emitTargetCall(CodeGenFunction &CGF, 8312 const OMPExecutableDirective &D, 8313 llvm::Value *OutlinedFn, 8314 llvm::Value *OutlinedFnID, 8315 const Expr *IfCond, const Expr *Device) { 8316 llvm_unreachable("Not supported in SIMD-only mode"); 8317 } 8318 8319 bool CGOpenMPSIMDRuntime::emitTargetFunctions(GlobalDecl GD) { 8320 llvm_unreachable("Not supported in SIMD-only mode"); 8321 } 8322 8323 bool CGOpenMPSIMDRuntime::emitTargetGlobalVariable(GlobalDecl GD) { 8324 llvm_unreachable("Not supported in SIMD-only mode"); 8325 } 8326 8327 bool CGOpenMPSIMDRuntime::emitTargetGlobal(GlobalDecl GD) { 8328 return false; 8329 } 8330 8331 llvm::Function *CGOpenMPSIMDRuntime::emitRegistrationFunction() { 8332 return nullptr; 8333 } 8334 8335 void CGOpenMPSIMDRuntime::emitTeamsCall(CodeGenFunction &CGF, 8336 const OMPExecutableDirective &D, 8337 SourceLocation Loc, 8338 llvm::Value *OutlinedFn, 8339 ArrayRef<llvm::Value *> CapturedVars) { 8340 llvm_unreachable("Not supported in SIMD-only mode"); 8341 } 8342 8343 void CGOpenMPSIMDRuntime::emitNumTeamsClause(CodeGenFunction &CGF, 8344 const Expr *NumTeams, 8345 const Expr *ThreadLimit, 8346 SourceLocation Loc) { 8347 llvm_unreachable("Not supported in SIMD-only mode"); 8348 } 8349 8350 void CGOpenMPSIMDRuntime::emitTargetDataCalls( 8351 CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond, 8352 const Expr *Device, const RegionCodeGenTy &CodeGen, TargetDataInfo &Info) { 8353 llvm_unreachable("Not supported in SIMD-only mode"); 8354 } 8355 8356 void CGOpenMPSIMDRuntime::emitTargetDataStandAloneCall( 8357 CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond, 8358 const Expr *Device) { 8359 llvm_unreachable("Not supported in SIMD-only mode"); 8360 } 8361 8362 void CGOpenMPSIMDRuntime::emitDoacrossInit(CodeGenFunction &CGF, 8363 const OMPLoopDirective &D) { 8364 llvm_unreachable("Not supported in SIMD-only mode"); 8365 } 8366 8367 void CGOpenMPSIMDRuntime::emitDoacrossOrdered(CodeGenFunction &CGF, 8368 const OMPDependClause *C) { 8369 llvm_unreachable("Not supported in SIMD-only mode"); 8370 } 8371 8372 const VarDecl * 8373 CGOpenMPSIMDRuntime::translateParameter(const FieldDecl *FD, 8374 const VarDecl *NativeParam) const { 8375 llvm_unreachable("Not supported in SIMD-only mode"); 8376 } 8377 8378 Address 8379 CGOpenMPSIMDRuntime::getParameterAddress(CodeGenFunction &CGF, 8380 const VarDecl *NativeParam, 8381 const VarDecl *TargetParam) const { 8382 llvm_unreachable("Not supported in SIMD-only mode"); 8383 } 8384 8385