Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DOpenMPClause.cpp1628 OMPInitClause *OMPInitClause::Create(const ASTContext &C, Expr *InteropVar, in Create()
1637 new (Mem) OMPInitClause(IsTarget, IsTargetSync, StartLoc, LParenLoc, in Create()
1644 OMPInitClause *OMPInitClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty()
1646 return new (Mem) OMPInitClause(N); in CreateEmpty()
1923 void OMPClausePrinter::VisitOMPInitClause(OMPInitClause *Node) { in VisitOMPInitClause()
H A DStmtProfile.cpp576 void OMPClauseProfiler::VisitOMPInitClause(const OMPInitClause *C) { in VisitOMPInitClause()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DOpenMPClause.h7717 class OMPInitClause final
7718 : public OMPVarListClause<OMPInitClause>,
7719 private llvm::TrailingObjects<OMPInitClause, Expr *> {
7748 OMPInitClause(bool IsTarget, bool IsTargetSync, SourceLocation StartLoc, in OMPInitClause() function
7751 : OMPVarListClause<OMPInitClause>(llvm::omp::OMPC_init, StartLoc, in OMPInitClause()
7756 OMPInitClause(unsigned N) in OMPInitClause() function
7757 : OMPVarListClause<OMPInitClause>(llvm::omp::OMPC_init, SourceLocation(), in OMPInitClause()
7773 static OMPInitClause *Create(const ASTContext &C, Expr *InteropVar,
7783 static OMPInitClause *CreateEmpty(const ASTContext &C, unsigned N);
7804 auto Children = const_cast<OMPInitClause *>(this)->children(); in children()
[all …]
H A DRecursiveASTVisitor.h3410 bool RecursiveASTVisitor<Derived>::VisitOMPInitClause(OMPInitClause *C) {
/llvm-project-15.0.7/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td324 let clangClass = "OMPInitClause";
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp6968 !(S.getSingleClause<OMPInitClause>() || in EmitOMPInteropDirective()
6973 if (const auto *C = S.getSingleClause<OMPInitClause>()) { in EmitOMPInteropDirective()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReader.cpp11776 C = OMPInitClause::CreateEmpty(Context, Record.readInt()); in readClause()
11968 void OMPClauseReader::VisitOMPInitClause(OMPInitClause *C) { in VisitOMPInitClause()
H A DASTWriter.cpp6351 void OMPClauseWriter::VisitOMPInitClause(OMPInitClause *C) { in VisitOMPInitClause()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOpenMP.cpp17237 if (const auto *InitClause = dyn_cast<OMPInitClause>(C)) { in ActOnOpenMPInteropDirective()
17260 const auto *IC = cast<OMPInitClause>(C); in ActOnOpenMPInteropDirective()
17363 return OMPInitClause::Create(Context, InteropVar, PrefExprs, IsTarget, in ActOnOpenMPInitClause()
H A DTreeTransform.h9674 OMPClause *TreeTransform<Derived>::TransformOMPInitClause(OMPInitClause *C) { in TransformOMPInitClause()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2394 void OMPClauseEnqueue::VisitOMPInitClause(const OMPInitClause *C) { in VisitOMPInitClause()