Skip to content
  1. Aug 02, 2007
    • Dan Gohman's avatar
      Fix pastos in vector arithmetic intrinsics. · 4d436e2b
      Dan Gohman authored
      llvm-svn: 40754
      4d436e2b
    • Dan Gohman's avatar
      Mark the SSE and MMX load instructions that · fa3eeeed
      Dan Gohman authored
      X86InstrInfo::isReallyTriviallyReMaterializable knows how to handle
      with the isReMaterializable flag so that it is given a chance to handle
      them. Without hoisting constant-pool loads from loops this isn't very
      visible, though it does keep CodeGen/X86/constant-pool-remat-0.ll from
      making a copy of the constant pool on the stack.
      
      llvm-svn: 40736
      fa3eeeed
  2. Aug 01, 2007
  3. Jul 31, 2007
  4. Jul 27, 2007
  5. Jul 26, 2007
  6. Jul 20, 2007
  7. Jul 19, 2007
    • Evan Cheng's avatar
      Change instruction description to split OperandList into OutOperandList and · 94b5a80b
      Evan Cheng authored
      InOperandList. This gives one piece of important information: # of results
      produced by an instruction.
      An example of the change:
      def ADD32rr  : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
                       "add{l} {$src2, $dst|$dst, $src2}",
                       [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
      =>
      def ADD32rr  : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
                       "add{l} {$src2, $dst|$dst, $src2}",
                       [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
      
      llvm-svn: 40033
      94b5a80b
  8. Jul 18, 2007
  9. Jul 10, 2007
  10. Jul 03, 2007
  11. Jun 26, 2007
  12. Jun 25, 2007
  13. Jun 19, 2007
    • Dan Gohman's avatar
      Replace M_REMATERIALIZIBLE and the newly-added isOtherReMaterializableLoad · 9e820649
      Dan Gohman authored
      with a general target hook to identify rematerializable instructions. Some
      instructions are only rematerializable with specific operands, such as loads
      from constant pools, while others are always rematerializable. This hook
      allows both to be identified as being rematerializable with the same
      mechanism.
      
      llvm-svn: 37644
      9e820649
  14. May 17, 2007
  15. May 03, 2007
  16. Apr 18, 2007
  17. Apr 11, 2007
  18. Mar 21, 2007
  19. Mar 04, 2007
  20. Feb 20, 2007
  21. Jan 05, 2007
  22. Dec 14, 2006
  23. Dec 05, 2006
  24. Nov 17, 2006
  25. Nov 10, 2006
  26. Nov 07, 2006
  27. Nov 04, 2006
  28. Nov 01, 2006
  29. Oct 27, 2006
  30. Oct 25, 2006
  31. Oct 11, 2006
  32. Oct 09, 2006
Loading