aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/JumpThreading.cpp
Commit message (Expand)AuthorAgeFilesLines
* enhance jump threading to preserve TBAA information when PRE'ing loads,Chris Lattner2012-03-131-1/+12
* Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy2012-03-081-2/+1
* SwitchInst refactoring.Stepan Dyatkovskiy2012-02-011-3/+4
* SplitBlockPredecessors uses ArrayRef instead of Data and Size.Jakub Staszak2011-12-091-6/+3
* Fix a few more places where TargetData/TargetLibraryInfo is not being passed.Chad Rosier2011-12-021-1/+6
* Change a bunch of isVolatile() checks to check for atomic load/store as well.Eli Friedman2011-09-121-2/+2
* Calculate GetBestDestForJumpOnUndef correctly.Jakub Staszak2011-06-271-1/+3
* Add a parameter to ConstantFoldTerminator() that callers can use to ask it to...Frits van Bommel2011-05-221-1/+1
* Preserve line number information while threading jumps.Devang Patel2011-05-041-2/+5
* Fix an infinite alternation in JumpThreading where two transforms would repea...Owen Anderson2011-04-141-3/+15
* Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad2011-03-301-2/+2
* (Almost) always call reserveOperandSpace() on newly created PHINodes.Jay Foad2011-03-301-2/+3
* prevent jump threading from merging blocks when their address isChris Lattner2011-02-181-1/+11
* Fix a bug in the loop in JumpThreading::ProcessThreadableEdges() where it cou...Frits van Bommel2010-12-161-2/+2
* Teach jump threading to "look through" a select when the branch direction of ...Frits van Bommel2010-12-151-0/+34
* simplify code and reduce indentationChris Lattner2010-12-131-32/+30
* Remove some dead code from the jump threading pass.Frits van Bommel2010-12-071-141/+0
* Implement jump threading of 'indirectbr' by keeping track of whether we're lo...Frits van Bommel2010-12-061-46/+80
* Refactor jump threading.Frits van Bommel2010-12-051-69/+73
* Remove trailing whitespace.Frits van Bommel2010-12-051-208/+208
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-1/+3
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-121-1/+4
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* Fix PR8247: JumpThreading can cause a block to become unreachable while still...Owen Anderson2010-09-291-4/+4
* Remove the option to disable LazyValueInfo in JumpThreading, as it is nowOwen Anderson2010-09-141-110/+37
* Change lower atomic pass to use IntrinsicInst to simplify it a bit.Chris Lattner2010-09-051-4/+3
* eliminate some non-obvious casts. UndefValue isa Constant.Chris Lattner2010-09-051-4/+4
* Reapply commit 112699, speculatively reverted by echristo, sinceDuncan Sands2010-09-021-2/+2
* JumpThreading keeps LazyValueInfo up to date, so we don't need to rerun itOwen Anderson2010-09-011-1/+3
* Speculatively revert 112699 and 112702, they seem to be causingEric Christopher2010-09-011-2/+2
* If PrototypeValue is erased in the middle of using the SSAUpdatorDuncan Sands2010-09-011-2/+2
* More cleanups of my JumpThreading transforms, including extracting some dupli...Owen Anderson2010-08-311-37/+26
* Add an RAII helper to make cleanup of the RecursionSet more fool-proof.Owen Anderson2010-08-311-18/+24
* Refactor my fix for PR5652 to terminate the predecessor lookups after the fir...Owen Anderson2010-08-311-25/+24
* More Chris-inspired JumpThreading fixes: use ConstantExpr to correctly consta...Owen Anderson2010-08-311-26/+64
* Re-apply r112539, being more careful to respect the return values of the cons...Owen Anderson2010-08-301-22/+25
* Revert r112539. It accidentally introduced a miscompilation.Owen Anderson2010-08-301-20/+16
* Fixes and cleanups pointed out by Chris. In general, be careful to handle 0 ...Owen Anderson2010-08-301-16/+20
* Fix typos in comments.Owen Anderson2010-08-271-2/+2
* Use LVI to eliminate conditional branches where we've tested a related condit...Owen Anderson2010-08-271-0/+39
* Make JumpThreading smart enough to properly thread StrSwitch when it's compil...Owen Anderson2010-08-261-17/+77
* Turn LVI on, previously detected failures should be fixed now.Owen Anderson2010-08-241-1/+1
* Turn LVI back off, I have a testcase now.Owen Anderson2010-08-231-1/+1
* Re-enable LazyValueInfo. Monitoring for failures.Owen Anderson2010-08-231-1/+1
* Disable LVI while I evaluate a failure.Owen Anderson2010-08-191-1/+1
* Tentatively enabled LVI by default. I'll be monitoring for any failures.Owen Anderson2010-08-191-1/+1
* Inform LazyValueInfo whenever a block is deleted, to avoid dangling pointer i...Owen Anderson2010-08-181-0/+7
* Fix PR7755: knowing something about an inval for a predChris Lattner2010-08-181-8/+4
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1