| Commit message (Expand) | Author | Age | Files | Lines |
* | Put all IVUsers in the processed set. Allow querying IVUsers with isIVUserOrO... | Andrew Trick | 2012-01-06 | 1 | -3/+6 |
* | Slightly more useful tracing. | Andrew Trick | 2011-10-13 | 1 | -1/+2 |
* | Teach IVUsers to stop at non-affine expressions unless they are both | Dan Gohman | 2011-07-01 | 1 | -7/+10 |
* | indvars --disable-iv-rewrite: sever ties with IVUsers. | Andrew Trick | 2011-06-28 | 1 | -15/+0 |
* | IVUsers no longer needs to record the phis. | Andrew Trick | 2011-06-21 | 1 | -8/+7 |
* | Update this comment. | Dan Gohman | 2011-05-27 | 1 | -1/+3 |
* | indvars: Prototyping Sign/ZeroExtend elimination without canonical IVs. | Andrew Trick | 2011-05-20 | 1 | -7/+7 |
* | indvars: Added DisableIVRewrite and WidenIVs. | Andrew Trick | 2011-05-04 | 1 | -0/+15 |
* | Avoid creating canonical induction variables for non-native types. | Andrew Trick | 2011-03-18 | 1 | -1/+6 |
* | split dom frontier handling stuff out to its own DominanceFrontier header, | Chris Lattner | 2011-01-02 | 1 | -0/+1 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -1/+2 |
* | Begin adding static dependence information to passes, which will allow us to | Owen Anderson | 2010-10-12 | 1 | -1/+7 |
* | Now with fewer extraneous semicolons! | Owen Anderson | 2010-10-07 | 1 | -1/+1 |
* | stop forcing a noop AssemblyAnnotationWriter to silence #uses | Chris Lattner | 2010-09-02 | 1 | -5/+1 |
* | Revert 112442 and 112440 until the compile time problems introduced | Dan Gohman | 2010-09-01 | 1 | -89/+78 |
* | Make IVUsers iterative instead of recursive. | Dan Gohman | 2010-08-29 | 1 | -78/+89 |
* | Tweak IVUsers' concept of "interesting" to exclude add recurrences | Dan Gohman | 2010-08-17 | 1 | -12/+16 |
* | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 2010-08-06 | 1 | -1/+1 |
* | Revert r110396 to fix buildbots. | Owen Anderson | 2010-08-06 | 1 | -1/+1 |
* | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 2010-08-05 | 1 | -1/+1 |
* | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson | 2010-07-21 | 1 | -2/+1 |
* | Remove the Expr member from IVUsers. Instead of remembering the expression, | Dan Gohman | 2010-04-19 | 1 | -29/+27 |
* | Add a cast to void to show that the return value is being | Dan Gohman | 2010-04-11 | 1 | -1/+1 |
* | Delete a dead check. | Dan Gohman | 2010-04-11 | 1 | -1/+0 |
* | Delete dead code. | Dan Gohman | 2010-04-11 | 1 | -26/+0 |
* | Fix a bug in IVUsers which was permitting non-affine addrecs to | Dan Gohman | 2010-04-09 | 1 | -2/+2 |
* | Generalize IVUsers to track arbitrary expressions rather than expressions | Dan Gohman | 2010-04-07 | 1 | -160/+82 |
* | Add a const qualifier. | Dan Gohman | 2010-04-06 | 1 | -1/+1 |
* | Spelling fixes. | Dan Gohman | 2010-03-01 | 1 | -2/+2 |
* | Remove unused variables and parameters. | Dan Gohman | 2010-02-22 | 1 | -3/+2 |
* | Simplify this code; no need for a custom subclass if it doesn't need | Dan Gohman | 2010-02-14 | 1 | -8/+3 |
* | Reapply the new LoopStrengthReduction code, with compile time and | Dan Gohman | 2010-02-12 | 1 | -123/+72 |
* | Use an AssemblyAnnotatorWriter to clean up IVUsers' debug output. | Dan Gohman | 2010-02-10 | 1 | -1/+10 |
* | Add "dump" method to IVUsersOneStride. | Bill Wendling | 2010-02-01 | 1 | -0/+23 |
* | Re-implement the main strength-reduction portion of LoopStrengthReduction. | Dan Gohman | 2010-01-21 | 1 | -6/+0 |
* | Add a new helper function to IVUsers for returning the "canonical" | Dan Gohman | 2010-01-19 | 1 | -0/+13 |
* | Use WriteAsOperand instead of getName() to print loop header names, | Dan Gohman | 2010-01-09 | 1 | -2/+3 |
* | Convert debug messages to use dbgs(). Generally this means | David Greene | 2009-12-23 | 1 | -5/+5 |
* | Add Loop contains utility methods for testing whether a loop | Dan Gohman | 2009-12-18 | 1 | -4/+4 |
* | Reapply LoopStrengthReduce and IVUsers cleanups, excluding the part | Dan Gohman | 2009-12-18 | 1 | -1/+2 |
* | Revert 91280-91283, 91286-91289, 91291, 91293, 91295-91296. It apparently int... | Evan Cheng | 2009-12-17 | 1 | -3/+2 |
* | Clear the Processed set when it is no longer used, and clear the | Dan Gohman | 2009-12-14 | 1 | -1/+2 |
* | Fix a thinko; isNotAlreadyContainedIn had a built-in negative, so the | Dan Gohman | 2009-12-14 | 1 | -1/+1 |
* | Drop Loop::isNotAlreadyContainedIn in favor of Loop::contains. The | Dan Gohman | 2009-12-14 | 1 | -1/+1 |
* | enable iv-users simplification by default | Jim Grosbach | 2009-11-23 | 1 | -7/+1 |
* | Teach IVUsers to keep things simpler and track loop-invariant strides only | Jim Grosbach | 2009-11-19 | 1 | -0/+10 |
* | - Teach LSR to avoid changing cmp iv stride if it will create an immediate that | Evan Cheng | 2009-11-12 | 1 | -0/+12 |
* | Fix IVUsers to avoid assuming that the loop has a unique backedge. | Dan Gohman | 2009-11-05 | 1 | -0/+2 |
* | Instead of testing whether an instruction dominates the loop preheader, | Dan Gohman | 2009-09-27 | 1 | -3/+3 |
* | Remove a redundant #include. | Dan Gohman | 2009-09-27 | 1 | -1/+0 |