| Commit message (Expand) | Author | Age | Files | Lines |
* | split dom frontier handling stuff out to its own DominanceFrontier header, | Chris Lattner | 2011-01-02 | 1 | -0/+2 |
* | Small optimization to speed up replacementPreservesLCSSAForm. | Duncan Sands | 2010-12-28 | 1 | -0/+4 |
* | Change the basic block map in LoopInfo from a std::map to a DenseMap. This is... | Cameron Zwarich | 2010-11-30 | 1 | -4/+5 |
* | Simplify, no functionality change. | Duncan Sands | 2010-11-19 | 1 | -3/+1 |
* | Factor code for testing whether replacing one value with another | Duncan Sands | 2010-11-18 | 1 | -0/+19 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -1/+3 |
* | pull a simple method out of LICM into a new | Chris Lattner | 2010-09-06 | 1 | -4/+3 |
* | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 2010-08-06 | 1 | -1/+1 |
* | Revert r110396 to fix buildbots. | Owen Anderson | 2010-08-06 | 1 | -1/+1 |
* | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 2010-08-05 | 1 | -1/+1 |
* | Eliminate getCanonicalInductionVariableIncrement's last user and | Dan Gohman | 2010-07-23 | 1 | -6/+0 |
* | Implement loop splitting analysis. | Jakob Stoklund Olesen | 2010-07-20 | 1 | -0/+6 |
* | Switched to array_pod_sort as per Chris's suggestion. | Lang Hames | 2010-07-17 | 1 | -1/+2 |
* | LoopSplitter - intended to split live intervals over loop boundaries. | Lang Hames | 2010-07-17 | 1 | -3/+6 |
* | two more cases of reuse result of operator*, found by inspection | Gabor Greif | 2010-07-09 | 1 | -5/+8 |
* | another case of reuse result of operator*, it is expensive to recompute | Gabor Greif | 2010-07-09 | 1 | -4/+6 |
* | reuse result of operator*, it is expensive to recompute | Gabor Greif | 2010-07-09 | 1 | -3/+5 |
* | Split out the code for finding a unique loop predecessor from | Dan Gohman | 2010-06-22 | 1 | -7/+21 |
* | Add a DominatorTree argument to isLCSSA so that it doesn't have to | Dan Gohman | 2010-03-10 | 1 | -1/+1 |
* | Rename a variable to avoid a -Wshadow warning. | Dan Gohman | 2010-02-22 | 1 | -1/+1 |
* | Mention IndVarSimplify in the comment by getSmallConstantTripCount, as | Dan Gohman | 2010-02-09 | 1 | -0/+4 |
* | Restore dump() methods to Loop and MachineLoop. | Dan Gohman | 2010-01-05 | 1 | -1/+3 |
* | Remove dump routine and the associated Debug.h from a header. Patch up | David Greene | 2009-12-23 | 1 | -5/+0 |
* | Convert debug messages to use dbgs(). Generally this means | David Greene | 2009-12-23 | 1 | -1/+2 |
* | Add Loop contains utility methods for testing whether a loop | Dan Gohman | 2009-12-18 | 1 | -1/+17 |
* | Reapply LoopStrengthReduce and IVUsers cleanups, excluding the part | Dan Gohman | 2009-12-18 | 1 | -7/+0 |
* | Revert 91280-91283, 91286-91289, 91291, 91293, 91295-91296. It apparently int... | Evan Cheng | 2009-12-17 | 1 | -0/+7 |
* | Drop Loop::isNotAlreadyContainedIn in favor of Loop::contains. The | Dan Gohman | 2009-12-14 | 1 | -7/+0 |
* | Make getUniqueExitBlocks's precondition assert more precise, to | Dan Gohman | 2009-12-11 | 1 | -1/+1 |
* | Make Loop::getLoopLatch() work on loops which don't have preheaders, as | Dan Gohman | 2009-11-20 | 1 | -15/+5 |
* | Fix an 80-column violation. | Dan Gohman | 2009-11-09 | 1 | -2/+2 |
* | Factor out the predicate code for loopsimplify form exit blocks into | Dan Gohman | 2009-11-05 | 1 | -0/+4 |
* | Rename isLoopExit to isLoopExiting, for consistency with the wording | Dan Gohman | 2009-10-24 | 1 | -3/+3 |
* | Remove a redundant assert. | Dan Gohman | 2009-09-27 | 1 | -1/+0 |
* | Add a comment describing natural loops. | Dan Gohman | 2009-09-26 | 1 | -1/+2 |
* | Fix apostrophos. | Dan Gohman | 2009-09-15 | 1 | -2/+2 |
* | Re-apply r80926, with fixes: keep the domtree informed of new blocks | Dan Gohman | 2009-09-08 | 1 | -5/+78 |
* | Revert r80926. It causes loop unswitch assertion and slow down some JIT tests... | Evan Cheng | 2009-09-06 | 1 | -68/+4 |
* | Add a verifyAnalysis to LoopInfo, LoopSimplify, and LCSSA form that verify | Dan Gohman | 2009-09-03 | 1 | -4/+68 |
* | Move getUniqueExitBlocks from LoopBase to Loop, since they depend on | Dan Gohman | 2009-09-03 | 1 | -68/+10 |
* | Minor code simplification. | Dan Gohman | 2009-08-27 | 1 | -5/+2 |
* | Implemented comments from Daniel Dunbar. | Andreas Neustifter | 2009-08-26 | 1 | -1/+0 |
* | convert LoopInfo.h and GraphWriter.h to use raw_ostream | Chris Lattner | 2009-08-23 | 1 | -2/+1 |
* | Change Pass::print to take a raw ostream instead of std::ostream, | Chris Lattner | 2009-08-23 | 1 | -1/+1 |
* | eliminate the std::ostream form of WriteAsOperand and update clients. | Chris Lattner | 2009-08-23 | 1 | -12/+6 |
* | Some ProfileInfo cleanups. | Daniel Dunbar | 2009-08-08 | 1 | -1/+1 |
* | Add a basic static ProfileInfo provider (ProfileEstimatorPass). | Daniel Dunbar | 2009-08-08 | 1 | -0/+19 |
* | Add an isLoopSimplifyForm() predicate, following the example of | Dan Gohman | 2009-07-16 | 1 | -0/+5 |
* | Fix a typo in a comment that Duncan noticed. | Dan Gohman | 2009-07-15 | 1 | -1/+1 |
* | Make makeLoopInvariant report whether it made any changes or not, | Dan Gohman | 2009-07-15 | 1 | -2/+4 |