aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/CommandLine.cpp
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2022-06-07 12:42:12 -0400
committerSanjay Patel <spatel@rotateright.com>2022-06-07 13:28:18 -0400
commit82040d414b3c9fc283ba57c8193fbc9578044cd9 (patch)
treebae7eccfddf06042bdbdb930f0346d54b9ea2544 /llvm/lib/Support/CommandLine.cpp
parent8956f80e4b57a87995d75153df3eec06d4d4ff05 (diff)
downloadllvm-82040d414b3c9fc283ba57c8193fbc9578044cd9.zip
llvm-82040d414b3c9fc283ba57c8193fbc9578044cd9.tar.gz
llvm-82040d414b3c9fc283ba57c8193fbc9578044cd9.tar.bz2
[InstCombine] reduce right-shift-of-left-shifted constant via demanded bits
If we don't demand high bits (zeros) and it is valid to pre-shift a constant: (C2 << X) >> C1 --> (C2 >> C1) << X https://alive2.llvm.org/ce/z/P3dWDW There are a variety of related patterns, but I haven't found a single solution that gets all of the motivating examples - so pulling this piece out of D126617 along with more tests. We should also handle the case where we shift-right followed by shift-left, but I'll make that a follow-on patch assuming this one is ok. It seems likely that we would want to add this to the SDAG version of the code too to keep it on par with IR. Differential Revision: https://reviews.llvm.org/D127122
Diffstat (limited to 'llvm/lib/Support/CommandLine.cpp')
0 files changed, 0 insertions, 0 deletions