| Commit message (Expand) | Author | Age | Files | Lines |
* | [APInt] Rename getSignBit to getSignMask | Craig Topper | 2017-04-20 | 1 | -6/+6 |
* | [InstCombine] Support folding a subtract with a constant LHS into a phi node | Craig Topper | 2017-04-14 | 1 | -0/+5 |
* | Fix spelling compliment->complement. Mostly refering to 2s complement. NFC | Craig Topper | 2017-04-11 | 1 | -2/+2 |
* | [InstCombine] Use commutable matchers and m_OneUse in visitSub to shorten cod... | Craig Topper | 2017-04-10 | 1 | -15/+11 |
* | [InstCombine] Use m_c_Add to shorten some code. Add testcases for this fold s... | Craig Topper | 2017-04-10 | 1 | -2/+1 |
* | [InstCombine] Support folding of add instructions with vector constants into ... | Craig Topper | 2017-04-10 | 1 | -7/+2 |
* | [InstCombine] Use commutable and/or/xor matchers to simplify some code | Craig Topper | 2017-04-10 | 1 | -9/+4 |
* | [InstCombine] Remove testing assert I accidentally left in r299710. | Craig Topper | 2017-04-06 | 1 | -3/+1 |
* | [InstCombine] When checking to see if we can turn subtracts of 2^n - 1 into x... | Craig Topper | 2017-04-06 | 1 | -5/+7 |
* | [InstCombine] rename variable for easier reading; NFC | Sanjay Patel | 2017-04-04 | 1 | -7/+8 |
* | [InstCombine] Turn subtract of vectors of i1 into xor like we do for scalar i... | Craig Topper | 2017-04-04 | 1 | -1/+1 |
* | [InstCombine] Fix typo last->least. NFC | Craig Topper | 2017-03-30 | 1 | -3/+3 |
* | NFC. InstCombiner::visitFAdd extract LHSIntVal/RHSIntVal local variables | Artur Pilipenko | 2017-03-21 | 1 | -9/+11 |
* | [InstCombine] don't try SimplifyDemandedInstructionBits from add/sub because ... | Sanjay Patel | 2017-02-22 | 1 | -8/+0 |
* | [InstCombine] add nsw/nuw X, signbit --> or X, signbit | Sanjay Patel | 2017-02-18 | 1 | -2/+9 |
* | [InstCombine] improve formatting; NFC | Sanjay Patel | 2017-02-15 | 1 | -6/+3 |
* | [InstCombine] add a wrapper for a common pair of transforms; NFCI | Sanjay Patel | 2017-01-10 | 1 | -9/+3 |
* | [InstCombine] Combine adds across a zext | David Majnemer | 2017-01-04 | 1 | -0/+12 |
* | [InstCombine] Address post-commit feedback | David Majnemer | 2016-12-30 | 1 | -1/+2 |
* | [InstCombine] More thoroughly canonicalize the position of zexts | David Majnemer | 2016-12-30 | 1 | -9/+47 |
* | Revert @llvm.assume with operator bundles (r289755-r289757) | Daniel Jasper | 2016-12-19 | 1 | -5/+5 |
* | Remove the AssumptionCache | Hal Finkel | 2016-12-15 | 1 | -5/+5 |
* | [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 |