1. 1d0be15 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 16 years ago
  2. 9e9a0d5 Move more code back to 2.5 APIs. by Owen Anderson · 16 years ago
  3. e922c02 Get rid of the Pass+Context magic. by Owen Anderson · 16 years ago
  4. bdc017e Make makeLoopInvariant report whether it made any changes or not, by Dan Gohman · 16 years ago
  5. 0df6e09 Update LoopSimplify and LoopUnswitch to use the new makeLoopInvariant function. by Dan Gohman · 16 years ago
  6. 0a205a4 More LLVMContext-ification. by Owen Anderson · 16 years ago
  7. 2aa93ef Minor code simplification. by Dan Gohman · 16 years ago
  8. a1baee2 Remove the block from the LoopInfo, rather than just the Loop. by Dan Gohman · 16 years ago
  9. 4b35f83 Teach LoopSimplify how to merge multiple loop exits into a single exit, by Dan Gohman · 16 years ago
  10. 1465d61 Rename getAnalysisToUpdate to getAnalysisIfAvailable. by Duncan Sands · 17 years ago
  11. ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
  12. 9b78763 Use Loop::block_iterator. by Dan Gohman · 17 years ago
  13. 4c37c07 LoopSimplify preserves AA. by Devang Patel · 17 years ago
  14. 6ddba2b Change class' public PassInfo variables to by initialized with the by Dan Gohman · 17 years ago
  15. 844731a Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 17 years ago
  16. 280a6e6 Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989 by Nick Lewycky · 17 years ago
  17. 54b9c3b Move SplitBlockPredecessors out of loopsimplify into BasicBlockUtils.h by Chris Lattner · 17 years ago
  18. 1b58678 Move domtree/frontier updating earlier, allowing us to use it to update phi by Chris Lattner · 17 years ago
  19. b859794 Factor dominator tree and frontier updating into SplitBlockPredecessors by Chris Lattner · 17 years ago
  20. 34093a6 simplify code, fit in 80 cols. by Chris Lattner · 17 years ago
  21. 051a950 API changes for class Use size reduction, wave 1. by Gabor Greif · 17 years ago
  22. 529de8a Update the block cloner which fixes bugpoint on code using unwind_to (phew!) by Nick Lewycky · 17 years ago
  23. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  24. d735ee8 Make LoopInfoBase more generic, in preparation for having MachineLoopInfo. This involves a small interface change. by Owen Anderson · 18 years ago
  25. 3cb63dd Fix PR1752 and LoopSimplify/2007-10-28-InvokeCrash.ll: terminators by Chris Lattner · 18 years ago
  26. 7b71432 Move Split<...>() into DomTreeBase. This should make the #include's of DominatorInternals.h by Owen Anderson · 18 years ago
  27. 469b7a4 Fixed linker errors (unresolved externals: split<>(...)) when compiling with VC++. Please review. by Hartmut Kaiser · 18 years ago
  28. b7211a2 Use SmallVector instead of std::vector. by Devang Patel · 18 years ago
  29. 3589df8 remove some dead lines by Chris Lattner · 18 years ago
  30. 58e0ef1 Verify loop info. by Devang Patel · 18 years ago
  31. c08fa28 Fix reference to iterator invalidated by an erase operation. Uncovered by David Greene · 18 years ago
  32. 0e7f728 Move code to update dominator information after basic block is split by Devang Patel · 18 years ago
  33. fe7d4e5 Add and use DominatorTreeBase::findNearestCommonDominator(). by Devang Patel · 18 years ago
  34. f60e5a2 Simplify. by Devang Patel · 18 years ago
  35. b28aaad simplify by Devang Patel · 18 years ago
  36. e3f6536 Simplify. Dominator Tree is required so always available. by Devang Patel · 18 years ago
  37. dba2413 Update LoopSimplify to require and preserve DominatorTree only. by Devang Patel · 18 years ago
  38. 83beaee s/DominatorTree::createNewNode/DominatorTree::addNewBlock/g by Devang Patel · 18 years ago
  39. 2604242 s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/g by Devang Patel · 18 years ago
  40. bec7647 s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/g by Devang Patel · 18 years ago
  41. ecd94c8 Fix typo in comment. by Nick Lewycky · 18 years ago
  42. 1997473 Drop 'const' by Devang Patel · 18 years ago
  43. 3e15bf3 Use 'static const char' instead of 'static const int'. by Devang Patel · 18 years ago
  44. 794fd75 Do not use typeinfo to identify pass in pass manager. by Devang Patel · 18 years ago
  45. 58d7fbf Avoid recursion. by Devang Patel · 18 years ago
  46. 3dc6776 Remove ImmediateDominator analysis. The same information can be obtained from DomTree. A lot of code for by Owen Anderson · 18 years ago
  47. cc221cd Re-constify things that don't break the build. Last patch in this by Owen Anderson · 18 years ago
  48. f7c8318 Unconst-ify stuff that broke the build. by Owen Anderson · 18 years ago
  49. ad19014 Const-ify some parameters, and some cosmetic cleanups. No functionality change. by Owen Anderson · 18 years ago
  50. 0cd0461 Tabs -> Spaces by Owen Anderson · 18 years ago
  51. 17cba6d Improve some _slow_ behavior introduced in my patches the last few days. by Owen Anderson · 18 years ago
  52. 558fc74 Cleanup some from my DomSet-removal changes. Add a new by Owen Anderson · 18 years ago
  53. a397ce1 Remove DominatorSet usage from LoopSimplify. Patch from Owen Anderson. by Nick Lewycky · 18 years ago
  54. e9ed445 Add DomSet back, and revert the changes to LoopSimplify. Apparently the by Owen Anderson · 18 years ago
  55. 4f9e58e Completely purge DomSet from LoopSimplify. This is part of the by Owen Anderson · 18 years ago
  56. d44008a Expunge a bunch of uses of DomSet from LoopSimplify. Many more remain. by Owen Anderson · 18 years ago
  57. 3b57b6f LoopSimplify::FindPHIToPartitionLoops() Use ETForest instead of DominatorSet. by Devang Patel · 18 years ago
  58. d216e8b switch more statistics over to STATISTIC, eliminating static ctors. Also, by Chris Lattner · 19 years ago
  59. ac0b6ae Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 19 years ago
  60. 3ed469c For PR786: by Reid Spencer · 19 years ago
  61. 120fce5 Be far more careful when splitting a loop header, either to form a preheader by Chris Lattner · 19 years ago
  62. c398457 Teach UpdateDomInfoForRevectoredPreds to handle revectored preds that are not by Chris Lattner · 19 years ago
  63. 7f8897f eliminate RegisterOpt. It does the same thing as RegisterPass. by Chris Lattner · 19 years ago
  64. a4f0b3a s|llvm/Support/Visibility.h|llvm/Support/Compiler.h| by Chris Lattner · 19 years ago
  65. 3bb4657 Don't attempt to split subloops out of a loop with a huge number of backedges. by Chris Lattner · 19 years ago
  66. fa78946 Reimplement the loopsimplify code which deletes edges from unreachable by Chris Lattner · 19 years ago
  67. 9525528 Use hidden visibility to make symbols in an anonymous namespace get by Chris Lattner · 19 years ago
  68. 0ab9f96 Canonicalize inner loops before outer loops. Inner loop canonicalization by Chris Lattner · 20 years ago
  69. c27e056 When splitting exit edges to canonicalize loops, make sure to put the new by Chris Lattner · 20 years ago
  70. ee628cf Revert my last patch. It too breaks stuff by Chris Lattner · 20 years ago
  71. d308ddc Fix for my previously reverted patch by Chris Lattner · 20 years ago
  72. 5077c7b revert my previous change, it exposed other problems. by Chris Lattner · 20 years ago
  73. 8587eb3 Make this check stricter. Disallow loop exit blocks from being shared by by Chris Lattner · 20 years ago
  74. 441365c remove dead expr by Chris Lattner · 20 years ago
  75. baec98d Teach loopsimplify to update et-forest. Patch contributed by Daniel Berlin! by Chris Lattner · 20 years ago
  76. 8385393 remove dead code. The exit block list is computed on demand, thus does not by Chris Lattner · 20 years ago
  77. 98599ba remove some trickiness that broke yacr2 and some other programs last night by Chris Lattner · 20 years ago
  78. 94f4032 Make loop-simplify produce better loops by turning PHI nodes like X = phi [X, Y] by Chris Lattner · 20 years ago
  79. 5e1b231 This code can handle non-dominating instructions by Chris Lattner · 20 years ago
  80. a83ba0f Fix a fixme in CondPropagate.cpp by moving a PhiNode optimization into by Nate Begeman · 20 years ago
  81. fd93908 Remove trailing whitespace by Misha Brukman · 20 years ago
  82. cec5b88 Enhance loopsimplify to preserve alias analysis instead of clobbering it. by Chris Lattner · 20 years ago
  83. fee3411 trivial simplification by Chris Lattner · 21 years ago
  84. 5551706 Adjust to changes in instruction interfaces. by Chris Lattner · 21 years ago
  85. c30bda7 hasConstantValue will soon return instructions that don't dominate the PHI node, by Chris Lattner · 21 years ago
  86. 200a360 Pull assignment out of for loop conditional in order for this to by Alkis Evlogimenos · 21 years ago
  87. 4b50156 Prototype these functions more accurately by Chris Lattner · 21 years ago
  88. 551ccae Changes For Bug 352 by Reid Spencer · 21 years ago
  89. 47b14a4 Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 21 years ago
  90. fed22aa Fix PR404 try #2 by Chris Lattner · 21 years ago
  91. de7aee7 Revert previous patch until I get a bug fixed by Chris Lattner · 21 years ago
  92. 507e3d6 Fix PR404: Loop simplify is really slow on 252.eon by Chris Lattner · 21 years ago
  93. 59fb87d Correct rewriting of exit blocks after my last patch by Chris Lattner · 21 years ago
  94. f1ab4b4 Change the ExitBlocks list from being explicitly contained in the Loop by Chris Lattner · 21 years ago
  95. 4b66242 Fix LoopSimplify/2004-04-13-LoopSimplifyUpdateDomFrontier.ll by Chris Lattner · 21 years ago
  96. 1f62f82 Refactor code a bit to make it simpler and eliminate the goto by Chris Lattner · 21 years ago
  97. 529b28d This patch addresses PR35: Loop simplify should reconstruct nested loops. by Chris Lattner · 21 years ago
  98. 4edf6c0 Remove some assertions that are now bogus with the last patch I put in by Chris Lattner · 21 years ago
  99. 4f303bd Fix PR306: Loop simplify incorrectly updates dominator information by Chris Lattner · 21 years ago
  100. 85ebd54 Fix a regression from this patch: by Chris Lattner · 21 years ago