| Commit message (Expand) | Author | Age | Files | Lines |
* | Update aosp/master LLVM for rebase to r235153 | Pirama Arumuga Nainar | 2015-05-18 | 2 | -3/+3 |
* | Update aosp/master llvm for rebase to r233350 | Pirama Arumuga Nainar | 2015-04-09 | 17 | -150/+104 |
* | Update aosp/master LLVM for rebase to r230699. | Stephen Hines | 2015-03-23 | 2 | -18/+18 |
* | Update aosp/master LLVM for rebase to r222494. | Stephen Hines | 2014-12-02 | 7 | -55/+241 |
* | Update to LLVM 3.5a. | Stephen Hines | 2014-04-24 | 1 | -0/+9 |
* | Merging r195504: | Manman Ren | 2013-12-09 | 1 | -1/+2 |
* | Fixing a heisenbug where the memory dependence analysis behaves differently | Yunzhong Gao | 2013-11-14 | 1 | -0/+260 |
* | [tests] Cleanup initialization of test suffixes. | Daniel Dunbar | 2013-08-16 | 1 | -1/+0 |
* | Catch more CHECK that can be converted to CHECK-LABEL in Transforms for easie... | Stephen Lin | 2013-07-14 | 2 | -4/+4 |
* | Update Transforms tests to use CHECK-LABEL for easier debugging. No functiona... | Stephen Lin | 2013-07-14 | 8 | -53/+53 |
* | TBAA: remove !tbaa from testing cases if not used. | Manman Ren | 2013-04-30 | 1 | -7/+3 |
* | Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a Mod... | Dmitri Gribenko | 2013-01-01 | 3 | -3/+3 |
* | Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a Mod... | Dmitri Gribenko | 2012-12-30 | 1 | -1/+1 |
* | Make this test check the transforms it's actually doing. Also add a test that it | Nick Lewycky | 2012-09-25 | 1 | -3/+17 |
* | Don't forget that strcpy and friends return a pointer to the destination, so | Nick Lewycky | 2012-09-25 | 1 | -0/+10 |
* | Teach DSE that strcpy, strncpy, strcat and strncat are all stores which may be | Nick Lewycky | 2012-09-24 | 1 | -0/+46 |
* | Fix more fallout from r158919, similar to PR13547. | Bob Wilson | 2012-09-03 | 1 | -0/+14 |
* | Change greater than to greater than or equal so that an identical sized store... | Craig Topper | 2012-08-14 | 1 | -0/+19 |
* | isAllocLikeFn is allowed to return true for functions which read memory; make | Eli Friedman | 2012-08-08 | 1 | -0/+15 |
* | Teach DeadStoreElimination to eliminate exit-block stores with phi addresses. | Dan Gohman | 2012-05-10 | 1 | -0/+10 |
* | teach DSE and isInstructionTriviallyDead() about calloc | Nuno Lopes | 2012-05-10 | 1 | -1/+9 |
* | Reverted r152620 - DSE: Shorten memset when a later store overwrites the star... | Pete Cooper | 2012-02-28 | 1 | -71/+0 |
* | DSE: Shorten memset when a later store overwrites the start of it | Pete Cooper | 2012-02-28 | 1 | -0/+71 |
* | Add testcase for the previous commit. | Rafael Espindola | 2012-02-26 | 1 | -0/+25 |
* | Replace all instances of dg.exp file with lit.local.cfg, since all tests are ... | Eli Bendersky | 2012-02-16 | 2 | -3/+1 |
* | Fix infinite loop in DSE when deleting a free in a reachable loop that's also | Nick Lewycky | 2011-12-08 | 1 | -0/+10 |
* | Fixed deadstoreelimination bug where negative indices were incorrectly causin... | Pete Cooper | 2011-12-03 | 1 | -0/+17 |
* | Fix typo in test. | Nick Lewycky | 2011-11-16 | 1 | -1/+1 |
* | Merge isObjectPointerWithTrustworthySize with getPointerSize. Use it when | Nick Lewycky | 2011-11-16 | 1 | -0/+38 |
* | DeadStoreElimination can now trim the size of a store if the end of the store... | Pete Cooper | 2011-11-09 | 1 | -0/+78 |
* | Do simple cross-block DSE when we encounter a free statement. Fixes PR11240. | Nick Lewycky | 2011-11-05 | 1 | -4/+22 |
* | Speculatively revert "DeadStoreElimination can now trim the size of a store if | Daniel Dunbar | 2011-11-04 | 1 | -78/+0 |
* | DeadStoreElimination can now trim the size of a store if the end of it is dead. | Pete Cooper | 2011-11-03 | 1 | -0/+78 |
* | A dead malloc, a free(NULL) and a free(undef) are all trivially dead | Nick Lewycky | 2011-10-24 | 1 | -2/+1 |
* | A non-escaping malloc in the entry block is not unlike an alloca. Do dead-store | Nick Lewycky | 2011-10-22 | 1 | -0/+8 |
* | Try again at r138809 (make DSE more aggressive in removing dead stores at the... | Owen Anderson | 2011-09-06 | 2 | -0/+112 |
* | Remove empty file. | Owen Anderson | 2011-08-30 | 1 | -0/+0 |
* | Speculatively revert r138809 in an attempt to fix DragonEgg. | Owen Anderson | 2011-08-30 | 1 | -27/+0 |
* | When walking backwards to eliminate final stores to allocas at the end of a f... | Owen Anderson | 2011-08-30 | 1 | -0/+27 |
* | Atomic load/store handling for the passes using memdep (GVN, DSE, memcpyopt). | Eli Friedman | 2011-08-17 | 1 | -0/+107 |
* | Move "atomic" and "volatile" designations on instructions after the opcode | Eli Friedman | 2011-08-12 | 1 | -4/+4 |
* | rip out a ton of intrinsic modernization logic from AutoUpgrade.cpp, which is | Chris Lattner | 2011-06-18 | 4 | -22/+20 |
* | manually upgrade a bunch of tests to modern syntax, and remove some that | Chris Lattner | 2011-06-17 | 1 | -2/+4 |
* | fix a really nasty basicaa mod/ref calculation bug that was causing miscompil... | Chris Lattner | 2011-05-23 | 1 | -0/+17 |
* | * The DSE code that tested for overlapping needed to take into account the fact | Bill Wendling | 2011-03-30 | 1 | -0/+1 |
* | PR9561: A store with a negative offset (via GEP) could erroniously say that it | Bill Wendling | 2011-03-26 | 1 | -0/+22 |
* | Fix PR8728, a miscompilation I recently introduced. When optimizing | Chris Lattner | 2010-12-06 | 1 | -1/+15 |
* | Enhance DSE to handle the variable index case in PR8657. | Chris Lattner | 2010-11-30 | 1 | -0/+17 |
* | teach DSE to use GetPointerBaseWithConstantOffset to analyze | Chris Lattner | 2010-11-30 | 1 | -0/+16 |
* | enhance isRemovable to refuse to delete volatile mem transfers | Chris Lattner | 2010-11-30 | 1 | -4/+16 |