Skip to content
  1. Nov 23, 2010
    • Duncan Sands's avatar
      Fix typo pointed out by Frits van Bommel and Marius Wachtler. · 22df7416
      Duncan Sands authored
      llvm-svn: 120025
      22df7416
    • Duncan Sands's avatar
      Exploit distributive laws (eg: And distributes over Or, Mul over Add, etc) in a · adc7771f
      Duncan Sands authored
      fairly systematic way in instcombine.  Some of these cases were already dealt
      with, in which case I removed the existing code.  The case of Add has a bunch of
      funky logic which covers some of this plus a few variants (considers shifts to be
      a form of multiplication), which I didn't touch.  The simplification performed is:
      A*B+A*C -> A*(B+C).  The improvement is to do this in cases that were not already
      handled [such as A*B-A*C -> A*(B-C), which was reported on the mailing list], and
      also to do it more often by not checking for "only one use" if "B+C" simplifies.
      
      llvm-svn: 120024
      adc7771f
  2. Nov 22, 2010
  3. Nov 13, 2010
    • Duncan Sands's avatar
      Generalize the reassociation transform in SimplifyCommutative (now renamed to · 641baf16
      Duncan Sands authored
      SimplifyAssociativeOrCommutative) "(A op C1) op C2" -> "A op (C1 op C2)",
      which previously was only done if C1 and C2 were constants, to occur whenever
      "C1 op C2" simplifies (a la InstructionSimplify).  Since the simplifying operand
      combination can no longer be assumed to be the right-hand terms, consider all of
      the possible permutations.  When compiling "gcc as one big file", transform 2
      (i.e. using right-hand operands) fires about 4000 times but it has to be said
      that most of the time the simplifying operands are both constants.  Transforms
      3, 4 and 5 each fired once.  Transform 6, which is an existing transform that
      I didn't change, never fired.  With this change, the testcase is now optimized
      perfectly with one run of instcombine (previously it required instcombine +
      reassociate + instcombine, and it may just have been luck that this worked).
      
      llvm-svn: 119002
      641baf16
  4. Oct 23, 2010
  5. Oct 08, 2010
  6. Oct 07, 2010
  7. Jul 22, 2010
  8. Jul 09, 2010
  9. Jun 24, 2010
  10. May 27, 2010
  11. Apr 17, 2010
  12. Apr 16, 2010
  13. Apr 15, 2010
  14. Feb 16, 2010
  15. Feb 15, 2010
  16. Jan 08, 2010
  17. Jan 05, 2010
Loading