aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/DeadStoreElimination.cpp
Commit message (Expand)AuthorAgeFilesLines
* 80 col / tabs fixesNate Begeman2008-05-131-2/+2
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-131-2/+3
* Fix DSE to not eliminate volatile loads with no uses.Dan Gohman2008-04-281-3/+3
* Be more precise when eliminating pointers bue to memcpy's. This allows moreOwen Anderson2008-02-041-4/+10
* Remove a couple more cases of "getNumUses() == 0". No need to walk the linkedNick Lewycky2008-01-301-2/+2
* Use empty() instead of comparing size() with zero.Nick Lewycky2008-01-301-1/+1
* Don't DCE FreeInst's. We were using those! Patch from Owen Anderson.Nick Lewycky2008-01-301-1/+1
* Make DSE much more aggressive by performing DCE earlier. Update a testcase t...Owen Anderson2008-01-301-2/+55
* Add support for eliminating memcpy's at the end of functions. Also fix some ...Owen Anderson2008-01-291-26/+63
* DeadStoreElimination can treat byval parameters as if there were alloca's for...Owen Anderson2008-01-251-5/+6
* Initializing an unsigned with ~0UL causes the compilerDuncan Sands2008-01-201-9/+9
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Integrate the readonly/readnone logic more deeplyDuncan Sands2007-12-011-2/+1
* don't put erase or query for non-allocainst pointers in an set of allocainsts*'sChris Lattner2007-11-061-3/+6
* Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands2007-11-011-5/+5
* Fix test/Transforms/DeadStoreElimination/PartialStore.ll, which had beenOwen Anderson2007-11-011-4/+12
* Don't DSe volatile stores.Owen Anderson2007-08-261-18/+25
* Make NonLocal and None const in the right way. :-)Owen Anderson2007-08-091-3/+3
* Change the None and NonLocal markers in memdep to be const.Owen Anderson2007-08-081-3/+3
* Global values also don't undead-ify pointers in our dead alloca's set.Owen Anderson2007-08-081-0/+3
* Make handleEndBlock significantly faster with one trivial improvement,Owen Anderson2007-08-081-4/+30
* Small improvement: if a function doesn't access memory, we don't need to scanOwen Anderson2007-08-081-2/+8
* Add some comments, remove a dead argument, and simplify some control flow.Owen Anderson2007-08-081-19/+28
* A few more small cleanups.Owen Anderson2007-08-081-9/+7
* First round of cleanups from Chris' feedback.Owen Anderson2007-08-081-51/+58
* Fix 80 col. violations.Owen Anderson2007-08-021-14/+23
* Rename FastDSE to just DSE.Owen Anderson2007-08-011-12/+12
* Move FastDSE in to DeadStoreElimination.Owen Anderson2007-08-011-0/+387
* Remove old DSE.Owen Anderson2007-08-011-179/+0
* It's not necessary to do rounding for alloca operations when the requestedDan Gohman2007-07-181-0/+179