1. 56620da Give verbose error messages if bytecode file cannot be parsed by Chris Lattner · 21 years ago
  2. 5399741 Add code to verify correctly linkages by Chris Lattner · 21 years ago
  3. 076e2ae Revert modulo scheduling change that should be part of the modulo-sched pass itself, by Chris Lattner · 21 years ago
  4. 4ad02e7 Add new linkage types to support a real frontend by Chris Lattner · 21 years ago
  5. 2c72b18 Add missing keyword, add new linkage keywords by Chris Lattner · 21 years ago
  6. 828b278 Add new linkage keywords. Spell uninitialized correctly by Chris Lattner · 21 years ago
  7. a36e48d Add PRE directory by Chris Lattner · 21 years ago
  8. ffd9bf4 Improve the efficiency and cleanup writing a bit by Chris Lattner · 21 years ago
  9. 1f862af Don't allow declaring an external internal variable by Chris Lattner · 21 years ago
  10. 8c7b055 Improve compatibility with system AS further by allowing input from stdin by Chris Lattner · 21 years ago
  11. 2c1d2f2 * Get rid of using declaration by Chris Lattner · 21 years ago
  12. f2956fc Namespacify command line options by Chris Lattner · 21 years ago
  13. af76d0e Fix bug: Assember2003-04-15-ConstantInitAssertion.llx by Chris Lattner · 21 years ago
  14. 9fa01f2 New testcase that triggered assertion failure. by Chris Lattner · 21 years ago
  15. af7ccd9 Make help message more clear by Chris Lattner · 21 years ago
  16. 5cd8ae9 Simple arithmetic loop-based test case for modulo scheduling. by Misha Brukman · 21 years ago
  17. cf54d17 Adding a simple test case in the hope that commit-diffs.pl will pick this up. by Misha Brukman · 21 years ago
  18. c28e3c3 Not only is this the first test case for ModuloScheduing, it's also the first by Misha Brukman · 21 years ago
  19. d4bd3eb * Fix bug: Mem2Reg/2003-04-10-DFNotFound.ll by Chris Lattner · 21 years ago
  20. 228fd15 New testcase by Chris Lattner · 21 years ago
  21. 2c821cc Fixed compilation errors, command-line argument declarations, cleaned up code to by Misha Brukman · 21 years ago
  22. 8baa01c Made the code readable: by Misha Brukman · 21 years ago
  23. 4bd8b24 Must use std::pair instead of just 'pair'. by Misha Brukman · 21 years ago
  24. 681220d added a function and a member to the TargetSchedInfo class by Guochun Shi · 21 years ago
  25. 105cb77 added some memory for clone function by Guochun Shi · 21 years ago
  26. 6fbe5fb change the include file names and some class names to make it compile by Guochun Shi · 21 years ago
  27. f9a88b6 Implement scanf and fix sscanf to actually endian swap the results correctly by Chris Lattner · 21 years ago
  28. 88a9a3e Update to work with newer versions of bison by Chris Lattner · 21 years ago
  29. 7341178 Initial checkin of PRE test by Chris Lattner · 21 years ago
  30. 7cd2fff Initial checkin of PRE tests by Chris Lattner · 21 years ago
  31. e941291 Initial checkin of PRE on LLVM. This implementation is still lacking in by Chris Lattner · 21 years ago
  32. 0e08e1b Minor tweak by Chris Lattner · 21 years ago
  33. 6c0e049 * We now preserve the no-critical-edge pass (because we cannot insert critical edges) by Chris Lattner · 21 years ago
  34. d76370b Add getAnalysisUsage method by Chris Lattner · 21 years ago
  35. f1c154f *** empty log message *** by Guochun Shi · 21 years ago
  36. c277eaa Move BreakCriticalEdges pass to lib/Transforms/Utils by Chris Lattner · 22 years ago
  37. f1ab454 Add helper method by Chris Lattner · 22 years ago
  38. 6f2ec7f Update comment by Chris Lattner · 22 years ago
  39. e33b796 Add more graph traits specializations for dominator tree nodes by Chris Lattner · 22 years ago
  40. 3413d15 * Change the order that globals and constants are processed in by Chris Lattner · 22 years ago
  41. 186a1f7 Changes to the V2 bytecode format: by Chris Lattner · 22 years ago
  42. 52e20b0 * Bug fixes: by Chris Lattner · 22 years ago
  43. 1b079f9 Add new chunk type by Chris Lattner · 22 years ago
  44. 056e84c Fix testcase by Chris Lattner · 22 years ago
  45. 8fb1fe1 Fix problems with BitSetVector that makes it not compile under GCC 3.0 and 2.95 by Chris Lattner · 22 years ago
  46. 760da06 Fix several bugs in the build system, including the use of the Debug version of Burg no matter what configuration is currently configured. by Chris Lattner · 22 years ago
  47. c8802d2 Add the following instcombine xforms: by Chris Lattner · 22 years ago
  48. be0fe12 Test limited reassociation by Chris Lattner · 22 years ago
  49. 8408add Add optimizations: by Chris Lattner · 22 years ago
  50. a4f445b Implement: -A*-B == A*B by Chris Lattner · 22 years ago
  51. 533741a Add testcases for negated multiplies by Chris Lattner · 22 years ago
  52. a27231a Add new transformation: // (~A | ~B) == (~(A & B)) by Chris Lattner · 22 years ago
  53. 0cec701 Add test for demorgans law with constants Add test for other form of demorgans by Chris Lattner · 22 years ago
  54. 8d96964 Generalize not and neg comparison testers to allow constant to be considered not'able and neg'able. This by Chris Lattner · 22 years ago
  55. 1b77300 * Add testcases for associative operators by Chris Lattner · 22 years ago
  56. 1680312 Fix ConstantUInt::isAllOnesValue by Chris Lattner · 22 years ago
  57. 4f98c56 Generalize (A+c1)+c2 optimization to work with all associative operators by Chris Lattner · 22 years ago
  58. 2bd3780 Modernize testcase by Chris Lattner · 22 years ago
  59. 28ba1aa Minor change, no functionality diff by Chris Lattner · 22 years ago
  60. c232870 Add a bunch of new tests by Chris Lattner · 22 years ago
  61. ea34005 Fix bug: (x << 100) wasn't folded to 0, but (x >> 100) was (when x is unsigned) by Chris Lattner · 22 years ago
  62. cb40a37 Implement: (A|B)^B == A & (~B) by Chris Lattner · 22 years ago
  63. 63a9548 Add test for: (A|B)^B == A & (~B) by Chris Lattner · 22 years ago
  64. a66e2fa Modernize testcase by Chris Lattner · 22 years ago
  65. 3d87b42 The word 'independent' has no 'a'. by Misha Brukman · 22 years ago
  66. 10f22cb Make sure that intermediate code is verifier clean to avoid wierd problems. by Chris Lattner · 22 years ago
  67. 3a43837 Fix bug: SimplifyCFG/2003-03-07-DominateProblem.ll by Chris Lattner · 22 years ago
  68. 5db057f New testcase by Chris Lattner · 22 years ago
  69. 38d8773 Clean up cruft by Chris Lattner · 22 years ago
  70. a5ae71a Extend struct and array constants to support isNullValue by Chris Lattner · 22 years ago
  71. 27accf7 Remove #include Extend getNullValue to work with struct and array types by Chris Lattner · 22 years ago
  72. 42289a3 Update testcases to use long to index gep by Chris Lattner · 22 years ago
  73. 036b8aa Infrastructure for more compact bytecode files and REAL support for versioning by Chris Lattner · 22 years ago
  74. 6e5a0e4 s/Method/Function in variable and method names by Chris Lattner · 22 years ago
  75. 2a7b6ba Continue simplifying error handling, s/method/function by Chris Lattner · 22 years ago
  76. b6c4695 Cleanup error handling constructs by Chris Lattner · 22 years ago
  77. 09abe6a Pull common code out by Chris Lattner · 22 years ago
  78. fade83f Generalize interface a bit by Chris Lattner · 22 years ago
  79. 3e76157 Remove unneccesary forward decl by Chris Lattner · 22 years ago
  80. 566f0ee Add new getIncomingValueForBlock method Relax a bit about constness by Chris Lattner · 22 years ago
  81. 0d75d8d7 Use the std namespace explicitly by Chris Lattner · 22 years ago
  82. 556b50c Add a link to source of inspiration by Chris Lattner · 22 years ago
  83. 2fc36e4 New testcase for pow builtin recognition by Chris Lattner · 22 years ago
  84. 8e019aa Add another testcase that may eventually be handled... by Chris Lattner · 22 years ago
  85. decd081 Implement %test7 in InstCombine/getelementptr.ll by Chris Lattner · 22 years ago
  86. 4872eaf Add testcase for new instcombine xform by Chris Lattner · 22 years ago
  87. 46a5f1f Implement CFGSimplify/PhiBlockMerge*.ll by Chris Lattner · 22 years ago
  88. a104019 Add new testcase by Chris Lattner · 22 years ago
  89. 05ddff9 Simplify some of the PHI node interfaces by Chris Lattner · 22 years ago
  90. e2ca540 Implement testcase CFGSimplify/EqualPHIEdgeBlockMerge.ll by Chris Lattner · 22 years ago
  91. ceb536e New testcase for feature simplifycfg should handle by Chris Lattner · 22 years ago
  92. a8bda21 Add testcase for new feature for simplifycfg pass by Chris Lattner · 22 years ago
  93. 9f64875 Initial checkin of AliasAnalysis doc by Chris Lattner · 22 years ago
  94. 506b4e4 Fix bug: BasicAA/2003-03-04-GEPCrash.ll by Chris Lattner · 22 years ago
  95. 3fc7b6b New testcase by Chris Lattner · 22 years ago
  96. 0252e49 Convert LICM over to use AliasSetTracker. Besides being nicer, this automatically by Chris Lattner · 22 years ago
  97. adf9970 Fix bug: Assembler/2003-03-03-DuplicateConstant.ll by Chris Lattner · 22 years ago
  98. 319d05b ADd two new 'add' methods by Chris Lattner · 22 years ago
  99. b75f9dd Add a few new 'add' methods. Move the iterator around by Chris Lattner · 22 years ago
  100. 1e6233a Make the testcase more interesting, test that two different array elements don't alias by Chris Lattner · 22 years ago