Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp793 OMPTaskyieldDirective *OMPTaskyieldDirective::Create(const ASTContext &C, in Create()
796 return new (C) OMPTaskyieldDirective(StartLoc, EndLoc); in Create()
799 OMPTaskyieldDirective *OMPTaskyieldDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
801 return new (C) OMPTaskyieldDirective(); in CreateEmpty()
H A DStmtProfile.cpp1059 void StmtProfiler::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *S) { in VisitOMPTaskyieldDirective()
H A DStmtPrinter.cpp855 void StmtPrinter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) { in VisitOMPTaskyieldDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td247 def OMPTaskyieldDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2596 class OMPTaskyieldDirective : public OMPExecutableDirective {
2604 OMPTaskyieldDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskyieldDirective() function
2610 explicit OMPTaskyieldDirective() in OMPTaskyieldDirective() function
2622 static OMPTaskyieldDirective *
2629 static OMPTaskyieldDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h3085 DEF_TRAVERSE_STMT(OMPTaskyieldDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2523 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
3562 S = OMPTaskyieldDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2591 void ASTStmtWriter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp268 EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3838 void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S);
H A DCGStmtOpenMP.cpp5337 const OMPTaskyieldDirective &S) { in EmitOMPTaskyieldDirective()
H A DCGOpenMPRuntime.cpp5991 isa<OMPBarrierDirective>(S) || isa<OMPTaskyieldDirective>(S)) in getSingleCompoundChild()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9419 OMPTaskyieldDirective *D) { in TransformOMPTaskyieldDirective()
H A DSemaOpenMP.cpp10995 return OMPTaskyieldDirective::Create(getASTContext(), StartLoc, EndLoc); in ActOnOpenMPTaskyieldDirective()