1. b3011a0 Constify most methods. We could have constified doInitialization and by Brian Gaeke · 21 years ago
  2. c3c1d32 Disable sample project until it works by Chris Lattner · 21 years ago
  3. 84f644a Add new tests, make existing tests more difficult by Chris Lattner · 21 years ago
  4. 1078d11 Fix bug: FunctionResolve/2003-07-23-CPR-Reference.ll by Chris Lattner · 21 years ago
  5. a99d4f2 New testcase by Chris Lattner · 21 years ago
  6. 2cd9196 Add comments by Chris Lattner · 21 years ago
  7. eca0c5c Remove explicit check for: not (not X) = X, it is already handled because xor is commutative by Chris Lattner · 21 years ago
  8. ae623cb New testcases by Chris Lattner · 21 years ago
  9. c2a2e73 Renumber tests sequentially by Chris Lattner · 21 years ago
  10. f852798 Split the or and xor tests into two separate files by Chris Lattner · 21 years ago
  11. 2fc5e59 Remove obscure test by Chris Lattner · 21 years ago
  12. 2c77cb9 Check in old testcase sitting in my tree by Chris Lattner · 21 years ago
  13. d4e8d31 Fix program: SingleSource/UnitTests/2003-07-09-SignedArgs with the CBE by Chris Lattner · 21 years ago
  14. de420ae Printer.cpp: Ditch addRequired/getAnalysis, because they leave by Brian Gaeke · 21 years ago
  15. b6ede8a Make Module::getNamedFunction prefer non-external functions if there is more than by Chris Lattner · 21 years ago
  16. a84983e Fix space by Chris Lattner · 21 years ago
  17. 06782f8 InstCombine: (X ^ C1) & C2 --> (X & C2) iff (C1&C2) == 0 by Chris Lattner · 21 years ago
  18. 4daaebf New testcase by Chris Lattner · 21 years ago
  19. 5840326 - InstCombine: (X | C1) & C2 --> X & C2 iff C1 & C1 == 0 by Chris Lattner · 21 years ago
  20. b5cfb6c New testcase by Chris Lattner · 21 years ago
  21. 0afcd44 New testcase by Chris Lattner · 21 years ago
  22. 92bdfe6 Add, rewrite, and/or reformat many comments. by Brian Gaeke · 21 years ago
  23. ad44ebf IC: (X & C1) | C2 --> (X | C2) & (C1|C2) by Chris Lattner · 21 years ago
  24. 31a7f85 New testcases by Chris Lattner · 21 years ago
  25. c6a8aff IC: (X ^ C1) & C2 --> (X & C2) ^ (C1&C2) Minor code cleanup by Chris Lattner · 21 years ago
  26. 2b8e478 New testcase by Chris Lattner · 21 years ago
  27. 00b1a7e InstCombine: (X ^ 4) == 8 --> X == 12 by Chris Lattner · 21 years ago
  28. 347319a New testcase by Chris Lattner · 21 years ago
  29. 30780cc Add support for ~ operator on constants by Chris Lattner · 21 years ago
  30. bc5d414 IC: (X & 5) == 13 --> false IC: (X | 8) == 4 --> false by Chris Lattner · 21 years ago
  31. f7b447e New tests by Chris Lattner · 21 years ago
  32. 8d4221e Renamed libtool to mklib for your tab completion pleasure. by John Criswell · 21 years ago
  33. 832688a Remove redundant const qualifier by Chris Lattner · 21 years ago
  34. 949a362 Remove redundant const qualifiers from cast<> expressions by Chris Lattner · 21 years ago
  35. c07736a Simplify code by using ConstantInt::getRawValue instead of checking to see by Chris Lattner · 21 years ago
  36. c8bf87a Remove unnecessary casts by Chris Lattner · 21 years ago
  37. bfcdf14 Fit code into 80 columns by Chris Lattner · 21 years ago
  38. 28a128e Eliminate old-style cast by Chris Lattner · 21 years ago
  39. 9daa8a1 Random cleanups by Chris Lattner · 21 years ago
  40. 1815383 Remove using decl by Chris Lattner · 21 years ago
  41. 987cb2c Remove explicit const qualifiers by Chris Lattner · 21 years ago
  42. af28ac2 Add more doxygen comments, add new ConstantInt::getRawValue method by Chris Lattner · 21 years ago
  43. 00f185f Fix bug: TailDup/2003-07-22-InfiniteLoop.ll by Chris Lattner · 21 years ago
  44. e1a875e New testcase that caused infinite loop in taildup by Chris Lattner · 21 years ago
  45. 1ba5bcd - InstCombine (cast (xor A, B) to bool) ==> (setne A, B) by Chris Lattner · 21 years ago
  46. a73fede New testcases by Chris Lattner · 21 years ago
  47. b13092b Repaired the --enable and --disable options. by John Criswell · 21 years ago
  48. 79a8f09 Fixed the enable/disable options. The AC_ARG_ENABLE macro does not perform by John Criswell · 21 years ago
  49. 6a33f36 Add documentation for runOnMachineFunction() by Brian Gaeke · 21 years ago
  50. f02dbf0 Made some corrections to the enable-llc_diffs option. by John Criswell · 21 years ago
  51. 392aaa3 Generated a new configure script. by John Criswell · 21 years ago
  52. 0057e32 Updated to use files within the autoconf subdirectory. by John Criswell · 21 years ago
  53. 4ea390d These are the autoconf files in their new home. by John Criswell · 21 years ago
  54. 4407637 Moving these files to the llvm/autoconf directory. by John Criswell · 21 years ago
  55. 2a97f61 Moved configure.ac to the autoconf directory. by John Criswell · 21 years ago
  56. 033b093 turn off DISABLE_LLC_DIFFS for x86. by Brian Gaeke · 21 years ago
  57. 35611c3 Add new testcase by Chris Lattner · 21 years ago
  58. df3ac86 (1) Pass 'VAR=string' arguments to gmake by Vikram S. Adve · 21 years ago
  59. 40c600e Fix comment. by Vikram S. Adve · 21 years ago
  60. 908c1f6 Updated from the discussion on July 21, 2003. Expanded upon testing priorities. by John Criswell · 21 years ago
  61. 265789f Fixed misspelling. by Misha Brukman · 21 years ago
  62. 4323449 Simplify code a bit by Chris Lattner · 21 years ago
  63. 0679473 Added code that checks to see if a global variable is external before replacing by John Criswell · 21 years ago
  64. cf2a738 Regression test for the Instruction Combining optimizization. by John Criswell · 21 years ago
  65. 432312d Remove unneccesary #ifdefs by Chris Lattner · 21 years ago
  66. 51577e5 Fix warnings by Chris Lattner · 21 years ago
  67. b18ed08 Remove instloops library by Chris Lattner · 21 years ago
  68. 8f9f9a2 Eliminated dead code. by Misha Brukman · 21 years ago
  69. 6da69e7 Added special consideration for instrumentation strategy by Anand Shukla · 21 years ago
  70. fcf2be7 Initialize the target architecture based on compiler defines, so if compiled on by Misha Brukman · 21 years ago
  71. a235e14 Added check for inlinable function by Anand Shukla · 21 years ago
  72. d461505 Please, save your applause^H^H^H^H^H^H^H^Hflames for the end... by Brian Gaeke · 21 years ago
  73. 06dabfa Cleaned up the code which chooses the appropriate value for the file descriptor by Misha Brukman · 21 years ago
  74. c86516f Added a DEBUG() guard to a debug information printout. by Misha Brukman · 21 years ago
  75. e79b4f1 Added pass to instrument backedges for lightweight tracing by Anand Shukla · 21 years ago
  76. 0df7ddb A pass to combine multiple backedges that go to same target by Anand Shukla · 21 years ago
  77. bfedb91 Use getClassB for load and store; we don't want to abort when we by Brian Gaeke · 21 years ago
  78. 1d2ba44 Fix typo in call to isUnresolvableFunc, which was breaking the build. by Brian Gaeke · 21 years ago
  79. a676b78 Dinakar and I fixed a bug where we were trying to get the initializer of by John Criswell · 21 years ago
  80. cab8b6f Added bits about MachineFunctionPass by Brian Gaeke · 21 years ago
  81. 71b35cd Tests for globals with different kinds of behavior in DS Analysis. by Vikram S. Adve · 21 years ago
  82. a53e3da (1) Added DSGraph::cloneReachableSubgraph and DSGraph::cloneReachableNodes by Vikram S. Adve · 21 years ago
  83. 1da1d32 Rematerialize nodes from the globals graph into the current graph by Vikram S. Adve · 21 years ago
  84. 03e19dd (1) Rematerialize nodes from the globals graph into the current graph by Vikram S. Adve · 21 years ago
  85. 78bbec7 Implement 2 important changes: (1) rematerialization from the globals graph, by Vikram S. Adve · 21 years ago
  86. 2e1de5e Factor out the test for unresolvable external functions into by Vikram S. Adve · 21 years ago
  87. dfbfc57 Fixed the number translation scheme for the integer condition code registers: it by Misha Brukman · 21 years ago
  88. cf7ec87 The name should really be `simm11' to follow the naming convention, but this has by Misha Brukman · 21 years ago
  89. 9691439 Marked some of the phony targets are PHONY. This will hopefully speed by John Criswell · 21 years ago
  90. 2c4fe58 No need for a second immediate field if the class already inherits one. by Misha Brukman · 21 years ago
  91. a34b619 Encode predict = 1 by default, because the Sparc assembler does this. by Misha Brukman · 21 years ago
  92. f6e5217 Fixed a bug: outputting name of variable instead of its value. by Misha Brukman · 21 years ago
  93. 7eac476 This optimization greatly enhances efficiency of creating new instructions by by Misha Brukman · 21 years ago
  94. 07d4516 Correctly handle calls to functions which are further away than 2**32 bits will by Misha Brukman · 21 years ago
  95. 859e09f Clean up my last checkin: code is easier to read and explains the differences in by Misha Brukman · 21 years ago
  96. 291c2c5 On Sparc/Solaris, the special handle RTLD_SELF is used as a handle referring to by Misha Brukman · 21 years ago
  97. 173e250 * Added support for the %ccr register by Misha Brukman · 21 years ago
  98. 1ba3138 The word `separate' only has one `e'. by Misha Brukman · 21 years ago
  99. bc0e998 The word `separate' only has one `e'. by Misha Brukman · 21 years ago
  100. e3443a6 Fixed: </pre</p> => </pre></p> by Misha Brukman · 21 years ago