| Commit message (Expand) | Author | Age | Files | Lines |
* | Enable GVN Load PRE. | Bill Wendling | 2009-05-29 | 1 | -1/+1 |
* | just show the instruction, its not that slow. | Torok Edwin | 2009-05-29 | 1 | -6/+1 |
* | for instructions with void type we have no choice but print the instruction as | Torok Edwin | 2009-05-29 | 1 | -1/+4 |
* | Add a DEBUG() output to GVN that prints the instruction clobbering a load. | Torok Edwin | 2009-05-29 | 1 | -1/+11 |
* | Fix an issue where phiMap was not being updated properly when doing load PRE. | Owen Anderson | 2009-05-29 | 1 | -0/+5 |
* | Use Operands.data() instead of &Operands[0] where Operands is a potentially | Nick Lewycky | 2009-05-28 | 1 | -1/+1 |
* | Revert 72493 and replace it with a more conservative fix, for now: don't | Dan Gohman | 2009-05-27 | 1 | -7/+8 |
* | In ChangeCompareStride, when the stride to be reused is truncated to | Dan Gohman | 2009-05-27 | 1 | -2/+7 |
* | Change ScalarEvolution::getSCEVAtScope to always return the original value | Dan Gohman | 2009-05-24 | 1 | -4/+2 |
* | Move Rewriter.clear() earlier, to avoid triggerring the AssertingVH by | Torok Edwin | 2009-05-24 | 1 | -2/+8 |
* | Instead of clearing the rewriter, don't attempt to rewrite dead phi nodes. | Torok Edwin | 2009-05-24 | 1 | -2/+2 |
* | When rewriting the loop exit test with the canonical induction variable, | Dan Gohman | 2009-05-24 | 1 | -1/+6 |
* | When replacing a floating-point comparison with an integer | Dan Gohman | 2009-05-24 | 1 | -0/+1 |
* | The rewriter may hold references to instructions that are deleted because the... | Torok Edwin | 2009-05-24 | 1 | -0/+2 |
* | available_externall linkage is not local, this was confusing the codegenerator, | Torok Edwin | 2009-05-23 | 4 | -5/+8 |
* | Fix bug in FoldFCmp_IntToFP_Cst. If inttofp is a uintofp, use unsigned instea... | Evan Cheng | 2009-05-22 | 1 | -61/+67 |
* | Teach IndVarSimplify's FixUsesBeforeDefs to handle InvokeInsts by | Dan Gohman | 2009-05-22 | 1 | -1/+5 |
* | Fix loop-index-split to correctly preserve dominance frontiers. Part of | Eli Friedman | 2009-05-22 | 1 | -17/+12 |
* | Teach ValueTracking a new way to analyze PHI nodes, and and teach | Dan Gohman | 2009-05-21 | 1 | -2/+4 |
* | Suppress the IV reversal transformation in the case that the RHS | Dan Gohman | 2009-05-20 | 1 | -0/+5 |
* | Remove an irrelevant comment. | Dan Gohman | 2009-05-19 | 1 | -3/+1 |
* | Add some more comments to the top of this file. | Dan Gohman | 2009-05-19 | 1 | -1/+8 |
* | Trim unneeded #includes. | Dan Gohman | 2009-05-19 | 2 | -3/+0 |
* | Teach SCEVExpander to expand arithmetic involving pointers into GEP | Dan Gohman | 2009-05-19 | 3 | -48/+50 |
* | Rename UseTy to AccessTy, for consistency with getAccessType, and to | Dan Gohman | 2009-05-18 | 1 | -24/+25 |
* | Reuse existing getUnderlyingObject instead of | Dale Johannesen | 2009-05-14 | 1 | -24/+6 |
* | Use abs64 in one more place. | Dale Johannesen | 2009-05-14 | 1 | -1/+1 |
* | Handle some additonal cases of external weak globals. | Dale Johannesen | 2009-05-13 | 1 | -4/+22 |
* | Don't generate a select whose operand is load of a weak | Dale Johannesen | 2009-05-13 | 1 | -0/+6 |
* | calls in nothrow functions can be marked nothrow even if the callee | Chris Lattner | 2009-05-13 | 1 | -0/+10 |
* | Fix PR4206 - crash in simplify lib calls | Chris Lattner | 2009-05-13 | 1 | -1/+1 |
* | Add an int64_t variant of abs, for host environments | Dale Johannesen | 2009-05-13 | 1 | -3/+3 |
* | Factor the code for collecting IV users out of LSR into an IVUsers class, | Dan Gohman | 2009-05-12 | 2 | -920/+584 |
* | Teach LSR to optimize more loop exit compares, i.e. change them to use postin... | Evan Cheng | 2009-05-11 | 1 | -43/+139 |
* | Reverse a loop that is counting up to a maximum to | Dale Johannesen | 2009-05-11 | 1 | -6/+118 |
* | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands | 2009-05-09 | 7 | -47/+47 |
* | Factor out code that optimize loop terminating condition. | Evan Cheng | 2009-05-09 | 1 | -0/+9 |
* | fix RewriteStoreUserOfWholeAlloca to use the correct type size | Chris Lattner | 2009-05-08 | 1 | -4/+6 |
* | This transform requires valid TargetData info. Wrap it in 'if (TD)' in | Nick Lewycky | 2009-05-08 | 1 | -25/+27 |
* | PR4123: don't crash when inlining a call which uses its own result. | Eli Friedman | 2009-05-08 | 1 | -3/+10 |
* | Perform constant folding on operands of instructions with non-void | Dan Gohman | 2009-05-07 | 1 | -1/+3 |
* | Unbreak the build. | Evan Cheng | 2009-05-06 | 1 | -1/+1 |
* | Make sure to use signed arithmetic in APInt to fix a regression. | David Greene | 2009-05-06 | 1 | -2/+3 |
* | Simplify code by using SmallVector's pop_back_val() instead of | Dan Gohman | 2009-05-06 | 4 | -12/+6 |
* | Fix PR3754: don't mark functions that wrap MallocInst with | Duncan Sands | 2009-05-06 | 1 | -0/+5 |
* | Allow readonly functions to unwind exceptions. Teach | Duncan Sands | 2009-05-06 | 9 | -21/+16 |
* | Fix a copy+pasto in a comment. | Dan Gohman | 2009-05-05 | 1 | -1/+1 |
* | Delete a FIXME which is no longer relevant, and add a FIXME that is. | Dan Gohman | 2009-05-05 | 1 | -2/+3 |
* | Temporarily reverting r71008. It was causing this failure: | Bill Wendling | 2009-05-05 | 1 | -3/+2 |
* | Handle overflow of 64-bit loop conditions. | David Greene | 2009-05-05 | 1 | -2/+3 |