Age | Commit message (Expand) | Author |
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 |
2010-06-14 | jump threading can't split a critical edge from an indirectbr. This | Chris Lattner |
2010-05-28 | Move FindAvailableLoadedValue isSafeToLoadUnconditionally out of | Dan Gohman |
2010-04-10 | fix PR6743, a case where we'd delete an instruction before using it | Chris Lattner |
2010-02-16 | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands |
2010-02-15 | Uniformize the names of type predicates: rather than having isFloatTy and | Duncan Sands |
2010-02-11 | Make jump threading honor x|undef -> true and x&undef -> false, | Chris Lattner |
2010-01-23 | third bug from PR6119: the xor dupe extension allows | Chris Lattner |
2010-01-23 | add an early out to ProcessBranchOnXOR to speed it up, | Chris Lattner |
2010-01-23 | fix a crash in jump threading, PR6119 | Chris Lattner |
2010-01-12 | 1) Use the new SimplifyInstructionsInBlock routine instead of the copy | Chris Lattner |
2010-01-12 | tidy up | Chris Lattner |
2010-01-12 | Teach jump threading to duplicate small blocks when the branch | Chris Lattner |
2010-01-11 | some cleanup, and make it obvious that ProcessJumpOnPHI only works | Chris Lattner |
2010-01-07 | Use a do-while loop instead of while + boolean. | Benjamin Kramer |
2010-01-05 | Change errs() to dbgs(). | David Greene |
2009-12-28 | Metadata.h doesn't need to include ValueHandle.h anymore. | Chris Lattner |
2009-12-06 | fix PR5698 | Chris Lattner |
2009-12-01 | fix PR5640 by tracking whether a block is the header of a loop more | Chris Lattner |
2009-11-15 | make PRE of loads preserve the alignment of the moved load instruction. | Chris Lattner |
2009-11-15 | fix a bug handling 'not x' when x is undef. | Chris Lattner |
2009-11-12 | use getPredicateOnEdge to fold comparisons through PHI nodes, | Chris Lattner |
2009-11-12 | various fixes to the lattice transfer functions. | Chris Lattner |
2009-11-12 | switch jump threading to use getPredicateOnEdge in one place | Chris Lattner |
2009-11-12 | with the new code we can thread non-instruction values. This | Chris Lattner |
2009-11-12 | this argument can be an arbitrary value, it doesn't need to be an instruction. | Chris Lattner |
2009-11-12 | expose edge information and switch j-t to use it. | Chris Lattner |
2009-11-11 | pass TD into a SimplifyCmpInst call. Add another case that | Chris Lattner |
2009-11-11 | stub out some LazyValueInfo interfaces, and have JumpThreading | Chris Lattner |
2009-11-11 | add a fixme | Chris Lattner |
2009-11-10 | implement a TODO by teaching jump threading about "xor x, 1". | Chris Lattner |
2009-11-10 | move some generally useful functions out of jump threading | Chris Lattner |
2009-11-10 | improve comment. | Chris Lattner |
2009-11-10 | Make jump threading eliminate blocks that just contain phi nodes, | Chris Lattner |
2009-11-10 | make jump threading recursively simplify expressions instead of doing it | Chris Lattner |
2009-11-10 | don't invalidate PN, rewrite of this code is in progress anyway. | Chris Lattner |
2009-11-10 | add a new SimplifyInstruction API, which is like ConstantFoldInstruction, | Chris Lattner |
2009-11-09 | rename SimplifyCompare -> SimplifyCmpInst and split it into | Chris Lattner |
2009-11-09 | use instructionsimplify instead of a weak clone of ad-hoc folding stuff. | Chris Lattner |
2009-11-09 | stub out a new form of BasicBlock::RemovePredecessorAndSimplify which | Chris Lattner |
2009-11-09 | comment typos pointed out by Duncan | Chris Lattner |
2009-11-07 | reapply 86289, 86278, 86270, 86267, 86266 & 86264 plus a fix | Chris Lattner |
2009-11-07 | Revert following patches to fix llvmgcc bootstrap. | Devang Patel |
2009-11-07 | Avoid "ambiguous 'else'" warning from gcc. | Jeffrey Yasskin |
2009-11-06 | Fix a bug where we'd call SplitBlockPredecessors with a pred in the | Chris Lattner |