Home
last modified time | relevance | path

Searched refs:OMPFlushDirective (Results 1 – 14 of 14) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp853 OMPFlushDirective *OMPFlushDirective::Create(const ASTContext &C, in Create()
857 return createDirective<OMPFlushDirective>( in Create()
862 OMPFlushDirective *OMPFlushDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
865 return createEmptyDirective<OMPFlushDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1069 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
H A DStmtPrinter.cpp867 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td247 def OMPFlushDirective : StmtNode<OMPExecutableDirective>;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2805 class OMPFlushDirective : public OMPExecutableDirective {
2813 OMPFlushDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPFlushDirective() function
2819 explicit OMPFlushDirective() in OMPFlushDirective() function
2832 static OMPFlushDirective *Create(const ASTContext &C, SourceLocation StartLoc,
2842 static OMPFlushDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3033 DEF_TRAVERSE_STMT(OMPFlushDirective,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2524 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
3508 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2574 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp273 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3615 void EmitOMPFlushDirective(const OMPFlushDirective &S);
H A DCGStmtOpenMP.cpp5358 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
H A DCGOpenMPRuntime.cpp5975 if (isa<AsmStmt>(S) || isa<NullStmt>(S) || isa<OMPFlushDirective>(S) || in getSingleCompoundChild()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9145 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()
H A DSemaOpenMP.cpp11440 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()