Improve the implementation of .incbin directive by replacing a loop by using
[oota-llvm.git] / test / Transforms / InstCombine /
2011-12-12 Chandler CarruthManually upgrade the test suite to specify the flag...
2011-12-05 Nadav RotemAdd support for vectors of pointers.
2011-12-01 Pete CooperImproved fix for abs(val) != 0 to check other similar...
2011-12-01 Pete CooperRemoved use of grep from test and moved it to be with...
2011-12-01 Pete CooperAdded instcombine pattern to spot comparing -val or...
2011-11-29 Chad RosierAdd support for sqrt, sqrtl, and sqrtf in TargetLibrary...
2011-11-29 Duncan SandsFix a theoretical problem (not seen in the wild): if...
2011-11-28 Eli FriedmanAdd a missing safety check to ProcessUGT_ADDCST_ADD...
2011-11-28 Eli FriedmanMake SelectionDAG::InferPtrAlignment use llvm::ComputeM...
2011-11-27 Chris Lattnerremove autoupgrade support for old forms of llvm.prefet...
2011-11-27 Chris LattnerUpgrade syntax of tests using volatile instructions...
2011-11-08 Bill WendlingConvert to the new EH model.
2011-11-01 Eli FriedmanMake sure we use the right insertion point when instcom...
2011-10-21 Eli FriedmanExtend instcombine's shufflevector simplification to...
2011-10-17 Bill WendlingAdd support for the Objective-C personality function...
2011-10-17 Chandler CarruthAdd a routine to swap branch instruction operands,...
2011-10-11 Lang HamesAdded a testcase for r141599, rdar://problem/10063881.
2011-10-05 Jim GrosbachRevert 141203. InstCombine is looping on unit tests.
2011-10-05 Jim GrosbachUpdate InstCombine worklist after instruction transform...
2011-10-02 Nick LewyckyAdd a new icmp+select optz'n. Also shows off the load...
2011-09-30 Jim Grosbachfloat comparison to double 'zero' constant can just...
2011-09-30 Duncan SandsAdd forgotten tests that the cleanup flag is cleared...
2011-09-30 Duncan SandsInlining often produces landingpad instructions with...
2011-09-27 Benjamin KramerStop emitting instructions with the name "tmp" they...
2011-09-19 Eli FriedmanFix an infinite loop where a transform in InstCombiner...
2011-09-15 Eli FriedmanMake demanded-elt simplification for shufflevector...
2011-09-07 Duncan SandsForgot to add this trampoline testcase.
2011-09-06 Duncan SandsSplit the init.trampoline intrinsic, which currently...
2011-09-01 Bill WendlingUpdate to new EH scheme.
2011-08-29 Nadav RotemFixes following the CR by Chris and Duncan:
2011-08-28 Nadav RotemBitcasts are transitive. Bitcast-Bitcast-X becomes...
2011-08-27 Bill WendlingAuto upgrade the old EH scheme to use the new one....
2011-08-24 Nadav RotemImplement Constant::isAllOnesValue(). Fix ConstantFoldi...
2011-08-23 Eric ChristopherRevert "Address Duncan's CR request:"
2011-08-23 Nadav RotemFix a typo in the test from the previous commit.
2011-08-23 Nadav RotemAddress Duncan's CR request:
2011-08-20 Nadav RotemAdd constant folding support for bitcasts of splat...
2011-08-16 Eli FriedmanAn additional atomic test; related to r137662.
2011-08-16 Eric ChristopherMigrate this test from llvm/test/FrontendC++/ptr-to...
2011-08-15 Eli FriedmanUpdate instcombine for atomic load/store.
2011-08-14 Nick LewyckyThis transform is not safe. Thanks to Eli for pointing...
2011-08-14 Nick LewyckyDon't attempt to add 'nsw' when intermediate instructio...
2011-08-14 Nick LewyckyTeach instcombine to preserve the nsw bit by doing...
2011-08-12 Eli FriedmanMove "atomic" and "volatile" designations on instructio...
2011-08-03 Nick LewyckyFix logical error when detecting lifetime intrinsics.
2011-08-02 Nick LewyckyTeach InstCombine that lifetime intrincs aren't a real...
2011-08-02 Nick LewyckyLifetime intrinsics on undef are dead.
2011-07-31 Rafael EspindolaAdd a small gep optimization I noticed was missing...
2011-07-29 Eli FriedmanMake sure to correctly clear the exact/nuw/nsw flags...
2011-07-13 Evan ChengChange test case, one that actually failed before my...
2011-07-13 Evan ChengIt's not safe to fold (fptrunc (sqrt (fpext x))) to...
2011-07-11 Rafael EspindolaDon't duplicate the work done by a gep into a "bitcast...
2011-07-09 Chris LattnerLand the long talked about "type system rewrite" patch...
2011-07-04 Benjamin KramerPR10267: Don't combine an equality compare with an...
2011-06-23 Eli FriedmanPR10180: Fix a instcombine crash with FP vectors.
2011-06-18 Chris Lattnerrip out a ton of intrinsic modernization logic from...
2011-06-17 Chris LattnerStop accepting and ignoring attributes in function...
2011-06-17 Chris Lattnermake the asmparser reject function and type redefinitio...
2011-06-17 Chris Lattnerremove parser support for the obsolete "multiple return...
2011-06-17 Chris LattnerRemove support for using "foo" as symbols instead of...
2011-06-17 Chris Lattnermanually upgrade a bunch of tests to modern syntax...
2011-06-13 Stuart HastingsAvoid fusing bitcasts with dynamic allocas if the amoun...
2011-06-13 Benjamin KramerInstCombine: Fold A-b == C --> b == A-C if A and C...
2011-06-12 Benjamin KramerInstCombine: Shrink ((zext X) & C1) == C2 to fold away...
2011-06-12 Benjamin KramerSimplify code. No functionality changes, name changes...
2011-06-01 Stuart HastingsReapply 132348 with fixes. rdar://problem/6501862
2011-05-31 Stuart HastingsRevert to pacify a buildbot. rdar://problem/6501862
2011-05-31 Stuart HastingsFollowup to 132316; accept arbitrary constants, add...
2011-05-30 Stuart Hastings(1 - X) * (-2) -> (x - 1) * 2, for all positive nonzero...
2011-05-28 Benjamin KramerConstantFoldInstOperands doesn't like compares, hand...
2011-05-27 Benjamin KramerInstCombine: Make switch folding with equality compares...
2011-05-26 Chad RosierRenamed llvm.x86.sse42.crc32 intrinsics; crc64 doesn...
2011-05-25 Eli FriedmanPR9998: ashr exact %x, 31 is not equivalent to sdiv...
2011-05-23 Chris LattnerTransform any logical shift of a power of two into...
2011-05-22 Chris LattnerCarve out a place in instcombine to put transformations...
2011-05-21 Benjamin KramerRevert "InstCombine: Turn mul.with.overflow(X, 2) into...
2011-05-21 Benjamin KramerInstCombine: Turn mul.with.overflow(X, 2) into the...
2011-05-20 Evan ChengRevert r131664 and fix it in instcombine instead. rdar...
2011-05-19 Stuart HastingsMove test to Transforms/InstCombine.
2011-05-18 Eli FriedmanMore instcombine cleanup, towards improving debug line...
2011-05-18 Eli FriedmanMore instcombine cleanup aimed towards improving debug...
2011-05-18 Eli FriedmanStart trying to make InstCombine preserve more debug...
2011-05-17 Stuart HastingsDrop lli, revise test.
2011-05-14 Benjamin KramerDisable test harder.
2011-05-14 Stuart HastingsDisable this test while I revise it. rdar://problem...
2011-05-14 Stuart HastingsAvoid combining GEPs that might overflow at runtime.
2011-05-05 Eli FriedmanPR9838: Fix transform introduced in r127064 to not...
2011-05-02 Duncan SandsFix PR9579: when simplifying a compare to "true" or...
2011-04-30 Benjamin KramerInstCombine: Turn (zext A) udiv (zext B) into (zext...
2011-04-30 Benjamin KramerUse SimplifyDemandedBits on div instructions.
2011-04-30 Benjamin KramerFileCheckize.
2011-04-29 Benjamin KramerInstCombine: turn (C1 << A) << C2) into (C1 << C2)...
2011-04-28 Benjamin KramerInstCombine: Merge "(trunc x) == C1 & (and x, CA) ...
2011-04-26 Chris LattnerTransform: "icmp eq (trunc (lshr(X, cst1)), cst" to...
2011-04-16 Frits van BommelAdd test cases for Jay's r129641 and fix a 32-bit-centr...
2011-04-15 Chris LattnerFix a ton of comment typos found by codespell. Patch by
2011-04-14 Eli FriedmanAdd an instcombine for constructs like a | -(b != c...
2011-04-06 Nadav RotemThis testcase passed even without the fix. Added the...
2011-04-05 Nadav RotemInstCombine optimizes gep(bitcast(x)) even when the...
2011-04-01 Benjamin KramerInstCombine: Turn icmp + sext into bitwise/integer...
next