Searched refs:OMPTaskDirective (Results 1 – 14 of 14) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtOpenMP.cpp | 776 OMPTaskDirective * 777 OMPTaskDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 780 auto *Dir = createDirective<OMPTaskDirective>( in Create() 786 OMPTaskDirective *OMPTaskDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 789 return createEmptyDirective<OMPTaskDirective>(C, NumClauses, in CreateEmpty()
|
H A D | StmtProfile.cpp | 1055 void StmtProfiler::VisitOMPTaskDirective(const OMPTaskDirective *S) { in VisitOMPTaskDirective()
|
H A D | StmtPrinter.cpp | 850 void StmtPrinter::VisitOMPTaskDirective(OMPTaskDirective *Node) { in VisitOMPTaskDirective()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | StmtNodes.td | 246 def OMPTaskDirective : StmtNode<OMPExecutableDirective>;
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | StmtOpenMP.h | 2534 class OMPTaskDirective : public OMPExecutableDirective { 2545 OMPTaskDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskDirective() function 2551 explicit OMPTaskDirective() in OMPTaskDirective() function 2568 static OMPTaskDirective *Create(const ASTContext &C, SourceLocation StartLoc, 2579 static OMPTaskDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
|
H A D | RecursiveASTVisitor.h | 3082 DEF_TRAVERSE_STMT(OMPTaskDirective,
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 2517 void ASTStmtReader::VisitOMPTaskDirective(OMPTaskDirective *D) { in VisitOMPTaskDirective() 3557 S = OMPTaskDirective::CreateEmpty( in ReadStmtFromStream()
|
H A D | ASTWriterStmt.cpp | 2534 void ASTStmtWriter::VisitOMPTaskDirective(OMPTaskDirective *D) { in VisitOMPTaskDirective()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmt.cpp | 265 EmitOMPTaskDirective(cast<OMPTaskDirective>(*S)); in EmitStmt()
|
H A D | CodeGenFunction.h | 3837 void EmitOMPTaskDirective(const OMPTaskDirective &S);
|
H A D | CGStmtOpenMP.cpp | 5304 void CodeGenFunction::EmitOMPTaskDirective(const OMPTaskDirective &S) { in EmitOMPTaskDirective()
|
H A D | CGOpenMPRuntime.cpp | 1311 if (const auto *TD = dyn_cast<OMPTaskDirective>(&D)) in emitTaskOutlinedFunction()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TreeTransform.h | 9408 TreeTransform<Derived>::TransformOMPTaskDirective(OMPTaskDirective *D) { in TransformOMPTaskDirective()
|
H A D | SemaOpenMP.cpp | 10989 return OMPTaskDirective::Create(getASTContext(), StartLoc, EndLoc, Clauses, in ActOnOpenMPTaskDirective()
|