instcombine: Migrate math library call simplifications
[oota-llvm.git] / test / Transforms / DeadStoreElimination /
2012-09-25 Nick LewyckyMake this test check the transforms it's actually doing...
2012-09-25 Nick LewyckyDon't forget that strcpy and friends return a pointer...
2012-09-24 Nick LewyckyTeach DSE that strcpy, strncpy, strcat and strncat...
2012-09-03 Bob WilsonFix more fallout from r158919, similar to PR13547.
2012-08-14 Craig TopperChange greater than to greater than or equal so that...
2012-08-08 Eli FriedmanisAllocLikeFn is allowed to return true for functions...
2012-05-10 Dan GohmanTeach DeadStoreElimination to eliminate exit-block...
2012-05-10 Nuno Lopesteach DSE and isInstructionTriviallyDead() about calloc
2012-02-28 Pete CooperReverted r152620 - DSE: Shorten memset when a later...
2012-02-28 Pete CooperDSE: Shorten memset when a later store overwrites the...
2012-02-26 Rafael EspindolaAdd testcase for the previous commit.
2012-02-16 Eli BenderskyReplace all instances of dg.exp file with lit.local...
2011-12-08 Nick LewyckyFix infinite loop in DSE when deleting a free in a...
2011-12-03 Pete CooperFixed deadstoreelimination bug where negative indices...
2011-11-16 Nick LewyckyFix typo in test.
2011-11-16 Nick LewyckyMerge isObjectPointerWithTrustworthySize with getPointe...
2011-11-09 Pete CooperDeadStoreElimination can now trim the size of a store...
2011-11-05 Nick LewyckyDo simple cross-block DSE when we encounter a free...
2011-11-04 Daniel DunbarSpeculatively revert "DeadStoreElimination can now...
2011-11-03 Pete CooperDeadStoreElimination can now trim the size of a store...
2011-10-24 Nick LewyckyA dead malloc, a free(NULL) and a free(undef) are all...
2011-10-22 Nick LewyckyA non-escaping malloc in the entry block is not unlike...
2011-09-06 Owen AndersonTry again at r138809 (make DSE more aggressive in remov...
2011-08-30 Owen AndersonRemove empty file.
2011-08-30 Owen AndersonSpeculatively revert r138809 in an attempt to fix Drago...
2011-08-30 Owen AndersonWhen walking backwards to eliminate final stores to...
2011-08-17 Eli FriedmanAtomic load/store handling for the passes using memdep...
2011-08-12 Eli FriedmanMove "atomic" and "volatile" designations on instructio...
2011-06-18 Chris Lattnerrip out a ton of intrinsic modernization logic from...
2011-06-17 Chris Lattnermanually upgrade a bunch of tests to modern syntax...
2011-05-23 Chris Lattnerfix a really nasty basicaa mod/ref calculation bug...
2011-03-30 Bill Wendling* The DSE code that tested for overlapping needed to...
2011-03-26 Bill WendlingPR9561: A store with a negative offset (via GEP) could...
2010-12-06 Chris LattnerFix PR8728, a miscompilation I recently introduced...
2010-11-30 Chris LattnerEnhance DSE to handle the variable index case in PR8657.
2010-11-30 Chris Lattnerteach DSE to use GetPointerBaseWithConstantOffset to...
2010-11-30 Chris Lattnerenhance isRemovable to refuse to delete volatile mem...
2010-11-30 Chris LattnerRewrite the main DSE loop to be written in terms of...
2010-11-30 Chris Lattnermerge one more away
2010-11-30 Chris LattnerI already merged partial-overwrite.ll -> PartialStore.ll
2010-11-30 Chris Lattnerclean up DSE tests, removing some poorly reduced and...
2010-11-30 Chris Lattnerenhance basicaa to return "Mod" for a memcpy call when the
2010-11-30 Chris LattnerTeach basicaa that memset's modref set is at worst...
2010-11-30 Chris Lattnermy previous patch would cause us to start deleting...
2010-11-29 Benjamin KramerFix some broken CHECK lines.
2010-11-29 Chris Lattnerfix PR8677, patch by Jakub Staszak!
2010-11-21 Chris Lattnerimplement PR8576, deleting dead stores with intervening...
2010-11-21 Chris Lattnerfile checkize
2010-11-12 Dan GohmanEnhance DSE to handle the case where a free call makes...
2010-11-12 Dan GohmanFilecheckize.
2010-10-18 Dan GohmanMake BasicAliasAnalysis a normal AliasAnalysis implemen...
2010-04-07 Chris Lattneradd newlines at the end of files.
2010-02-11 Chris LattnerMake DSE only scan blocks that are reachable from the...
2010-01-05 Dan GohmanDelete useless trailing semicolons.
2009-12-12 Benjamin KramerFix some CHECK lines which were ignored by accident.
2009-12-02 Owen AndersonCleanup/remove some parts of the lifetime region handli...
2009-11-28 Nick LewyckyTeach memdep to look for memory use intrinsics during...
2009-11-28 Chris Lattnerimplement a FIXME: limit the depth that DecomposeGEPExp...
2009-11-14 Nick LewyckyTeach BasicAA that a constant expression can't alias...
2009-11-10 Duncan SandsTeach DSE to eliminate useless trampolines.
2009-11-10 Nick LewyckyReapply r86359, "Teach dead store elimination that...
2009-11-07 Chris Lattnerremove empty files.
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-11-03 Kenneth UildriksMake opt default to not adding a target data string...
2009-10-28 Owen AndersonTreat lifetime begin/end markers as allocations/frees...
2009-09-11 Dan GohmanChange tests from "opt %s" to "opt < %s" so that opt...
2009-09-08 Dan GohmanUse opt -S instead of piping bitcode output through...
2009-09-08 Dan GohmanChange these tests to feed the assembly files to opt...
2009-09-02 Chris Lattnerfix PR4815: some cases where DeleteDeadInstruction...
2009-06-04 Dan GohmanSplit the Add, Sub, and Mul instruction opcodes into...
2008-12-06 Chris LattnerReimplement the inner loop of DSE. It now uniformly...
2008-11-29 Chris LattnerFix a thinko that manifested as a crash on clamav last...
2008-11-28 Chris LattnerFix PR3141 by ensuring that MemoryDependenceAnalysis...
2008-07-28 Owen AndersonAdd support for eliminating stores that store the same...
2008-05-20 Gabor Greifsabre brings to my attention that the 'tr' suffix is...
2008-05-20 Gabor GreifRename the last test with .llx extension to .ll, resolv...
2008-05-01 Dan GohmanUpdate old-style syntax in some "not grep" tests.
2008-04-28 Dan GohmanFix DSE to not eliminate volatile loads with no uses.
2008-04-19 Chris Lattnerrename *.llx -> *.ll, last batch.
2008-03-01 Tanya LattnerRemove llvm-upgrade and update test cases.
2008-01-30 Owen AndersonMake DSE much more aggressive by performing DCE earlier...
2008-01-29 Owen AndersonAdd a testcase for eliminating memcpy's at the end...
2008-01-25 Owen AndersonDeadStoreElimination can treat byval parameters as...
2007-11-01 Owen AndersonFix test/Transforms/DeadStoreElimination/PartialStore...
2007-08-01 Owen AndersonForgot to update these files for the FastDSE changes.
2007-08-01 Owen AndersonRename FastDSE to just DSE.
2007-07-23 Owen AndersonMove these tests to use FastDSE instead of old DSE.
2007-06-29 John CriswellConvert .cvsignore files
2007-04-15 Reid SpencerFor PR1319:
2007-04-11 Reid SpencerMake the llvm-runtest function much more amenable by...
2007-01-07 Reid Spencerllvm.isunordered.* are gone.
2006-12-31 Reid SpencerFor PR950:
2006-12-02 Reid SpencerUse the llvm-upgrade program to upgrade llvm assembly.
2006-06-27 Chris LattnerNew testcase, reduced by nate, which crashes DSE
2006-04-12 Tanya LattnerAdded the ability to xfail based on llvmgcc version
2006-03-23 Reid SpencerTired of wading through cvs's list ? files that are...
2005-11-30 Chris Lattnernew testcase dse is miscompiling
2004-12-29 Chris LattnerAdd a comment, add a new testcase
next