summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-01-09 02:28:48 +0000
committerChris Lattner <sabre@nondot.org>2011-01-09 02:28:48 +0000
commit6d5a2411aad379141df29687b8cec0938ab7ae61 (patch)
tree7949687e72243113a25f85b2be1ce3efc56a3cd5 /lib
parentf1859891b7bef1ac8d5cea100f152aeb5783c3b3 (diff)
downloadllvm-6d5a2411aad379141df29687b8cec0938ab7ae61.tar.gz
llvm-6d5a2411aad379141df29687b8cec0938ab7ae61.tar.bz2
llvm-6d5a2411aad379141df29687b8cec0938ab7ae61.tar.xz
teach SCEV analysis of PHI nodes that PHI recurences formed
with GEP instructions are always NUW, because PHIs cannot wrap the end of the address space. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123105 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Analysis/ScalarEvolution.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp
index fa828acc5b..b675e286ba 100644
--- a/lib/Analysis/ScalarEvolution.cpp
+++ b/lib/Analysis/ScalarEvolution.cpp
@@ -2719,6 +2719,11 @@ const SCEV *ScalarEvolution::createNodeForPHI(PHINode *PN) {
HasNUW = true;
if (OBO->hasNoSignedWrap())
HasNSW = true;
+ } else if (isa<GEPOperator>(BEValueV)) {
+ // If the increment is a GEP, then we know it won't perform an
+ // unsigned overflow, because the address space cannot be
+ // wrapped around.
+ HasNUW = true;
}
const SCEV *StartVal = getSCEV(StartValueV);