aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/LazyValueInfo.cpp
AgeCommit message (Expand)Author
2012-03-11llvm::SwitchInstStepan Dyatkovskiy
2012-03-08Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy
2012-03-02LVI: Recognize the form instcombine canonicalizes range checks into when form...Benjamin Kramer
2012-02-01SwitchInst refactoring.Stepan Dyatkovskiy
2012-01-18Remove dead code.Bill Wendling
2012-01-12A DenseMap of a std::map isn't a very good idea because the "grow()" method willBill Wendling
2012-01-11Revert r147978. A DenseMap's iterators may become invalidated here.Bill Wendling
2012-01-11Use a DenseMap.Bill Wendling
2011-12-03Clear the new cache.Benjamin Kramer
2011-12-03Add a "seen blocks" cache to LVI to avoid a linear scan over the whole cache ...Benjamin Kramer
2011-12-02Fix a few more places where TargetData/TargetLibraryInfo is not being passed.Chad Rosier
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-05-31llvm.memcpy.* has two distinct associated address spaces; the source address ...Eli Friedman
2011-04-23Remove unused STL header includes.Jay Foad
2011-04-18Mark some functions as used which are used within debug-only code. ThisChandler Carruth
2011-01-15Teach LazyValueInfo that allocas aren't NULL. Over all of llvm-test, this savesNick Lewycky
2011-01-05Reorder, rename, and document some members to make this easier to follow.Owen Anderson
2011-01-05When computing the value on an edge, in certain cases LVI would fail to compu...Owen Anderson
2011-01-05Re-convert several of LazyValueInfo's internal maps to Dense{Map|Set}, and fi...Owen Anderson
2010-12-20Speculatively revert the use of DenseMap in LazyValueInfo, which may be causi...Owen Anderson
2010-12-20Attempt to appease the DragonEgg buildbots.Owen Anderson
2010-12-20Convert one of LVI's primary maps to a DenseMap, now that we know are more as...Owen Anderson
2010-12-20More LVI cleanups, including trying to simplify the process of maintaining th...Owen Anderson
2010-12-20Reuse the reference into the LVI cache throughout the solver subsystem. This...Owen Anderson
2010-12-18Make LazyValueInfo non-recursive.Nick Lewycky
2010-12-15Move Value::getUnderlyingObject to be a standaloneDan Gohman
2010-12-15Clean up some of LVI:Nick Lewycky
2010-12-09Take the first step towards making LVI non-recursive: get rid of the LVIQuery...Owen Anderson
2010-10-07Now with fewer extraneous semicolons!Owen Anderson
2010-09-16It is possible, under specific circumstances involving ptrtoint ConstantExpr'...Owen Anderson
2010-09-07Clean up some of the PassRegistry implementation, and pImpl-ize it to reduce ...Owen Anderson
2010-09-07Add completely hokey binary-and and binary-or operations to ConstantRange andNick Lewycky
2010-09-04zap dead code.Chris Lattner
2010-09-03Add support for simplifying a load from a computed value to a load from a glo...Owen Anderson
2010-09-02Remove incorrect and poorly tested code for trying to reason about values on ...Owen Anderson
2010-09-02Fix a bug in LazyValueInfo that CorrelatedValuePropagation exposed: In the LV...Owen Anderson
2010-08-30It is possible to try to merge a not-constant with a constantrage, when deali...Owen Anderson
2010-08-27Improve the precision of getConstant().Owen Anderson
2010-08-27Use LVI to eliminate conditional branches where we've tested a related condit...Owen Anderson
2010-08-25In the default address space, any GEP off of null results in a trap value if ...Owen Anderson
2010-08-24NULL loads are only invalid in the default address space.Owen Anderson
2010-08-24Add support for inferring values for the default cases of switches.Owen Anderson
2010-08-24Add support for inferring that a load from a pointer implies that it is not n...Owen Anderson
2010-08-24Don't assume that all constants with integer types are ConstantInts.Owen Anderson
2010-08-18Use ConstantRange to propagate information through value definitions.Owen Anderson
2010-08-18Inform LazyValueInfo whenever a block is deleted, to avoid dangling pointer i...Owen Anderson
2010-08-16Fix another iterator invalidation that caused a *really* nasty miscompilation...Owen Anderson
2010-08-11Fix a subtle use-after-free issue.Owen Anderson
2010-08-11Improve indentation.Owen Anderson
2010-08-10Now that we're using ConstantRange to represent potential values, make use of...Owen Anderson