Searched refs:OMPInitClause (Results 1 – 10 of 10) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 1645 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 D | StmtProfile.cpp | 603 void OMPClauseProfiler::VisitOMPInitClause(const OMPInitClause *C) { in VisitOMPInitClause()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 7915 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 D | RecursiveASTVisitor.h | 3444 bool RecursiveASTVisitor<Derived>::VisitOMPInitClause(OMPInitClause *C) {
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 367 let clangClass = "OMPInitClause";
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 7018 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 D | ASTReader.cpp | 10525 C = OMPInitClause::CreateEmpty(Context, Record.readInt()); in readClause() 10742 void OMPClauseReader::VisitOMPInitClause(OMPInitClause *C) { in VisitOMPInitClause()
|
| H A D | ASTWriter.cpp | 6668 void OMPClauseWriter::VisitOMPInitClause(OMPInitClause *C) { in VisitOMPInitClause()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 17846 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 D | TreeTransform.h | 9971 OMPClause *TreeTransform<Derived>::TransformOMPInitClause(OMPInitClause *C) { in TransformOMPInitClause()
|