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.cpp606 OMPMasterDirective *OMPMasterDirective::Create(const ASTContext &C, in Create()
610 return createDirective<OMPMasterDirective>(C, std::nullopt, AssociatedStmt, in Create()
615 OMPMasterDirective *OMPMasterDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
617 return createEmptyDirective<OMPMasterDirective>(C, /*NumClauses=*/0, in CreateEmpty()
H A DStmtProfile.cpp1021 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
H A DStmtPrinter.cpp806 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td240 def OMPMasterDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2045 class OMPMasterDirective : public OMPExecutableDirective {
2053 OMPMasterDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMasterDirective() function
2059 explicit OMPMasterDirective() in OMPMasterDirective() function
2071 static OMPMasterDirective *Create(const ASTContext &C,
2080 static OMPMasterDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h3059 DEF_TRAVERSE_STMT(OMPMasterDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2477 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
3517 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2487 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp247 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3830 void EmitOMPMasterDirective(const OMPMasterDirective &S);
H A DCGStmtOpenMP.cpp4316 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9332 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()
H A DSemaOpenMP.cpp10784 return OMPMasterDirective::Create(getASTContext(), StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()