1. 0513e9f Remove support for NOT instruction by Chris Lattner · 22 years ago
  2. 48a4531 Remove extra #includes by Chris Lattner · 22 years ago
  3. f4e3c00 Remove constant propogation support for NOT instruction by Chris Lattner · 22 years ago
  4. 20e8e01 Remove support for NOT instruction by Chris Lattner · 22 years ago
  5. e489aa5 Remove information about dead 'not' instruction by Chris Lattner · 22 years ago
  6. b804760 Remove support for unary operators by Chris Lattner · 22 years ago
  7. a9261ff Implement two constructor functions for "unary" instructions by Chris Lattner · 22 years ago
  8. 589fda5 Remove support forNOT instruction by Chris Lattner · 22 years ago
  9. af2930e - Fix InstCombine pass to not generate or process NOT instructions by Chris Lattner · 22 years ago
  10. 75309f8 Expose two new static methods from BinaryOperator: createNeg, createNot by Chris Lattner · 22 years ago
  11. e4c3764 Remove support for NOT instruction by Chris Lattner · 22 years ago
  12. 500888b Remove illegal test now that not instruction does not exist. by Chris Lattner · 22 years ago
  13. 3a6c063 Make sure there is SOME output always so the test is not rerun when unneccesary. by Chris Lattner · 22 years ago
  14. 23fbe30 The not instruction is just a specialized form of XOR by Chris Lattner · 22 years ago
  15. 699f1eb AsmParser turns 'not' instructions into 'xor' instructions now. by Chris Lattner · 22 years ago
  16. 227b86c Return null on failure, instead of aborting. by Chris Lattner · 22 years ago
  17. a771051 Add method MachineInstr::substituteValue() which substitutes by Vikram S. Adve · 22 years ago
  18. e2a78e3 Add method MachineInstr::substituteValue() which substitutes by Vikram S. Adve · 22 years ago
  19. cefbd32 Updated GettingStarted guide to be accurate now that binaries are in /shared by Chris Lattner · 22 years ago
  20. f8856bc Add a note that specifies that the whether or not sign extension is done by by Chris Lattner · 22 years ago
  21. 65629d5 Minor change to make lli print out characters numerically as well as symbolically by Chris Lattner · 22 years ago
  22. ca710e9 Bug fix in TargetData::getIndexedOffset: We were using the pointer by Vikram S. Adve · 22 years ago
  23. 6c0c301 Several bug fixes in casting to signed int values. by Vikram S. Adve · 22 years ago
  24. 572f4a0 - Rename ConstantGenericIntegral -> ConstantIntegral by Chris Lattner · 22 years ago
  25. 9fb9641 by Chris Lattner · 22 years ago
  26. c75071c - Rename ConstantGenericIntegral -> ConstantIntegral by Chris Lattner · 22 years ago
  27. 65a2dee Handle small unsigned results correctly by clearing high bits. by Vikram S. Adve · 22 years ago
  28. 7b0925f Build correctly in the face of /shared. by Brian Ensink · 22 years ago
  29. 9568568 - Clean up interface to Sparc register handling a bit: by Chris Lattner · 22 years ago
  30. 6ef3369 Return const char * const instead of std::string from get register name method by Chris Lattner · 22 years ago
  31. 994b9f3 - Added a new superclass of ConstantBool/ConstantInt: ConstantGenericIntegral by Chris Lattner · 22 years ago
  32. c0c4d70 Tools are now moved into /shared by Chris Lattner · 22 years ago
  33. 285af38 - Makefile changes: by Chris Lattner · 22 years ago
  34. 233f7dc * Factor a bunch of code by using ReplaceInstUsesWith by Chris Lattner · 22 years ago
  35. bb6342b Remove some extraneous #includes by Chris Lattner · 22 years ago
  36. 4228b5a Changes to make GlobalValueRefMap not derive from std::map. by Chris Lattner · 22 years ago
  37. ad1023b Add comment by Chris Lattner · 22 years ago
  38. 8b17094 New functionality for instcombine: by Chris Lattner · 22 years ago
  39. 42dbd30 xor x, ALLONES should -> not x by Chris Lattner · 22 years ago
  40. 22fae29 setcc of booleans should always be eliminated by Chris Lattner · 22 years ago
  41. f8e2cf9 Add more strength reduction testcases by Chris Lattner · 22 years ago
  42. 3896948 *** empty log message *** by Chris Lattner · 22 years ago
  43. 89f2aa5 * IntervalPartition no longer derives from vector by Chris Lattner · 22 years ago
  44. cc367a3 Do not add an extra vtable to EVERY machineinstr created. by Chris Lattner · 22 years ago
  45. dc1e020 UnaryOperator::create should take a name just like BinaryOperator::create by Chris Lattner · 22 years ago
  46. 035dfbe by Chris Lattner · 22 years ago
  47. 179cdfb * Removed extraneous #includes by Chris Lattner · 22 years ago
  48. b91b31c We are using std::vector, so remove extraneous namespace prefixes by Chris Lattner · 22 years ago
  49. 919c4f8 Change machinecode for instruction to not inherit from vector. by Chris Lattner · 22 years ago
  50. 5b2f502 The second parameter of hash_set is the default, remove it. by Chris Lattner · 22 years ago
  51. 43db05a Oops, I accidentally broke the .d files. Fixed thusly by Chris Lattner · 22 years ago
  52. b0cfa6d Very minor cleanups by Chris Lattner · 22 years ago
  53. 44ac659 * Document the BUILD_ROOT changes and option by Chris Lattner · 22 years ago
  54. e16b1b4 * Remove some bogus dependencies on Depend/.dir by Chris Lattner · 22 years ago
  55. 38c633d Oh yeah, I wrote it. by Chris Lattner · 22 years ago
  56. c6bb824 Initial checkin of the "Writting an LLVM Pass" document by Chris Lattner · 22 years ago
  57. 180e568 Initial checkin of the "Hello World" Pass. by Chris Lattner · 22 years ago
  58. 5f0eb8d by Chris Lattner · 22 years ago
  59. dd5b495 - Cleaned up the interface to AnalysisUsage to take analysis class names by Chris Lattner · 22 years ago
  60. 5791bb7 - Cleaned up the interface to AnalysisUsage to take analysis class names by Chris Lattner · 22 years ago
  61. c6b227e Remove extraneous #includes by Chris Lattner · 22 years ago
  62. 221c979 Minor changes to DEBUG()'s by Chris Lattner · 22 years ago
  63. 13c476c Reorder #includes to be right by Chris Lattner · 22 years ago
  64. 637ed86 Merge three loops into one. by Chris Lattner · 22 years ago
  65. 075f028 Fix breakage in the build by Chris Lattner · 22 years ago
  66. a4ff0d4 Only include the sparc.o file once! by Chris Lattner · 22 years ago
  67. 9b14eb5 Simplify writing custom parsers. by Chris Lattner · 22 years ago
  68. d23a35b Simplify interface to parsers. by Chris Lattner · 22 years ago
  69. c1ae40c * Write the "Custom parser" section by Chris Lattner · 22 years ago
  70. e76d4ab Write the reference section, make other minor editing changes elsewhere. by Chris Lattner · 22 years ago
  71. 5acd166 added Mapping and Function Pass by Mehwish Nagda · 22 years ago
  72. b8a45c9 Add function GetConstantValueAsUnsignedInt. by Vikram S. Adve · 22 years ago
  73. a40cbb3 Bug fix in CreateCodeToLoadConst(): use sign of dest, not operand, by Vikram S. Adve · 22 years ago
  74. 7894d56 Add a sequence of GEPs with constant indices, for folding. by Vikram S. Adve · 22 years ago
  75. ed0030e Bug fix in TargetData::getIndexedOffset(): handle struct offset by Vikram S. Adve · 22 years ago
  76. 99d4a38 Bug fix in SetOperandsForMemInstr: handle leading zeros correctly by Vikram S. Adve · 22 years ago
  77. 1b51b1b Add function GetConstantValueAsUnsignedInt. by Vikram S. Adve · 22 years ago
  78. 75ac4e5 Fix compilation problem. IsIndexZero doesn't exist, use IsZero instead. by Chris Lattner · 22 years ago
  79. 7d20fe3 Testcase for stuff instcombine should do eventually by Chris Lattner · 22 years ago
  80. d3e7929 Add some more features that we could instcombine away by Chris Lattner · 22 years ago
  81. e853548 *** empty log message *** by Chris Lattner · 22 years ago
  82. 9dd794e Comment options that may be enabled by Chris Lattner · 22 years ago
  83. ed3fefb Simplified handling of array indexes in SetMemOperands_Internal. by Vikram S. Adve · 22 years ago
  84. 607bfad Add MemAccessInst::getNumIndices(). by Vikram S. Adve · 22 years ago
  85. 900fd63 Eliminate cast instructions: use only GEPs in decomposed sequence. by Vikram S. Adve · 22 years ago
  86. a1396a1 Run both *.ll and *.c tests. by Vikram S. Adve · 22 years ago
  87. 6ae7d3c Added expected decomposed sequence in comments, plus a couple of new cases. by Vikram S. Adve · 22 years ago
  88. 69ab7a8 Fix problem where lli would not print out a 64 bit value when the client code by Chris Lattner · 22 years ago
  89. 1bbd361 Fix one real nasty bug by Chris Lattner · 22 years ago
  90. b490c20 Fix lli with no arguments by Chris Lattner · 22 years ago
  91. 8fd217c Fix bug: test/Regression/Transforms/InstCombine/2002-08-02-CastTest.ll by Chris Lattner · 22 years ago
  92. 7b572ef Fix yet another bug in the testcase by Chris Lattner · 22 years ago
  93. 77c1462 Fix bug in testcase by Chris Lattner · 22 years ago
  94. 90ac28c * Cleanups of instcombine by Chris Lattner · 22 years ago
  95. 4a6e4b3 These tests should not run -dce pass to cleanup instcombine. by Chris Lattner · 22 years ago
  96. c7f9637 Add another testcase that isn't failing because of another bug in instcombine by Chris Lattner · 22 years ago
  97. d656922 Change test to really test the cases we can hit by Chris Lattner · 22 years ago
  98. b01a8d0 New testcase by Chris Lattner · 22 years ago
  99. 60f5606 Don't build Debug/ versions when ENABLE_OPTIMIZED is on. by Vikram S. Adve · 22 years ago
  100. be1ecf6 Fix bug: test/Regression/Transforms/GCSE/2002-05-21-NoSharedDominator.ll by Chris Lattner · 22 years ago