Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp549 OMPMasterDirective *OMPMasterDirective::Create(const ASTContext &C, in Create()
553 return createDirective<OMPMasterDirective>(C, llvm::None, AssociatedStmt, in Create()
558 OMPMasterDirective *OMPMasterDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
560 return createEmptyDirective<OMPMasterDirective>(C, /*NumClauses=*/0, in CreateEmpty()
H A DStmtProfile.cpp967 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
H A DStmtPrinter.cpp782 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td235 def OMPMasterDirective : StmtNode<OMPExecutableDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h1975 class OMPMasterDirective : public OMPExecutableDirective {
1983 OMPMasterDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMasterDirective() function
1989 explicit OMPMasterDirective() in OMPMasterDirective() function
2001 static OMPMasterDirective *Create(const ASTContext &C,
2010 static OMPMasterDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h2980 DEF_TRAVERSE_STMT(OMPMasterDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2352 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
3305 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2272 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp234 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3513 void EmitOMPMasterDirective(const OMPMasterDirective &S);
H A DCGStmtOpenMP.cpp4213 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2150 void VisitOMPMasterDirective(const OMPMasterDirective *D);
3060 void EnqueueVisitor::VisitOMPMasterDirective(const OMPMasterDirective *D) { in VisitOMPMasterDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h8723 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()
H A DSemaOpenMP.cpp10713 return OMPMasterDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()