aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/LoopInfo.cpp
AgeCommit message (Expand)Author
2010-03-10Add a DominatorTree argument to isLCSSA so that it doesn't have toDan Gohman
2010-03-09Make isLCSSA ignore uses in blocks not reachable from the entry block,Dan Gohman
2010-01-05Restore dump() methods to Loop and MachineLoop.Dan Gohman
2009-12-18Add Loop contains utility methods for testing whether a loopDan Gohman
2009-12-11Make getUniqueExitBlocks's precondition assert more precise, toDan Gohman
2009-11-20Teach getSmallConstantTripMultiple about Shl operators.Dan Gohman
2009-11-09Minor tidiness fixes.Dan Gohman
2009-11-05Factor out the predicate code for loopsimplify form exit blocks intoDan Gohman
2009-10-20Fix another place that calls Loop::contains a lot to construct a sortedDan Gohman
2009-09-28Move the dominator verification code out of special code embedded withinDan Gohman
2009-09-08Re-apply r80926, with fixes: keep the domtree informed of new blocksDan Gohman
2009-09-06Revert r80926. It causes loop unswitch assertion and slow down some JIT tests...Evan Cheng
2009-09-03Smallvectorize switchExitBlocks.Dan Gohman
2009-09-03Add a verifyAnalysis to LoopInfo, LoopSimplify, and LCSSA form that verifyDan Gohman
2009-09-03Move getUniqueExitBlocks from LoopBase to Loop, since they depend onDan Gohman
2009-08-23remove uses of llvm/Support/Streams.h.Chris Lattner
2009-08-23Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner
2009-08-23eliminate the std::ostream form of WriteAsOperand and update clients.Chris Lattner
2009-07-17Replace isTrapping with a new, similar method called Eli Friedman
2009-07-16Add an isLoopSimplifyForm() predicate, following the example ofDan Gohman
2009-07-15Make makeLoopInvariant report whether it made any changes or not,Dan Gohman
2009-07-14Introduce a new LoopInfo utility function makeLoopInvariant, whichDan Gohman
2009-07-13Move isLCSSAForm, isLoopInvariant, getCanonicalInductionVariable,Dan Gohman
2009-06-27Eliminate a layer of indirection in LoopInfo and MachineLoopInfo.Dan Gohman
2009-06-05Remove some unnecessary #includes.Dan Gohman
2009-05-01Change the description string of the LoopInfo pass.Dan Gohman
2008-12-18Remove dead comments.Evan Cheng
2008-05-06Remove uses of llvm/System/IncludeFile.h that are no longer needed.Dan Gohman
2008-03-20These passes preserve CFG.Devang Patel
2008-03-20Restore isCFGOnly property of various analysis passes.Devang Patel
2008-03-19PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-11-27Make LoopInfoBase more generic, in preparation for having MachineLoopInfo. T...Owen Anderson
2007-11-15More templatization.Owen Anderson
2007-11-14Start the process of making MachineLoopInfo possible by templating Loop.Owen Anderson
2007-08-21Use SmallVector.Devang Patel
2007-08-21No need to hardcode SmallVector size.Devang Patel
2007-08-21Use SmallVector instead of std::vector.Devang Patel
2007-07-19Verify loop info.Devang Patel
2007-06-08Use DominatorTree instead of ETForest.Devang Patel
2007-05-03Drop 'const'Devang Patel
2007-05-02Use 'static const char' instead of 'static const int'.Devang Patel
2007-05-01Do not use typeinfo to identify pass in pass manager.Devang Patel
2007-03-04Speed up Loop::isLCSSAForm by using a hash table instead of a sorted vector.Chris Lattner
2006-12-23For PR950:Reid Spencer
2006-12-07Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling
2006-11-28Removed some of the iostream #includes. Moved towards converting to usingBill Wendling
2006-10-28add a methodChris Lattner
2006-08-29Do not rely on std::sort and std::erase to get list of uniqueDevang Patel
2006-08-27Eliminate RegisterAnalysis. RegisterPass now does all that is necessary.Chris Lattner