summaryrefslogtreecommitdiff
path: root/lib/Analysis/AliasAnalysis.cpp
Commit message (Expand)AuthorAge
* [C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper2014-04-15
* IR: add a second ordering operand to cmpxhg for failureTim Northover2014-03-11
* [C++11] Make this interface accept const Use pointers and use overrideChandler Carruth2014-03-05
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-05
* Make DataLayout a plain object, not a pass.Rafael Espindola2014-02-25
* Rename some member variables from TD to DL.Rafael Espindola2014-02-18
* [cleanup] Move the Dominators.h and Verifier.h headers into the IRChandler Carruth2014-01-13
* Re-sort all of the includes with ./utils/sort_includes.py so thatChandler Carruth2014-01-07
* Reimplement isPotentiallyReachable to make nocapture deduction much stronger.Nick Lewycky2013-07-27
* Give 'hasPath' a longer but clearer name 'isPotentiallyReachable'. Also expandNick Lewycky2013-07-18
* Eliminate trivial redundant loads across nocapture+readonly calls to uncapturedNick Lewycky2013-07-07
* Make BasicAliasAnalysis recognize the fact a noalias argument cannot alias an...Michael Kuperstein2013-05-28
* Move isKnownNonNull out of AliasAnalysis.h and into ValueTracking.cpp sinceDan Gohman2013-01-31
* Memory Dependence Analysis: fix a miscompile that uses DT to approxmiate theManman Ren2013-01-04
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-19
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Use the attribute enums to query if a parameter has an attribute.Bill Wendling2012-10-09
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* Use method to query for NoAlias attribute.Bill Wendling2012-10-04
* Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer2012-08-29
* Move the capture analysis from MemoryDependencyAnalysis to a more general placeChad Rosier2012-05-14
* Move isKnownNonNull from private implementation detail of BasicAA to a publicNick Lewycky2012-02-25
* Enhance alias analysis for atomic instructions a bit. Upgrade a couple alias...Eli Friedman2011-09-26
* Misc analysis passes that need to be aware of atomic load/store.Eli Friedman2011-08-15
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* When analyzing functions known to only access argument pointees,Dan Gohman2011-04-27
* Stub out a new updating interface to AliasAnalysis, allowing stateful analyse...Owen Anderson2011-01-03
* Make memcpyopt TBAA-aware.Dan Gohman2010-12-16
* getLocationForDest should work for memset as well.Chris Lattner2010-11-30
* add "getLocation" method to AliasAnalysis for getting the source andChris Lattner2010-11-21
* Add helper functions for computing the Location of load, store,Dan Gohman2010-11-11
* Add a doesAccessArgPointees helper function, and update code to useDan Gohman2010-11-10
* Make ModRefBehavior a lattice. Use this to clean up AliasAnalysisDan Gohman2010-11-10
* Teach AliasAnalysis about AccessesArgumentsReadonly.Dan Gohman2010-11-09
* Extend the AliasAnalysis::pointsToConstantMemory interface to allow itDan Gohman2010-11-08
* Delete getIntrinsicModRefBehavior. Clients can just use the normalDan Gohman2010-11-08
* Update comments; BasicAA is no longer necessarily the end of the chain.Dan Gohman2010-10-25
* Reintroduce these asserts, now that BasicAA is a normal AliasAnalysis pass.Dan Gohman2010-10-25
* Move NoAA out of BasicAliasAnalysis.cpp into its own file, now thatDan Gohman2010-10-19
* Reapply r116831 and r116839, converting AliasAnalysis to useDan Gohman2010-10-19
* Revert r116831 and r116839, which are breaking selfhost builds.Dan Gohman2010-10-19
* Change AliasAnalysis and its clients to use uint64_t instead of unsignedDan Gohman2010-10-19
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-19
* Consistently use AliasAnalysis::UnknownSize instead of hardcoding ~0u.Dan Gohman2010-10-19
* Analysis groups need to initialize their default implementations.Owen Anderson2010-10-13
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Hide analysis group registration behind a macro, just like pass registration.Owen Anderson2010-10-06
* Remove the experimental AliasAnalysis::getDependency interface, whichDan Gohman2010-09-14
* Extend the getDependence query with support for PHI translation.Dan Gohman2010-09-09