[llvm] [DAGCombiner] Attempt to fold 'add' nodes to funnel-shift or rotate (PR #125612)
Alex MacLean via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 14:03:55 PDT 2025
================
@@ -8379,7 +8383,7 @@ static bool matchRotateSub(SDValue Pos, SDValue Neg, unsigned EltSize,
// NOTE: We can only do this when matching operations which won't modify the
// least Log2(EltSize) significant bits and not a general funnel shift.
unsigned MaskLoBits = 0;
- if (IsRotate && isPowerOf2_64(EltSize)) {
+ if (IsRotate && !FromAdd && isPowerOf2_64(EltSize)) {
----------------
AlexMaclean wrote:
It is incorrect to do this for an ADD or a non-rotate funnel-shift because when the shift amount is 0 the LHS and RHS will be combined with each other. If they are equal (IsRotate) and the combining operation is an OR (!FromAdd) than this will be a no-op (LHS = RHS = Result) which is consistent with a funnel-shift of 0. If either of these conditions are not met the then they cannot be safely combined like this for the 0 case.
https://github.com/llvm/llvm-project/pull/125612
More information about the llvm-commits
mailing list