Skip to content
  1. Jul 20, 2010
  2. Jul 19, 2010
  3. Jul 17, 2010
  4. Jul 14, 2010
  5. Jul 13, 2010
  6. Jul 08, 2010
    • Evan Cheng's avatar
      Optimize some vfp comparisons to integer ones. This patch implements the... · 25f9364c
      Evan Cheng authored
      Optimize some vfp comparisons to integer ones. This patch implements the simplest case when the following conditions are met:
      1. The arguments are f32.
      2. The arguments are loads and they have no uses other than the comparison.
      3. The comparison code is EQ or NE.
      
      e.g.
              vldr.32 s0, [r1]
              vldr.32 s1, [r0]
              vcmpe.f32       s1, s0
              vmrs    apsr_nzcv, fpscr
      	beq     LBB0_2
      =>
              ldr     r1, [r1]
              ldr     r0, [r0]
              cmp     r0, r1
              beq     LBB0_2
      
      More complicated cases will be implemented in subsequent patches.
      
      llvm-svn: 107852
      25f9364c
  7. Jul 07, 2010
  8. Jun 25, 2010
  9. Jun 15, 2010
  10. Jun 04, 2010
    • Bob Wilson's avatar
      For NEON vectors with 32- or 64-bit elements, select BUILD_VECTORs and · d8a9a047
      Bob Wilson authored
      VECTOR_SHUFFLEs to REG_SEQUENCE instructions.  The standard ISD::BUILD_VECTOR
      node corresponds closely to REG_SEQUENCE but I couldn't use it here because
      its operands do not get legalized.  That is pretty awful, but I guess it
      makes sense for other targets.  Instead, I have added an ARM-specific version
      of BUILD_VECTOR that will have its operands properly legalized.
      This fixes the rest of Radar 7872877.
      
      llvm-svn: 105439
      d8a9a047
  11. Jun 03, 2010
  12. Jun 02, 2010
  13. May 28, 2010
  14. May 27, 2010
  15. May 26, 2010
  16. May 22, 2010
  17. May 21, 2010
  18. May 15, 2010
  19. May 11, 2010
  20. May 01, 2010
  21. Apr 17, 2010
  22. Apr 04, 2010
  23. Apr 02, 2010
  24. Mar 31, 2010
  25. Mar 30, 2010
  26. Mar 19, 2010
  27. Mar 18, 2010
  28. Mar 14, 2010
  29. Feb 18, 2010
  30. Feb 09, 2010
  31. Feb 03, 2010
Loading