summaryrefslogtreecommitdiff
path: root/lib/Analysis/LazyValueInfo.cpp
Commit message (Expand)AuthorAge
* [Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth2014-04-22
* [C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper2014-04-15
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-05
* [Modules] Move the ConstantRange class into the IR library. This isChandler Carruth2014-03-04
* [Modules] Move CFG.h to the IR library as it defines graph traits overChandler Carruth2014-03-04
* [Modules] Move ValueHandle into the IR library where Value itself lives.Chandler Carruth2014-03-04
* [Modules] Move the LLVM IR pattern match header into the IR library, itChandler Carruth2014-03-04
* Make DataLayout a plain object, not a pass.Rafael Espindola2014-02-25
* Rename some member variables from TD to DL.Rafael Espindola2014-02-18
* Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...Craig Topper2013-07-04
* Move isKnownNonNull out of AliasAnalysis.h and into ValueTracking.cpp sinceDan Gohman2013-01-31
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Hoist out some work done inside a loop doing a linear scan over allNick Lewycky2012-10-26
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru2012-09-27
* Fix a typo 'iff' => 'if'Sylvestre Ledru2012-09-27
* JumpThreading: when default destination is the destination of some cases in aManman Ren2012-09-05
* Reduce duplicated hash map lookups.Benjamin Kramer2012-08-22
* make LazyValueInfo analyze the default case of switch statements (we know tha...Nuno Lopes2012-06-28
* make LVI::getEdgeValue() always intersect the constraints of the edge with th...Nuno Lopes2012-06-28
* allow LazyValueInfo::getEdgeValue() to reason about multiple edges from the s...Nuno Lopes2012-05-18
* minor simplification in the call to ConstantRange constructorNuno Lopes2012-05-17
* llvm::SwitchInstStepan Dyatkovskiy2012-03-11
* Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy2012-03-08
* LVI: Recognize the form instcombine canonicalizes range checks into when form...Benjamin Kramer2012-03-02
* SwitchInst refactoring.Stepan Dyatkovskiy2012-02-01
* Remove dead code.Bill Wendling2012-01-18
* A DenseMap of a std::map isn't a very good idea because the "grow()" method willBill Wendling2012-01-12
* Revert r147978. A DenseMap's iterators may become invalidated here.Bill Wendling2012-01-11
* Use a DenseMap.Bill Wendling2012-01-11
* Clear the new cache.Benjamin Kramer2011-12-03
* Add a "seen blocks" cache to LVI to avoid a linear scan over the whole cache ...Benjamin Kramer2011-12-03
* Fix a few more places where TargetData/TargetLibraryInfo is not being passed.Chad Rosier2011-12-02
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* llvm.memcpy.* has two distinct associated address spaces; the source address ...Eli Friedman2011-05-31
* Remove unused STL header includes.Jay Foad2011-04-23
* Mark some functions as used which are used within debug-only code. ThisChandler Carruth2011-04-18
* Teach LazyValueInfo that allocas aren't NULL. Over all of llvm-test, this savesNick Lewycky2011-01-15
* Reorder, rename, and document some members to make this easier to follow.Owen Anderson2011-01-05
* When computing the value on an edge, in certain cases LVI would fail to compu...Owen Anderson2011-01-05
* Re-convert several of LazyValueInfo's internal maps to Dense{Map|Set}, and fi...Owen Anderson2011-01-05
* Speculatively revert the use of DenseMap in LazyValueInfo, which may be causi...Owen Anderson2010-12-20
* Attempt to appease the DragonEgg buildbots.Owen Anderson2010-12-20
* Convert one of LVI's primary maps to a DenseMap, now that we know are more as...Owen Anderson2010-12-20
* More LVI cleanups, including trying to simplify the process of maintaining th...Owen Anderson2010-12-20
* Reuse the reference into the LVI cache throughout the solver subsystem. This...Owen Anderson2010-12-20
* Make LazyValueInfo non-recursive.Nick Lewycky2010-12-18
* Move Value::getUnderlyingObject to be a standaloneDan Gohman2010-12-15
* Clean up some of LVI:Nick Lewycky2010-12-15