/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 521 OMPDependClause *OMPDependClause::Create( in Create() 526 OMPDependClause *Clause = in Create() 527 new (Mem) OMPDependClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 536 OMPDependClause *OMPDependClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty() 538 return new (Mem) OMPDependClause(N); in CreateEmpty() 541 void OMPDependClause::setCounterValue(Expr *V) { in setCounterValue() 547 const Expr *OMPDependClause::getCounterValue() const { in getCounterValue() 554 Expr *OMPDependClause::getCounterValue() { in getCounterValue()
|
D | StmtProfile.cpp | 491 void OMPClauseProfiler::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()
|
D | StmtPrinter.cpp | 887 void OMPClausePrinter::VisitOMPDependClause(OMPDependClause *Node) { in VisitOMPDependClause()
|
/external/llvm-project/clang/lib/AST/ |
D | OpenMPClause.cpp | 957 OMPDependClause * 958 OMPDependClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 965 alignof(OMPDependClause)); in Create() 966 OMPDependClause *Clause = new (Mem) in Create() 967 OMPDependClause(StartLoc, LParenLoc, EndLoc, VL.size(), NumLoops); in Create() 978 OMPDependClause *OMPDependClause::CreateEmpty(const ASTContext &C, unsigned N, in CreateEmpty() 982 alignof(OMPDependClause)); in CreateEmpty() 983 return new (Mem) OMPDependClause(N, NumLoops); in CreateEmpty() 986 void OMPDependClause::setLoopData(unsigned NumLoop, Expr *Cnt) { in setLoopData() 996 Expr *OMPDependClause::getLoopData(unsigned NumLoop) { in getLoopData() [all …]
|
D | StmtProfile.cpp | 746 void OMPClauseProfiler::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()
|
D | StmtPrinter.cpp | 768 PrintOMPExecutableDirective(Node, Node->hasClausesOfKind<OMPDependClause>()); in VisitOMPOrderedDirective()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 2578 class OMPDependClause final 2579 : public OMPVarListClause<OMPDependClause>, 2580 private llvm::TrailingObjects<OMPDependClause, Expr *> { 2597 OMPDependClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPDependClause() function 2599 : OMPVarListClause<OMPDependClause>(OMPC_depend, StartLoc, LParenLoc, in OMPDependClause() 2607 explicit OMPDependClause(unsigned N) in OMPDependClause() function 2608 : OMPVarListClause<OMPDependClause>(OMPC_depend, SourceLocation(), in OMPDependClause() 2632 static OMPDependClause * 2641 static OMPDependClause *CreateEmpty(const ASTContext &C, unsigned N);
|
D | RecursiveASTVisitor.h | 2874 bool RecursiveASTVisitor<Derived>::VisitOMPDependClause(OMPDependClause *C) {
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 40 class OMPDependClause; variable 1039 const OMPDependClause *C);
|
D | CGStmtOpenMP.cpp | 2487 for (const auto *C : S.getClausesOfKind<OMPDependClause>()) in EmitOMPTaskBasedDirective() 2758 for (const auto *DC : S.getClausesOfKind<OMPDependClause>()) in EmitOMPOrderedDirective()
|
/external/llvm-project/clang/include/clang/AST/ |
D | OpenMPClause.h | 4423 class OMPDependClause final 4424 : public OMPVarListClause<OMPDependClause>, 4425 private llvm::TrailingObjects<OMPDependClause, Expr *> { 4450 OMPDependClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPDependClause() function 4452 : OMPVarListClause<OMPDependClause>(llvm::omp::OMPC_depend, StartLoc, in OMPDependClause() 4461 explicit OMPDependClause(unsigned N, unsigned NumLoops) in OMPDependClause() function 4462 : OMPVarListClause<OMPDependClause>(llvm::omp::OMPC_depend, in OMPDependClause() 4492 static OMPDependClause *Create(const ASTContext &C, SourceLocation StartLoc, 4505 static OMPDependClause *CreateEmpty(const ASTContext &C, unsigned N, 4514 return const_cast<OMPDependClause *>(this)->getModifier(); in getModifier() [all …]
|
D | RecursiveASTVisitor.h | 3394 bool RecursiveASTVisitor<Derived>::VisitOMPDependClause(OMPDependClause *C) {
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 46 class OMPDependClause; variable 1729 const OMPDependClause *C); 2468 const OMPDependClause *C) override;
|
D | CGStmtOpenMP.cpp | 3926 for (const auto *C : S.getClausesOfKind<OMPDependClause>()) { in EmitOMPTaskBasedDirective() 4231 for (const auto *C : S.getClausesOfKind<OMPDependClause>()) { in EmitOMPTargetTaskBasedDirective() 4393 if (const auto *DC = S.getSingleClause<OMPDependClause>()) { in EmitOMPDepobjDirective() 4866 if (S.hasClausesOfKind<OMPDependClause>()) { in EmitOMPOrderedDirective() 4869 for (const auto *DC : S.getClausesOfKind<OMPDependClause>()) in EmitOMPOrderedDirective()
|
D | CGOpenMPRuntime.cpp | 9905 const bool RequiresOuterTask = D.hasClausesOfKind<OMPDependClause>() || in emitTargetCall() 11037 bool RequiresOuterTask = D.hasClausesOfKind<OMPDependClause>() || in emitTargetDataStandAloneCall() 11727 const OMPDependClause *C) { in emitDoacrossOrdered() 12701 const OMPDependClause *C) { in emitDoacrossOrdered()
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 215 OPENMP_CLAUSE(depend, OMPDependClause)
|
/external/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
D | OMP.td | 165 let clangClass = "OMPDependClause";
|
D | OMPKinds.def | 79 __OMP_CLAUSE(depend, OMPDependClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1871 C = OMPDependClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2243 void OMPClauseReader::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
|
D | ASTWriterStmt.cpp | 2018 void OMPClauseWriter::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 80 typedef llvm::DenseMap<OMPDependClause *, OperatorOffsetTy> 371 void addDoacrossDependClause(OMPDependClause *C, OperatorOffsetTy &OpsOffs) { in addDoacrossDependClause() 5962 if (auto *DC = dyn_cast<OMPDependClause>(C)) { in ActOnOpenMPOrderedDirective() 10270 auto *C = OMPDependClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPDependClause()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 86 llvm::DenseMap<OMPDependClause *, OperatorOffsetTy>; 998 void addDoacrossDependClause(OMPDependClause *C, in addDoacrossDependClause() 9503 if (auto *DC = dyn_cast<OMPDependClause>(C)) { in ActOnOpenMPOrderedDirective() 16621 auto *C = OMPDependClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPDependClause()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReader.cpp | 11977 C = OMPDependClause::CreateEmpty(Context, NumVars, NumLoops); in readClause() 12552 void OMPClauseReader::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
|
D | ASTWriter.cpp | 6559 void OMPClauseWriter::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2261 void OMPClauseEnqueue::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()
|