| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | clean up this code a bit. | Chris Lattner | 2009-09-02 | 1 | -64/+67 |
* | eliminate VISIBILITY_HIDDEN from Transforms/Scalar. PR4861 | Chris Lattner | 2009-09-02 | 30 | -118/+82 |
* | fix PR4837, some bugs folding vector compares. These | Chris Lattner | 2009-09-02 | 1 | -7/+7 |
* | OptimalEdgeProfiling: Creation of profiles. | Andreas Neustifter | 2009-09-01 | 2 | -0/+187 |
* | remove CallGraphNode::replaceCallSite, it is redundant with other APIs. | Chris Lattner | 2009-09-01 | 2 | -2/+6 |
* | cleanup/simplify | Chris Lattner | 2009-09-01 | 1 | -17/+13 |
* | remove a bunch of explicit code previously needed to update the | Chris Lattner | 2009-09-01 | 1 | -27/+7 |
* | enhance memcpy opt to turn memmoves into memcpy when the src/dest | Chris Lattner | 2009-09-01 | 1 | -6/+41 |
* | random code cleanups, no functionality change. | Chris Lattner | 2009-09-01 | 1 | -63/+62 |
* | Update CMake files. | Ted Kremenek | 2009-09-01 | 1 | -0/+1 |
* | Preparation for Optimal Edge Profiling: | Andreas Neustifter | 2009-09-01 | 1 | -1/+9 |
* | Change CallGraphNode to maintain it's Function as an AssertingVH | Chris Lattner | 2009-09-01 | 2 | -8/+4 |
* | fix some cases where instcombine would change hte IR but not return true | Chris Lattner | 2009-08-31 | 1 | -8/+10 |
* | comment and simplify some code. | Chris Lattner | 2009-08-31 | 1 | -19/+14 |
* | add -debug output | Chris Lattner | 2009-08-31 | 1 | -0/+4 |
* | improve -debug output, so that -debug is more likely to print when | Chris Lattner | 2009-08-31 | 1 | -3/+6 |
* | fix a bug I introduced with my 'instcombine builder' refactoring | Chris Lattner | 2009-08-31 | 1 | -2/+6 |
* | simplify some code by making the SCCNodes set contain Function*'s | Chris Lattner | 2009-08-31 | 1 | -12/+9 |
* | Fix PR4834, a tricky case where the inliner would resolve an | Chris Lattner | 2009-08-31 | 1 | -6/+9 |
* | Fix some nasty callgraph dangling pointer problems in | Chris Lattner | 2009-08-31 | 5 | -54/+75 |
* | Fix PR4748: don't fold gep(bitcast(x)) into bitcast(gep) when x | Chris Lattner | 2009-08-30 | 1 | -0/+7 |
* | misc cleanup | Chris Lattner | 2009-08-30 | 1 | -13/+13 |
* | add getPointerAddressSpace() to GEP instruction, use the method | Chris Lattner | 2009-08-30 | 3 | -9/+6 |
* | eliminate InsertCastBefore, use the builder instead. | Chris Lattner | 2009-08-30 | 1 | -50/+19 |
* | eliminate InsertBitCastBefore, just use the builder instead. | Chris Lattner | 2009-08-30 | 1 | -27/+24 |
* | convert a bunch more calls to InsertNewInstBefore to use | Chris Lattner | 2009-08-30 | 1 | -205/+137 |
* | fix typo | Chris Lattner | 2009-08-30 | 1 | -1/+1 |
* | give instcombine a custom IRBuilder that adds new instructions to the | Chris Lattner | 2009-08-30 | 1 | -304/+193 |
* | add a new InstCombineWorklist::AddValue method that works even | Chris Lattner | 2009-08-30 | 1 | -16/+13 |
* | move AddUsersToWorkList to the worklist processing class, make the | Chris Lattner | 2009-08-30 | 1 | -16/+16 |
* | rename AddUsesToWorkList -> AddOperandsToWorkList. The | Chris Lattner | 2009-08-30 | 1 | -31/+13 |
* | inline the trivial AddToWorkList/RemoveFromWorkList methods | Chris Lattner | 2009-08-30 | 1 | -104/+65 |
* | fix a bug I introduced in r80478 found by the build bot. | Chris Lattner | 2009-08-30 | 1 | -1/+2 |
* | refactor instcombine's worklist processing stuff out to its own class. | Chris Lattner | 2009-08-30 | 1 | -26/+58 |
* | more cleanups: remove some redundant code, and simplify some | Chris Lattner | 2009-08-30 | 1 | -49/+15 |
* | eliminate the temporary SrcGEPOperands smallvector. | Chris Lattner | 2009-08-30 | 1 | -18/+15 |
* | simplify/detangle some control flow. | Chris Lattner | 2009-08-30 | 1 | -20/+15 |
* | simplify and cleanup some code, remove some code that just | Chris Lattner | 2009-08-30 | 1 | -75/+29 |
* | Remove an unnecessary Context argument. | Dan Gohman | 2009-08-29 | 1 | -5/+3 |
* | Inline empty destructor. | Benjamin Kramer | 2009-08-29 | 2 | -4/+1 |
* | Fix warning about non-virtual destructor. | Bill Wendling | 2009-08-29 | 2 | -0/+4 |
* | Reapply 79977. | Devang Patel | 2009-08-28 | 3 | -122/+11 |
* | Preparation for Optimal Edge Profiling: | Andreas Neustifter | 2009-08-28 | 2 | -0/+171 |
* | finish a half formed thought :) | Chris Lattner | 2009-08-28 | 1 | -1/+4 |
* | Fix PR3913, patch by Jakub Staszak! | Chris Lattner | 2009-08-28 | 1 | -1/+1 |
* | Implement a new optimization in the inliner: if inlining multiple | Chris Lattner | 2009-08-27 | 1 | -25/+125 |
* | unbreak the build, yay for symlinks + makefiles. :( | Chris Lattner | 2009-08-27 | 1 | -1/+1 |
* | reduce header #include'age | Chris Lattner | 2009-08-27 | 1 | -1/+4 |
* | enhance InlineFunction to be able to optionally return | Chris Lattner | 2009-08-27 | 1 | -6/+15 |
* | smallvectorize the list of returns built by CloneAndPruneFunctionInto. | Chris Lattner | 2009-08-27 | 3 | -8/+8 |