Skip to content
  1. Sep 13, 2006
  2. Sep 08, 2006
  3. Sep 07, 2006
  4. Sep 06, 2006
  5. Sep 05, 2006
  6. Aug 27, 2006
  7. Aug 26, 2006
  8. Jul 27, 2006
  9. Jul 25, 2006
  10. Jun 29, 2006
  11. Jun 22, 2006
  12. May 16, 2006
  13. May 04, 2006
  14. May 03, 2006
  15. May 02, 2006
  16. Apr 22, 2006
  17. Mar 22, 2006
  18. Feb 26, 2006
  19. Feb 22, 2006
  20. Feb 18, 2006
  21. Feb 14, 2006
  22. Feb 01, 2006
    • Evan Cheng's avatar
      - Use xor to clear integer registers (set R, 0). · 9e350cd6
      Evan Cheng authored
      - Added a new format for instructions where the source register is implied
        and it is same as the destination register. Used for pseudo instructions
        that clear the destination register.
      
      llvm-svn: 25872
      9e350cd6
  23. Jan 28, 2006
  24. Jan 27, 2006
  25. Jan 24, 2006
  26. Jan 23, 2006
  27. Jul 11, 2005
  28. Jul 06, 2005
    • Nate Begeman's avatar
      First round of support for doing scalar FP using the SSE2 ISA extension and · 8a093360
      Nate Begeman authored
      XMM registers.  There are many known deficiencies and fixmes, which will be
      addressed ASAP.  The major benefit of this work is that it will allow the
      LLVM register allocator to allocate FP registers across basic blocks.
      
      The x86 backend will still default to x87 style FP.  To enable this work,
      you must pass -enable-sse-scalar-fp and either -sse2 or -sse3 to llc.
      
      An example before and after would be for:
      double foo(double *P) { double Sum = 0; int i; for (i = 0; i < 1000; ++i)
                              Sum += P[i]; return Sum; }
      
      The inner loop looks like the following:
      x87:
      .LBB_foo_1:     # no_exit
              fldl (%esp)
              faddl (%eax,%ecx,8)
              fstpl (%esp)
              incl %ecx
              cmpl $1000, %ecx
              #FP_REG_KILL
              jne .LBB_foo_1  # no_exit
      
      SSE2:
              addsd (%eax,%ecx,8), %xmm0
              incl %ecx
              cmpl $1000, %ecx
              #FP_REG_KILL
              jne .LBB_foo_1  # no_exit
      
      llvm-svn: 22340
      8a093360
Loading