Searched refs:OMPReductionClause (Results 1 – 12 of 12) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 75 return static_cast<const OMPReductionClause *>(C); in get() 193 return static_cast<const OMPReductionClause *>(C); in get() 740 void OMPReductionClause::setPrivates(ArrayRef<Expr *> Privates) { in setPrivates() 746 void OMPReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs() 753 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs() 775 void OMPReductionClause::setInscanCopyArrayTemps( in setInscanCopyArrayTemps() 784 void OMPReductionClause::setInscanCopyArrayElems( in setInscanCopyArrayElems() 793 OMPReductionClause *OMPReductionClause::Create( in Create() 829 OMPReductionClause * 830 OMPReductionClause::CreateEmpty(const ASTContext &C, unsigned N, in CreateEmpty() [all …]
|
| H A D | StmtProfile.cpp | 672 const OMPReductionClause *C) { in VisitOMPReductionClause()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 254 for (const auto *C : S.getClausesOfKind<OMPReductionClause>()) { in OMPSimdLexicalScope() 1205 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseInit() 1414 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseFinal() 1450 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in emitPostUpdateForReductionClause() 1485 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 | 985 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in getTeamsReductionVars()
|
| H A D | CGOpenMPRuntime.cpp | 11505 for (const auto *C : S.getClausesOfKind<OMPReductionClause>()) { in tryToDisableInnerAnalysis()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 3164 class OMPReductionClause final 3165 : public OMPVarListClause<OMPReductionClause>, 3167 private llvm::TrailingObjects<OMPReductionClause, Expr *> { 3197 OMPReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPReductionClause() function 3203 : OMPVarListClause<OMPReductionClause>(llvm::omp::OMPC_reduction, in OMPReductionClause() 3212 explicit OMPReductionClause(unsigned N) in OMPReductionClause() function 3213 : OMPVarListClause<OMPReductionClause>(llvm::omp::OMPC_reduction, in OMPReductionClause() 3363 static OMPReductionClause * 3379 static OMPReductionClause * 3474 auto Children = const_cast<OMPReductionClause *>(this)->children(); in children() [all …]
|
| H A D | RecursiveASTVisitor.h | 3610 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) {
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 96 let clangClass = "OMPReductionClause";
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 2810 auto *RC = cast<OMPReductionClause>(C); in checkReductionClauses() 2835 auto *RC = cast<OMPReductionClause>(C); in checkReductionClauses() 4961 if (auto *RC = dyn_cast<OMPReductionClause>(C)) { in ActOnOpenMPRegionEnd() 5498 auto *PC = cast<OMPReductionClause>(Cl); in checkAllocateClauses() 6376 if (auto *RC = dyn_cast<OMPReductionClause>(C)) in ActOnOpenMPExecutableDirective() 20175 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()
|
| H A D | TreeTransform.h | 10174 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 10386 C = OMPReductionClause::CreateEmpty(Context, N, Modifier); in readClause() 10888 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
| H A D | ASTWriter.cpp | 6765 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|