Home
last modified time | relevance | path

Searched refs:OMPReverseDirective (Results 1 – 13 of 13) sorted by relevance

/src/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp452 OMPReverseDirective *
453 OMPReverseDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
456 OMPReverseDirective *Dir = createDirective<OMPReverseDirective>( in Create()
464 OMPReverseDirective *OMPReverseDirective::CreateEmpty(const ASTContext &C) { in CreateEmpty()
465 return createEmptyDirective<OMPReverseDirective>( in CreateEmpty()
H A DStmtProfile.cpp988 void StmtProfiler::VisitOMPReverseDirective(const OMPReverseDirective *S) { in VisitOMPReverseDirective()
H A DStmtPrinter.cpp766 void StmtPrinter::VisitOMPReverseDirective(OMPReverseDirective *Node) { in VisitOMPReverseDirective()
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td233 def OMPReverseDirective : StmtNode<OMPLoopTransformationDirective>;
/src/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h5722 class OMPReverseDirective final : public OMPLoopTransformationDirective {
5732 explicit OMPReverseDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPReverseDirective() function
5755 static OMPReverseDirective *
5763 static OMPReverseDirective *CreateEmpty(const ASTContext &C);
H A DRecursiveASTVisitor.h3035 DEF_TRAVERSE_STMT(OMPReverseDirective,
/src/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2438 void ASTStmtReader::VisitOMPReverseDirective(OMPReverseDirective *D) { in VisitOMPReverseDirective()
3470 S = OMPReverseDirective::CreateEmpty(Context); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2440 void ASTStmtWriter::VisitOMPReverseDirective(OMPReverseDirective *D) { in VisitOMPReverseDirective()
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp226 EmitOMPReverseDirective(cast<OMPReverseDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp190 } else if (const auto *Reverse = dyn_cast<OMPReverseDirective>(&S)) { in emitPreInitStmt()
2770 void CodeGenFunction::EmitOMPReverseDirective(const OMPReverseDirective &S) { in EmitOMPReverseDirective()
H A DCodeGenFunction.h3823 void EmitOMPReverseDirective(const OMPReverseDirective &S);
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp14055 else if (auto *Dir = dyn_cast<OMPReverseDirective>(Transform)) in checkTransformableLoopNest()
14699 return OMPReverseDirective::Create(Context, StartLoc, EndLoc, AStmt, in ActOnOpenMPReverseDirective()
14859 return OMPReverseDirective::Create(Context, StartLoc, EndLoc, AStmt, in ActOnOpenMPReverseDirective()
H A DTreeTransform.h9244 TreeTransform<Derived>::TransformOMPReverseDirective(OMPReverseDirective *D) { in TransformOMPReverseDirective()