Home
last modified time | relevance | path

Searched refs:getCapturedStmt (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp82 const CapturedStmt *CS = S.getCapturedStmt(*CapturedRegion); in OMPLexicalScope()
165 LD->getInnermostCapturedStmt()->getCapturedStmt(), in emitPreInitStmt()
273 CS = dyn_cast<CapturedStmt>(CS->getCapturedStmt()); in OMPSimdLexicalScope()
1551 const CapturedStmt *CS = S.getCapturedStmt(OMPD_parallel); in emitCommonOMPParallelDirective()
1727 const CapturedStmt *CS = S.getCapturedStmt(OMPD_parallel); in EmitOMPParallelDirective()
1728 const Stmt *ParallelRegionBodyStmt = CS->getCapturedStmt(); in EmitOMPParallelDirective()
1766 CGF.EmitStmt(S.getCapturedStmt(OMPD_parallel)->getCapturedStmt()); in EmitOMPParallelDirective()
1899 D.getInnermostCapturedStmt()->getCapturedStmt()->IgnoreContainers(); in EmitOMPLoopBody()
2045 const Stmt *SS = ICS->getCapturedStmt(); in EmitOMPInnerLoop()
3650 const Stmt *CapturedStmt = S.getInnermostCapturedStmt()->getCapturedStmt(); in EmitSections()
[all …]
H A DCGOpenMPRuntimeGPU.cpp377 VisitStmt(S->getCapturedStmt()); in VisitOMPExecutableDirective()
629 CS->getCapturedStmt()->IgnoreContainers(/*IgnoreCaptured=*/true); in hasNestedSPMDDirective()
827 CS->getCapturedStmt()->IgnoreContainers(/*IgnoreCaptured=*/true); in hasNestedLightweightDirective()
1610 D.getInnermostCapturedStmt()->getCapturedStmt()->IgnoreContainers( in getDistributeLastprivateVars()
1659 TeamAndReductions.first = D.getCapturedStmt(OMPD_teams)->getCapturedDecl(); in emitTeamsOutlinedFunction()
4024 const auto &CS = *D.getCapturedStmt(OMPD_parallel); in createParallelDataSharingWrapper()
4333 const CapturedStmt *CS = D.getCapturedStmt(OMPD_target); in adjustTargetSpecificDataForLambdas()
H A DCGOpenMPRuntime.cpp1289 const CapturedStmt *CS = D.getCapturedStmt(OMPD_parallel); in emitParallelOutlinedFunction()
1297 const CapturedStmt *CS = D.getCapturedStmt(OMPD_teams); in emitTeamsOutlinedFunction()
1328 const CapturedStmt *CS = D.getCapturedStmt(Region); in emitTaskOutlinedFunction()
3835 const CapturedStmt &CS = *D.getCapturedStmt(Kind); in emitPrivatesInit()
6494 const CapturedStmt &CS = *D.getCapturedStmt(OMPD_target); in emitTargetOutlinedFunctionHelper()
6612 CS->getCapturedStmt()->IgnoreContainers(/*IgnoreCaptured=*/true); in emitNumTeamsForTargetDirective()
6727 CGF.getContext(), CS->getCapturedStmt()); in getNumThreads()
6842 CGF.getContext(), CS->getCapturedStmt()); in emitNumThreadsForTargetDirective()
6872 CGF.getContext(), CS->getCapturedStmt()); in emitNumThreadsForTargetDirective()
6899 CGF.getContext(), CS->getCapturedStmt()); in emitNumThreadsForTargetDirective()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DParentMap.cpp93 if (Stmt *SubStmt = cast<CapturedStmt>(S)->getCapturedStmt()) { in BuildParentMap()
H A DStmt.cpp199 S = CapS->getCapturedStmt(); in IgnoreContainers()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h3572 Stmt *getCapturedStmt() { return getStoredStmts()[NumCaptures]; } in getCapturedStmt() function
3573 const Stmt *getCapturedStmt() const { return getStoredStmts()[NumCaptures]; } in getCapturedStmt() function
3664 return getCapturedStmt()->getBeginLoc(); in getBeginLoc()
3668 return getCapturedStmt()->getEndLoc(); in getEndLoc()
3672 return getCapturedStmt()->getSourceRange(); in getSourceRange()
H A DOpenMPClause.h8537 getCapturedStmt(OpenMPDirectiveKind RegionKind, in getCapturedStmt() function
8547 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in getCapturedStmt()
8560 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in getInnermostCapturedStmt()
8581 S = CS->getCapturedStmt(); in getRawStmt()
H A DStmtOpenMP.h528 const CapturedStmt *getCapturedStmt(OpenMPDirectiveKind RegionKind) const { in getCapturedStmt() function
533 return Data->getCapturedStmt(RegionKind, CaptureRegions); in getCapturedStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp3449 Visit(S->getInnermostCapturedStmt()->getCapturedStmt()); in VisitSubCaptures()
5731 S = cast<CapturedStmt>(S)->getCapturedStmt(); in ActOnOpenMPExecutableDirective()
5741 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in ActOnOpenMPExecutableDirective()
9751 BaseStmt = CS->getCapturedStmt(); in ActOnOpenMPSectionsDirective()
9808 Stmt *S = cast<CapturedStmt>(AStmt)->getCapturedStmt(); in ActOnOpenMPDispatchDirective()
10082 BaseStmt = CS->getCapturedStmt(); in ActOnOpenMPParallelSectionsDirective()
11109 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in ActOnOpenMPTargetDirective()
11174 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in ActOnOpenMPTargetParallelDirective()
11205 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in ActOnOpenMPTargetParallelForDirective()
11303 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in ActOnOpenMPTargetEnterDataDirective()
[all …]
H A DSemaStmt.cpp4810 CD->setBody(Res->getCapturedStmt()); in ActOnCapturedRegionEnd()
H A DTreeTransform.h14678 Body = getDerived().TransformStmt(S->getCapturedStmt()); in TransformCapturedStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp529 Record.AddStmt(S->getCapturedStmt()); in VisitCapturedStmt()
H A DASTReaderStmt.cpp510 S->getCapturedDecl()->setBody(S->getCapturedStmt()); in VisitCapturedStmt()