/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 48 return static_cast<const OMPReductionClause *>(C); in get() 110 return static_cast<const OMPReductionClause *>(C); in get() 451 void OMPReductionClause::setPrivates(ArrayRef<Expr *> Privates) { in setPrivates() 457 void OMPReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs() 464 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs() 471 void OMPReductionClause::setReductionOps(ArrayRef<Expr *> ReductionOps) { in setReductionOps() 478 OMPReductionClause *OMPReductionClause::Create( in Create() 486 OMPReductionClause *Clause = new (Mem) OMPReductionClause( in Create() 498 OMPReductionClause *OMPReductionClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 501 return new (Mem) OMPReductionClause(N); in CreateEmpty()
|
D | StmtProfile.cpp | 405 const OMPReductionClause *C) { in VisitOMPReductionClause()
|
D | StmtPrinter.cpp | 812 void OMPClausePrinter::VisitOMPReductionClause(OMPReductionClause *Node) { in VisitOMPReductionClause()
|
/external/llvm-project/clang/lib/AST/ |
D | OpenMPClause.cpp | 77 return static_cast<const OMPReductionClause *>(C); in get() 177 return static_cast<const OMPReductionClause *>(C); in get() 692 void OMPReductionClause::setPrivates(ArrayRef<Expr *> Privates) { in setPrivates() 698 void OMPReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs() 705 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs() 712 void OMPReductionClause::setReductionOps(ArrayRef<Expr *> ReductionOps) { in setReductionOps() 719 void OMPReductionClause::setInscanCopyOps(ArrayRef<Expr *> Ops) { in setInscanCopyOps() 727 void OMPReductionClause::setInscanCopyArrayTemps( in setInscanCopyArrayTemps() 736 void OMPReductionClause::setInscanCopyArrayElems( in setInscanCopyArrayElems() 745 OMPReductionClause *OMPReductionClause::Create( in Create() [all …]
|
D | StmtProfile.cpp | 590 const OMPReductionClause *C) { in VisitOMPReductionClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1666 class OMPReductionClause final 1667 : public OMPVarListClause<OMPReductionClause>, 1669 private llvm::TrailingObjects<OMPReductionClause, Expr *> { 1690 OMPReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPReductionClause() function 1694 : OMPVarListClause<OMPReductionClause>(OMPC_reduction, StartLoc, in OMPReductionClause() 1703 explicit OMPReductionClause(unsigned N) in OMPReductionClause() function 1704 : OMPVarListClause<OMPReductionClause>(OMPC_reduction, SourceLocation(), in OMPReductionClause() 1805 static OMPReductionClause * 1817 static OMPReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
|
D | RecursiveASTVisitor.h | 2847 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) {
|
/external/llvm-project/clang/include/clang/AST/ |
D | OpenMPClause.h | 2720 class OMPReductionClause final 2721 : public OMPVarListClause<OMPReductionClause>, 2723 private llvm::TrailingObjects<OMPReductionClause, Expr *> { 2753 OMPReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPReductionClause() function 2759 : OMPVarListClause<OMPReductionClause>(llvm::omp::OMPC_reduction, in OMPReductionClause() 2768 explicit OMPReductionClause(unsigned N) in OMPReductionClause() function 2769 : OMPVarListClause<OMPReductionClause>(llvm::omp::OMPC_reduction, in OMPReductionClause() 2919 static OMPReductionClause * 2935 static OMPReductionClause * 3030 auto Children = const_cast<OMPReductionClause *>(this)->children(); in children() [all …]
|
D | RecursiveASTVisitor.h | 3304 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) {
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1185 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseInit() 1402 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseFinal() 1438 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in emitPostUpdateForReductionClause() 1473 for (const auto *C : S.getClausesOfKind<OMPReductionClause>()) { in checkForLastprivateConditionalUpdate() 2193 llvm::any_of(D.getClausesOfKind<OMPReductionClause>(), in EmitOMPSimdInit() 2194 [](const OMPReductionClause *C) { in EmitOMPSimdInit() 3168 for (const auto *C : S.getClausesOfKind<OMPReductionClause>()) { in emitScanBasedDirective() 3314 if (llvm::any_of(S.getClausesOfKind<OMPReductionClause>(), in emitWorksharingDirective() 3315 [](const OMPReductionClause *C) { in emitWorksharingDirective() 3914 for (const auto *C : S.getClausesOfKind<OMPReductionClause>()) { in EmitOMPTaskBasedDirective() [all …]
|
D | CGOpenMPRuntimeGPU.cpp | 1628 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in getTeamsReductionVars()
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 198 OPENMP_CLAUSE(reduction, OMPReductionClause)
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 939 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseInit() 1146 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseFinal() 1171 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in emitPostUpdateForReductionClause()
|
/external/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
D | OMP.td | 83 let clangClass = "OMPReductionClause";
|
D | OMPKinds.def | 59 __OMP_CLAUSE(reduction, OMPReductionClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1853 C = OMPReductionClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2110 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
D | ASTWriterStmt.cpp | 1931 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 2533 auto *RC = cast<OMPReductionClause>(C); in checkReductionClauses() 2558 auto *RC = cast<OMPReductionClause>(C); in checkReductionClauses() 4959 auto *PC = cast<OMPReductionClause>(Cl); in checkAllocateClauses() 15694 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()
|
D | TreeTransform.h | 9314 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReader.cpp | 11947 C = OMPReductionClause::CreateEmpty(Context, N, Modifier); in readClause() 12327 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
D | ASTWriter.cpp | 6415 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2195 void OMPClauseEnqueue::VisitOMPReductionClause(const OMPReductionClause *C) { in VisitOMPReductionClause()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2372 void OMPClauseEnqueue::VisitOMPReductionClause(const OMPReductionClause *C) { in VisitOMPReductionClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 9539 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()
|
D | TreeTransform.h | 7869 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()
|