Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp73 return static_cast<const OMPLastprivateClause *>(C); in get()
191 return static_cast<const OMPLastprivateClause *>(C); in get()
485 void OMPLastprivateClause::setPrivateCopies(ArrayRef<Expr *> PrivateCopies) { in setPrivateCopies()
491 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
498 void OMPLastprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
505 void OMPLastprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
513 OMPLastprivateClause *OMPLastprivateClause::Create( in Create()
520 OMPLastprivateClause *Clause = new (Mem) OMPLastprivateClause( in Create()
531 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
534 return new (Mem) OMPLastprivateClause(N); in CreateEmpty()
[all …]
H A DStmtProfile.cpp654 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h2893 class OMPLastprivateClause final
2894 : public OMPVarListClause<OMPLastprivateClause>,
2896 private llvm::TrailingObjects<OMPLastprivateClause, Expr *> {
2930 OMPLastprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLastprivateClause() function
2934 : OMPVarListClause<OMPLastprivateClause>(llvm::omp::OMPC_lastprivate, in OMPLastprivateClause()
2942 explicit OMPLastprivateClause(unsigned N) in OMPLastprivateClause() function
2943 : OMPVarListClause<OMPLastprivateClause>( in OMPLastprivateClause()
3033 static OMPLastprivateClause *
3044 static OMPLastprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
3108 auto Children = const_cast<OMPLastprivateClause *>(this)->children(); in children()
H A DRecursiveASTVisitor.h3600 OMPLastprivateClause *C) {
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp283 else if (const auto *PC = dyn_cast<OMPLastprivateClause>(C)) in VisitOpenMPCapturedStmt()
953 for (const auto *C : Dir->getClausesOfKind<OMPLastprivateClause>()) { in getDistributeLastprivateVars()
H A DCGStmtOpenMP.cpp833 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPFirstprivateClause()
1079 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseInit()
1145 llvm::any_of(D.getClausesOfKind<OMPLastprivateClause>(), in EmitOMPLastprivateClauseFinal()
1146 [](const OMPLastprivateClause *C) { in EmitOMPLastprivateClauseFinal()
1173 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseFinal()
1524 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in checkForLastprivateConditionalUpdate()
4718 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPTaskBasedDirective()
H A DCGOpenMPRuntime.cpp11524 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in tryToDisableInnerAnalysis()
11570 llvm::any_of(S.getClausesOfKind<OMPLastprivateClause>(), in LastprivateConditionalRAII()
11571 [](const OMPLastprivateClause *C) { in LastprivateConditionalRAII()
11584 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td222 let clangClass = "OMPLastprivateClause";
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp2893 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock()
5262 auto *PC = cast<OMPLastprivateClause>(Cl); in checkAllocateClauses()
10566 if (auto *LPC = dyn_cast<OMPLastprivateClause>(C)) { in checkGenericLoopLastprivate()
17712 return OMPLastprivateClause::Create( in ActOnOpenMPLastprivateClause()
H A DTreeTransform.h10478 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10577 C = OMPLastprivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
11049 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
H A DASTWriter.cpp7326 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()