Searched refs:OMPFlushClause (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 1023 OMPFlushClause *OMPFlushClause::Create(const ASTContext &C, in Create() 1029 OMPFlushClause *Clause = in Create() 1030 new (Mem) OMPFlushClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 1035 OMPFlushClause *OMPFlushClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty() 1037 return new (Mem) OMPFlushClause(N); in CreateEmpty() 2273 void OMPClausePrinter::VisitOMPFlushClause(OMPFlushClause *Node) { in VisitOMPFlushClause()
|
H A D | StmtProfile.cpp | 823 void OMPClauseProfiler::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 4760 class OMPFlushClause final 4761 : public OMPVarListClause<OMPFlushClause>, 4762 private llvm::TrailingObjects<OMPFlushClause, Expr *> { 4772 OMPFlushClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPFlushClause() function 4774 : OMPVarListClause<OMPFlushClause>(llvm::omp::OMPC_flush, StartLoc, in OMPFlushClause() 4780 explicit OMPFlushClause(unsigned N) in OMPFlushClause() function 4781 : OMPVarListClause<OMPFlushClause>(llvm::omp::OMPC_flush, in OMPFlushClause() 4793 static OMPFlushClause *Create(const ASTContext &C, SourceLocation StartLoc, 4801 static OMPFlushClause *CreateEmpty(const ASTContext &C, unsigned N); 4809 auto Children = const_cast<OMPFlushClause *>(this)->children(); in children()
|
H A D | RecursiveASTVisitor.h | 3763 bool RecursiveASTVisitor<Derived>::VisitOMPFlushClause(OMPFlushClause *C) {
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 170 let clangClass = "OMPFlushClause";
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmtOpenMP.cpp | 5416 llvm::AtomicOrdering AO = S.getSingleClause<OMPFlushClause>() in EmitOMPFlushDirective() 5422 if (const auto *FlushClause = S.getSingleClause<OMPFlushClause>()) in EmitOMPFlushDirective()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 10552 C = OMPFlushClause::CreateEmpty(Context, Record.readInt()); in readClause() 11244 void OMPClauseReader::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
|
H A D | ASTWriter.cpp | 7478 void OMPClauseWriter::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 11071 OMPFlushClause *FC = nullptr; in ActOnOpenMPFlushDirective() 11075 FC = cast<OMPFlushClause>(C); in ActOnOpenMPFlushDirective() 19619 return OMPFlushClause::Create(getASTContext(), StartLoc, LParenLoc, EndLoc, in ActOnOpenMPFlushClause()
|
H A D | TreeTransform.h | 10716 OMPClause *TreeTransform<Derived>::TransformOMPFlushClause(OMPFlushClause *C) { in TransformOMPFlushClause()
|