aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/LoopRotation.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update various Loop optimization passes to cope with the possibility thatDan Gohman2009-11-051-4/+5
* Call getAnalysis<LoopInfo> the normal way, instead of asking passed-inDan Gohman2009-11-051-2/+2
* Rename forgetLoopBackedgeTakenCount to forgetLoop, because itDan Gohman2009-10-311-1/+1
* Fix a typo in a comment.Dan Gohman2009-10-261-1/+1
* Rename isLoopExit to isLoopExiting, for consistency with the wordingDan Gohman2009-10-241-1/+1
* Rewrite LoopRotation's SSA updating code using SSAUpdater.Dan Gohman2009-10-241-226/+70
* Tell ScalarEvolution to forget everything it knows about a loop beforeDan Gohman2009-09-271-0/+5
* Instruction::clone does not need to take an LLVMContext&. Remove that andNick Lewycky2009-09-271-1/+1
* Fix SplitCriticalEdge to properly update LCSSA form when splitting aDan Gohman2009-09-091-16/+1
* eliminate VISIBILITY_HIDDEN from Transforms/Scalar. PR4861Chris Lattner2009-09-021-3/+2
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-1/+2
* Fix dom frontier update. This fixes PR4667.Devang Patel2009-08-071-19/+23
* Get rid of the Pass+Context magic.Owen Anderson2009-07-221-1/+1
* This started as a small change, I swear. Unfortunately, lots of things call ...Owen Anderson2009-07-091-1/+1
* More minor code simplifications.Dan Gohman2009-06-271-14/+9
* Change this code to a form about which VC++ reportedly isn't unhappy.Dan Gohman2009-06-261-1/+2
* Minor code simplification.Dan Gohman2009-06-261-7/+3
* Reword a few comments.Dan Gohman2009-06-251-17/+17
* Do not count DbgInfoIntrinsic while estimating loop header size.Devang Patel2009-03-061-2/+14
* Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands2009-01-281-3/+3
* Fix PR3408 by making a non-obvious assumption very obvious, and Chris Lattner2009-01-261-2/+6
* More cleanups and simplifications, no functionality change.Chris Lattner2009-01-261-47/+23
* tidy assertsChris Lattner2009-01-261-18/+17
* Change create*Pass factory functions to return Pass* instead ofDaniel Dunbar2008-10-221-1/+1
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-041-1/+1
* Enable first-class aggregates support.Dan Gohman2008-07-231-29/+5
* Avoid using BasicBlock::getInstList directly in a few places.Dan Gohman2008-06-191-9/+10
* Tidy up BasicBlock::getFirstNonPHI, and change a bunch of places toDan Gohman2008-05-231-3/+1
* Fix a bunch of 80col violations that arose from the Create API change. Tweak ...Gabor Greif2008-05-151-1/+2
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-131-3/+3
* add a FIXME so we remember to eventually remove this code.Chris Lattner2008-05-021-5/+6
* Don't try to create PHIs of struct types. FalloutDale Johannesen2008-05-011-8/+31
* Revert r49614. As Dan pointed out, some of these aren't correct.Owen Anderson2008-04-141-1/+1
* Replace calls of the form V1->setName(V2->getName()) with V1->takeName(V2), Owen Anderson2008-04-131-1/+1
* API changes for class Use size reduction, wave 1.Gabor Greif2008-04-061-7/+7
* Fix PR2028Devang Patel2008-02-151-2/+2
* 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-1/+1
* typoNick Lewycky2007-11-211-1/+1
* Use SmallVector instead of std::vector.Devang Patel2007-08-211-1/+1
* Loop Rotation pass preserves dominator tree and frontier.Devang Patel2007-07-301-0/+2
* Disable claims to preserve analysis until open issues are resolved.Devang Patel2007-07-131-7/+0
* Preserve analysis info.Devang Patel2007-07-111-20/+136
* Back out Devang's fix for PR1320 because it causes PR1542.Nick Lewycky2007-07-071-93/+19
* Request DominanceFrontiner in advance.Devang Patel2007-07-061-0/+5
* Preserve various analysis info.Devang Patel2007-07-061-19/+88
* Fix typos.Dan Gohman2007-05-111-2/+2
* 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-1/+4