| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a corner case in updating LoopInfo after fully unrolling an outer loop. | Andrew Trick | 2011-11-18 | 1 | -0/+41 |
* | Fix an overly general check in SimplifyIndvar to handle useless phi cycles. | Andrew Trick | 2011-11-17 | 1 | -0/+29 |
* | Add support for custom names for library functions in TargetLibraryInfo. Add... | Eli Friedman | 2011-11-17 | 1 | -0/+30 |
* | Fix typo in test. | Nick Lewycky | 2011-11-16 | 1 | -1/+1 |
* | Merge isObjectPointerWithTrustworthySize with getPointerSize. Use it when | Nick Lewycky | 2011-11-16 | 1 | -0/+38 |
* | Fix SCEV overly optimistic back edge taken count for multi-exit loops. | Andrew Trick | 2011-11-16 | 3 | -2/+53 |
* | Refactor capture tracking (which already had a couple flags for whether returns | Nick Lewycky | 2011-11-14 | 1 | -0/+25 |
* | Don't try to loop on iterators that are potentially invalidated inside the lo... | Nick Lewycky | 2011-11-12 | 1 | -0/+42 |
* | Make sure scalarrepl picks the correct alloca when it rewrites a bitcast. Fi... | Eli Friedman | 2011-11-12 | 1 | -0/+26 |
* | Get rid of an optimization in SCCP which appears to have many issues. Specif... | Eli Friedman | 2011-11-11 | 1 | -20/+0 |
* | DeadStoreElimination can now trim the size of a store if the end of the store... | Pete Cooper | 2011-11-09 | 1 | -0/+78 |
* | Fix code to match comment. Fixes PR11340, a regression from r143209. | Eli Friedman | 2011-11-08 | 1 | -0/+10 |
* | LICM pass now understands invariant load metadata. Nothing generates this ye... | Pete Cooper | 2011-11-08 | 1 | -0/+39 |
* | Convert to the new EH model. | Bill Wendling | 2011-11-08 | 2 | -20/+15 |
* | Do simple cross-block DSE when we encounter a free statement. Fixes PR11240. | Nick Lewycky | 2011-11-05 | 1 | -4/+22 |
* | Add tests for existing InstSimplify features. | Dan Gohman | 2011-11-04 | 1 | -0/+21 |
* | Teach instsimplify to simplify calls to undef. | Dan Gohman | 2011-11-04 | 1 | -0/+7 |
* | Speculatively revert "DeadStoreElimination can now trim the size of a store if | Daniel Dunbar | 2011-11-04 | 1 | -78/+0 |
* | DeadStoreElimination can now trim the size of a store if the end of it is dead. | Pete Cooper | 2011-11-03 | 1 | -0/+78 |
* | Rewrite LinearFunctionTestReplace to handle pointer-type IVs. | Andrew Trick | 2011-11-02 | 1 | -11/+115 |
* | Broaden an assert to handle enable-iv-rewrite=true following r143183. | Andrew Trick | 2011-11-02 | 1 | -0/+38 |
* | Make sure we use the right insertion point when instcombine replaces a PHI wi... | Eli Friedman | 2011-11-01 | 1 | -0/+25 |
* | Reapply commit 143214 with a fix: m_ICmp doesn't match conditions | Duncan Sands | 2011-10-30 | 1 | -0/+18 |
* | SimplifyLibCalls: Use IRBuilder.CreateGlobalString when creating a string for... | Benjamin Kramer | 2011-10-29 | 1 | -2/+3 |
* | Revert r143214; it's breaking a bunch of stuff. | Eli Friedman | 2011-10-29 | 1 | -9/+0 |
* | The expression icmp eq (select (icmp eq x, 0), 1, x), 0 folds to false. | Duncan Sands | 2011-10-28 | 1 | -0/+9 |
* | A shift of a power of two is a power of two or zero. | Duncan Sands | 2011-10-28 | 1 | -0/+10 |
* | Fold icmp ugt (udiv X, Y), X to false. Spotted by my super-optimizer | Duncan Sands | 2011-10-28 | 1 | -0/+24 |
* | LFTR should avoid a type mismatch with null pointer IVs. | Andrew Trick | 2011-10-28 | 1 | -0/+59 |
* | Reapply commit 143028 with a fix: the problem was casting a ConstantExpr Mul | Duncan Sands | 2011-10-27 | 2 | -0/+43 |
* | Revert Duncan's r143028 expression folding which appears to be the culprit | Bob Wilson | 2011-10-27 | 1 | -31/+0 |
* | It is not safe to sink an alloca into a stacksave/stackrestore pair, so don't... | Eli Friedman | 2011-10-27 | 1 | -9/+34 |
* | The maximum power of 2 dividing a power of 2 is itself. This occurs | Duncan Sands | 2011-10-26 | 1 | -0/+12 |
* | My super-optimizer noticed that we weren't folding this expression to | Duncan Sands | 2011-10-26 | 1 | -0/+31 |
* | A dead malloc, a free(NULL) and a free(undef) are all trivially dead | Nick Lewycky | 2011-10-24 | 1 | -2/+1 |
* | The element insertion code in scalar replacement doesn't handle incorrect | Cameron Zwarich | 2011-10-23 | 1 | -0/+19 |
* | Oops! Fix test I forgot to submit as part of r142735. | Nick Lewycky | 2011-10-22 | 1 | -2/+2 |
* | A non-escaping malloc in the entry block is not unlike an alloca. Do dead-store | Nick Lewycky | 2011-10-22 | 1 | -0/+8 |
* | Remap blockaddress correctly when inlining a function. Fixes PR10162. | Eli Friedman | 2011-10-21 | 1 | -0/+27 |
* | Extend instcombine's shufflevector simplification to handle more cases where ... | Eli Friedman | 2011-10-21 | 1 | -0/+46 |
* | Refactor code from inlining and globalopt that checks whether a function defi... | Eli Friedman | 2011-10-20 | 1 | -0/+27 |
* | "@string = constant i8 0" is a value i8* string of length zero. Analyze that | Nick Lewycky | 2011-10-20 | 1 | -0/+6 |
* | Teach the ARC optimizer about the !clang.arc.copy_on_escape metadata | Dan Gohman | 2011-10-17 | 1 | -5/+41 |
* | Fixed quoting on default data layout option. | Lang Hames | 2011-10-17 | 1 | -1/+1 |
* | Add support for the Objective-C personality function to the instruction | Bill Wendling | 2011-10-17 | 1 | -0/+52 |
* | Suppress partial retain+release elimination when there's a | Dan Gohman | 2011-10-17 | 1 | -0/+31 |
* | Correct over-zealous removal of hack. | Bill Wendling | 2011-10-17 | 1 | -1/+0 |
* | Temporarily XFAIL waiting for a fix. | Bill Wendling | 2011-10-17 | 1 | -1/+2 |
* | Add a routine to swap branch instruction operands, and update any | Chandler Carruth | 2011-10-17 | 1 | -3/+28 |
* | Oops! Fix testcase. | Nick Lewycky | 2011-10-16 | 1 | -2/+2 |