If we have some pattern that leaves only some low bits set, and then performs
left-shift of those bits, if none of the bits that are left after the final
shift are modified by the mask, we can omit the mask.
There are many variants to this pattern:
b. (x & (~(-1 << maskNbits))) << shiftNbits
All these patterns can be simplified to just:
x << ShiftShAmt
iff:
b. (MaskShAmt+ShiftShAmt) u>= bitwidth(x)
alive proof:
b: https://rise4fun.com/Alive/y8M
For now let's start with patterns where both shift amounts are variable,
with trivial constant "offset" between them, since i believe this is
both simplest to handle and i think this is most common.
But again, there are likely other variants where we could use
ValueTracking/ConstantRange to handle more cases.