Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp568 OMPMasterDirective *OMPMasterDirective::Create(const ASTContext &C, in Create()
572 return createDirective<OMPMasterDirective>(C, std::nullopt, AssociatedStmt, in Create()
577 OMPMasterDirective *OMPMasterDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
579 return createEmptyDirective<OMPMasterDirective>(C, /*NumClauses=*/0, in CreateEmpty()
H A DStmtProfile.cpp1010 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
H A DStmtPrinter.cpp793 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td236 def OMPMasterDirective : StmtNode<OMPExecutableDirective>;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2044 class OMPMasterDirective : public OMPExecutableDirective {
2052 OMPMasterDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMasterDirective() function
2058 explicit OMPMasterDirective() in OMPMasterDirective() function
2070 static OMPMasterDirective *Create(const ASTContext &C,
2079 static OMPMasterDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h2989 DEF_TRAVERSE_STMT(OMPMasterDirective,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2449 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
3440 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2438 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp237 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3602 void EmitOMPMasterDirective(const OMPMasterDirective &S);
H A DCGStmtOpenMP.cpp4271 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9003 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()
H A DSemaOpenMP.cpp11036 return OMPMasterDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()