[LIR] Make the LoopIdiomRecognize pass get analyses essentially the same
[oota-llvm.git] / lib / Transforms / Scalar / DeadStoreElimination.cpp
2010-11-21 Chris Lattnerimplement PR8576, deleting dead stores with intervening...
2010-11-12 Dan GohmanEnhance DSE to handle the case where a free call makes...
2010-10-19 Dan GohmanReapply r116831 and r116839, converting AliasAnalysis...
2010-10-19 Dan GohmanRevert r116831 and r116839, which are breaking selfhost...
2010-10-19 Dan GohmanOops, check in all the files for converting AliasAnalys...
2010-10-19 Owen AndersonGet rid of static constructors for pass registration...
2010-10-19 Dan GohmanConsistently use AliasAnalysis::UnknownSize instead...
2010-10-12 Owen AndersonBegin adding static dependence information to passes...
2010-10-07 Owen AndersonNow with fewer extraneous semicolons!
2010-08-06 Owen AndersonReapply r110396, with fixes to appease the Linux buildb...
2010-08-06 Owen AndersonRevert r110396 to fix buildbots.
2010-08-05 Owen AndersonDon't use PassInfo* as a type identifier for passes...
2010-07-28 Gabor Greifuse Value* constructor of CallSite to create potentiall...
2010-07-21 Owen AndersonFix batch of converting RegisterPass<> to INTIALIZE_PASS().
2010-07-02 Dan GohmanDon't claim to preserve AliasAnalysis. First, this...
2010-06-25 Gabor Greifuse ArgOperand API; tighten type of handleFreeWithNonTr...
2010-06-24 Gabor Greifuse ArgOperand API; introduce downcasted pointers into...
2010-06-22 Dan GohmanUse pre-increment instead of post-increment when the...
2010-04-16 Eric ChristopherRevert 101465, it broke internal OpenGL testing.
2010-04-16 Gabor Greifreapply r101434
2010-04-16 Gabor Greifback out r101423 and r101397, they break llvm-gcc self...
2010-04-15 Gabor Greifreapply r101364, which has been backed out in r101368
2010-04-15 Gabor Greifback out r101364, as it trips the linux nightlybot...
2010-04-15 Gabor Greifrotate CallInst operands, i.e. move callee to the back
2010-02-11 Chris LattnerMake DSE only scan blocks that are reachable from the...
2010-01-05 Dan GohmanUse do+while instead of while for loops which obviously...
2010-01-03 Nick LewyckySmall cleanups, refactor some duplicated code into...
2009-12-02 Chris Lattnerformatting cleanups.
2009-11-10 Duncan SandsAdd defensive break.
2009-11-10 Duncan SandsFix obvious typo.
2009-11-10 Duncan SandsTeach DSE to eliminate useless trampolines.
2009-11-10 Nick LewyckySimplify.
2009-11-10 Nick LewyckyReapply r86359, "Teach dead store elimination that...
2009-11-07 Chris LattnerRevert r86359, it is breaking the self host on the
2009-11-07 Nick LewyckyTeach dead store elimination that certain intrinsics...
2009-11-04 Chris Lattnerimprove DSE when TargetData is not around, based on...
2009-10-28 Owen AndersonTreat lifetime begin/end markers as allocations/frees...
2009-10-27 Victor HernandezRename MallocFreeHelper as MemoryBuiltins
2009-10-26 Victor HernandezRename MallocHelper as MallocFreeHelper, since it now...
2009-10-26 Victor HernandezRemove FreeInst.
2009-10-24 Victor HernandezAuto-upgrade free instructions to calls to the builtin...
2009-09-02 Chris Lattnerfix PR4815: some cases where DeleteDeadInstruction...
2009-09-02 Chris Lattnereliminate VISIBILITY_HIDDEN from Transforms/Scalar...
2009-07-24 Dan GohmanFix this condition I accidentally inverted.
2009-07-24 Dan GohmanConvert several more passes to use getAnalysisIfAvailab...
2009-05-09 Duncan SandsRename PaddedSize to AllocSize, in the hope that this
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
next