Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1023 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 DStmtProfile.cpp823 void OMPClauseProfiler::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4760 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 DRecursiveASTVisitor.h3763 bool RecursiveASTVisitor<Derived>::VisitOMPFlushClause(OMPFlushClause *C) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td170 let clangClass = "OMPFlushClause";
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp5416 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 DASTReader.cpp10552 C = OMPFlushClause::CreateEmpty(Context, Record.readInt()); in readClause()
11244 void OMPClauseReader::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
H A DASTWriter.cpp7478 void OMPClauseWriter::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp11071 OMPFlushClause *FC = nullptr; in ActOnOpenMPFlushDirective()
11075 FC = cast<OMPFlushClause>(C); in ActOnOpenMPFlushDirective()
19619 return OMPFlushClause::Create(getASTContext(), StartLoc, LParenLoc, EndLoc, in ActOnOpenMPFlushClause()
H A DTreeTransform.h10716 OMPClause *TreeTransform<Derived>::TransformOMPFlushClause(OMPFlushClause *C) { in TransformOMPFlushClause()