| Age | Commit message (Expand) | Author |
| 2012-01-18 | Use llvm.global_ctors to locate global constructors instead | Dan Gohman |
| 2012-01-18 | Remove trailing spaces and unneeded includes. | Jakub Staszak |
| 2012-01-17 | Add a new ObjC ARC optimization pass to eliminate unneeded | Dan Gohman |
| 2012-01-17 | Add a new PassManagerBuilder customization point, | Dan Gohman |
| 2012-01-17 | LSR fix: broaden the check for loop preheaders. | Andrew Trick |
| 2012-01-17 | Remove unreachable code. (replace with llvm_unreachable to help GCC where nec... | David Blaikie |
| 2012-01-16 | Fixed comment in loop-unswitch. | Stepan Dyatkovskiy |
| 2012-01-15 | Cosmetic patch for r148215. | Stepan Dyatkovskiy |
| 2012-01-15 | Fixup for r148132. Type replacement for LoopsProperties: from DenseMap to std... | Stepan Dyatkovskiy |
| 2012-01-14 | Fix an unused variable warning that Chad noticed. | Dan Gohman |
| 2012-01-13 | Speculatively revert r148132+r148133 to try and fix a buildbot failure. | Eli Friedman |
| 2012-01-13 | Cosmetic patch for r148132. | Stepan Dyatkovskiy |
| 2012-01-13 | LoopUnswitch: All helper data that is collected during loop-unswitch iteratio... | Stepan Dyatkovskiy |
| 2012-01-13 | Implement proper ObjC ARC objc_retainBlock "escape" analysis, so that | Dan Gohman |
| 2012-01-11 | Re-fix the issue Bill fixed in r147899 in a slightly different way, which doe... | Eli Friedman |
| 2012-01-11 | [asan] extend the workaround for http://llvm.org/bugs/show_bug.cgi?id=11395: ... | Kostya Serebryany |
| 2012-01-11 | Improved compile time: | Stepan Dyatkovskiy |
| 2012-01-11 | If the global variable is removed by the linker, then don't constant merge it | Bill Wendling |
| 2012-01-10 | Enable LSR IV Chains with sufficient heuristics. | Andrew Trick |
| 2012-01-09 | Adding IV chain generation to LSR. | Andrew Trick |
| 2012-01-09 | Adding collection of IV chains to LSR. | Andrew Trick |
| 2012-01-09 | "Minor LSR debugging stuff" | Andrew Trick |
| 2012-01-09 | Move assert to the right place. | Benjamin Kramer |
| 2012-01-09 | InstCombine: Teach foldLogOpOfMaskedICmpsHelper that sign bit tests are bit t... | Benjamin Kramer |
| 2012-01-08 | Tweak my last commit to be less conservative about uses. | Benjamin Kramer |
| 2012-01-08 | InstCombine: If we have a bit test and a sign test anded/ored together, merge... | Benjamin Kramer |
| 2012-01-07 | Enable redundant phi elimination after LSR. | Andrew Trick |
| 2012-01-07 | LSR: Don't optimize loops if an outer loop has no preheader. | Andrew Trick |
| 2012-01-07 | LSR: run DeleteDeadPhis before replaceCongruentPhis. | Andrew Trick |
| 2012-01-07 | Extended replaceCongruentPhis to handle mixed phi types. | Andrew Trick |
| 2012-01-06 | [asan] cleanup: remove the SIGILL-related code (compiler part) | Kostya Serebryany |
| 2012-01-05 | Fix SpeculativelyExecuteBB to either speculate all or none of the phis | Dan Gohman |
| 2012-01-05 | PR11705, part 2: globalopt shouldn't put inttoptr/ptrtoint operations into gl... | Eli Friedman |
| 2012-01-05 | Revert r56315. When the instruction to speculate is a load, this | Dan Gohman |
| 2012-01-05 | SCCCaptured is trivially false on entry to this loop and not modified inside it. | Nick Lewycky |
| 2012-01-04 | Remove pointless asserts. | Nick Lewycky |
| 2012-01-04 | Teach instcombine all sorts of great stuff about shifts that have exact, nuw or | Nick Lewycky |
| 2011-12-31 | Make use of the exact bit when optimizing '(X >>exact 3) << 1' to eliminate the | Nick Lewycky |
| 2011-12-28 | Change CaptureTracking to pass a Use* instead of a Value* when a value is | Nick Lewycky |
| 2011-12-28 | Demystify this comment. | Nick Lewycky |
| 2011-12-27 | Use false not zero, as a bool. | Nick Lewycky |
| 2011-12-27 | Turn cos(-x) into cos(x). Patch by Alexander Malyshev! | Nick Lewycky |
| 2011-12-27 | Teach simplifycfg to recompute branch weights when merging some branches, and | Nick Lewycky |
| 2011-12-26 | Fix warning. | Rafael Espindola |
| 2011-12-26 | Update the branch weight metadata when reversing the order of a branch. | Nick Lewycky |
| 2011-12-26 | Sort includes, canonicalize whitespace, fix typos. No functionality change. | Nick Lewycky |
| 2011-12-24 | InstCombine: Add a combine that turns (2^n)-1 ^ x back into (2^n)-1 - x iff x... | Benjamin Kramer |
| 2011-12-24 | InstCombine: Canonicalize (2^n)-1 - x into (2^n)-1 ^ x iff x is known to be s... | Benjamin Kramer |
| 2011-12-23 | Fix typo "infinte". | Nick Lewycky |
| 2011-12-23 | When not destroying the source, the linker is not remapping the types. Added ... | Mon P Wang |