[OCaml] Add -g on DEBUG_SYMBOLS=1, not ENABLE_OPTIMIZED.
[oota-llvm.git] / test / Transforms / InstCombine /
2014-11-03 David MajnemerInstCombine: Combine (X | Y) - X to (~X & Y)
2014-11-01 David MajnemerInstCombine: Don't assume that m_ZExt matches an Instru...
2014-11-01 David MajnemerInstCombine: Combine (X+cst) < 0 --> X < -cst
2014-10-30 Philip ReamesAdd handling for range metadata in ValueTracking isKnow...
2014-10-27 David MajnemerInstCombine: Fix a combine assuming that icmp operands...
2014-10-23 Sanjay PatelHandle sqrt() shrinking in SimplifyLibCalls like any...
2014-10-22 Sanjay PatelShrinkify libcalls: use float versions of double libm...
2014-10-21 Hans WennborgRevert "Teach the load analysis to allow finding availa...
2014-10-21 Matt ArsenaultAdd minnum / maxnum intrinsics
2014-10-21 David MajnemerInstCombine: Simplify FoldICmpCstShrCst
2014-10-21 Chandler CarruthTeach the load analysis to allow finding available...
2014-10-20 Chandler CarruthFix a miscompile introduced in r220178.
2014-10-20 Chandler CarruthTeach the load analysis driving core instcombine logic...
2014-10-20 Chandler CarruthAdd a datalayout string to this test so that it exercis...
2014-10-19 Chandler CarruthDo a better and more complete job of preserving metadat...
2014-10-19 Chandler CarruthMove previously dead code to handle computing the known...
2014-10-19 David MajnemerInstCombine: (sub (or A B) (xor A B)) --> (and A B)
2014-10-19 David MajnemerInstCombine: Optimize icmp eq/ne (shl Const2, A), Const1
2014-10-19 Chandler CarruthFix a long-standing miscompile in the load analysis...
2014-10-18 Chandler CarruthPreserve AA metadata when combining (cast (load (....
2014-10-18 Chandler Carruth[InstCombine] Do an about-face on how LLVM canonicalize...
2014-10-18 Chandler CarruthRemove a test that was ported from the old llvm-gcc...
2014-10-16 Rafael EspindolaDelete -std-compile-opts.
2014-10-16 Sanjay Patelfold: sqrt(x * x * y) -> fabs(x) * sqrt(y)
2014-10-16 Akira HatanakaReapply r219832 - InstCombine: Narrow switch instructio...
2014-10-16 Akira HatanakaRevert r219832.
2014-10-15 Akira HatanakaInstCombine: Narrow switch instructions using known...
2014-10-14 Sanjay PatelOptimize away fabs() calls when input is squared (known...
2014-10-14 David MajnemerInstCombine: Don't miscompile X % ((Pow2 << A) >>u B)
2014-10-13 David MajnemerInstCombine: Fix miscompile in X % -Y -> X % Y transform
2014-10-13 David MajnemerInstCombine: Don't miscompile (x lshr C1) udiv C2
2014-10-12 Benjamin KramerInstCombine: Turn (x != 0 & x <u C) into the canonical...
2014-10-11 David MajnemerInstCombine: Don't fold (X <<s log(INT_MIN)) /s INT_MIN...
2014-10-11 David MajnemerInstCombine, InstSimplify: (%X /s C1) /s C2 isn't alway...
2014-10-11 David MajnemerInstCombine: mul to shl shouldn't preserve nsw
2014-10-10 Sanjay PatelReturn undef on FP <-> Int conversions that overflow...
2014-10-09 Andrea Di Biagio[InstCombine] Fix wrong folding of constant comparisons...
2014-10-08 Justin BognerRevert "[InstCombine] re-commit r218721 with fix for...
2014-10-08 Gerolf Hoflehner[InstCombine] re-commit r218721 with fix for pr21199
2014-10-08 Hans WennborgRevert r219175 - [InstCombine] re-commit r218721 icmp...
2014-10-07 Suyog SardaRemove Extra lines. NFC.
2014-10-07 Gerolf Hoflehner[InstCombine] re-commit r218721 icmp-select-icmp optimi...
2014-10-04 Hal Finkel[InstCombine] Remove redundant @llvm.assume intrinsics
2014-10-03 Richard SmithPR21145: Teach LLVM about C++14 sized deallocation...
2014-10-03 Duncan P. N. Exon... Revert "Revert "DI: Fold constant arguments into a...
2014-10-02 Duncan P. N. Exon... Revert "DI: Fold constant arguments into a single MDString"
2014-10-02 Duncan P. N. Exon... DI: Fold constant arguments into a single MDString
2014-10-02 Sanjay PatelRemove unused function attribute params.
2014-10-02 Sanjay PatelOptimize square root squared (PR21126).
2014-10-01 Sanjay PatelMake the sqrt intrinsic return undef for a negative...
2014-10-01 Adrian PrantlMove the complex address expression out of DIVariable...
2014-10-01 Adrian PrantlRevert r218778 while investigating buldbot breakage.
2014-10-01 Adrian PrantlMove the complex address expression out of DIVariable...
2014-10-01 Evgeniy StepanovRevert r218721, r218735.
2014-10-01 Gerolf Hoflehner[InstCombine] Optimize icmp-select-icmp
2014-09-17 Andrea Di Biagio[InstCombine] Fix wrong folding of constant comparison...
2014-09-16 Tilmann Scheller[InstCombine] Remove redundant test case.
2014-09-07 Hal FinkelCheck for all known bits on ret in InstCombine
2014-09-07 Hal FinkelAdd additional patterns for @llvm.assume in ValueTracking
2014-09-07 Hal FinkelMake use of @llvm.assume in ValueTracking (computeKnown...
2014-09-05 David MajnemerInstCombine: Remove a special case pattern
2014-09-01 David MajnemerRevert "Revert two GEP-related InstCombine commits"
2014-08-30 David MajnemerInstCombine: Try harder to combine icmp instructions
2014-08-29 David MajnemerRevert two GEP-related InstCombine commits
2014-08-28 David MajnemerInstSimplify: Move a transform from InstCombine to...
2014-08-27 David MajnemerInstCombine: Combine gep X, (Y-X) to Y
2014-08-27 David MajnemerInstCombine: Optimize GEP's involving ptrtoint better
2014-08-24 David MajnemerInstCombine: Properly optimize or'ing bittests together
2014-08-22 David MajnemerInstCombine: Don't unconditionally preserve 'nuw' when...
2014-08-22 David MajnemerInstCombine: sub nsw %x, C -> add nsw %x, -C if C isn...
2014-08-22 David MajnemerInstCombine: Don't unconditionally preserve 'nsw' when...
2014-08-21 David MajnemerInstCombine: Fold ((A | B) & C1) ^ (B & C2) -> (A ...
2014-08-20 Yi JiangNew InstCombine pattern: (icmp ult/ule (A + C1), C3...
2014-08-20 David MajnemerInstCombine: Annotate sub with nuw when we prove it...
2014-08-19 David MajnemerInstCombine: Annotate sub with nsw when we prove it...
2014-08-19 Mayur PandeyInstCombine: ((A & ~B) ^ (~A & B)) to A ^ B
2014-08-17 Owen AndersonRemove an InstCombine that transformed patterns like...
2014-08-16 David MajnemerInstCombine: Combine mul with div.
2014-08-14 David MajnemerInstCombine: ((A | ~B) ^ (~A | B)) to A ^ B
2014-08-14 David MajnemerAdded InstCombine Transform for ((B | C) & A) | B ...
2014-08-13 Karthik BhatInstCombine: Combine (xor (or %a, %b) (xor %a, %b)...
2014-08-12 Matt ArsenaultAllwo bitcast + struct GEP transform to work with addrs...
2014-08-11 David MajnemerInstCombine: Combine (add (and %a, %b) (or %a, %b)...
2014-08-01 Suyog SardaThis patch implements transform for pattern "(A & ...
2014-08-01 Suyog SardaThis patch implements transform for pattern "(A | B...
2014-08-01 Suyog SardaThis patch implements transform for pattern "( A &...
2014-08-01 Suyog SardaThis patch implements transform for pattern "(A & B...
2014-07-31 David MajnemerInstCombine: Correctly propagate NSW/NUW for x-(-A...
2014-07-30 Rafael EspindolaUse "weak alias" instead of "alias weak"
2014-07-30 David MajnemerInstCombine: Simplify (A ^ B) or/and (A ^ B ^ C)
2014-07-25 Hal FinkelCanonicalization for @llvm.assume
2014-07-22 Suyog SardaThis patch implements optimization as mentioned in...
2014-07-22 Suyog SardaAdded InstCombine transform for pattern "(A & B) ^...
2014-07-22 Suyog SardaAdded InstCombine Transform for patterns:
2014-07-22 Hal FinkelMake use of the align parameter attribute for all point...
2014-07-22 Suyog SardaThis patch implements transform for pattern "(A | B...
2014-07-17 Suyog SardaMove ashr optimization from InstCombineShift to InstSim...
2014-07-15 Matt ArsenaultTeach computeKnownBits to look through addrspacecast.
2014-07-15 Matt ArsenaultConvert test to FileCheck.
2014-07-14 Matt ArsenaultConvert test to FileCheck
next