summaryrefslogtreecommitdiff
path: root/lib/Analysis/AliasAnalysis.cpp
Commit message (Expand)AuthorAge
* 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
* Generalize some alias analysis logic from atomicDuncan Sands2009-02-14
* If a function only reads memory, then we know that...Duncan Sands2009-02-13
* Fix a crasher: we need to check that the function is non-null before using it!Owen Anderson2009-02-06
* Refactor my previous change to maintain the distinction between AliasAnalysis...Owen Anderson2009-02-05
* Finish making AliasAnalysis aware of the fact that most atomic intrinsics onl...Owen Anderson2009-02-04
* Teach AliasAnalysis that a bunch of the atomic intrinsics only dereference th...Owen Anderson2009-02-03
* Move isIdentifiedObject and isNoAliasCall into AliasAnalysis.cpp sinceDan Gohman2009-02-03
* Fix a copy+paste error in a comment.Dan Gohman2008-05-30
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-13
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Revert r44626, which turned off the use of readonlyDuncan Sands2007-12-12