Skip to content
  1. Jan 23, 2008
    • Duncan Sands's avatar
      The last pieces needed for loading arbitrary · 95d46ef8
      Duncan Sands authored
      precision integers.  This won't actually work
      (and most of the code is dead) unless the new
      legalization machinery is turned on.  While
      there, I rationalized the handling of i1, and
      removed some bogus (and unused) sextload patterns.
      For i1, this could result in microscopically
      better code for some architectures (not X86).
      It might also result in worse code if annotating
      with AssertZExt nodes turns out to be more harmful
      than helpful.
      
      llvm-svn: 46280
      95d46ef8
  2. Jan 11, 2008
  3. Jan 10, 2008
  4. Jan 07, 2008
  5. Dec 29, 2007
  6. Dec 18, 2007
  7. Dec 14, 2007
  8. Dec 13, 2007
  9. Nov 12, 2007
  10. Oct 19, 2007
    • Evan Cheng's avatar
      Local spiller optimization: · 35ff7937
      Evan Cheng authored
      Turn a store folding instruction into a load folding instruction. e.g.
           xorl  %edi, %eax
           movl  %eax, -32(%ebp)
           movl  -36(%ebp), %eax
           orl   %eax, -32(%ebp)
      =>
           xorl  %edi, %eax
           orl   -36(%ebp), %eax
           mov   %eax, -32(%ebp)
      This enables the unfolding optimization for a subsequent instruction which will
      also eliminate the newly introduced store instruction.
      
      llvm-svn: 43192
      35ff7937
  11. Oct 12, 2007
  12. Oct 11, 2007
  13. Oct 06, 2007
  14. Oct 05, 2007
  15. Sep 29, 2007
  16. Sep 27, 2007
  17. Sep 26, 2007
  18. Sep 25, 2007
  19. Sep 17, 2007
  20. Sep 15, 2007
  21. Sep 14, 2007
  22. Sep 11, 2007
  23. Sep 07, 2007
  24. Aug 30, 2007
  25. Aug 02, 2007
  26. Jul 31, 2007
Loading