| Commit message (Expand) | Author | Age | Files | Lines |
* | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -3/+3 |
* | Add a new attribute, 'noduplicate'. If a function contains a noduplicate call... | James Molloy | 2012-12-20 | 1 | -1/+5 |
* | Teach the jump threading optimization to stop scanning the basic block when c... | Nadav Rotem | 2012-12-03 | 1 | -5/+10 |
* | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -13/+13 |
* | Move TargetData to DataLayout. | Micah Villmow | 2012-10-08 | 1 | -3/+3 |
* | Make MemoryBuiltins aware of TargetLibraryInfo. | Benjamin Kramer | 2012-08-29 | 1 | -1/+1 |
* | Clean whitespaces. | Nadav Rotem | 2012-07-24 | 1 | -3/+3 |
* | Fix assertion in jump threading (PR13405). | Richard Osborne | 2012-07-20 | 1 | -0/+2 |
* | enhance jump threading to preserve TBAA information when PRE'ing loads, | Chris Lattner | 2012-03-13 | 1 | -1/+12 |
* | Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012: | Stepan Dyatkovskiy | 2012-03-08 | 1 | -2/+1 |
* | SwitchInst refactoring. | Stepan Dyatkovskiy | 2012-02-01 | 1 | -3/+4 |
* | SplitBlockPredecessors uses ArrayRef instead of Data and Size. | Jakub Staszak | 2011-12-09 | 1 | -6/+3 |
* | Fix a few more places where TargetData/TargetLibraryInfo is not being passed. | Chad Rosier | 2011-12-02 | 1 | -1/+6 |
* | Change a bunch of isVolatile() checks to check for atomic load/store as well. | Eli Friedman | 2011-09-12 | 1 | -2/+2 |
* | Calculate GetBestDestForJumpOnUndef correctly. | Jakub Staszak | 2011-06-27 | 1 | -1/+3 |
* | Add a parameter to ConstantFoldTerminator() that callers can use to ask it to... | Frits van Bommel | 2011-05-22 | 1 | -1/+1 |
* | Preserve line number information while threading jumps. | Devang Patel | 2011-05-04 | 1 | -2/+5 |
* | Fix an infinite alternation in JumpThreading where two transforms would repea... | Owen Anderson | 2011-04-14 | 1 | -3/+15 |
* | Remove PHINode::reserveOperandSpace(). Instead, add a parameter to | Jay Foad | 2011-03-30 | 1 | -2/+2 |
* | (Almost) always call reserveOperandSpace() on newly created PHINodes. | Jay Foad | 2011-03-30 | 1 | -2/+3 |
* | prevent jump threading from merging blocks when their address is | Chris Lattner | 2011-02-18 | 1 | -1/+11 |
* | Fix a bug in the loop in JumpThreading::ProcessThreadableEdges() where it cou... | Frits van Bommel | 2010-12-16 | 1 | -2/+2 |
* | Teach jump threading to "look through" a select when the branch direction of ... | Frits van Bommel | 2010-12-15 | 1 | -0/+34 |
* | simplify code and reduce indentation | Chris Lattner | 2010-12-13 | 1 | -32/+30 |
* | Remove some dead code from the jump threading pass. | Frits van Bommel | 2010-12-07 | 1 | -141/+0 |
* | Implement jump threading of 'indirectbr' by keeping track of whether we're lo... | Frits van Bommel | 2010-12-06 | 1 | -46/+80 |
* | Refactor jump threading. | Frits van Bommel | 2010-12-05 | 1 | -69/+73 |
* | Remove trailing whitespace. | Frits van Bommel | 2010-12-05 | 1 | -208/+208 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -1/+3 |
* | Begin adding static dependence information to passes, which will allow us to | Owen Anderson | 2010-10-12 | 1 | -1/+4 |
* | Now with fewer extraneous semicolons! | Owen Anderson | 2010-10-07 | 1 | -1/+1 |
* | Fix PR8247: JumpThreading can cause a block to become unreachable while still... | Owen Anderson | 2010-09-29 | 1 | -4/+4 |
* | Remove the option to disable LazyValueInfo in JumpThreading, as it is now | Owen Anderson | 2010-09-14 | 1 | -110/+37 |
* | Change lower atomic pass to use IntrinsicInst to simplify it a bit. | Chris Lattner | 2010-09-05 | 1 | -4/+3 |
* | eliminate some non-obvious casts. UndefValue isa Constant. | Chris Lattner | 2010-09-05 | 1 | -4/+4 |
* | Reapply commit 112699, speculatively reverted by echristo, since | Duncan Sands | 2010-09-02 | 1 | -2/+2 |
* | JumpThreading keeps LazyValueInfo up to date, so we don't need to rerun it | Owen Anderson | 2010-09-01 | 1 | -1/+3 |
* | Speculatively revert 112699 and 112702, they seem to be causing | Eric Christopher | 2010-09-01 | 1 | -2/+2 |
* | If PrototypeValue is erased in the middle of using the SSAUpdator | Duncan Sands | 2010-09-01 | 1 | -2/+2 |
* | More cleanups of my JumpThreading transforms, including extracting some dupli... | Owen Anderson | 2010-08-31 | 1 | -37/+26 |
* | Add an RAII helper to make cleanup of the RecursionSet more fool-proof. | Owen Anderson | 2010-08-31 | 1 | -18/+24 |
* | Refactor my fix for PR5652 to terminate the predecessor lookups after the fir... | Owen Anderson | 2010-08-31 | 1 | -25/+24 |
* | More Chris-inspired JumpThreading fixes: use ConstantExpr to correctly consta... | Owen Anderson | 2010-08-31 | 1 | -26/+64 |
* | Re-apply r112539, being more careful to respect the return values of the cons... | Owen Anderson | 2010-08-30 | 1 | -22/+25 |
* | Revert r112539. It accidentally introduced a miscompilation. | Owen Anderson | 2010-08-30 | 1 | -20/+16 |
* | Fixes and cleanups pointed out by Chris. In general, be careful to handle 0 ... | Owen Anderson | 2010-08-30 | 1 | -16/+20 |
* | Fix typos in comments. | Owen Anderson | 2010-08-27 | 1 | -2/+2 |
* | Use LVI to eliminate conditional branches where we've tested a related condit... | Owen Anderson | 2010-08-27 | 1 | -0/+39 |
* | Make JumpThreading smart enough to properly thread StrSwitch when it's compil... | Owen Anderson | 2010-08-26 | 1 | -17/+77 |
* | Turn LVI on, previously detected failures should be fixed now. | Owen Anderson | 2010-08-24 | 1 | -1/+1 |