Skip to content
  1. Jan 10, 2011
  2. Jan 09, 2011
  3. Jan 07, 2011
  4. Jan 06, 2011
  5. Jan 02, 2011
    • Chris Lattner's avatar
      update a bunch of entries. · 51415d26
      Chris Lattner authored
      llvm-svn: 122700
      51415d26
    • Chris Lattner's avatar
      Allow loop-idiom to run on multiple BB loops, but still only scan the loop · ddf58010
      Chris Lattner authored
      header for now for memset/memcpy opportunities.  It turns out that loop-rotate
      is successfully rotating loops, but *DOESN'T MERGE THE BLOCKS*, turning "for 
      loops" into 2 basic block loops that loop-idiom was ignoring.
      
      With this fix, we form many *many* more memcpy and memsets than before, including
      on the "history" loops in the viterbi benchmark, which look like this:
      
              for (j=0; j<MAX_history; ++j) {
                history_new[i][j+1] = history[2*i][j];
              }
      
      Transforming these loops into memcpy's speeds up the viterbi benchmark from
      11.98s to 3.55s on my machine.  Woo.
      
      llvm-svn: 122685
      ddf58010
  6. Jan 01, 2011
  7. Dec 28, 2010
  8. Dec 23, 2010
  9. Dec 19, 2010
    • Chris Lattner's avatar
      recognize an unsigned add with overflow idiom into uadd. · 5e0c0c72
      Chris Lattner authored
      This resolves a README entry and technically resolves PR4916,
      but we still get poor code for the testcase in that PR because
      GVN isn't CSE'ing uadd with add, filed as PR8817.
      
      Previously we got:
      
      _test7:                                 ## @test7
      	addq	%rsi, %rdi
      	cmpq	%rdi, %rsi
      	movl	$42, %eax
      	cmovaq	%rsi, %rax
      	ret
      
      Now we get:
      
      _test7:                                 ## @test7
      	addq	%rsi, %rdi
      	movl	$42, %eax
      	cmovbq	%rsi, %rax
      	ret
      
      llvm-svn: 122182
      5e0c0c72
  10. Dec 15, 2010
  11. Dec 13, 2010
  12. Dec 11, 2010
  13. Nov 23, 2010
  14. Nov 22, 2010
  15. Nov 21, 2010
  16. Nov 11, 2010
  17. Nov 09, 2010
Loading