summaryrefslogtreecommitdiffstats
path: root/lib/Analysis/AliasAnalysis.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r235153Pirama Arumuga Nainar2015-05-181-9/+29
* Update aosp/master llvm for rebase to r233350Pirama Arumuga Nainar2015-04-091-5/+5
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-12/+14
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-78/+57
* Update LLVM for rebase to r212749.Stephen Hines2014-07-211-9/+31
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-1/+1
* Update to LLVM 3.5a.Stephen Hines2014-04-241-10/+11
* Reimplement isPotentiallyReachable to make nocapture deduction much stronger.Nick Lewycky2013-07-271-22/+3
* Give 'hasPath' a longer but clearer name 'isPotentiallyReachable'. Also expandNick Lewycky2013-07-181-5/+7
* Eliminate trivial redundant loads across nocapture+readonly calls to uncapturedNick Lewycky2013-07-071-4/+11
* Make BasicAliasAnalysis recognize the fact a noalias argument cannot alias an...Michael Kuperstein2013-05-281-0/+9
* Move isKnownNonNull out of AliasAnalysis.h and into ValueTracking.cpp sinceDan Gohman2013-01-311-16/+0
* Memory Dependence Analysis: fix a miscompile that uses DT to approxmiate theManman Ren2013-01-041-4/+34
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-7/+7
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-191-1/+1
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-4/+4
* Use the attribute enums to query if a parameter has an attribute.Bill Wendling2012-10-091-1/+1
* Move TargetData to DataLayout.Micah Villmow2012-10-081-3/+3
* Use method to query for NoAlias attribute.Bill Wendling2012-10-041-1/+1
* Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer2012-08-291-0/+2
* Move the capture analysis from MemoryDependencyAnalysis to a more general placeChad Rosier2012-05-141-0/+83
* Move isKnownNonNull from private implementation detail of BasicAA to a publicNick Lewycky2012-02-251-0/+16
* Enhance alias analysis for atomic instructions a bit. Upgrade a couple alias...Eli Friedman2011-09-261-0/+40
* Misc analysis passes that need to be aware of atomic load/store.Eli Friedman2011-08-151-4/+4
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-1/+1
* When analyzing functions known to only access argument pointees,Dan Gohman2011-04-271-9/+28
* Stub out a new updating interface to AliasAnalysis, allowing stateful analyse...Owen Anderson2011-01-031-0/+6
* Make memcpyopt TBAA-aware.Dan Gohman2010-12-161-4/+10
* getLocationForDest should work for memset as well.Chris Lattner2010-11-301-1/+1
* add "getLocation" method to AliasAnalysis for getting the source andChris Lattner2010-11-211-0/+23
* Add helper functions for computing the Location of load, store,Dan Gohman2010-11-111-12/+21
* Add a doesAccessArgPointees helper function, and update code to useDan Gohman2010-11-101-22/+24
* Make ModRefBehavior a lattice. Use this to clean up AliasAnalysisDan Gohman2010-11-101-1/+1
* Teach AliasAnalysis about AccessesArgumentsReadonly.Dan Gohman2010-11-091-6/+8
* Extend the AliasAnalysis::pointsToConstantMemory interface to allow itDan Gohman2010-11-081-2/+3
* Delete getIntrinsicModRefBehavior. Clients can just use the normalDan Gohman2010-11-081-7/+0
* Update comments; BasicAA is no longer necessarily the end of the chain.Dan Gohman2010-10-251-3/+3
* Reintroduce these asserts, now that BasicAA is a normal AliasAnalysis pass.Dan Gohman2010-10-251-6/+3
* Move NoAA out of BasicAliasAnalysis.cpp into its own file, now thatDan Gohman2010-10-191-6/+0
* Reapply r116831 and r116839, converting AliasAnalysis to useDan Gohman2010-10-191-1/+1
* Revert r116831 and r116839, which are breaking selfhost builds.Dan Gohman2010-10-191-1/+1
* Change AliasAnalysis and its clients to use uint64_t instead of unsignedDan Gohman2010-10-191-1/+1
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-1/+1
* Consistently use AliasAnalysis::UnknownSize instead of hardcoding ~0u.Dan Gohman2010-10-191-1/+1
* Analysis groups need to initialize their default implementations.Owen Anderson2010-10-131-1/+1
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* Hide analysis group registration behind a macro, just like pass registration.Owen Anderson2010-10-061-1/+1
* Remove the experimental AliasAnalysis::getDependency interface, whichDan Gohman2010-09-141-254/+31
* Extend the getDependence query with support for PHI translation.Dan Gohman2010-09-091-12/+49
* Add a new experimental generalized dependence query interface toDan Gohman2010-09-081-0/+192