Skip to content
  1. Jul 25, 2009
    • Daniel Dunbar's avatar
      More migration to raw_ostream, the water has dried up around the iostream hole. · 0dd5e1ed
      Daniel Dunbar authored
       - Some clients which used DOUT have moved to DEBUG. We are deprecating the
         "magic" DOUT behavior which avoided calling printing functions when the
         statement was disabled. In addition to being unnecessary magic, it had the
         downside of leaving code in -Asserts builds, and of hiding potentially
         unnecessary computations.
      
      llvm-svn: 77019
      0dd5e1ed
  2. Apr 21, 2009
  3. Jan 28, 2009
  4. Oct 23, 2008
    • Daniel Dunbar's avatar
      Change create*Pass factory functions to return Pass* instead of · 7f39e2d8
      Daniel Dunbar authored
      LoopPass*.
       - Although less precise, this means they can be used in clients
         without RTTI (who would otherwise need to include LoopPass.h, which
         eventually includes things using dynamic_cast). This was the
         simplest solution that presented itself, but I am happy to use a
         better one if available.
      
      llvm-svn: 58010
      7f39e2d8
  5. Sep 04, 2008
  6. Jul 29, 2008
  7. Jul 03, 2008
  8. Jun 22, 2008
  9. May 16, 2008
  10. May 15, 2008
  11. May 14, 2008
  12. May 13, 2008
  13. May 06, 2008
  14. Apr 25, 2008
  15. Apr 14, 2008
  16. Apr 13, 2008
  17. Mar 20, 2008
  18. Mar 18, 2008
  19. Mar 09, 2008
  20. Feb 20, 2008
  21. Jan 27, 2008
  22. Jan 04, 2008
  23. Dec 29, 2007
  24. Nov 27, 2007
  25. Nov 05, 2007
  26. Aug 02, 2007
  27. May 14, 2007
  28. 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
  29. May 08, 2007
  30. May 05, 2007
  31. May 03, 2007
  32. May 02, 2007
  33. May 01, 2007
  34. Apr 17, 2007
  35. Mar 07, 2007
  36. Mar 03, 2007
  37. Feb 06, 2007
  38. Feb 03, 2007
Loading