Searched refs:OMPReductionClause (Results 1 – 11 of 11) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 55 return static_cast<const OMPReductionClause *>(C); in get() 131 return static_cast<const OMPReductionClause *>(C); in get() 532 void OMPReductionClause::setPrivates(ArrayRef<Expr *> Privates) { in setPrivates() 538 void OMPReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs() 545 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs() 552 void OMPReductionClause::setReductionOps(ArrayRef<Expr *> ReductionOps) { in setReductionOps() 559 OMPReductionClause *OMPReductionClause::Create( in Create() 567 OMPReductionClause *Clause = new (Mem) OMPReductionClause( in Create() 579 OMPReductionClause *OMPReductionClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 582 return new (Mem) OMPReductionClause(N); in CreateEmpty() [all …]
|
| H A D | StmtProfile.cpp | 567 const OMPReductionClause *C) { in VisitOMPReductionClause()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 1921 class OMPReductionClause final 1922 : public OMPVarListClause<OMPReductionClause>, 1924 private llvm::TrailingObjects<OMPReductionClause, Expr *> { 1947 OMPReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPReductionClause() function 1951 : OMPVarListClause<OMPReductionClause>(OMPC_reduction, StartLoc, in OMPReductionClause() 1959 explicit OMPReductionClause(unsigned N) in OMPReductionClause() function 1960 : OMPVarListClause<OMPReductionClause>(OMPC_reduction, SourceLocation(), in OMPReductionClause() 2062 static OMPReductionClause * 2074 static OMPReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
|
| H A D | RecursiveASTVisitor.h | 3085 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) {
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | OpenMPKinds.def | 251 OPENMP_CLAUSE(reduction, OMPReductionClause)
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 1067 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseInit() 1170 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in EmitOMPReductionClauseFinal() 1196 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in emitPostUpdateForReductionClause() 2867 for (const auto *C : S.getClausesOfKind<OMPReductionClause>()) { in EmitOMPTaskBasedDirective()
|
| H A D | CGOpenMPRuntimeNVPTX.cpp | 2002 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in getTeamsReductionVars()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 11755 C = OMPReductionClause::CreateEmpty(Context, Record.readInt()); in readClause() 12059 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
| H A D | ASTWriter.cpp | 6633 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | TreeTransform.h | 8554 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()
|
| H A D | SemaOpenMP.cpp | 11469 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()
|