aboutsummaryrefslogtreecommitdiffstats
path: root/test/Analysis/ScalarEvolution
Commit message (Expand)AuthorAgeFilesLines
* Remove support for parsing the "type i32" syntax for defining a numberedChris Lattner2011-06-192-28/+28
* rip out a ton of intrinsic modernization logic from AutoUpgrade.cpp, which isChris Lattner2011-06-182-50/+49
* Remove support for using "foo" as symbols instead of %"foo". This is ancientChris Lattner2011-06-173-3/+1
* Test case and comment for PR9633.Andrew Trick2011-04-271-0/+33
* Propagate SCEV no-wrap flags whenever possible.Andrew Trick2011-03-153-14/+21
* When SCEV can determine the loop test is X < X, set ExactBECount=0.Andrew Trick2011-03-091-0/+34
* teach SCEV that the scale and addition of an inbounds gep don't NSW.Chris Lattner2011-02-132-4/+31
* Per discussion with Dan G, inbounds geps *certainly* can haveChris Lattner2011-02-111-2/+2
* Simplify some code with no functionality change. Make the test a lot moreNick Lewycky2011-01-231-15/+19
* Use value ranges to fold ext(trunc) in SCEV when possible.Nick Lewycky2011-01-231-0/+34
* Implement requiredTransitiveTobias Grosser2011-01-201-0/+24
* Similarly, analyze truncate through multiply.Nick Lewycky2011-01-191-0/+8
* Add a missed SCEV fold that is required to continue analyzing the IR producedNick Lewycky2011-01-191-1/+9
* Add a missing SCEV simplification sext(zext x) --> zext x.Nick Lewycky2011-01-191-0/+8
* Revert the testcase from the previous reverted commit.Eric Christopher2011-01-111-2/+0
* add a testcase I missed in previous commit.Chris Lattner2011-01-091-0/+2
* teach SCEV analysis of PHI nodes that PHI recurences formedChris Lattner2011-01-091-2/+40
* reduce indentation. Print <nuw> and <nsw> when dumping SCEV AddRec'sChris Lattner2011-01-091-1/+1
* remove some noise from tests.Chris Lattner2010-09-021-1/+1
* When analyzing loop exit conditions combined with and and or, don'tDan Gohman2010-08-111-2/+40
* Revert the part of r107257 which introduced new logic for usingDan Gohman2010-06-301-3/+4
* Add a testcase for scev-aa's new capability.Dan Gohman2010-06-301-3/+24
* Allow "exhaustive" trip count evaluation on phi nodes with allDan Gohman2010-06-221-0/+19
* Fix ScalarEvolution's "exhaustive" trip count evaluation code to avoidDan Gohman2010-06-191-0/+31
* Revert r106304 (105548 and friends), which are the SCEVComplexityCompareDan Gohman2010-06-181-1/+1
* Reapply 105540, 105542, and 105548, and revert r105732.Dan Gohman2010-06-181-1/+1
* Workaround SCEV non-determinism on this test, for now, to get buildbots back toDaniel Dunbar2010-06-091-1/+1
* Optimize ScalarEvolution's SCEVComplexityCompare predicate: don't goDan Gohman2010-06-071-1/+1
* Add a comment to this test.Dan Gohman2010-04-261-0/+3
* ScalarEvolution support for <= and >= loops.Dan Gohman2010-04-244-4/+31
* Don't attempt to analyze values which are obviously undef. This fixes someDan Gohman2010-04-221-0/+39
* Generalize ScalarEvolution's PHI analysis to handle loops that don'tDan Gohman2010-04-121-0/+29
* Avoid analyzing instructions in blocks not reachable from the entry block.Dan Gohman2010-03-091-0/+13
* Teach ScalarEvolution how to compute a tripcount for a loop withDan Gohman2010-02-191-0/+76
* -disable-output is no longer needed with -analyze.Dan Gohman2010-01-2653-54/+54
* Fix the the ceiling-division used in computing the MaxBECount so that it doesn'tDan Gohman2010-01-262-2/+411
* Use WriteAsOperand instead of getName() to print loop header names,Dan Gohman2010-01-0918-27/+27
* Add a comment about A[i+(j+1)].Dan Gohman2009-12-011-1/+1
* update status of this. basicaa is much improved now,Chris Lattner2009-11-261-2/+2
* Make opt default to not adding a target data string and update tests that dep...Kenneth Uildriks2009-11-031-0/+1
* Convert Analysis tests to FileCheck in regards to PR5307.Edward O'Callaghan2009-10-275-7/+17
* Teach ScalarEvolution how to reason about no-wrap flags on loopsDan Gohman2009-09-171-0/+76
* Change tests from "opt %s" to "opt < %s" so that opt doesn't see theDan Gohman2009-09-1160-61/+61
* Use opt -S instead of piping bitcode output through llvm-dis.Dan Gohman2009-09-083-3/+3
* Change these tests to feed the assembly files to opt directly, insteadDan Gohman2009-09-0860-61/+61
* Create a ScalarEvolution-based AliasAnalysis implementation.Dan Gohman2009-08-261-0/+194
* Loosen up the regex for this test so that it doesn't implicitlyDan Gohman2009-08-191-1/+3
* Make LLVM Assembly dramatically easier to read by aligning the comments,Dan Gohman2009-08-121-1/+1
* Change the assembly syntax for nsw, nuw, and exact, putting themDan Gohman2009-07-271-1/+1
* When attempting to sign-extend an addrec by interpretingDan Gohman2009-07-251-0/+74