Skip to content
  1. May 11, 2007
    • Dan Gohman's avatar
      This patch extends the LoopUnroll pass to be able to unroll loops · 2980d9da
      Dan Gohman authored
      with unknown trip counts. This is left off by default, and a
      command-line option enables it. It also begins to separate loop
      unrolling into a utility routine; eventually it might be made usable
      from other passes.
      
      It currently works by inserting conditional branches between each
      unrolled iteration, unless it proves that the trip count is a
      multiple of a constant integer > 1, which it currently only does in
      the rare case that the trip count expression is a Mul operator with
      a ConstantInt operand. Eventually this information might be provided
      by other sources, for example by a pass that peels/splits the loop
      for this purpose.
      
      llvm-svn: 36990
      2980d9da
    • Chris Lattner's avatar
      fix regressions from my previous checking, including · 600db3eb
      Chris Lattner authored
      Transforms/InstCombine/2006-12-08-ICmp-Combining.ll
      
      llvm-svn: 36989
      600db3eb
    • Chris Lattner's avatar
      fix Transforms/InstCombine/2007-05-10-icmp-or.ll · fe2b44de
      Chris Lattner authored
      llvm-svn: 36984
      fe2b44de
  2. May 09, 2007
  3. May 08, 2007
  4. May 07, 2007
  5. May 06, 2007
  6. May 05, 2007
  7. May 04, 2007
  8. May 03, 2007
  9. May 02, 2007
  10. May 01, 2007
  11. Apr 29, 2007
  12. Apr 28, 2007
  13. Apr 27, 2007
  14. Apr 26, 2007
  15. Apr 25, 2007
  16. Apr 24, 2007
  17. Apr 21, 2007
Loading