Searched refs:OMPSectionDirective (Results 1 – 13 of 13) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | StmtOpenMP.cpp | 246 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 D | StmtProfile.cpp | 793 void StmtProfiler::VisitOMPSectionDirective(const OMPSectionDirective *S) { in VisitOMPSectionDirective()
|
| H A D | StmtPrinter.cpp | 667 void StmtPrinter::VisitOMPSectionDirective(OMPSectionDirective *Node) { in VisitOMPSectionDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 1314 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 D | RecursiveASTVisitor.h | 2654 DEF_TRAVERSE_STMT(OMPSectionDirective,
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 212 def OMPSectionDirective : DStmt<OMPExecutableDirective>;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 2014 void ASTStmtReader::VisitOMPSectionDirective(OMPSectionDirective *D) { in VisitOMPSectionDirective() 2857 S = OMPSectionDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1979 void ASTStmtWriter::VisitOMPSectionDirective(OMPSectionDirective *D) { in VisitOMPSectionDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 209 EmitOMPSectionDirective(cast<OMPSectionDirective>(*S)); in EmitStmt()
|
| H A D | CodeGenFunction.h | 3114 void EmitOMPSectionDirective(const OMPSectionDirective &S);
|
| H A D | CGStmtOpenMP.cpp | 2672 void CodeGenFunction::EmitOMPSectionDirective(const OMPSectionDirective &S) { in EmitOMPSectionDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 5897 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 D | TreeTransform.h | 7814 TreeTransform<Derived>::TransformOMPSectionDirective(OMPSectionDirective *D) { in TransformOMPSectionDirective()
|