[PM/AA] Remove the UnknownSize static member from AliasAnalysis.
[oota-llvm.git] / include / llvm / Analysis / MemoryDependenceAnalysis.h
2015-06-17 Chandler Carruth[PM/AA] Remove the UnknownSize static member from Alias...
2015-06-17 Chandler Carruth[PM/AA] Remove the Location typedef from the AliasAnaly...
2015-04-21 Daniel BerlinRevamp PredIteratorCache interface to be cleaner.
2015-04-11 Alexander KornienkoUse 'override/final' instead of 'virtual' for overridde...
2015-03-10 Mehdi AminiDataLayout is mandatory, update the API to reflect...
2015-01-26 Philip ReamesPass QueryInst down through non-local dependency calcul...
2015-01-09 Philip Reames[REFACTOR] Push logic from MemDepPrinter into getNonLoc...
2015-01-09 Philip Reames[Refactor] Have getNonLocalPointerDependency take the...
2015-01-04 Chandler Carruth[PM] Split the AssumptionTracker immutable pass into...
2014-09-07 Hal FinkelMake use of @llvm.assume in ValueTracking (computeKnown...
2014-07-24 Hal FinkelAA metadata refactoring (introduce AAMDNodes)
2014-04-15 Craig Topper[C++11] More 'nullptr' conversion. In some cases just...
2014-03-06 Ahmed CharlesReplace OwningPtr<T> with std::unique_ptr<T>.
2014-03-05 Craig Topper[C++11] Add 'override' keyword to virtual methods that...
2014-03-04 Chandler Carruth[Modules] Move ValueHandle into the IR library where...
2014-02-24 Rafael EspindolaMake some DataLayout pointers const.
2014-02-18 Rafael EspindolaRename some member variables from TD to DL.
2013-03-06 Shuxin YangMemory Dependence Analysis (not mem-dep test) take...
2013-02-09 Jakub StaszakRemove trailing spaces.
2013-01-10 Jakub StaszakFix include guards so they exactly match file names.
2013-01-02 Chandler CarruthMove all of the header files which are involved in...
2012-12-03 Chandler CarruthSort the #include lines for the include/... tree with...
2012-10-08 Micah VillmowMove TargetData to DataLayout.
2012-08-13 Nadav RotemFix a documentation typo.
2012-05-14 Chad RosierMove the capture analysis from MemoryDependencyAnalysis...
2011-11-14 Nick LewyckyRefactor capture tracking (which already had a couple...
2011-10-13 Eli FriedmanEnhance the memdep interface so that users can tell...
2011-06-15 Eli FriedmanAdd "unknown" results for memdep, which mean "I don...
2011-04-28 Chris Lattnerteach GVN to widen integer loads when they are overalig...
2011-04-26 Chris LattnerEnhance MemDep: When alias analysis returns a partial...
2010-11-30 Chris LattnerRewrite the main DSE loop to be written in terms of...
2010-11-21 Chris Lattnerimplement PR8576, deleting dead stores with intervening...
2010-11-11 Dan GohmanSet NonLocalDepInfo's Size field to UnknownSize when...
2010-11-10 Dan GohmanEnhance GVN to do more precise alias queries for non...
2010-11-10 Dan GohmanGive NonLocalDepResult a NonLocalDepEntry member, replacing
2010-09-22 Dan GohmanFix uninitialized TBAAFlag field values.
2010-09-22 Dan GohmanTeach memdep about TBAA tags.
2010-09-22 Dan GohmanConstify.
2010-02-16 Bob WilsonSplit critical edges as needed for load PRE.
2009-12-22 Chris LattnerThe phi translated pointer can be computed when returni...
2009-12-09 Chris Lattnerenhance NonLocalDepEntry to keep the per-block phi...
2009-12-09 Chris Lattnerchange NonLocalDepEntry from being a typedef for an...
2009-12-09 Chris LattnerSwitch GVN and memdep to use PHITransAddr, which correc...
2009-12-05 Nick LewyckyDocument that memory use intrinsics may also return...
2009-11-28 Chris LattnerEnhance InsertPHITranslatedPointer to be able to return...
2009-11-27 Chris LattnerRework InsertPHITranslatedPointer to handle the recursi...
2009-11-27 Chris Lattnerteach GVN's load PRE to insert computations of the...
2009-11-27 Chris LattnerFix phi translation in load PRE to agree with the phi
2009-07-31 Dan GohmanFix a typo in a comment.
2009-03-29 Chris Lattnernow that you can put a PointerIntPair in a SmallPtrSet...
2009-01-22 Bill WendlingThe operator<() and operator>() were reversing their...
2008-12-15 Chris LattnerImplement initial support for PHI translation in memdep...
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 Lattnerrename getNonLocalDependency -> getNonLocalCallDependen...
2008-12-09 Chris Lattnerrename getNonLocalPointerDepInternal -> getNonLocalPoin...
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 Dan GohmanUse bool instead of int, now that it no longer evokes...
2008-12-07 Chris Lattnerfix a typo duncan noticed!
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 LattnerRename getCallSiteDependency -> getCallSiteDependencyFr...
2008-12-07 Chris Lattnermake getDependencyFrom private.
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 Lattnercleanups suggested by duncan, thanks!
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 Lattnerimplement a fixme by introducing a new getDependencyFro...
2008-11-30 Chris LattnerREmove an old fixme, resolve another fixme by adding...
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 Lattnerreimplement getNonLocalDependency with a simpler worklist
2008-11-29 Chris Lattnertidy up some variable names.
2008-11-29 Chris Lattnerrename some maps.
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 Lattnercomment cleanups.
2008-11-28 Chris Lattnerforward declare CallSite instead of #includ'ing it.
2008-11-28 Chris Lattnerrename "ping" to "verifyRemoved". I don't know why...
2008-11-28 Chris Lattnercomment and indentation improvements.
2008-09-04 Dan GohmanTidy up several unbeseeming casts from pointer to intptr_t.
2008-03-19 Devang PatelPassInfo keep tracks whether a pass is an analysis...
2008-03-19 Devang PatelDo not use virtual function to identify an analysis...
2008-03-18 Devang PatelIdentify Analysis pass.
2008-02-12 Owen AndersonRe-apply the patch to improve the optimizations of...
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-12-08 Owen AndersonFix several cache coherence bugs in MemDep/GVN that...
2007-09-19 Owen AndersonAdd a flag to mark a dirty cache entry. This is not...
2007-08-16 Owen AndersonCache non-local memory dependence analysis. This is...
next