[llvm-testresults] buildbot failure in smooshlab on llvm-gcc-x86_64-darwin10-selfhost

daniel_dunbar at apple.com daniel_dunbar at apple.com
Sat Dec 4 19:01:51 PST 2010


The Buildbot has detected a new failure of llvm-gcc-x86_64-darwin10-selfhost on smooshlab.
Full details are available at:
 http://smooshlab.apple.com:8010/builders/llvm-gcc-x86_64-darwin10-selfhost/builds/6928

Buildbot URL: http://smooshlab.apple.com:8010/

Buildslave for this Build: smoosh-04

Build Reason: 
Build Source Stamp: 120930
Blamelist: lattner

BUILD FAILED: failed test-llvm

sincerely,
 -The Buildbot


================================================================================

CHANGES:
Files:
 test/CodeGen/X86/select-zero-one.ll
 test/CodeGen/X86/select.ll
At: Sat 04 Dec 2010 17:06:40
Changed By: lattner
Comments: remove two tests that aren't really testing anything.
Properties: 




Files:
 test/CodeGen/X86/select-aggregate.ll
 test/CodeGen/X86/select.ll
At: Sat 04 Dec 2010 17:06:40
Changed By: lattner
Comments: rename test
Properties: 




Files:
 test/CodeGen/X86/2007-10-16-fp80_select.ll
 test/CodeGen/X86/const-select.ll
 test/CodeGen/X86/select.ll
 test/CodeGen/X86/sext-select.ll
 test/CodeGen/X86/split-select.ll
 test/CodeGen/X86/vec_select.ll
 test/CodeGen/X86/widen_select-1.ll
At: Sat 04 Dec 2010 17:16:41
Changed By: lattner
Comments: merge some tests into select.ll and make them more specific.
Properties: 




Files:
 lib/Target/X86/X86ISelLowering.cpp
 test/CodeGen/X86/select.ll
At: Sat 04 Dec 2010 17:26:40
Changed By: lattner
Comments: Improve an integer select optimization in two ways:

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


Properties: 




File: test/CodeGen/X86/select.ll
At: Sat 04 Dec 2010 17:36:40
Changed By: lattner
Comments: relax this to handle linux defaulting to -static.
Properties: 




LOGS:
Last 10 lines of 'stdio':
	    LLVM :: Transforms/SimplifyCFG/switch_formation.dbg.ll
	    LLVM :: Transforms/SimplifyCFG/switch_formation.ll
	    LLVM :: Transforms/SimplifyCFG/switch_thread.ll
	
	  Expected Passes    : 5575
	  Expected Failures  : 51
	  Unsupported Tests  : 40
	  Unexpected Failures: 31
	make[1]: *** [check-local-lit] Error 1
	make: *** [check] Error 2

Last 10 lines of 'dg.log':
	

Last 10 lines of 'dg.sum':
	




More information about the llvm-testresults mailing list