aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/IVUsers.cpp
Commit message (Expand)AuthorAgeFilesLines
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-1/+2
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-121-1/+7
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* stop forcing a noop AssemblyAnnotationWriter to silence #usesChris Lattner2010-09-021-5/+1
* Revert 112442 and 112440 until the compile time problems introducedDan Gohman2010-09-011-89/+78
* Make IVUsers iterative instead of recursive.Dan Gohman2010-08-291-78/+89
* Tweak IVUsers' concept of "interesting" to exclude add recurrencesDan Gohman2010-08-171-12/+16
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-1/+1
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-211-2/+1
* Remove the Expr member from IVUsers. Instead of remembering the expression,Dan Gohman2010-04-191-29/+27
* Add a cast to void to show that the return value is beingDan Gohman2010-04-111-1/+1
* Delete a dead check.Dan Gohman2010-04-111-1/+0
* Delete dead code.Dan Gohman2010-04-111-26/+0
* Fix a bug in IVUsers which was permitting non-affine addrecs toDan Gohman2010-04-091-2/+2
* Generalize IVUsers to track arbitrary expressions rather than expressionsDan Gohman2010-04-071-160/+82
* Add a const qualifier.Dan Gohman2010-04-061-1/+1
* Spelling fixes.Dan Gohman2010-03-011-2/+2
* Remove unused variables and parameters.Dan Gohman2010-02-221-3/+2
* Simplify this code; no need for a custom subclass if it doesn't needDan Gohman2010-02-141-8/+3
* Reapply the new LoopStrengthReduction code, with compile time andDan Gohman2010-02-121-123/+72
* Use an AssemblyAnnotatorWriter to clean up IVUsers' debug output.Dan Gohman2010-02-101-1/+10
* Add "dump" method to IVUsersOneStride.Bill Wendling2010-02-011-0/+23
* Re-implement the main strength-reduction portion of LoopStrengthReduction.Dan Gohman2010-01-211-6/+0
* Add a new helper function to IVUsers for returning the "canonical"Dan Gohman2010-01-191-0/+13
* Use WriteAsOperand instead of getName() to print loop header names,Dan Gohman2010-01-091-2/+3
* Convert debug messages to use dbgs(). Generally this meansDavid Greene2009-12-231-5/+5
* Add Loop contains utility methods for testing whether a loopDan Gohman2009-12-181-4/+4
* Reapply LoopStrengthReduce and IVUsers cleanups, excluding the partDan Gohman2009-12-181-1/+2
* Revert 91280-91283, 91286-91289, 91291, 91293, 91295-91296. It apparently int...Evan Cheng2009-12-171-3/+2
* Clear the Processed set when it is no longer used, and clear theDan Gohman2009-12-141-1/+2
* Fix a thinko; isNotAlreadyContainedIn had a built-in negative, so theDan Gohman2009-12-141-1/+1
* Drop Loop::isNotAlreadyContainedIn in favor of Loop::contains. TheDan Gohman2009-12-141-1/+1
* enable iv-users simplification by defaultJim Grosbach2009-11-231-7/+1
* Teach IVUsers to keep things simpler and track loop-invariant strides onlyJim Grosbach2009-11-191-0/+10
* - Teach LSR to avoid changing cmp iv stride if it will create an immediate thatEvan Cheng2009-11-121-0/+12
* Fix IVUsers to avoid assuming that the loop has a unique backedge.Dan Gohman2009-11-051-0/+2
* Instead of testing whether an instruction dominates the loop preheader,Dan Gohman2009-09-271-3/+3
* Remove a redundant #include.Dan Gohman2009-09-271-1/+0
* remove a few dead insertion methods.Chris Lattner2009-08-241-5/+0
* remove a few DOUTs here and there.Chris Lattner2009-08-231-1/+1
* eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner2009-08-231-4/+4
* Fix more missing newlines.Dan Gohman2009-08-171-2/+2
* More migration to raw_ostream, the water has dried up around the iostream hole.Daniel Dunbar2009-07-251-2/+2
* Add a newline, now that Value's operator<< doesn't print one.Dan Gohman2009-07-141-0/+1
* Make Loop and MachineLoop be subclasses of LoopBase, rather than typedefs,Dan Gohman2009-07-131-1/+1
* Change all SCEV* to SCEV *.Dan Gohman2009-07-071-14/+14
* SCEVHandle is no more!Owen Anderson2009-06-221-14/+14
* Don't (unconditionally) use getSCEVAtScope to simplify the stepDan Gohman2009-06-191-1/+0