Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp666 OMPTaskyieldDirective *OMPTaskyieldDirective::Create(const ASTContext &C, in Create()
669 return new (C) OMPTaskyieldDirective(StartLoc, EndLoc); in Create()
672 OMPTaskyieldDirective *OMPTaskyieldDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
674 return new (C) OMPTaskyieldDirective(); in CreateEmpty()
H A DStmtProfile.cpp975 void StmtProfiler::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *S) { in VisitOMPTaskyieldDirective()
H A DStmtPrinter.cpp745 void StmtPrinter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) { in VisitOMPTaskyieldDirective()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td240 def OMPTaskyieldDirective : StmtNode<OMPExecutableDirective>;
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2396 class OMPTaskyieldDirective : public OMPExecutableDirective {
2404 OMPTaskyieldDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskyieldDirective() function
2410 explicit OMPTaskyieldDirective() in OMPTaskyieldDirective() function
2422 static OMPTaskyieldDirective *
2429 static OMPTaskyieldDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h2895 DEF_TRAVERSE_STMT(OMPTaskyieldDirective,
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2394 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
3286 S = OMPTaskyieldDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2357 void ASTStmtWriter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp251 EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3458 void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S);
H A DCGStmtOpenMP.cpp4780 const OMPTaskyieldDirective &S) { in EmitOMPTaskyieldDirective()
H A DCGOpenMPRuntime.cpp6593 isa<OMPBarrierDirective>(S) || isa<OMPTaskyieldDirective>(S)) in getSingleCompoundChild()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8684 OMPTaskyieldDirective *D) { in TransformOMPTaskyieldDirective()
H A DSemaOpenMP.cpp10198 return OMPTaskyieldDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPTaskyieldDirective()