Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp866 OMPTaskLoopDirective *OMPTaskLoopDirective::Create( in Create()
871 llvm::alignTo(sizeof(OMPTaskLoopDirective), alignof(OMPClause *)); in Create()
875 OMPTaskLoopDirective *Dir = new (Mem) in Create()
876 OMPTaskLoopDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
903 OMPTaskLoopDirective *OMPTaskLoopDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
908 llvm::alignTo(sizeof(OMPTaskLoopDirective), alignof(OMPClause *)); in CreateEmpty()
912 return new (Mem) OMPTaskLoopDirective(CollapsedNum, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp900 void StmtProfiler::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *S) { in VisitOMPTaskLoopDirective()
H A DStmtPrinter.cpp801 void StmtPrinter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *Node) { in VisitOMPTaskLoopDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h2841 class OMPTaskLoopDirective : public OMPLoopDirective {
2850 OMPTaskLoopDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTaskLoopDirective() function
2860 explicit OMPTaskLoopDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPTaskLoopDirective() function
2876 static OMPTaskLoopDirective *
2888 static OMPTaskLoopDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2731 DEF_TRAVERSE_STMT(OMPTaskLoopDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td237 def OMPTaskLoopDirective : DStmt<OMPLoopDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2179 void ASTStmtReader::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
2987 S = OMPTaskLoopDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2157 void ASTStmtWriter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp281 EmitOMPTaskLoopDirective(cast<OMPTaskLoopDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3142 void EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S);
H A DCGStmtOpenMP.cpp5001 void CodeGenFunction::EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S) { in EmitOMPTaskLoopDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h8088 TreeTransform<Derived>::TransformOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in TransformOMPTaskLoopDirective()
H A DSemaOpenMP.cpp7400 return OMPTaskLoopDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPTaskLoopDirective()