Age | Commit message (Expand) | Author |
2011-06-27 | Calculate GetBestDestForJumpOnUndef correctly. | Jakub Staszak |
2011-05-22 | Add a parameter to ConstantFoldTerminator() that callers can use to ask it to... | Frits van Bommel |
2011-05-04 | Preserve line number information while threading jumps. | Devang Patel |
2011-04-14 | Fix an infinite alternation in JumpThreading where two transforms would repea... | Owen Anderson |
2011-03-30 | Remove PHINode::reserveOperandSpace(). Instead, add a parameter to | Jay Foad |
2011-03-30 | (Almost) always call reserveOperandSpace() on newly created PHINodes. | Jay Foad |
2011-02-18 | prevent jump threading from merging blocks when their address is | Chris Lattner |
2010-12-16 | Fix a bug in the loop in JumpThreading::ProcessThreadableEdges() where it cou... | Frits van Bommel |
2010-12-15 | Teach jump threading to "look through" a select when the branch direction of ... | Frits van Bommel |
2010-12-13 | simplify code and reduce indentation | Chris Lattner |
2010-12-07 | Remove some dead code from the jump threading pass. | Frits van Bommel |
2010-12-06 | Implement jump threading of 'indirectbr' by keeping track of whether we're lo... | Frits van Bommel |
2010-12-05 | Refactor jump threading. | Frits van Bommel |
2010-12-05 | Remove trailing whitespace. | Frits van Bommel |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson |
2010-10-12 | Begin adding static dependence information to passes, which will allow us to | Owen Anderson |
2010-10-07 | Now with fewer extraneous semicolons! | Owen Anderson |
2010-09-29 | Fix PR8247: JumpThreading can cause a block to become unreachable while still... | Owen Anderson |
2010-09-14 | Remove the option to disable LazyValueInfo in JumpThreading, as it is now | Owen Anderson |
2010-09-05 | Change lower atomic pass to use IntrinsicInst to simplify it a bit. | Chris Lattner |
2010-09-05 | eliminate some non-obvious casts. UndefValue isa Constant. | Chris Lattner |
2010-09-02 | Reapply commit 112699, speculatively reverted by echristo, since | Duncan Sands |
2010-09-01 | JumpThreading keeps LazyValueInfo up to date, so we don't need to rerun it | Owen Anderson |
2010-09-01 | Speculatively revert 112699 and 112702, they seem to be causing | Eric Christopher |
2010-09-01 | If PrototypeValue is erased in the middle of using the SSAUpdator | Duncan Sands |
2010-08-31 | More cleanups of my JumpThreading transforms, including extracting some dupli... | Owen Anderson |
2010-08-31 | Add an RAII helper to make cleanup of the RecursionSet more fool-proof. | Owen Anderson |
2010-08-31 | Refactor my fix for PR5652 to terminate the predecessor lookups after the fir... | Owen Anderson |
2010-08-31 | More Chris-inspired JumpThreading fixes: use ConstantExpr to correctly consta... | Owen Anderson |
2010-08-30 | Re-apply r112539, being more careful to respect the return values of the cons... | Owen Anderson |
2010-08-30 | Revert r112539. It accidentally introduced a miscompilation. | Owen Anderson |
2010-08-30 | Fixes and cleanups pointed out by Chris. In general, be careful to handle 0 ... | Owen Anderson |
2010-08-27 | Fix typos in comments. | Owen Anderson |
2010-08-27 | Use LVI to eliminate conditional branches where we've tested a related condit... | Owen Anderson |
2010-08-26 | Make JumpThreading smart enough to properly thread StrSwitch when it's compil... | Owen Anderson |
2010-08-24 | Turn LVI on, previously detected failures should be fixed now. | Owen Anderson |
2010-08-23 | Turn LVI back off, I have a testcase now. | Owen Anderson |
2010-08-23 | Re-enable LazyValueInfo. Monitoring for failures. | Owen Anderson |
2010-08-19 | Disable LVI while I evaluate a failure. | Owen Anderson |
2010-08-19 | Tentatively enabled LVI by default. I'll be monitoring for any failures. | Owen Anderson |
2010-08-18 | Inform LazyValueInfo whenever a block is deleted, to avoid dangling pointer i... | Owen Anderson |
2010-08-18 | Fix PR7755: knowing something about an inval for a pred | Chris Lattner |
2010-08-06 | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson |
2010-08-06 | Revert r110396 to fix buildbots. | Owen Anderson |
2010-08-05 | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson |
2010-08-05 | Give JumpThreading+LVI a long-form cl::opt so that it's easier to toggle the ... | Owen Anderson |
2010-07-26 | Add an initial implementation of LazyValueInfo updating for JumpThreading. D... | Owen Anderson |
2010-07-21 | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson |
2010-07-12 | cache results of operator* | Gabor Greif |
2010-07-12 | if jump threading is able to infer interesting values on both | Chris Lattner |