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)
commit9bbd992eb182c03403f6828c1e2bf7c60cd98d2d
tree92626e5af33f39ef5d881630751bccbbd94384aa
parent3bfbf4ea990930d153e58e153f319408341a94fe
Try both ways to fold an add together.  This allows us to generate this code

        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