Home
last modified time | relevance | path

Searched refs:OMPInitClause (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1645 OMPInitClause *OMPInitClause::Create(const ASTContext &C, Expr *InteropVar, in Create()
1654 auto *Clause = new (Mem) OMPInitClause( in Create()
1662 OMPInitClause *OMPInitClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty()
1664 return new (Mem) OMPInitClause(N); in CreateEmpty()
2023 void OMPClausePrinter::VisitOMPInitClause(OMPInitClause *Node) { in VisitOMPInitClause()
H A DStmtProfile.cpp603 void OMPClauseProfiler::VisitOMPInitClause(const OMPInitClause *C) { in VisitOMPInitClause()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h7915 class OMPInitClause final
7916 : public OMPVarListClause<OMPInitClause>,
7917 private llvm::TrailingObjects<OMPInitClause, Expr *> {
7946 OMPInitClause(bool IsTarget, bool IsTargetSync, SourceLocation StartLoc, in OMPInitClause() function
7949 : OMPVarListClause<OMPInitClause>(llvm::omp::OMPC_init, StartLoc, in OMPInitClause()
7954 OMPInitClause(unsigned N) in OMPInitClause() function
7955 : OMPVarListClause<OMPInitClause>(llvm::omp::OMPC_init, SourceLocation(), in OMPInitClause()
7969 static OMPInitClause *Create(const ASTContext &C, Expr *InteropVar,
7979 static OMPInitClause *CreateEmpty(const ASTContext &C, unsigned N);
8000 auto Children = const_cast<OMPInitClause *>(this)->children(); in children()
[all …]
H A DRecursiveASTVisitor.h3444 bool RecursiveASTVisitor<Derived>::VisitOMPInitClause(OMPInitClause *C) {
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td367 let clangClass = "OMPInitClause";
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp7018 assert(!(Data.HasNowaitClause && !(S.getSingleClause<OMPInitClause>() || in EmitOMPInteropDirective()
7023 if (const auto *C = S.getSingleClause<OMPInitClause>()) { in EmitOMPInteropDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10525 C = OMPInitClause::CreateEmpty(Context, Record.readInt()); in readClause()
10742 void OMPClauseReader::VisitOMPInitClause(OMPInitClause *C) { in VisitOMPInitClause()
H A DASTWriter.cpp6668 void OMPClauseWriter::VisitOMPInitClause(OMPInitClause *C) { in VisitOMPInitClause()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp17846 if (const auto *InitClause = dyn_cast<OMPInitClause>(C)) { in ActOnOpenMPInteropDirective()
17870 auto *E = cast<OMPInitClause>(C)->getInteropVar(); in ActOnOpenMPInteropDirective()
17971 return OMPInitClause::Create(Context, InteropVar, InteropInfo, StartLoc, in ActOnOpenMPInitClause()
H A DTreeTransform.h9971 OMPClause *TreeTransform<Derived>::TransformOMPInitClause(OMPInitClause *C) { in TransformOMPInitClause()