Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp92 const CapturedStmt *CS = S.getCapturedStmt(*CapturedRegion); in OMPLexicalScope()
174 LD->getInnermostCapturedStmt()->getCapturedStmt(), in emitPreInitStmt()
304 CS = dyn_cast<CapturedStmt>(CS->getCapturedStmt()); in OMPSimdLexicalScope()
1568 const CapturedStmt *CS = S.getCapturedStmt(OMPD_parallel); in emitCommonOMPParallelDirective()
1793 const CapturedStmt *CS = S.getCapturedStmt(OMPD_parallel); in EmitOMPParallelDirective()
1794 const Stmt *ParallelRegionBodyStmt = CS->getCapturedStmt(); in EmitOMPParallelDirective()
1821 CGF.EmitStmt(S.getCapturedStmt(OMPD_parallel)->getCapturedStmt()); in EmitOMPParallelDirective()
1961 D.getInnermostCapturedStmt()->getCapturedStmt()->IgnoreContainers(); in EmitOMPLoopBody()
2123 const Stmt *SS = ICS->getCapturedStmt(); in EmitOMPInnerLoop()
4022 const Stmt *CapturedStmt = S.getInnermostCapturedStmt()->getCapturedStmt(); in EmitSections()
[all …]
H A DCGOpenMPRuntimeGPU.cpp346 VisitStmt(S->getCapturedStmt()); in VisitOMPExecutableDirective()
519 CS->getCapturedStmt()->IgnoreContainers(/*IgnoreCaptured=*/true); in hasNestedSPMDDirective()
944 D.getInnermostCapturedStmt()->getCapturedStmt()->IgnoreContainers( in getDistributeLastprivateVars()
994 TeamAndReductions.first = D.getCapturedStmt(OMPD_teams)->getCapturedDecl(); in emitTeamsOutlinedFunction()
1854 const auto &CS = *D.getCapturedStmt(OMPD_parallel); in createParallelDataSharingWrapper()
2152 const CapturedStmt *CS = D.getCapturedStmt(OMPD_target); in adjustTargetSpecificDataForLambdas()
H A DCGOpenMPRuntime.cpp1267 const CapturedStmt *CS = D.getCapturedStmt(OMPD_parallel); in emitParallelOutlinedFunction()
1277 const CapturedStmt *CS = D.getCapturedStmt(OMPD_teams); in emitTeamsOutlinedFunction()
1309 const CapturedStmt *CS = D.getCapturedStmt(Region); in emitTaskOutlinedFunction()
3269 const CapturedStmt &CS = *D.getCapturedStmt(Kind); in emitPrivatesInit()
5946 const CapturedStmt &CS = *D.getCapturedStmt(OMPD_target); in emitTargetOutlinedFunctionHelper()
6032 CS->getCapturedStmt()->IgnoreContainers(/*IgnoreCaptured=*/true); in getNumTeamsExprForTargetDirective()
6203 CGF.getContext(), CS->getCapturedStmt()); in getNumThreads()
6328 CGF.getContext(), CS->getCapturedStmt()); in getNumThreadsExprForTargetDirective()
6362 CGF.getContext(), CS->getCapturedStmt()); in getNumThreadsExprForTargetDirective()
6382 CGF.getContext(), CS->getCapturedStmt()); in getNumThreadsExprForTargetDirective()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DParentMap.cpp95 if (Stmt *SubStmt = cast<CapturedStmt>(S)->getCapturedStmt()) { in BuildParentMap()
H A DStmt.cpp201 S = CapS->getCapturedStmt(); in IgnoreContainers()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h3866 Stmt *getCapturedStmt() { return getStoredStmts()[NumCaptures]; }
3867 const Stmt *getCapturedStmt() const { return getStoredStmts()[NumCaptures]; }
3958 return getCapturedStmt()->getBeginLoc();
3962 return getCapturedStmt()->getEndLoc();
3966 return getCapturedStmt()->getSourceRange();
H A DOpenMPClause.h9082 getCapturedStmt(OpenMPDirectiveKind RegionKind, in getCapturedStmt() function
9090 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in getCapturedStmt()
9103 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in getInnermostCapturedStmt()
9124 S = CS->getCapturedStmt(); in getRawStmt()
H A DStmtOpenMP.h547 const CapturedStmt *getCapturedStmt(OpenMPDirectiveKind RegionKind) const { in getCapturedStmt() function
552 return Data->getCapturedStmt(RegionKind, CaptureRegions); in getCapturedStmt()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp595 Record.AddStmt(S->getCapturedStmt()); in VisitCapturedStmt()
H A DASTReaderStmt.cpp520 S->getCapturedDecl()->setBody(S->getCapturedStmt()); in VisitCapturedStmt()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp3767 Visit(S->getInnermostCapturedStmt()->getCapturedStmt()); in VisitSubCaptures()
6132 S = cast<CapturedStmt>(S)->getCapturedStmt(); in ActOnOpenMPExecutableDirective()
6142 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in ActOnOpenMPExecutableDirective()
7686 CS = cast<CapturedStmt>(CS->getCapturedStmt()); in setBranchProtectedScope()
10450 BaseStmt = CS->getCapturedStmt(); in checkSectionsDirective()
10518 Stmt *S = cast<CapturedStmt>(AStmt)->getCapturedStmt(); in ActOnOpenMPDispatchDirective()
H A DSemaStmt.cpp4592 CD->setBody(Res->getCapturedStmt()); in ActOnCapturedRegionEnd()
H A DTreeTransform.h16502 Body = getDerived().TransformStmt(S->getCapturedStmt()); in TransformCapturedStmt()