Home
last modified time | relevance | path

Searched refs:OMPReductionClause (Results 1 – 11 of 11) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DOpenMPClause.cpp55 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 DStmtProfile.cpp567 const OMPReductionClause *C) { in VisitOMPReductionClause()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DOpenMPClause.h1921 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 DRecursiveASTVisitor.h3085 RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) {
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DOpenMPKinds.def251 OPENMP_CLAUSE(reduction, OMPReductionClause)
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp1067 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 DCGOpenMPRuntimeNVPTX.cpp2002 for (const auto *C : D.getClausesOfKind<OMPReductionClause>()) { in getTeamsReductionVars()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp11755 C = OMPReductionClause::CreateEmpty(Context, Record.readInt()); in readClause()
12059 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
H A DASTWriter.cpp6633 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) { in VisitOMPReductionClause()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h8554 TreeTransform<Derived>::TransformOMPReductionClause(OMPReductionClause *C) { in TransformOMPReductionClause()
H A DSemaOpenMP.cpp11469 return OMPReductionClause::Create( in ActOnOpenMPReductionClause()