| Commit message (Expand) | Author | Age | Files | Lines |
| * | Make DataLayout a plain object, not a pass. | Rafael Espindola | 2014-02-25 | 1 | -1/+2 |
| * | Rename many DataLayout variables from TD to DL. | Rafael Espindola | 2014-02-21 | 1 | -75/+75 |
| * | Make succ_iterator a real random access iterator and clean up a couple of users. | Benjamin Kramer | 2014-02-10 | 1 | -2/+1 |
| * | Disable most IR-level transform passes on functions marked 'optnone'. | Paul Robinson | 2014-02-06 | 1 | -0/+3 |
| * | [PM] Split DominatorTree into a concrete analysis result object which | Chandler Carruth | 2014-01-13 | 1 | -4/+4 |
| * | [cleanup] Move the Dominators.h and Verifier.h headers into the IR | Chandler Carruth | 2014-01-13 | 1 | -1/+1 |
| * | Put the functionality for printing a value to a raw_ostream as an | Chandler Carruth | 2014-01-09 | 1 | -4/+3 |
| * | Move the LLVM IR asm writer header files into the IR directory, as they | Chandler Carruth | 2014-01-07 | 1 | -1/+1 |
| * | Re-sort all of the includes with ./utils/sort_includes.py so that | Chandler Carruth | 2014-01-07 | 1 | -1/+1 |
| * | Correct word hyphenations | Alp Toker | 2013-12-05 | 1 | -1/+1 |
| * | Correct a glitch in r194424 which may invalidate iterator. | Shuxin Yang | 2013-11-12 | 1 | -1/+3 |
| * | Fix PR17952. | Shuxin Yang | 2013-11-11 | 1 | -6/+175 |
| * | Revert "Resurrect r191017 " GVN proceeds in the presence of dead code" plus a... | Bill Wendling | 2013-11-10 | 1 | -168/+6 |
| * | Fix GVN creating bitcast between address spaces | Matt Arsenault | 2013-10-30 | 1 | -5/+7 |
| * | Use more type helper functions | Matt Arsenault | 2013-10-21 | 1 | -1/+1 |
| * | Resurrect r191017 " GVN proceeds in the presence of dead code" plus a fix to ... | Shuxin Yang | 2013-09-20 | 1 | -6/+168 |
| * | Revert r191017, it results in segmentation faults in Qt. | Joerg Sonnenberger | 2013-09-20 | 1 | -164/+6 |
| * | GVN proceeds in the presence of dead code. | Shuxin Yang | 2013-09-19 | 1 | -6/+164 |
| * | Reimplement isPotentiallyReachable to make nocapture deduction much stronger. | Nick Lewycky | 2013-07-27 | 1 | -0/+1 |
| * | Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ... | Craig Topper | 2013-07-04 | 1 | -2/+2 |
| * | [GVN] Split critical-edge on the fly, instead of postpone edge-splitting to next | Shuxin Yang | 2013-05-09 | 1 | -13/+39 |
| * | Decompose GVN::processNonLocalLoad() (about 400 LOC) into smaller helper func... | Shuxin Yang | 2013-05-03 | 1 | -169/+194 |
| * | [GV] Remove dead code which is really difficult to decipher. | Shuxin Yang | 2013-05-02 | 1 | -26/+2 |
| * | Change the order of the operands in patchAndReplaceAllUsesWith so | Dan Gohman | 2013-03-12 | 1 | -5/+5 |
| * | Actually delete this code, since it's really not clear what it's | Dan Gohman | 2013-02-12 | 1 | -24/+0 |
| * | Record PRE predecessors with a SmallVector instead of a DenseMap, and | Dan Gohman | 2013-02-12 | 1 | -8/+9 |
| * | When disabling PRE for a value is directly redundant with itself | Dan Gohman | 2013-02-12 | 1 | -0/+2 |
| * | Check that pointers are removed from maps before calling delete on the pointers, | Dan Gohman | 2013-02-12 | 1 | -3/+3 |
| * | Minor code simplification. | Dan Gohman | 2013-02-12 | 1 | -1/+1 |
| * | Change GetPointerBaseWithConstantOffset's DataLayout argument from a | Dan Gohman | 2013-01-31 | 1 | -3/+3 |
| * | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -6/+6 |
| * | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -6/+6 |
| * | Fix an obvious typo that causes an assertion failure when running | Duncan Sands | 2012-11-02 | 1 | -1/+1 |
| * | Remove a wrapper around getIntPtrType added to GVN by Hal in commit 166624 (the | Duncan Sands | 2012-10-29 | 1 | -14/+4 |
| * | Update GVN to support vectors of pointers. | Hal Finkel | 2012-10-24 | 1 | -20/+30 |
| * | Add in support for getIntPtrType to get the pointer type based on the address... | Micah Villmow | 2012-10-24 | 1 | -4/+5 |
| * | Move TargetData to DataLayout. | Micah Villmow | 2012-10-08 | 1 | -15/+15 |
| * | Release build: guard dump functions with | Manman Ren | 2012-09-12 | 1 | -1/+1 |
| * | Move spaces to the right places. No functionality change. | Nick Lewycky | 2012-09-09 | 1 | -4/+4 |
| * | Release build: guard dump functions with "ifndef NDEBUG" | Manman Ren | 2012-09-06 | 1 | -0/+2 |
| * | Make MemoryBuiltins aware of TargetLibraryInfo. | Benjamin Kramer | 2012-08-29 | 1 | -2/+2 |
| * | GVN: Fix quadratic runtime on the number of switch cases. | Benjamin Kramer | 2012-08-24 | 1 | -2/+10 |
| * | Teach GVN to reason about edges dominating uses. This allows it to handle cases | Rafael Espindola | 2012-08-16 | 1 | -47/+48 |
| * | Constify some basic blocks, no functionality change. | Rafael Espindola | 2012-08-10 | 1 | -8/+8 |
| * | Clean whitespaces. | Nadav Rotem | 2012-07-24 | 1 | -133/+133 |
| * | Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.h | Chandler Carruth | 2012-06-29 | 1 | -11/+11 |
| * | refactor the MemoryBuiltin analysis: | Nuno Lopes | 2012-06-21 | 1 | -2/+2 |
| * | Move the Metadata merging methods from GVN and make them public in MDNode. | Hal Finkel | 2012-06-16 | 1 | -153/+3 |
| * | When gvn decides to replace an instruction with another, we have to patch the | Rafael Espindola | 2012-06-04 | 1 | -2/+200 |
| * | Fix PR12858, a crash due to GVN's PRE not fully removing an instruction from the | Duncan Sands | 2012-05-22 | 1 | -6/+12 |