Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp430 OMPUnrollDirective *
431 OMPUnrollDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
437 auto *Dir = createDirective<OMPUnrollDirective>( in Create()
445 OMPUnrollDirective *OMPUnrollDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
447 return createEmptyDirective<OMPUnrollDirective>( in CreateEmpty()
H A DStmtProfile.cpp982 void StmtProfiler::VisitOMPUnrollDirective(const OMPUnrollDirective *S) { in VisitOMPUnrollDirective()
H A DStmtPrinter.cpp758 void StmtPrinter::VisitOMPUnrollDirective(OMPUnrollDirective *Node) { in VisitOMPUnrollDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td230 def OMPUnrollDirective : StmtNode<OMPLoopTransformationDirective>;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h5644 class OMPUnrollDirective final : public OMPLoopTransformationDirective {
5654 explicit OMPUnrollDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPUnrollDirective() function
5680 static OMPUnrollDirective *
5689 static OMPUnrollDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2968 DEF_TRAVERSE_STMT(OMPUnrollDirective,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2414 void ASTStmtReader::VisitOMPUnrollDirective(OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
3400 S = OMPUnrollDirective::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2396 void ASTStmtWriter::VisitOMPUnrollDirective(OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp219 EmitOMPUnrollDirective(cast<OMPUnrollDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3596 void EmitOMPUnrollDirective(const OMPUnrollDirective &S);
H A DCGStmtOpenMP.cpp184 } else if (const auto *Unroll = dyn_cast<OMPUnrollDirective>(&S)) { in emitPreInitStmt()
2743 void CodeGenFunction::EmitOMPUnrollDirective(const OMPUnrollDirective &S) { in EmitOMPUnrollDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp14953 else if (auto *Dir = dyn_cast<OMPUnrollDirective>(Transform)) in checkTransformableLoopNest()
15210 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
15231 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
15452 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
H A DTreeTransform.h8926 TreeTransform<Derived>::TransformOMPUnrollDirective(OMPUnrollDirective *D) { in TransformOMPUnrollDirective()