Skip to content
  1. Dec 21, 2007
  2. Dec 19, 2007
  3. Dec 13, 2007
  4. Dec 08, 2007
  5. Dec 07, 2007
    • Bill Wendling's avatar
      Initial commit of the machine code LICM pass. It successfully hoists this: · fb706bc5
      Bill Wendling authored
      _foo:
              li r2, 0
      LBB1_1: ; bb
              li r5, 0
              stw r5, 0(r3)
              addi r2, r2, 1
              addi r3, r3, 4
              cmplw cr0, r2, r4
              bne cr0, LBB1_1 ; bb
      LBB1_2: ; return
              blr 
      
      to:
      
      _foo:
              li r2, 0
              li r5, 0
      LBB1_1: ; bb
              stw r5, 0(r3)
              addi r2, r2, 1
              addi r3, r3, 4
              cmplw cr0, r2, r4
              bne cr0, LBB1_1 ; bb
      LBB1_2: ; return
              blr
      
      ZOMG!! :-)
      
      Moar to come...
      
      llvm-svn: 44687
      fb706bc5
  6. Dec 05, 2007
  7. Dec 02, 2007
  8. Dec 01, 2007
  9. Nov 28, 2007
  10. Nov 27, 2007
  11. Nov 21, 2007
  12. Nov 19, 2007
  13. Nov 13, 2007
  14. Nov 12, 2007
  15. Nov 11, 2007
  16. Nov 05, 2007
    • Duncan Sands's avatar
      Eliminate the remaining uses of getTypeSize. This · 283207a7
      Duncan Sands authored
      should only effect x86 when using long double.  Now
      12/16 bytes are output for long double globals (the
      exact amount depends on the alignment).  This brings
      globals in line with the rest of LLVM: the space
      reserved for an object is now always the ABI size.
      One tricky point is that only 10 bytes should be
      output for long double if it is a field in a packed
      struct, which is the reason for the additional
      argument to EmitGlobalConstant.
      
      llvm-svn: 43688
      283207a7
  17. Nov 04, 2007
  18. Oct 24, 2007
  19. Oct 23, 2007
  20. Oct 22, 2007
  21. Oct 19, 2007
  22. Oct 18, 2007
  23. Oct 16, 2007
  24. Oct 15, 2007
  25. Oct 14, 2007
  26. Oct 12, 2007
Loading