Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp407 OMPTileDirective *
408 OMPTileDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
412 OMPTileDirective *Dir = createDirective<OMPTileDirective>( in Create()
420 OMPTileDirective *OMPTileDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
423 return createEmptyDirective<OMPTileDirective>( in CreateEmpty()
H A DStmtProfile.cpp1008 void StmtProfiler::VisitOMPTileDirective(const OMPTileDirective *S) { in VisitOMPTileDirective()
H A DStmtPrinter.cpp767 void StmtPrinter::VisitOMPTileDirective(OMPTileDirective *Node) { in VisitOMPTileDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td231 def OMPTileDirective : StmtNode<OMPLoopTransformationDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h5548 class OMPTileDirective final : public OMPLoopTransformationDirective {
5558 explicit OMPTileDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTileDirective() function
5587 static OMPTileDirective *Create(const ASTContext &C, SourceLocation StartLoc,
5598 static OMPTileDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
H A DRecursiveASTVisitor.h3081 DEF_TRAVERSE_STMT(OMPTileDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2449 void ASTStmtReader::VisitOMPTileDirective(OMPTileDirective *D) { in VisitOMPTileDirective()
3585 S = OMPTileDirective::CreateEmpty(Context, NumClauses, NumLoops); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2454 void ASTStmtWriter::VisitOMPTileDirective(OMPTileDirective *D) { in VisitOMPTileDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp223 EmitOMPTileDirective(cast<OMPTileDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp190 } else if (const auto *Tile = dyn_cast<OMPTileDirective>(&S)) { in emitPreInitStmt()
2900 void CodeGenFunction::EmitOMPTileDirective(const OMPTileDirective &S) { in EmitOMPTileDirective()
H A DCodeGenFunction.h3857 void EmitOMPTileDirective(const OMPTileDirective &S);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp14223 if (auto *Dir = dyn_cast<OMPTileDirective>(Transform)) in checkTransformableLoopNest()
14335 return OMPTileDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPTileDirective()
14577 return OMPTileDirective::Create(Context, StartLoc, EndLoc, Clauses, NumLoops, in ActOnOpenMPTileDirective()
H A DTreeTransform.h9634 TreeTransform<Derived>::TransformOMPTileDirective(OMPTileDirective *D) { in TransformOMPTileDirective()