| Commit message (Expand) | Author | Age | Files | Lines |
* | Split the Add, Sub, and Mul instruction opcodes into separate | Dan Gohman | 2009-06-04 | 3 | -6/+6 |
* | Teach BasicAliasAnalysis to understand constant gep indices that fall | Dan Gohman | 2009-05-27 | 1 | -0/+27 |
* | Teach ScalarEvolution to recognize x^-1 in the case where non-demanded | Dan Gohman | 2009-05-18 | 1 | -0/+8 |
* | Make ScalarEvolution::isLoopGuardedByCond work even when the edge | Dan Gohman | 2009-05-18 | 1 | -1/+1 |
* | Add nounwind to a few tests. | Dan Gohman | 2009-05-18 | 1 | -1/+1 |
* | Allow scalar evolution to compute iteration counts for loops with a | Eli Friedman | 2009-05-09 | 1 | -0/+27 |
* | Fix bogus overflow checks by replacing them with actual | Dan Gohman | 2009-05-08 | 1 | -0/+10 |
* | Fold trunc casts into add-recurrence expressions, allowing the | Dan Gohman | 2009-05-08 | 1 | -0/+24 |
* | When printing a SCEVUnknown with pointer type, don't print an | Dan Gohman | 2009-05-01 | 1 | -1/+1 |
* | Extend ScalarEvolution's getBackedgeTakenCount to be able to | Dan Gohman | 2009-04-30 | 3 | -1/+106 |
* | Generalize the cast-of-addrec folding to handle folding of SCEVs like | Dan Gohman | 2009-04-29 | 2 | -0/+131 |
* | Fix this test to match the new output from scalar-evolution. | Dan Gohman | 2009-04-29 | 1 | -1/+1 |
* | Include the source type in SCEV cast expression debug output, and | Dan Gohman | 2009-04-29 | 1 | -2/+3 |
* | Fix a grammaro in a comment. | Dan Gohman | 2009-04-28 | 1 | -1/+1 |
* | Simplify trunc(extend(x)) in SCEVs, just for completeness. Also fix some odd | Nick Lewycky | 2009-04-23 | 1 | -0/+37 |
* | Testcase for PR3909. | Owen Anderson | 2009-04-23 | 1 | -0/+30 |
* | When turning (ashr(shl(x, n), n)) into sext(trunc(x)), the width of the | Dan Gohman | 2009-04-21 | 1 | -0/+29 |
* | change this to test for an alias result more directly. | Chris Lattner | 2009-03-16 | 1 | -3/+7 |
* | Add a replacement for 2009-02-12-GEPNoalias.ll that works without -debug. | Nick Lewycky | 2009-03-14 | 1 | -0/+9 |
* | remove a buggy test, it is not ok to use -debug in RUN line. | Chris Lattner | 2009-03-13 | 1 | -196/+0 |
* | Update this test for the LoopInfo::print changes. | Dan Gohman | 2009-02-27 | 1 | -1/+1 |
* | Rename ScalarEvolution's getIterationCount to getBackedgeTakenCount, | Dan Gohman | 2009-02-24 | 15 | -15/+15 |
* | BasicAA was making the assumption that a local allocation which hadn't escaped | Nick Lewycky | 2009-02-13 | 1 | -0/+196 |
* | Finish making AliasAnalysis aware of the fact that most atomic intrinsics onl... | Owen Anderson | 2009-02-04 | 1 | -0/+14 |
* | Wind SCEV back in time, to Nov 18th. This 'fixes' PR3275, PR3294, PR3295, | Nick Lewycky | 2009-01-13 | 7 | -0/+7 |
* | Don't try to analyze this "backward" case. This is overly conservative | Nick Lewycky | 2009-01-02 | 1 | -0/+40 |
* | Check that the function prototypes are correct before assuming that the | Nick Lewycky | 2008-12-27 | 1 | -0/+19 |
* | Resubmit support for the 'nocapture' attribute. | Nick Lewycky | 2008-12-19 | 1 | -0/+14 |
* | Remove empty test. | Bill Wendling | 2008-12-16 | 1 | -0/+0 |
* | Temporarily revert r61019, r61030, and r61040. These were breaking LLVM Release | Bill Wendling | 2008-12-16 | 1 | -13/+0 |
* | Generalize support for analyzing loops to include SLE/SGE loop exit conditions | Nick Lewycky | 2008-12-16 | 4 | -2/+41 |
* | Teach basicaa to use the nocapture attribute when possible. When the | Chris Lattner | 2008-12-15 | 1 | -0/+13 |
* | Revert my re-instated reverted commit, fixes the bootstrap build on x86-64 li... | Nick Lewycky | 2008-12-12 | 2 | -0/+2 |
* | Sneaky, sneaky: move the -1 to the outside of the SMax. Reinstate the | Nick Lewycky | 2008-12-11 | 2 | -1/+27 |
* | Allow basicaa to walk through geps with identical indices in | Chris Lattner | 2008-12-10 | 1 | -0/+16 |
* | xfail this for now. | Evan Cheng | 2008-12-09 | 1 | -0/+1 |
* | It's easy to handle SLE/SGE when the loop has a unit stride. | Nick Lewycky | 2008-12-09 | 1 | -0/+24 |
* | Extend the 'noalias' attribute to function return values. This is intended to | Nick Lewycky | 2008-11-24 | 1 | -0/+12 |
* | Add a utility function that detects whether a loop is guaranteed to be finite. | Nick Lewycky | 2008-11-18 | 3 | -0/+91 |
* | Don't brute-force analyze cubic or higher polynomials. | Nick Lewycky | 2008-11-16 | 1 | -0/+19 |
* | Don't crash analyzing certain quadratics (addrec of {X,+,Y,+,1}). | Nick Lewycky | 2008-11-03 | 1 | -0/+21 |
* | Rationalize the names of passes that print information: | Duncan Sands | 2008-09-23 | 2 | -2/+4 |
* | Remove the MarkModRef pass (use AddReadAttrs instead). | Duncan Sands | 2008-09-19 | 1 | -1104/+0 |
* | Add a new pass AddReadAttrs which works out which functions | Duncan Sands | 2008-09-19 | 4 | -38/+0 |
* | Teach -callgraph to always print the callgraph (as the | Duncan Sands | 2008-09-19 | 2 | -2/+2 |
* | Finally re-apply r46959. This is made feasible by the combination | Dan Gohman | 2008-09-16 | 2 | -3/+4 |
* | Fix spacing in the grep line for this test, following the recent | Dan Gohman | 2008-09-16 | 1 | -1/+1 |
* | Teach ScalarEvolution to consider loop preheaders in the search for | Dan Gohman | 2008-09-15 | 2 | -0/+234 |
* | Fix WriteAsOperand to not emit a leading space character. Adjust | Dan Gohman | 2008-09-14 | 10 | -10/+10 |
* | Fix PR2792: treat volatile loads as writing memory somewhere. | Duncan Sands | 2008-09-13 | 1 | -0/+9 |