Skip to content
  1. Feb 11, 2019
  2. Feb 05, 2019
  3. Jan 31, 2019
  4. Aug 30, 2018
  5. Aug 29, 2018
  6. Aug 17, 2018
  7. Aug 16, 2018
  8. Aug 14, 2018
  9. Aug 13, 2018
  10. Aug 01, 2018
  11. Dec 10, 2017
  12. Nov 13, 2017
  13. Jan 17, 2017
  14. Aug 07, 2016
  15. Nov 02, 2015
  16. Mar 06, 2014
    • Raul E. Silvera's avatar
      Change math intrinsic attributes from readonly to readnone. These · b741b945
      Raul E. Silvera authored
      are operations that do not access memory but may be sensitive
      to floating-point environment changes. LLVM does not attempt
      to model FP environment changes, so this was unnecessarily conservative
      and was getting on the way of some optimizations, in particular
      SLP vectorization.
      
      llvm-svn: 203037
      b741b945
  17. Dec 15, 2013
  18. Dec 12, 2013
  19. Dec 08, 2013
  20. Dec 05, 2013
  21. Aug 19, 2013
  22. Jul 14, 2013
    • Stephen Lin's avatar
      Update Transforms tests to use CHECK-LABEL for easier debugging. No functionality change. · c1c7a130
      Stephen Lin authored
      This update was done with the following bash script:
      
        find test/Transforms -name "*.ll" | \
        while read NAME; do
          echo "$NAME"
          if ! grep -q "^; *RUN: *llc" $NAME; then
            TEMP=`mktemp -t temp`
            cp $NAME $TEMP
            sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \
            while read FUNC; do
              sed -i '' "s/;\(.*\)\([A-Za-z0-9_]*\):\( *\)@$FUNC\([( ]*\)\$/;\1\2-LABEL:\3@$FUNC(/g" $TEMP
            done
            mv $TEMP $NAME
          fi
        done
      
      llvm-svn: 186268
      c1c7a130
  23. Feb 22, 2013
  24. Nov 13, 2012
    • Meador Inge's avatar
      instcombine: Migrate math library call simplifications · 193e035b
      Meador Inge authored
      This patch migrates the math library call simplifications from the
      simplify-libcalls pass into the instcombine library call simplifier.
      
      I have typically migrated just one simplifier at a time, but the math
      simplifiers are interdependent because:
      
         1. CosOpt, PowOpt, and Exp2Opt all depend on UnaryDoubleFPOpt.
         2. CosOpt, PowOpt, Exp2Opt, and UnaryDoubleFPOpt all depend on
            the option -enable-double-float-shrink.
      
      These two factors made migrating each of these simplifiers individually
      more of a pain than it would be worth.  So, I migrated them all together.
      
      llvm-svn: 167815
      193e035b
Loading