| Commit message (Expand) | Author | Age | Files | Lines |
* | [InstCombine] Teach the udiv folding logic how to handle constant expressions. | Andrea Di Biagio | 2016-09-26 | 1 | -11/+14 |
* | [InstCombine] fold X urem C -> X < C ? X : X - C when C is big (PR28672) | Sanjay Patel | 2016-09-22 | 1 | -0/+8 |
* | InstCombine: Replace some never-null pointers with references. NFC | Justin Bogner | 2016-08-05 | 1 | -12/+12 |
* | [InstCombine] shrink type of sdiv if dividend is sexted and constant divisor ... | Sanjay Patel | 2016-06-27 | 1 | -0/+17 |
* | [InstCombine] refactor sdiv by APInt transforms (NFC) | Sanjay Patel | 2016-06-27 | 1 | -9/+10 |
* | [InstCombine] use m_APInt for div --> ashr fold | Sanjay Patel | 2016-06-27 | 1 | -8/+6 |
* | Add safety check to InstCombiner::commonIRemTransforms | Sanjoy Das | 2016-06-05 | 1 | -2/+11 |
* | reduce indent; NFC | Sanjay Patel | 2016-05-22 | 1 | -19/+19 |
* | Remove uses of builtin comma operator. | Richard Trieu | 2016-02-18 | 1 | -4/+7 |
* | function names start with a lowercase letter; NFC | Sanjay Patel | 2016-02-01 | 1 | -25/+25 |
* | InstCombine: fabs(x) * fabs(x) -> x * x | Matt Arsenault | 2016-01-30 | 1 | -4/+15 |
* | function names start with a lower case letter ; NFC | Sanjay Patel | 2016-01-12 | 1 | -3/+3 |
* | InstCombine: Remove ilist iterator implicit conversions, NFC | Duncan P. N. Exon Smith | 2015-10-13 | 1 | -3/+3 |
* | don't repeat function names in comments; NFC | Sanjay Patel | 2015-09-09 | 1 | -7/+5 |
* | [InstCombine] Don't divide by zero when evaluating a potential transform | David Majnemer | 2015-09-06 | 1 | -0/+8 |
* | Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC) | Alexander Kornienko | 2015-06-23 | 1 | -1/+1 |
* | Fixed/added namespace ending comments using clang-tidy. NFC | Alexander Kornienko | 2015-06-19 | 1 | -1/+1 |
* | [InstCombine] (mul nsw 1, INT_MIN) != (shl nsw 1, 31) | David Majnemer | 2015-04-18 | 1 | -2/+6 |
* | DataLayout is mandatory, update the API to reflect it with references. | Mehdi Amini | 2015-03-10 | 1 | -13/+13 |
* | [InstCombine] Fix an assertion when fmul has a ConstantExpr operand | Michael Kuperstein | 2015-03-05 | 1 | -2/+2 |
* | InstSimplify: simplify 0 / X if nnan and nsz | Mehdi Amini | 2015-02-23 | 1 | -2/+4 |
* | [PM] Rename InstCombine.h to InstCombineInternal.h in preparation for | Chandler Carruth | 2015-01-22 | 1 | -1/+1 |
* | [PM] Split the AssumptionTracker immutable pass into two separate APIs: | Chandler Carruth | 2015-01-04 | 1 | -15/+15 |
* | InstCombine: match can find ConstantExprs, don't assume we have a Value | David Majnemer | 2015-01-04 | 1 | -2/+2 |
* | Analysis: Reformulate WillNotOverflowUnsignedMul for reusability | David Majnemer | 2015-01-02 | 1 | -34/+3 |
* | InstCombine: Infer nuw for multiplies | David Majnemer | 2014-12-26 | 1 | -0/+38 |
* | InstCombe: Infer nsw for multiplies | David Majnemer | 2014-12-26 | 1 | -0/+47 |
* | InstCombine: Don't create an unused instruction | David Majnemer | 2014-11-24 | 1 | -2/+1 |
* | InstCombine: Propagate exact for (sdiv X, Pow2) -> (udiv X, Pow2) | David Majnemer | 2014-11-22 | 1 | -2/+4 |
* | InstCombine: Propagate exact for (sdiv X, Y) -> (udiv X, Y) | David Majnemer | 2014-11-22 | 1 | -1/+3 |
* | InstCombine: Propagate exact for (sdiv -X, C) -> (sdiv X, -C) | David Majnemer | 2014-11-22 | 1 | -4/+6 |
* | InstCombine: Propagate exact in (udiv (lshr X,C1),C2) -> (udiv x,C1<<C2) | David Majnemer | 2014-11-22 | 1 | -2/+7 |
* | InstCombine: Propagate NSW/NUW for X*(1<<Y) -> X<<Y | David Majnemer | 2014-11-22 | 1 | -4/+17 |
* | InstCombine: Propagate NSW for -X * -Y -> X * Y | David Majnemer | 2014-11-22 | 1 | -3/+10 |
* | InstCombine: Preserve nsw when folding X*(2^C) -> X << C | David Majnemer | 2014-11-22 | 1 | -0/+2 |
* | InstCombine: Preserve nsw/nuw for ((X << C2)*C1) -> (X * (C1 << C2)) | David Majnemer | 2014-11-22 | 1 | -3/+12 |
* | InstCombine: Preserve nsw for (mul %V, -1) -> (sub 0, %V) | David Majnemer | 2014-11-22 | 1 | -2/+7 |
* | InstCombine: Don't miscompile X % ((Pow2 << A) >>u B) | David Majnemer | 2014-10-14 | 1 | -7/+4 |
* | fix formatting; NFC | Sanjay Patel | 2014-10-14 | 1 | -33/+25 |
* | InstCombine: Fix miscompile in X % -Y -> X % Y transform | David Majnemer | 2014-10-13 | 1 | -6/+6 |
* | InstCombine: Don't miscompile (x lshr C1) udiv C2 | David Majnemer | 2014-10-13 | 1 | -4/+10 |
* | InstCombine: Simplify commonIDivTransforms | David Majnemer | 2014-10-12 | 1 | -86/+76 |
* | InstCombine: Don't fold (X <<s log(INT_MIN)) /s INT_MIN to X | David Majnemer | 2014-10-11 | 1 | -1/+2 |
* | InstCombine, InstSimplify: (%X /s C1) /s C2 isn't always 0 when C1 * C2 overflow | David Majnemer | 2014-10-11 | 1 | -5/+4 |
* | InstCombine: mul to shl shouldn't preserve nsw | David Majnemer | 2014-10-11 | 1 | -2/+0 |
* | Reformat if statement to comply with LLVM standards. NFC. | Suyog Sarda | 2014-10-07 | 1 | -2/+4 |
* | Reformat to comply with LLVM coding standards using clang-format. | Suyog Sarda | 2014-10-07 | 1 | -5/+4 |
* | [InstCombine] Reformat if statements to comply with LLVM Coding Standards. | Tilmann Scheller | 2014-10-07 | 1 | -2/+6 |
* | Optimize square root squared (PR21126). | Sanjay Patel | 2014-10-02 | 1 | -0/+5 |
* | Use the local variable that other clauses around here are already using. | Sanjay Patel | 2014-10-02 | 1 | -1/+1 |