summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/JumpThreading.cpp
Commit message (Expand)AuthorAge
* Don't eliminate a partially redundant load if it's in a landing pad.Bill Wendling2013-10-21
* JumpThreading: Turn a select instruction into branching if it allows to threa...Benjamin Kramer2013-08-07
* Reimplement isPotentiallyReachable to make nocapture deduction much stronger.Nick Lewycky2013-07-27
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Add a new attribute, 'noduplicate'. If a function contains a noduplicate call...James Molloy2012-12-20
* Teach the jump threading optimization to stop scanning the basic block when c...Nadav Rotem2012-12-03
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer2012-08-29
* Clean whitespaces.Nadav Rotem2012-07-24
* Fix assertion in jump threading (PR13405).Richard Osborne2012-07-20
* enhance jump threading to preserve TBAA information when PRE'ing loads,Chris Lattner2012-03-13
* Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy2012-03-08
* SwitchInst refactoring.Stepan Dyatkovskiy2012-02-01
* SplitBlockPredecessors uses ArrayRef instead of Data and Size.Jakub Staszak2011-12-09
* Fix a few more places where TargetData/TargetLibraryInfo is not being passed.Chad Rosier2011-12-02
* Change a bunch of isVolatile() checks to check for atomic load/store as well.Eli Friedman2011-09-12
* Calculate GetBestDestForJumpOnUndef correctly.Jakub Staszak2011-06-27
* Add a parameter to ConstantFoldTerminator() that callers can use to ask it to...Frits van Bommel2011-05-22
* Preserve line number information while threading jumps.Devang Patel2011-05-04
* Fix an infinite alternation in JumpThreading where two transforms would repea...Owen Anderson2011-04-14
* Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad2011-03-30
* (Almost) always call reserveOperandSpace() on newly created PHINodes.Jay Foad2011-03-30
* prevent jump threading from merging blocks when their address isChris Lattner2011-02-18
* Fix a bug in the loop in JumpThreading::ProcessThreadableEdges() where it cou...Frits van Bommel2010-12-16
* Teach jump threading to "look through" a select when the branch direction of ...Frits van Bommel2010-12-15
* simplify code and reduce indentationChris Lattner2010-12-13
* Remove some dead code from the jump threading pass.Frits van Bommel2010-12-07
* Implement jump threading of 'indirectbr' by keeping track of whether we're lo...Frits van Bommel2010-12-06
* Refactor jump threading.Frits van Bommel2010-12-05
* Remove trailing whitespace.Frits van Bommel2010-12-05
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-19
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-12
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Fix PR8247: JumpThreading can cause a block to become unreachable while still...Owen Anderson2010-09-29
* Remove the option to disable LazyValueInfo in JumpThreading, as it is nowOwen Anderson2010-09-14
* Change lower atomic pass to use IntrinsicInst to simplify it a bit.Chris Lattner2010-09-05
* eliminate some non-obvious casts. UndefValue isa Constant.Chris Lattner2010-09-05
* Reapply commit 112699, speculatively reverted by echristo, sinceDuncan Sands2010-09-02
* JumpThreading keeps LazyValueInfo up to date, so we don't need to rerun itOwen Anderson2010-09-01
* Speculatively revert 112699 and 112702, they seem to be causingEric Christopher2010-09-01
* If PrototypeValue is erased in the middle of using the SSAUpdatorDuncan Sands2010-09-01
* More cleanups of my JumpThreading transforms, including extracting some dupli...Owen Anderson2010-08-31
* Add an RAII helper to make cleanup of the RecursionSet more fool-proof.Owen Anderson2010-08-31
* Refactor my fix for PR5652 to terminate the predecessor lookups after the fir...Owen Anderson2010-08-31
* More Chris-inspired JumpThreading fixes: use ConstantExpr to correctly consta...Owen Anderson2010-08-31
* Re-apply r112539, being more careful to respect the return values of the cons...Owen Anderson2010-08-30
* Revert r112539. It accidentally introduced a miscompilation.Owen Anderson2010-08-30
* Fixes and cleanups pointed out by Chris. In general, be careful to handle 0 ...Owen Anderson2010-08-30
* Fix typos in comments.Owen Anderson2010-08-27