| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove LoopIndexSplit pass. It is neither maintained nor used by anyone. | Devang Patel | 2010-10-07 | 1 | -33/+0 |
* | more test cleanup | Chris Lattner | 2010-09-02 | 1 | -24/+0 |
* | Print the number of uses of a function in the .ll since it can be informative | Duncan Sands | 2010-09-02 | 1 | -2/+1 |
* | Correct bogus module triple specifications. | Duncan Sands | 2010-08-30 | 2 | -2/+2 |
* | Fix SCEVExpander::visitAddRecExpr so that it remembers the induction variable | Dan Gohman | 2010-07-26 | 1 | -0/+36 |
* | Fix this test. | Dan Gohman | 2010-07-16 | 1 | -1/+1 |
* | Fix the order that SCEVExpander considers add operands in so that | Dan Gohman | 2010-07-15 | 1 | -0/+40 |
* | Fix ScalarEvolution's tripcount computation for chains of loops | Dan Gohman | 2010-06-29 | 1 | -2/+64 |
* | Disable indvars on loops when LoopSimplify form is not available. | Dan Gohman | 2010-06-18 | 1 | -1/+18 |
* | Remove arm_apcscc from the test files. It is the default and doing this | Rafael Espindola | 2010-06-17 | 1 | -1/+1 |
* | Remove the Expr member from IVUsers. Instead of remembering the expression, | Dan Gohman | 2010-04-19 | 1 | -0/+24 |
* | Fix declarations in a few more tests. | Nick Lewycky | 2010-04-17 | 1 | -1/+1 |
* | Teach ScalarEvolution to simplify smax and umax when it can prove | Dan Gohman | 2010-04-13 | 1 | -0/+52 |
* | Teach IndVarSimplify how to eliminate remainder operators where the | Dan Gohman | 2010-04-13 | 1 | -0/+121 |
* | Suppress LinearFunctionTestReplace when the computed backedge-taken | Dan Gohman | 2010-04-12 | 1 | -0/+162 |
* | Re-apply r101000, with a fix: Don't eliminate an icmp which is part of | Dan Gohman | 2010-04-12 | 1 | -0/+84 |
* | Revert 101000, which is breaking self-host builds. | Dan Gohman | 2010-04-12 | 1 | -40/+0 |
* | Teach IndVarSimplify how to eliminate comparisons involving induction | Dan Gohman | 2010-04-11 | 1 | -0/+40 |
* | add newlines at the end of files. | Chris Lattner | 2010-04-07 | 1 | -1/+1 |
* | add integer overflow check for the fp induction variable | Chris Lattner | 2010-04-03 | 1 | -4/+4 |
* | fix PR6761, a miscompilation due to the fp->int IV conversion | Chris Lattner | 2010-04-03 | 1 | -4/+23 |
* | convert to filecheck | Chris Lattner | 2010-04-03 | 1 | -5/+13 |
* | rename feature test. | Chris Lattner | 2010-04-03 | 1 | -0/+0 |
* | actually just remove this, will move the real feature test here. | Chris Lattner | 2010-04-03 | 1 | -35/+0 |
* | rename test since it is a feature test. | Chris Lattner | 2010-04-03 | 1 | -0/+0 |
* | first half of a pass through IndVarSimplify::HandleFloatingPointIV, | Chris Lattner | 2010-04-03 | 1 | -0/+19 |
* | Manually notify ScalarEvolution before making an operand replacement, since | Dan Gohman | 2010-04-02 | 1 | -0/+41 |
* | Make LoopSimplify change conditional branches in loop exiting blocks | Dan Gohman | 2010-02-25 | 1 | -1/+1 |
* | Teach ScalarEvolution how to compute a tripcount for a loop with | Dan Gohman | 2010-02-19 | 8 | -12/+12 |
* | Reapply the new LoopStrengthReduction code, with compile time and | Dan Gohman | 2010-02-12 | 1 | -1/+1 |
* | -disable-output is no longer needed with -analyze. | Dan Gohman | 2010-01-26 | 1 | -1/+1 |
* | Re-implement the main strength-reduction portion of LoopStrengthReduction. | Dan Gohman | 2010-01-21 | 1 | -2/+3 |
* | Use WriteAsOperand instead of getName() to print loop header names, | Dan Gohman | 2010-01-09 | 1 | -1/+1 |
* | Move this test from test/Transforms/IndVarSimplify to | Dan Gohman | 2010-01-05 | 1 | -19/+0 |
* | Make getUniqueExitBlocks's precondition assert more precise, to | Dan Gohman | 2009-12-11 | 1 | -0/+22 |
* | Make opt default to not adding a target data string and update tests that dep... | Kenneth Uildriks | 2009-11-03 | 2 | -0/+2 |
* | Add a testcase for r83011. | Dan Gohman | 2009-09-28 | 1 | -0/+38 |
* | Fix a case where ScalarEvolution was expanding pointer arithmetic | Dan Gohman | 2009-09-26 | 1 | -0/+41 |
* | Change tests from "opt %s" to "opt < %s" so that opt doesn't see the | Dan Gohman | 2009-09-11 | 78 | -80/+80 |
* | Use "opt < %s" instead of "opt %s" so that opt doesn't print the test | Dan Gohman | 2009-09-08 | 1 | -1/+1 |
* | Convert a few more opt | llvm-dis to opt -S. | Dan Gohman | 2009-09-08 | 2 | -2/+2 |
* | Use opt -S instead of piping bitcode output through llvm-dis. | Dan Gohman | 2009-09-08 | 43 | -45/+45 |
* | Change these tests to feed the assembly files to opt directly, instead | Dan Gohman | 2009-09-08 | 82 | -85/+85 |
* | Eliminate uses of %prcontext. | Daniel Dunbar | 2009-09-05 | 1 | -1/+3 |
* | Special-case static allocas in IndVarSimplify's loop invariant | Dan Gohman | 2009-08-25 | 1 | -0/+31 |
* | Generalize ScalarEvolution to be able to analyze GEPs when | Dan Gohman | 2009-08-18 | 1 | -0/+75 |
* | The upper argument of ConstantRange is exclusive, not inclusive. | Dan Gohman | 2009-07-20 | 1 | -0/+27 |
* | Revert the addition of hasNoPointerOverflow to GEPOperator. | Dan Gohman | 2009-07-20 | 1 | -106/+0 |
* | Fill in some holes in ScalarEvolution's loop iteration condition | Dan Gohman | 2009-07-16 | 1 | -0/+38 |
* | Switch invars away from using isTrapping when it really shouldn't be | Eli Friedman | 2009-07-15 | 1 | -0/+19 |