1. 394f044 Change create*Pass factory functions to return Pass* instead of by Daniel Dunbar · 16 years ago
  2. 36a5bf8 fix white spaces. by Devang Patel · 16 years ago
  3. d22a849 if loop induction variable is always sign or zero extended then by Devang Patel · 16 years ago
  4. bcc11d2 Remove unused map. by Devang Patel · 16 years ago
  5. ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 16 years ago
  6. 5a6c448 Pass the computed iteration count value to RewriteLoopExitValues by Dan Gohman · 16 years ago
  7. 9b78763 Use Loop::block_iterator. by Dan Gohman · 16 years ago
  8. 9008721 Use recently added getTruncateOrZeroExtend method to make the code shorter. by Wojciech Matyjewicz · 16 years ago
  9. 02dea8b Tidy up BasicBlock::getFirstNonPHI, and change a bunch of places to by Dan Gohman · 16 years ago
  10. 7cbd8a3 API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legacy interfaces will be in place for some time. (Merge from use-diet branch.) by Gabor Greif · 16 years ago
  11. 844731a Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 17 years ago
  12. 051a950 API changes for class Use size reduction, wave 1. by Gabor Greif · 17 years ago
  13. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  14. 246b256 Move the SCEV object factors from being static members of the individual by Dan Gohman · 17 years ago
  15. bc533cd Require SCEV before LCSSA. by Devang Patel · 17 years ago
  16. b8f7479 by David Greene · 17 years ago
  17. b7211a2 Use SmallVector instead of std::vector. by Devang Patel · 17 years ago
  18. 0d7d365 Fix a bug. by Zhou Sheng · 17 years ago
  19. 5cec4db Rename ScalarEvolution::deleteInstructionFromRecords to by Dan Gohman · 17 years ago
  20. e19dd87 Use SCEVConstant::get instead of SCEVUnknown::get to create an by Dan Gohman · 17 years ago
  21. d19534a Add a SCEV class and supporting code for sign-extend expressions. by Dan Gohman · 17 years ago
  22. 5adcefb Inform ScalarEvolutions that we're deleting Values. by Nick Lewycky · 17 years ago
  23. ecd94c8 Fix typo in comment. by Nick Lewycky · 18 years ago
  24. 1997473 Drop 'const' by Devang Patel · 18 years ago
  25. 3e15bf3 Use 'static const char' instead of 'static const int'. by Devang Patel · 18 years ago
  26. 794fd75 Do not use typeinfo to identify pass in pass manager. by Devang Patel · 18 years ago
  27. 5ee9997 Now IndVarSimplify is a LoopPass. by Devang Patel · 18 years ago
  28. 9f3d738 make better use of LCSSA information in RewriteLoopExitValues. Before, we by Chris Lattner · 18 years ago
  29. 9caed54 Implement PR1179/PR1232 and test/Transforms/IndVarsSimplify/loop_evaluate_[234].ll by Chris Lattner · 18 years ago
  30. c9838f2 Make RewriteLoopExitValues far less nested by using continue in the loop by Chris Lattner · 18 years ago
  31. cae5754 Prefer non-virtual calls to ConstantInt::isZero over virtual calls to by Reid Spencer · 18 years ago
  32. 6934a04 Simplify code by using value::takename by Chris Lattner · 18 years ago
  33. 9133fe2 Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in by Reid Spencer · 18 years ago
  34. fbbe92f remove temporary vectors. by Chris Lattner · 18 years ago
  35. 55eb1c4 eliminate temporary vectors by Chris Lattner · 18 years ago
  36. 42a7551 rename Type::isIntegral to Type::isInteger, eliminating the old Type::isInteger. by Chris Lattner · 18 years ago
  37. 4d5f508 Eliminate calls to isInteger, generalizing code and tightening checks as needed. by Chris Lattner · 18 years ago
  38. ef60b2c simplify some code by Chris Lattner · 18 years ago
  39. a54b7cb For PR1064: by Reid Spencer · 18 years ago
  40. abaa8ca Comparison of primitive type sizes should now be done in bits, not bytes. by Reid Spencer · 18 years ago
  41. ee4f13a add -debug output for -indvars. by Chris Lattner · 18 years ago
  42. c5b206b For PR950: by Reid Spencer · 18 years ago
  43. e4d87aa For PR950: by Reid Spencer · 18 years ago
  44. 0e5f499 Switch over Transforms/Scalar to use the STATISTIC macro. For each statistic by Chris Lattner · 18 years ago
  45. ac0b6ae Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 18 years ago
  46. 3da59db For PR950: by Reid Spencer · 18 years ago
  47. 9ba46c1 Fix Transforms/IndVarsSimplify/2006-09-20-LFTR-Crash.ll by Chris Lattner · 18 years ago
  48. 7f8897f eliminate RegisterOpt. It does the same thing as RegisterPass. by Chris Lattner · 18 years ago
  49. eb70591 Add an assertion to check that we're really preserving LCSSA. by Owen Anderson · 18 years ago
  50. ac12322 Reapply the indvars patch, since nothing blew up last night. by Owen Anderson · 18 years ago
  51. b397d81 Revert my previous patch. Since there are some major changes that went in today, by Owen Anderson · 18 years ago
  52. 8a24749 Specify that indvars actually preserve LCSSA. This has been done for a while, but I by Owen Anderson · 18 years ago
  53. 47a53ac Fix a grammaro in a comment. by Reid Spencer · 18 years ago
  54. c1be492 Hopefully the final attempt at making IndVars preserve LCSSA. by Owen Anderson · 18 years ago
  55. 2620418 Revert this patch temporarily until PR831 is fixed. by Chris Lattner · 18 years ago
  56. bcfb913 IndVars now (correctly) preserves LCSSA form. by Owen Anderson · 18 years ago
  57. 4a8aadd Revert my indvars changes because they were breaking things. Unfortunately this by Owen Anderson · 18 years ago
  58. f9b238e De-pessimize the handling of LCSSA Phi nodes in IndVarSimplify. Hopefully this by Owen Anderson · 18 years ago
  59. eb83f4e Fix IndVarsSimplify/2006-06-16-Indvar-LCSSA-Crash.ll, a case where a by Chris Lattner · 18 years ago
  60. 1730078 Fix a crash building 176.gcc due to my recent patch, which only fixed by Chris Lattner · 19 years ago
  61. ceda605 This was checking the wrong GEP expression. Fixing this fixes a gccas crash by Chris Lattner · 19 years ago
  62. cda9ca5 Allow indvar simplify to canonicalize ANY affine IV, not just affine IVs with by Chris Lattner · 19 years ago
  63. 36f891b Break SCEVExpander out of IndVarSimplify into its own .h/.cpp file so that by Nate Begeman · 19 years ago
  64. 4bd09d7 Fix PR582. The rewriter can move casts around, which invalidated the by Chris Lattner · 19 years ago
  65. fd93908 Remove trailing whitespace by Misha Brukman · 20 years ago
  66. 8a7980b Fix the second bug attached to PR504. by Chris Lattner · 20 years ago
  67. f624926 Fix for testcase Transforms/IndVarsSimplify/2005-02-11-InvokeCrash.ll and PR504. by Chris Lattner · 20 years ago
  68. 1fca5ff Convert 'struct' to 'class' in various places to adhere to the coding standards by Chris Lattner · 20 years ago
  69. 989cbd5 Fix a REALLY obscure bug in my previous checkin, which was splicing the END by Chris Lattner · 20 years ago
  70. a4b9c78 Handle a common case more carefully. In particular, instead of transforming by Chris Lattner · 20 years ago
  71. 4b50156 Prototype these functions more accurately by Chris Lattner · 20 years ago
  72. 2da5c3d Convert code to compile with vc7.1. by Reid Spencer · 20 years ago
  73. 551ccae Changes For Bug 352 by Reid Spencer · 20 years ago
  74. 595ee7e Throttle back indvar substitution from creating multiplies in loops. This is bad bad bad. by Chris Lattner · 20 years ago
  75. a25502a Two fixes. First, stop using the ugly shouldSubstituteIndVar method. by Chris Lattner · 20 years ago
  76. c5c5e6a Make use of BinaryOperator::create* methods to shrinkify code. by Chris Lattner · 20 years ago
  77. 2b994c7 Fix a nasty bug, noticed by Reid by Chris Lattner · 20 years ago
  78. 4a7553e Move the scev expansion code into this pass, where it belongs. There is by Chris Lattner · 21 years ago
  79. b4782d1 Disable a previous patch that was causing indvars to loop infinitely :( by Chris Lattner · 21 years ago
  80. fcb81f5 Fix an extremely serious thinko I made in revision 1.60 of this file. by Chris Lattner · 21 years ago
  81. 1363e85 Implement a todo, rewriting all possible scev expressions inside of the by Chris Lattner · 21 years ago
  82. 5d461d2 Implement a fixme. The helps loops that have induction variables of different by Chris Lattner · 21 years ago
  83. f1ab4b4 Change the ExitBlocks list from being explicitly contained in the Loop by Chris Lattner · 21 years ago
  84. 20aa098 If the loop executes a constant number of times, try a bit harder to replace by Chris Lattner · 21 years ago
  85. f50af08 Even if there are not any induction variables in the loop, if we can compute by Chris Lattner · 21 years ago
  86. 006118f Fix some of the strange CBE-only failures that happened last night. by Chris Lattner · 21 years ago
  87. d244057 Fix a bug in the previous checkin: if the exit block is not the same as by Chris Lattner · 21 years ago
  88. 59fdaee Change the canonical induction variable that we insert. by Chris Lattner · 21 years ago
  89. 40bf8b4 Rewrite the indvars pass to use the ScalarEvolution analysis. by Chris Lattner · 21 years ago
  90. 329c1c6 Improve encapsulation in the Loop and LoopInfo classes by eliminating the by Chris Lattner · 21 years ago
  91. 15cad75 More minor non-functional changes. This now computes the exit condition, though by Chris Lattner · 21 years ago
  92. 500597a Don't mind me, I'm just refactoring away. This patch makes room for LFTR, but by Chris Lattner · 21 years ago
  93. 18b3c97 Implement IndVarsSimplify/pointer-indvars.ll, transforming pointer by Chris Lattner · 21 years ago
  94. 3324e71 Fix PR194 by Chris Lattner · 21 years ago
  95. 47df12d Reverted back to previous revision - this was previously merged by John Criswell · 21 years ago
  96. d000e1d Merged in RELEASE_11. by John Criswell · 21 years ago
  97. 9e45d2e Fix for PR185 & IndVarsSimplify/2003-12-15-Crash.llx by Chris Lattner · 21 years ago
  98. 88369d2 Fix bug: IndVarsSimplify/2003-12-10-RemoveInstrCrash.llx by Chris Lattner · 21 years ago
  99. ba4f3f6 Finegrainify namespacification by Chris Lattner · 21 years ago
  100. d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 21 years ago