Searched refs:OMPParallelDirective (Results 1 – 14 of 14) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | StmtOpenMP.cpp | 57 OMPParallelDirective *OMPParallelDirective::Create( in Create() 61 llvm::alignTo(sizeof(OMPParallelDirective), alignof(OMPClause *)); in Create() 64 OMPParallelDirective *Dir = in Create() 65 new (Mem) OMPParallelDirective(StartLoc, EndLoc, Clauses.size()); in Create() 72 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 76 llvm::alignTo(sizeof(OMPParallelDirective), alignof(OMPClause *)); in CreateEmpty() 79 return new (Mem) OMPParallelDirective(NumClauses); in CreateEmpty()
|
| H A D | StmtProfile.cpp | 773 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
|
| H A D | StmtPrinter.cpp | 642 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 276 class OMPParallelDirective : public OMPExecutableDirective { 286 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() function 296 explicit OMPParallelDirective(unsigned NumClauses) in OMPParallelDirective() function 315 static OMPParallelDirective * 324 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
|
| H A D | RecursiveASTVisitor.h | 2639 DEF_TRAVERSE_STMT(OMPParallelDirective,
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 207 def OMPParallelDirective : DStmt<OMPExecutableDirective>;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1985 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective() 2822 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1947 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 194 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S)); in EmitStmt()
|
| H A D | CodeGenFunction.h | 3109 void EmitOMPParallelDirective(const OMPParallelDirective &S);
|
| H A D | CGStmtOpenMP.cpp | 1271 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { in EmitOMPParallelDirective()
|
| H A D | CGOpenMPRuntime.cpp | 1351 if (const auto *OPD = dyn_cast<OMPParallelDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | TreeTransform.h | 7759 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) { in TransformOMPParallelDirective()
|
| H A D | SemaOpenMP.cpp | 3945 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPParallelDirective()
|