Skip to content
  1. Dec 22, 2007
  2. Dec 18, 2007
  3. Dec 14, 2007
  4. Dec 13, 2007
  5. Nov 13, 2007
  6. Nov 12, 2007
  7. 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
  8. Oct 12, 2007
  9. Oct 11, 2007
  10. Oct 06, 2007
  11. Oct 05, 2007
  12. Sep 29, 2007
  13. Sep 28, 2007
  14. Sep 26, 2007
  15. Sep 25, 2007
  16. Sep 24, 2007
  17. Sep 23, 2007
    • Dale Johannesen's avatar
      Fix PR 1681. When X86 target uses +sse -sse2, · e36c4002
      Dale Johannesen authored
      keep f32 in SSE registers and f64 in x87.  This
      is effectively a new codegen mode.
      Change addLegalFPImmediate to permit float and
      double variants to do different things.
      Adjust callers.
      
      llvm-svn: 42246
      e36c4002
  18. Sep 14, 2007
  19. Sep 11, 2007
  20. Sep 08, 2007
  21. Sep 07, 2007
  22. Aug 30, 2007
  23. Aug 05, 2007
  24. Aug 02, 2007
  25. Aug 01, 2007
  26. Jul 31, 2007
  27. Jul 29, 2007
  28. Jul 26, 2007
  29. Jul 21, 2007
  30. 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
Loading