Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/clang/lib/AST/
DOpenMPClause.cpp73 return static_cast<const OMPLastprivateClause *>(C); in get()
189 return static_cast<const OMPLastprivateClause *>(C); in get()
482 void OMPLastprivateClause::setPrivateCopies(ArrayRef<Expr *> PrivateCopies) { in setPrivateCopies()
488 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
495 void OMPLastprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
502 void OMPLastprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
510 OMPLastprivateClause *OMPLastprivateClause::Create( in Create()
517 OMPLastprivateClause *Clause = new (Mem) OMPLastprivateClause( in Create()
528 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
531 return new (Mem) OMPLastprivateClause(N); in CreateEmpty()
[all …]
DStmtProfile.cpp634 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/openbsd/src/gnu/llvm/clang/include/clang/AST/
DOpenMPClause.h2770 class OMPLastprivateClause final
2771 : public OMPVarListClause<OMPLastprivateClause>,
2773 private llvm::TrailingObjects<OMPLastprivateClause, Expr *> {
2807 OMPLastprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLastprivateClause() function
2811 : OMPVarListClause<OMPLastprivateClause>(llvm::omp::OMPC_lastprivate, in OMPLastprivateClause()
2819 explicit OMPLastprivateClause(unsigned N) in OMPLastprivateClause() function
2820 : OMPVarListClause<OMPLastprivateClause>( in OMPLastprivateClause()
2910 static OMPLastprivateClause *
2921 static OMPLastprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
2985 auto Children = const_cast<OMPLastprivateClause *>(this)->children(); in children()
DRecursiveASTVisitor.h3509 OMPLastprivateClause *C) {
/openbsd/src/gnu/llvm/clang/lib/CodeGen/
DCGStmtOpenMP.cpp809 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPFirstprivateClause()
1056 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseInit()
1122 llvm::any_of(D.getClausesOfKind<OMPLastprivateClause>(), in EmitOMPLastprivateClauseFinal()
1123 [](const OMPLastprivateClause *C) { in EmitOMPLastprivateClauseFinal()
1150 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseFinal()
1502 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in checkForLastprivateConditionalUpdate()
4646 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPTaskBasedDirective()
DCGOpenMPRuntimeGPU.cpp295 else if (const auto *PC = dyn_cast<OMPLastprivateClause>(C)) in VisitOpenMPCapturedStmt()
947 for (const auto *C : Dir->getClausesOfKind<OMPLastprivateClause>()) { in getDistributeLastprivateVars()
DCGOpenMPRuntime.cpp11956 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in tryToDisableInnerAnalysis()
12002 llvm::any_of(S.getClausesOfKind<OMPLastprivateClause>(), in LastprivateConditionalRAII()
12003 [](const OMPLastprivateClause *C) { in LastprivateConditionalRAII()
12016 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) {
/openbsd/src/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/
DOMP.td88 let clangClass = "OMPLastprivateClause";
/openbsd/src/gnu/llvm/clang/lib/Serialization/
DASTReader.cpp10096 C = OMPLastprivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
10544 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DASTWriter.cpp6594 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/openbsd/src/gnu/llvm/clang/lib/Sema/
DSemaOpenMP.cpp2858 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock()
5458 auto *PC = cast<OMPLastprivateClause>(Cl); in checkAllocateClauses()
10506 if (auto *LPC = dyn_cast<OMPLastprivateClause>(C)) { in checkGenericLoopLastprivate()
18575 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
DTreeTransform.h9967 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
/openbsd/src/gnu/llvm/clang/tools/libclang/
DCIndex.cpp2518 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()