aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/DeadStoreElimination.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r235153Pirama Arumuga Nainar2015-05-181-4/+4
* Update aosp/master llvm for rebase to r233350Pirama Arumuga Nainar2015-04-091-31/+29
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-1/+1
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-8/+1
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-16/+17
* Update to LLVM 3.5a.Stephen Hines2014-04-241-60/+39
* Change GetPointerBaseWithConstantOffset's DataLayout argument from aDan Gohman2013-01-311-3/+3
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-6/+6
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-10/+10
* Unquadratize SetVector removal loops in DSE.Benjamin Kramer2012-10-141-27/+36
* Move TargetData to DataLayout.Micah Villmow2012-10-081-8/+8
* Don't forget that strcpy and friends return a pointer to the destination, soNick Lewycky2012-09-251-2/+2
* Remove unused name of variable to quiet a warning. Also canonicalize aNick Lewycky2012-09-241-3/+3
* Teach DSE that strcpy, strncpy, strcat and strncat are all stores which may beNick Lewycky2012-09-241-32/+71
* Move all the calls to AA.getTargetLibraryInfo() to using a TLI member variable.Nick Lewycky2012-09-241-12/+11
* DSE: Poking holes into a SetVector is expensive, avoid it if possible.Benjamin Kramer2012-09-091-5/+5
* Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer2012-08-291-11/+15
* Change greater than to greater than or equal so that an identical sized store...Craig Topper2012-08-141-1/+1
* isAllocLikeFn is allowed to return true for functions which read memory; makeEli Friedman2012-08-081-2/+9
* Clean whitespaces.Nadav Rotem2012-07-241-14/+14
* refactor the MemoryBuiltin analysis:Nuno Lopes2012-06-211-52/+9
* It's not deterministic to iterate over SmallPtrSet. Replace it with SmallSetV...Evan Cheng2012-06-161-14/+14
* Teach DeadStoreElimination to eliminate exit-block stores with phi addresses.Dan Gohman2012-05-101-3/+19
* teach DSE and isInstructionTriviallyDead() about callocNuno Lopes2012-05-101-3/+16
* Reverted r152620 - DSE: Shorten memset when a later store overwrites the star...Pete Cooper2012-02-281-66/+2
* DSE: Shorten memset when a later store overwrites the start of itPete Cooper2012-02-281-2/+66
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-071-2/+2
* Fix infinite loop in DSE when deleting a free in a reachable loop that's alsoNick Lewycky2011-12-081-1/+1
* Fixed deadstoreelimination bug where negative indices were incorrectly causin...Pete Cooper2011-12-031-1/+1
* Merge isObjectPointerWithTrustworthySize with getPointerSize. Use it whenNick Lewycky2011-11-161-30/+20
* Fixed bug in DeadStoreElimination commit r144239Pete Cooper2011-11-101-1/+1
* DeadStoreElimination can now trim the size of a store if the end of the store...Pete Cooper2011-11-091-33/+110
* Do simple cross-block DSE when we encounter a free statement. Fixes PR11240.Nick Lewycky2011-11-051-25/+56
* Speculatively revert "DeadStoreElimination can now trim the size of a store ifDaniel Dunbar2011-11-041-109/+33
* DeadStoreElimination can now trim the size of a store if the end of it is dead.Pete Cooper2011-11-031-33/+109
* A non-escaping malloc in the entry block is not unlike an alloca. Do dead-storeNick Lewycky2011-10-221-2/+25
* Enhance the memdep interface so that users can tell the difference between a ...Eli Friedman2011-10-131-3/+3
* Add comment to clarify the behavior of a helper in DSE.Eli Friedman2011-09-131-0/+2
* Try again at r138809 (make DSE more aggressive in removing dead stores at the...Owen Anderson2011-09-061-79/+80
* Speculatively revert r138809 in an attempt to fix DragonEgg.Owen Anderson2011-08-301-2/+1
* When walking backwards to eliminate final stores to allocas at the end of a f...Owen Anderson2011-08-301-1/+2
* Atomic load/store handling for the passes using memdep (GVN, DSE, memcpyopt).Eli Friedman2011-08-171-3/+5
* Misc mid-level changes for new 'fence' instruction.Eli Friedman2011-07-271-3/+6
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-1/+1
* Add "unknown" results for memdep, which mean "I don't know whether a dependen...Eli Friedman2011-06-151-13/+12
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-151-1/+1
* * The DSE code that tested for overlapping needed to take into account the factBill Wendling2011-03-301-1/+3
* DSE: Remove an early exit optimization that depended on the ordering of a Sma...Benjamin Kramer2011-03-291-13/+0
* Simplification noticed by Frits.Bill Wendling2011-03-261-3/+2
* Rework the logic that determines if a store completely overlaps an ealier store.Bill Wendling2011-03-261-15/+23