Model ashr(shl(x, n), m) as mul(x, 2^(n-m)) when n > m
authorZhaoshi Zheng <zhaoshiz@coduaurora.org>
Thu, 23 Mar 2017 18:06:09 +0000 (18:06 +0000)
committerZhaoshi Zheng <zhaoshiz@coduaurora.org>
Thu, 23 Mar 2017 18:06:09 +0000 (18:06 +0000)
commitd59827deefbcee8dcd6b6584f8eb925b22a7564a
treef7a48cb52e7f3b585e9cb4d576de6baf0c70e606
parentc4fa083a1dd268a634b2e53a83e94c947664c93f
Model ashr(shl(x, n), m) as mul(x, 2^(n-m)) when n > m

Given below case:

  %y = shl %x, n
  %z = ashr %y, m

when n = m, SCEV models it as sext(trunc(x)). This patch tries to handle
the case where n > m by using sext(mul(trunc(x), 2^(n-m)))) as the SCEV
expression.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@298631 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Analysis/ScalarEvolution.cpp
test/Analysis/ScalarEvolution/sext-mul.ll [new file with mode: 0644]
test/Analysis/ScalarEvolution/sext-zero.ll [new file with mode: 0644]