Skip to content
  1. Jul 25, 2011
  2. Jul 22, 2011
  3. Jul 19, 2011
  4. Jul 18, 2011
  5. Jul 13, 2011
  6. Jul 11, 2011
  7. May 27, 2011
  8. May 24, 2011
  9. May 19, 2011
  10. May 18, 2011
  11. Apr 27, 2011
    • Duncan Sands's avatar
      Stop trying to have instcombine preserve LCSSA form: this was not · 085ad3b8
      Duncan Sands authored
      effective in avoiding recomputation of LCSSA form; the widespread
      use of instsimplify (which looks through phi nodes) means it was
      not preserving LCSSA form anyway; and instcombine is no longer
      scheduled in the middle of the loop passes so this doesn't matter
      anymore.
      
      llvm-svn: 130301
      085ad3b8
  12. Apr 05, 2011
  13. Mar 30, 2011
  14. Mar 28, 2011
  15. Mar 17, 2011
  16. Feb 15, 2011
  17. Feb 02, 2011
  18. Jan 21, 2011
  19. Jan 16, 2011
  20. Dec 22, 2010
  21. Dec 20, 2010
  22. Dec 19, 2010
  23. Nov 29, 2010
  24. Nov 23, 2010
  25. Nov 22, 2010
  26. 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
  27. Oct 23, 2010
Loading