Skip to content
  • Chris Lattner's avatar
    Improve an integer select optimization in two ways: · 342e6ea5
    Chris Lattner authored
    1. generalize 
        (select (x == 0), -1, 0) -> (sign_bit (x - 1))
    to:
        (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
    
    2. Handle the identical pattern that happens with !=:
       (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
    
    cmov is often high latency and can't fold immediates or
    memory operands.  For example for (x == 0) ? -1 : 1, before 
    we got:
    
    < 	testb	%sil, %sil
    < 	movl	$-1, %ecx
    < 	movl	$1, %eax
    < 	cmovel	%ecx, %eax
    
    now we get:
    
    > 	cmpb	$1, %sil
    > 	sbbl	%eax, %eax
    > 	orl	$1, %eax
    
    llvm-svn: 120929
    342e6ea5
Loading