Teach the dag combiner to turn a truncate/sign_extend pair into a sextinreg
authorChris Lattner <sabre@nondot.org>
Wed, 7 Dec 2005 07:11:03 +0000 (07:11 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 7 Dec 2005 07:11:03 +0000 (07:11 +0000)
commitb14ab8a10d7955501ec80b247b2510bbd2511b12
tree8ccf09c8bbba28b7bca766418e5a6986ac5a7bf6
parent8b6cea1b9595c1ddbb07dbbe8a8af781d78cd51d
Teach the dag combiner to turn a truncate/sign_extend pair into a sextinreg
when the types match up.  This allows the X86 backend to compile:

sbyte %toggle_value(sbyte* %tmp.1) {
        %tmp.2 = load sbyte* %tmp.1
        ret sbyte %tmp.2
}

to this:

_toggle_value:
        mov %EAX, DWORD PTR [%ESP + 4]
        movsx %EAX, BYTE PTR [%EAX]
        ret

instead of this:

_toggle_value:
        mov %EAX, DWORD PTR [%ESP + 4]
        movsx %EAX, BYTE PTR [%EAX]
        movsx %EAX, %AL
        ret

noticed in Shootout/objinst.

-Chris

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24630 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/SelectionDAG/DAGCombiner.cpp