| Age | Commit message (Expand) | Author |
| 2011-04-09 | fix PR9523, a crash in looprotate on a non-canonical loop made out of indirec... | Chris Lattner |
| 2011-04-09 | PR9604; try to deal with RAUW updates correctly in the AST. I'm not convinced | Eli Friedman |
| 2011-04-09 | Test for r129190. | Eli Friedman |
| 2011-04-07 | Do not let debug info interfer with branch folding. | Devang Patel |
| 2011-04-07 | While hoisting common code from if/else, hoist debug info intrinsics if they ... | Devang Patel |
| 2011-04-07 | PR9634: Don't unconditionally tell the AliasSetTracker that the PreheaderLoad | Eli Friedman |
| 2011-04-06 | This testcase passed even without the fix. Added the target info to make the | Nadav Rotem |
| 2011-04-05 | InstCombine optimizes gep(bitcast(x)) even when the bitcasts casts away address | Nadav Rotem |
| 2011-04-02 | PR9446: RecursivelyDeleteTriviallyDeadInstructions can delete the instruction | Eli Friedman |
| 2011-04-01 | InstCombine: Turn icmp + sext into bitwise/integer ops when the input has onl... | Benjamin Kramer |
| 2011-03-31 | Instcombile optimization: extractelement(cast) -> cast(extractelement) | Nadav Rotem |
| 2011-03-31 | InstCombine: APFloat can't perform arithmetic on PPC double doubles, don't ev... | Benjamin Kramer |
| 2011-03-31 | InstCombine: Fix transform to use the swapped predicate. | Benjamin Kramer |
| 2011-03-31 | InstCombine: fold fcmp (fneg x), (fneg y) -> fcmp x, y | Benjamin Kramer |
| 2011-03-31 | InstCombine: fold fcmp pred (fneg x), C -> fcmp swap(pred) x, -C | Benjamin Kramer |
| 2011-03-31 | InstCombine: Shrink "fcmp (fpext x), C" to "fcmp x, C" if C can be losslessly... | Benjamin Kramer |
| 2011-03-31 | InstCombine: fold fcmp (fpext x), (fpext y) -> fcmp x, y. | Benjamin Kramer |
| 2011-03-30 | * The DSE code that tested for overlapping needed to take into account the fact | Bill Wendling |
| 2011-03-30 | Avoid turning a floating point division with a constant power of two into a d... | Benjamin Kramer |
| 2011-03-30 | InstCombine: If the divisor of an fdiv has an exact inverse, turn it into an ... | Benjamin Kramer |
| 2011-03-29 | InstCombine: Add a few missing combines for ANDs and ORs of sign bit tests. | Benjamin Kramer |
| 2011-03-29 | Do some simple copy propagation through integer loads and stores when promoting | Cameron Zwarich |
| 2011-03-27 | Teach the transformation that moves binary operators around selects to preserve | Nick Lewycky |
| 2011-03-27 | Constant folding support for calls to umul.with.overflow(), basically identic... | Frits van Bommel |
| 2011-03-27 | Add a small missed optimization: turn X == C ? X : Y into X == C ? C : Y. This | Nick Lewycky |
| 2011-03-26 | Fix a typo and add a test. | Cameron Zwarich |
| 2011-03-26 | PR9561: A store with a negative offset (via GEP) could erroniously say that it | Bill Wendling |
| 2011-03-23 | Fix PR9464 by correcting some math that just happened to be right in most cases | Cameron Zwarich |
| 2011-03-20 | Add an optimization to GlobalOpt that eliminates calls to __cxa_atexit, if th... | Anders Carlsson |
| 2011-03-18 | Avoid creating canonical induction variables for non-native types. | Andrew Trick |
| 2011-03-18 | FileCheck-ize and update test. | Eli Friedman |
| 2011-03-17 | Try to not lose variable's debug info during instcombine. | Devang Patel |
| 2011-03-16 | Only convert allocas to scalars if it is profitable. The profitability metric I | Cameron Zwarich |
| 2011-03-16 | Add native integer type TargetData to some existing tests. | Cameron Zwarich |
| 2011-03-15 | Do not add PHIs with no users when creating LCSSA form. Patch by Andrew Clinton. | Cameron Zwarich |
| 2011-03-15 | PR9450: Make switch optimization in SimplifyCFG not dependent on the ordering | Eli Friedman |
| 2011-03-15 | If we don't know how long a string is we can't fold an _chk version to the | Eric Christopher |
| 2011-03-12 | Teach ComputeMaskedBits about sub nsw. | Benjamin Kramer |
| 2011-03-11 | Roll r127459 back in: | Cameron Zwarich |
| 2011-03-11 | Revert r127459, "Optimize trivial branches in CodeGenPrepare, which often get | Daniel Dunbar |
| 2011-03-11 | ComputeMaskedBits: sub falls through to add, and sub doesn't have the same ov... | Benjamin Kramer |
| 2011-03-11 | InstCombine: Fix a thinko where transform an icmp under the assumption that i... | Benjamin Kramer |
| 2011-03-11 | Teach ComputeMaskedBits about nsw on add. I don't think there's anything we can | Nick Lewycky |
| 2011-03-11 | Optimize trivial branches in CodeGenPrepare, which often get created from the | Cameron Zwarich |
| 2011-03-10 | Fix reassociate to postpone certain instruction deletions until | Dan Gohman |
| 2011-03-10 | InstCombine: Turn umul_with_overflow into mul nuw if we can prove that it can... | Benjamin Kramer |
| 2011-03-09 | Fix mistyped CHECK lines. | Benjamin Kramer |
| 2011-03-09 | Preserve line number information while simplifying libcalls. | Devang Patel |
| 2011-03-09 | Add a test case for r127320. | Cameron Zwarich |
| 2011-03-09 | Add another micro-optimization. Apologies for the lack of refactoring, but I | Nick Lewycky |