Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp428 OMPUnrollDirective *
429 OMPUnrollDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
435 auto *Dir = createDirective<OMPUnrollDirective>( in Create()
443 OMPUnrollDirective *OMPUnrollDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
445 return createEmptyDirective<OMPUnrollDirective>( in CreateEmpty()
H A DStmtProfile.cpp943 void StmtProfiler::VisitOMPUnrollDirective(const OMPUnrollDirective *S) { in VisitOMPUnrollDirective()
H A DStmtPrinter.cpp752 void StmtPrinter::VisitOMPUnrollDirective(OMPUnrollDirective *Node) { in VisitOMPUnrollDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td229 def OMPUnrollDirective : StmtNode<OMPLoopTransformationDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h5574 class OMPUnrollDirective final : public OMPLoopTransformationDirective {
5584 explicit OMPUnrollDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPUnrollDirective() function
5610 static OMPUnrollDirective *
5619 static OMPUnrollDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2962 DEF_TRAVERSE_STMT(OMPUnrollDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2322 void ASTStmtReader::VisitOMPUnrollDirective(OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
3270 S = OMPUnrollDirective::CreateEmpty(Context, NumClauses); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2236 void ASTStmtWriter::VisitOMPUnrollDirective(OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp216 EmitOMPUnrollDirective(cast<OMPUnrollDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3507 void EmitOMPUnrollDirective(const OMPUnrollDirective &S);
H A DCGStmtOpenMP.cpp183 } else if (const auto *Unroll = dyn_cast<OMPUnrollDirective>(&S)) { in emitPreInitStmt()
2685 void CodeGenFunction::EmitOMPUnrollDirective(const OMPUnrollDirective &S) { in EmitOMPUnrollDirective()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2144 void VisitOMPUnrollDirective(const OMPUnrollDirective *D);
3036 void EnqueueVisitor::VisitOMPUnrollDirective(const OMPUnrollDirective *D) { in VisitOMPUnrollDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOpenMP.cpp14515 else if (auto *Dir = dyn_cast<OMPUnrollDirective>(Transform)) in checkTransformableLoopNest()
14772 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
14793 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
15014 return OMPUnrollDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPUnrollDirective()
H A DTreeTransform.h8657 TreeTransform<Derived>::TransformOMPUnrollDirective(OMPUnrollDirective *D) { in TransformOMPUnrollDirective()