Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp915 OMPTaskLoopSimdDirective *OMPTaskLoopSimdDirective::Create( in Create()
920 llvm::alignTo(sizeof(OMPTaskLoopSimdDirective), alignof(OMPClause *)); in Create()
924 OMPTaskLoopSimdDirective *Dir = new (Mem) in Create()
925 OMPTaskLoopSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
952 OMPTaskLoopSimdDirective *
953 OMPTaskLoopSimdDirective::CreateEmpty(const ASTContext &C, unsigned NumClauses, in CreateEmpty()
956 llvm::alignTo(sizeof(OMPTaskLoopSimdDirective), alignof(OMPClause *)); in CreateEmpty()
960 return new (Mem) OMPTaskLoopSimdDirective(CollapsedNum, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp905 const OMPTaskLoopSimdDirective *S) { in VisitOMPTaskLoopSimdDirective()
H A DStmtPrinter.cpp807 OMPTaskLoopSimdDirective *Node) { in VisitOMPTaskLoopSimdDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h2906 class OMPTaskLoopSimdDirective : public OMPLoopDirective {
2915 OMPTaskLoopSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTaskLoopSimdDirective() function
2926 explicit OMPTaskLoopSimdDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPTaskLoopSimdDirective() function
2942 static OMPTaskLoopSimdDirective *
2954 static OMPTaskLoopSimdDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2734 DEF_TRAVERSE_STMT(OMPTaskLoopSimdDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td238 def OMPTaskLoopSimdDirective : DStmt<OMPLoopDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2183 void ASTStmtReader::VisitOMPTaskLoopSimdDirective(OMPTaskLoopSimdDirective *D) { in VisitOMPTaskLoopSimdDirective()
2995 S = OMPTaskLoopSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2162 void ASTStmtWriter::VisitOMPTaskLoopSimdDirective(OMPTaskLoopSimdDirective *D) { in VisitOMPTaskLoopSimdDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp284 EmitOMPTaskLoopSimdDirective(cast<OMPTaskLoopSimdDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3143 void EmitOMPTaskLoopSimdDirective(const OMPTaskLoopSimdDirective &S);
H A DCGStmtOpenMP.cpp5006 const OMPTaskLoopSimdDirective &S) { in EmitOMPTaskLoopSimdDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h8099 OMPTaskLoopSimdDirective *D) { in TransformOMPTaskLoopSimdDirective()
H A DSemaOpenMP.cpp7449 return OMPTaskLoopSimdDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPTaskLoopSimdDirective()