teach GetLinearExpression to be a bit more aggressive.
authorChris Lattner <sabre@nondot.org>
Thu, 26 Nov 2009 17:00:01 +0000 (17:00 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 26 Nov 2009 17:00:01 +0000 (17:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89955 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/BasicAliasAnalysis.cpp
test/Analysis/BasicAA/gep-alias.ll

index c038b2070582ebeae30ebfb2195eb1867513ddf6..e10e1f2d4ceeeff4fca1546b8b65e18559e5467a 100644 (file)
@@ -400,7 +400,16 @@ static Value *GetLinearExpression(Value *V, APInt &Scale, APInt &Offset,
         V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, TD);
         Offset += RHSC->getValue();
         return V;
-      // TODO: SHL, MUL.
+      case Instruction::Mul:
+        V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, TD);
+        Offset *= RHSC->getValue();
+        Scale *= RHSC->getValue();
+        return V;
+      case Instruction::Shl:
+        V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, TD);
+        Offset <<= RHSC->getValue().getLimitedValue();
+        Scale <<= RHSC->getValue().getLimitedValue();
+        return V;
       }
     }
   }
index 320c9907d53846d8f93d1240b975843618641115..68722fbfd0e8860e98ffaf45a344c99b9869bee0 100644 (file)
@@ -101,3 +101,18 @@ define i32 @test6(i32* %p, i64 %i1) {
 ; CHECK: ret i32 0
 }
 
+; P[1] != P[i*4]
+define i32 @test7(i32* %p, i64 %i) {
+  %pi = getelementptr i32* %p, i64 1
+  %i.next = shl i64 %i, 2
+  %pi.next = getelementptr i32* %p, i64 %i.next
+  %x = load i32* %pi
+  store i32 42, i32* %pi.next
+  %y = load i32* %pi
+  %z = sub i32 %x, %y
+  ret i32 %z
+; CHECK: @test7
+; CHECK: ret i32 0
+}
+
+