The basic idea is that by looking through operand instructions which don't change the equality result that we can push the existing known bits comparison down past instructions which would obscure them.
We have analogous handling in InstSimplify for most - though weirdly not all - of these cases starting from an icmp root. It's a bit unfortunate to duplicate logic, but since my actual goal is to extend BasicAA, the icmp logic doesn't help. (And just makes it hard to test here.)
Note that this can't land until after D92694 as the increase in scope makes that bug much more common.
Should be just Depth here to stay consistent with the computeKnownBits case, and the previous behavior?