Fix build warning.
[oota-llvm.git] / lib / Analysis / MemoryDependenceAnalysis.cpp
2009-07-31 Dan GohmanMake TargetData optional in MemoryDependenceAnalysis.
2009-07-31 Dan GohmanRemove an unnecessary header.
2009-07-13 Chris Lattnerfactor the 'optimized sort' code out into a static...
2009-07-13 Chris LattnerMove the re-sort of invalidated NonLocalPointerDeps...
2009-05-25 Chris Lattnermake memdep use the getModRefInfo method for stores...
2009-03-29 Chris Lattnernow that you can put a PointerIntPair in a SmallPtrSet...
2009-03-11 Dale JohannesenDebug intriniscs should be skipped when looking
2009-03-09 Owen AndersonIgnore debug intrinsics when computing dependences.
2009-03-06 Zhou ShengRemove this as dbginfo intrinsics has been defined as
2009-03-05 Zhou ShengIgnore the debug info intrinsics when looking for depen...
2009-01-23 Chris Lattnerfix two more cases where we could let the NLPDI cache...
2009-01-23 Chris LattnerUnconditionally reset 'cache' to zero, even if we don...
2009-01-23 Chris Lattnera minor tweak to my previous patch, handle the invalida...
2009-01-22 Chris LattnerFix PR3358, a really nasty bug where recursive phi...
2008-12-16 Chris Lattnerfix PR3217: fully cached queries need to be verified...
2008-12-15 Chris Lattnerif we have a phi translation failure of the start block,
2008-12-15 Chris LattnerImplement initial support for PHI translation in memdep...
2008-12-10 Duncan SandsDon't dereference the end() iterator. This was
2008-12-09 Chris Lattnerloosen up an assertion that isn't valid when called...
2008-12-09 Chris LattnerTeach GVN to invalidate some memdep information when...
2008-12-09 Chris LattnerTeach BasicAA::getModRefInfo(CallSite, CallSite) some
2008-12-09 Chris LattnerFix a fixme: allow memdep to see past read-only calls...
2008-12-09 Chris Lattnerrename getNonLocalDependency -> getNonLocalCallDependen...
2008-12-09 Chris Lattnerfix typos gabor noticed
2008-12-09 Chris Lattnerrestructure the top level non-local ptr dep query to...
2008-12-09 Chris Lattnerrename getNonLocalPointerDepInternal -> getNonLocalPoin...
2008-12-09 Chris Lattnerif we have two elements, insert both, don't use std...
2008-12-09 Chris LattnerIf we're only adding one new element to 'Cache', insert...
2008-12-09 Chris Lattnerconvert a couple other places that use pred_iterator...
2008-12-09 Chris Lattneruse hte new pred cache to speed up the new non-local...
2008-12-08 Chris Lattneradd another level of caching for non-local pointer...
2008-12-07 Chris Lattneradd an assert. the cast<> below would catch this but...
2008-12-07 Chris Lattnerfactor some code better.
2008-12-07 Chris Lattnerfactor some code, fixing some fixme's.
2008-12-07 Chris Lattneradd support for caching pointer dependence queries...
2008-12-07 Chris LattnerSome internal refactoring to make it easier to cache...
2008-12-07 Chris LattnerIntroduce a new MemDep::getNonLocalPointerDependency
2008-12-07 Chris Lattnerpush the "pointer case" up the analysis stack a bit...
2008-12-07 Chris Lattnermake clients have to know how to call getCallSiteDepend...
2008-12-07 Chris Lattnerrename some variables for consistency
2008-12-07 Chris LattnerI love how using out of scope variables is not an error...
2008-12-07 Chris LattnerRename getCallSiteDependency -> getCallSiteDependencyFr...
2008-12-07 Chris Lattnera memdep query on a volatile load/store will always...
2008-12-07 Chris Lattnerremove the ability to get memdep info for vaarg. I...
2008-12-05 Chris LattnerMake a few major changes to memdep and its clients:
2008-12-05 Chris LattnerMake it illegal to call getDependency* on non-memory...
2008-12-01 Chris LattnerReimplement the non-local dependency data structure...
2008-11-30 Chris LattnerEliminate the DepResultTy abstraction. It is now compl...
2008-11-30 Chris LattnerCache TargetData/AliasAnalysis in the pass instead...
2008-11-30 Chris LattnerTwo changes: Make getDependency remove QueryInst for...
2008-11-30 Chris Lattnerintroduce a typedef, no functionality change.
2008-11-30 Chris LattnerChange NonLocalDeps to be a densemap of pointers to...
2008-11-30 Chris Lattnercalls never depend on allocations.
2008-11-30 Chris LattnerFix a fixme by making memdep's handling of allocations...
2008-11-30 Chris Lattnerimplement a fixme by introducing a new getDependencyFro...
2008-11-30 Chris LattnerMove the getNonLocalDependency method to a more logical...
2008-11-30 Chris LattnerREmove an old fixme, resolve another fixme by adding...
2008-11-30 Chris Lattnerremove a bit of incorrect code that tried to be tricky...
2008-11-29 Chris LattnerEliminate the dropInstruction method, which is not...
2008-11-29 Chris Lattnerimplement some fixme's: when deleting an instruction...
2008-11-29 Chris LattnerChange MemDep::getNonLocalDependency to return its...
2008-11-29 Chris Lattnermove MemoryDependenceAnalysis::verifyRemoved to the...
2008-11-29 Chris Lattnerreimplement getNonLocalDependency with a simpler worklist
2008-11-29 Chris Lattnerrename some maps.
2008-11-29 Chris Lattnerrename some variables.
2008-11-29 Chris Lattnereliminate a bunch of code in favor of using AliasAnalys...
2008-11-29 Chris Lattnersimplify some code and rename some variables. Reduce...
2008-11-29 Chris LattnerSplit getDependency into getDependency and getDependenc...
2008-11-29 Chris LattnerNow that DepType is private, we can start cleaning...
2008-11-29 Chris LattnerIntroduce and use a new MemDepResult class to hold...
2008-11-29 Chris LattnerReimplement the internal abstraction used by MemDep...
2008-11-28 Chris LattnerFix PR3141 by ensuring that MemoryDependenceAnalysis...
2008-11-28 Chris Lattnermore cleanups for MemoryDependenceAnalysis::removeInstr...
2008-11-28 Chris Lattnerrandom cleanups, no functionality change.
2008-11-28 Chris LattnerRun verifyRemoved from removeInstruction when -debug...
2008-11-28 Chris Lattnerrename "ping" to "verifyRemoved". I don't know why...
2008-11-28 Chris Lattnerremove mysterious escaped newlines.
2008-09-11 Duncan SandsFix comment typo.
2008-07-28 Owen AndersonFix a subtle bug when removing instructions from memdep...
2008-07-02 Owen AndersonA better fix for PR2503 that doesn't pessimize GVN...
2008-07-01 Owen AndersonProperly handle cases where a predecessor of the block...
2008-06-01 Owen AndersonRemember to update the reverse non-local cache when...
2008-06-01 Owen AndersonMake ping more aggressive in finding nonlocal caching...
2008-05-13 Owen AndersonFix memdep's handling of invokes when finding the depen...
2008-05-13 Dan GohmanClean up the use of static and anonymous namespaces...
2008-05-06 Dan GohmanMake several variable declarations static.
2008-04-17 Owen AndersonMake GVN able to remove unnecessary calls to read-only...
2008-04-10 Dan GohmanFix a typo in a comment.
2008-04-10 Owen AndersonFix for PR2190. Memdep's non-local caching was checkin...
2008-03-31 Dan GohmanSet blockBegin to point to the beginning of the block,
2008-03-20 Devang PatelRestore isCFGOnly property of various analysis passes.
2008-03-19 Devang PatelPassInfo keep tracks whether a pass is an analysis...
2008-02-12 Owen AndersonRe-apply the patch to improve the optimizations of...
2008-02-06 Tanya LattnerThrottle the non-local dependence analysis for basic...
2008-02-05 Owen AndersonFix an obscure read-after-free bug that Duncan found.
2008-01-30 Owen AndersonFix an issue where, under very specific circumstances...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-12-08 Owen AndersonFix several cache coherence bugs in MemDep/GVN that...
2007-12-01 Duncan SandsIntegrate the readonly/readnone logic more deeply
2007-11-26 Owen AndersonFix a silly bug that Nicholas noticed.
next