Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp246 OMPSectionDirective *OMPSectionDirective::Create(const ASTContext &C, in Create()
251 unsigned Size = llvm::alignTo(sizeof(OMPSectionDirective), alignof(Stmt *)); in Create()
253 OMPSectionDirective *Dir = new (Mem) OMPSectionDirective(StartLoc, EndLoc); in Create()
259 OMPSectionDirective *OMPSectionDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
261 unsigned Size = llvm::alignTo(sizeof(OMPSectionDirective), alignof(Stmt *)); in CreateEmpty()
263 return new (Mem) OMPSectionDirective(); in CreateEmpty()
H A DStmtProfile.cpp793 void StmtProfiler::VisitOMPSectionDirective(const OMPSectionDirective *S) { in VisitOMPSectionDirective()
H A DStmtPrinter.cpp667 void StmtPrinter::VisitOMPSectionDirective(OMPSectionDirective *Node) { in VisitOMPSectionDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h1314 class OMPSectionDirective : public OMPExecutableDirective {
1325 OMPSectionDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPSectionDirective() function
1332 explicit OMPSectionDirective() in OMPSectionDirective() function
1346 static OMPSectionDirective *Create(const ASTContext &C,
1355 static OMPSectionDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h2654 DEF_TRAVERSE_STMT(OMPSectionDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td212 def OMPSectionDirective : DStmt<OMPExecutableDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2014 void ASTStmtReader::VisitOMPSectionDirective(OMPSectionDirective *D) { in VisitOMPSectionDirective()
2857 S = OMPSectionDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1979 void ASTStmtWriter::VisitOMPSectionDirective(OMPSectionDirective *D) { in VisitOMPSectionDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp209 EmitOMPSectionDirective(cast<OMPSectionDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3114 void EmitOMPSectionDirective(const OMPSectionDirective &S);
H A DCGStmtOpenMP.cpp2672 void CodeGenFunction::EmitOMPSectionDirective(const OMPSectionDirective &S) { in EmitOMPSectionDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOpenMP.cpp5897 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) { in ActOnOpenMPSectionsDirective()
5903 cast<OMPSectionDirective>(SectionStmt) in ActOnOpenMPSectionsDirective()
5928 return OMPSectionDirective::Create(Context, StartLoc, EndLoc, AStmt, in ActOnOpenMPSectionDirective()
6140 if (!SectionStmt || !isa<OMPSectionDirective>(SectionStmt)) { in ActOnOpenMPParallelSectionsDirective()
6146 cast<OMPSectionDirective>(SectionStmt) in ActOnOpenMPParallelSectionsDirective()
H A DTreeTransform.h7814 TreeTransform<Derived>::TransformOMPSectionDirective(OMPSectionDirective *D) { in TransformOMPSectionDirective()