[InstSimplify] add nuw %x, C2 must be at least C2
[oota-llvm.git] / test / Transforms / InstSimplify / compare.ll
2015-08-20 David Majnemer[InstSimplify] add nuw %x, C2 must be at least C2
2015-03-14 Ahmed BougachaAdd a bunch of CHECK missing colons in tests. NFC.
2015-02-27 David Blaikie[opaque pointer type] Add textual IR support for explic...
2015-02-27 David Blaikie[opaque pointer type] Add textual IR support for explic...
2014-11-25 David MajnemerInstSimplify: Handle some simple tautological comparisons
2014-10-20 Philip ReamesIntroduce a 'nonnull' metadata on Load instructions.
2014-08-28 David MajnemerInstSimplify: Move a transform from InstCombine to...
2014-08-27 David MajnemerInstSimplify: Compute comparison ranges for left shift...
2014-08-22 David MajnemerValueTracking: Figure out more bits when looking at...
2014-07-18 Hal FinkelAdd a dereferenceable attribute
2014-07-14 David MajnemerFix a test broken in r212981
2014-07-14 David MajnemerInstSimplify: Correct sdiv x / -1
2014-07-14 David MajnemerInstSimplify: The upper bound of X / C was missing...
2014-07-04 David MajnemerInstSimplify: Fix a bug when INT_MIN is in a sdiv
2014-06-19 Nick LewyckyMake instsimplify's analysis of icmp eq/ne use computeK...
2014-05-20 Nick LewyckyTeach isKnownNonNull that a nonnull return is not null...
2014-05-16 David MajnemerInstSimplify: Improve handling of ashr/lshr
2014-05-16 David MajnemerInstSimplify: Optimize using dividend in sdiv
2014-05-14 David MajnemerInstSimplify: Optimize signed icmp of -(zext V)
2014-01-24 Benjamin KramerInstSimplify: Make shift, select and GEP simplification...
2013-09-28 Benjamin KramerAdd a test that large offsets on GEPs on 32 bits target...
2013-09-23 Benjamin KramerExpand test case a bit.
2013-09-23 Benjamin KramerInstSimplify: Fold equality comparisons between non...
2013-07-14 Stephen LinUpdate Transforms tests to use CHECK-LABEL for easier...
2013-07-12 Nick LewyckyFix logic error optimizing "icmp pred (urem X, Y),...
2013-07-09 David MajnemerInstSimplify: X >> X -> 0
2013-03-18 Manman RenCheck whether a pointer is non-null (isKnownNonNull...
2013-02-01 Dan GohmanRewrite instsimplify's handling if icmp on pointer...
2013-01-31 Dan GohmanAn alloca can be equal to an argument. It can't *alias...
2012-12-07 Chandler CarruthAdd support to ValueTracking for determining that a...
2012-11-16 Duncan SandsInstructionSimplify should be able to simplify A+B...
2012-03-25 Chandler CarruthTeach instsimplify how to simplify comparisons of point...
2012-02-26 Nick LewyckyReinstate the optimization from r151449 with a fix...
2012-02-25 Nick LewyckyRoll these back to r151448 until I figure out how they...
2012-02-25 Nick LewyckyAn argument and a local identified object (eg. a noalia...
2012-02-25 Nick LewyckyTeach instsimplify to be more aggressive when analyzing...
2012-02-24 Chris Lattnerfix PR12075, a regression in a recent transform I added...
2012-02-20 Chris Lattnerfold comparisons of gep'd alloca points with null to...
2012-02-18 Eli FriedmanFix a rather nasty regression from r150690: LHS !=...
2012-02-16 Benjamin KramerInstSimplify: Ignore pointer casts when constant foldin...
2012-02-10 Duncan SandsFix PR11948: the result type of an icmp may be a vector...
2012-02-10 Duncan SandsRevert commit 149912 (lattner) and add a testcase that...
2011-11-08 Eli FriedmanFix code to match comment. Fixes PR11340, a regression...
2011-10-30 Duncan SandsReapply commit 143214 with a fix: m_ICmp doesn't match...
2011-10-29 Eli FriedmanRevert r143214; it's breaking a bunch of stuff.
2011-10-28 Duncan SandsThe expression icmp eq (select (icmp eq x, 0), 1, x...
2011-10-28 Duncan SandsFold icmp ugt (udiv X, Y), X to false. Spotted by...
2011-10-27 Duncan SandsReapply commit 143028 with a fix: the problem was casti...
2011-10-27 Bob WilsonRevert Duncan's r143028 expression folding which appear...
2011-10-26 Duncan SandsMy super-optimizer noticed that we weren't folding...
2011-07-19 Nick LewyckyRemove bogus test: for all possible inputs of %X, the...
2011-03-12 Benjamin KramerTeach ComputeMaskedBits about sub nsw.
2011-03-11 Nick LewyckyTeach ComputeMaskedBits about nsw on add. I don't think...
2011-03-09 Benjamin KramerFix mistyped CHECK lines.
2011-03-09 Nick LewyckyAdd another micro-optimization. Apologies for the lack...
2011-03-05 Nick LewyckyThread comparisons over udiv/sdiv/ashr/lshr exact and...
2011-03-04 Nick LewyckyRevert broken srem logic from r126991.
2011-03-04 Nick LewyckyFold "icmp pred (srem X, Y), Y" like we do for urem...
2011-03-04 Nick LewyckyTeach instruction simplify to use constant ranges to...
2011-03-01 Nick LewyckyOptimize "icmp pred (urem X, Y), Y" --> true/false...
2011-02-13 Duncan SandsTeach instsimplify that X+Y>=X+Z is the same as Y>...