aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/LoopSimplify.cpp
Commit message (Expand)AuthorAgeFilesLines
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-041-1/+1
* Use Loop::block_iterator.Dan Gohman2008-06-221-2/+3
* LoopSimplify preserves AA.Devang Patel2008-06-061-3/+5
* Change class' public PassInfo variables to by initialized with theDan Gohman2008-05-131-1/+1
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-131-4/+4
* Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989Nick Lewycky2008-04-251-10/+7
* Move SplitBlockPredecessors out of loopsimplify into BasicBlockUtils.hChris Lattner2008-04-211-107/+14
* Move domtree/frontier updating earlier, allowing us to use it to update phi Chris Lattner2008-04-211-31/+18
* Factor dominator tree and frontier updating into SplitBlockPredecessorsChris Lattner2008-04-211-18/+14
* simplify code, fit in 80 cols.Chris Lattner2008-04-211-65/+67
* API changes for class Use size reduction, wave 1.Gabor Greif2008-04-061-7/+7
* Update the block cloner which fixes bugpoint on code using unwind_to (phew!)Nick Lewycky2008-03-091-7/+13
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Make LoopInfoBase more generic, in preparation for having MachineLoopInfo. T...Owen Anderson2007-11-271-4/+4
* Fix PR1752 and LoopSimplify/2007-10-28-InvokeCrash.ll: terminators Chris Lattner2007-10-291-4/+6
* Move Split<...>() into DomTreeBase. This should make the #include's of Domin...Owen Anderson2007-10-181-1/+0
* Fixed linker errors (unresolved externals: split<>(...)) when compiling with ...Hartmut Kaiser2007-10-171-0/+1
* Use SmallVector instead of std::vector.Devang Patel2007-08-211-1/+1
* remove some dead linesChris Lattner2007-08-061-2/+0
* Verify loop info.Devang Patel2007-07-191-0/+10
* Fix reference to iterator invalidated by an erase operation. UncoveredDavid Greene2007-06-291-3/+4
* Move code to update dominator information after basic block is splitDevang Patel2007-06-211-189/+20
* Add and use DominatorTreeBase::findNearestCommonDominator().Devang Patel2007-06-111-1/+1
* Simplify.Devang Patel2007-06-111-4/+2
* simplifyDevang Patel2007-06-111-4/+3
* Simplify. Dominator Tree is required so always available.Devang Patel2007-06-111-31/+26
* Update LoopSimplify to require and preserve DominatorTree only.Devang Patel2007-06-081-32/+26
* s/DominatorTree::createNewNode/DominatorTree::addNewBlock/gDevang Patel2007-06-041-2/+1
* s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/gDevang Patel2007-06-041-3/+3
* s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/gDevang Patel2007-06-031-3/+3
* Fix typo in comment.Nick Lewycky2007-05-061-1/+1
* Drop 'const'Devang Patel2007-05-031-2/+2
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-021-2/+2
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-011-0/+4
* Avoid recursion.Devang Patel2007-04-201-6/+13
* Remove ImmediateDominator analysis. The same information can be obtained fro...Owen Anderson2007-04-151-26/+0
* Re-constify things that don't break the build. Last patch in thisOwen Anderson2007-04-091-2/+4
* Unconst-ify stuff that broke the build.Owen Anderson2007-04-091-1/+1
* Const-ify some parameters, and some cosmetic cleanups. No functionalityOwen Anderson2007-04-091-3/+4
* Tabs -> SpacesOwen Anderson2007-04-091-36/+36
* Improve some _slow_ behavior introduced in my patches the last few days.Owen Anderson2007-04-091-42/+42
* Cleanup some from my DomSet-removal changes. Add a newOwen Anderson2007-04-091-4/+4
* Remove DominatorSet usage from LoopSimplify. Patch from Owen Anderson.Nick Lewycky2007-04-081-89/+54
* Add DomSet back, and revert the changes to LoopSimplify. Apparently theOwen Anderson2007-04-071-48/+85
* Completely purge DomSet from LoopSimplify. This is part of theOwen Anderson2007-04-071-82/+46
* Expunge a bunch of uses of DomSet from LoopSimplify. Many more remain.Owen Anderson2007-04-071-3/+2
* LoopSimplify::FindPHIToPartitionLoops()Devang Patel2007-03-201-4/+6
* switch more statistics over to STATISTIC, eliminating static ctors. Also,Chris Lattner2006-12-191-5/+4
* Detemplatize the Statistic class. The only type it is instantiated withChris Lattner2006-12-061-2/+2
* For PR786:Reid Spencer2006-11-021-1/+0