Skip to content
  1. Oct 03, 2007
  2. Sep 28, 2007
  3. Sep 24, 2007
  4. Sep 23, 2007
  5. Aug 14, 2007
  6. Aug 08, 2007
    • Chris Lattner's avatar
      Speed up updateDFSNumbers with two observations: · 415750e1
      Chris Lattner authored
      1. domtree is a tree, not a graph.  There is no need to avoid revisiting nodes with a set.
      2. the worklist can contain the child iterator pointers so we don't get N^2 rescanning of children.
      
      This speeds up updateDFSNumbers significantly, making it basically free.  On the testcase in PR1432,
      this speeds up loopsimplify by another 3x, dropping it from the 12th most expensive pass to the to
      the 30th. :)  It used to be #1.
      
      llvm-svn: 40923
      415750e1
    • Chris Lattner's avatar
      reimplement dfs number computation to be significantly faster. This speeds up · c63d4c2e
      Chris Lattner authored
      natural loop canonicalization (which does many cfg xforms) by 4.3x, for 
      example.  This also fixes a bug in postdom dfnumber computation.
      
      llvm-svn: 40920
      c63d4c2e
  7. Aug 06, 2007
    • Chris Lattner's avatar
      1. Random tidiness cleanups · 67f1c333
      Chris Lattner authored
      2. Make domtree printing print dfin/dfout #'s
      3. Fix the Transforms/LoopSimplify/2004-04-13-LoopSimplifyUpdateDomFrontier.ll failure from last night (in DominanceFrontier::splitBlock).
      
      w.r.t. #3, my patches last night happened to expose the bug, but this 
      has been broken since Owen's r35839 patch to LoopSimplify.  The code
      was subsequently moved over from LoopSimplify into Dominators, carrying
      the latent bug.  Fun stuff.
      
      llvm-svn: 40858
      67f1c333
  8. Aug 05, 2007
  9. Aug 02, 2007
  10. Jul 27, 2007
  11. Jun 27, 2007
  12. Jun 21, 2007
  13. Jun 12, 2007
  14. Jun 08, 2007
  15. Jun 07, 2007
  16. Jun 06, 2007
  17. Jun 04, 2007
  18. Jun 03, 2007
  19. May 23, 2007
  20. May 03, 2007
  21. May 02, 2007
  22. May 01, 2007
Loading