Searched refs:OMPParallelDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 57 OMPParallelDirective *OMPParallelDirective::Create( in Create() 61 llvm::alignTo(sizeof(OMPParallelDirective), llvm::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), llvm::alignOf<OMPClause *>()); in CreateEmpty() 79 return new (Mem) OMPParallelDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 557 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
|
D | StmtPrinter.cpp | 990 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 231 class OMPParallelDirective : public OMPExecutableDirective { 241 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() function 251 explicit OMPParallelDirective(unsigned NumClauses) in OMPParallelDirective() function 270 static OMPParallelDirective * 279 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2463 DEF_TRAVERSE_STMT(OMPParallelDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 198 def OMPParallelDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 185 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2467 void EmitOMPParallelDirective(const OMPParallelDirective &S);
|
D | CGStmtOpenMP.cpp | 1226 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { in EmitOMPParallelDirective()
|
D | CGOpenMPRuntime.cpp | 849 if (auto *OPD = dyn_cast<OMPParallelDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2540 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective() 3258 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2221 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1938 void VisitOMPParallelDirective(const OMPParallelDirective *D); 2596 void EnqueueVisitor::VisitOMPParallelDirective(const OMPParallelDirective *D) { in VisitOMPParallelDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3893 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPParallelDirective()
|
D | TreeTransform.h | 7223 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) { in TransformOMPParallelDirective()
|