aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/LazyValueInfo.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-01-04[PM] Split the AssumptionTracker immutable pass into two separate APIs:Chandler Carruth1-23/+26
2014-11-25LazyValueInfo: Actually re-visit partially solved block-values in solveBlockV...Hans Wennborg1-58/+78
2014-11-21LazyValueInfo: range'ify some for-loops. No functional change.Hans Wennborg1-34/+19
2014-11-21LazyValueInfo: fix some typos and indentation, etc. NFC.Hans Wennborg1-10/+12
2014-10-16[LVI] Add some additional comments about caching and context instructionsHal Finkel1-0/+13
2014-10-14[LVI] Check for @llvm.assume dominating the edge branchHal Finkel1-0/+2
2014-10-10[LVI] Revert the remainder of "r218231 - Add two thresholds lvi-overdefined-B...Hal Finkel1-22/+0
2014-10-03Revert r215343.James Molloy1-25/+1
2014-09-22Add two thresholds lvi-overdefined-BB-threshold and lvi-overdefined-thresholdJiangning Liu1-2/+32
2014-09-07Make use of @llvm.assume from LazyValueInfoHal Finkel1-77/+189
2014-08-11In LVI(Lazy Value Info), originally value on a BB can only be caculated once,Jiangning Liu1-2/+17
2014-07-21Revert "[C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) ite...Duncan P. N. Exon Smith1-2/+2
2014-07-20[C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) iterator ra...Manuel Jacob1-2/+2
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-9/+9
2014-03-05[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-3/+3
2014-03-04[Modules] Move the ConstantRange class into the IR library. This isChandler Carruth1-1/+1
2014-03-04[Modules] Move CFG.h to the IR library as it defines graph traits overChandler Carruth1-1/+1
2014-03-04[Modules] Move ValueHandle into the IR library where Value itself lives.Chandler Carruth1-1/+1
2014-03-04[Modules] Move the LLVM IR pattern match header into the IR library, itChandler Carruth1-1/+1
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-4/+4
2013-07-04Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...Craig Topper1-4/+4
2013-01-31Move isKnownNonNull out of AliasAnalysis.h and into ValueTracking.cpp sinceDan Gohman1-1/+0
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-4/+4
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-7/+7
2012-10-26Hoist out some work done inside a loop doing a linear scan over allNick Lewycky1-12/+17
2012-10-08Move TargetData to DataLayout.Micah Villmow1-4/+4
2012-09-27Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru1-2/+2
2012-09-27Fix a typo 'iff' => 'if'Sylvestre Ledru1-2/+2
2012-09-05JumpThreading: when default destination is the destination of some cases in aManman Ren1-3/+6
2012-08-22Reduce duplicated hash map lookups.Benjamin Kramer1-2/+4
2012-06-28make LazyValueInfo analyze the default case of switch statements (we know tha...Nuno Lopes1-16/+15
2012-06-28make LVI::getEdgeValue() always intersect the constraints of the edge with th...Nuno Lopes1-36/+53
2012-05-18allow LazyValueInfo::getEdgeValue() to reason about multiple edges from the s...Nuno Lopes1-11/+6
2012-05-17minor simplification in the call to ConstantRange constructorNuno Lopes1-1/+1
2012-03-11llvm::SwitchInstStepan Dyatkovskiy1-1/+1
2012-03-08Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy1-3/+4
2012-03-02LVI: Recognize the form instcombine canonicalizes range checks into when form...Benjamin Kramer1-4/+16
2012-02-01SwitchInst refactoring.Stepan Dyatkovskiy1-2/+2
2012-01-18Remove dead code.Bill Wendling1-45/+0
2012-01-12A DenseMap of a std::map isn't a very good idea because the "grow()" method willBill Wendling1-2/+2
2012-01-11Revert r147978. A DenseMap's iterators may become invalidated here.Bill Wendling1-1/+2
2012-01-11Use a DenseMap.Bill Wendling1-2/+1
2011-12-03Clear the new cache.Benjamin Kramer1-0/+1
2011-12-03Add a "seen blocks" cache to LVI to avoid a linear scan over the whole cache ...Benjamin Kramer1-1/+13
2011-12-02Fix a few more places where TargetData/TargetLibraryInfo is not being passed.Chad Rosier1-9/+23
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner1-3/+3
2011-05-31llvm.memcpy.* has two distinct associated address spaces; the source address ...Eli Friedman1-4/+6
2011-04-23Remove unused STL header includes.Jay Foad1-1/+0