Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp864 OMPOrderedDirective *OMPOrderedDirective::Create(const ASTContext &C, in Create()
869 return createDirective<OMPOrderedDirective>( in Create()
874 OMPOrderedDirective *OMPOrderedDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
878 return createEmptyDirective<OMPOrderedDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp1035 void StmtProfiler::VisitOMPOrderedDirective(const OMPOrderedDirective *S) { in VisitOMPOrderedDirective()
H A DStmtPrinter.cpp866 void StmtPrinter::VisitOMPOrderedDirective(OMPOrderedDirective *Node) { in VisitOMPOrderedDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td249 def OMPOrderedDirective : StmtNode<OMPExecutableDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h2840 class OMPOrderedDirective : public OMPExecutableDirective {
2848 OMPOrderedDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPOrderedDirective() function
2854 explicit OMPOrderedDirective() in OMPOrderedDirective() function
2868 static OMPOrderedDirective *
2878 static OMPOrderedDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3033 DEF_TRAVERSE_STMT(OMPOrderedDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2435 void ASTStmtReader::VisitOMPOrderedDirective(OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
3385 S = OMPOrderedDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2419 void ASTStmtWriter::VisitOMPOrderedDirective(OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp276 EmitOMPOrderedDirective(cast<OMPOrderedDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3528 void EmitOMPOrderedDirective(const OMPOrderedDirective &S);
H A DCGStmtOpenMP.cpp2615 if (isa<OMPOrderedDirective>(CSSubStmt)) { in isSupportedByOpenMPIRBuilder()
5750 void CodeGenFunction::EmitOMPOrderedDirective(const OMPOrderedDirective &S) { in EmitOMPOrderedDirective()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2168 void VisitOMPOrderedDirective(const OMPOrderedDirective *D);
3130 void EnqueueVisitor::VisitOMPOrderedDirective(const OMPOrderedDirective *D) { in VisitOMPOrderedDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h8887 TreeTransform<Derived>::TransformOMPOrderedDirective(OMPOrderedDirective *D) { in TransformOMPOrderedDirective()
H A DSemaOpenMP.cpp11222 return OMPOrderedDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPOrderedDirective()