Home
last modified time | relevance | path

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

12

/external/clang/lib/AST/
DOpenMPClause.cpp46 return static_cast<const OMPLastprivateClause *>(C); in get()
108 return static_cast<const OMPLastprivateClause *>(C); in get()
223 void OMPLastprivateClause::setPrivateCopies(ArrayRef<Expr *> PrivateCopies) { in setPrivateCopies()
229 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
236 void OMPLastprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
243 void OMPLastprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
251 OMPLastprivateClause *OMPLastprivateClause::Create( in Create()
257 OMPLastprivateClause *Clause = in Create()
258 new (Mem) OMPLastprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
268 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
[all …]
DStmtProfile.cpp385 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DStmtPrinter.cpp796 void OMPClausePrinter::VisitOMPLastprivateClause(OMPLastprivateClause *Node) { in VisitOMPLastprivateClause()
/external/llvm-project/clang/lib/AST/
DOpenMPClause.cpp75 return static_cast<const OMPLastprivateClause *>(C); in get()
175 return static_cast<const OMPLastprivateClause *>(C); in get()
446 void OMPLastprivateClause::setPrivateCopies(ArrayRef<Expr *> PrivateCopies) { in setPrivateCopies()
452 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
459 void OMPLastprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
466 void OMPLastprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
474 OMPLastprivateClause *OMPLastprivateClause::Create( in Create()
481 OMPLastprivateClause *Clause = new (Mem) OMPLastprivateClause( in Create()
492 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
495 return new (Mem) OMPLastprivateClause(N); in CreateEmpty()
[all …]
DStmtProfile.cpp570 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/external/clang/include/clang/AST/
DOpenMPClause.h1406 class OMPLastprivateClause final
1407 : public OMPVarListClause<OMPLastprivateClause>,
1409 private llvm::TrailingObjects<OMPLastprivateClause, Expr *> {
1438 OMPLastprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLastprivateClause() function
1440 : OMPVarListClause<OMPLastprivateClause>(OMPC_lastprivate, StartLoc, in OMPLastprivateClause()
1448 explicit OMPLastprivateClause(unsigned N) in OMPLastprivateClause() function
1449 : OMPVarListClause<OMPLastprivateClause>( in OMPLastprivateClause()
1530 static OMPLastprivateClause *
1540 static OMPLastprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
DRecursiveASTVisitor.h2762 OMPLastprivateClause *C) {
/external/llvm-project/clang/include/clang/AST/
DOpenMPClause.h2409 class OMPLastprivateClause final
2410 : public OMPVarListClause<OMPLastprivateClause>,
2412 private llvm::TrailingObjects<OMPLastprivateClause, Expr *> {
2446 OMPLastprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLastprivateClause() function
2450 : OMPVarListClause<OMPLastprivateClause>(llvm::omp::OMPC_lastprivate, in OMPLastprivateClause()
2458 explicit OMPLastprivateClause(unsigned N) in OMPLastprivateClause() function
2459 : OMPVarListClause<OMPLastprivateClause>( in OMPLastprivateClause()
2549 static OMPLastprivateClause *
2560 static OMPLastprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
2624 auto Children = const_cast<OMPLastprivateClause *>(this)->children(); in children()
DRecursiveASTVisitor.h3219 OMPLastprivateClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def196 OPENMP_CLAUSE(lastprivate, OMPLastprivateClause)
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp578 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPFirstprivateClause()
772 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseInit()
849 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseFinal()
2470 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPTaskBasedDirective()
/external/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp771 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPFirstprivateClause()
1029 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseInit()
1099 llvm::any_of(D.getClausesOfKind<OMPLastprivateClause>(), in EmitOMPLastprivateClauseFinal()
1100 [](const OMPLastprivateClause *C) { in EmitOMPLastprivateClauseFinal()
1127 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseFinal()
1484 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in checkForLastprivateConditionalUpdate()
3896 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPTaskBasedDirective()
DCGOpenMPRuntimeGPU.cpp314 else if (const auto *PC = dyn_cast<OMPLastprivateClause>(C)) in VisitOpenMPCapturedStmt()
1616 for (const auto *C : Dir->getClausesOfKind<OMPLastprivateClause>()) { in getDistributeLastprivateVars()
DCGOpenMPRuntime.cpp11998 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in tryToDisableInnerAnalysis()
12044 llvm::any_of(S.getClausesOfKind<OMPLastprivateClause>(), in LastprivateConditionalRAII()
12045 [](const OMPLastprivateClause *C) { in LastprivateConditionalRAII()
12058 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) {
/external/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMP.td75 let clangClass = "OMPLastprivateClause";
DOMPKinds.def57 __OMP_CLAUSE(lastprivate, OMPLastprivateClause)
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1847 C = OMPLastprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2073 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DASTWriterStmt.cpp1908 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp1067 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock()
8773 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
DTreeTransform.h7839 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp2605 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock()
4949 auto *PC = cast<OMPLastprivateClause>(Cl); in checkAllocateClauses()
14475 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
/external/llvm-project/clang/lib/Serialization/
DASTReader.cpp11939 C = OMPLastprivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
12287 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DASTWriter.cpp6389 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/external/clang/tools/libclang/
DCIndex.cpp2176 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/external/llvm-project/clang/tools/libclang/
DCIndex.cpp2353 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()

12