Searched refs:CaptureRegions (Results 1 – 8 of 8) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | OpenMPKinds.cpp | 805 SmallVectorImpl<OpenMPDirectiveKind> &CaptureRegions, in getOpenMPCaptureRegions() argument 815 CaptureRegions.push_back(OMPD_metadirective); in getOpenMPCaptureRegions() 818 CaptureRegions.push_back(OMPD_nothing); in getOpenMPCaptureRegions() 821 CaptureRegions.push_back(OMPD_parallel); in getOpenMPCaptureRegions() 824 CaptureRegions.push_back(OMPD_task); in getOpenMPCaptureRegions() 825 CaptureRegions.push_back(OMPD_target); in getOpenMPCaptureRegions() 831 CaptureRegions.push_back(OMPD_task); in getOpenMPCaptureRegions() 834 CaptureRegions.push_back(OMPD_teams); in getOpenMPCaptureRegions() 837 CaptureRegions.push_back(OMPD_taskloop); in getOpenMPCaptureRegions() 844 if (!CaptureRegions.empty() && in getOpenMPCaptureRegions() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | OpenMPKinds.h | 375 llvm::SmallVectorImpl<OpenMPDirectiveKind> &CaptureRegions,
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntimeGPU.cpp | 343 llvm::SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in VisitOMPExecutableDirective() local 344 getOpenMPCaptureRegions(CaptureRegions, D->getDirectiveKind()); in VisitOMPExecutableDirective() 345 if (CaptureRegions.size() == 1 && CaptureRegions.back() == OMPD_unknown) { in VisitOMPExecutableDirective() 351 CaptureRegions.back() == OMPD_parallel && in VisitOMPExecutableDirective()
|
| H A D | CGOpenMPRuntime.cpp | 11562 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in tryToDisableInnerAnalysis() local 11563 getOpenMPCaptureRegions(CaptureRegions, S.getDirectiveKind()); in tryToDisableInnerAnalysis() 11564 const CapturedStmt *CS = S.getCapturedStmt(CaptureRegions.front()); in tryToDisableInnerAnalysis() 11955 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in checkAndEmitSharedLastprivateConditional() local 11956 getOpenMPCaptureRegions(CaptureRegions, D.getDirectiveKind()); in checkAndEmitSharedLastprivateConditional() 11957 const CapturedStmt *CS = D.getCapturedStmt(CaptureRegions.back()); in checkAndEmitSharedLastprivateConditional()
|
| H A D | CGStmtOpenMP.cpp | 878 llvm::SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in EmitOMPFirstprivateClause() local 879 getOpenMPCaptureRegions(CaptureRegions, EKind); in EmitOMPFirstprivateClause() 883 CaptureRegions.size() == 1 && CaptureRegions.back() == OMPD_unknown; in EmitOMPFirstprivateClause()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 536 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in getCapturedStmt() local 537 getOpenMPCaptureRegions(CaptureRegions, getDirectiveKind()); in getCapturedStmt() 538 return Data->getCapturedStmt(RegionKind, CaptureRegions); in getCapturedStmt() 545 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in getInnermostCapturedStmt() local 546 getOpenMPCaptureRegions(CaptureRegions, getDirectiveKind()); in getInnermostCapturedStmt() 547 return Data->getInnermostCapturedStmt(CaptureRegions); in getInnermostCapturedStmt()
|
| H A D | OpenMPClause.h | 9669 ArrayRef<OpenMPDirectiveKind> CaptureRegions) const { in getCapturedStmt() argument 9670 assert(llvm::is_contained(CaptureRegions, RegionKind) && in getCapturedStmt() 9673 for (auto ThisCaptureRegion : CaptureRegions) { in getCapturedStmt() 9683 getInnermostCapturedStmt(ArrayRef<OpenMPDirectiveKind> CaptureRegions) { in getInnermostCapturedStmt() argument 9685 assert(!CaptureRegions.empty() && in getInnermostCapturedStmt() 9688 for (unsigned Level = CaptureRegions.size(); Level > 1; --Level) in getInnermostCapturedStmt() 9694 getInnermostCapturedStmt(ArrayRef<OpenMPDirectiveKind> CaptureRegions) const { in getInnermostCapturedStmt() argument 9696 CaptureRegions); in getInnermostCapturedStmt()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 653 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in getCaptureRegion() local 654 getOpenMPCaptureRegions(CaptureRegions, getDirective(Level)); in getCaptureRegion() 655 return CaptureRegions[OpenMPCaptureLevel]; in getCaptureRegion() 2540 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in isOpenMPPrivateDecl() local 2541 getOpenMPCaptureRegions(CaptureRegions, DKind); in isOpenMPPrivateDecl() 2542 if (isOpenMPTaskingDirective(CaptureRegions[CapLevel]) && in isOpenMPPrivateDecl() 2544 !isOpenMPTaskLoopDirective(CaptureRegions[CapLevel]))) { in isOpenMPPrivateDecl() 4424 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in getOpenMPCaptureLevels() local 4425 getOpenMPCaptureRegions(CaptureRegions, DKind); in getOpenMPCaptureLevels() 4426 return CaptureRegions.size(); in getOpenMPCaptureLevels() [all …]
|