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