Skip to content
  1. Jan 05, 2009
  2. Jan 02, 2009
  3. Dec 16, 2008
  4. Dec 05, 2008
  5. Nov 28, 2008
  6. Oct 01, 2008
  7. Sep 30, 2008
  8. May 05, 2008
  9. Apr 03, 2008
  10. Apr 01, 2008
  11. Mar 22, 2008
  12. Feb 12, 2008
  13. Feb 07, 2008
    • Evan Cheng's avatar
      Fix a x86-64 codegen deficiency. Allow gv + offset when using rip addressing mode. · a20a7736
      Evan Cheng authored
      Before:
      _main:
              subq    $8, %rsp
              leaq    _X(%rip), %rax
              movsd   8(%rax), %xmm1
              movss   _X(%rip), %xmm0
              call    _t
              xorl    %ecx, %ecx
              movl    %ecx, %eax
              addq    $8, %rsp
              ret
      Now:
      _main:
              subq    $8, %rsp
              movsd   _X+8(%rip), %xmm1
              movss   _X(%rip), %xmm0
              call    _t
              xorl    %ecx, %ecx
              movl    %ecx, %eax
              addq    $8, %rsp
              ret
      
      Notice there is another idiotic codegen issue that needs to be fixed asap:
      xorl    %ecx, %ecx
      movl    %ecx, %eax
      
      llvm-svn: 46850
      a20a7736
  14. Feb 03, 2008
  15. Jan 02, 2008
  16. Dec 29, 2007
  17. Oct 31, 2007
  18. Sep 07, 2007
  19. Sep 04, 2007
  20. Aug 31, 2007
  21. Aug 07, 2007
  22. Aug 06, 2007
  23. Aug 02, 2007
  24. Apr 11, 2007
  25. Jan 16, 2007
  26. Jan 12, 2007
  27. Jan 03, 2007
    • Anton Korobeynikov's avatar
      Really big cleanup. · 4efbbc96
      Anton Korobeynikov authored
      - New target type "mingw" was introduced
      - Same things for both mingw & cygwin are marked as "cygming" (as in
      gcc)
      - .lcomm is supported here, so allow LLVM to use it
      - Correctly use underscored versions of setjmp & _longjmp for both mingw
      & cygwin
      
      llvm-svn: 32833
      4efbbc96
  28. Dec 22, 2006
  29. Dec 20, 2006
  30. Nov 30, 2006
  31. Nov 21, 2006
  32. Oct 16, 2006
  33. Oct 06, 2006
  34. Sep 14, 2006
  35. Sep 08, 2006
Loading