| Commit message (Expand) | Author | Age | Files | Lines |
* | Teach mergefunc how to emit aliases safely again -- but keep it turned it off | Nick Lewycky | 2011-01-25 | 1 | -25/+79 |
* | Add unnamed_addr when we can show that address of a global is not used. | Rafael Espindola | 2011-01-19 | 1 | -13/+42 |
* | Reduce indentation and remove commented out code. | Rafael Espindola | 2011-01-18 | 1 | -122/+101 |
* | Teach DAE to look for functions whose arguments are unused, and change all ca... | Anders Carlsson | 2011-01-16 | 1 | -1/+61 |
* | Don't merge two constants if we care about the address of both. | Rafael Espindola | 2011-01-16 | 1 | -22/+38 |
* | fix PR8932, a case where arg promotion could infinitely promote. | Chris Lattner | 2011-01-16 | 1 | -24/+51 |
* | Improve the safety of my globalopt enhancement by ensuring that the bitcast | Owen Anderson | 2011-01-16 | 1 | -12/+22 |
* | simplify this code, it is still broken but will follow up on llvm-commits. | Chris Lattner | 2011-01-16 | 1 | -15/+5 |
* | remove the partial specialization pass. It is unmaintained and has bugs. | Chris Lattner | 2011-01-16 | 3 | -230/+0 |
* | Add missing whitespace. | Nick Lewycky | 2011-01-15 | 1 | -2/+2 |
* | Make constmerge a two-pass algorithm so that it won't miss merging | Nick Lewycky | 2011-01-15 | 1 | -4/+34 |
* | Try to unbreak selfhost. | Benjamin Kramer | 2011-01-15 | 1 | -0/+1 |
* | Add a cache that protects mergefunc's internals from more surprises in DenseSet. | Nick Lewycky | 2011-01-15 | 1 | -5/+27 |
* | Fix a false-positive warning. | Owen Anderson | 2011-01-14 | 1 | -1/+3 |
* | Enhance GlobalOpt to be able evaluate initializers that involve stores through | Owen Anderson | 2011-01-14 | 1 | -2/+49 |
* | Improve the accuracy of the inlining heuristic looking for the | Dale Johannesen | 2011-01-04 | 1 | -9/+14 |
* | Also remove functions that use complex constant expressions in terms of | Nick Lewycky | 2011-01-02 | 1 | -5/+18 |
* | Remove functions from the FnSet when one of their callee's is being merged. This | Nick Lewycky | 2011-01-02 | 1 | -82/+66 |
* | fix a globalopt crash on two Adobe-C++ testcases that the recent | Chris Lattner | 2011-01-01 | 1 | -0/+5 |
* | reapply r121100 with a tweak to constant fold ConstExprs with TargetData | Chris Lattner | 2010-12-07 | 1 | -8/+95 |
* | Temporarily revert r121100 as it's causing clang to fail | Eric Christopher | 2010-12-07 | 1 | -85/+5 |
* | fix PR8710 - teach global opt that some constantexprs are too complex to | Chris Lattner | 2010-12-07 | 1 | -5/+85 |
* | replace a linear scan with a symtab lookup, reduce indentation. | Chris Lattner | 2010-12-06 | 1 | -38/+38 |
* | Fix PR8735, a really terrible problem in the inliner's "alloca merging" | Chris Lattner | 2010-12-06 | 1 | -3/+19 |
* | improve -debug output and comments a little. | Chris Lattner | 2010-12-06 | 1 | -3/+5 |
* | Add helper functions for computing the Location of load, store, | Dan Gohman | 2010-11-11 | 2 | -14/+4 |
* | Factor out Instruction::isSafeToSpeculativelyExecute's code for | Dan Gohman | 2010-11-11 | 1 | -14/+1 |
* | TBAA-enable ArgumentPromotion. | Dan Gohman | 2010-11-11 | 1 | -8/+8 |
* | Add a doesAccessArgPointees helper function, and update code to use | Dan Gohman | 2010-11-10 | 1 | -1/+1 |
* | Factor out the code for testing whether a function accesses | Dan Gohman | 2010-11-10 | 1 | -3/+2 |
* | Make ModRefBehavior a lattice. Use this to clean up AliasAnalysis | Dan Gohman | 2010-11-10 | 1 | -44/+31 |
* | Teach FunctionAttrs about the VAArg instruction. | Dan Gohman | 2010-11-09 | 1 | -0/+7 |
* | Use the AliasAnalysis interface to determine how a Function accesses | Dan Gohman | 2010-11-09 | 1 | -2/+3 |
* | Teach FunctionAttrs about AccessesArgumentsReadonly. | Dan Gohman | 2010-11-09 | 1 | -0/+19 |
* | Fix a thinko that Duncan spotted. | Dan Gohman | 2010-11-08 | 1 | -1/+1 |
* | Make FunctionAttrs TBAA-aware. | Dan Gohman | 2010-11-08 | 1 | -12/+24 |
* | Extend the AliasAnalysis::pointsToConstantMemory interface to allow it | Dan Gohman | 2010-11-08 | 1 | -52/+5 |
* | Make FunctionAttrs use AliasAnalysis::getModRefBehavior, now that it | Dan Gohman | 2010-11-08 | 1 | -18/+33 |
* | Rename PointsToLocalMemory to PointsToLocalOrConstantMemory to make | Duncan Sands | 2010-11-03 | 1 | -8/+11 |
* | Let the -inline-threshold command line argument take precedence over the | Jakob Stoklund Olesen | 2010-11-02 | 1 | -1/+2 |
* | Now that the MallocInst no longer exists, this workaround for | Duncan Sands | 2010-10-30 | 1 | -5/+0 |
* | If a function does a volatile load from a global constant, do not | Duncan Sands | 2010-10-30 | 1 | -4/+4 |
* | RetOp is not actually used for anything useful (though | Duncan Sands | 2010-10-21 | 1 | -2/+0 |
* | Reapply r116831 and r116839, converting AliasAnalysis to use | Dan Gohman | 2010-10-19 | 1 | -1/+1 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 20 | -24/+75 |
* | GlobalOpt: EvaluateFunction() must not evaluate stores to weak_odr globals. | Mikhail Glushenkov | 2010-10-19 | 1 | -6/+7 |
* | Trailing whitespace. | Mikhail Glushenkov | 2010-10-18 | 1 | -151/+151 |
* | CallGraphSCC passes implicity require CallGraph analysis. | Owen Anderson | 2010-10-13 | 5 | -4/+17 |
* | Be more consistent in using ValueToValueMapTy. | Rafael Espindola | 2010-10-13 | 2 | -4/+4 |
* | Begin adding static dependence information to passes, which will allow us to | Owen Anderson | 2010-10-12 | 3 | -3/+14 |