aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/LoopVersioning.cpp
diff options
context:
space:
mode:
authorEli Friedman <efriedma@quicinc.com>2021-07-06 10:54:41 -0700
committerEli Friedman <efriedma@quicinc.com>2021-07-06 10:54:41 -0700
commit74d6ce5d5f169e9cf3fac0eb1042602e286dd2b9 (patch)
tree83651d0a9b0911f5d55cae23f70f6703b6b33819 /llvm/lib/Transforms/Utils/LoopVersioning.cpp
parent458eac2573772a2b50e550360d1308b1b0c0f2bc (diff)
downloadllvm-74d6ce5d5f169e9cf3fac0eb1042602e286dd2b9.zip
llvm-74d6ce5d5f169e9cf3fac0eb1042602e286dd2b9.tar.gz
llvm-74d6ce5d5f169e9cf3fac0eb1042602e286dd2b9.tar.bz2
[ScalarEvolution] Make getMinusSCEV() fail for unrelated pointers.
As part of making ScalarEvolution's handling of pointers consistent, we want to forbid multiplying a pointer by -1 (or any other value). This means we can't blindly subtract pointers. There are a few ways we could deal with this: 1. We could completely forbid subtracting pointers in getMinusSCEV() 2. We could forbid subracting pointers with different pointer bases (this patch). 3. We could try to ptrtoint pointer operands. The option in this patch is more friendly to non-integral pointers: code that works with normal pointers will also work with non-integral pointers. And it seems like there are very few places that actually benefit from the third option. As a minimal patch, the ScalarEvolution implementation of getMinusSCEV still ends up subtracting pointers if they have the same base. This should eliminate the shared pointer base, but eventually we'll need to rewrite it to avoid negating the pointer base. I plan to do this as a separate step to allow measuring the compile-time impact. This doesn't cause obvious functional changes in most cases; the one case that is significantly affected is ICmpZero handling in LSR (which is the source of almost all the test changes). The resulting changes seem okay to me, but suggestions welcome. As an alternative, I tried explicitly ptrtoint'ing the operands, but the result doesn't seem obviously better. I deleted the test lsr-undef-in-binop.ll becuase I couldn't figure out how to repair it to test what it was actually trying to test. Differential Revision: https://reviews.llvm.org/D104806
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopVersioning.cpp')
0 files changed, 0 insertions, 0 deletions