Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp449 OMPUnrollDirective *
450 OMPUnrollDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
456 auto *Dir = createDirective<OMPUnrollDirective>( in Create()
464 OMPUnrollDirective *OMPUnrollDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
466 return createEmptyDirective<OMPUnrollDirective>( in CreateEmpty()
H A DStmtProfile.cpp1016 void StmtProfiler::VisitOMPUnrollDirective(const OMPUnrollDirective *S) { in VisitOMPUnrollDirective()
H A DStmtPrinter.cpp777 void StmtPrinter::VisitOMPUnrollDirective(OMPUnrollDirective *Node) { in VisitOMPUnrollDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td233 def OMPUnrollDirective : StmtNode<OMPLoopTransformationDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h5705 class OMPUnrollDirective final : public OMPLoopTransformationDirective {
5715 explicit OMPUnrollDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPUnrollDirective() function
5741 static OMPUnrollDirective *
5750 static OMPUnrollDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3087 DEF_TRAVERSE_STMT(OMPUnrollDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2457 void ASTStmtReader::VisitOMPUnrollDirective(OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
3599 S = OMPUnrollDirective::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2464 void ASTStmtWriter::VisitOMPUnrollDirective(OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp229 EmitOMPUnrollDirective(cast<OMPUnrollDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp194 } else if (const auto *Unroll = dyn_cast<OMPUnrollDirective>(&S)) { in emitPreInitStmt()
2925 void CodeGenFunction::EmitOMPUnrollDirective(const OMPUnrollDirective &S) { in EmitOMPUnrollDirective()
H A DCodeGenFunction.h3859 void EmitOMPUnrollDirective(const OMPUnrollDirective &S);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp14227 else if (auto *Dir = dyn_cast<OMPUnrollDirective>(Transform)) in checkTransformableLoopNest()
14875 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
14900 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
15115 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
H A DTreeTransform.h9656 TreeTransform<Derived>::TransformOMPUnrollDirective(OMPUnrollDirective *D) { in TransformOMPUnrollDirective()