Searched refs:OMPFlushClause (Results 1 – 10 of 10) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 1046 OMPFlushClause *OMPFlushClause::Create(const ASTContext &C, in Create() 1052 OMPFlushClause *Clause = in Create() 1053 new (Mem) OMPFlushClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 1058 OMPFlushClause *OMPFlushClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty() 1060 return new (Mem) OMPFlushClause(N); in CreateEmpty() 2467 void OMPClausePrinter::VisitOMPFlushClause(OMPFlushClause *Node) { in VisitOMPFlushClause()
|
| H A D | StmtProfile.cpp | 853 void OMPClauseProfiler::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 5314 class OMPFlushClause final 5315 : public OMPVarListClause<OMPFlushClause>, 5316 private llvm::TrailingObjects<OMPFlushClause, Expr *> { 5326 OMPFlushClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPFlushClause() function 5328 : OMPVarListClause<OMPFlushClause>(llvm::omp::OMPC_flush, StartLoc, in OMPFlushClause() 5334 explicit OMPFlushClause(unsigned N) in OMPFlushClause() function 5335 : OMPVarListClause<OMPFlushClause>(llvm::omp::OMPC_flush, in OMPFlushClause() 5347 static OMPFlushClause *Create(const ASTContext &C, SourceLocation StartLoc, 5355 static OMPFlushClause *CreateEmpty(const ASTContext &C, unsigned N); 5363 auto Children = const_cast<OMPFlushClause *>(this)->children(); in children()
|
| H A D | RecursiveASTVisitor.h | 3872 bool RecursiveASTVisitor<Derived>::VisitOMPFlushClause(OMPFlushClause *C) {
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 205 let clangClass = "OMPFlushClause";
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 5621 llvm::AtomicOrdering AO = S.getSingleClause<OMPFlushClause>() in EmitOMPFlushDirective() 5627 if (const auto *FlushClause = S.getSingleClause<OMPFlushClause>()) in EmitOMPFlushDirective()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 11272 C = OMPFlushClause::CreateEmpty(Context, Record.readInt()); in readClause() 12017 void OMPClauseReader::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
|
| H A D | ASTWriter.cpp | 8200 void OMPClauseWriter::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 11137 OMPFlushClause *FC = nullptr; in ActOnOpenMPFlushDirective() 11141 FC = cast<OMPFlushClause>(C); in ActOnOpenMPFlushDirective() 20284 return OMPFlushClause::Create(getASTContext(), StartLoc, LParenLoc, EndLoc, in ActOnOpenMPFlushClause()
|
| H A D | TreeTransform.h | 11225 OMPClause *TreeTransform<Derived>::TransformOMPFlushClause(OMPFlushClause *C) { in TransformOMPFlushClause()
|