Lines Matching refs:ReductionOp
128 llvm::PointerUnion<const Expr *, BOKPtrType> ReductionOp; member
132 ReductionOp = BO; in set()
136 ReductionOp = RefExpr; in set()
1489 if (!ReductionData.ReductionOp || in getTopMostTaskgroupReductionData()
1490 ReductionData.ReductionOp.is<const Expr *>()) in getTopMostTaskgroupReductionData()
1493 BOK = ReductionData.ReductionOp.get<ReductionData::BOKPtrType>(); in getTopMostTaskgroupReductionData()
1516 if (!ReductionData.ReductionOp || in getTopMostTaskgroupReductionData()
1517 !ReductionData.ReductionOp.is<const Expr *>()) in getTopMostTaskgroupReductionData()
1520 ReductionRef = ReductionData.ReductionOp.get<const Expr *>(); in getTopMostTaskgroupReductionData()
16216 void push(Expr *Item, Expr *ReductionOp) { in push()
16221 ReductionOps.emplace_back(ReductionOp); in push()
16230 void push(Expr *Item, Expr *Private, Expr *LHS, Expr *RHS, Expr *ReductionOp, in push()
16237 ReductionOps.emplace_back(ReductionOp); in push()
16456 Expr *ReductionOp = nullptr; in actOnOMPReductionKindClause() local
16460 ReductionOp = DeclareReductionRef.get(); in actOnOMPReductionKindClause()
16462 RD.push(RefExpr, ReductionOp); in actOnOMPReductionKindClause()
16831 ExprResult ReductionOp; in actOnOMPReductionKindClause() local
16854 ReductionOp = in actOnOMPReductionKindClause()
16861 ReductionOp = in actOnOMPReductionKindClause()
16865 if (!ReductionOp.isUsable()) { in actOnOMPReductionKindClause()
16866 ReductionOp = in actOnOMPReductionKindClause()
16869 if (ReductionOp.isUsable()) { in actOnOMPReductionKindClause()
16871 ReductionOp = in actOnOMPReductionKindClause()
16873 BO_Assign, LHSDRE, ReductionOp.get()); in actOnOMPReductionKindClause()
16876 ConditionalOperator(ReductionOp.get(), ELoc, LHSDRE, ELoc, in actOnOMPReductionKindClause()
16878 ReductionOp = in actOnOMPReductionKindClause()
16884 if (ReductionOp.isUsable()) in actOnOMPReductionKindClause()
16885 ReductionOp = S.ActOnFinishFullExpr(ReductionOp.get(), in actOnOMPReductionKindClause()
16887 if (!ReductionOp.isUsable()) in actOnOMPReductionKindClause()
17039 RD.push(VarsExpr, PrivateDRE, LHSDRE, RHSDRE, ReductionOp.get(), in actOnOMPReductionKindClause()