Skip to content
  1. Jun 05, 2003
  2. Jun 04, 2003
  3. Jun 01, 2003
  4. May 30, 2003
  5. May 29, 2003
  6. May 27, 2003
  7. May 23, 2003
  8. 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
  9. May 20, 2003
  10. May 15, 2003
  11. May 13, 2003
  12. May 08, 2003
  13. May 02, 2003
  14. May 01, 2003
  15. Apr 26, 2003
  16. Apr 25, 2003
  17. Apr 23, 2003
  18. Apr 17, 2003
  19. 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
  20. Mar 21, 2003
  21. Mar 11, 2003
  22. Mar 10, 2003
Loading