Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DStmtOpenMP.cpp134 if (auto *Dir = dyn_cast<OMPTileDirective>(OrigStmt)) { in doForAllLoops()
356 OMPTileDirective *
357 OMPTileDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
361 OMPTileDirective *Dir = createDirective<OMPTileDirective>( in Create()
369 OMPTileDirective *OMPTileDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
372 return createEmptyDirective<OMPTileDirective>( in CreateEmpty()
DStmtProfile.cpp914 void StmtProfiler::VisitOMPTileDirective(const OMPTileDirective *S) { in VisitOMPTileDirective()
DStmtPrinter.cpp667 void StmtPrinter::VisitOMPTileDirective(OMPTileDirective *Node) { in VisitOMPTileDirective()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DStmtNodes.td226 def OMPTileDirective : StmtNode<OMPLoopBasedDirective>;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DStmtOpenMP.h4995 class OMPTileDirective final : public OMPLoopBasedDirective {
5005 explicit OMPTileDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTileDirective() function
5031 static OMPTileDirective *Create(const ASTContext &C, SourceLocation StartLoc,
5042 static OMPTileDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
DRecursiveASTVisitor.h2851 DEF_TRAVERSE_STMT(OMPTileDirective,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp2320 void ASTStmtReader::VisitOMPTileDirective(OMPTileDirective *D) { in VisitOMPTileDirective()
3204 S = OMPTileDirective::CreateEmpty(Context, NumClauses, NumLoops); in ReadStmtFromStream()
DASTWriterStmt.cpp2220 void ASTStmtWriter::VisitOMPTileDirective(OMPTileDirective *D) { in VisitOMPTileDirective()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp209 EmitOMPTileDirective(cast<OMPTileDirective>(*S)); in EmitStmt()
DCGStmtOpenMP.cpp177 } else if (const auto *Tile = dyn_cast<OMPTileDirective>(&S)) { in emitPreInitStmt()
1830 if (auto *Dir = dyn_cast<OMPTileDirective>(SimplifiedS)) in emitBody()
2583 void CodeGenFunction::EmitOMPTileDirective(const OMPTileDirective &S) { in EmitOMPTileDirective()
DCodeGenFunction.h3443 void EmitOMPTileDirective(const OMPTileDirective &S);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp3808 void VisitOMPTileDirective(OMPTileDirective *S) { in VisitOMPTileDirective()
8976 if (auto *Dir = dyn_cast<OMPTileDirective>(Transform)) { in checkOpenMPLoop()
12600 if (auto *Dir = dyn_cast<OMPTileDirective>(Transform)) in checkTransformableLoopNest()
12643 return OMPTileDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPTileDirective()
12822 return OMPTileDirective::Create(Context, StartLoc, EndLoc, Clauses, NumLoops, in ActOnOpenMPTileDirective()
DTreeTransform.h8531 TreeTransform<Derived>::TransformOMPTileDirective(OMPTileDirective *D) { in TransformOMPTileDirective()