aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/IVUsers.cpp
AgeCommit message (Expand)AuthorFilesLines
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-05-14Rename DEBUG macro to LLVM_DEBUG.Nicola Zaghen1-8/+9
2018-04-30IWYU for llvm-config.h in llvm, additions.Nico Weber1-0/+1
2017-10-15Reverting r315590; it did not include changes for llvm-tblgen, which is causi...Aaron Ballman1-1/+1
2017-10-12[dump] Remove NDEBUG from test to enable dump methods [NFC]Don Hinton1-1/+1
2017-04-25[IVUsers] Don't bail out of normalizing non-affine add recsSanjoy Das1-11/+1
2017-04-14Tighten the API for ScalarEvolutionNormalizationSanjoy Das1-8/+5
2017-04-14Remove NormalizeAutodetect; NFCSanjoy Das1-12/+71
2017-04-14Use range-for; NFCSanjoy Das1-6/+4
2017-01-11[PM] Separate the LoopAnalysisManager from the LoopPassManager and moveChandler Carruth1-8/+1
2017-01-11[PM] Rewrite the loop pass manager to use a worklist and augmented runChandler Carruth1-11/+7
2016-12-19Revert @llvm.assume with operator bundles (r289755-r289757)Daniel Jasper1-5/+12
2016-12-15Remove the AssumptionCacheHal Finkel1-12/+5
2016-11-23[PM] Change the static object whose address is used to uniquely identifyChandler Carruth1-1/+1
2016-08-09Consistently use LoopAnalysisManagerSean Silva1-2/+2
2016-07-16[PM] Convert IVUsers analysis to new pass manager.Dehao Chen1-37/+59
2016-06-26Apply clang-tidy's modernize-loop-convert to lib/Analysis.Benjamin Kramer1-10/+7
2016-01-29Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r2591...Yaron Keren1-1/+1
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