Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp1081 OMPTaskLoopDirective *OMPTaskLoopDirective::Create( in Create()
1085 auto *Dir = createDirective<OMPTaskLoopDirective>( in Create()
1116 OMPTaskLoopDirective *OMPTaskLoopDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1120 return createEmptyDirective<OMPTaskLoopDirective>( in CreateEmpty()
H A DStmtProfile.cpp1130 void StmtProfiler::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *S) { in VisitOMPTaskLoopDirective()
H A DStmtPrinter.cpp944 void StmtPrinter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *Node) { in VisitOMPTaskLoopDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td263 def OMPTaskLoopDirective : StmtNode<OMPLoopDirective>;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h3728 class OMPTaskLoopDirective : public OMPLoopDirective {
3740 OMPTaskLoopDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTaskLoopDirective() function
3749 explicit OMPTaskLoopDirective(unsigned CollapsedNum) in OMPTaskLoopDirective() function
3768 static OMPTaskLoopDirective *
3780 static OMPTaskLoopDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3072 DEF_TRAVERSE_STMT(OMPTaskLoopDirective,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2605 void ASTStmtReader::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
3590 S = OMPTaskLoopDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2619 void ASTStmtWriter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp315 EmitOMPTaskLoopDirective(cast<OMPTaskLoopDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3633 void EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S);
H A DCGStmtOpenMP.cpp7754 void CodeGenFunction::EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S) { in EmitOMPTaskLoopDirective()
H A DCGOpenMPRuntime.cpp1311 else if (const auto *TD = dyn_cast<OMPTaskLoopDirective>(&D)) in emitTaskOutlinedFunction()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9310 TreeTransform<Derived>::TransformOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in TransformOMPTaskLoopDirective()
H A DSemaOpenMP.cpp13662 return OMPTaskLoopDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPTaskLoopDirective()