Skip to content
  1. Jun 27, 2009
    • David Greene's avatar
      · 8f6f72cc
      David Greene authored
      Add feature flags for AVX and FMA and fix some SSE4A feature flag
      initialization problems.
      
      llvm-svn: 74350
      8f6f72cc
  2. Jun 21, 2009
  3. May 26, 2009
    • Stefanus Du Toit's avatar
      Update CPU capabilities for AMD machines · 96180b53
      Stefanus Du Toit authored
      - added processors k8-sse3, opteron-sse3, athlon64-sse3, amdfam10, and
      barcelona with appropriate sse3/4a levels
      - added FeatureSSE4A for amdfam10 processors
      in X86Subtarget:
      - added hasSSE4A
      - updated AutoDetectSubtargetFeatures to detect SSE4A
      - updated GetCurrentX86CPU to detect family 15 with sse3 as k8-sse3 and
      family 10h as amdfam10
      
      New processor names match those used by gcc.
      
      Patch by Paul Redmond!
      
      llvm-svn: 72434
      96180b53
  4. May 23, 2009
  5. May 20, 2009
  6. Jan 05, 2009
  7. Jan 02, 2009
  8. Dec 16, 2008
  9. Dec 05, 2008
  10. Nov 28, 2008
  11. Oct 01, 2008
  12. Sep 30, 2008
  13. May 05, 2008
  14. Apr 03, 2008
  15. Apr 01, 2008
  16. Mar 22, 2008
  17. Feb 12, 2008
  18. 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
  19. Feb 03, 2008
  20. Jan 02, 2008
  21. Dec 29, 2007
  22. Oct 31, 2007
  23. Sep 07, 2007
  24. Sep 04, 2007
  25. Aug 31, 2007
  26. Aug 07, 2007
  27. Aug 06, 2007
  28. Aug 02, 2007
  29. Apr 11, 2007
  30. Jan 16, 2007
  31. Jan 12, 2007
  32. 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
  33. Dec 22, 2006
  34. Dec 20, 2006
  35. Nov 30, 2006
  36. Nov 21, 2006
  37. Oct 16, 2006
Loading