Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/llvm-project/clang/lib/AST/
HDStmtOpenMP.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()
HDStmtProfile.cpp1021 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
HDStmtPrinter.cpp806 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/Basic/
HDStmtNodes.td240 def OMPMasterDirective : StmtNode<OMPExecutableDirective>;
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/AST/
HDStmtOpenMP.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);
HDRecursiveASTVisitor.h3059 DEF_TRAVERSE_STMT(OMPMasterDirective,
/freebsd-14-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReaderStmt.cpp2477 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
3517 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
HDASTWriterStmt.cpp2487 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
/freebsd-14-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGStmt.cpp247 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
HDCodeGenFunction.h3830 void EmitOMPMasterDirective(const OMPMasterDirective &S);
HDCGStmtOpenMP.cpp4316 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
/freebsd-14-stable/contrib/llvm-project/clang/lib/Sema/
HDTreeTransform.h9332 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()
HDSemaOpenMP.cpp10784 return OMPMasterDirective::Create(getASTContext(), StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()