| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | More cleanups. Also, add a special case for updating PHI nodes, and | Owen Anderson | 2006-06-01 | 1 | -21/+33 |
* | Extract a huge loop into a helper method. Fix a few iterator-invalidation bugs. | Owen Anderson | 2006-05-31 | 1 | -86/+113 |
* | Add Use replacement. Assuming there is nothing horribly wrong with this, LCSSA | Owen Anderson | 2006-05-29 | 1 | -2/+35 |
* | Major think-o. Iterate over all live out-of-loop values, and perform the | Owen Anderson | 2006-05-28 | 1 | -36/+36 |
* | Make LCSSA insert proper Phi nodes throughout the rest of the CFG by computing | Owen Anderson | 2006-05-27 | 1 | -8/+51 |
* | Fix some regression from the inliner patch I committed last night. This fixes | Chris Lattner | 2006-05-27 | 1 | -1/+1 |
* | Switch the inliner over to using CloneAndPruneFunctionInto. This effectively | Chris Lattner | 2006-05-27 | 1 | -5/+9 |
* | Implement a new method, CloneAndPruneFunctionInto, as documented. | Chris Lattner | 2006-05-27 | 2 | -3/+189 |
* | Refactor some code to expose an interface to constant fold and instruction gi... | Chris Lattner | 2006-05-27 | 1 | -35/+49 |
* | A few small clean-ups, and the addition of an LCSSA statistic. | Owen Anderson | 2006-05-27 | 1 | -2/+8 |
* | Fix a copy-and-paste-o that would break some compilers. | Owen Anderson | 2006-05-26 | 1 | -1/+1 |
* | Clean up and refactor LCSSA a bunch. It should also run faster now, though | Owen Anderson | 2006-05-26 | 1 | -66/+50 |
* | Skeletal LCSSA pass. This is currently non-functional. Expect functionality | Owen Anderson | 2006-05-26 | 1 | -0/+159 |
* | Revert a patch that is unsafe, due to out of range array accesses in inner | Chris Lattner | 2006-05-25 | 1 | -2/+2 |
* | Patch for a new instcombine xform, patch contributed by Nick Lewycky! | Chris Lattner | 2006-05-24 | 1 | -2/+4 |
* | Fix a doxygen problem and break lines at 80 columns | Reid Spencer | 2006-05-19 | 1 | -3/+3 |
* | Declare that lowerinvoke doesn't interact with other lowering passes. | Chris Lattner | 2006-05-17 | 5 | -7/+22 |
* | Add a CloneModule call that exposes the mapping of values from the old module | Chris Lattner | 2006-05-17 | 1 | -4/+8 |
* | remove some dead code identified by coverity | Chris Lattner | 2006-05-14 | 1 | -1/+1 |
* | remove dead variables | Chris Lattner | 2006-05-14 | 1 | -2/+0 |
* | Patch to make some xforms preserve each other. Patch contributed by | Chris Lattner | 2006-05-09 | 5 | -2/+32 |
* | Add pass ID's for various passes, so they can be AddRequiredID. Patch by | Chris Lattner | 2006-05-02 | 4 | -0/+8 |
* | Fix some nondeterminstic behavior in the mem2reg pass that (in addition to | Chris Lattner | 2006-04-27 | 1 | -20/+38 |
* | Add supprot for shufflevector | Chris Lattner | 2006-04-08 | 2 | -0/+10 |
* | Fix inlining of insert/extract element constantexprs | Chris Lattner | 2006-04-07 | 1 | -0/+9 |
* | Adjust to change in Intrinsics.gen interface. | Chris Lattner | 2006-04-02 | 1 | -0/+1 |
* | add valuemapper support for inline asm | Chris Lattner | 2006-04-01 | 1 | -1/+1 |
* | teach the inliner to work with packed constants | Chris Lattner | 2006-03-27 | 1 | -0/+19 |
* | use autogenerated side-effect information | Chris Lattner | 2006-03-09 | 1 | -27/+5 |
* | Fix Transforms/SimplifyCFG/2006-02-17-InfiniteUnroll.ll | Chris Lattner | 2006-02-18 | 1 | -2/+8 |
* | Canonicalize inner loops before outer loops. Inner loop canonicalization | Chris Lattner | 2006-02-14 | 1 | -4/+5 |
* | When splitting exit edges to canonicalize loops, make sure to put the new | Chris Lattner | 2006-02-14 | 1 | -18/+20 |
* | Revert my last patch. It too breaks stuff | Chris Lattner | 2006-02-12 | 1 | -12/+6 |
* | Fix for my previously reverted patch | Chris Lattner | 2006-02-11 | 1 | -6/+12 |
* | revert my previous change, it exposed other problems. | Chris Lattner | 2006-02-11 | 1 | -1/+1 |
* | Make this check stricter. Disallow loop exit blocks from being shared by | Chris Lattner | 2006-02-11 | 1 | -4/+7 |
* | remove dead expr | Chris Lattner | 2006-02-11 | 1 | -1/+0 |
* | teach the cloner to handle inline asms | Chris Lattner | 2006-01-26 | 1 | -9/+1 |
* | rename method | Chris Lattner | 2006-01-24 | 1 | -1/+1 |
* | When cloning a module, clone the inline asm. | Chris Lattner | 2006-01-23 | 1 | -0/+1 |
* | Make iostream #inclusion explicit | Chris Lattner | 2006-01-22 | 1 | -0/+1 |
* | Add explicit #includes of <iostream> | Chris Lattner | 2006-01-22 | 2 | -0/+2 |
* | ConstantFoldLoadThroughGEPConstantExpr wasn't handling pointers to | Robert Bocchino | 2006-01-19 | 1 | -9/+22 |
* | Make sure that cloning a module clones its target triple and dependent | Chris Lattner | 2006-01-18 | 1 | -3/+7 |
* | Constant folding support for the insertelement operation. | Robert Bocchino | 2006-01-17 | 1 | -0/+3 |
* | For PR411: | Reid Spencer | 2006-01-16 | 1 | -5/+16 |
* | Teach the inliner to update the CallGraph itself, and have it add edges to | Chris Lattner | 2006-01-14 | 1 | -4/+53 |
* | Add bswap intrinsics as documented in the Language Reference | Nate Begeman | 2006-01-14 | 1 | -0/+3 |
* | it is ok to dce stacksave. | Chris Lattner | 2006-01-13 | 1 | -0/+1 |
* | If inlining a call to a function that contains dynamic allocas, wrap the | Chris Lattner | 2006-01-13 | 1 | -0/+30 |