Home
last modified time | relevance | path

Searched refs:OMPMasterDirective (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp627 OMPMasterDirective *OMPMasterDirective::Create(const ASTContext &C, in Create()
631 return createDirective<OMPMasterDirective>(C, {}, AssociatedStmt, in Create()
636 OMPMasterDirective *OMPMasterDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
638 return createEmptyDirective<OMPMasterDirective>(C, /*NumClauses=*/0, in CreateEmpty()
H A DStmtProfile.cpp1053 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
H A DStmtPrinter.cpp822 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td241 def OMPMasterDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2028 class OMPMasterDirective : public OMPExecutableDirective {
2036 OMPMasterDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMasterDirective() function
2042 explicit OMPMasterDirective() in OMPMasterDirective() function
2054 static OMPMasterDirective *Create(const ASTContext &C,
2063 static OMPMasterDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h3114 DEF_TRAVERSE_STMT(OMPMasterDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2500 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
3654 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2516 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp253 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3868 void EmitOMPMasterDirective(const OMPMasterDirective &S);
H A DCGStmtOpenMP.cpp4505 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9755 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()
H A DSemaOpenMP.cpp10849 return OMPMasterDirective::Create(getASTContext(), StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()