Skip to content
  1. Jul 03, 2008
  2. Jun 22, 2008
  3. May 16, 2008
  4. May 15, 2008
  5. May 14, 2008
  6. May 13, 2008
  7. May 06, 2008
  8. Apr 25, 2008
  9. Apr 14, 2008
  10. Apr 13, 2008
  11. Mar 20, 2008
  12. Mar 18, 2008
  13. Mar 09, 2008
  14. Feb 20, 2008
  15. Jan 27, 2008
  16. Jan 04, 2008
  17. Dec 29, 2007
  18. Nov 27, 2007
  19. Nov 05, 2007
  20. Aug 02, 2007
  21. May 14, 2007
  22. 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
  23. May 08, 2007
  24. May 05, 2007
  25. May 03, 2007
  26. May 02, 2007
  27. May 01, 2007
  28. Apr 17, 2007
  29. Mar 07, 2007
  30. Mar 03, 2007
  31. Feb 06, 2007
  32. Feb 03, 2007
  33. Jan 31, 2007
  34. Dec 19, 2006
  35. Dec 06, 2006
  36. Nov 26, 2006
  37. Nov 02, 2006
    • Reid Spencer's avatar
      For PR786: · de46e484
      Reid Spencer authored
      Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting
      fall out by removing unused variables. Remaining warnings have to do with
      unused functions (I didn't want to delete code without review) and unused
      variables in generated code. Maintainers should clean up the remaining
      issues when they see them. All changes pass DejaGnu tests and Olden.
      
      llvm-svn: 31380
      de46e484
  38. Oct 20, 2006
    • Reid Spencer's avatar
      For PR950: · e0fc4dfc
      Reid Spencer authored
      This patch implements the first increment for the Signless Types feature.
      All changes pertain to removing the ConstantSInt and ConstantUInt classes
      in favor of just using ConstantInt.
      
      llvm-svn: 31063
      e0fc4dfc
Loading