Try both ways to fold an add together. This allows us to generate this code
authorChris Lattner <sabre@nondot.org>
Wed, 12 Jan 2005 18:08:53 +0000 (18:08 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 12 Jan 2005 18:08:53 +0000 (18:08 +0000)
        imul %EAX, %EAX, 400
        add %ECX, %EAX
        add %ESI, DWORD PTR [%ECX + 4*%EDX]
        inc %EDX
        cmp %EDX, 100

instead of this:

        imul %EAX, %EAX, 400
        add %ECX, %EAX
        mov %EAX, %EDX
        shl %EAX, 2
        add %ECX, %EAX
        add %ESI, DWORD PTR [%ECX]
        inc %EDX
        cmp %EDX, 100

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19513 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelPattern.cpp

index b3a93b11e400eee7bb0e0ccf50961040813c470e..194c2fa517c0695f811353642050baefbf0cdb6f 100644 (file)
@@ -527,6 +527,10 @@ bool ISel::SelectAddress(SDOperand N, X86AddressMode &AM) {
         !SelectAddress(N.Val->getOperand(1), AM))
       return false;
     AM = Backup;
+    if (!SelectAddress(N.Val->getOperand(1), AM) &&
+        !SelectAddress(N.Val->getOperand(0), AM))
+      return false;
+    AM = Backup;
     break;
   }
   }