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.cpp891 OMPFlushDirective *OMPFlushDirective::Create(const ASTContext &C, in Create()
895 return createDirective<OMPFlushDirective>( in Create()
900 OMPFlushDirective *OMPFlushDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
903 return createEmptyDirective<OMPFlushDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1080 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
H A DStmtPrinter.cpp880 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td251 def OMPFlushDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2806 class OMPFlushDirective : public OMPExecutableDirective {
2814 OMPFlushDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPFlushDirective() function
2820 explicit OMPFlushDirective() in OMPFlushDirective() function
2833 static OMPFlushDirective *Create(const ASTContext &C, SourceLocation StartLoc,
2843 static OMPFlushDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3103 DEF_TRAVERSE_STMT(OMPFlushDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2552 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
3585 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2623 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp283 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3843 void EmitOMPFlushDirective(const OMPFlushDirective &S);
H A DCGStmtOpenMP.cpp5415 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
H A DCGOpenMPRuntime.cpp5990 if (isa<AsmStmt>(S) || isa<NullStmt>(S) || isa<OMPFlushDirective>(S) || in getSingleCompoundChild()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9474 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()
H A DSemaOpenMP.cpp11104 return OMPFlushDirective::Create(getASTContext(), StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()