Searched refs:OMPTaskLoopDirective (Results 1 – 14 of 14) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtOpenMP.cpp | 1119 OMPTaskLoopDirective *OMPTaskLoopDirective::Create( in Create() 1123 auto *Dir = createDirective<OMPTaskLoopDirective>( in Create() 1154 OMPTaskLoopDirective *OMPTaskLoopDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 1158 return createEmptyDirective<OMPTaskLoopDirective>( in CreateEmpty()
|
H A D | StmtProfile.cpp | 1141 void StmtProfiler::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *S) { in VisitOMPTaskLoopDirective()
|
H A D | StmtPrinter.cpp | 957 void StmtPrinter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *Node) { in VisitOMPTaskLoopDirective()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | StmtNodes.td | 267 def OMPTaskLoopDirective : StmtNode<OMPLoopDirective>;
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | StmtOpenMP.h | 3732 class OMPTaskLoopDirective : public OMPLoopDirective { 3744 OMPTaskLoopDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTaskLoopDirective() function 3753 explicit OMPTaskLoopDirective(unsigned CollapsedNum) in OMPTaskLoopDirective() function 3772 static OMPTaskLoopDirective * 3784 static OMPTaskLoopDirective *CreateEmpty(const ASTContext &C,
|
H A D | RecursiveASTVisitor.h | 3142 DEF_TRAVERSE_STMT(OMPTaskLoopDirective,
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 2633 void ASTStmtReader::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective() 3667 S = OMPTaskLoopDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
|
H A D | ASTWriterStmt.cpp | 2668 void ASTStmtWriter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmt.cpp | 325 EmitOMPTaskLoopDirective(cast<OMPTaskLoopDirective>(*S)); in EmitStmt()
|
H A D | CodeGenFunction.h | 3861 void EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S);
|
H A D | CGStmtOpenMP.cpp | 7826 void CodeGenFunction::EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S) { in EmitOMPTaskLoopDirective()
|
H A D | CGOpenMPRuntime.cpp | 1313 else if (const auto *TD = dyn_cast<OMPTaskLoopDirective>(&D)) in emitTaskOutlinedFunction()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TreeTransform.h | 9639 TreeTransform<Derived>::TransformOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in TransformOMPTaskLoopDirective()
|
H A D | SemaOpenMP.cpp | 13235 return OMPTaskLoopDirective::Create(getASTContext(), StartLoc, EndLoc, in ActOnOpenMPTaskLoopDirective()
|