| Commit message (Expand) | Author | Age | Files | Lines |
* | [InstCombine] use m_APInt to allow sub with constant folds for splat vectors | Sanjay Patel | 2016-10-14 | 1 | -18/+19 |
* | [InstCombine] sub X, sext(bool Y) -> add X, zext(bool Y) | Sanjay Patel | 2016-10-14 | 1 | -0/+11 |
* | InstCombine: Replace some never-null pointers with references. NFC | Justin Bogner | 2016-08-05 | 1 | -5/+5 |
* | [InstCombine] fold add(zext(xor X, C), C) --> sext X when C is INT_MIN in the... | Sanjay Patel | 2016-07-19 | 1 | -0/+10 |
* | [InstCombine] allow X + signbit --> X ^ signbit for vector splats | Sanjay Patel | 2016-07-16 | 1 | -3/+10 |
* | Apply clang-tidy's modernize-loop-convert to most of lib/Transforms. | Benjamin Kramer | 2016-06-26 | 1 | -6/+3 |
* | Delete more dead code. | Rafael Espindola | 2016-06-22 | 1 | -22/+0 |
* | Remove uses of builtin comma operator. | Richard Trieu | 2016-02-18 | 1 | -5/+12 |
* | Fix Clang-tidy readability-redundant-control-flow warnings; other minor fixes. | Eugene Zelenko | 2016-02-02 | 1 | -2/+0 |
* | function names start with a lowercase letter; NFC | Sanjay Patel | 2016-02-01 | 1 | -15/+15 |
* | [InstCombine] Fix indentation. NFC. | Craig Topper | 2015-12-21 | 1 | -2/+2 |
* | Fix some Clang-tidy modernize warnings, other minor fixes. | Eugene Zelenko | 2015-11-04 | 1 | -14/+12 |
* | don't repeat function names in comments; NFC | Sanjay Patel | 2015-09-09 | 1 | -1/+1 |
* | [InstCombine] Generalize sub of selects optimization to all BinaryOperators | David Majnemer | 2015-07-14 | 1 | -26/+0 |
* | Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC) | Alexander Kornienko | 2015-06-23 | 1 | -1/+1 |
* | [InstCombine] Optimize subtract of selects into a select of a sub | David Majnemer | 2015-06-23 | 1 | -0/+26 |
* | Fixed/added namespace ending comments using clang-tidy. NFC | Alexander Kornienko | 2015-06-19 | 1 | -1/+1 |
* | [ValueTracking] refactor: extract method haveNoCommonBitsSet | Jingyue Wu | 2015-05-14 | 1 | -14/+2 |
* | InstCombine: Move Sub->Xor rule from SimplifyDemanded to InstCombine | Matthias Braun | 2015-04-30 | 1 | -0/+13 |
* | DataLayout is mandatory, update the API to reflect it with references. | Mehdi Amini | 2015-03-10 | 1 | -44/+44 |
* | [PM] Rename InstCombine.h to InstCombineInternal.h in preparation for | Chandler Carruth | 2015-01-22 | 1 | -1/+1 |
* | Analysis: Reformulate WillNotOverflowUnsignedAdd for reusability | David Majnemer | 2015-01-07 | 1 | -17/+3 |
* | [PM] Split the AssumptionTracker immutable pass into two separate APIs: | Chandler Carruth | 2015-01-04 | 1 | -6/+6 |
* | InstCombine: fsub nsz 0, X ==> fsub nsz -0.0, X | Sanjay Patel | 2014-12-31 | 1 | -0/+8 |
* | InstCombe: Infer nsw for multiplies | David Majnemer | 2014-12-26 | 1 | -87/+38 |
* | use -0.0 when creating an fneg instruction | Sanjay Patel | 2014-12-19 | 1 | -1/+1 |
* | fix formatting; NFC | Sanjay Patel | 2014-12-18 | 1 | -8/+4 |
* | Strength reduce intrinsics with overflow into regular arithmetic operations i... | Erik Eckstein | 2014-12-17 | 1 | -0/+45 |
* | InstCombine: Combine (X | Y) - X to (~X & Y) | David Majnemer | 2014-11-03 | 1 | -6/+15 |
* | InstCombine: (sub (or A B) (xor A B)) --> (and A B) | David Majnemer | 2014-10-19 | 1 | -0/+9 |
* | Format spacing and remove extra lines to comply with standards. NFC. | Suyog Sarda | 2014-10-08 | 1 | -5/+6 |
* | Make use of @llvm.assume in ValueTracking (computeKnownBits, etc.) | Hal Finkel | 2014-09-07 | 1 | -30/+38 |
* | InstCombine: sub nsw %x, C -> add nsw %x, -C if C isn't INT_MIN | David Majnemer | 2014-08-22 | 1 | -1/+4 |
* | InstCombine: Annotate sub with nuw when we prove it's safe | David Majnemer | 2014-08-20 | 1 | -0/+18 |
* | InstCombine: Annotate sub with nsw when we prove it's safe | David Majnemer | 2014-08-19 | 1 | -1/+39 |
* | InstCombine: Fix a potential bug in 0 - (X sdiv C) -> (X sdiv -C) | David Majnemer | 2014-08-16 | 1 | -1/+1 |
* | InstCombine: Combine (add (and %a, %b) (or %a, %b)) to (add %a, %b) | David Majnemer | 2014-08-11 | 1 | -1/+23 |
* | InstCombine: Correctly propagate NSW/NUW for x-(-A) -> x+A | David Majnemer | 2014-07-31 | 1 | -3/+9 |
* | Fix Typo (first commit to test commit access) | Suyog Sarda | 2014-07-17 | 1 | -1/+1 |
* | Make helper functions static. | Benjamin Kramer | 2014-07-07 | 1 | -2/+2 |
* | InstCombine: Don't turn -(x/INT_MIN) -> x/INT_MIN | David Majnemer | 2014-07-02 | 1 | -3/+3 |
* | Added instruction combine to transform few more negative values addition to s... | Dinesh Dwivedi | 2014-06-27 | 1 | -48/+62 |
* | This patch removed duplicate code for matching patterns | Dinesh Dwivedi | 2014-06-26 | 1 | -36/+0 |
* | Added instruction combine to transform few more negative values addition to s... | Dinesh Dwivedi | 2014-06-26 | 1 | -49/+54 |
* | Added instruction combine to transform few more negative values addition to s... | Dinesh Dwivedi | 2014-06-19 | 1 | -0/+45 |
* | Refactored and updated SimplifyUsingDistributiveLaws() to | Dinesh Dwivedi | 2014-06-19 | 1 | -52/+0 |
* | [InstCombine] mark ADD with nuw if no unsigned overflow | Jingyue Wu | 2014-06-17 | 1 | -0/+22 |
* | InstCombine: Improvement to check if signed addition overflows. | Rafael Espindola | 2014-06-04 | 1 | -7/+46 |
* | Add back commit r210029. | Rafael Espindola | 2014-06-02 | 1 | -4/+19 |
* | Revert "Add the nsw flag when we detect that an add will not signed overflow." | Rafael Espindola | 2014-06-02 | 1 | -5/+0 |