summaryrefslogtreecommitdiff
path: root/lib/Analysis/AliasAnalysis.cpp
Commit message (Expand)AuthorAge
* 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
* Add a new experimental generalized dependence query interface toDan Gohman2010-09-08
* Implement a proper getModRefInfo for va_arg.Dan Gohman2010-08-06
* Be more conservative in the face of volatile.Dan Gohman2010-08-06
* Fix a comment.Dan Gohman2010-08-06
* Move all the logic for function attributes and call attributes out of theDan Gohman2010-08-06
* Yes, we can do better, but this is not the place for it.Dan Gohman2010-08-05
* Remove PointerAccessInfo, which nothing was using.Dan Gohman2010-08-03
* Thread const correctness through a bunch of AliasAnalysis interfaces andDan Gohman2010-08-03
* Make AliasAnalysis::getModRefInfo conservative in the face of volatility.Dan Gohman2010-08-03
* Remove interprocedural-basic-aa and associated code. The AliasAnalysisDan Gohman2010-07-07
* Add an Intraprocedural form of BasicAliasAnalysis, which aims toDan Gohman2010-06-29
* Partially address a README by having functionattrs consider calls toDuncan Sands2010-01-06
* use the new isNoAlias method to simplify some code, only do an escaping check...Chris Lattner2009-11-23
* Remove the AliasAnalysis::getMustAliases method, which is dead.Chris Lattner2009-11-22
* Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su...Victor Hernandez2009-10-23
* Global Aliases are not identifiable objects.Dan Gohman2009-08-27
* Make AliasAnalysis and related classes useDan Gohman2009-07-25