summaryrefslogtreecommitdiff
path: root/lib/Analysis/IVUsers.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-10-10Analysis: Remove implicit ilist iterator conversionsDuncan P. N. Exon Smith1-1/+1
2015-08-17[PM] Port ScalarEvolution to the new pass manager.Chandler Carruth1-3/+3
2015-07-13[LSR] don't attempt to promote ephemeral values to indvarsJingyue Wu1-1/+16
2015-03-10DataLayout is mandatory, update the API to reflect it with references.Mehdi Amini1-3/+4
2015-03-04Make DataLayout Non-Optional in the ModuleMehdi Amini1-2/+2
2015-01-17[PM] Split the LoopInfo object apart from the legacy pass, creatingChandler Carruth1-3/+3
2014-11-19Update SetVector to rely on the underlying set's insert to return a pair<iter...David Blaikie1-2/+2
2014-08-21Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin...Craig Topper1-2/+2
2014-08-18Revert "Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoi...Craig Topper1-2/+2
2014-08-17Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin...Craig Topper1-2/+2
2014-06-21Add back functionality removed in r210497.Richard Trieu1-2/+4
2014-06-09Removing an "if (!this)" check from two print methods. The condition willRichard Trieu1-0/+1
2014-04-22[Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-04-15[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-5/+5
2014-03-12PR17473:Michael Zolotukhin1-3/+21
2014-03-12Test commitMichael Zolotukhin1-0/+1
2014-03-09[C++11] Add range based accessors for the Use-Def chain of a Value.Chandler Carruth1-4/+3
2014-02-25Make DataLayout a plain object, not a pass.Rafael Espindola1-1/+2
2014-02-18Rename some member variables from TD to DL.Rafael Espindola1-3/+3
2014-01-13[PM] Split DominatorTree into a concrete analysis result object whichChandler Carruth1-3/+3
2014-01-13[cleanup] Move the Dominators.h and Verifier.h headers into the IRChandler Carruth1-1/+1
2014-01-09Put the functionality for printing a value to a raw_ostream as anChandler Carruth1-4/+3
2014-01-07Move the LLVM IR asm writer header files into the IR directory, as theyChandler Carruth1-1/+1
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-5/+5
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-6/+6
2012-10-08Move TargetData to DataLayout.Micah Villmow1-2/+2
2012-09-12Release build: guard dump functions withManman Ren1-1/+1
2012-09-06Release build: guard dump functions with "ifndef NDEBUG"Manman Ren1-0/+2
2012-07-13IVUsers should only generate SCEV's for values that are safe to speculate.Andrew Trick1-0/+7
2012-03-22Cleanup IVUsers::addUsersIfInteresting.Andrew Trick1-12/+15
2012-03-20LSR: teach isSimplifiedLoopNest to handle PHI IVUsers.Andrew Trick1-1/+8
2012-03-20LSR: fix IVUsers isSimplifiedLoopNest to perform a full domtree walkAndrew Trick1-19/+23
2012-03-16LSR fix: Add isSimplifiedLoopNest to IVUsers analysis.Andrew Trick1-5/+41
2012-01-06Put all IVUsers in the processed set. Allow querying IVUsers with isIVUserOrO...Andrew Trick1-3/+6
2011-10-13Slightly more useful tracing.Andrew Trick1-1/+2
2011-07-01Teach IVUsers to stop at non-affine expressions unless they are bothDan Gohman1-7/+10
2011-06-28indvars --disable-iv-rewrite: sever ties with IVUsers.Andrew Trick1-15/+0
2011-06-21IVUsers no longer needs to record the phis.Andrew Trick1-8/+7
2011-05-27Update this comment.Dan Gohman1-1/+3
2011-05-20indvars: Prototyping Sign/ZeroExtend elimination without canonical IVs.Andrew Trick1-7/+7
2011-05-04indvars: Added DisableIVRewrite and WidenIVs.Andrew Trick1-0/+15
2011-03-18Avoid creating canonical induction variables for non-native types.Andrew Trick1-1/+6
2011-01-02split dom frontier handling stuff out to its own DominanceFrontier header,Chris Lattner1-0/+1
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson1-1/+2
2010-10-12Begin adding static dependence information to passes, which will allow us toOwen Anderson1-1/+7
2010-10-07Now with fewer extraneous semicolons!Owen Anderson1-1/+1
2010-09-02stop forcing a noop AssemblyAnnotationWriter to silence #usesChris Lattner1-5/+1
2010-09-01Revert 112442 and 112440 until the compile time problems introducedDan Gohman1-89/+78
2010-08-29Make IVUsers iterative instead of recursive.Dan Gohman1-78/+89
2010-08-17Tweak IVUsers' concept of "interesting" to exclude add recurrencesDan Gohman1-12/+16