Lines Matching refs:RHSExpr
482 const SCEV *RHSExpr = SE->getSCEV(RHS); in tryReassociateBinaryOp() local
483 if (BExpr != RHSExpr) { in tryReassociateBinaryOp()
485 tryReassociatedBinaryOp(getBinarySCEV(I, AExpr, RHSExpr), B, I)) in tryReassociateBinaryOp()
488 if (AExpr != RHSExpr) { in tryReassociateBinaryOp()
490 tryReassociatedBinaryOp(getBinarySCEV(I, BExpr, RHSExpr), A, I)) in tryReassociateBinaryOp()
602 const SCEV *RHSExpr = SE->getSCEV(RHS); in tryReassociateMinOrMax() local
605 if (BExpr == RHSExpr) in tryReassociateMinOrMax()
609 std::swap(BExpr, RHSExpr); in tryReassociateMinOrMax()
611 if (AExpr == RHSExpr) in tryReassociateMinOrMax()
615 std::swap(AExpr, RHSExpr); in tryReassociateMinOrMax()
639 SmallVector<const SCEV *, 2> Ops2{ RHSExpr, R1Expr }; in tryReassociateMinOrMax()