summaryrefslogtreecommitdiff
path: root/lib/Analysis/MemoryDependenceAnalysis.cpp
Commit message (Expand)AuthorAge
* Make TargetData optional in MemoryDependenceAnalysis.Dan Gohman2009-07-31
* Remove an unnecessary header.Dan Gohman2009-07-31
* factor the 'optimized sort' code out into a static helper functionChris Lattner2009-07-13
* Move the re-sort of invalidated NonLocalPointerDeps cache earlierChris Lattner2009-07-13
* make memdep use the getModRefInfo method for stores instead of theChris Lattner2009-05-25
* now that you can put a PointerIntPair in a SmallPtrSet, remove someChris Lattner2009-03-29
* Debug intriniscs should be skipped when lookingDale Johannesen2009-03-11
* Ignore debug intrinsics when computing dependences.Owen Anderson2009-03-09
* Remove this as dbginfo intrinsics has been defined asZhou Sheng2009-03-06
* Ignore the debug info intrinsics when looking for dependency through basic bl...Zhou Sheng2009-03-05
* fix two more cases where we could let the NLPDI cache get unsorted.Chris Lattner2009-01-23
* Unconditionally reset 'cache' to zero, even if we don't need to resort it.Chris Lattner2009-01-23
* a minor tweak to my previous patch, handle the invalidation caseChris Lattner2009-01-23
* Fix PR3358, a really nasty bug where recursive phi translated Chris Lattner2009-01-22
* fix PR3217: fully cached queries need to be verified against the Chris Lattner2008-12-16
* if we have a phi translation failure of the start block,Chris Lattner2008-12-15
* Implement initial support for PHI translation in memdep. This means thatChris Lattner2008-12-15
* Don't dereference the end() iterator. This wasDuncan Sands2008-12-10
* loosen up an assertion that isn't valid when called fromChris Lattner2008-12-09
* Teach GVN to invalidate some memdep information when it does an RAUWChris Lattner2008-12-09
* Teach BasicAA::getModRefInfo(CallSite, CallSite) someChris Lattner2008-12-09
* Fix a fixme: allow memdep to see past read-only calls when doingChris Lattner2008-12-09
* rename getNonLocalDependency -> getNonLocalCallDependency, and removeChris Lattner2008-12-09
* fix typos gabor noticedChris Lattner2008-12-09
* restructure the top level non-local ptr dep query to handle Chris Lattner2008-12-09
* rename getNonLocalPointerDepInternal -> getNonLocalPointerDepFromBBChris Lattner2008-12-09
* if we have two elements, insert both, don't use std::sort.Chris Lattner2008-12-09
* If we're only adding one new element to 'Cache', insert it into its knownChris Lattner2008-12-09
* convert a couple other places that use pred_iterator to use the cachingChris Lattner2008-12-09
* use hte new pred cache to speed up the new non-local memdepChris Lattner2008-12-09
* add another level of caching for non-local pointer queries, keepingChris Lattner2008-12-08
* add an assert. the cast<> below would catch this but a message is moreChris Lattner2008-12-07
* factor some code better.Chris Lattner2008-12-07
* factor some code, fixing some fixme's.Chris Lattner2008-12-07
* add support for caching pointer dependence queries. Nothing uses this yetChris Lattner2008-12-07
* Some internal refactoring to make it easier to cache results.Chris Lattner2008-12-07
* Introduce a new MemDep::getNonLocalPointerDependencyChris Lattner2008-12-07
* push the "pointer case" up the analysis stack a bit. This causes Chris Lattner2008-12-07
* make clients have to know how to call getCallSiteDependencyFromChris Lattner2008-12-07
* rename some variables for consistencyChris Lattner2008-12-07
* I love how using out of scope variables is not an error with GCC, no really I...Chris Lattner2008-12-07
* Rename getCallSiteDependency -> getCallSiteDependencyFrom toChris Lattner2008-12-07
* a memdep query on a volatile load/store will always returnChris Lattner2008-12-07
* remove the ability to get memdep info for vaarg. I don't think theChris Lattner2008-12-07
* Make a few major changes to memdep and its clients:Chris Lattner2008-12-05
* Make it illegal to call getDependency* on non-memory instructionsChris Lattner2008-12-05
* Reimplement the non-local dependency data structure in terms of a sortedChris Lattner2008-12-01
* Eliminate the DepResultTy abstraction. It is now completely Chris Lattner2008-11-30
* Cache TargetData/AliasAnalysis in the pass instead of callingChris Lattner2008-11-30
* Two changes: Make getDependency remove QueryInst for a dirty record'sChris Lattner2008-11-30