Skip to content
  1. Aug 26, 2006
  2. Jul 27, 2006
  3. Jul 25, 2006
  4. Jun 29, 2006
  5. Jun 22, 2006
  6. May 16, 2006
  7. May 04, 2006
  8. May 03, 2006
  9. May 02, 2006
  10. Apr 22, 2006
  11. Mar 22, 2006
  12. Feb 26, 2006
  13. Feb 22, 2006
  14. Feb 18, 2006
  15. Feb 14, 2006
  16. 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
  17. Jan 28, 2006
  18. Jan 27, 2006
  19. Jan 24, 2006
  20. Jan 23, 2006
  21. Jul 11, 2005
  22. 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
  23. May 19, 2005
  24. Apr 22, 2005
  25. Nov 21, 2004
  26. Nov 19, 2004
  27. Nov 16, 2004
Loading