Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp1047 OMPTaskLoopDirective *OMPTaskLoopDirective::Create( in Create()
1051 auto *Dir = createDirective<OMPTaskLoopDirective>( in Create()
1082 OMPTaskLoopDirective *OMPTaskLoopDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1086 return createEmptyDirective<OMPTaskLoopDirective>( in CreateEmpty()
H A DStmtProfile.cpp1084 void StmtProfiler::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *S) { in VisitOMPTaskLoopDirective()
H A DStmtPrinter.cpp928 void StmtPrinter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *Node) { in VisitOMPTaskLoopDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td261 def OMPTaskLoopDirective : StmtNode<OMPLoopDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h3659 class OMPTaskLoopDirective : public OMPLoopDirective {
3671 OMPTaskLoopDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTaskLoopDirective() function
3680 explicit OMPTaskLoopDirective(unsigned CollapsedNum) in OMPTaskLoopDirective() function
3699 static OMPTaskLoopDirective *
3711 static OMPTaskLoopDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3063 DEF_TRAVERSE_STMT(OMPTaskLoopDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2501 void ASTStmtReader::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
3450 S = OMPTaskLoopDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2446 void ASTStmtWriter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp309 EmitOMPTaskLoopDirective(cast<OMPTaskLoopDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3543 void EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S);
H A DCGStmtOpenMP.cpp7698 void CodeGenFunction::EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S) { in EmitOMPTaskLoopDirective()
H A DCGOpenMPRuntime.cpp1315 else if (const auto *TD = dyn_cast<OMPTaskLoopDirective>(&D)) in emitTaskOutlinedFunction()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2178 void VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *D);
3180 void EnqueueVisitor::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *D) { in VisitOMPTaskLoopDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h9019 TreeTransform<Derived>::TransformOMPTaskLoopDirective(OMPTaskLoopDirective *D) { in TransformOMPTaskLoopDirective()
H A DSemaOpenMP.cpp13242 return OMPTaskLoopDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPTaskLoopDirective()