Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp819 OMPFlushDirective *OMPFlushDirective::Create(const ASTContext &C, in Create()
823 return createDirective<OMPFlushDirective>( in Create()
828 OMPFlushDirective *OMPFlushDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
831 return createEmptyDirective<OMPFlushDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1023 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
H A DStmtPrinter.cpp851 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td246 def OMPFlushDirective : StmtNode<OMPExecutableDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h2736 class OMPFlushDirective : public OMPExecutableDirective {
2744 OMPFlushDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPFlushDirective() function
2750 explicit OMPFlushDirective() in OMPFlushDirective() function
2763 static OMPFlushDirective *Create(const ASTContext &C, SourceLocation StartLoc,
2773 static OMPFlushDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3024 DEF_TRAVERSE_STMT(OMPFlushDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2420 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
3368 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2401 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp267 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3525 void EmitOMPFlushDirective(const OMPFlushDirective &S);
H A DCGStmtOpenMP.cpp5260 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
H A DCGOpenMPRuntime.cpp6525 if (isa<AsmStmt>(S) || isa<NullStmt>(S) || isa<OMPFlushDirective>(S) || in getSingleCompoundChild()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2165 void VisitOMPFlushDirective(const OMPFlushDirective *D);
3118 void EnqueueVisitor::VisitOMPFlushDirective(const OMPFlushDirective *D) { in VisitOMPFlushDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h8854 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()
H A DSemaOpenMP.cpp11076 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()