| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Rename many DataLayout variables from TD to DL. | Rafael Espindola | 2014-02-21 | 1 | -8/+8 |
* | Fix all the remaining lost-fast-math-flags bugs I've been able to find. The ... | Owen Anderson | 2014-01-20 | 1 | -0/+10 |
* | InstCombine: Teach most integer add/sub/mul/div combines how to deal with vec... | Benjamin Kramer | 2014-01-19 | 1 | -21/+22 |
* | InstCombine: Refactor fmul/fdiv combines to handle vectors. | Benjamin Kramer | 2014-01-19 | 1 | -64/+77 |
* | InstCombine: Make the (fmul X, -1.0) -> (fsub -0.0, X) transform handle vecto... | Benjamin Kramer | 2014-01-18 | 1 | -6/+4 |
* | Fix an instance where we would drop fast math flags when performing an fdiv t... | Owen Anderson | 2014-01-16 | 1 | -1/+3 |
* | Fix a bug in InstCombine where we failed to preserve fast math flags when opt... | Owen Anderson | 2014-01-16 | 1 | -2/+5 |
* | Teach InstCombine that (fmul X, -1.0) can be simplified to (fneg X), which LL... | Owen Anderson | 2014-01-16 | 1 | -0/+10 |
* | InstCombine: Replace manual fast math flag copying with the new IRBuilder RAI... | Benjamin Kramer | 2013-09-30 | 1 | -22/+20 |
* | Fix a bug in InstCombine where it attempted to cast a Value* to an Instruction* | Joey Gouly | 2013-09-30 | 1 | -2/+2 |
* | [Fast-math] Disable "(C1/X)*C2 => (C1*C2)/X" if C1/X has multiple uses. | Shuxin Yang | 2013-09-19 | 1 | -3/+6 |
* | Correct case of m_UIToFp to m_UIToFP to match instruction name, add m_SIToFP ... | Stephen Lin | 2013-07-26 | 1 | -4/+4 |
* | InstCombine: call FoldOpIntoSelect for all floating binops, not just fmul | Stephen Lin | 2013-07-20 | 1 | -0/+9 |
* | Restore r181216, which was partially reverted in r182499. | Stephen Lin | 2013-07-17 | 1 | -0/+29 |
* | Add a microoptimization for urem. | Nick Lewycky | 2013-07-13 | 1 | -0/+7 |
* | InstCombine: Reimplementation of visitUDivOperand | David Majnemer | 2013-07-04 | 1 | -56/+139 |
* | Revert r185257 (InstCombine: Be more agressive optimizing 'udiv' instrs with ... | Hal Finkel | 2013-07-02 | 1 | -77/+44 |
* | InstCombine: Be more agressive optimizing 'udiv' instrs with 'select' denoms | David Majnemer | 2013-06-29 | 1 | -44/+77 |
* | In InstCombine{AddSub,MulDivRem} convert APFloat.isFiniteNonZero() && !APFloa... | Michael Gottesman | 2013-06-26 | 1 | -4/+4 |
* | [APFloat] Converted all references to APFloat::isNormal => APFloat::isFiniteN... | Michael Gottesman | 2013-06-19 | 1 | -9/+9 |
* | Simplify code. No functionality change. | Jakub Staszak | 2013-06-06 | 1 | -2/+1 |
* | Simplify multiplications by vectors whose elements are powers of 2. | Rafael Espindola | 2013-05-31 | 1 | -16/+48 |
* | This is an update to a previous commit (r181216). | Jean-Luc Duprat | 2013-05-22 | 1 | -29/+0 |
* | Fix two typo | Sylvestre Ledru | 2013-05-14 | 1 | -1/+1 |
* | InstCombine: Flip the order of two urem transforms | David Majnemer | 2013-05-12 | 1 | -6/+6 |