Searched refs:OMPReductionClause (Results 1 – 13 of 13) sorted by relevance
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 75 return static_cast<const OMPReductionClause *>(C); in get() 191 return static_cast<const OMPReductionClause *>(C); in get() 735 void OMPReductionClause::setPrivates(ArrayRef<Expr *> Privates) { in setPrivates() 741 void OMPReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs() 748 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs() 770 void OMPReductionClause::setInscanCopyArrayTemps( in setInscanCopyArrayTemps() 779 void OMPReductionClause::setInscanCopyArrayElems( in setInscanCopyArrayElems() 788 OMPReductionClause *OMPReductionClause::Create( in Create() 824 OMPReductionClause * 825 OMPReductionClause::CreateEmpty(const ASTContext &C, unsigned N, in CreateEmpty() [all …]
|
H A D | StmtProfile.cpp | 654 const OMPReductionClause *C) { in VisitOMPReductionClause()
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CGStmtOpenMP.cpp | 254 for (const auto *C : S.getClausesOfKind<OMPReductionClause>()) { in OMPSimdLexicalScope() 1209 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseInit() 1420 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseFinal() 1456 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in emitPostUpdateForReductionClause() 1491 for (const auto *C : S.getClausesOfKind<OMPReductionClause>()) { in checkForLastprivateConditionalUpdate() 2402 llvm::any_of(D.getClausesOfKind<OMPReductionClause>(), in EmitOMPSimdInit() 2403 [](const OMPReductionClause *C) { in EmitOMPSimdInit() 3801 if (llvm::any_of(S.getClausesOfKind<OMPReductionClause>(), in emitWorksharingDirective() 3802 [](const OMPReductionClause *C) { in emitWorksharingDirective() 4415 [](const OMPReductionClause *C) { in EmitOMPParallelForDirective() [all …]
|
H A D | CGOpenMPRuntimeGPU.cpp | 959 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in getTeamsReductionVars()
|
H A D | CGOpenMPRuntime.cpp | 11966 for (const auto *C : S.getClausesOfKind<OMPReductionClause>()) { in tryToDisableInnerAnalysis()
|
/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 3081 class OMPReductionClause final 3082 : public OMPVarListClause<OMPReductionClause>, 3084 private llvm::TrailingObjects<OMPReductionClause, Expr *> { 3114 OMPReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPReductionClause() function 3120 : OMPVarListClause<OMPReductionClause>(llvm::omp::OMPC_reduction, in OMPReductionClause() 3129 explicit OMPReductionClause(unsigned N) in OMPReductionClause() function 3130 : OMPVarListClause<OMPReductionClause>(llvm::omp::OMPC_reduction, in OMPReductionClause() 3280 static OMPReductionClause * 3296 static OMPReductionClause * 3391 auto Children = const_cast<OMPReductionClause *>(this)->children(); in children() [all …]
|
H A D | RecursiveASTVisitor.h | 3594 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) {
|
/openbsd/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 96 let clangClass = "OMPReductionClause";
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 2786 auto *RC = cast<OMPReductionClause>(C); in checkReductionClauses() 2811 auto *RC = cast<OMPReductionClause>(C); in checkReductionClauses() 4946 if (auto *RC = dyn_cast<OMPReductionClause>(C)) { in ActOnOpenMPRegionEnd() 5468 auto *PC = cast<OMPReductionClause>(Cl); in checkAllocateClauses() 6230 if (auto *RC = dyn_cast<OMPReductionClause>(C)) in ActOnOpenMPExecutableDirective() 19817 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()
|
H A D | TreeTransform.h | 9998 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()
|
/openbsd/gnu/llvm/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 10104 C = OMPReductionClause::CreateEmpty(Context, N, Modifier); in readClause() 10584 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
H A D | ASTWriter.cpp | 6620 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
/openbsd/gnu/llvm/clang/tools/libclang/ |
H A D | CIndex.cpp | 2537 void OMPClauseEnqueue::VisitOMPReductionClause(const OMPReductionClause *C) { in VisitOMPReductionClause()
|