Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp929 OMPFlushDirective *OMPFlushDirective::Create(const ASTContext &C, in Create()
933 return createDirective<OMPFlushDirective>( in Create()
938 OMPFlushDirective *OMPFlushDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
941 return createEmptyDirective<OMPFlushDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1116 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
H A DStmtPrinter.cpp901 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td252 def OMPFlushDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2789 class OMPFlushDirective : public OMPExecutableDirective {
2797 OMPFlushDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPFlushDirective() function
2803 explicit OMPFlushDirective() in OMPFlushDirective() function
2816 static OMPFlushDirective *Create(const ASTContext &C, SourceLocation StartLoc,
2826 static OMPFlushDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3158 DEF_TRAVERSE_STMT(OMPFlushDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2580 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
3722 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2658 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp289 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3881 void EmitOMPFlushDirective(const OMPFlushDirective &S);
H A DCGStmtOpenMP.cpp5620 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
H A DCGOpenMPRuntime.cpp6240 if (isa<AsmStmt>(S) || isa<NullStmt>(S) || isa<OMPFlushDirective>(S) || in getSingleCompoundChild()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9908 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()
H A DSemaOpenMP.cpp11172 return OMPFlushDirective::Create(getASTContext(), StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()