summaryrefslogtreecommitdiff
path: root/test/Transforms/IndVarSimplify
Commit message (Expand)AuthorAge
* Re-implement the main strength-reduction portion of LoopStrengthReduction.Dan Gohman2010-01-21
* Use WriteAsOperand instead of getName() to print loop header names,Dan Gohman2010-01-09
* Move this test from test/Transforms/IndVarSimplify toDan Gohman2010-01-05
* Make getUniqueExitBlocks's precondition assert more precise, toDan Gohman2009-12-11
* Make opt default to not adding a target data string and update tests that dep...Kenneth Uildriks2009-11-03
* Add a testcase for r83011.Dan Gohman2009-09-28
* Fix a case where ScalarEvolution was expanding pointer arithmeticDan Gohman2009-09-26
* Change tests from "opt %s" to "opt < %s" so that opt doesn't see theDan Gohman2009-09-11
* Use "opt < %s" instead of "opt %s" so that opt doesn't print the testDan Gohman2009-09-08
* Convert a few more opt | llvm-dis to opt -S.Dan Gohman2009-09-08
* Use opt -S instead of piping bitcode output through llvm-dis.Dan Gohman2009-09-08
* Change these tests to feed the assembly files to opt directly, insteadDan Gohman2009-09-08
* Eliminate uses of %prcontext.Daniel Dunbar2009-09-05
* Special-case static allocas in IndVarSimplify's loop invariantDan Gohman2009-08-25
* Generalize ScalarEvolution to be able to analyze GEPs whenDan Gohman2009-08-18
* The upper argument of ConstantRange is exclusive, not inclusive.Dan Gohman2009-07-20
* Revert the addition of hasNoPointerOverflow to GEPOperator.Dan Gohman2009-07-20
* Fill in some holes in ScalarEvolution's loop iteration conditionDan Gohman2009-07-16
* Switch invars away from using isTrapping when it really shouldn't be Eli Friedman2009-07-15
* Fix the expansion of umax and smax in the case where one or more ofDan Gohman2009-07-14
* Add a testcase for a bug fixed by r75634.Dan Gohman2009-07-14
* Update LoopSimplify and LoopUnswitch to use the new makeLoopInvariantDan Gohman2009-07-14
* Fix indvars to not assume that a loop with a single unique exitDan Gohman2009-07-14
* Reapply 75252, with a fix to avoid the infinite recursion case. TheDan Gohman2009-07-13
* Revert r75252 which was causing some crashes at compile time.Nick Lewycky2009-07-11
* Generalize ScalarEvolution's cast-folding code to support more kindsDan Gohman2009-07-10
* Don't cache PHI exit values from exhaustive evaluations, becauseDan Gohman2009-06-29
* When a value is used multiple times within a single PHI, instructionsDan Gohman2009-06-27
* Add some testcases for some of the recent ScalarEvolution bug fixes.Dan Gohman2009-06-26
* Simplify [su]max(MAX, n) to MAX. This comes up in loop tripcountDan Gohman2009-06-24
* When inserting code into a loop preheader, insert it before theDan Gohman2009-06-24
* Fix ScalarEvolution's backedge-taken count computations to check forDan Gohman2009-06-21
* Generalize isLoopGuardedByCond's checking to consider twoDan Gohman2009-06-20
* Remove the code from IVUsers that attempted to handleDan Gohman2009-06-18
* Add -disable-output to a bunch of tests that don't care about the output.Dan Gohman2009-06-17
* Instcombine's ShrinkDemandedConstant may strip bits out of constants,Dan Gohman2009-06-16
* Implement more aggressive folding of add operand lists whenDan Gohman2009-06-14
* Teach SCEVExpander's visitAddRecExpr to reuse an existing canonicalDan Gohman2009-06-13
* Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman2009-06-04
* Don't attempt to simplify an non-affine IV expression if it can'tDan Gohman2009-06-03
* Teach SCEVExpander to avoid creating over-indexed GEP indices whenDan Gohman2009-05-27
* In cases where a pointer value is an operand of a multiplication orDan Gohman2009-05-26
* When rewriting the loop exit test with the canonical induction variable,Dan Gohman2009-05-24
* Generalize SCEVExpander::visitAddRecExpr's GEP persuit, and avoidDan Gohman2009-05-24
* The rewriter may hold references to instructions that are deleted because the...Torok Edwin2009-05-24
* Teach IndVarSimplify's FixUsesBeforeDefs to handle InvokeInsts byDan Gohman2009-05-22
* Fix a thinko in the code that adapted SCEVMulExpr operands forDan Gohman2009-05-22
* Teach SCEVExpander to expand arithmetic involving pointers into GEPDan Gohman2009-05-19
* Add nounwind to a few tests.Dan Gohman2009-05-18
* Factor the code for collecting IV users out of LSR into an IVUsers class,Dan Gohman2009-05-12