Skip to content
  1. Feb 18, 2012
  2. Feb 16, 2012
  3. Jan 17, 2012
  4. Jan 16, 2012
  5. Jan 12, 2012
  6. Jan 10, 2012
  7. Jan 09, 2012
  8. Jan 01, 2012
  9. Dec 12, 2011
  10. Dec 09, 2011
  11. Dec 08, 2011
    • Evan Cheng's avatar
      Many of the SSE patterns should not be selected when AVX is available. This... · 4d1a2d44
      Evan Cheng authored
      Many of the SSE patterns should not be selected when AVX is available. This led to the following code in X86Subtarget.cpp
      
        if (HasAVX)
          X86SSELevel = NoMMXSSE;
      
      This is so patterns that are predicated on hasSSE3, etc. would not be selected when avx is available. Instead, the AVX variant is selected.
      However, this breaks instructions which do not have AVX variants.
      
      The right way to fix this is for the SSE but not-AVX patterns to predicate on something like hasSSE3() && !hasAVX().
      Then we can take out the hack in X86Subtarget.cpp. Patterns which do not have AVX variants do not need to change.
      
      However, we need to audit all the patterns before we make the change. This patch is workaround that fixes one specific case,
      the prefetch instructions. rdar://10538297
      
      llvm-svn: 146163
      4d1a2d44
  12. Nov 29, 2011
  13. Nov 24, 2011
  14. Oct 30, 2011
  15. Oct 27, 2011
  16. Oct 21, 2011
  17. Oct 19, 2011
  18. Oct 18, 2011
  19. Oct 16, 2011
  20. Oct 15, 2011
  21. Oct 14, 2011
  22. Oct 13, 2011
  23. Oct 11, 2011
  24. Oct 10, 2011
  25. Oct 09, 2011
  26. Oct 07, 2011
  27. Oct 06, 2011
  28. Oct 03, 2011
  29. Oct 02, 2011
  30. Sep 09, 2011
  31. Sep 05, 2011
  32. Aug 30, 2011
Loading