Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp514 OMPSectionDirective *OMPSectionDirective::Create(const ASTContext &C, in Create()
520 createDirective<OMPSectionDirective>(C, llvm::None, AssociatedStmt, in Create()
526 OMPSectionDirective *OMPSectionDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
528 return createEmptyDirective<OMPSectionDirective>(C, /*NumClauses=*/0, in CreateEmpty()
H A DStmtProfile.cpp959 void StmtProfiler::VisitOMPSectionDirective(const OMPSectionDirective *S) { in VisitOMPSectionDirective()
H A DStmtPrinter.cpp772 void StmtPrinter::VisitOMPSectionDirective(OMPSectionDirective *Node) { in VisitOMPSectionDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td233 def OMPSectionDirective : StmtNode<OMPExecutableDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h1862 class OMPSectionDirective : public OMPExecutableDirective {
1874 OMPSectionDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPSectionDirective() function
1880 explicit OMPSectionDirective() in OMPSectionDirective() function
1894 static OMPSectionDirective *Create(const ASTContext &C,
1903 static OMPSectionDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h2974 DEF_TRAVERSE_STMT(OMPSectionDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2341 void ASTStmtReader::VisitOMPSectionDirective(OMPSectionDirective *D) { in VisitOMPSectionDirective()
3296 S = OMPSectionDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2259 void ASTStmtWriter::VisitOMPSectionDirective(OMPSectionDirective *D) { in VisitOMPSectionDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp228 EmitOMPSectionDirective(cast<OMPSectionDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3511 void EmitOMPSectionDirective(const OMPSectionDirective &S);
H A DCGStmtOpenMP.cpp4133 void CodeGenFunction::EmitOMPSectionDirective(const OMPSectionDirective &S) { in EmitOMPSectionDirective()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2148 void VisitOMPSectionDirective(const OMPSectionDirective *D);
3052 void EnqueueVisitor::VisitOMPSectionDirective(const OMPSectionDirective *D) { in VisitOMPSectionDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOpenMP.cpp10326 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) { in ActOnOpenMPSectionsDirective()
10332 cast<OMPSectionDirective>(SectionStmt) in ActOnOpenMPSectionsDirective()
10356 return OMPSectionDirective::Create(Context, StartLoc, EndLoc, AStmt, in ActOnOpenMPSectionDirective()
10936 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) { in ActOnOpenMPParallelSectionsDirective()
10942 cast<OMPSectionDirective>(SectionStmt) in ActOnOpenMPParallelSectionsDirective()
H A DTreeTransform.h8701 TreeTransform<Derived>::TransformOMPSectionDirective(OMPSectionDirective *D) { in TransformOMPSectionDirective()