Searched refs:CaptureRegions (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/ |
| H A D | OpenMPKinds.cpp | 790 CaptureRegions.push_back(OMPD_task); in getOpenMPCaptureRegions() 791 CaptureRegions.push_back(OMPD_target); in getOpenMPCaptureRegions() 792 CaptureRegions.push_back(OMPD_teams); in getOpenMPCaptureRegions() 797 CaptureRegions.push_back(OMPD_teams); in getOpenMPCaptureRegions() 801 CaptureRegions.push_back(OMPD_task); in getOpenMPCaptureRegions() 802 CaptureRegions.push_back(OMPD_target); in getOpenMPCaptureRegions() 807 CaptureRegions.push_back(OMPD_teams); in getOpenMPCaptureRegions() 814 CaptureRegions.push_back(OMPD_task); in getOpenMPCaptureRegions() 822 CaptureRegions.push_back(OMPD_task); in getOpenMPCaptureRegions() 842 CaptureRegions.push_back(OMPD_task); in getOpenMPCaptureRegions() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | OpenMPKinds.h | 350 llvm::SmallVectorImpl<OpenMPDirectiveKind> &CaptureRegions,
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 550 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in getCapturedStmt() local 551 getOpenMPCaptureRegions(CaptureRegions, getDirectiveKind()); in getCapturedStmt() 552 return Data->getCapturedStmt(RegionKind, CaptureRegions); in getCapturedStmt() 559 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in getInnermostCapturedStmt() local 560 getOpenMPCaptureRegions(CaptureRegions, getDirectiveKind()); in getInnermostCapturedStmt() 561 return Data->getInnermostCapturedStmt(CaptureRegions); in getInnermostCapturedStmt()
|
| H A D | OpenMPClause.h | 9043 ArrayRef<OpenMPDirectiveKind> CaptureRegions) const { in getCapturedStmt() argument 9044 assert(llvm::is_contained(CaptureRegions, RegionKind) && in getCapturedStmt() 9047 for (auto ThisCaptureRegion : CaptureRegions) { in getCapturedStmt() 9057 getInnermostCapturedStmt(ArrayRef<OpenMPDirectiveKind> CaptureRegions) { in getInnermostCapturedStmt() argument 9059 assert(!CaptureRegions.empty() && in getInnermostCapturedStmt() 9062 for (unsigned Level = CaptureRegions.size(); Level > 1; --Level) in getInnermostCapturedStmt() 9068 getInnermostCapturedStmt(ArrayRef<OpenMPDirectiveKind> CaptureRegions) const { in getInnermostCapturedStmt() argument 9070 CaptureRegions); in getInnermostCapturedStmt()
|
| /freebsd-14.2/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 | 11466 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in tryToDisableInnerAnalysis() local 11467 getOpenMPCaptureRegions(CaptureRegions, S.getDirectiveKind()); in tryToDisableInnerAnalysis() 11468 const CapturedStmt *CS = S.getCapturedStmt(CaptureRegions.front()); in tryToDisableInnerAnalysis() 11859 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in checkAndEmitSharedLastprivateConditional() local 11860 getOpenMPCaptureRegions(CaptureRegions, D.getDirectiveKind()); in checkAndEmitSharedLastprivateConditional() 11861 const CapturedStmt *CS = D.getCapturedStmt(CaptureRegions.back()); in checkAndEmitSharedLastprivateConditional()
|
| H A D | CGStmtOpenMP.cpp | 812 llvm::SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in EmitOMPFirstprivateClause() local 813 getOpenMPCaptureRegions(CaptureRegions, D.getDirectiveKind()); in EmitOMPFirstprivateClause() 817 CaptureRegions.size() == 1 && CaptureRegions.back() == OMPD_unknown; in EmitOMPFirstprivateClause()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 669 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in getCaptureRegion() local 671 return CaptureRegions[OpenMPCaptureLevel]; in getCaptureRegion() 2556 getOpenMPCaptureRegions(CaptureRegions, DKind); in isOpenMPPrivateDecl() 4636 SmallVector<OpenMPDirectiveKind, 4> CaptureRegions; in getOpenMPCaptureLevels() local 4637 getOpenMPCaptureRegions(CaptureRegions, DKind); in getOpenMPCaptureLevels() 4638 return CaptureRegions.size(); in getOpenMPCaptureLevels() 4858 assert(CaptureRegions.empty() && in ActOnOpenMPRegionEnd() 4860 } else if (CaptureRegions.size() > 1 || in ActOnOpenMPRegionEnd() 4973 if (++CompletedRegions == CaptureRegions.size()) in ActOnOpenMPRegionEnd() 6288 getOpenMPCaptureRegions(CaptureRegions, Kind); in ActOnOpenMPExecutableDirective() [all …]
|