Lines Matching refs:ReductionOp

132     llvm::PointerUnion<const Expr *, BOKPtrType> ReductionOp;  member
136 ReductionOp = BO; in set()
140 ReductionOp = RefExpr; in set()
1620 if (!ReductionData.ReductionOp || in getTopMostTaskgroupReductionData()
1621 ReductionData.ReductionOp.is<const Expr *>()) in getTopMostTaskgroupReductionData()
1624 BOK = ReductionData.ReductionOp.get<ReductionData::BOKPtrType>(); in getTopMostTaskgroupReductionData()
1647 if (!ReductionData.ReductionOp || in getTopMostTaskgroupReductionData()
1648 !ReductionData.ReductionOp.is<const Expr *>()) in getTopMostTaskgroupReductionData()
1651 ReductionRef = ReductionData.ReductionOp.get<const Expr *>(); in getTopMostTaskgroupReductionData()
18953 void push(Expr *Item, Expr *ReductionOp) { in push()
18958 ReductionOps.emplace_back(ReductionOp); in push()
18967 void push(Expr *Item, Expr *Private, Expr *LHS, Expr *RHS, Expr *ReductionOp, in push()
18974 ReductionOps.emplace_back(ReductionOp); in push()
19193 Expr *ReductionOp = nullptr; in actOnOMPReductionKindClause() local
19197 ReductionOp = DeclareReductionRef.get(); in actOnOMPReductionKindClause()
19199 RD.push(RefExpr, ReductionOp); in actOnOMPReductionKindClause()
19567 ExprResult ReductionOp; in actOnOMPReductionKindClause() local
19590 ReductionOp = in actOnOMPReductionKindClause()
19597 ReductionOp = in actOnOMPReductionKindClause()
19601 if (!ReductionOp.isUsable()) { in actOnOMPReductionKindClause()
19602 ReductionOp = in actOnOMPReductionKindClause()
19605 if (ReductionOp.isUsable()) { in actOnOMPReductionKindClause()
19607 ReductionOp = in actOnOMPReductionKindClause()
19609 BO_Assign, LHSDRE, ReductionOp.get()); in actOnOMPReductionKindClause()
19612 ConditionalOperator(ReductionOp.get(), ELoc, LHSDRE, ELoc, in actOnOMPReductionKindClause()
19614 ReductionOp = in actOnOMPReductionKindClause()
19620 if (ReductionOp.isUsable()) in actOnOMPReductionKindClause()
19621 ReductionOp = S.ActOnFinishFullExpr(ReductionOp.get(), in actOnOMPReductionKindClause()
19623 if (!ReductionOp.isUsable()) in actOnOMPReductionKindClause()
19775 RD.push(VarsExpr, PrivateDRE, LHSDRE, RHSDRE, ReductionOp.get(), in actOnOMPReductionKindClause()