summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LoopSimplify.cpp
Commit message (Expand)AuthorAge
* 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
* s/DominatorTree::createNewNode/DominatorTree::addNewBlock/gDevang Patel2007-06-04
* s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/gDevang Patel2007-06-04
* s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/gDevang Patel2007-06-03
* Fix typo in comment.Nick Lewycky2007-05-06
* Drop 'const'Devang Patel2007-05-03
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-02
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-01
* Avoid recursion.Devang Patel2007-04-20
* Remove ImmediateDominator analysis. The same information can be obtained fro...Owen Anderson2007-04-15
* Re-constify things that don't break the build. Last patch in thisOwen Anderson2007-04-09
* Unconst-ify stuff that broke the build.Owen Anderson2007-04-09
* Const-ify some parameters, and some cosmetic cleanups. No functionalityOwen Anderson2007-04-09
* Tabs -> SpacesOwen Anderson2007-04-09
* Improve some _slow_ behavior introduced in my patches the last few days.Owen Anderson2007-04-09
* Cleanup some from my DomSet-removal changes. Add a newOwen Anderson2007-04-09
* Remove DominatorSet usage from LoopSimplify. Patch from Owen Anderson.Nick Lewycky2007-04-08
* Add DomSet back, and revert the changes to LoopSimplify. Apparently theOwen Anderson2007-04-07
* Completely purge DomSet from LoopSimplify. This is part of theOwen Anderson2007-04-07
* Expunge a bunch of uses of DomSet from LoopSimplify. Many more remain.Owen Anderson2007-04-07
* LoopSimplify::FindPHIToPartitionLoops()Devang Patel2007-03-20
* switch more statistics over to STATISTIC, eliminating static ctors. Also,Chris Lattner2006-12-19
* Detemplatize the Statistic class. The only type it is instantiated withChris Lattner2006-12-06
* For PR786:Reid Spencer2006-11-02