| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Add the nsw flag when we detect that an add will not signed overflow. | Rafael Espindola | 2014-06-02 | 1 | -0/+5 |
* | Revert "Revert "Revert "InstCombine: Improvement to check if signed addition ... | Rafael Espindola | 2014-05-29 | 1 | -44/+6 |
* | Revert "Revert "InstCombine: Improvement to check if signed addition overflow... | Rafael Espindola | 2014-05-28 | 1 | -6/+44 |
* | Revert "InstCombine: Improvement to check if signed addition overflows." | Rafael Espindola | 2014-05-28 | 1 | -44/+6 |
* | InstCombine: Improvement to check if signed addition overflows. | Rafael Espindola | 2014-05-28 | 1 | -6/+44 |
* | Rename ComputeMaskedBits to computeKnownBits. "Masked" has been | Jay Foad | 2014-05-14 | 1 | -3/+3 |
* | Reorder shuffle and binary operation. | Serge Pavlov | 2014-05-11 | 1 | -0/+12 |
* | [C++] Use 'nullptr'. Transforms edition. | Craig Topper | 2014-04-25 | 1 | -41/+41 |
* | [Modules] Fix potential ODR violations by sinking the DEBUG_TYPE | Chandler Carruth | 2014-04-22 | 1 | -1/+2 |
* | [Modules] Sink all the DEBUG_TYPE defines for InstCombine out of the | Chandler Carruth | 2014-04-21 | 1 | -0/+1 |
* | [Modules] Move the LLVM IR pattern match header into the IR library, it | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | [Modules] Move GetElementPtrTypeIterator into the IR library. As its | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | Rename many DataLayout variables from TD to DL. | Rafael Espindola | 2014-02-21 | 1 | -6/+6 |
* | Fix all the remaining lost-fast-math-flags bugs I've been able to find. The ... | Owen Anderson | 2014-01-20 | 1 | -8/+26 |
* | InstCombine: Hoist 3 copies of AddOne/SubOne into a header. | Benjamin Kramer | 2014-01-19 | 1 | -11/+0 |
* | InstCombine: Teach most integer add/sub/mul/div combines how to deal with vec... | Benjamin Kramer | 2014-01-19 | 1 | -55/+60 |
* | Fix two cases where we could lose fast math flags when optimizing FADD expres... | Owen Anderson | 2014-01-16 | 1 | -4/+10 |
* | Preserve fast-math flags when folding (fsub x, (fneg y)) to (fadd x, y). | Owen Anderson | 2013-07-30 | 1 | -4/+11 |
* | Fix variable name. | Owen Anderson | 2013-07-26 | 1 | -2/+2 |
* | When InstCombine tries to fold away (fsub x, (fneg y)) into (fadd x, y), it is | Owen Anderson | 2013-07-26 | 1 | -1/+13 |
* | InstCombine: call FoldOpIntoSelect for all floating binops, not just fmul | Stephen Lin | 2013-07-20 | 1 | -3/+14 |
* | Restore r181216, which was partially reverted in r182499. | Stephen Lin | 2013-07-17 | 1 | -43/+0 |
* | Use llvm::array_lengthof to replace sizeof(array)/sizeof(array[0]). | Craig Topper | 2013-07-15 | 1 | -1/+2 |
* | Don't use a potentially expensive shift if all we want is one set bit. | Benjamin Kramer | 2013-07-11 | 1 | -1/+1 |
* | In InstCombine{AddSub,MulDivRem} convert APFloat.isFiniteNonZero() && !APFloa... | Michael Gottesman | 2013-06-26 | 1 | -1/+1 |
* | [APFloat] Converted all references to APFloat::isNormal => APFloat::isFiniteN... | Michael Gottesman | 2013-06-19 | 1 | -1/+1 |
* | This is an update to a previous commit (r181216). | Jean-Luc Duprat | 2013-05-22 | 1 | -0/+43 |
* | InstCombine: (X ^ signbit) + C -> X + (signbit ^ C) | David Majnemer | 2013-05-06 | 1 | -0/+5 |
* | Provide InstCombines for the following 3 cases: | Jean-Luc Duprat | 2013-05-06 | 1 | -0/+25 |
* | Tidy up a bit. No functional change. | Jim Grosbach | 2013-04-05 | 1 | -58/+60 |
* | Fix a bug in fast-math fadd/fsub simplification. | Shuxin Yang | 2013-03-25 | 1 | -10/+43 |
* | Perform factorization as a last resort of unsafe fadd/fsub simplification. | Shuxin Yang | 2013-03-14 | 1 | -5/+91 |
* | Transform (sub 0, (zext bool to A)) to (sext bool to A) and | Paul Redmond | 2013-01-21 | 1 | -0/+10 |
* | Fix Casting Bug | David Greene | 2013-01-14 | 1 | -1/+3 |
* | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -1/+1 |
* | Make sure the buffer, which containas an instance of APFloat, has proper alig... | Shuxin Yang | 2012-12-19 | 1 | -7/+5 |
* | rdar://12801297 | Shuxin Yang | 2012-12-18 | 1 | -0/+715 |
* | Add back FoldOpIntoPhi optimizations with fix. Included test cases to help ca... | Michael Ilseman | 2012-12-14 | 1 | -0/+4 |