Home
last modified time | relevance | path

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

/freebsd/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()
2025 void OMPClausePrinter::VisitOMPInitClause(OMPInitClause *Node) { in VisitOMPInitClause()
H A DStmtProfile.cpp605 void OMPClauseProfiler::VisitOMPInitClause(const OMPInitClause *C) { in VisitOMPInitClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h7955 class OMPInitClause final
7956 : public OMPVarListClause<OMPInitClause>,
7957 private llvm::TrailingObjects<OMPInitClause, Expr *> {
7986 OMPInitClause(bool IsTarget, bool IsTargetSync, SourceLocation StartLoc, in OMPInitClause() function
7989 : OMPVarListClause<OMPInitClause>(llvm::omp::OMPC_init, StartLoc, in OMPInitClause()
7994 OMPInitClause(unsigned N) in OMPInitClause() function
7995 : OMPVarListClause<OMPInitClause>(llvm::omp::OMPC_init, SourceLocation(), in OMPInitClause()
8009 static OMPInitClause *Create(const ASTContext &C, Expr *InteropVar,
8019 static OMPInitClause *CreateEmpty(const ASTContext &C, unsigned N);
8040 auto Children = const_cast<OMPInitClause *>(this)->children(); in children()
[all …]
H A DRecursiveASTVisitor.h3519 bool RecursiveASTVisitor<Derived>::VisitOMPInitClause(OMPInitClause *C) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td211 let clangClass = "OMPInitClause";
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp7074 assert(!(Data.HasNowaitClause && !(S.getSingleClause<OMPInitClause>() || in EmitOMPInteropDirective()
7079 auto ItOMPInitClause = S.getClausesOfKind<OMPInitClause>(); in EmitOMPInteropDirective()
7082 for (const OMPInitClause *C : ItOMPInitClause) { in EmitOMPInteropDirective()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10669 C = OMPInitClause::CreateEmpty(Context, Record.readInt()); in readClause()
10888 void OMPClauseReader::VisitOMPInitClause(OMPInitClause *C) { in VisitOMPInitClause()
H A DASTWriter.cpp7249 void OMPClauseWriter::VisitOMPInitClause(OMPInitClause *C) { in VisitOMPInitClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp16635 if (const auto *InitClause = dyn_cast<OMPInitClause>(C)) { in ActOnOpenMPInteropDirective()
16659 auto *E = cast<OMPInitClause>(C)->getInteropVar(); in ActOnOpenMPInteropDirective()
16760 return OMPInitClause::Create(getASTContext(), InteropVar, InteropInfo, in ActOnOpenMPInitClause()
H A DTreeTransform.h10306 OMPClause *TreeTransform<Derived>::TransformOMPInitClause(OMPInitClause *C) { in TransformOMPInitClause()