Skip to content
  1. May 22, 2003
    • Chris Lattner's avatar
      Minor cleanups. · 471bd762
      Chris Lattner authored
      This hunk:
      -    } else if (Src->getNumOperands() == 2 && Src->use_size() == 1) {
      +    } else if (Src->getNumOperands() == 2) {
      
      Allows GEP folding to be more aggressive, which reduces the number of instructions
      and can dramatically speed up BasicAA in some cases.
      
      llvm-svn: 6286
      471bd762
  2. May 20, 2003
  3. May 15, 2003
  4. May 13, 2003
  5. May 08, 2003
  6. May 02, 2003
  7. May 01, 2003
  8. Apr 26, 2003
  9. Apr 25, 2003
  10. Apr 23, 2003
  11. Apr 17, 2003
  12. Mar 31, 2003
    • Chris Lattner's avatar
      Initial checkin of PRE on LLVM. This implementation is still lacking in · 90231556
      Chris Lattner authored
      several ways:
      
       * Load expressions are not PRE'd well.  Alias Analysis should be used to
         get accurate information when computing anticipatibility.
       * The expression collection implementation does not handle PHI nodes properly,
         thus the implementation misses many opportunities to PRE.
       * This code could be sped up quite a bit
      
      Despite these flaws, the code seems to work well, and handles PR's as one
      would expect.
      
      llvm-svn: 5759
      90231556
  13. Mar 21, 2003
  14. Mar 11, 2003
  15. Mar 10, 2003
  16. Mar 05, 2003
  17. Mar 04, 2003
  18. Mar 03, 2003
  19. Feb 28, 2003
  20. Feb 27, 2003
  21. Feb 26, 2003
  22. Feb 24, 2003
Loading