aboutsummaryrefslogtreecommitdiff
path: root/gcc/match.pd
AgeCommit message (Expand)AuthorFilesLines
2021-04-27match.pd: Add some __builtin_ctz (x) cmp cst simplifications [PR95527]Jakub Jelinek1-12/+79
2021-04-27tree-optimization/99776 - relax condition on vector ctor element extractRichard Biener1-5/+13
2021-04-26Move gimplify_buildN API local to only remaining userRichard Biener1-10/+19
2021-04-08match.pd: Fix sve/vcond_3.cRichard Sandiford1-1/+1
2021-03-13match.pd: Don't optimize vector X + (X << C) -> X * (1 + (1 << C)) if there i...Jakub Jelinek1-2/+8
2021-02-25match.pd: Use :s for (T)(A) + CST -> (T)(A + CST) [PR95798]Jakub Jelinek1-1/+1
2021-02-18match.pd: Restrict clz cmp 0 replacement by single_use, PR99142Hans-Peter Nilsson1-2/+2
2021-02-15match.pd: Fix up A % (cast) (pow2cst << B) simplification [PR99079]Jakub Jelinek1-6/+17
2021-01-22match.pd: Replace incorrect simplifications into copysign [PR90248]Jakub Jelinek1-30/+16
2021-01-20Optimize combination of comparisons to dec+compareEugene Rozenfeld1-0/+14
2021-01-16match.pd: Optimize ((cst << x) & 1) [PR96669]Jakub Jelinek1-0/+7
2021-01-15match.pd: Generalize the PR64309 simplifications [PR96669]Jakub Jelinek1-4/+17
2021-01-15match.pd: Optimize (x < 0) ^ (y < 0) to (x ^ y) < 0 etc. [PR96681]Jakub Jelinek1-0/+18
2021-01-14match.pd: Optimize ~(X >> Y) to ~X >> Y if ~X can be simplified [PR96688]Jakub Jelinek1-0/+12
2021-01-13match.pd: Fold (~X | C) ^ D into (X | C) ^ (~D ^ C) if (~D ^ C) can be simpli...Jakub Jelinek1-1/+11
2021-01-13tree-optimization/92645 - avoid harmful early BIT_FIELD_REF canonicalizationRichard Biener1-0/+2
2021-01-05match.pd: Improve (A / (1 << B)) -> (A >> B) optimization [PR96930]Jakub Jelinek1-2/+6
2021-01-04match.pd: Fold x == ~x to false [PR96782]Jakub Jelinek1-0/+7
2021-01-04Update copyright years.Jakub Jelinek1-1/+1
2020-12-31match.pd: Add clz(X) == 0 -> (int)X < 0 etc. simpifications [PR94802]Jakub Jelinek1-0/+33
2020-12-31match.pd: Add (-(X < 0) | 1) * X -> abs (X) etc. simplifications [PR94785]Jakub Jelinek1-0/+16
2020-12-15match.pd: Optimize X / bool_range_Y to X [PR96094]Jakub Jelinek1-4/+9
2020-12-12match.pd: Add ~(X - Y) -> ~X + Y simplification [PR96685]Jakub Jelinek1-0/+28
2020-12-06match.pd: Improve conditional_replacement for x ? 0 : -1 [PR796232]Jakub Jelinek1-0/+10
2020-12-01Optimize max/min pattern with comparisonEugene Rozenfeld1-0/+10
2020-11-30Optimize or+and+or pattern to and+orEugene Rozenfeld1-0/+5
2020-11-27tree-ssanames: Allow non-SSA_NAME arguments to get_range_infoJakub Jelinek1-36/+24
2020-11-26match.pd: Use ranges to optimize some x * y / y to x [PR97997]Jakub Jelinek1-3/+42
2020-11-26match.pd: Avoid ICE with shifts [PR97979]Jakub Jelinek1-1/+2
2020-11-24middle-end, c++: Treat shifts by negative as undefined [PR96929]Jakub Jelinek1-2/+1
2020-11-18Fix middle-end/85811: Introduce tree_expr_maybe_non_p et al.Roger Sayle1-1/+19
2020-11-18Optimize two patterns with three xorsEugene Rozenfeld1-0/+10
2020-11-05Improve overflow checkJeff Law1-6/+10
2020-11-05Simplify x >> x to 0. This fixes PR96701.Eugene Rozenfeld1-0/+5
2020-10-19[PATCH] fold x << (n % C) to x << (n & C-1) if C meets power2guojiufu1-1/+11
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