Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
HDStmtOpenMP.cpp409 OMPTileDirective *
410 OMPTileDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
414 OMPTileDirective *Dir = createDirective<OMPTileDirective>( in Create()
422 OMPTileDirective *OMPTileDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
425 return createEmptyDirective<OMPTileDirective>( in CreateEmpty()
HDStmtProfile.cpp980 void StmtProfiler::VisitOMPTileDirective(const OMPTileDirective *S) { in VisitOMPTileDirective()
HDStmtPrinter.cpp756 void StmtPrinter::VisitOMPTileDirective(OMPTileDirective *Node) { in VisitOMPTileDirective()
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
HDStmtNodes.td231 def OMPTileDirective : StmtNode<OMPLoopTransformationDirective>;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
HDStmtOpenMP.h5566 class OMPTileDirective final : public OMPLoopTransformationDirective {
5576 explicit OMPTileDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTileDirective() function
5605 static OMPTileDirective *Create(const ASTContext &C, SourceLocation StartLoc,
5616 static OMPTileDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
HDRecursiveASTVisitor.h3029 DEF_TRAVERSE_STMT(OMPTileDirective,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReaderStmt.cpp2430 void ASTStmtReader::VisitOMPTileDirective(OMPTileDirective *D) { in VisitOMPTileDirective()
3454 S = OMPTileDirective::CreateEmpty(Context, NumClauses, NumLoops); in ReadStmtFromStream()
HDASTWriterStmt.cpp2430 void ASTStmtWriter::VisitOMPTileDirective(OMPTileDirective *D) { in VisitOMPTileDirective()
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGStmt.cpp220 EmitOMPTileDirective(cast<OMPTileDirective>(*S)); in EmitStmt()
HDCGStmtOpenMP.cpp186 } else if (const auto *Tile = dyn_cast<OMPTileDirective>(&S)) { in emitPreInitStmt()
2764 void CodeGenFunction::EmitOMPTileDirective(const OMPTileDirective &S) { in EmitOMPTileDirective()
HDCodeGenFunction.h3821 void EmitOMPTileDirective(const OMPTileDirective &S);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaOpenMP.cpp14051 if (auto *Dir = dyn_cast<OMPTileDirective>(Transform)) in checkTransformableLoopNest()
14153 return OMPTileDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPTileDirective()
14392 return OMPTileDirective::Create(Context, StartLoc, EndLoc, Clauses, NumLoops, in ActOnOpenMPTileDirective()
HDTreeTransform.h9222 TreeTransform<Derived>::TransformOMPTileDirective(OMPTileDirective *D) { in TransformOMPTileDirective()