summaryrefslogtreecommitdiffstats
path: root/llvm/test/Analysis/ScalarEvolution/range-signedness.ll
Commit message (Collapse)AuthorAgeFilesLines
* [SCEV] Unify getUnsignedRange and getSignedRangeSanjoy Das2015-03-091-0/+39
Summary: This removes some duplicated code, and also helps optimization: e.g. in the test case added, `%idx ULT 128` in `@x` is not currently optimized to `true` by `-indvars` but will be, after this change. The only functional change in ths commit is that for add recurrences, ScalarEvolution::getRange will be more aggressive -- computing the unsigned (resp. signed) range for a SCEVAddRecExpr will now look at the NSW (resp. NUW) bits and check for signed (resp. unsigned) overflow. This can be a strict improvement in some cases (such as the attached test case), and should be no worse in other cases. Reviewers: atrick, nlewycky Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D8142 llvm-svn: 231709
OpenPOWER on IntegriCloud