aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/AliasAnalysis.cpp
Commit message (Expand)AuthorAgeFilesLines
* 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
* Implement a proper getModRefInfo for va_arg.Dan Gohman2010-08-061-0/+17
* Be more conservative in the face of volatile.Dan Gohman2010-08-061-8/+8
* Fix a comment.Dan Gohman2010-08-061-2/+2
* Move all the logic for function attributes and call attributes out of theDan Gohman2010-08-061-59/+119
* Yes, we can do better, but this is not the place for it.Dan Gohman2010-08-051-1/+0
* Remove PointerAccessInfo, which nothing was using.Dan Gohman2010-08-031-5/+3
* Thread const correctness through a bunch of AliasAnalysis interfaces andDan Gohman2010-08-031-13/+15
* Make AliasAnalysis::getModRefInfo conservative in the face of volatility.Dan Gohman2010-08-031-3/+20
* Remove interprocedural-basic-aa and associated code. The AliasAnalysisDan Gohman2010-07-071-9/+7
* Add an Intraprocedural form of BasicAliasAnalysis, which aims toDan Gohman2010-06-291-6/+10
* Partially address a README by having functionattrs consider calls toDuncan Sands2010-01-061-4/+7
* use the new isNoAlias method to simplify some code, only do an escaping check...Chris Lattner2009-11-231-3/+4
* Remove the AliasAnalysis::getMustAliases method, which is dead.Chris Lattner2009-11-221-10/+0
* Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su...Victor Hernandez2009-10-231-1/+1
* Global Aliases are not identifiable objects.Dan Gohman2009-08-271-2/+4
* Make AliasAnalysis and related classes useDan Gohman2009-07-251-6/+11
* Generalize some alias analysis logic from atomicDuncan Sands2009-02-141-1/+6
* If a function only reads memory, then we know that...Duncan Sands2009-02-131-7/+11
* Fix a crasher: we need to check that the function is non-null before using it!Owen Anderson2009-02-061-1/+1
* Refactor my previous change to maintain the distinction between AliasAnalysis...Owen Anderson2009-02-051-56/+14
* Finish making AliasAnalysis aware of the fact that most atomic intrinsics onl...Owen Anderson2009-02-041-0/+21
* Teach AliasAnalysis that a bunch of the atomic intrinsics only dereference th...Owen Anderson2009-02-031-0/+22
* Move isIdentifiedObject and isNoAliasCall into AliasAnalysis.cpp sinceDan Gohman2009-02-031-0/+24
* Fix a copy+paste error in a comment.Dan Gohman2008-05-301-1/+1
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-131-3/+1
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Revert r44626, which turned off the use of readonlyDuncan Sands2007-12-121-12/+4
* Commit 44487 broke bootstrap of llvm-gcc-4.2. It isDuncan Sands2007-12-051-4/+12