Searched refs:OMPSectionsDirective (Results 1 – 13 of 13) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | StmtOpenMP.cpp | 221 OMPSectionsDirective *OMPSectionsDirective::Create( in Create() 225 llvm::alignTo(sizeof(OMPSectionsDirective), alignof(OMPClause *)); in Create() 228 OMPSectionsDirective *Dir = in Create() 229 new (Mem) OMPSectionsDirective(StartLoc, EndLoc, Clauses.size()); in Create() 236 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 240 llvm::alignTo(sizeof(OMPSectionsDirective), alignof(OMPClause *)); in CreateEmpty() 243 return new (Mem) OMPSectionsDirective(NumClauses); in CreateEmpty()
|
| H A D | StmtProfile.cpp | 789 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
|
| H A D | StmtPrinter.cpp | 662 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 1246 class OMPSectionsDirective : public OMPExecutableDirective { 1258 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSectionsDirective() function 1268 explicit OMPSectionsDirective(unsigned NumClauses) in OMPSectionsDirective() function 1287 static OMPSectionsDirective * 1297 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
|
| H A D | RecursiveASTVisitor.h | 2651 DEF_TRAVERSE_STMT(OMPSectionsDirective,
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 211 def OMPSectionsDirective : DStmt<OMPExecutableDirective>;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 2006 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective() 2852 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1971 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 206 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
|
| H A D | CGStmtOpenMP.cpp | 2642 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) in EmitSections() 2660 void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { in EmitOMPSectionsDirective()
|
| H A D | CodeGenFunction.h | 3113 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | TreeTransform.h | 7803 TreeTransform<Derived>::TransformOMPSectionsDirective(OMPSectionsDirective *D) { in TransformOMPSectionsDirective()
|
| H A D | SemaOpenMP.cpp | 5913 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPSectionsDirective()
|