Skip to content
  1. Apr 07, 2009
  2. Mar 30, 2009
  3. Mar 18, 2009
    • Chris Lattner's avatar
      Disable the "call to immediate" optimization on x86-64. It is · a6bed3e9
      Chris Lattner authored
      not safe in general because the immediate could be an arbitrary
      value that does not fit in a 32-bit pcrel displacement.  
      Conservatively fall back to loading the value into a register
      and calling through it.
      
      We still do the optzn on X86-32.
      
      llvm-svn: 67142
      a6bed3e9
  4. Mar 12, 2009
  5. Mar 05, 2009
  6. Mar 04, 2009
  7. Mar 03, 2009
  8. Feb 10, 2009
  9. Feb 05, 2009
  10. Jan 26, 2009
  11. Jan 21, 2009
  12. Jan 14, 2009
  13. Jan 13, 2009
  14. Jan 07, 2009
  15. Dec 25, 2008
  16. Dec 23, 2008
  17. Dec 19, 2008
  18. Dec 12, 2008
  19. Dec 09, 2008
  20. Dec 07, 2008
  21. Dec 03, 2008
  22. Dec 02, 2008
  23. Nov 18, 2008
  24. Oct 30, 2008
  25. Oct 17, 2008
    • Dan Gohman's avatar
      Fun x86 encoding tricks: when adding an immediate value of 128, · ca0546fa
      Dan Gohman authored
      use a SUB instruction instead of an ADD, because -128 can be
      encoded in an 8-bit signed immediate field, while +128 can't be.
      This avoids the need for a 32-bit immediate field in this case.
      
      A similar optimization applies to 64-bit adds with 0x80000000,
      with the 32-bit signed immediate field.
      
      To support this, teach tablegen how to handle 64-bit constants.
      
      llvm-svn: 57663
      ca0546fa
    • Dan Gohman's avatar
      Define patterns for shld and shrd that match immediate · a39b0a1f
      Dan Gohman authored
      shift counts, and patterns that match dynamic shift counts
      when the subtract is obscured by a truncate node.
      
      Add DAGCombiner support for recognizing rotate patterns
      when the shift counts are defined by truncate nodes.
      
      Fix and simplify the code for commuting shld and shrd
      instructions to work even when the given instruction doesn't
      have a parent, and when the caller needs a new instruction.
      
      These changes allow LLVM to use the shld, shrd, rol, and ror
      instructions on x86 to replace equivalent code using two
      shifts and an or in many more cases.
      
      llvm-svn: 57662
      a39b0a1f
  26. Oct 12, 2008
  27. Oct 01, 2008
  28. Sep 16, 2008
Loading