Home
last modified time | relevance | path

Searched refs:OMPInReductionClause (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DOpenMPClause.cpp59 return static_cast<const OMPInReductionClause *>(C); in get()
135 return static_cast<const OMPInReductionClause *>(C); in get()
638 void OMPInReductionClause::setPrivates(ArrayRef<Expr *> Privates) { in setPrivates()
644 void OMPInReductionClause::setLHSExprs(ArrayRef<Expr *> LHSExprs) { in setLHSExprs()
651 void OMPInReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs()
658 void OMPInReductionClause::setReductionOps(ArrayRef<Expr *> ReductionOps) { in setReductionOps()
665 void OMPInReductionClause::setTaskgroupDescriptors( in setTaskgroupDescriptors()
674 OMPInReductionClause *OMPInReductionClause::Create( in Create()
682 OMPInReductionClause *Clause = new (Mem) OMPInReductionClause( in Create()
695 OMPInReductionClause *OMPInReductionClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
[all …]
H A DStmtProfile.cpp615 const OMPInReductionClause *C) { in VisitOMPInReductionClause()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DOpenMPClause.h2362 class OMPInReductionClause final
2363 : public OMPVarListClause<OMPInReductionClause>,
2365 private llvm::TrailingObjects<OMPInReductionClause, Expr *> {
2388 OMPInReductionClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPInReductionClause() function
2392 : OMPVarListClause<OMPInReductionClause>(OMPC_in_reduction, StartLoc, in OMPInReductionClause()
2400 explicit OMPInReductionClause(unsigned N) in OMPInReductionClause() function
2401 : OMPVarListClause<OMPInReductionClause>( in OMPInReductionClause()
2514 static OMPInReductionClause *
2527 static OMPInReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
H A DRecursiveASTVisitor.h3129 OMPInReductionClause *C) {
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DOpenMPKinds.def287 OPENMP_CLAUSE(in_reduction, OMPInReductionClause)
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOpenMP.cpp2940 auto *IRC = cast<OMPInReductionClause>(Clause); in ActOnOpenMPRegionEnd()
3386 if (auto *IRC = dyn_cast<OMPInReductionClause>(C)) { in ActOnOpenMPExecutableDirective()
11509 return OMPInReductionClause::Create( in ActOnOpenMPInReductionClause()
H A DTreeTransform.h8646 TreeTransform<Derived>::TransformOMPInReductionClause(OMPInReductionClause *C) { in TransformOMPInReductionClause()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp11761 C = OMPInReductionClause::CreateEmpty(Context, Record.readInt()); in readClause()
12127 void OMPClauseReader::VisitOMPInReductionClause(OMPInReductionClause *C) { in VisitOMPInReductionClause()
H A DASTWriter.cpp6671 void OMPClauseWriter::VisitOMPInReductionClause(OMPInReductionClause *C) { in VisitOMPInReductionClause()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp2982 for (const auto *C : S.getClausesOfKind<OMPInReductionClause>()) { in EmitOMPTaskBasedDirective()