| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | 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 | 
| *  | Remove PHINode::reserveOperandSpace(). Instead, add a parameter to | Jay Foad | 2011-03-30 | 1 | -2/+1 | 
| *  | (Almost) always call reserveOperandSpace() on newly created PHINodes. | Jay Foad | 2011-03-30 | 1 | -2/+3 | 
| *  | Give GetUnderlyingObject a TargetData, to keep it in sync | Dan Gohman | 2011-01-24 | 1 | -1/+1 | 
| *  | Remove the PR8954 workaround. | Jakob Stoklund Olesen | 2011-01-11 | 1 | -4/+0 | 
| *  | Dial back the speculative fix for PR8954 a bit, so that we only recompute dom... | Cameron Zwarich | 2011-01-11 | 1 | -1/+3 | 
| *  | Attempt to fix the bootstrap buildbot. Rafael says this works for him on x86-... | Cameron Zwarich | 2011-01-11 | 1 | -0/+1 | 
| *  | update memdep when an instruction is deleted.  This code isn't | Chris Lattner | 2011-01-11 | 1 | -2/+5 | 
| *  | Fix FoldSingleEntryPHINodes to update memdep and AA when it deletes | Chris Lattner | 2011-01-11 | 1 | -2/+2 | 
| *  | Don't bother value numbering instructions with void types in GVN. In theory t... | Owen Anderson | 2011-01-04 | 1 | -0/+4 | 
| *  | Complete the NumberTable --> LeaderTable rename. | Owen Anderson | 2011-01-04 | 1 | -12/+12 | 
| *  | Fix typo in a comment. | Owen Anderson | 2011-01-04 | 1 | -1/+1 | 
| *  | Prune #include's. | Owen Anderson | 2011-01-04 | 1 | -10/+0 | 
| *  | Clarify terminology, settling on referring to what was the "number table" as ... | Owen Anderson | 2011-01-04 | 1 | -32/+32 | 
| *  | When removing a value from GVN's leaders list, don't drop the Next pointer in... | Owen Anderson | 2011-01-04 | 1 | -1/+2 | 
| *  | Branch instructions don't produce values, so there's no need to generate a va... | Owen Anderson | 2011-01-04 | 1 | -5/+3 | 
| *  | Remove commented out code. | Owen Anderson | 2011-01-04 | 1 | -4/+0 | 
| *  | Use the new addEscapingValue callback to update GlobalsModRef when GVN adds P... | Owen Anderson | 2011-01-03 | 1 | -2/+19 | 
| *  | Simplify GVN's value expression structure, allowing the elimination of a lot of  | Owen Anderson | 2011-01-03 | 1 | -260/+26 | 
| *  | split dom frontier handling stuff out to its own DominanceFrontier header, | Chris Lattner | 2011-01-02 | 1 | -0/+1 | 
| *  | Give GVN back the ability to perform simple conditional propagation on condit... | Owen Anderson | 2010-12-21 | 1 | -52/+82 | 
| *  | Remove dead code. | Owen Anderson | 2010-12-21 | 1 | -9/+0 | 
| *  | GVN's Expression is not POD-like (it contains a SmallVector). Simplify code w... | Benjamin Kramer | 2010-12-21 | 1 | -13/+3 | 
| *  | tidy up | Chris Lattner | 2010-12-19 | 1 | -18/+17 |