Emit long comparison against -1 better. Instead of this (x86):
authorChris Lattner <sabre@nondot.org>
Tue, 12 Apr 2005 01:46:05 +0000 (01:46 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 12 Apr 2005 01:46:05 +0000 (01:46 +0000)
commit08b698e38db5ab5db44c0472e2a7f4f780887629
tree7bc017e7fb39a43908f09ac862546967ee4447e0
parent3b2c1d95a27479a0d6ce2e6fcd1f81185568bb31
Emit long comparison against -1 better.  Instead of this (x86):

test2:
        movl 8(%esp), %eax
        notl %eax
        movl 4(%esp), %ecx
        notl %ecx
        orl %eax, %ecx
        cmpl $0, %ecx
        sete %al
        movzbl %al, %eax
        ret

or this (PPC):

_test2:
        nor r2, r4, r4
        nor r3, r3, r3
        or r2, r2, r3
        cntlzw r2, r2
        srwi r3, r2, 5
        blr

Emit this:

test2:
        movl 8(%esp), %eax
        andl 4(%esp), %eax
        cmpl $-1, %eax
        sete %al
        movzbl %al, %eax
        ret

or this:

_test2:
.LBB_test2_0:   ;
        and r2, r4, r3
        cmpwi cr0, r2, -1
        li r3, 1
        li r2, 0
        beq .LBB_test2_2        ;
.LBB_test2_1:   ;
        or r3, r2, r2
.LBB_test2_2:   ;
        blr

it seems like the PPC isel could do better for R32 == -1 case.

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