| Commit message (Expand) | Author | Age | Files | Lines |
* | API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac... | Gabor Greif | 2008-05-16 | 1 | -4/+4 |
* | Use static and anonymous namespaces consistently with other passes. | Dan Gohman | 2008-05-15 | 1 | -8/+8 |
* | Fix memdep's handling of invokes when finding the dependency of another call | Owen Anderson | 2008-05-13 | 1 | -1/+1 |
* | Clean up the use of static and anonymous namespaces. This turned up | Dan Gohman | 2008-05-13 | 18 | -136/+143 |
* | prune #includes. | Chris Lattner | 2008-05-12 | 1 | -3/+0 |
* | Add a new SparsePropagation analysis utility, which allows you to do | Chris Lattner | 2008-05-12 | 1 | -0/+320 |
* | put LibCallAliasAnalysis into anonymous namespace to avoid | Edwin Török | 2008-05-09 | 1 | -1/+1 |
* | Remove dead return. Thanks to Bill for the review! | Chris Lattner | 2008-05-08 | 1 | -2/+0 |
* | Add support for constant folding the 'offsetof' pattern even if the | Chris Lattner | 2008-05-08 | 1 | -16/+23 |
* | Add a new LibCallAliasAnalysis pass, which is parameterized | Chris Lattner | 2008-05-07 | 1 | -0/+169 |
* | Add a new interface for describing the behavior of library calls. This | Chris Lattner | 2008-05-07 | 1 | -0/+65 |
* | Fix typo and indentation. | Nick Lewycky | 2008-05-06 | 1 | -2/+2 |
* | Make several variable declarations static. | Dan Gohman | 2008-05-06 | 4 | -13/+14 |
* | Remove uses of llvm/System/IncludeFile.h that are no longer needed. | Dan Gohman | 2008-05-06 | 3 | -9/+0 |
* | Implement destructor for PostDominatorTree to eliminate a memory leak. | Edwin Török | 2008-05-03 | 1 | -0/+5 |
* | Add assert. | Devang Patel | 2008-05-02 | 1 | -0/+1 |
* | Fix the way AliasSet::print prints "may alias". | Dan Gohman | 2008-04-21 | 1 | -1/+1 |
* | Fix a "large integer implicitly truncated to unsigned type" | Duncan Sands | 2008-04-21 | 1 | -1/+1 |
* | (re)fix handling of UGT. Pointed out by Nick Lewycky. | Dale Johannesen | 2008-04-20 | 1 | -1/+2 |
* | Switch to using Simplified ConstantFP::get API. | Chris Lattner | 2008-04-20 | 2 | -13/+11 |
* | Fix a scalar evolution bug. Reversing everything | Dale Johannesen | 2008-04-18 | 1 | -2/+1 |
* | Make GVN able to remove unnecessary calls to read-only functions again. | Owen Anderson | 2008-04-17 | 1 | -2/+1 |
* | Major repairs to the post-dominators implementation. Patch from Florian Bran... | Owen Anderson | 2008-04-16 | 1 | -0/+4 |
* | Don't assume a tail call can't reference a byval | Dale Johannesen | 2008-04-15 | 1 | -2/+4 |
* | Teach AliasSetTracker about VAArgInst. | Dan Gohman | 2008-04-14 | 1 | -0/+17 |
* | In the special case, call the comparison function instead of | Dan Gohman | 2008-04-14 | 1 | -2/+2 |
* | add a new CallGraphNode::removeCallEdgeFor method, tidy some comments. | Chris Lattner | 2008-04-13 | 1 | -0/+14 |
* | Fix a typo in a comment. | Dan Gohman | 2008-04-10 | 1 | -1/+1 |
* | Fix for PR2190. Memdep's non-local caching was checking dirtied blocks in the | Owen Anderson | 2008-04-10 | 1 | -2/+4 |
* | Fix PR 2169. | Daniel Berlin | 2008-04-07 | 1 | -0/+3 |
* | API changes for class Use size reduction, wave 1. | Gabor Greif | 2008-04-06 | 1 | -3/+3 |
* | Set blockBegin to point to the beginning of the block, | Dan Gohman | 2008-03-31 | 1 | -2/+2 |
* | Expose Function::viewCFG and Function::viewCFGOnly to bindings. | Erick Tryzelaar | 2008-03-31 | 1 | -0/+9 |
* | minor code cleanups, allow constant folding sinf/cosf. | Chris Lattner | 2008-03-30 | 1 | -20/+26 |
* | Don't include <map> in Pass.h, which doesn't need it. This requires | Dan Gohman | 2008-03-21 | 1 | -0/+1 |
* | These passes preserve CFG. | Devang Patel | 2008-03-20 | 3 | -4/+4 |
* | enable -analyze for andersens | Andrew Lenharth | 2008-03-20 | 1 | -19/+39 |
* | Restore isCFGOnly property of various analysis passes. | Devang Patel | 2008-03-20 | 19 | -23/+23 |
* | PassInfo keep tracks whether a pass is an analysis pass or not. | Devang Patel | 2008-03-19 | 20 | -37/+39 |
* | Do not use virtual function to identify an analysis pass. | Devang Patel | 2008-03-19 | 10 | -53/+12 |
* | Fix PR 2160 by making sure arguments to external functions get marked as poin... | Daniel Berlin | 2008-03-18 | 1 | -18/+36 |
* | Dial down gcc's warnings: don't use 0UL when 0U suffices (and when the | Scott Michel | 2008-03-18 | 1 | -4/+4 |
* | Identify Analysis pass. | Devang Patel | 2008-03-18 | 10 | -0/+41 |
* | Add Hybrid Cycle Detection to Andersen's analysis. | Daniel Berlin | 2008-03-05 | 1 | -32/+272 |
* | Fix http://llvm.org/bugs/show_bug.cgi?id=2104 by ordering lexicographically w... | Gabor Greif | 2008-02-28 | 1 | -5/+12 |
* | De-tabify. | Bill Wendling | 2008-02-26 | 1 | -8/+8 |
* | Temporarily reverting 46959. | Evan Cheng | 2008-02-25 | 1 | -2/+2 |
* | Change a C-style cast to const_cast, to avoid a -Wcast-qual warning. | Dan Gohman | 2008-02-21 | 1 | -1/+1 |
* | Simplify this code, no functionality change. | Nick Lewycky | 2008-02-21 | 1 | -5/+2 |
* | GlobalValues are Constants, remove redundant code. Also fix typo in a comment. | Nick Lewycky | 2008-02-21 | 1 | -3/+1 |