1. e643a6c Add tail duplication pass to the pipeline, move the verifier pass to the front by Chris Lattner · 21 years ago
  2. 42ed21b Add SRoA pass to gccas by Chris Lattner · 21 years ago
  3. 4dc3535 Move indvars pass after mem2reg pass where it is more likely to be useful by Chris Lattner · 21 years ago
  4. 590607b Add an instcombine pass before levelraise by Chris Lattner · 21 years ago
  5. 9c3b55e Make sure to create a target data that matches the Module's target properties. by Chris Lattner · 22 years ago
  6. c986392 Remove support for "target data" pass ctors by Chris Lattner · 22 years ago
  7. 961f7b4 LevelRaise now gets target data from passmanager by Chris Lattner · 22 years ago
  8. a4dd4e2 The new CFrontend generates LOTs of basic blocks that just fall through and do by Chris Lattner · 22 years ago
  9. e1c8153 Eliminate some compatibility stuff no longer needed :P by Chris Lattner · 22 years ago
  10. 8c7b055 Improve compatibility with system AS further by allowing input from stdin by Chris Lattner · 22 years ago
  11. 2c1d2f2 * Get rid of using declaration by Chris Lattner · 22 years ago
  12. f2956fc Namespacify command line options by Chris Lattner · 22 years ago
  13. 02a74cc Disable correlated expressions pass until it is reliable. by Vikram S. Adve · 22 years ago
  14. 52af630 Reassociate now works by Chris Lattner · 22 years ago
  15. cc377df * Remove the -stopraise option, which is no longer needed now that we have by Chris Lattner · 22 years ago
  16. 4dd7d3e * No longer need to run die after instcombine by Chris Lattner · 22 years ago
  17. c539483 - Reformat comments by Chris Lattner · 22 years ago
  18. 1b7fbef - GCCAS now uses load value #ing for GCSE by Chris Lattner · 22 years ago
  19. 374a095 Do not leak memory for passes when using -stopAfterNPasses or -stopraise by Chris Lattner · 22 years ago
  20. 0e4ca08 Run GlobalDCE before deadtypeelim so that we do not retain types for global by Chris Lattner · 22 years ago
  21. d4c7f27 by Chris Lattner · 22 years ago
  22. c7a0985 *** empty log message *** by Chris Lattner · 22 years ago
  23. d9d8c07 *** empty log message *** by Chris Lattner · 22 years ago
  24. ccbb3bd Raise pass requires an explicit TargetData member now. by Chris Lattner · 22 years ago
  25. 5ff62e9 *** empty log message *** by Chris Lattner · 22 years ago
  26. f8685eb Disabling reassociate pass until it is fixed. by Vikram S. Adve · 22 years ago
  27. b4aef17 Yes, we REALLY DO want to run the reassociate pass. by Chris Lattner · 22 years ago
  28. cf17bcc Changes for 64bit gcc by Anand Shukla · 22 years ago
  29. 624c3e0 Simplify the code that adds passes so compilation can stop after any step by Chris Lattner · 22 years ago
  30. 5424e50 No need to run dce with adce right behind! by Chris Lattner · 22 years ago
  31. ff8207f Add the ADCE pass to gccas finally! by Chris Lattner · 22 years ago
  32. e3a20e7 Simplify CFG after code generation is done by Chris Lattner · 22 years ago
  33. 4ad5322 Run another local value numbering phase after redundancy elimination by Chris Lattner · 22 years ago
  34. 88fcc51 Add LICM pass to compiler by Chris Lattner · 22 years ago
  35. 94fbab0 Run expression reassociation as part of gccas by Chris Lattner · 22 years ago
  36. 65f1b89 Merge all include/llvm/Transforms/Scalar/* into a single Scalar.h by Chris Lattner · 22 years ago
  37. 5f06e10 GCSE is faster than SCCP, and it makes SCCP's job easier, so run it first. by Chris Lattner · 22 years ago
  38. eadd32c Instruction Combination can create a ton of trivially dead instructions. Remove by Chris Lattner · 22 years ago
  39. 9c1291c Run DCE AFTER SCCP and GCSE! by Chris Lattner · 22 years ago
  40. 8ac58a8 Move constant merging pass earlier Include the SCCP pass in gccas by Chris Lattner · 23 years ago
  41. c6f3ae5 Eliminate duplicate or unneccesary #include's by Chris Lattner · 23 years ago
  42. 598d21c Run GCSE as part of gccas. by Chris Lattner · 23 years ago
  43. 76d1229 Make sure that there is no case where a signal can occur leaving a partially by Chris Lattner · 23 years ago
  44. 6a1f694 The cleangcc pass is brokeninto two pieces, execute both of them. by Chris Lattner · 23 years ago
  45. 69cd2b1 Move the PromoteMemoryToRegister pass to be run _after_ the raise pointer by Chris Lattner · 23 years ago
  46. 0732c70 Rename constructor function for mem2reg pass. by Cameron Buschardt · 23 years ago
  47. 081c409 Add a debugging option to gccas to cause it to not do level raise or anything by Chris Lattner · 23 years ago
  48. 417fbe5 Change to use new pass accessor functions by Chris Lattner · 23 years ago
  49. 0f3bfff PassManager is now in it's own header file by Chris Lattner · 23 years ago
  50. e945255 Only run DeadInst elimination early, because it is quick and painless and by Chris Lattner · 23 years ago
  51. 3dc67dd Misc cleanups. Allocate ofstream statically, and use a pass to write out the bytecode by Chris Lattner · 23 years ago
  52. d7db863 Rename LowerAllocations.h to ChangeAllocations.h since it now contains the by Chris Lattner · 23 years ago
  53. 5048c3b Pull RaiseAllocations stuff out of the CleanGCC pass into it's own pass in by Chris Lattner · 23 years ago
  54. 59b6b8e Move stuff out of the Optimizations directories into the appropriate Transforms by Chris Lattner · 23 years ago
  55. f4de63f Implement a more powerful, simpler, pass system. This pass system can figure by Chris Lattner · 23 years ago
  56. 697954c Changes to build successfully with GCC 3.02 by Chris Lattner · 23 years ago
  57. d584dcc Add more passes to run after raising by Chris Lattner · 23 years ago
  58. 0d7a474 Run DCE before cleanupGCCoutput which will cause some dead types (like FILE) to be removed by Chris Lattner · 23 years ago
  59. 9c6f2ac Simplify induction variables before 'raising' the representation by Chris Lattner · 23 years ago
  60. cee8f9a Create a new #include "Support/..." directory structure to move things by Chris Lattner · 23 years ago
  61. 2409ddb -raise includes constprop and dce by Chris Lattner · 23 years ago
  62. a8b3015 Run constprop before -raise by Chris Lattner · 23 years ago
  63. 068f487 Move the Raise xform from opt to transforms by Chris Lattner · 23 years ago
  64. dbe0514 crunch the output of GCC a bit to make it nicer by Chris Lattner · 23 years ago
  65. 11c862c Fix dumb copy and paste typos by Chris Lattner · 23 years ago
  66. ecbde33 Initial checkin of GCCAS by Chris Lattner · 23 years ago