Rename getABITypeSize to getTypePaddedSize, as
[oota-llvm.git] / lib / Transforms / Scalar / DeadStoreElimination.cpp
2009-01-12 Duncan SandsRename getABITypeSize to getTypePaddedSize, as
2008-12-07 Chris Lattnerdon't bother touching volatile stores, they will just...
2008-12-06 Chris LattnerReimplement the inner loop of DSE. It now uniformly...
2008-12-05 Chris LattnerMake a few major changes to memdep and its clients:
2008-11-29 Chris LattnerFix a thinko that manifested as a crash on clamav last...
2008-11-29 Chris LattnerSplit getDependency into getDependency and getDependenc...
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 Lattnerdon't revisit instructions off the beginning of the...
2008-11-28 Chris Lattnersimplify some code, remove escaped newline.
2008-11-28 Chris Lattnerrewrite a big chunk of how DSE does recursive dead...
2008-10-01 Duncan SandsFactorize code: remove variants of "strip off
2008-09-04 Dan GohmanTidy up several unbeseeming casts from pointer to intptr_t.
2008-07-28 Owen AndersonDon't remove volatile loads. Thanks to Duncan for...
2008-07-28 Owen AndersonAdd support for eliminating stores that store the same...
2008-05-13 Nate Begeman80 col / tabs fixes
2008-05-13 Dan GohmanClean up the use of static and anonymous namespaces...
2008-04-28 Dan GohmanFix DSE to not eliminate volatile loads with no uses.
2008-02-04 Owen AndersonBe more precise when eliminating pointers bue to memcpy...
2008-01-30 Nick LewyckyRemove a couple more cases of "getNumUses() == 0"....
2008-01-30 Nick LewyckyUse empty() instead of comparing size() with zero.
2008-01-30 Nick LewyckyDon't DCE FreeInst's. We were using those! Patch from...
2008-01-30 Owen AndersonMake DSE much more aggressive by performing DCE earlier...
2008-01-29 Owen AndersonAdd support for eliminating memcpy's at the end of...
2008-01-25 Owen AndersonDeadStoreElimination can treat byval parameters as...
2008-01-20 Duncan SandsInitializing an unsigned with ~0UL causes the compiler
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-12-01 Duncan SandsIntegrate the readonly/readnone logic more deeply
2007-11-06 Chris Lattnerdon't put erase or query for non-allocainst pointers...
2007-11-01 Duncan SandsExecutive summary: getTypeSize -> getTypeStoreSize...
2007-11-01 Owen AndersonFix test/Transforms/DeadStoreElimination/PartialStore...
2007-08-26 Owen AndersonDon't DSe volatile stores.
2007-08-09 Owen AndersonMake NonLocal and None const in the right way. :-)
2007-08-08 Owen AndersonChange the None and NonLocal markers in memdep to be...
2007-08-08 Owen AndersonGlobal values also don't undead-ify pointers in our...
2007-08-08 Owen AndersonMake handleEndBlock significantly faster with one trivi...
2007-08-08 Owen AndersonSmall improvement: if a function doesn't access memory...
2007-08-08 Owen AndersonAdd some comments, remove a dead argument, and simplify...
2007-08-08 Owen AndersonA few more small cleanups.
2007-08-08 Owen AndersonFirst round of cleanups from Chris' feedback.
2007-08-02 Owen AndersonFix 80 col. violations.
2007-08-01 Owen AndersonRename FastDSE to just DSE.
2007-08-01 Owen AndersonMove FastDSE in to DeadStoreElimination.
2007-08-01 Owen AndersonRemove old DSE.
2007-05-06 Nick LewyckyFix typo in comment.
2007-05-03 Devang PatelDrop 'const'
2007-05-02 Devang PatelUse 'static const char' instead of 'static const int'.
2007-05-01 Devang PatelDo not use typeinfo to identify pass in pass manager.
2007-02-05 Reid SpencerApply the VISIBILITY_HIDDEN field to the remaining...
2006-12-19 Chris LattnerSwitch over Transforms/Scalar to use the STATISTIC...
2006-12-06 Chris LattnerDetemplatize the Statistic class. The only type it...
2006-08-27 Chris Lattnereliminate RegisterOpt. It does the same thing as Regis...
2005-11-30 Chris LattnerFix a bug where we didn't realize that vaarg reads...
2005-04-21 Misha BrukmanRemove trailing whitespace
2005-01-29 Chris LattnerAdjust to changes in instruction interfaces.
2005-01-08 Chris LattnerFix uint64_t -> unsigned VS warnings.
2004-12-29 Chris LattnerFix PR491 and testcase Transforms/DeadStoreElimination...
2004-11-28 Chris LattnerMake DSE potentially more aggressive by being more...
2004-09-20 Chris LattnerPrototype these functions more accurately
2004-09-01 Reid SpencerChanges For Bug 352
2004-07-26 Chris LattnerImplement DeadStoreElim/alloca.llx by observing that...
2004-07-25 Chris Lattner* Substantially simplify how free instructions are...
2004-07-25 Chris LattnerFree instructions kill values too. This implements...
2004-07-24 Chris Lattnerobvious fix
2004-07-22 Chris LattnerThis is a trivial dead store elimination pass. It...