| Commit message (Expand) | Author | Age | Files | Lines |
| * | Propagate non-local comparisons. Fixes PR1757. | Owen Anderson | 2010-09-03 | 1 | -0/+48 |
| * | Add support for simplifying a load from a computed value to a load from a glo... | Owen Anderson | 2010-09-03 | 1 | -6/+34 |
| * | fix more AST updating bugs, correcting miscompilation in PR8041 | Chris Lattner | 2010-09-02 | 1 | -2/+4 |
| * | Reapply commit 112699, speculatively reverted by echristo, since | Duncan Sands | 2010-09-02 | 6 | -20/+18 |
| * | deepen my MMX/SRoA hack to avoid hurting non-x86 codegen. | Chris Lattner | 2010-09-01 | 1 | -2/+8 |
| * | Fix loop unswitching's assumption that a code path which either | Dan Gohman | 2010-09-01 | 1 | -9/+8 |
| * | 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 | 6 | -18/+20 |
| * | If PrototypeValue is erased in the middle of using the SSAUpdator | Duncan Sands | 2010-09-01 | 6 | -20/+18 |
| * | add a gross hack to work around a problem that Argiris reported | Chris Lattner | 2010-09-01 | 1 | -6/+25 |
| * | Revert 112442 and 112440 until the compile time problems introduced | Dan Gohman | 2010-09-01 | 1 | -106/+50 |
| * | licm is wasting time hoisting constant foldable operations, | Chris Lattner | 2010-08-31 | 1 | -4/+16 |
| * | tidy up | Chris Lattner | 2010-08-31 | 1 | -31/+32 |
| * | 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 |
| * | Only try to clean up the current block if we changed that block already. | Owen Anderson | 2010-08-31 | 1 | -5/+11 |
| * | Refactor my fix for PR5652 to terminate the predecessor lookups after the fir... | Owen Anderson | 2010-08-31 | 1 | -25/+24 |
| * | Fix an infinite loop; merging two functions will create a new function (if the | Nick Lewycky | 2010-08-31 | 1 | -31/+45 |
| * | Don't perform an extra traversal of the function just to do cleanup. We can ... | Owen Anderson | 2010-08-31 | 1 | -5/+4 |
| * | Rename ValuePropagation to a more descriptive CorrelatedValuePropagation. | Owen Anderson | 2010-08-31 | 1 | -12/+12 |
| * | Rename file to something more descriptive. | Owen Anderson | 2010-08-31 | 2 | -1/+1 |
| * | More Chris-inspired JumpThreading fixes: use ConstantExpr to correctly consta... | Owen Anderson | 2010-08-31 | 1 | -26/+64 |
| * | Switch to DenseSet, simplifying much more code. We now have a single iteration | Nick Lewycky | 2010-08-31 | 1 | -78/+83 |
| * | Remove r111665, which implemented store-narrowing in InstCombine. Chris disc... | Owen Anderson | 2010-08-31 | 1 | -47/+0 |
| * | Fix a typo. | Owen Anderson | 2010-08-30 | 1 | -1/+1 |
| * | Cleanups suggested by Chris. | Owen Anderson | 2010-08-30 | 1 | -20/+18 |
| * | Re-apply r112539, being more careful to respect the return values of the cons... | Owen Anderson | 2010-08-30 | 1 | -22/+25 |
| * | Add statistics to evaluate this pass. | Owen Anderson | 2010-08-30 | 1 | -0/+8 |
| * | 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 |
| * | rewrite DwarfEHPrepare to use SSAUpdater to promote its allocas | Chris Lattner | 2010-08-29 | 1 | -1/+1 |
| * | two changes: 1) make AliasSet hold the list of call sites with an | Chris Lattner | 2010-08-29 | 1 | -0/+1 |
| * | LICM does get dead instructions input to it. Instead of sinking them | Chris Lattner | 2010-08-29 | 1 | -1/+12 |
| * | use moveBefore instead of remove+insert, it avoids some | Chris Lattner | 2010-08-29 | 1 | -9/+3 |
| * | revert 112448 for now. | Chris Lattner | 2010-08-29 | 1 | -5/+6 |
| * | optimize LICM::hoist to use moveBefore. Correct its updating | Chris Lattner | 2010-08-29 | 1 | -6/+5 |
| * | fix some bugs (found by inspection) where LICM would not update | Chris Lattner | 2010-08-29 | 1 | -1/+3 |
| * | rework the ownership of subloop alias information: instead of | Chris Lattner | 2010-08-29 | 1 | -16/+25 |
| * | apparently unswitch had the same "Feature". Stop its | Chris Lattner | 2010-08-29 | 1 | -7/+2 |
| * | now that loop passes don't use DomFrontier, there is no reason | Chris Lattner | 2010-08-29 | 1 | -8/+2 |
| * | Optionally rerun dedicated-register filtering after applying | Dan Gohman | 2010-08-29 | 1 | -0/+20 |
| * | Fix several areas in LSR to do a better job keeping the main | Dan Gohman | 2010-08-29 | 1 | -50/+106 |
| * | Refactor the three main groups of code out of | Dan Gohman | 2010-08-29 | 1 | -5/+28 |
| * | Delete a bogus check. | Dan Gohman | 2010-08-29 | 1 | -2/+1 |
| * | Add some comments. | Dan Gohman | 2010-08-29 | 1 | -4/+13 |
| * | Move this debug output into GenerateAllReuseFormula, to declutter | Dan Gohman | 2010-08-29 | 1 | -4/+4 |
| * | Delete an unused declaration. | Dan Gohman | 2010-08-29 | 1 | -2/+0 |
| * | Do one lookup instead of two. | Dan Gohman | 2010-08-29 | 1 | -3/+4 |
| * | licm preserves the cfg, it doesn't have to explicitly say it | Chris Lattner | 2010-08-29 | 1 | -1/+1 |
| * | now that it doesn't use the PromoteMemToReg function, LICM doesn't | Chris Lattner | 2010-08-29 | 1 | -4/+1 |