aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/LazyValueInfo.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master llvm for rebase to r233350Pirama Arumuga Nainar2015-04-091-52/+58
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-168/+173
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-78/+204
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-10/+11
* Update to LLVM 3.5a.Stephen Hines2014-04-241-11/+12
* Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...Craig Topper2013-07-041-4/+4
* Move isKnownNonNull out of AliasAnalysis.h and into ValueTracking.cpp sinceDan Gohman2013-01-311-1/+0
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-4/+4
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-7/+7
* Hoist out some work done inside a loop doing a linear scan over allNick Lewycky2012-10-261-12/+17
* Move TargetData to DataLayout.Micah Villmow2012-10-081-4/+4
* Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru2012-09-271-2/+2
* Fix a typo 'iff' => 'if'Sylvestre Ledru2012-09-271-2/+2
* JumpThreading: when default destination is the destination of some cases in aManman Ren2012-09-051-3/+6
* Reduce duplicated hash map lookups.Benjamin Kramer2012-08-221-2/+4
* make LazyValueInfo analyze the default case of switch statements (we know tha...Nuno Lopes2012-06-281-16/+15
* make LVI::getEdgeValue() always intersect the constraints of the edge with th...Nuno Lopes2012-06-281-36/+53
* allow LazyValueInfo::getEdgeValue() to reason about multiple edges from the s...Nuno Lopes2012-05-181-11/+6
* minor simplification in the call to ConstantRange constructorNuno Lopes2012-05-171-1/+1
* llvm::SwitchInstStepan Dyatkovskiy2012-03-111-1/+1
* Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy2012-03-081-3/+4
* LVI: Recognize the form instcombine canonicalizes range checks into when form...Benjamin Kramer2012-03-021-4/+16
* SwitchInst refactoring.Stepan Dyatkovskiy2012-02-011-2/+2
* Remove dead code.Bill Wendling2012-01-181-45/+0
* A DenseMap of a std::map isn't a very good idea because the "grow()" method willBill Wendling2012-01-121-2/+2
* Revert r147978. A DenseMap's iterators may become invalidated here.Bill Wendling2012-01-111-1/+2
* Use a DenseMap.Bill Wendling2012-01-111-2/+1
* Clear the new cache.Benjamin Kramer2011-12-031-0/+1
* Add a "seen blocks" cache to LVI to avoid a linear scan over the whole cache ...Benjamin Kramer2011-12-031-1/+13
* Fix a few more places where TargetData/TargetLibraryInfo is not being passed.Chad Rosier2011-12-021-9/+23
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-3/+3
* llvm.memcpy.* has two distinct associated address spaces; the source address ...Eli Friedman2011-05-311-4/+6
* Remove unused STL header includes.Jay Foad2011-04-231-1/+0
* Mark some functions as used which are used within debug-only code. ThisChandler Carruth2011-04-181-0/+2
* Teach LazyValueInfo that allocas aren't NULL. Over all of llvm-test, this savesNick Lewycky2011-01-151-5/+27
* Reorder, rename, and document some members to make this easier to follow.Owen Anderson2011-01-051-20/+23
* When computing the value on an edge, in certain cases LVI would fail to compu...Owen Anderson2011-01-051-0/+5
* Re-convert several of LazyValueInfo's internal maps to Dense{Map|Set}, and fi...Owen Anderson2011-01-051-33/+93
* Speculatively revert the use of DenseMap in LazyValueInfo, which may be causi...Owen Anderson2010-12-201-42/+16
* Attempt to appease the DragonEgg buildbots.Owen Anderson2010-12-201-22/+24
* Convert one of LVI's primary maps to a DenseMap, now that we know are more as...Owen Anderson2010-12-201-16/+40
* More LVI cleanups, including trying to simplify the process of maintaining th...Owen Anderson2010-12-201-25/+41
* Reuse the reference into the LVI cache throughout the solver subsystem. This...Owen Anderson2010-12-201-24/+28
* Make LazyValueInfo non-recursive.Nick Lewycky2010-12-181-132/+249
* Move Value::getUnderlyingObject to be a standaloneDan Gohman2010-12-151-2/+3
* Clean up some of LVI:Nick Lewycky2010-12-151-91/+101
* Take the first step towards making LVI non-recursive: get rid of the LVIQuery...Owen Anderson2010-12-091-101/+39
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* It is possible, under specific circumstances involving ptrtoint ConstantExpr'...Owen Anderson2010-09-161-3/+7
* Clean up some of the PassRegistry implementation, and pImpl-ize it to reduce ...Owen Anderson2010-09-071-0/+2