| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a ton of comment typos found by codespell. Patch by | Chris Lattner | 2011-04-15 | 10 | -11/+11 |
* | Add an instcombine for constructs like a | -(b != c); a select is more | Eli Friedman | 2011-04-14 | 1 | -0/+19 |
* | Fix an infinite alternation in JumpThreading where two transforms would repea... | Owen Anderson | 2011-04-14 | 1 | -0/+31 |
* | Vectors with different number of elements of the same element type can have | Mon P Wang | 2011-04-13 | 1 | -0/+46 |
* | Fix reassociate to use a worklist instead of recursing when new | Dan Gohman | 2011-04-12 | 1 | -0/+24 |
* | remove the StructRetPromotion pass. It is unused, not maintained and | Chris Lattner | 2011-04-11 | 5 | -87/+0 |
* | Add back a couple checks removed by r129128; the fact that an intitializer | Eli Friedman | 2011-04-09 | 1 | -0/+5 |
* | fix PR9523, a crash in looprotate on a non-canonical loop made out of indirec... | Chris Lattner | 2011-04-09 | 1 | -0/+16 |
* | PR9604; try to deal with RAUW updates correctly in the AST. I'm not convinced | Eli Friedman | 2011-04-09 | 1 | -0/+49 |
* | Test for r129190. | Eli Friedman | 2011-04-09 | 1 | -0/+32 |
* | Do not let debug info interfer with branch folding. | Devang Patel | 2011-04-07 | 1 | -0/+58 |
* | While hoisting common code from if/else, hoist debug info intrinsics if they ... | Devang Patel | 2011-04-07 | 1 | -0/+53 |
* | PR9634: Don't unconditionally tell the AliasSetTracker that the PreheaderLoad | Eli Friedman | 2011-04-07 | 2 | -1/+40 |
* | This testcase passed even without the fix. Added the target info to make the | Nadav Rotem | 2011-04-06 | 1 | -0/+3 |
* | InstCombine optimizes gep(bitcast(x)) even when the bitcasts casts away address | Nadav Rotem | 2011-04-05 | 1 | -0/+16 |
* | PR9446: RecursivelyDeleteTriviallyDeadInstructions can delete the instruction | Eli Friedman | 2011-04-02 | 1 | -0/+32 |
* | InstCombine: Turn icmp + sext into bitwise/integer ops when the input has onl... | Benjamin Kramer | 2011-04-01 | 1 | -0/+48 |
* | Instcombile optimization: extractelement(cast) -> cast(extractelement) | Nadav Rotem | 2011-03-31 | 1 | -0/+27 |
* | InstCombine: APFloat can't perform arithmetic on PPC double doubles, don't ev... | Benjamin Kramer | 2011-03-31 | 1 | -0/+9 |
* | InstCombine: Fix transform to use the swapped predicate. | Benjamin Kramer | 2011-03-31 | 1 | -1/+1 |
* | InstCombine: fold fcmp (fneg x), (fneg y) -> fcmp x, y | Benjamin Kramer | 2011-03-31 | 1 | -0/+9 |
* | InstCombine: fold fcmp pred (fneg x), C -> fcmp swap(pred) x, -C | Benjamin Kramer | 2011-03-31 | 1 | -0/+8 |
* | InstCombine: Shrink "fcmp (fpext x), C" to "fcmp x, C" if C can be losslessly... | Benjamin Kramer | 2011-03-31 | 1 | -0/+23 |
* | InstCombine: fold fcmp (fpext x), (fpext y) -> fcmp x, y. | Benjamin Kramer | 2011-03-31 | 1 | -0/+11 |
* | * The DSE code that tested for overlapping needed to take into account the fact | Bill Wendling | 2011-03-30 | 1 | -0/+1 |
* | Avoid turning a floating point division with a constant power of two into a d... | Benjamin Kramer | 2011-03-30 | 1 | -1/+1 |
* | InstCombine: If the divisor of an fdiv has an exact inverse, turn it into an ... | Benjamin Kramer | 2011-03-30 | 1 | -0/+25 |
* | InstCombine: Add a few missing combines for ANDs and ORs of sign bit tests. | Benjamin Kramer | 2011-03-29 | 1 | -0/+79 |
* | Do some simple copy propagation through integer loads and stores when promoting | Cameron Zwarich | 2011-03-29 | 2 | -1/+54 |
* | Teach the transformation that moves binary operators around selects to preserve | Nick Lewycky | 2011-03-27 | 1 | -0/+12 |
* | Constant folding support for calls to umul.with.overflow(), basically identic... | Frits van Bommel | 2011-03-27 | 1 | -8/+33 |
* | Add a small missed optimization: turn X == C ? X : Y into X == C ? C : Y. This | Nick Lewycky | 2011-03-27 | 1 | -0/+13 |
* | Fix a typo and add a test. | Cameron Zwarich | 2011-03-26 | 1 | -0/+15 |
* | PR9561: A store with a negative offset (via GEP) could erroniously say that it | Bill Wendling | 2011-03-26 | 1 | -0/+22 |
* | Fix PR9464 by correcting some math that just happened to be right in most cases | Cameron Zwarich | 2011-03-23 | 1 | -0/+16 |
* | Add an optimization to GlobalOpt that eliminates calls to __cxa_atexit, if th... | Anders Carlsson | 2011-03-20 | 1 | -0/+31 |
* | Avoid creating canonical induction variables for non-native types. | Andrew Trick | 2011-03-18 | 18 | -18/+22 |
* | FileCheck-ize and update test. | Eli Friedman | 2011-03-18 | 1 | -6/+9 |
* | Try to not lose variable's debug info during instcombine. | Devang Patel | 2011-03-17 | 1 | -0/+57 |
* | Only convert allocas to scalars if it is profitable. The profitability metric I | Cameron Zwarich | 2011-03-16 | 1 | -0/+27 |
* | Add native integer type TargetData to some existing tests. | Cameron Zwarich | 2011-03-16 | 2 | -2/+2 |
* | Do not add PHIs with no users when creating LCSSA form. Patch by Andrew Clinton. | Cameron Zwarich | 2011-03-15 | 2 | -2/+38 |
* | PR9450: Make switch optimization in SimplifyCFG not dependent on the ordering | Eli Friedman | 2011-03-15 | 1 | -8/+48 |
* | If we don't know how long a string is we can't fold an _chk version to the | Eric Christopher | 2011-03-15 | 1 | -0/+18 |
* | Teach ComputeMaskedBits about sub nsw. | Benjamin Kramer | 2011-03-12 | 1 | -0/+23 |
* | Roll r127459 back in: | Cameron Zwarich | 2011-03-11 | 1 | -1/+2 |
* | Revert r127459, "Optimize trivial branches in CodeGenPrepare, which often get | Daniel Dunbar | 2011-03-11 | 1 | -2/+1 |
* | ComputeMaskedBits: sub falls through to add, and sub doesn't have the same ov... | Benjamin Kramer | 2011-03-11 | 1 | -0/+10 |
* | InstCombine: Fix a thinko where transform an icmp under the assumption that i... | Benjamin Kramer | 2011-03-11 | 1 | -0/+10 |
* | Teach ComputeMaskedBits about nsw on add. I don't think there's anything we can | Nick Lewycky | 2011-03-11 | 1 | -0/+10 |