| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Make use of @llvm.assume in ValueTracking (computeKnownBits, etc.) | Hal Finkel | 2014-09-07 | 1 | -20/+27 |
* | InstCombine: Respect recursion depth in visitUDivOperand | David Majnemer | 2014-08-30 | 1 | -4/+4 |
* | Remove an InstCombine that transformed patterns like (x * uitofp i1 y) to (se... | Owen Anderson | 2014-08-17 | 1 | -30/+0 |
* | InstCombine: Combine mul with div. | David Majnemer | 2014-08-16 | 1 | -2/+75 |
* | InstCombine: Optimize x/INT_MIN to x==INT_MIN | David Majnemer | 2014-07-02 | 1 | -0/+4 |
* | InstCombine: Stop two transforms dueling | David Majnemer | 2014-06-19 | 1 | -2/+5 |
* | Optimize integral reciprocal (udiv 1, x and sdiv 1, x) to not use division. T... | Nick Lewycky | 2014-05-14 | 1 | -1/+20 |
* | Reorder shuffle and binary operation. | Serge Pavlov | 2014-05-11 | 1 | -0/+24 |
* | [C++] Use 'nullptr'. Transforms edition. | Craig Topper | 2014-04-25 | 1 | -40/+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 |