aboutsummaryrefslogtreecommitdiff
path: root/gcc/match.pd
AgeCommit message (Expand)AuthorFilesLines
2020-10-09match.pd: Fix up FFS -> CTZ + 1 optimization [PR97325]Jakub Jelinek1-1/+2
2020-09-30[nvptx] Add type arg to TARGET_LIBC_HAS_FUNCTIONTom de Vries1-3/+3
2020-09-24tree-optimization/97085 - fold some trivial bool vector ?:Richard Biener1-0/+11
2020-09-15tree-optimization/94234 - add plusminus-with-convert patternFeng Xue1-0/+15
2020-09-15tree-optimization/94234 - Fold plusminus_mult expr with multi-use operandsFeng Xue1-9/+13
2020-08-25match.pd: Simplify copysign (x, -x) to -x [PR96715]Jakub Jelinek1-0/+5
2020-08-19tree-optimization/94234 - add pattern for ptr-diff on addresses with same offsetFeng Xue1-0/+3
2020-08-10Simplify X * C1 == C2 with wrapping overflowMarc Glisse1-2/+17
2020-08-07Disable some VEC_COND_EXPR transformations after vector loweringMarc Glisse1-9/+11
2020-08-05VEC_COND_EXPR optimizationsMarc Glisse1-12/+58
2020-08-04Simplify X * C1 == C2 with undefined overflowMarc Glisse1-0/+14
2020-07-28middle-end: Parity and popcount folding optimizations.Roger Sayle1-13/+39
2020-07-01match.pd: (x & y) - (x | y) - 1 -> ~(x ^ y) simplification [PR94882]Jeff Law1-0/+29
2020-06-19Fix PR94880: Failure to recognize andn patternPrzemyslaw Wirkus1-0/+5
2020-06-09match.pd: Optimize ffs comparisons against constants [PR95527]Jakub Jelinek1-0/+48
2020-06-03optimize tanh(x) / sinh (x) to 1/ cosh (x)Vitor Guidi1-0/+5
2020-05-12tree: Add vector_element_bits(_tree) [PR94980 1/3]Richard Sandiford1-1/+1
2020-05-08match.pd: A ^ ((A ^ B) & -(C cmp D)) -> (C cmp D) ? B : A simplification [PR9...Jakub Jelinek1-0/+12
2020-05-08match.pd: Canonicalize (X + (X >> (prec - 1))) ^ (X >> (prec - 1)) to abs (X)...Jakub Jelinek1-0/+9
2020-05-08match.pd: Optimize ffs of known non-zero arg into ctz + 1 [PR94956]Jakub Jelinek1-0/+10
2020-05-08match.pd: Simplify unsigned A - B - 1 >= A to B >= A [PR94913]Jakub Jelinek1-2/+9
2020-05-06match.pd: Optimize ~(~X +- Y) into (X -+ Y) [PR94921]Jakub Jelinek1-0/+8
2020-05-05match.pd: Canonicalize (x + (x << cst)) into (x * cst2) [PR94800]Jakub Jelinek1-0/+35
2020-05-05match.pd: Optimize (((type)A * B) >> prec) != 0 into __imag__ .MUL_OVERFLOW [...Jakub Jelinek1-0/+21
2020-05-04match.pd: Optimize (x < 0) != (y < 0) into (x ^ y) < 0 [PR94718]Jakub Jelinek1-0/+24
2020-05-04match.pd: Decrease number of nop conversions around bitwise ops [PR94718]Jakub Jelinek1-3/+19
2020-05-04match.pd: Move (X & C) eqne (Y & C) -> -> (X ^ Y) & C eqne 0 opt to match.pd ...Jakub Jelinek1-1/+6
2020-03-11fold undefined pointer offsettingRichard Biener1-0/+9
2020-02-15match.pd: Disallow side-effects in GENERIC for non-COND_EXPR to COND_EXPR sim...Jakub Jelinek1-3/+6
2020-02-04tree-optimization/93538 - add missing comparison folding caseRichard Biener1-11/+22
2020-01-10PR90838: Support ctz idiomsWilco Dijkstra1-0/+8
2020-01-07re PR tree-optimization/93118 (>>32<<32 is not always converted into &~0fffff...Jakub Jelinek1-2/+19
2020-01-01Update copyright years.Jakub Jelinek1-1/+1
2020-01-01re PR tree-optimization/93098 (ICE with negative shifter)Jakub Jelinek1-36/+43
2019-12-09re PR tree-optimization/92834 (misssed SLP vectorization in LightPixel)Jakub Jelinek1-0/+25
2019-12-06match.pd (nop_convert): Remove empty match.Richard Biener1-18/+15
2019-12-06re PR tree-optimization/92819 (Worse code generated on avx2 due to simplify_v...Richard Biener1-3/+10
2019-12-05re PR tree-optimization/92818 (Typo in vec_perm -> bit_insert pattern)Richard Biener1-1/+1
2019-12-04re PR tree-optimization/92734 (Missing match.pd simplification done by fold_b...Jakub Jelinek1-10/+16
2019-12-03re PR tree-optimization/92734 (Missing match.pd simplification done by fold_b...Jakub Jelinek1-10/+32
2019-12-02re PR tree-optimization/92712 (Performance regression with assumed values)Jakub Jelinek1-4/+28
2019-11-05re PR target/92280 (gcc.target/i386/pr83008.c FAILs)Richard Biener1-9/+13
2019-10-08re PR tree-optimization/90836 (Missing popcount pattern matching)Dmitrij Pochepko1-0/+58
2019-10-05re PR tree-optimization/91734 (gcc skip an if statement with "-O1 -ffast-math")Jakub Jelinek1-47/+98
2019-10-04match.pd (sinh (x) / cosh (x)): New simplification rule.Rafael Tsuha1-0/+5
2019-09-24re PR middle-end/91866 (Sign extend of an int is not recognized)Jakub Jelinek1-2/+17
2019-09-16Rewrite second part of or_comparisons_1 into match.pd.Martin Liska1-0/+38
2019-09-16Rewrite first part of or_comparisons_1 into match.pd.Martin Liska1-0/+28
2019-09-16Rewrite part of and_comparisons_1 into match.pd.Martin Liska1-0/+66
2019-09-16Fix PR88784, middle end is missing some optimizations about unsignedLi Jia He1-4/+78