| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | InstCombine: cleanup redundant dyn_cast<> (NFC) | Mehdi Amini | 2015-02-13 | 1 | -44/+43 |
* | [InstSimplify] Add SimplifyFPBinOp function. | Michael Zolotukhin | 2015-02-06 | 1 | -0/+30 |
* | Fold fcmp in cases where value is provably non-negative. By Arch Robison. | Elena Demikhovsky | 2015-01-28 | 1 | -0/+14 |
* | [PM] Split the AssumptionTracker immutable pass into two separate APIs: | Chandler Carruth | 2015-01-04 | 1 | -182/+163 |
* | InstSimplify: Don't bother if getScalarSizeInBits returns zero | David Majnemer | 2014-12-20 | 1 | -4/+5 |
* | Simplify the code | David Majnemer | 2014-12-20 | 1 | -41/+25 |
* | InstSimplify: Optimize away pointless comparisons | David Majnemer | 2014-12-20 | 1 | -2/+38 |
* | InstSimplify: shl nsw/nuw undef, %V -> undef | David Majnemer | 2014-12-17 | 1 | -13/+7 |
* | ConstantFold, InstSimplify: undef >>a x can be either -1 or 0, choose 0 | David Majnemer | 2014-12-10 | 1 | -2/+2 |
* | InstSimplify: [al]shr exact undef, %X -> undef | David Majnemer | 2014-12-10 | 1 | -2/+6 |
* | InstSimplify: div %X, 0 -> undef | David Majnemer | 2014-12-10 | 1 | -0/+4 |
* | InstSimplify: Try to bring back the rest of r223583 | David Majnemer | 2014-12-08 | 1 | -2/+7 |
* | Revert a part of r223583, for now. It seems causing different emission betwee... | NAKAMURA Takumi | 2014-12-08 | 1 | -5/+0 |
* | InstSimplify: Optimize away useless unsigned comparisons | David Majnemer | 2014-12-06 | 1 | -0/+49 |
* | Revert "r223364 - Revert r223347 which has caused crashes on bootstrap bots." | Hal Finkel | 2014-12-04 | 1 | -3/+14 |
* | Revert r223347 which has caused crashes on bootstrap bots. | Alexander Potapenko | 2014-12-04 | 1 | -13/+3 |
* | Restrict somewhat the memory-allocation pointer cmp opt from r223093 | Hal Finkel | 2014-12-04 | 1 | -3/+13 |
* | Simplify pointer comparisons involving memory allocation functions | Hal Finkel | 2014-12-01 | 1 | -0/+35 |
* | InstSimplify: Restore optimizations lost in r210006 | David Majnemer | 2014-11-27 | 1 | -0/+34 |
* | InstSimplify: Handle some simple tautological comparisons | David Majnemer | 2014-11-25 | 1 | -0/+34 |
* | InstSimplify: Simplify (sub 0, X) -> X if it's NUW | David Majnemer | 2014-11-22 | 1 | -11/+3 |
* | Update SetVector to rely on the underlying set's insert to return a pair<iter... | David Blaikie | 2014-11-19 | 1 | -1/+1 |
* | InstSimplify: Optimize ICmpInst xform that uses computeKnownBits | David Majnemer | 2014-11-16 | 1 | -21/+17 |
* | InstSimplify: Exact shifts of X by Y are X if X has the lsb set | David Majnemer | 2014-11-05 | 1 | -11/+31 |
* | InstSimplify: Fold a hasNoSignedWrap() call into a match() expression | David Majnemer | 2014-11-04 | 1 | -2/+1 |
* | InstSimplify: Fold a hasNoUnsignedWrap() call into a match() expression | David Majnemer | 2014-11-04 | 1 | -2/+1 |
* | InstCombine, InstSimplify: (%X /s C1) /s C2 isn't always 0 when C1 * C2 overflow | David Majnemer | 2014-10-11 | 1 | -0/+10 |
* | InstSimplify: Don't allow (x srem y) urem y -> x srem y | David Majnemer | 2014-09-17 | 1 | -3/+5 |
* | InstSimplify: ((X % Y) % Y) -> (X % Y) | David Majnemer | 2014-09-17 | 1 | -0/+5 |
* | InstSimplify: Simplify trivial and/or of icmps | David Majnemer | 2014-09-15 | 1 | -0/+114 |
* | Fix an ODR violation consisting of two 'struct Query' in the global namespace. | Benjamin Kramer | 2014-09-12 | 1 | -0/+2 |
* | Make use of @llvm.assume in ValueTracking (computeKnownBits, etc.) | Hal Finkel | 2014-09-07 | 1 | -115/+210 |
* | InstSimplify: Move a transform from InstCombine to InstSimplify | David Majnemer | 2014-08-28 | 1 | -0/+35 |
* | InstSimplify: Don't simplify gep X, (Y-X) to Y if types differ | David Majnemer | 2014-08-27 | 1 | -1/+2 |
* | Reland r216439 215441, majnemer has a real fix for PR20771. | Nico Weber | 2014-08-27 | 1 | -11/+53 |
* | Revert r216439 (and r216441, else the former doesn't revert cleanly). | Nico Weber | 2014-08-27 | 1 | -53/+11 |
* | InstSimplify: Compute comparison ranges for left shift instructions | David Majnemer | 2014-08-27 | 1 | -0/+16 |
* | InstSimplify: Fold gep X, (sub 0, ptrtoint(X)) to null | David Majnemer | 2014-08-26 | 1 | -21/+32 |
* | InstSimplify: Simplify trivial pointer expressions like b + (e - b) | David Majnemer | 2014-08-26 | 1 | -5/+36 |
* | InstSimplify: Simplify (X - (0 - Y)) if the second sub is NUW | David Majnemer | 2014-07-31 | 1 | -0/+12 |
* | Rectify r213231. Use proper version of 'ComputeNumSignBits'. | Suyog Sarda | 2014-07-17 | 1 | -1/+1 |
* | Move ashr optimization from InstCombineShift to InstSimplify. | Suyog Sarda | 2014-07-17 | 1 | -0/+5 |
* | InstSimplify: Correct sdiv x / -1 | David Majnemer | 2014-07-14 | 1 | -11/+13 |
* | InstSimplify: The upper bound of X / C was missing a rounding step | David Majnemer | 2014-07-14 | 1 | -1/+9 |
* | InstSimplify: Fix a bug when INT_MIN is in a sdiv | David Majnemer | 2014-07-04 | 1 | -3/+9 |
* | This patch removed duplicate code for matching patterns | Dinesh Dwivedi | 2014-06-26 | 1 | -106/+1 |
* | Move optimization of some cases of (A & C1)|(B & C2) from instcombine to inst... | Nick Lewycky | 2014-06-19 | 1 | -0/+32 |
* | Make instsimplify's analysis of icmp eq/ne use computeKnownBits to determine ... | Nick Lewycky | 2014-06-19 | 1 | -0/+19 |
* | InstSimplify: Improve handling of ashr/lshr | David Majnemer | 2014-05-16 | 1 | -1/+21 |
* | InstSimplify: Optimize using dividend in sdiv | David Majnemer | 2014-05-16 | 1 | -0/+4 |