Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/llvm-project/clang/lib/AST/
HDStmtOpenMP.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()
HDStmtProfile.cpp984 void StmtProfiler::VisitOMPUnrollDirective(const OMPUnrollDirective *S) { in VisitOMPUnrollDirective()
HDStmtPrinter.cpp761 void StmtPrinter::VisitOMPUnrollDirective(OMPUnrollDirective *Node) { in VisitOMPUnrollDirective()
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/Basic/
HDStmtNodes.td232 def OMPUnrollDirective : StmtNode<OMPLoopTransformationDirective>;
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/AST/
HDStmtOpenMP.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,
HDRecursiveASTVisitor.h3032 DEF_TRAVERSE_STMT(OMPUnrollDirective,
/freebsd-14-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReaderStmt.cpp2434 void ASTStmtReader::VisitOMPUnrollDirective(OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
3461 S = OMPUnrollDirective::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
HDASTWriterStmt.cpp2435 void ASTStmtWriter::VisitOMPUnrollDirective(OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
/freebsd-14-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGStmt.cpp223 EmitOMPUnrollDirective(cast<OMPUnrollDirective>(*S)); in EmitStmt()
HDCGStmtOpenMP.cpp188 } else if (const auto *Unroll = dyn_cast<OMPUnrollDirective>(&S)) { in emitPreInitStmt()
2783 void CodeGenFunction::EmitOMPUnrollDirective(const OMPUnrollDirective &S) { in EmitOMPUnrollDirective()
HDCodeGenFunction.h3822 void EmitOMPUnrollDirective(const OMPUnrollDirective &S);
/freebsd-14-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaOpenMP.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()
HDTreeTransform.h9233 TreeTransform<Derived>::TransformOMPUnrollDirective(OMPUnrollDirective *D) { in TransformOMPUnrollDirective()