| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a getUniqueExitBlock utility function, similar to getExitBlock, | Dan Gohman | 2009-06-25 | 1 | -0/+10 |
* | Get rid of a static boolean. | Owen Anderson | 2009-06-24 | 1 | -0/+1 |
* | Scaffolding for LDA pass. | Andreas Bolka | 2009-06-24 | 2 | -0/+60 |
* | Remove an obsolete comment and fix some 80-column violations. | Dan Gohman | 2009-06-24 | 1 | -8/+10 |
* | Extend ScalarEvolution's multiple-exit support to compute exact | Dan Gohman | 2009-06-24 | 1 | -0/+6 |
* | Move the special cases for constants out of getUnknown and into | Dan Gohman | 2009-06-24 | 1 | -1/+1 |
* | Add an isAllOnesValue utility function, similar to isZero and isOne. | Dan Gohman | 2009-06-24 | 1 | -0/+5 |
* | It is not a good idea to have data member's name match argument's name. In fa... | Devang Patel | 2009-06-23 | 1 | -11/+11 |
* | Add DISubprogram::getReturnTypeName() | Devang Patel | 2009-06-23 | 1 | -0/+13 |
* | Remove the parent pointer from SCEV, since it did not end up being needed. | Owen Anderson | 2009-06-22 | 2 | -44/+27 |
* | SCEVHandle is no more! | Owen Anderson | 2009-06-22 | 5 | -213/+141 |
* | Banish global state from ScalarEvolution! SCEV uniquing is now done by table... | Owen Anderson | 2009-06-22 | 2 | -31/+29 |
* | Add a getUMinFromMismatchedTypes helper function. | Dan Gohman | 2009-06-22 | 1 | -0/+6 |
* | Factor out code for computing umin and smin for SCEV expressions into | Dan Gohman | 2009-06-22 | 1 | -0/+2 |
* | Teach ScalarEvolution how to analyze loops with multiple exit | Dan Gohman | 2009-06-22 | 1 | -0/+31 |
* | Fix ScalarEvolution's backedge-taken count computations to check for | Dan Gohman | 2009-06-21 | 1 | -0/+7 |
* | Make GetMinTrailingZeros a member function of ScalarEvolution, | Dan Gohman | 2009-06-19 | 1 | -0/+14 |
* | Add a parent pointer to SCEV, in preparation for getting rid of the global un... | Owen Anderson | 2009-06-18 | 2 | -26/+44 |
* | Remove the code from IVUsers that attempted to handle | Dan Gohman | 2009-06-18 | 1 | -18/+5 |
* | Support vector casts in more places, fixing a variety of assertion | Dan Gohman | 2009-06-15 | 1 | -0/+1 |
* | Specialize DenseMapInfo for SCEVHandle, so that SCEVHandles can be | Dan Gohman | 2009-06-14 | 1 | -0/+28 |
* | Convert several parts of the ScalarEvolution framework to use | Dan Gohman | 2009-06-14 | 2 | -22/+22 |
* | Add a ScalarEvolution::getAnyExtendExpr utility function for performing | Dan Gohman | 2009-06-13 | 1 | -0/+7 |
* | Rename UnknownValue to CouldNotCompute, since it holds an instance of | Dan Gohman | 2009-06-06 | 1 | -7/+7 |
* | Move SCEVExpander::getOrInsertCanonicalInductionVariable out of line. | Dan Gohman | 2009-06-05 | 1 | -6/+1 |
* | PR4317: Handle splits where the new block is unreachable correctly in | Eli Friedman | 2009-06-03 | 1 | -2/+7 |
* | Change ConstantFoldConstantExpression to accept a null | Dan Gohman | 2009-06-02 | 1 | -1/+1 |
* | Delete an unnecessary forward declaration. | Dan Gohman | 2009-06-02 | 1 | -1/+0 |
* | Give SCEVNaryExpr a doxygen comment. | Dan Gohman | 2009-05-26 | 1 | -0/+4 |
* | Various comment fixes. | Dan Gohman | 2009-05-24 | 1 | -2/+2 |
* | Change ScalarEvolution::getSCEVAtScope to always return the original value | Dan Gohman | 2009-05-24 | 1 | -2/+2 |
* | Generalize SCEVExpander::visitAddRecExpr's GEP persuit, and avoid | Dan Gohman | 2009-05-24 | 1 | -2/+2 |
* | The rewriter may hold references to instructions that are deleted because the... | Edwin Török | 2009-05-24 | 1 | -1/+1 |
* | Fix broken logic in DominatorTreeBase::Split. Part of PR4238. | Eli Friedman | 2009-05-21 | 1 | -40/+7 |
* | Fix indentation. | Eli Friedman | 2009-05-21 | 1 | -20/+20 |
* | When comparing DominanceFrontier's, advance iterators | Duncan Sands | 2009-05-20 | 1 | -3/+4 |
* | Make SCEVCallbackVH a private nested class inside ScalarEvolution, as | Dan Gohman | 2009-05-19 | 1 | -10/+10 |
* | Teach SCEVExpander to expand arithmetic involving pointers into GEP | Dan Gohman | 2009-05-19 | 2 | -7/+11 |
* | Add some comments noting how IndVarSimplify facilitates | Dan Gohman | 2009-05-19 | 1 | -0/+6 |
* | Update a comment to reflect changes in the surrounding code. | Dan Gohman | 2009-05-18 | 1 | -1/+1 |
* | Make ScalarEvolution::isLoopGuardedByCond work even when the edge | Dan Gohman | 2009-05-18 | 1 | -0/+4 |
* | Add an isOne() utility function to ScalarEvolution, similar to isZero() | Dan Gohman | 2009-05-18 | 1 | -0/+4 |
* | Non-functionality changes: | Bill Wendling | 2009-05-14 | 1 | -13/+40 |
* | Add three new helper routines, getNoopOrZeroExtend, | Dan Gohman | 2009-05-13 | 1 | -0/+15 |
* | More MSVC fixes -- class/struct conflicts. | Bill Wendling | 2009-05-12 | 1 | -1/+1 |
* | Factor the code for collecting IV users out of LSR into an IVUsers class, | Dan Gohman | 2009-05-12 | 1 | -0/+235 |
* | Fix another bug in r71252. This code supports GetElementPtr | Dan Gohman | 2009-05-08 | 1 | -1/+1 |
* | Add memoization for getSCEVAtScope results for instructions | Dan Gohman | 2009-05-08 | 1 | -0/+5 |
* | Make the SCEV* form of getSCEVAtScope public, to allow ScalarEvolution | Dan Gohman | 2009-05-08 | 1 | -5/+4 |
* | Factor out the code for creating SCEVs for GEPs into a | Dan Gohman | 2009-05-08 | 1 | -0/+4 |