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