Searched refs:OMPFlushDirective (Results 1 – 14 of 14) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtOpenMP.cpp | 891 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 D | StmtProfile.cpp | 1080 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
|
H A D | StmtPrinter.cpp | 880 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | StmtNodes.td | 251 def OMPFlushDirective : StmtNode<OMPExecutableDirective>;
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | StmtOpenMP.h | 2806 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 D | RecursiveASTVisitor.h | 3103 DEF_TRAVERSE_STMT(OMPFlushDirective,
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 2552 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective() 3585 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
|
H A D | ASTWriterStmt.cpp | 2623 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmt.cpp | 283 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
|
H A D | CodeGenFunction.h | 3843 void EmitOMPFlushDirective(const OMPFlushDirective &S);
|
H A D | CGStmtOpenMP.cpp | 5415 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
|
H A D | CGOpenMPRuntime.cpp | 5990 if (isa<AsmStmt>(S) || isa<NullStmt>(S) || isa<OMPFlushDirective>(S) || in getSingleCompoundChild()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TreeTransform.h | 9474 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()
|
H A D | SemaOpenMP.cpp | 11104 return OMPFlushDirective::Create(getASTContext(), StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()
|