Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp1119 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 DStmtProfile.cpp1141 void StmtProfiler::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *S) { in VisitOMPTaskLoopDirective()
H A DStmtPrinter.cpp957 void StmtPrinter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *Node) { in VisitOMPTaskLoopDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td267 def OMPTaskLoopDirective : StmtNode<OMPLoopDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h3732 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 DRecursiveASTVisitor.h3142 DEF_TRAVERSE_STMT(OMPTaskLoopDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2633 void ASTStmtReader::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
3667 S = OMPTaskLoopDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2668 void ASTStmtWriter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp325 EmitOMPTaskLoopDirective(cast<OMPTaskLoopDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3861 void EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S);
H A DCGStmtOpenMP.cpp7826 void CodeGenFunction::EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S) { in EmitOMPTaskLoopDirective()
H A DCGOpenMPRuntime.cpp1313 else if (const auto *TD = dyn_cast<OMPTaskLoopDirective>(&D)) in emitTaskOutlinedFunction()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9639 TreeTransform<Derived>::TransformOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in TransformOMPTaskLoopDirective()
H A DSemaOpenMP.cpp13235 return OMPTaskLoopDirective::Create(getASTContext(), StartLoc, EndLoc, in ActOnOpenMPTaskLoopDirective()