summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LoopSimplify.cpp
Commit message (Expand)AuthorAge
...
* Update a comment.Dan Gohman2009-12-18
* Make Loop::getLoopLatch() work on loops which don't have preheaders, asDan Gohman2009-11-20
* Eliminate duplicate phi nodes in loops. Loop rotation, for example, can intro...Jim Grosbach2009-11-19
* Avoid calling getUniqueExitBlocks from within LoopSimplify, as it dependsDan Gohman2009-11-05
* The introduction of indirectbr meant the introduction ofDan Gohman2009-11-05
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-25
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-25
* Fix this code so that it doesn't try to iterate through a std::vectorDan Gohman2009-09-30
* Convert LoopSimplify and LoopExtractor from FunctionPass to LoopPass.Dan Gohman2009-09-28
* Re-apply r80926, with fixes: keep the domtree informed of new blocksDan Gohman2009-09-08
* Revert r80926. It causes loop unswitch assertion and slow down some JIT tests...Evan Cheng2009-09-06
* Add a verifyAnalysis to LoopInfo, LoopSimplify, and LCSSA form that verifyDan Gohman2009-09-03
* Change PHINode::hasConstantValue to have a DominatorTree argumentDan Gohman2009-09-03
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-13
* Move more code back to 2.5 APIs.Owen Anderson2009-07-30
* Get rid of the Pass+Context magic.Owen Anderson2009-07-22
* Make makeLoopInvariant report whether it made any changes or not,Dan Gohman2009-07-15
* Update LoopSimplify and LoopUnswitch to use the new makeLoopInvariantDan Gohman2009-07-14
* More LLVMContext-ification.Owen Anderson2009-07-05
* Minor code simplification.Dan Gohman2009-06-30
* Remove the block from the LoopInfo, rather than just the Loop.Dan Gohman2009-06-27
* Teach LoopSimplify how to merge multiple loop exits into a single exit,Dan Gohman2009-06-27
* Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands2009-01-28
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-04
* Use Loop::block_iterator.Dan Gohman2008-06-22
* LoopSimplify preserves AA.Devang Patel2008-06-06
* Change class' public PassInfo variables to by initialized with theDan Gohman2008-05-13
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-13
* Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989Nick Lewycky2008-04-25
* Move SplitBlockPredecessors out of loopsimplify into BasicBlockUtils.hChris Lattner2008-04-21
* Move domtree/frontier updating earlier, allowing us to use it to update phi Chris Lattner2008-04-21
* Factor dominator tree and frontier updating into SplitBlockPredecessorsChris Lattner2008-04-21
* simplify code, fit in 80 cols.Chris Lattner2008-04-21
* API changes for class Use size reduction, wave 1.Gabor Greif2008-04-06
* Update the block cloner which fixes bugpoint on code using unwind_to (phew!)Nick Lewycky2008-03-09
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Make LoopInfoBase more generic, in preparation for having MachineLoopInfo. T...Owen Anderson2007-11-27
* Fix PR1752 and LoopSimplify/2007-10-28-InvokeCrash.ll: terminators Chris Lattner2007-10-29
* Move Split<...>() into DomTreeBase. This should make the #include's of Domin...Owen Anderson2007-10-18
* Fixed linker errors (unresolved externals: split<>(...)) when compiling with ...Hartmut Kaiser2007-10-17
* Use SmallVector instead of std::vector.Devang Patel2007-08-21
* remove some dead linesChris Lattner2007-08-06
* Verify loop info.Devang Patel2007-07-19
* Fix reference to iterator invalidated by an erase operation. UncoveredDavid Greene2007-06-29
* Move code to update dominator information after basic block is splitDevang Patel2007-06-21
* Add and use DominatorTreeBase::findNearestCommonDominator().Devang Patel2007-06-11
* Simplify.Devang Patel2007-06-11
* simplifyDevang Patel2007-06-11
* Simplify. Dominator Tree is required so always available.Devang Patel2007-06-11
* Update LoopSimplify to require and preserve DominatorTree only.Devang Patel2007-06-08