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.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.cpp984 void StmtProfiler::VisitOMPUnrollDirective(const OMPUnrollDirective *S) { in VisitOMPUnrollDirective()
H A DStmtPrinter.cpp761 void StmtPrinter::VisitOMPUnrollDirective(OMPUnrollDirective *Node) { in VisitOMPUnrollDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td232 def OMPUnrollDirective : StmtNode<OMPLoopTransformationDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h5648 class OMPUnrollDirective final : public OMPLoopTransformationDirective {
5658 explicit OMPUnrollDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPUnrollDirective() function
5684 static OMPUnrollDirective *
5693 static OMPUnrollDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3032 DEF_TRAVERSE_STMT(OMPUnrollDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2434 void ASTStmtReader::VisitOMPUnrollDirective(OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
3461 S = OMPUnrollDirective::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2435 void ASTStmtWriter::VisitOMPUnrollDirective(OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp223 EmitOMPUnrollDirective(cast<OMPUnrollDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp188 } else if (const auto *Unroll = dyn_cast<OMPUnrollDirective>(&S)) { in emitPreInitStmt()
2783 void CodeGenFunction::EmitOMPUnrollDirective(const OMPUnrollDirective &S) { in EmitOMPUnrollDirective()
H A DCodeGenFunction.h3822 void EmitOMPUnrollDirective(const OMPUnrollDirective &S);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp14053 else if (auto *Dir = dyn_cast<OMPUnrollDirective>(Transform)) in checkTransformableLoopNest()
14431 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
14456 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
14672 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
H A DTreeTransform.h9233 TreeTransform<Derived>::TransformOMPUnrollDirective(OMPUnrollDirective *D) { in TransformOMPUnrollDirective()