| Commit message (Expand) | Author | Age | Files | Lines |
| * | Don't PRE compares. | Jakob Stoklund Olesen | 2012-03-29 | 1 | -1/+8 |
| * | When propagating equalities, eg replacing A with B in every basic block | Duncan Sands | 2012-03-23 | 1 | -0/+3 |
| * | llvm::SwitchInst | Stepan Dyatkovskiy | 2012-03-11 | 1 | -1/+1 |
| * | Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012: | Stepan Dyatkovskiy | 2012-03-08 | 1 | -3/+4 |
| * | This is not a common case, in fact it never happens! | Duncan Sands | 2012-03-05 | 1 | -4/+0 |
| * | Replace the ad-hoc hashing in GVN with the new hashing infrastructure. | Chandler Carruth | 2012-03-05 | 1 | -10/+13 |
| * | Nick pointed out on IRC that GVN's propagateEquality wasn't propagating | Duncan Sands | 2012-03-04 | 1 | -1/+11 |
| * | Have GVN also do condition propagation when the right-hand side is not | Duncan Sands | 2012-02-29 | 1 | -11/+20 |
| * | Micro-optimization, no functionality change. | Duncan Sands | 2012-02-27 | 1 | -7/+12 |
| * | The value numbering function is recursive, so it is possible for multiple new | Duncan Sands | 2012-02-27 | 1 | -2/+2 |
| * | When performing a conditional branch depending on the value of a comparison | Duncan Sands | 2012-02-27 | 1 | -4/+62 |
| * | Teach GVN that x+y is the same as y+x and that x<y is the same as y>x. | Duncan Sands | 2012-02-24 | 1 | -1/+16 |
| * | Use Use::set rather than finding the operand number of the use | Duncan Sands | 2012-02-08 | 1 | -6/+3 |
| * | Neaten up this method. Check that if there is only one | Duncan Sands | 2012-02-05 | 1 | -3/+3 |
| * | Fix a thinko pointed out by Eli and the buildbots. | Duncan Sands | 2012-02-05 | 1 | -1/+1 |
| * | Reduce the number of dom queries made by GVN's conditional propagation | Duncan Sands | 2012-02-05 | 1 | -31/+9 |
| * | Reduce the number of non-trivial domtree queries by about 1% when | Duncan Sands | 2012-02-05 | 1 | -15/+17 |
| * | SwitchInst refactoring. | Stepan Dyatkovskiy | 2012-02-01 | 1 | -2/+2 |
| * | Increase the initial vector size to be equivalent to the size of the Deps | Bill Wendling | 2012-01-31 | 1 | -2/+2 |
| * | Cache the size of the vector instead of calling .size() all over the place. | Bill Wendling | 2012-01-31 | 1 | -5/+5 |
| * | Typo. | Chad Rosier | 2012-01-30 | 1 | -1/+1 |
| * | Typo. | Chad Rosier | 2012-01-30 | 1 | -1/+1 |
| * | Propagate TargetLibraryInfo throughout ConstantFolding.cpp and | Chad Rosier | 2011-12-01 | 1 | -2/+7 |
| * | Don't replace all dominated uses if there is only one use, since that | Duncan Sands | 2011-10-15 | 1 | -4/+9 |
| * | Enhance the memdep interface so that users can tell the difference between a ... | Eli Friedman | 2011-10-13 | 1 | -10/+10 |
| * | Teach GVN to also propagate switch cases. For example, in this code | Duncan Sands | 2011-10-07 | 1 | -31/+59 |
| * | GVN does simple propagation of conditions: when it sees a conditional | Duncan Sands | 2011-10-05 | 1 | -14/+111 |
| * | Generalize GVN's conditional propagation logic slightly: | Duncan Sands | 2011-10-05 | 1 | -4/+29 |
| * | Stop emitting instructions with the name "tmp" they eat up memory and have to... | Benjamin Kramer | 2011-09-27 | 1 | -6/+4 |
| * | Compare type size instead of type _store_ size to make sure that BitCastInst | Jakub Staszak | 2011-09-02 | 1 | -2/+2 |
| * | Atomic load/store handling for the passes using memdep (GVN, DSE, memcpyopt). | Eli Friedman | 2011-08-17 | 1 | -3/+3 |
| * | Disable PRE for landing pads. | Bill Wendling | 2011-08-17 | 1 | -2/+14 |
| * | Convert ConstantExpr::getGetElementPtr and | Jay Foad | 2011-07-21 | 1 | -2/+2 |
| * | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -16/+16 |
| * | Added recognition for signed add/sub/mul with overflow intrinsics to GVN as p... | Lang Hames | 2011-07-09 | 1 | -0/+3 |
| * | Make GVN look through extractvalues for recognised intrinsics. GVN can then C... | Lang Hames | 2011-07-08 | 1 | -7/+54 |
| * | Make better use of the PHINode API. | Jay Foad | 2011-06-20 | 1 | -4/+9 |
| * | Add "unknown" results for memdep, which mean "I don't know whether a dependen... | Eli Friedman | 2011-06-15 | 1 | -8/+24 |
| * | fix PR9841 by having GVN not process dead loads. This was | Chris Lattner | 2011-05-22 | 1 | -0/+5 |
| * | Preserve line number information. | Devang Patel | 2011-05-17 | 1 | -0/+1 |
| * | Set debug loc for new load instruction. | Devang Patel | 2011-05-17 | 1 | -0/+3 |
| * | Set debug loc for new instructions. | Devang Patel | 2011-05-04 | 1 | -3/+3 |
| * | improve comment. | Chris Lattner | 2011-04-28 | 1 | -1/+6 |
| * | final step needed to resolve PR6627, which allows us to flatten the code down to | Chris Lattner | 2011-04-28 | 1 | -3/+7 |
| * | code cleanups only. | Chris Lattner | 2011-04-28 | 1 | -36/+32 |
| * | centralize "marking for deletion" into a helper function. Pass GVN around to | Chris Lattner | 2011-04-28 | 1 | -52/+56 |
| * | Promote toErase to be an ivar of the GVN class. | Chris Lattner | 2011-04-28 | 1 | -39/+35 |
| * | teach GVN to widen integer loads when they are overaligned, when doing an | Chris Lattner | 2011-04-28 | 1 | -20/+123 |
| * | Improve the bail-out predicate to really only kick in when phi | Chris Lattner | 2011-04-26 | 1 | -1/+2 |
| * | Enhance MemDep: When alias analysis returns a partial alias result, | Chris Lattner | 2011-04-26 | 1 | -24/+78 |