1 /* Match-and-simplify patterns for shared GENERIC and GIMPLE folding.
2 This file is consumed by genmatch which produces gimple-match.c
3 and generic-match.c from it.
5 Copyright (C) 2014 Free Software Foundation, Inc.
6 Contributed by Richard Biener <rguenther@suse.de>
7 and Prathamesh Kulkarni <bilbotheelffriend@gmail.com>
9 This file is part of GCC.
11 GCC is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free
13 Software Foundation; either version 3, or (at your option) any later
16 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
17 WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3. If not see
23 <http://www.gnu.org/licenses/>. */
26 /* Generic tree predicates we inherit. */
28 integer_onep integer_zerop integer_all_onesp integer_minus_onep
29 integer_each_onep integer_truep
30 real_zerop real_onep real_minus_onep
32 tree_expr_nonnegative_p)
35 (define_operator_list tcc_comparison
36 lt le eq ne ge gt unordered ordered unlt unle ungt unge uneq ltgt)
37 (define_operator_list inverted_tcc_comparison
38 ge gt ne eq lt le ordered unordered ge gt le lt ltgt uneq)
39 (define_operator_list inverted_tcc_comparison_with_nans
40 unge ungt ne eq unlt unle ordered unordered ge gt le lt ltgt uneq)
43 /* Simplifications of operations with one constant operand and
44 simplifications to constants or single values. */
46 (for op (plus pointer_plus minus bit_ior bit_xor)
51 /* 0 +p index -> (type)index */
53 (pointer_plus integer_zerop @1)
54 (non_lvalue (convert @1)))
56 /* See if ARG1 is zero and X + ARG1 reduces to X.
57 Likewise if the operands are reversed. */
59 (plus:c @0 real_zerop@1)
60 (if (fold_real_zero_addition_p (type, @1, 0))
63 /* See if ARG1 is zero and X - ARG1 reduces to X. */
65 (minus @0 real_zerop@1)
66 (if (fold_real_zero_addition_p (type, @1, 1))
70 This is unsafe for certain floats even in non-IEEE formats.
71 In IEEE, it is unsafe because it does wrong for NaNs.
72 Also note that operand_equal_p is always false if an operand
76 (if (!FLOAT_TYPE_P (type) || !HONOR_NANS (element_mode (type)))
77 { build_zero_cst (type); }))
80 (mult @0 integer_zerop@1)
83 /* Maybe fold x * 0 to 0. The expressions aren't the same
84 when x is NaN, since x * 0 is also NaN. Nor are they the
85 same in modes with signed zeros, since multiplying a
86 negative value by 0 gives -0, not +0. */
88 (mult @0 real_zerop@1)
89 (if (!HONOR_NANS (element_mode (type))
90 && !HONOR_SIGNED_ZEROS (element_mode (type)))
93 /* In IEEE floating point, x*1 is not equivalent to x for snans.
94 Likewise for complex arithmetic with signed zeros. */
97 (if (!HONOR_SNANS (element_mode (type))
98 && (!HONOR_SIGNED_ZEROS (element_mode (type))
99 || !COMPLEX_FLOAT_TYPE_P (type)))
102 /* Transform x * -1.0 into -x. */
104 (mult @0 real_minus_onep)
105 (if (!HONOR_SNANS (element_mode (type))
106 && (!HONOR_SIGNED_ZEROS (element_mode (type))
107 || !COMPLEX_FLOAT_TYPE_P (type)))
110 /* Make sure to preserve divisions by zero. This is the reason why
111 we don't simplify x / x to 1 or 0 / x to 0. */
112 (for op (mult trunc_div ceil_div floor_div round_div exact_div)
118 (for div (trunc_div ceil_div floor_div round_div exact_div)
120 (div @0 integer_minus_onep@1)
121 (if (!TYPE_UNSIGNED (type))
124 /* For unsigned integral types, FLOOR_DIV_EXPR is the same as
125 TRUNC_DIV_EXPR. Rewrite into the latter in this case. */
128 (if ((INTEGRAL_TYPE_P (type) || VECTOR_INTEGER_TYPE_P (type))
129 && TYPE_UNSIGNED (type))
132 /* Optimize A / A to 1.0 if we don't care about
133 NaNs or Infinities. */
136 (if (FLOAT_TYPE_P (type)
137 && ! HONOR_NANS (element_mode (type))
138 && ! HONOR_INFINITIES (element_mode (type)))
139 { build_one_cst (type); }))
141 /* Optimize -A / A to -1.0 if we don't care about
142 NaNs or Infinities. */
144 (rdiv:c @0 (negate @0))
145 (if (FLOAT_TYPE_P (type)
146 && ! HONOR_NANS (element_mode (type))
147 && ! HONOR_INFINITIES (element_mode (type)))
148 { build_minus_one_cst (type); }))
150 /* In IEEE floating point, x/1 is not equivalent to x for snans. */
153 (if (!HONOR_SNANS (element_mode (type)))
156 /* In IEEE floating point, x/-1 is not equivalent to -x for snans. */
158 (rdiv @0 real_minus_onep)
159 (if (!HONOR_SNANS (element_mode (type)))
162 /* If ARG1 is a constant, we can convert this to a multiply by the
163 reciprocal. This does not have the same rounding properties,
164 so only do this if -freciprocal-math. We can actually
165 always safely do it if ARG1 is a power of two, but it's hard to
166 tell if it is or not in a portable manner. */
167 (for cst (REAL_CST COMPLEX_CST VECTOR_CST)
171 (if (flag_reciprocal_math
174 { tree tem = fold_binary (RDIV_EXPR, type, build_one_cst (type), @1); }
176 (mult @0 { tem; } ))))
177 (if (cst != COMPLEX_CST)
178 (with { tree inverse = exact_inverse (type, @1); }
180 (mult @0 { inverse; } )))))))
182 /* Same applies to modulo operations, but fold is inconsistent here
183 and simplifies 0 % x to 0, only preserving literal 0 % 0. */
184 (for mod (ceil_mod floor_mod round_mod trunc_mod)
185 /* 0 % X is always zero. */
187 (mod integer_zerop@0 @1)
188 /* But not for 0 % 0 so that we can get the proper warnings and errors. */
189 (if (!integer_zerop (@1))
191 /* X % 1 is always zero. */
193 (mod @0 integer_onep)
194 { build_zero_cst (type); })
195 /* X % -1 is zero. */
197 (mod @0 integer_minus_onep@1)
198 (if (!TYPE_UNSIGNED (type))
199 { build_zero_cst (type); })))
201 /* X % -C is the same as X % C. */
203 (trunc_mod @0 INTEGER_CST@1)
204 (if (TYPE_SIGN (type) == SIGNED
205 && !TREE_OVERFLOW (@1)
207 && !TYPE_OVERFLOW_TRAPS (type)
208 /* Avoid this transformation if C is INT_MIN, i.e. C == -C. */
209 && !sign_bit_p (@1, @1))
210 (trunc_mod @0 (negate @1))))
214 (bit_ior @0 integer_all_onesp@1)
219 (bit_and @0 integer_zerop@1)
225 { build_zero_cst (type); })
227 /* Canonicalize X ^ ~0 to ~X. */
229 (bit_xor @0 integer_all_onesp@1)
234 (bit_and @0 integer_all_onesp)
237 /* x & x -> x, x | x -> x */
238 (for bitop (bit_and bit_ior)
247 (abs tree_expr_nonnegative_p@0)
251 /* Try to fold (type) X op CST -> (type) (X op ((type-x) CST))
253 For bitwise binary operations apply operand conversions to the
254 binary operation result instead of to the operands. This allows
255 to combine successive conversions and bitwise binary operations.
256 We combine the above two cases by using a conditional convert. */
257 (for bitop (bit_and bit_ior bit_xor)
259 (bitop (convert @0) (convert? @1))
260 (if (((TREE_CODE (@1) == INTEGER_CST
261 && INTEGRAL_TYPE_P (TREE_TYPE (@0))
262 && int_fits_type_p (@1, TREE_TYPE (@0)))
263 || (GIMPLE && types_compatible_p (TREE_TYPE (@0), TREE_TYPE (@1)))
264 || (GENERIC && TREE_TYPE (@0) == TREE_TYPE (@1)))
265 /* ??? This transform conflicts with fold-const.c doing
266 Convert (T)(x & c) into (T)x & (T)c, if c is an integer
267 constants (if x has signed type, the sign bit cannot be set
268 in c). This folds extension into the BIT_AND_EXPR.
269 Restrict it to GIMPLE to avoid endless recursions. */
270 && (bitop != BIT_AND_EXPR || GIMPLE)
271 && (/* That's a good idea if the conversion widens the operand, thus
272 after hoisting the conversion the operation will be narrower. */
273 TYPE_PRECISION (TREE_TYPE (@0)) < TYPE_PRECISION (type)
274 /* It's also a good idea if the conversion is to a non-integer
276 || GET_MODE_CLASS (TYPE_MODE (type)) != MODE_INT
277 /* Or if the precision of TO is not the same as the precision
279 || TYPE_PRECISION (type) != GET_MODE_PRECISION (TYPE_MODE (type))))
280 (convert (bitop @0 (convert @1))))))
282 /* Simplify (A & B) OP0 (C & B) to (A OP0 C) & B. */
283 (for bitop (bit_and bit_ior bit_xor)
285 (bitop (bit_and:c @0 @1) (bit_and @2 @1))
286 (bit_and (bitop @0 @2) @1)))
288 /* (x | CST1) & CST2 -> (x & CST2) | (CST1 & CST2) */
290 (bit_and (bit_ior @0 CONSTANT_CLASS_P@1) CONSTANT_CLASS_P@2)
291 (bit_ior (bit_and @0 @2) (bit_and @1 @2)))
293 /* Combine successive equal operations with constants. */
294 (for bitop (bit_and bit_ior bit_xor)
296 (bitop (bitop @0 CONSTANT_CLASS_P@1) CONSTANT_CLASS_P@2)
297 (bitop @0 (bitop @1 @2))))
299 /* Try simple folding for X op !X, and X op X with the help
300 of the truth_valued_p and logical_inverted_value predicates. */
301 (match truth_valued_p
303 (if (INTEGRAL_TYPE_P (type) && TYPE_PRECISION (type) == 1)))
304 (for op (tcc_comparison truth_and truth_andif truth_or truth_orif truth_xor)
305 (match truth_valued_p
307 (match truth_valued_p
310 (match (logical_inverted_value @0)
311 (bit_not truth_valued_p@0))
312 (match (logical_inverted_value @0)
313 (eq @0 integer_zerop))
314 (match (logical_inverted_value @0)
315 (ne truth_valued_p@0 integer_truep))
316 (match (logical_inverted_value @0)
317 (bit_xor truth_valued_p@0 integer_truep))
321 (bit_and:c @0 (logical_inverted_value @0))
322 { build_zero_cst (type); })
323 /* X | !X and X ^ !X -> 1, , if X is truth-valued. */
324 (for op (bit_ior bit_xor)
326 (op:c truth_valued_p@0 (logical_inverted_value @0))
327 { constant_boolean_node (true, type); }))
329 (for bitop (bit_and bit_ior)
330 rbitop (bit_ior bit_and)
331 /* (x | y) & x -> x */
332 /* (x & y) | x -> x */
334 (bitop:c (rbitop:c @0 @1) @0)
336 /* (~x | y) & x -> x & y */
337 /* (~x & y) | x -> x | y */
339 (bitop:c (rbitop:c (bit_not @0) @1) @0)
342 /* If arg1 and arg2 are booleans (or any single bit type)
343 then try to simplify:
350 But only do this if our result feeds into a comparison as
351 this transformation is not always a win, particularly on
352 targets with and-not instructions.
353 -> simplify_bitwise_binary_boolean */
355 (ne (bit_and:c (bit_not @0) @1) integer_zerop)
356 (if (INTEGRAL_TYPE_P (TREE_TYPE (@1))
357 && TYPE_PRECISION (TREE_TYPE (@1)) == 1)
360 (ne (bit_ior:c (bit_not @0) @1) integer_zerop)
361 (if (INTEGRAL_TYPE_P (TREE_TYPE (@1))
362 && TYPE_PRECISION (TREE_TYPE (@1)) == 1)
367 (bit_not (bit_not @0))
371 /* Associate (p +p off1) +p off2 as (p +p (off1 + off2)). */
373 (pointer_plus (pointer_plus @0 @1) @3)
374 (pointer_plus @0 (plus @1 @3)))
380 tem4 = (unsigned long) tem3;
385 (pointer_plus @0 (convert?@2 (minus@3 (convert @1) (convert @0))))
386 /* Conditionally look through a sign-changing conversion. */
387 (if (TYPE_PRECISION (TREE_TYPE (@2)) == TYPE_PRECISION (TREE_TYPE (@3))
388 && ((GIMPLE && useless_type_conversion_p (type, TREE_TYPE (@1)))
389 || (GENERIC && type == TREE_TYPE (@1))))
393 tem = (sizetype) ptr;
397 and produce the simpler and easier to analyze with respect to alignment
398 ... = ptr & ~algn; */
400 (pointer_plus @0 (negate (bit_and (convert @0) INTEGER_CST@1)))
401 (with { tree algn = wide_int_to_tree (TREE_TYPE (@0), wi::bit_not (@1)); }
402 (bit_and @0 { algn; })))
405 /* We can't reassociate at all for saturating types. */
406 (if (!TYPE_SATURATING (type))
408 /* Contract negates. */
409 /* A + (-B) -> A - B */
411 (plus:c (convert1? @0) (convert2? (negate @1)))
412 /* Apply STRIP_NOPS on @0 and the negate. */
413 (if (tree_nop_conversion_p (type, TREE_TYPE (@0))
414 && tree_nop_conversion_p (type, TREE_TYPE (@1))
415 && !TYPE_OVERFLOW_SANITIZED (type))
416 (minus (convert @0) (convert @1))))
417 /* A - (-B) -> A + B */
419 (minus (convert1? @0) (convert2? (negate @1)))
420 (if (tree_nop_conversion_p (type, TREE_TYPE (@0))
421 && tree_nop_conversion_p (type, TREE_TYPE (@1))
422 && !TYPE_OVERFLOW_SANITIZED (type))
423 (plus (convert @0) (convert @1))))
426 (negate (convert? (negate @1)))
427 (if (tree_nop_conversion_p (type, TREE_TYPE (@1))
428 && !TYPE_OVERFLOW_SANITIZED (type))
431 /* We can't reassociate floating-point or fixed-point plus or minus
432 because of saturation to +-Inf. */
433 (if (!FLOAT_TYPE_P (type) && !FIXED_POINT_TYPE_P (type))
435 /* Match patterns that allow contracting a plus-minus pair
436 irrespective of overflow issues. */
437 /* (A +- B) - A -> +- B */
438 /* (A +- B) -+ B -> A */
439 /* A - (A +- B) -> -+ B */
440 /* A +- (B -+ A) -> +- B */
442 (minus (plus:c @0 @1) @0)
445 (minus (minus @0 @1) @0)
448 (plus:c (minus @0 @1) @1)
451 (minus @0 (plus:c @0 @1))
454 (minus @0 (minus @0 @1))
457 /* (A +- CST) +- CST -> A + CST */
458 (for outer_op (plus minus)
459 (for inner_op (plus minus)
461 (outer_op (inner_op @0 CONSTANT_CLASS_P@1) CONSTANT_CLASS_P@2)
462 /* If the constant operation overflows we cannot do the transform
463 as we would introduce undefined overflow, for example
464 with (a - 1) + INT_MIN. */
465 (with { tree cst = fold_binary (outer_op == inner_op
466 ? PLUS_EXPR : MINUS_EXPR, type, @1, @2); }
467 (if (cst && !TREE_OVERFLOW (cst))
468 (inner_op @0 { cst; } ))))))
470 /* (CST - A) +- CST -> CST - A */
471 (for outer_op (plus minus)
473 (outer_op (minus CONSTANT_CLASS_P@1 @0) CONSTANT_CLASS_P@2)
474 (with { tree cst = fold_binary (outer_op, type, @1, @2); }
475 (if (cst && !TREE_OVERFLOW (cst))
476 (minus { cst; } @0)))))
480 (plus:c (bit_not @0) @0)
481 (if (!TYPE_OVERFLOW_TRAPS (type))
482 { build_all_ones_cst (type); }))
486 (plus (bit_not @0) integer_each_onep)
489 /* (T)(P + A) - (T)P -> (T) A */
490 (for add (plus pointer_plus)
492 (minus (convert (add @0 @1))
494 (if (element_precision (type) <= element_precision (TREE_TYPE (@1))
495 /* For integer types, if A has a smaller type
496 than T the result depends on the possible
498 E.g. T=size_t, A=(unsigned)429497295, P>0.
499 However, if an overflow in P + A would cause
500 undefined behavior, we can assume that there
502 || (INTEGRAL_TYPE_P (TREE_TYPE (@0))
503 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (@0)))
504 /* For pointer types, if the conversion of A to the
505 final type requires a sign- or zero-extension,
506 then we have to punt - it is not defined which
508 || (POINTER_TYPE_P (TREE_TYPE (@0))
509 && TREE_CODE (@1) == INTEGER_CST
510 && tree_int_cst_sign_bit (@1) == 0))
514 /* Simplifications of MIN_EXPR and MAX_EXPR. */
516 (for minmax (min max)
522 (if (INTEGRAL_TYPE_P (type)
523 && TYPE_MIN_VALUE (type)
524 && operand_equal_p (@1, TYPE_MIN_VALUE (type), OEP_ONLY_CONST))
528 (if (INTEGRAL_TYPE_P (type)
529 && TYPE_MAX_VALUE (type)
530 && operand_equal_p (@1, TYPE_MAX_VALUE (type), OEP_ONLY_CONST))
534 /* Simplifications of shift and rotates. */
536 (for rotate (lrotate rrotate)
538 (rotate integer_all_onesp@0 @1)
541 /* Optimize -1 >> x for arithmetic right shifts. */
543 (rshift integer_all_onesp@0 @1)
544 (if (!TYPE_UNSIGNED (type)
545 && tree_expr_nonnegative_p (@1))
548 (for shiftrotate (lrotate rrotate lshift rshift)
550 (shiftrotate @0 integer_zerop)
553 (shiftrotate integer_zerop@0 @1)
555 /* Prefer vector1 << scalar to vector1 << vector2
556 if vector2 is uniform. */
557 (for vec (VECTOR_CST CONSTRUCTOR)
559 (shiftrotate @0 vec@1)
560 (with { tree tem = uniform_vector_p (@1); }
562 (shiftrotate @0 { tem; }))))))
564 /* Rewrite an LROTATE_EXPR by a constant into an
565 RROTATE_EXPR by a new constant. */
567 (lrotate @0 INTEGER_CST@1)
568 (rrotate @0 { fold_binary (MINUS_EXPR, TREE_TYPE (@1),
569 build_int_cst (TREE_TYPE (@1),
570 element_precision (type)), @1); }))
573 /* Simplifications of conversions. */
575 /* Basic strip-useless-type-conversions / strip_nops. */
576 (for cvt (convert view_convert float fix_trunc)
579 (if ((GIMPLE && useless_type_conversion_p (type, TREE_TYPE (@0)))
580 || (GENERIC && type == TREE_TYPE (@0)))
583 /* Contract view-conversions. */
585 (view_convert (view_convert @0))
588 /* For integral conversions with the same precision or pointer
589 conversions use a NOP_EXPR instead. */
592 (if ((INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
593 && (INTEGRAL_TYPE_P (TREE_TYPE (@0)) || POINTER_TYPE_P (TREE_TYPE (@0)))
594 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (@0)))
597 /* Strip inner integral conversions that do not change precision or size. */
599 (view_convert (convert@0 @1))
600 (if ((INTEGRAL_TYPE_P (TREE_TYPE (@0)) || POINTER_TYPE_P (TREE_TYPE (@0)))
601 && (INTEGRAL_TYPE_P (TREE_TYPE (@1)) || POINTER_TYPE_P (TREE_TYPE (@1)))
602 && (TYPE_PRECISION (TREE_TYPE (@0)) == TYPE_PRECISION (TREE_TYPE (@1)))
603 && (TYPE_SIZE (TREE_TYPE (@0)) == TYPE_SIZE (TREE_TYPE (@1))))
606 /* Re-association barriers around constants and other re-association
607 barriers can be removed. */
609 (paren CONSTANT_CLASS_P@0)
615 /* Handle cases of two conversions in a row. */
616 (for ocvt (convert float fix_trunc)
617 (for icvt (convert float)
622 tree inside_type = TREE_TYPE (@0);
623 tree inter_type = TREE_TYPE (@1);
624 int inside_int = INTEGRAL_TYPE_P (inside_type);
625 int inside_ptr = POINTER_TYPE_P (inside_type);
626 int inside_float = FLOAT_TYPE_P (inside_type);
627 int inside_vec = VECTOR_TYPE_P (inside_type);
628 unsigned int inside_prec = TYPE_PRECISION (inside_type);
629 int inside_unsignedp = TYPE_UNSIGNED (inside_type);
630 int inter_int = INTEGRAL_TYPE_P (inter_type);
631 int inter_ptr = POINTER_TYPE_P (inter_type);
632 int inter_float = FLOAT_TYPE_P (inter_type);
633 int inter_vec = VECTOR_TYPE_P (inter_type);
634 unsigned int inter_prec = TYPE_PRECISION (inter_type);
635 int inter_unsignedp = TYPE_UNSIGNED (inter_type);
636 int final_int = INTEGRAL_TYPE_P (type);
637 int final_ptr = POINTER_TYPE_P (type);
638 int final_float = FLOAT_TYPE_P (type);
639 int final_vec = VECTOR_TYPE_P (type);
640 unsigned int final_prec = TYPE_PRECISION (type);
641 int final_unsignedp = TYPE_UNSIGNED (type);
643 /* In addition to the cases of two conversions in a row
644 handled below, if we are converting something to its own
645 type via an object of identical or wider precision, neither
646 conversion is needed. */
647 (if (((GIMPLE && useless_type_conversion_p (type, inside_type))
649 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (inside_type)))
650 && (((inter_int || inter_ptr) && final_int)
651 || (inter_float && final_float))
652 && inter_prec >= final_prec)
655 /* Likewise, if the intermediate and initial types are either both
656 float or both integer, we don't need the middle conversion if the
657 former is wider than the latter and doesn't change the signedness
658 (for integers). Avoid this if the final type is a pointer since
659 then we sometimes need the middle conversion. Likewise if the
660 final type has a precision not equal to the size of its mode. */
661 (if (((inter_int && inside_int)
662 || (inter_float && inside_float)
663 || (inter_vec && inside_vec))
664 && inter_prec >= inside_prec
665 && (inter_float || inter_vec
666 || inter_unsignedp == inside_unsignedp)
667 && ! (final_prec != GET_MODE_PRECISION (element_mode (type))
668 && element_mode (type) == element_mode (inter_type))
670 && (! final_vec || inter_prec == inside_prec))
673 /* If we have a sign-extension of a zero-extended value, we can
674 replace that by a single zero-extension. Likewise if the
675 final conversion does not change precision we can drop the
676 intermediate conversion. */
677 (if (inside_int && inter_int && final_int
678 && ((inside_prec < inter_prec && inter_prec < final_prec
679 && inside_unsignedp && !inter_unsignedp)
680 || final_prec == inter_prec))
683 /* Two conversions in a row are not needed unless:
684 - some conversion is floating-point (overstrict for now), or
685 - some conversion is a vector (overstrict for now), or
686 - the intermediate type is narrower than both initial and
688 - the intermediate type and innermost type differ in signedness,
689 and the outermost type is wider than the intermediate, or
690 - the initial type is a pointer type and the precisions of the
691 intermediate and final types differ, or
692 - the final type is a pointer type and the precisions of the
693 initial and intermediate types differ. */
694 (if (! inside_float && ! inter_float && ! final_float
695 && ! inside_vec && ! inter_vec && ! final_vec
696 && (inter_prec >= inside_prec || inter_prec >= final_prec)
697 && ! (inside_int && inter_int
698 && inter_unsignedp != inside_unsignedp
699 && inter_prec < final_prec)
700 && ((inter_unsignedp && inter_prec > inside_prec)
701 == (final_unsignedp && final_prec > inter_prec))
702 && ! (inside_ptr && inter_prec != final_prec)
703 && ! (final_ptr && inside_prec != inter_prec)
704 && ! (final_prec != GET_MODE_PRECISION (TYPE_MODE (type))
705 && TYPE_MODE (type) == TYPE_MODE (inter_type)))
708 /* A truncation to an unsigned type (a zero-extension) should be
709 canonicalized as bitwise and of a mask. */
710 (if (final_int && inter_int && inside_int
711 && final_prec == inside_prec
712 && final_prec > inter_prec
714 (convert (bit_and @0 { wide_int_to_tree
716 wi::mask (inter_prec, false,
717 TYPE_PRECISION (inside_type))); })))
719 /* If we are converting an integer to a floating-point that can
720 represent it exactly and back to an integer, we can skip the
721 floating-point conversion. */
722 (if (inside_int && inter_float && final_int &&
723 (unsigned) significand_size (TYPE_MODE (inter_type))
724 >= inside_prec - !inside_unsignedp)
727 /* If we have a narrowing conversion to an integral type that is fed by a
728 BIT_AND_EXPR, we might be able to remove the BIT_AND_EXPR if it merely
729 masks off bits outside the final type (and nothing else). */
731 (convert (bit_and @0 INTEGER_CST@1))
732 (if (INTEGRAL_TYPE_P (type)
733 && INTEGRAL_TYPE_P (TREE_TYPE (@0))
734 && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@0))
735 && operand_equal_p (@1, build_low_bits_mask (TREE_TYPE (@1),
736 TYPE_PRECISION (type)), 0))
740 /* (X /[ex] A) * A -> X. */
742 (mult (convert? (exact_div @0 @1)) @1)
743 /* Look through a sign-changing conversion. */
744 (if (TYPE_PRECISION (TREE_TYPE (@0)) == TYPE_PRECISION (type))
747 /* Canonicalization of binary operations. */
749 /* Convert X + -C into X - C. */
752 (if (REAL_VALUE_NEGATIVE (TREE_REAL_CST (@1)))
753 (with { tree tem = fold_unary (NEGATE_EXPR, type, @1); }
754 (if (!TREE_OVERFLOW (tem) || !flag_trapping_math)
755 (minus @0 { tem; })))))
757 /* Convert x+x into x*2.0. */
760 (if (SCALAR_FLOAT_TYPE_P (type))
761 (mult @0 { build_real (type, dconst2); })))
764 (minus integer_zerop @1)
767 /* (ARG0 - ARG1) is the same as (-ARG1 + ARG0). So check whether
768 ARG0 is zero and X + ARG0 reduces to X, since that would mean
769 (-ARG1 + ARG0) reduces to -ARG1. */
771 (minus real_zerop@0 @1)
772 (if (fold_real_zero_addition_p (type, @0, 0))
775 /* Transform x * -1 into -x. */
777 (mult @0 integer_minus_onep)
780 /* COMPLEX_EXPR and REALPART/IMAGPART_EXPR cancellations. */
782 (complex (realpart @0) (imagpart @0))
785 (realpart (complex @0 @1))
788 (imagpart (complex @0 @1))
792 /* BSWAP simplifications, transforms checked by gcc.dg/builtin-bswap-8.c. */
793 (for bswap (BUILT_IN_BSWAP16 BUILT_IN_BSWAP32 BUILT_IN_BSWAP64)
798 (bswap (bit_not (bswap @0)))
800 (for bitop (bit_xor bit_ior bit_and)
802 (bswap (bitop:c (bswap @0) @1))
803 (bitop @0 (bswap @1)))))
806 /* Combine COND_EXPRs and VEC_COND_EXPRs. */
808 /* Simplify constant conditions.
809 Only optimize constant conditions when the selected branch
810 has the same type as the COND_EXPR. This avoids optimizing
811 away "c ? x : throw", where the throw has a void type.
812 Note that we cannot throw away the fold-const.c variant nor
813 this one as we depend on doing this transform before possibly
814 A ? B : B -> B triggers and the fold-const.c one can optimize
815 0 ? A : B to B even if A has side-effects. Something
816 genmatch cannot handle. */
818 (cond INTEGER_CST@0 @1 @2)
819 (if (integer_zerop (@0)
820 && (!VOID_TYPE_P (TREE_TYPE (@2))
821 || VOID_TYPE_P (type)))
823 (if (!integer_zerop (@0)
824 && (!VOID_TYPE_P (TREE_TYPE (@1))
825 || VOID_TYPE_P (type)))
828 (vec_cond VECTOR_CST@0 @1 @2)
829 (if (integer_all_onesp (@0))
831 (if (integer_zerop (@0))
834 (for cnd (cond vec_cond)
835 /* A ? B : (A ? X : C) -> A ? B : C. */
837 (cnd @0 (cnd @0 @1 @2) @3)
840 (cnd @0 @1 (cnd @0 @2 @3))
843 /* A ? B : B -> B. */
848 /* !A ? B : C -> A ? C : B. */
850 (cnd (logical_inverted_value truth_valued_p@0) @1 @2)
854 /* Simplifications of comparisons. */
856 /* We can simplify a logical negation of a comparison to the
857 inverted comparison. As we cannot compute an expression
858 operator using invert_tree_comparison we have to simulate
859 that with expression code iteration. */
860 (for cmp (tcc_comparison)
861 icmp (inverted_tcc_comparison)
862 ncmp (inverted_tcc_comparison_with_nans)
863 /* Ideally we'd like to combine the following two patterns
864 and handle some more cases by using
865 (logical_inverted_value (cmp @0 @1))
866 here but for that genmatch would need to "inline" that.
867 For now implement what forward_propagate_comparison did. */
869 (bit_not (cmp @0 @1))
870 (if (VECTOR_TYPE_P (type)
871 || (INTEGRAL_TYPE_P (type) && TYPE_PRECISION (type) == 1))
872 /* Comparison inversion may be impossible for trapping math,
873 invert_tree_comparison will tell us. But we can't use
874 a computed operator in the replacement tree thus we have
875 to play the trick below. */
876 (with { enum tree_code ic = invert_tree_comparison
877 (cmp, HONOR_NANS (element_mode (@0))); }
883 (bit_xor (cmp @0 @1) integer_truep)
884 (with { enum tree_code ic = invert_tree_comparison
885 (cmp, HONOR_NANS (element_mode (@0))); }