fold-const.c (tree_unary_nonnegative_warnv_p): Make it public.
[official-gcc.git] / gcc / fold-const.c
blob5d5d7cf2b976c370c5f7f3c745d6953dcdc96225
1 /* Fold a constant sub-tree into a single node for C-compiler
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /*@@ This file should be rewritten to use an arbitrary precision
23 @@ representation for "struct tree_int_cst" and "struct tree_real_cst".
24 @@ Perhaps the routines could also be used for bc/dc, and made a lib.
25 @@ The routines that translate from the ap rep should
26 @@ warn if precision et. al. is lost.
27 @@ This would also make life easier when this technology is used
28 @@ for cross-compilers. */
30 /* The entry points in this file are fold, size_int_wide, size_binop
31 and force_fit_type_double.
33 fold takes a tree as argument and returns a simplified tree.
35 size_binop takes a tree code for an arithmetic operation
36 and two operands that are trees, and produces a tree for the
37 result, assuming the type comes from `sizetype'.
39 size_int takes an integer value, and creates a tree constant
40 with type from `sizetype'.
42 force_fit_type_double takes a constant, an overflowable flag and a
43 prior overflow indicator. It forces the value to fit the type and
44 sets TREE_OVERFLOW.
46 Note: Since the folders get called on non-gimple code as well as
47 gimple code, we need to handle GIMPLE tuples as well as their
48 corresponding tree equivalents. */
50 #include "config.h"
51 #include "system.h"
52 #include "coretypes.h"
53 #include "tm.h"
54 #include "flags.h"
55 #include "tree.h"
56 #include "real.h"
57 #include "fixed-value.h"
58 #include "rtl.h"
59 #include "expr.h"
60 #include "tm_p.h"
61 #include "target.h"
62 #include "toplev.h"
63 #include "intl.h"
64 #include "ggc.h"
65 #include "hashtab.h"
66 #include "langhooks.h"
67 #include "md5.h"
69 /* Nonzero if we are folding constants inside an initializer; zero
70 otherwise. */
71 int folding_initializer = 0;
73 /* The following constants represent a bit based encoding of GCC's
74 comparison operators. This encoding simplifies transformations
75 on relational comparison operators, such as AND and OR. */
76 enum comparison_code {
77 COMPCODE_FALSE = 0,
78 COMPCODE_LT = 1,
79 COMPCODE_EQ = 2,
80 COMPCODE_LE = 3,
81 COMPCODE_GT = 4,
82 COMPCODE_LTGT = 5,
83 COMPCODE_GE = 6,
84 COMPCODE_ORD = 7,
85 COMPCODE_UNORD = 8,
86 COMPCODE_UNLT = 9,
87 COMPCODE_UNEQ = 10,
88 COMPCODE_UNLE = 11,
89 COMPCODE_UNGT = 12,
90 COMPCODE_NE = 13,
91 COMPCODE_UNGE = 14,
92 COMPCODE_TRUE = 15
95 static void encode (HOST_WIDE_INT *, unsigned HOST_WIDE_INT, HOST_WIDE_INT);
96 static void decode (HOST_WIDE_INT *, unsigned HOST_WIDE_INT *, HOST_WIDE_INT *);
97 static bool negate_mathfn_p (enum built_in_function);
98 static bool negate_expr_p (tree);
99 static tree negate_expr (tree);
100 static tree split_tree (tree, enum tree_code, tree *, tree *, tree *, int);
101 static tree associate_trees (tree, tree, enum tree_code, tree);
102 static tree const_binop (enum tree_code, tree, tree, int);
103 static enum comparison_code comparison_to_compcode (enum tree_code);
104 static enum tree_code compcode_to_comparison (enum comparison_code);
105 static tree combine_comparisons (enum tree_code, enum tree_code,
106 enum tree_code, tree, tree, tree);
107 static int truth_value_p (enum tree_code);
108 static int operand_equal_for_comparison_p (tree, tree, tree);
109 static int twoval_comparison_p (tree, tree *, tree *, int *);
110 static tree eval_subst (tree, tree, tree, tree, tree);
111 static tree pedantic_omit_one_operand (tree, tree, tree);
112 static tree distribute_bit_expr (enum tree_code, tree, tree, tree);
113 static tree decode_field_reference (tree, HOST_WIDE_INT *, HOST_WIDE_INT *,
114 enum machine_mode *, int *, int *,
115 tree *, tree *);
116 static tree sign_bit_p (tree, const_tree);
117 static int simple_operand_p (const_tree);
118 static tree range_binop (enum tree_code, tree, tree, int, tree, int);
119 static tree range_predecessor (tree);
120 static tree range_successor (tree);
121 static tree make_range (tree, int *, tree *, tree *, bool *);
122 static tree build_range_check (tree, tree, int, tree, tree);
123 static int merge_ranges (int *, tree *, tree *, int, tree, tree, int, tree,
124 tree);
125 static tree fold_range_test (enum tree_code, tree, tree, tree);
126 static tree fold_cond_expr_with_comparison (tree, tree, tree, tree);
127 static tree unextend (tree, int, int, tree);
128 static tree fold_truthop (enum tree_code, tree, tree, tree);
129 static tree optimize_minmax_comparison (enum tree_code, tree, tree, tree);
130 static tree extract_muldiv (tree, tree, enum tree_code, tree, bool *);
131 static tree extract_muldiv_1 (tree, tree, enum tree_code, tree, bool *);
132 static tree fold_binary_op_with_conditional_arg (enum tree_code, tree,
133 tree, tree,
134 tree, tree, int);
135 static tree fold_mathfn_compare (enum built_in_function, enum tree_code,
136 tree, tree, tree);
137 static tree fold_inf_compare (enum tree_code, tree, tree, tree);
138 static tree fold_div_compare (enum tree_code, tree, tree, tree);
139 static bool reorder_operands_p (const_tree, const_tree);
140 static tree fold_negate_const (tree, tree);
141 static tree fold_not_const (tree, tree);
142 static tree fold_relational_const (enum tree_code, tree, tree, tree);
145 /* We know that A1 + B1 = SUM1, using 2's complement arithmetic and ignoring
146 overflow. Suppose A, B and SUM have the same respective signs as A1, B1,
147 and SUM1. Then this yields nonzero if overflow occurred during the
148 addition.
150 Overflow occurs if A and B have the same sign, but A and SUM differ in
151 sign. Use `^' to test whether signs differ, and `< 0' to isolate the
152 sign. */
153 #define OVERFLOW_SUM_SIGN(a, b, sum) ((~((a) ^ (b)) & ((a) ^ (sum))) < 0)
155 /* To do constant folding on INTEGER_CST nodes requires two-word arithmetic.
156 We do that by representing the two-word integer in 4 words, with only
157 HOST_BITS_PER_WIDE_INT / 2 bits stored in each word, as a positive
158 number. The value of the word is LOWPART + HIGHPART * BASE. */
160 #define LOWPART(x) \
161 ((x) & (((unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)) - 1))
162 #define HIGHPART(x) \
163 ((unsigned HOST_WIDE_INT) (x) >> HOST_BITS_PER_WIDE_INT / 2)
164 #define BASE ((unsigned HOST_WIDE_INT) 1 << HOST_BITS_PER_WIDE_INT / 2)
166 /* Unpack a two-word integer into 4 words.
167 LOW and HI are the integer, as two `HOST_WIDE_INT' pieces.
168 WORDS points to the array of HOST_WIDE_INTs. */
170 static void
171 encode (HOST_WIDE_INT *words, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
173 words[0] = LOWPART (low);
174 words[1] = HIGHPART (low);
175 words[2] = LOWPART (hi);
176 words[3] = HIGHPART (hi);
179 /* Pack an array of 4 words into a two-word integer.
180 WORDS points to the array of words.
181 The integer is stored into *LOW and *HI as two `HOST_WIDE_INT' pieces. */
183 static void
184 decode (HOST_WIDE_INT *words, unsigned HOST_WIDE_INT *low,
185 HOST_WIDE_INT *hi)
187 *low = words[0] + words[1] * BASE;
188 *hi = words[2] + words[3] * BASE;
191 /* Force the double-word integer L1, H1 to be within the range of the
192 integer type TYPE. Stores the properly truncated and sign-extended
193 double-word integer in *LV, *HV. Returns true if the operation
194 overflows, that is, argument and result are different. */
197 fit_double_type (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
198 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv, const_tree type)
200 unsigned HOST_WIDE_INT low0 = l1;
201 HOST_WIDE_INT high0 = h1;
202 unsigned int prec;
203 int sign_extended_type;
205 if (POINTER_TYPE_P (type)
206 || TREE_CODE (type) == OFFSET_TYPE)
207 prec = POINTER_SIZE;
208 else
209 prec = TYPE_PRECISION (type);
211 /* Size types *are* sign extended. */
212 sign_extended_type = (!TYPE_UNSIGNED (type)
213 || (TREE_CODE (type) == INTEGER_TYPE
214 && TYPE_IS_SIZETYPE (type)));
216 /* First clear all bits that are beyond the type's precision. */
217 if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
219 else if (prec > HOST_BITS_PER_WIDE_INT)
220 h1 &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
221 else
223 h1 = 0;
224 if (prec < HOST_BITS_PER_WIDE_INT)
225 l1 &= ~((HOST_WIDE_INT) (-1) << prec);
228 /* Then do sign extension if necessary. */
229 if (!sign_extended_type)
230 /* No sign extension */;
231 else if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
232 /* Correct width already. */;
233 else if (prec > HOST_BITS_PER_WIDE_INT)
235 /* Sign extend top half? */
236 if (h1 & ((unsigned HOST_WIDE_INT)1
237 << (prec - HOST_BITS_PER_WIDE_INT - 1)))
238 h1 |= (HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT);
240 else if (prec == HOST_BITS_PER_WIDE_INT)
242 if ((HOST_WIDE_INT)l1 < 0)
243 h1 = -1;
245 else
247 /* Sign extend bottom half? */
248 if (l1 & ((unsigned HOST_WIDE_INT)1 << (prec - 1)))
250 h1 = -1;
251 l1 |= (HOST_WIDE_INT)(-1) << prec;
255 *lv = l1;
256 *hv = h1;
258 /* If the value didn't fit, signal overflow. */
259 return l1 != low0 || h1 != high0;
262 /* We force the double-int HIGH:LOW to the range of the type TYPE by
263 sign or zero extending it.
264 OVERFLOWABLE indicates if we are interested
265 in overflow of the value, when >0 we are only interested in signed
266 overflow, for <0 we are interested in any overflow. OVERFLOWED
267 indicates whether overflow has already occurred. CONST_OVERFLOWED
268 indicates whether constant overflow has already occurred. We force
269 T's value to be within range of T's type (by setting to 0 or 1 all
270 the bits outside the type's range). We set TREE_OVERFLOWED if,
271 OVERFLOWED is nonzero,
272 or OVERFLOWABLE is >0 and signed overflow occurs
273 or OVERFLOWABLE is <0 and any overflow occurs
274 We return a new tree node for the extended double-int. The node
275 is shared if no overflow flags are set. */
277 tree
278 force_fit_type_double (tree type, unsigned HOST_WIDE_INT low,
279 HOST_WIDE_INT high, int overflowable,
280 bool overflowed)
282 int sign_extended_type;
283 bool overflow;
285 /* Size types *are* sign extended. */
286 sign_extended_type = (!TYPE_UNSIGNED (type)
287 || (TREE_CODE (type) == INTEGER_TYPE
288 && TYPE_IS_SIZETYPE (type)));
290 overflow = fit_double_type (low, high, &low, &high, type);
292 /* If we need to set overflow flags, return a new unshared node. */
293 if (overflowed || overflow)
295 if (overflowed
296 || overflowable < 0
297 || (overflowable > 0 && sign_extended_type))
299 tree t = make_node (INTEGER_CST);
300 TREE_INT_CST_LOW (t) = low;
301 TREE_INT_CST_HIGH (t) = high;
302 TREE_TYPE (t) = type;
303 TREE_OVERFLOW (t) = 1;
304 return t;
308 /* Else build a shared node. */
309 return build_int_cst_wide (type, low, high);
312 /* Add two doubleword integers with doubleword result.
313 Return nonzero if the operation overflows according to UNSIGNED_P.
314 Each argument is given as two `HOST_WIDE_INT' pieces.
315 One argument is L1 and H1; the other, L2 and H2.
316 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
319 add_double_with_sign (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
320 unsigned HOST_WIDE_INT l2, HOST_WIDE_INT h2,
321 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv,
322 bool unsigned_p)
324 unsigned HOST_WIDE_INT l;
325 HOST_WIDE_INT h;
327 l = l1 + l2;
328 h = h1 + h2 + (l < l1);
330 *lv = l;
331 *hv = h;
333 if (unsigned_p)
334 return (unsigned HOST_WIDE_INT) h < (unsigned HOST_WIDE_INT) h1;
335 else
336 return OVERFLOW_SUM_SIGN (h1, h2, h);
339 /* Negate a doubleword integer with doubleword result.
340 Return nonzero if the operation overflows, assuming it's signed.
341 The argument is given as two `HOST_WIDE_INT' pieces in L1 and H1.
342 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
345 neg_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
346 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
348 if (l1 == 0)
350 *lv = 0;
351 *hv = - h1;
352 return (*hv & h1) < 0;
354 else
356 *lv = -l1;
357 *hv = ~h1;
358 return 0;
362 /* Multiply two doubleword integers with doubleword result.
363 Return nonzero if the operation overflows according to UNSIGNED_P.
364 Each argument is given as two `HOST_WIDE_INT' pieces.
365 One argument is L1 and H1; the other, L2 and H2.
366 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
369 mul_double_with_sign (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
370 unsigned HOST_WIDE_INT l2, HOST_WIDE_INT h2,
371 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv,
372 bool unsigned_p)
374 HOST_WIDE_INT arg1[4];
375 HOST_WIDE_INT arg2[4];
376 HOST_WIDE_INT prod[4 * 2];
377 unsigned HOST_WIDE_INT carry;
378 int i, j, k;
379 unsigned HOST_WIDE_INT toplow, neglow;
380 HOST_WIDE_INT tophigh, neghigh;
382 encode (arg1, l1, h1);
383 encode (arg2, l2, h2);
385 memset (prod, 0, sizeof prod);
387 for (i = 0; i < 4; i++)
389 carry = 0;
390 for (j = 0; j < 4; j++)
392 k = i + j;
393 /* This product is <= 0xFFFE0001, the sum <= 0xFFFF0000. */
394 carry += arg1[i] * arg2[j];
395 /* Since prod[p] < 0xFFFF, this sum <= 0xFFFFFFFF. */
396 carry += prod[k];
397 prod[k] = LOWPART (carry);
398 carry = HIGHPART (carry);
400 prod[i + 4] = carry;
403 decode (prod, lv, hv);
404 decode (prod + 4, &toplow, &tophigh);
406 /* Unsigned overflow is immediate. */
407 if (unsigned_p)
408 return (toplow | tophigh) != 0;
410 /* Check for signed overflow by calculating the signed representation of the
411 top half of the result; it should agree with the low half's sign bit. */
412 if (h1 < 0)
414 neg_double (l2, h2, &neglow, &neghigh);
415 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
417 if (h2 < 0)
419 neg_double (l1, h1, &neglow, &neghigh);
420 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
422 return (*hv < 0 ? ~(toplow & tophigh) : toplow | tophigh) != 0;
425 /* Shift the doubleword integer in L1, H1 left by COUNT places
426 keeping only PREC bits of result.
427 Shift right if COUNT is negative.
428 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
429 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
431 void
432 lshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
433 HOST_WIDE_INT count, unsigned int prec,
434 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv, int arith)
436 unsigned HOST_WIDE_INT signmask;
438 if (count < 0)
440 rshift_double (l1, h1, -count, prec, lv, hv, arith);
441 return;
444 if (SHIFT_COUNT_TRUNCATED)
445 count %= prec;
447 if (count >= 2 * HOST_BITS_PER_WIDE_INT)
449 /* Shifting by the host word size is undefined according to the
450 ANSI standard, so we must handle this as a special case. */
451 *hv = 0;
452 *lv = 0;
454 else if (count >= HOST_BITS_PER_WIDE_INT)
456 *hv = l1 << (count - HOST_BITS_PER_WIDE_INT);
457 *lv = 0;
459 else
461 *hv = (((unsigned HOST_WIDE_INT) h1 << count)
462 | (l1 >> (HOST_BITS_PER_WIDE_INT - count - 1) >> 1));
463 *lv = l1 << count;
466 /* Sign extend all bits that are beyond the precision. */
468 signmask = -((prec > HOST_BITS_PER_WIDE_INT
469 ? ((unsigned HOST_WIDE_INT) *hv
470 >> (prec - HOST_BITS_PER_WIDE_INT - 1))
471 : (*lv >> (prec - 1))) & 1);
473 if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
475 else if (prec >= HOST_BITS_PER_WIDE_INT)
477 *hv &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
478 *hv |= signmask << (prec - HOST_BITS_PER_WIDE_INT);
480 else
482 *hv = signmask;
483 *lv &= ~((unsigned HOST_WIDE_INT) (-1) << prec);
484 *lv |= signmask << prec;
488 /* Shift the doubleword integer in L1, H1 right by COUNT places
489 keeping only PREC bits of result. COUNT must be positive.
490 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
491 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
493 void
494 rshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
495 HOST_WIDE_INT count, unsigned int prec,
496 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv,
497 int arith)
499 unsigned HOST_WIDE_INT signmask;
501 signmask = (arith
502 ? -((unsigned HOST_WIDE_INT) h1 >> (HOST_BITS_PER_WIDE_INT - 1))
503 : 0);
505 if (SHIFT_COUNT_TRUNCATED)
506 count %= prec;
508 if (count >= 2 * HOST_BITS_PER_WIDE_INT)
510 /* Shifting by the host word size is undefined according to the
511 ANSI standard, so we must handle this as a special case. */
512 *hv = 0;
513 *lv = 0;
515 else if (count >= HOST_BITS_PER_WIDE_INT)
517 *hv = 0;
518 *lv = (unsigned HOST_WIDE_INT) h1 >> (count - HOST_BITS_PER_WIDE_INT);
520 else
522 *hv = (unsigned HOST_WIDE_INT) h1 >> count;
523 *lv = ((l1 >> count)
524 | ((unsigned HOST_WIDE_INT) h1 << (HOST_BITS_PER_WIDE_INT - count - 1) << 1));
527 /* Zero / sign extend all bits that are beyond the precision. */
529 if (count >= (HOST_WIDE_INT)prec)
531 *hv = signmask;
532 *lv = signmask;
534 else if ((prec - count) >= 2 * HOST_BITS_PER_WIDE_INT)
536 else if ((prec - count) >= HOST_BITS_PER_WIDE_INT)
538 *hv &= ~((HOST_WIDE_INT) (-1) << (prec - count - HOST_BITS_PER_WIDE_INT));
539 *hv |= signmask << (prec - count - HOST_BITS_PER_WIDE_INT);
541 else
543 *hv = signmask;
544 *lv &= ~((unsigned HOST_WIDE_INT) (-1) << (prec - count));
545 *lv |= signmask << (prec - count);
549 /* Rotate the doubleword integer in L1, H1 left by COUNT places
550 keeping only PREC bits of result.
551 Rotate right if COUNT is negative.
552 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
554 void
555 lrotate_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
556 HOST_WIDE_INT count, unsigned int prec,
557 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
559 unsigned HOST_WIDE_INT s1l, s2l;
560 HOST_WIDE_INT s1h, s2h;
562 count %= prec;
563 if (count < 0)
564 count += prec;
566 lshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
567 rshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
568 *lv = s1l | s2l;
569 *hv = s1h | s2h;
572 /* Rotate the doubleword integer in L1, H1 left by COUNT places
573 keeping only PREC bits of result. COUNT must be positive.
574 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
576 void
577 rrotate_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
578 HOST_WIDE_INT count, unsigned int prec,
579 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
581 unsigned HOST_WIDE_INT s1l, s2l;
582 HOST_WIDE_INT s1h, s2h;
584 count %= prec;
585 if (count < 0)
586 count += prec;
588 rshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
589 lshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
590 *lv = s1l | s2l;
591 *hv = s1h | s2h;
594 /* Divide doubleword integer LNUM, HNUM by doubleword integer LDEN, HDEN
595 for a quotient (stored in *LQUO, *HQUO) and remainder (in *LREM, *HREM).
596 CODE is a tree code for a kind of division, one of
597 TRUNC_DIV_EXPR, FLOOR_DIV_EXPR, CEIL_DIV_EXPR, ROUND_DIV_EXPR
598 or EXACT_DIV_EXPR
599 It controls how the quotient is rounded to an integer.
600 Return nonzero if the operation overflows.
601 UNS nonzero says do unsigned division. */
604 div_and_round_double (enum tree_code code, int uns,
605 unsigned HOST_WIDE_INT lnum_orig, /* num == numerator == dividend */
606 HOST_WIDE_INT hnum_orig,
607 unsigned HOST_WIDE_INT lden_orig, /* den == denominator == divisor */
608 HOST_WIDE_INT hden_orig,
609 unsigned HOST_WIDE_INT *lquo,
610 HOST_WIDE_INT *hquo, unsigned HOST_WIDE_INT *lrem,
611 HOST_WIDE_INT *hrem)
613 int quo_neg = 0;
614 HOST_WIDE_INT num[4 + 1]; /* extra element for scaling. */
615 HOST_WIDE_INT den[4], quo[4];
616 int i, j;
617 unsigned HOST_WIDE_INT work;
618 unsigned HOST_WIDE_INT carry = 0;
619 unsigned HOST_WIDE_INT lnum = lnum_orig;
620 HOST_WIDE_INT hnum = hnum_orig;
621 unsigned HOST_WIDE_INT lden = lden_orig;
622 HOST_WIDE_INT hden = hden_orig;
623 int overflow = 0;
625 if (hden == 0 && lden == 0)
626 overflow = 1, lden = 1;
628 /* Calculate quotient sign and convert operands to unsigned. */
629 if (!uns)
631 if (hnum < 0)
633 quo_neg = ~ quo_neg;
634 /* (minimum integer) / (-1) is the only overflow case. */
635 if (neg_double (lnum, hnum, &lnum, &hnum)
636 && ((HOST_WIDE_INT) lden & hden) == -1)
637 overflow = 1;
639 if (hden < 0)
641 quo_neg = ~ quo_neg;
642 neg_double (lden, hden, &lden, &hden);
646 if (hnum == 0 && hden == 0)
647 { /* single precision */
648 *hquo = *hrem = 0;
649 /* This unsigned division rounds toward zero. */
650 *lquo = lnum / lden;
651 goto finish_up;
654 if (hnum == 0)
655 { /* trivial case: dividend < divisor */
656 /* hden != 0 already checked. */
657 *hquo = *lquo = 0;
658 *hrem = hnum;
659 *lrem = lnum;
660 goto finish_up;
663 memset (quo, 0, sizeof quo);
665 memset (num, 0, sizeof num); /* to zero 9th element */
666 memset (den, 0, sizeof den);
668 encode (num, lnum, hnum);
669 encode (den, lden, hden);
671 /* Special code for when the divisor < BASE. */
672 if (hden == 0 && lden < (unsigned HOST_WIDE_INT) BASE)
674 /* hnum != 0 already checked. */
675 for (i = 4 - 1; i >= 0; i--)
677 work = num[i] + carry * BASE;
678 quo[i] = work / lden;
679 carry = work % lden;
682 else
684 /* Full double precision division,
685 with thanks to Don Knuth's "Seminumerical Algorithms". */
686 int num_hi_sig, den_hi_sig;
687 unsigned HOST_WIDE_INT quo_est, scale;
689 /* Find the highest nonzero divisor digit. */
690 for (i = 4 - 1;; i--)
691 if (den[i] != 0)
693 den_hi_sig = i;
694 break;
697 /* Insure that the first digit of the divisor is at least BASE/2.
698 This is required by the quotient digit estimation algorithm. */
700 scale = BASE / (den[den_hi_sig] + 1);
701 if (scale > 1)
702 { /* scale divisor and dividend */
703 carry = 0;
704 for (i = 0; i <= 4 - 1; i++)
706 work = (num[i] * scale) + carry;
707 num[i] = LOWPART (work);
708 carry = HIGHPART (work);
711 num[4] = carry;
712 carry = 0;
713 for (i = 0; i <= 4 - 1; i++)
715 work = (den[i] * scale) + carry;
716 den[i] = LOWPART (work);
717 carry = HIGHPART (work);
718 if (den[i] != 0) den_hi_sig = i;
722 num_hi_sig = 4;
724 /* Main loop */
725 for (i = num_hi_sig - den_hi_sig - 1; i >= 0; i--)
727 /* Guess the next quotient digit, quo_est, by dividing the first
728 two remaining dividend digits by the high order quotient digit.
729 quo_est is never low and is at most 2 high. */
730 unsigned HOST_WIDE_INT tmp;
732 num_hi_sig = i + den_hi_sig + 1;
733 work = num[num_hi_sig] * BASE + num[num_hi_sig - 1];
734 if (num[num_hi_sig] != den[den_hi_sig])
735 quo_est = work / den[den_hi_sig];
736 else
737 quo_est = BASE - 1;
739 /* Refine quo_est so it's usually correct, and at most one high. */
740 tmp = work - quo_est * den[den_hi_sig];
741 if (tmp < BASE
742 && (den[den_hi_sig - 1] * quo_est
743 > (tmp * BASE + num[num_hi_sig - 2])))
744 quo_est--;
746 /* Try QUO_EST as the quotient digit, by multiplying the
747 divisor by QUO_EST and subtracting from the remaining dividend.
748 Keep in mind that QUO_EST is the I - 1st digit. */
750 carry = 0;
751 for (j = 0; j <= den_hi_sig; j++)
753 work = quo_est * den[j] + carry;
754 carry = HIGHPART (work);
755 work = num[i + j] - LOWPART (work);
756 num[i + j] = LOWPART (work);
757 carry += HIGHPART (work) != 0;
760 /* If quo_est was high by one, then num[i] went negative and
761 we need to correct things. */
762 if (num[num_hi_sig] < (HOST_WIDE_INT) carry)
764 quo_est--;
765 carry = 0; /* add divisor back in */
766 for (j = 0; j <= den_hi_sig; j++)
768 work = num[i + j] + den[j] + carry;
769 carry = HIGHPART (work);
770 num[i + j] = LOWPART (work);
773 num [num_hi_sig] += carry;
776 /* Store the quotient digit. */
777 quo[i] = quo_est;
781 decode (quo, lquo, hquo);
783 finish_up:
784 /* If result is negative, make it so. */
785 if (quo_neg)
786 neg_double (*lquo, *hquo, lquo, hquo);
788 /* Compute trial remainder: rem = num - (quo * den) */
789 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
790 neg_double (*lrem, *hrem, lrem, hrem);
791 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
793 switch (code)
795 case TRUNC_DIV_EXPR:
796 case TRUNC_MOD_EXPR: /* round toward zero */
797 case EXACT_DIV_EXPR: /* for this one, it shouldn't matter */
798 return overflow;
800 case FLOOR_DIV_EXPR:
801 case FLOOR_MOD_EXPR: /* round toward negative infinity */
802 if (quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio < 0 && rem != 0 */
804 /* quo = quo - 1; */
805 add_double (*lquo, *hquo, (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1,
806 lquo, hquo);
808 else
809 return overflow;
810 break;
812 case CEIL_DIV_EXPR:
813 case CEIL_MOD_EXPR: /* round toward positive infinity */
814 if (!quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio > 0 && rem != 0 */
816 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
817 lquo, hquo);
819 else
820 return overflow;
821 break;
823 case ROUND_DIV_EXPR:
824 case ROUND_MOD_EXPR: /* round to closest integer */
826 unsigned HOST_WIDE_INT labs_rem = *lrem;
827 HOST_WIDE_INT habs_rem = *hrem;
828 unsigned HOST_WIDE_INT labs_den = lden, ltwice;
829 HOST_WIDE_INT habs_den = hden, htwice;
831 /* Get absolute values. */
832 if (*hrem < 0)
833 neg_double (*lrem, *hrem, &labs_rem, &habs_rem);
834 if (hden < 0)
835 neg_double (lden, hden, &labs_den, &habs_den);
837 /* If (2 * abs (lrem) >= abs (lden)) */
838 mul_double ((HOST_WIDE_INT) 2, (HOST_WIDE_INT) 0,
839 labs_rem, habs_rem, &ltwice, &htwice);
841 if (((unsigned HOST_WIDE_INT) habs_den
842 < (unsigned HOST_WIDE_INT) htwice)
843 || (((unsigned HOST_WIDE_INT) habs_den
844 == (unsigned HOST_WIDE_INT) htwice)
845 && (labs_den < ltwice)))
847 if (*hquo < 0)
848 /* quo = quo - 1; */
849 add_double (*lquo, *hquo,
850 (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1, lquo, hquo);
851 else
852 /* quo = quo + 1; */
853 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
854 lquo, hquo);
856 else
857 return overflow;
859 break;
861 default:
862 gcc_unreachable ();
865 /* Compute true remainder: rem = num - (quo * den) */
866 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
867 neg_double (*lrem, *hrem, lrem, hrem);
868 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
869 return overflow;
872 /* If ARG2 divides ARG1 with zero remainder, carries out the division
873 of type CODE and returns the quotient.
874 Otherwise returns NULL_TREE. */
876 static tree
877 div_if_zero_remainder (enum tree_code code, const_tree arg1, const_tree arg2)
879 unsigned HOST_WIDE_INT int1l, int2l;
880 HOST_WIDE_INT int1h, int2h;
881 unsigned HOST_WIDE_INT quol, reml;
882 HOST_WIDE_INT quoh, remh;
883 tree type = TREE_TYPE (arg1);
884 int uns = TYPE_UNSIGNED (type);
886 int1l = TREE_INT_CST_LOW (arg1);
887 int1h = TREE_INT_CST_HIGH (arg1);
888 /* &obj[0] + -128 really should be compiled as &obj[-8] rather than
889 &obj[some_exotic_number]. */
890 if (POINTER_TYPE_P (type))
892 uns = false;
893 type = signed_type_for (type);
894 fit_double_type (int1l, int1h, &int1l, &int1h,
895 type);
897 else
898 fit_double_type (int1l, int1h, &int1l, &int1h, type);
899 int2l = TREE_INT_CST_LOW (arg2);
900 int2h = TREE_INT_CST_HIGH (arg2);
902 div_and_round_double (code, uns, int1l, int1h, int2l, int2h,
903 &quol, &quoh, &reml, &remh);
904 if (remh != 0 || reml != 0)
905 return NULL_TREE;
907 return build_int_cst_wide (type, quol, quoh);
910 /* This is nonzero if we should defer warnings about undefined
911 overflow. This facility exists because these warnings are a
912 special case. The code to estimate loop iterations does not want
913 to issue any warnings, since it works with expressions which do not
914 occur in user code. Various bits of cleanup code call fold(), but
915 only use the result if it has certain characteristics (e.g., is a
916 constant); that code only wants to issue a warning if the result is
917 used. */
919 static int fold_deferring_overflow_warnings;
921 /* If a warning about undefined overflow is deferred, this is the
922 warning. Note that this may cause us to turn two warnings into
923 one, but that is fine since it is sufficient to only give one
924 warning per expression. */
926 static const char* fold_deferred_overflow_warning;
928 /* If a warning about undefined overflow is deferred, this is the
929 level at which the warning should be emitted. */
931 static enum warn_strict_overflow_code fold_deferred_overflow_code;
933 /* Start deferring overflow warnings. We could use a stack here to
934 permit nested calls, but at present it is not necessary. */
936 void
937 fold_defer_overflow_warnings (void)
939 ++fold_deferring_overflow_warnings;
942 /* Stop deferring overflow warnings. If there is a pending warning,
943 and ISSUE is true, then issue the warning if appropriate. STMT is
944 the statement with which the warning should be associated (used for
945 location information); STMT may be NULL. CODE is the level of the
946 warning--a warn_strict_overflow_code value. This function will use
947 the smaller of CODE and the deferred code when deciding whether to
948 issue the warning. CODE may be zero to mean to always use the
949 deferred code. */
951 void
952 fold_undefer_overflow_warnings (bool issue, const_tree stmt, int code)
954 const char *warnmsg;
955 location_t locus;
957 gcc_assert (fold_deferring_overflow_warnings > 0);
958 --fold_deferring_overflow_warnings;
959 if (fold_deferring_overflow_warnings > 0)
961 if (fold_deferred_overflow_warning != NULL
962 && code != 0
963 && code < (int) fold_deferred_overflow_code)
964 fold_deferred_overflow_code = code;
965 return;
968 warnmsg = fold_deferred_overflow_warning;
969 fold_deferred_overflow_warning = NULL;
971 if (!issue || warnmsg == NULL)
972 return;
974 if (stmt != NULL_TREE && TREE_NO_WARNING (stmt))
975 return;
977 /* Use the smallest code level when deciding to issue the
978 warning. */
979 if (code == 0 || code > (int) fold_deferred_overflow_code)
980 code = fold_deferred_overflow_code;
982 if (!issue_strict_overflow_warning (code))
983 return;
985 if (stmt == NULL_TREE || !expr_has_location (stmt))
986 locus = input_location;
987 else
988 locus = expr_location (stmt);
989 warning (OPT_Wstrict_overflow, "%H%s", &locus, warnmsg);
992 /* Stop deferring overflow warnings, ignoring any deferred
993 warnings. */
995 void
996 fold_undefer_and_ignore_overflow_warnings (void)
998 fold_undefer_overflow_warnings (false, NULL_TREE, 0);
1001 /* Whether we are deferring overflow warnings. */
1003 bool
1004 fold_deferring_overflow_warnings_p (void)
1006 return fold_deferring_overflow_warnings > 0;
1009 /* This is called when we fold something based on the fact that signed
1010 overflow is undefined. */
1012 static void
1013 fold_overflow_warning (const char* gmsgid, enum warn_strict_overflow_code wc)
1015 gcc_assert (!flag_wrapv && !flag_trapv);
1016 if (fold_deferring_overflow_warnings > 0)
1018 if (fold_deferred_overflow_warning == NULL
1019 || wc < fold_deferred_overflow_code)
1021 fold_deferred_overflow_warning = gmsgid;
1022 fold_deferred_overflow_code = wc;
1025 else if (issue_strict_overflow_warning (wc))
1026 warning (OPT_Wstrict_overflow, gmsgid);
1029 /* Return true if the built-in mathematical function specified by CODE
1030 is odd, i.e. -f(x) == f(-x). */
1032 static bool
1033 negate_mathfn_p (enum built_in_function code)
1035 switch (code)
1037 CASE_FLT_FN (BUILT_IN_ASIN):
1038 CASE_FLT_FN (BUILT_IN_ASINH):
1039 CASE_FLT_FN (BUILT_IN_ATAN):
1040 CASE_FLT_FN (BUILT_IN_ATANH):
1041 CASE_FLT_FN (BUILT_IN_CASIN):
1042 CASE_FLT_FN (BUILT_IN_CASINH):
1043 CASE_FLT_FN (BUILT_IN_CATAN):
1044 CASE_FLT_FN (BUILT_IN_CATANH):
1045 CASE_FLT_FN (BUILT_IN_CBRT):
1046 CASE_FLT_FN (BUILT_IN_CPROJ):
1047 CASE_FLT_FN (BUILT_IN_CSIN):
1048 CASE_FLT_FN (BUILT_IN_CSINH):
1049 CASE_FLT_FN (BUILT_IN_CTAN):
1050 CASE_FLT_FN (BUILT_IN_CTANH):
1051 CASE_FLT_FN (BUILT_IN_ERF):
1052 CASE_FLT_FN (BUILT_IN_LLROUND):
1053 CASE_FLT_FN (BUILT_IN_LROUND):
1054 CASE_FLT_FN (BUILT_IN_ROUND):
1055 CASE_FLT_FN (BUILT_IN_SIN):
1056 CASE_FLT_FN (BUILT_IN_SINH):
1057 CASE_FLT_FN (BUILT_IN_TAN):
1058 CASE_FLT_FN (BUILT_IN_TANH):
1059 CASE_FLT_FN (BUILT_IN_TRUNC):
1060 return true;
1062 CASE_FLT_FN (BUILT_IN_LLRINT):
1063 CASE_FLT_FN (BUILT_IN_LRINT):
1064 CASE_FLT_FN (BUILT_IN_NEARBYINT):
1065 CASE_FLT_FN (BUILT_IN_RINT):
1066 return !flag_rounding_math;
1068 default:
1069 break;
1071 return false;
1074 /* Check whether we may negate an integer constant T without causing
1075 overflow. */
1077 bool
1078 may_negate_without_overflow_p (const_tree t)
1080 unsigned HOST_WIDE_INT val;
1081 unsigned int prec;
1082 tree type;
1084 gcc_assert (TREE_CODE (t) == INTEGER_CST);
1086 type = TREE_TYPE (t);
1087 if (TYPE_UNSIGNED (type))
1088 return false;
1090 prec = TYPE_PRECISION (type);
1091 if (prec > HOST_BITS_PER_WIDE_INT)
1093 if (TREE_INT_CST_LOW (t) != 0)
1094 return true;
1095 prec -= HOST_BITS_PER_WIDE_INT;
1096 val = TREE_INT_CST_HIGH (t);
1098 else
1099 val = TREE_INT_CST_LOW (t);
1100 if (prec < HOST_BITS_PER_WIDE_INT)
1101 val &= ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
1102 return val != ((unsigned HOST_WIDE_INT) 1 << (prec - 1));
1105 /* Determine whether an expression T can be cheaply negated using
1106 the function negate_expr without introducing undefined overflow. */
1108 static bool
1109 negate_expr_p (tree t)
1111 tree type;
1113 if (t == 0)
1114 return false;
1116 type = TREE_TYPE (t);
1118 STRIP_SIGN_NOPS (t);
1119 switch (TREE_CODE (t))
1121 case INTEGER_CST:
1122 if (TYPE_OVERFLOW_WRAPS (type))
1123 return true;
1125 /* Check that -CST will not overflow type. */
1126 return may_negate_without_overflow_p (t);
1127 case BIT_NOT_EXPR:
1128 return (INTEGRAL_TYPE_P (type)
1129 && TYPE_OVERFLOW_WRAPS (type));
1131 case FIXED_CST:
1132 case REAL_CST:
1133 case NEGATE_EXPR:
1134 return true;
1136 case COMPLEX_CST:
1137 return negate_expr_p (TREE_REALPART (t))
1138 && negate_expr_p (TREE_IMAGPART (t));
1140 case COMPLEX_EXPR:
1141 return negate_expr_p (TREE_OPERAND (t, 0))
1142 && negate_expr_p (TREE_OPERAND (t, 1));
1144 case CONJ_EXPR:
1145 return negate_expr_p (TREE_OPERAND (t, 0));
1147 case PLUS_EXPR:
1148 if (HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type))
1149 || HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
1150 return false;
1151 /* -(A + B) -> (-B) - A. */
1152 if (negate_expr_p (TREE_OPERAND (t, 1))
1153 && reorder_operands_p (TREE_OPERAND (t, 0),
1154 TREE_OPERAND (t, 1)))
1155 return true;
1156 /* -(A + B) -> (-A) - B. */
1157 return negate_expr_p (TREE_OPERAND (t, 0));
1159 case MINUS_EXPR:
1160 /* We can't turn -(A-B) into B-A when we honor signed zeros. */
1161 return !HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type))
1162 && !HONOR_SIGNED_ZEROS (TYPE_MODE (type))
1163 && reorder_operands_p (TREE_OPERAND (t, 0),
1164 TREE_OPERAND (t, 1));
1166 case MULT_EXPR:
1167 if (TYPE_UNSIGNED (TREE_TYPE (t)))
1168 break;
1170 /* Fall through. */
1172 case RDIV_EXPR:
1173 if (! HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (TREE_TYPE (t))))
1174 return negate_expr_p (TREE_OPERAND (t, 1))
1175 || negate_expr_p (TREE_OPERAND (t, 0));
1176 break;
1178 case TRUNC_DIV_EXPR:
1179 case ROUND_DIV_EXPR:
1180 case FLOOR_DIV_EXPR:
1181 case CEIL_DIV_EXPR:
1182 case EXACT_DIV_EXPR:
1183 /* In general we can't negate A / B, because if A is INT_MIN and
1184 B is 1, we may turn this into INT_MIN / -1 which is undefined
1185 and actually traps on some architectures. But if overflow is
1186 undefined, we can negate, because - (INT_MIN / 1) is an
1187 overflow. */
1188 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
1189 && !TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (t)))
1190 break;
1191 return negate_expr_p (TREE_OPERAND (t, 1))
1192 || negate_expr_p (TREE_OPERAND (t, 0));
1194 case NOP_EXPR:
1195 /* Negate -((double)float) as (double)(-float). */
1196 if (TREE_CODE (type) == REAL_TYPE)
1198 tree tem = strip_float_extensions (t);
1199 if (tem != t)
1200 return negate_expr_p (tem);
1202 break;
1204 case CALL_EXPR:
1205 /* Negate -f(x) as f(-x). */
1206 if (negate_mathfn_p (builtin_mathfn_code (t)))
1207 return negate_expr_p (CALL_EXPR_ARG (t, 0));
1208 break;
1210 case RSHIFT_EXPR:
1211 /* Optimize -((int)x >> 31) into (unsigned)x >> 31. */
1212 if (TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST)
1214 tree op1 = TREE_OPERAND (t, 1);
1215 if (TREE_INT_CST_HIGH (op1) == 0
1216 && (unsigned HOST_WIDE_INT) (TYPE_PRECISION (type) - 1)
1217 == TREE_INT_CST_LOW (op1))
1218 return true;
1220 break;
1222 default:
1223 break;
1225 return false;
1228 /* Given T, an expression, return a folded tree for -T or NULL_TREE, if no
1229 simplification is possible.
1230 If negate_expr_p would return true for T, NULL_TREE will never be
1231 returned. */
1233 static tree
1234 fold_negate_expr (tree t)
1236 tree type = TREE_TYPE (t);
1237 tree tem;
1239 switch (TREE_CODE (t))
1241 /* Convert - (~A) to A + 1. */
1242 case BIT_NOT_EXPR:
1243 if (INTEGRAL_TYPE_P (type))
1244 return fold_build2 (PLUS_EXPR, type, TREE_OPERAND (t, 0),
1245 build_int_cst (type, 1));
1246 break;
1248 case INTEGER_CST:
1249 tem = fold_negate_const (t, type);
1250 if (TREE_OVERFLOW (tem) == TREE_OVERFLOW (t)
1251 || !TYPE_OVERFLOW_TRAPS (type))
1252 return tem;
1253 break;
1255 case REAL_CST:
1256 tem = fold_negate_const (t, type);
1257 /* Two's complement FP formats, such as c4x, may overflow. */
1258 if (!TREE_OVERFLOW (tem) || !flag_trapping_math)
1259 return tem;
1260 break;
1262 case FIXED_CST:
1263 tem = fold_negate_const (t, type);
1264 return tem;
1266 case COMPLEX_CST:
1268 tree rpart = negate_expr (TREE_REALPART (t));
1269 tree ipart = negate_expr (TREE_IMAGPART (t));
1271 if ((TREE_CODE (rpart) == REAL_CST
1272 && TREE_CODE (ipart) == REAL_CST)
1273 || (TREE_CODE (rpart) == INTEGER_CST
1274 && TREE_CODE (ipart) == INTEGER_CST))
1275 return build_complex (type, rpart, ipart);
1277 break;
1279 case COMPLEX_EXPR:
1280 if (negate_expr_p (t))
1281 return fold_build2 (COMPLEX_EXPR, type,
1282 fold_negate_expr (TREE_OPERAND (t, 0)),
1283 fold_negate_expr (TREE_OPERAND (t, 1)));
1284 break;
1286 case CONJ_EXPR:
1287 if (negate_expr_p (t))
1288 return fold_build1 (CONJ_EXPR, type,
1289 fold_negate_expr (TREE_OPERAND (t, 0)));
1290 break;
1292 case NEGATE_EXPR:
1293 return TREE_OPERAND (t, 0);
1295 case PLUS_EXPR:
1296 if (!HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type))
1297 && !HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
1299 /* -(A + B) -> (-B) - A. */
1300 if (negate_expr_p (TREE_OPERAND (t, 1))
1301 && reorder_operands_p (TREE_OPERAND (t, 0),
1302 TREE_OPERAND (t, 1)))
1304 tem = negate_expr (TREE_OPERAND (t, 1));
1305 return fold_build2 (MINUS_EXPR, type,
1306 tem, TREE_OPERAND (t, 0));
1309 /* -(A + B) -> (-A) - B. */
1310 if (negate_expr_p (TREE_OPERAND (t, 0)))
1312 tem = negate_expr (TREE_OPERAND (t, 0));
1313 return fold_build2 (MINUS_EXPR, type,
1314 tem, TREE_OPERAND (t, 1));
1317 break;
1319 case MINUS_EXPR:
1320 /* - (A - B) -> B - A */
1321 if (!HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type))
1322 && !HONOR_SIGNED_ZEROS (TYPE_MODE (type))
1323 && reorder_operands_p (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1)))
1324 return fold_build2 (MINUS_EXPR, type,
1325 TREE_OPERAND (t, 1), TREE_OPERAND (t, 0));
1326 break;
1328 case MULT_EXPR:
1329 if (TYPE_UNSIGNED (type))
1330 break;
1332 /* Fall through. */
1334 case RDIV_EXPR:
1335 if (! HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type)))
1337 tem = TREE_OPERAND (t, 1);
1338 if (negate_expr_p (tem))
1339 return fold_build2 (TREE_CODE (t), type,
1340 TREE_OPERAND (t, 0), negate_expr (tem));
1341 tem = TREE_OPERAND (t, 0);
1342 if (negate_expr_p (tem))
1343 return fold_build2 (TREE_CODE (t), type,
1344 negate_expr (tem), TREE_OPERAND (t, 1));
1346 break;
1348 case TRUNC_DIV_EXPR:
1349 case ROUND_DIV_EXPR:
1350 case FLOOR_DIV_EXPR:
1351 case CEIL_DIV_EXPR:
1352 case EXACT_DIV_EXPR:
1353 /* In general we can't negate A / B, because if A is INT_MIN and
1354 B is 1, we may turn this into INT_MIN / -1 which is undefined
1355 and actually traps on some architectures. But if overflow is
1356 undefined, we can negate, because - (INT_MIN / 1) is an
1357 overflow. */
1358 if (!INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_UNDEFINED (type))
1360 const char * const warnmsg = G_("assuming signed overflow does not "
1361 "occur when negating a division");
1362 tem = TREE_OPERAND (t, 1);
1363 if (negate_expr_p (tem))
1365 if (INTEGRAL_TYPE_P (type)
1366 && (TREE_CODE (tem) != INTEGER_CST
1367 || integer_onep (tem)))
1368 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MISC);
1369 return fold_build2 (TREE_CODE (t), type,
1370 TREE_OPERAND (t, 0), negate_expr (tem));
1372 tem = TREE_OPERAND (t, 0);
1373 if (negate_expr_p (tem))
1375 if (INTEGRAL_TYPE_P (type)
1376 && (TREE_CODE (tem) != INTEGER_CST
1377 || tree_int_cst_equal (tem, TYPE_MIN_VALUE (type))))
1378 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MISC);
1379 return fold_build2 (TREE_CODE (t), type,
1380 negate_expr (tem), TREE_OPERAND (t, 1));
1383 break;
1385 case NOP_EXPR:
1386 /* Convert -((double)float) into (double)(-float). */
1387 if (TREE_CODE (type) == REAL_TYPE)
1389 tem = strip_float_extensions (t);
1390 if (tem != t && negate_expr_p (tem))
1391 return fold_convert (type, negate_expr (tem));
1393 break;
1395 case CALL_EXPR:
1396 /* Negate -f(x) as f(-x). */
1397 if (negate_mathfn_p (builtin_mathfn_code (t))
1398 && negate_expr_p (CALL_EXPR_ARG (t, 0)))
1400 tree fndecl, arg;
1402 fndecl = get_callee_fndecl (t);
1403 arg = negate_expr (CALL_EXPR_ARG (t, 0));
1404 return build_call_expr (fndecl, 1, arg);
1406 break;
1408 case RSHIFT_EXPR:
1409 /* Optimize -((int)x >> 31) into (unsigned)x >> 31. */
1410 if (TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST)
1412 tree op1 = TREE_OPERAND (t, 1);
1413 if (TREE_INT_CST_HIGH (op1) == 0
1414 && (unsigned HOST_WIDE_INT) (TYPE_PRECISION (type) - 1)
1415 == TREE_INT_CST_LOW (op1))
1417 tree ntype = TYPE_UNSIGNED (type)
1418 ? signed_type_for (type)
1419 : unsigned_type_for (type);
1420 tree temp = fold_convert (ntype, TREE_OPERAND (t, 0));
1421 temp = fold_build2 (RSHIFT_EXPR, ntype, temp, op1);
1422 return fold_convert (type, temp);
1425 break;
1427 default:
1428 break;
1431 return NULL_TREE;
1434 /* Like fold_negate_expr, but return a NEGATE_EXPR tree, if T can not be
1435 negated in a simpler way. Also allow for T to be NULL_TREE, in which case
1436 return NULL_TREE. */
1438 static tree
1439 negate_expr (tree t)
1441 tree type, tem;
1443 if (t == NULL_TREE)
1444 return NULL_TREE;
1446 type = TREE_TYPE (t);
1447 STRIP_SIGN_NOPS (t);
1449 tem = fold_negate_expr (t);
1450 if (!tem)
1451 tem = build1 (NEGATE_EXPR, TREE_TYPE (t), t);
1452 return fold_convert (type, tem);
1455 /* Split a tree IN into a constant, literal and variable parts that could be
1456 combined with CODE to make IN. "constant" means an expression with
1457 TREE_CONSTANT but that isn't an actual constant. CODE must be a
1458 commutative arithmetic operation. Store the constant part into *CONP,
1459 the literal in *LITP and return the variable part. If a part isn't
1460 present, set it to null. If the tree does not decompose in this way,
1461 return the entire tree as the variable part and the other parts as null.
1463 If CODE is PLUS_EXPR we also split trees that use MINUS_EXPR. In that
1464 case, we negate an operand that was subtracted. Except if it is a
1465 literal for which we use *MINUS_LITP instead.
1467 If NEGATE_P is true, we are negating all of IN, again except a literal
1468 for which we use *MINUS_LITP instead.
1470 If IN is itself a literal or constant, return it as appropriate.
1472 Note that we do not guarantee that any of the three values will be the
1473 same type as IN, but they will have the same signedness and mode. */
1475 static tree
1476 split_tree (tree in, enum tree_code code, tree *conp, tree *litp,
1477 tree *minus_litp, int negate_p)
1479 tree var = 0;
1481 *conp = 0;
1482 *litp = 0;
1483 *minus_litp = 0;
1485 /* Strip any conversions that don't change the machine mode or signedness. */
1486 STRIP_SIGN_NOPS (in);
1488 if (TREE_CODE (in) == INTEGER_CST || TREE_CODE (in) == REAL_CST
1489 || TREE_CODE (in) == FIXED_CST)
1490 *litp = in;
1491 else if (TREE_CODE (in) == code
1492 || ((! FLOAT_TYPE_P (TREE_TYPE (in)) || flag_associative_math)
1493 && ! SAT_FIXED_POINT_TYPE_P (TREE_TYPE (in))
1494 /* We can associate addition and subtraction together (even
1495 though the C standard doesn't say so) for integers because
1496 the value is not affected. For reals, the value might be
1497 affected, so we can't. */
1498 && ((code == PLUS_EXPR && TREE_CODE (in) == MINUS_EXPR)
1499 || (code == MINUS_EXPR && TREE_CODE (in) == PLUS_EXPR))))
1501 tree op0 = TREE_OPERAND (in, 0);
1502 tree op1 = TREE_OPERAND (in, 1);
1503 int neg1_p = TREE_CODE (in) == MINUS_EXPR;
1504 int neg_litp_p = 0, neg_conp_p = 0, neg_var_p = 0;
1506 /* First see if either of the operands is a literal, then a constant. */
1507 if (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST
1508 || TREE_CODE (op0) == FIXED_CST)
1509 *litp = op0, op0 = 0;
1510 else if (TREE_CODE (op1) == INTEGER_CST || TREE_CODE (op1) == REAL_CST
1511 || TREE_CODE (op1) == FIXED_CST)
1512 *litp = op1, neg_litp_p = neg1_p, op1 = 0;
1514 if (op0 != 0 && TREE_CONSTANT (op0))
1515 *conp = op0, op0 = 0;
1516 else if (op1 != 0 && TREE_CONSTANT (op1))
1517 *conp = op1, neg_conp_p = neg1_p, op1 = 0;
1519 /* If we haven't dealt with either operand, this is not a case we can
1520 decompose. Otherwise, VAR is either of the ones remaining, if any. */
1521 if (op0 != 0 && op1 != 0)
1522 var = in;
1523 else if (op0 != 0)
1524 var = op0;
1525 else
1526 var = op1, neg_var_p = neg1_p;
1528 /* Now do any needed negations. */
1529 if (neg_litp_p)
1530 *minus_litp = *litp, *litp = 0;
1531 if (neg_conp_p)
1532 *conp = negate_expr (*conp);
1533 if (neg_var_p)
1534 var = negate_expr (var);
1536 else if (TREE_CONSTANT (in))
1537 *conp = in;
1538 else
1539 var = in;
1541 if (negate_p)
1543 if (*litp)
1544 *minus_litp = *litp, *litp = 0;
1545 else if (*minus_litp)
1546 *litp = *minus_litp, *minus_litp = 0;
1547 *conp = negate_expr (*conp);
1548 var = negate_expr (var);
1551 return var;
1554 /* Re-associate trees split by the above function. T1 and T2 are either
1555 expressions to associate or null. Return the new expression, if any. If
1556 we build an operation, do it in TYPE and with CODE. */
1558 static tree
1559 associate_trees (tree t1, tree t2, enum tree_code code, tree type)
1561 if (t1 == 0)
1562 return t2;
1563 else if (t2 == 0)
1564 return t1;
1566 /* If either input is CODE, a PLUS_EXPR, or a MINUS_EXPR, don't
1567 try to fold this since we will have infinite recursion. But do
1568 deal with any NEGATE_EXPRs. */
1569 if (TREE_CODE (t1) == code || TREE_CODE (t2) == code
1570 || TREE_CODE (t1) == MINUS_EXPR || TREE_CODE (t2) == MINUS_EXPR)
1572 if (code == PLUS_EXPR)
1574 if (TREE_CODE (t1) == NEGATE_EXPR)
1575 return build2 (MINUS_EXPR, type, fold_convert (type, t2),
1576 fold_convert (type, TREE_OPERAND (t1, 0)));
1577 else if (TREE_CODE (t2) == NEGATE_EXPR)
1578 return build2 (MINUS_EXPR, type, fold_convert (type, t1),
1579 fold_convert (type, TREE_OPERAND (t2, 0)));
1580 else if (integer_zerop (t2))
1581 return fold_convert (type, t1);
1583 else if (code == MINUS_EXPR)
1585 if (integer_zerop (t2))
1586 return fold_convert (type, t1);
1589 return build2 (code, type, fold_convert (type, t1),
1590 fold_convert (type, t2));
1593 return fold_build2 (code, type, fold_convert (type, t1),
1594 fold_convert (type, t2));
1597 /* Check whether TYPE1 and TYPE2 are equivalent integer types, suitable
1598 for use in int_const_binop, size_binop and size_diffop. */
1600 static bool
1601 int_binop_types_match_p (enum tree_code code, const_tree type1, const_tree type2)
1603 if (TREE_CODE (type1) != INTEGER_TYPE && !POINTER_TYPE_P (type1))
1604 return false;
1605 if (TREE_CODE (type2) != INTEGER_TYPE && !POINTER_TYPE_P (type2))
1606 return false;
1608 switch (code)
1610 case LSHIFT_EXPR:
1611 case RSHIFT_EXPR:
1612 case LROTATE_EXPR:
1613 case RROTATE_EXPR:
1614 return true;
1616 default:
1617 break;
1620 return TYPE_UNSIGNED (type1) == TYPE_UNSIGNED (type2)
1621 && TYPE_PRECISION (type1) == TYPE_PRECISION (type2)
1622 && TYPE_MODE (type1) == TYPE_MODE (type2);
1626 /* Combine two integer constants ARG1 and ARG2 under operation CODE
1627 to produce a new constant. Return NULL_TREE if we don't know how
1628 to evaluate CODE at compile-time.
1630 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1632 tree
1633 int_const_binop (enum tree_code code, const_tree arg1, const_tree arg2, int notrunc)
1635 unsigned HOST_WIDE_INT int1l, int2l;
1636 HOST_WIDE_INT int1h, int2h;
1637 unsigned HOST_WIDE_INT low;
1638 HOST_WIDE_INT hi;
1639 unsigned HOST_WIDE_INT garbagel;
1640 HOST_WIDE_INT garbageh;
1641 tree t;
1642 tree type = TREE_TYPE (arg1);
1643 int uns = TYPE_UNSIGNED (type);
1644 int is_sizetype
1645 = (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type));
1646 int overflow = 0;
1648 int1l = TREE_INT_CST_LOW (arg1);
1649 int1h = TREE_INT_CST_HIGH (arg1);
1650 int2l = TREE_INT_CST_LOW (arg2);
1651 int2h = TREE_INT_CST_HIGH (arg2);
1653 switch (code)
1655 case BIT_IOR_EXPR:
1656 low = int1l | int2l, hi = int1h | int2h;
1657 break;
1659 case BIT_XOR_EXPR:
1660 low = int1l ^ int2l, hi = int1h ^ int2h;
1661 break;
1663 case BIT_AND_EXPR:
1664 low = int1l & int2l, hi = int1h & int2h;
1665 break;
1667 case RSHIFT_EXPR:
1668 int2l = -int2l;
1669 case LSHIFT_EXPR:
1670 /* It's unclear from the C standard whether shifts can overflow.
1671 The following code ignores overflow; perhaps a C standard
1672 interpretation ruling is needed. */
1673 lshift_double (int1l, int1h, int2l, TYPE_PRECISION (type),
1674 &low, &hi, !uns);
1675 break;
1677 case RROTATE_EXPR:
1678 int2l = - int2l;
1679 case LROTATE_EXPR:
1680 lrotate_double (int1l, int1h, int2l, TYPE_PRECISION (type),
1681 &low, &hi);
1682 break;
1684 case PLUS_EXPR:
1685 overflow = add_double (int1l, int1h, int2l, int2h, &low, &hi);
1686 break;
1688 case MINUS_EXPR:
1689 neg_double (int2l, int2h, &low, &hi);
1690 add_double (int1l, int1h, low, hi, &low, &hi);
1691 overflow = OVERFLOW_SUM_SIGN (hi, int2h, int1h);
1692 break;
1694 case MULT_EXPR:
1695 overflow = mul_double (int1l, int1h, int2l, int2h, &low, &hi);
1696 break;
1698 case TRUNC_DIV_EXPR:
1699 case FLOOR_DIV_EXPR: case CEIL_DIV_EXPR:
1700 case EXACT_DIV_EXPR:
1701 /* This is a shortcut for a common special case. */
1702 if (int2h == 0 && (HOST_WIDE_INT) int2l > 0
1703 && !TREE_OVERFLOW (arg1)
1704 && !TREE_OVERFLOW (arg2)
1705 && int1h == 0 && (HOST_WIDE_INT) int1l >= 0)
1707 if (code == CEIL_DIV_EXPR)
1708 int1l += int2l - 1;
1710 low = int1l / int2l, hi = 0;
1711 break;
1714 /* ... fall through ... */
1716 case ROUND_DIV_EXPR:
1717 if (int2h == 0 && int2l == 0)
1718 return NULL_TREE;
1719 if (int2h == 0 && int2l == 1)
1721 low = int1l, hi = int1h;
1722 break;
1724 if (int1l == int2l && int1h == int2h
1725 && ! (int1l == 0 && int1h == 0))
1727 low = 1, hi = 0;
1728 break;
1730 overflow = div_and_round_double (code, uns, int1l, int1h, int2l, int2h,
1731 &low, &hi, &garbagel, &garbageh);
1732 break;
1734 case TRUNC_MOD_EXPR:
1735 case FLOOR_MOD_EXPR: case CEIL_MOD_EXPR:
1736 /* This is a shortcut for a common special case. */
1737 if (int2h == 0 && (HOST_WIDE_INT) int2l > 0
1738 && !TREE_OVERFLOW (arg1)
1739 && !TREE_OVERFLOW (arg2)
1740 && int1h == 0 && (HOST_WIDE_INT) int1l >= 0)
1742 if (code == CEIL_MOD_EXPR)
1743 int1l += int2l - 1;
1744 low = int1l % int2l, hi = 0;
1745 break;
1748 /* ... fall through ... */
1750 case ROUND_MOD_EXPR:
1751 if (int2h == 0 && int2l == 0)
1752 return NULL_TREE;
1753 overflow = div_and_round_double (code, uns,
1754 int1l, int1h, int2l, int2h,
1755 &garbagel, &garbageh, &low, &hi);
1756 break;
1758 case MIN_EXPR:
1759 case MAX_EXPR:
1760 if (uns)
1761 low = (((unsigned HOST_WIDE_INT) int1h
1762 < (unsigned HOST_WIDE_INT) int2h)
1763 || (((unsigned HOST_WIDE_INT) int1h
1764 == (unsigned HOST_WIDE_INT) int2h)
1765 && int1l < int2l));
1766 else
1767 low = (int1h < int2h
1768 || (int1h == int2h && int1l < int2l));
1770 if (low == (code == MIN_EXPR))
1771 low = int1l, hi = int1h;
1772 else
1773 low = int2l, hi = int2h;
1774 break;
1776 default:
1777 return NULL_TREE;
1780 if (notrunc)
1782 t = build_int_cst_wide (TREE_TYPE (arg1), low, hi);
1784 /* Propagate overflow flags ourselves. */
1785 if (((!uns || is_sizetype) && overflow)
1786 | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2))
1788 t = copy_node (t);
1789 TREE_OVERFLOW (t) = 1;
1792 else
1793 t = force_fit_type_double (TREE_TYPE (arg1), low, hi, 1,
1794 ((!uns || is_sizetype) && overflow)
1795 | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2));
1797 return t;
1800 /* Combine two constants ARG1 and ARG2 under operation CODE to produce a new
1801 constant. We assume ARG1 and ARG2 have the same data type, or at least
1802 are the same kind of constant and the same machine mode. Return zero if
1803 combining the constants is not allowed in the current operating mode.
1805 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1807 static tree
1808 const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
1810 /* Sanity check for the recursive cases. */
1811 if (!arg1 || !arg2)
1812 return NULL_TREE;
1814 STRIP_NOPS (arg1);
1815 STRIP_NOPS (arg2);
1817 if (TREE_CODE (arg1) == INTEGER_CST)
1818 return int_const_binop (code, arg1, arg2, notrunc);
1820 if (TREE_CODE (arg1) == REAL_CST)
1822 enum machine_mode mode;
1823 REAL_VALUE_TYPE d1;
1824 REAL_VALUE_TYPE d2;
1825 REAL_VALUE_TYPE value;
1826 REAL_VALUE_TYPE result;
1827 bool inexact;
1828 tree t, type;
1830 /* The following codes are handled by real_arithmetic. */
1831 switch (code)
1833 case PLUS_EXPR:
1834 case MINUS_EXPR:
1835 case MULT_EXPR:
1836 case RDIV_EXPR:
1837 case MIN_EXPR:
1838 case MAX_EXPR:
1839 break;
1841 default:
1842 return NULL_TREE;
1845 d1 = TREE_REAL_CST (arg1);
1846 d2 = TREE_REAL_CST (arg2);
1848 type = TREE_TYPE (arg1);
1849 mode = TYPE_MODE (type);
1851 /* Don't perform operation if we honor signaling NaNs and
1852 either operand is a NaN. */
1853 if (HONOR_SNANS (mode)
1854 && (REAL_VALUE_ISNAN (d1) || REAL_VALUE_ISNAN (d2)))
1855 return NULL_TREE;
1857 /* Don't perform operation if it would raise a division
1858 by zero exception. */
1859 if (code == RDIV_EXPR
1860 && REAL_VALUES_EQUAL (d2, dconst0)
1861 && (flag_trapping_math || ! MODE_HAS_INFINITIES (mode)))
1862 return NULL_TREE;
1864 /* If either operand is a NaN, just return it. Otherwise, set up
1865 for floating-point trap; we return an overflow. */
1866 if (REAL_VALUE_ISNAN (d1))
1867 return arg1;
1868 else if (REAL_VALUE_ISNAN (d2))
1869 return arg2;
1871 inexact = real_arithmetic (&value, code, &d1, &d2);
1872 real_convert (&result, mode, &value);
1874 /* Don't constant fold this floating point operation if
1875 the result has overflowed and flag_trapping_math. */
1876 if (flag_trapping_math
1877 && MODE_HAS_INFINITIES (mode)
1878 && REAL_VALUE_ISINF (result)
1879 && !REAL_VALUE_ISINF (d1)
1880 && !REAL_VALUE_ISINF (d2))
1881 return NULL_TREE;
1883 /* Don't constant fold this floating point operation if the
1884 result may dependent upon the run-time rounding mode and
1885 flag_rounding_math is set, or if GCC's software emulation
1886 is unable to accurately represent the result. */
1887 if ((flag_rounding_math
1888 || (REAL_MODE_FORMAT_COMPOSITE_P (mode)
1889 && !flag_unsafe_math_optimizations))
1890 && (inexact || !real_identical (&result, &value)))
1891 return NULL_TREE;
1893 t = build_real (type, result);
1895 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2);
1896 return t;
1899 if (TREE_CODE (arg1) == FIXED_CST)
1901 FIXED_VALUE_TYPE f1;
1902 FIXED_VALUE_TYPE f2;
1903 FIXED_VALUE_TYPE result;
1904 tree t, type;
1905 int sat_p;
1906 bool overflow_p;
1908 /* The following codes are handled by fixed_arithmetic. */
1909 switch (code)
1911 case PLUS_EXPR:
1912 case MINUS_EXPR:
1913 case MULT_EXPR:
1914 case TRUNC_DIV_EXPR:
1915 f2 = TREE_FIXED_CST (arg2);
1916 break;
1918 case LSHIFT_EXPR:
1919 case RSHIFT_EXPR:
1920 f2.data.high = TREE_INT_CST_HIGH (arg2);
1921 f2.data.low = TREE_INT_CST_LOW (arg2);
1922 f2.mode = SImode;
1923 break;
1925 default:
1926 return NULL_TREE;
1929 f1 = TREE_FIXED_CST (arg1);
1930 type = TREE_TYPE (arg1);
1931 sat_p = TYPE_SATURATING (type);
1932 overflow_p = fixed_arithmetic (&result, code, &f1, &f2, sat_p);
1933 t = build_fixed (type, result);
1934 /* Propagate overflow flags. */
1935 if (overflow_p | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2))
1937 TREE_OVERFLOW (t) = 1;
1938 TREE_CONSTANT_OVERFLOW (t) = 1;
1940 else if (TREE_CONSTANT_OVERFLOW (arg1) | TREE_CONSTANT_OVERFLOW (arg2))
1941 TREE_CONSTANT_OVERFLOW (t) = 1;
1942 return t;
1945 if (TREE_CODE (arg1) == COMPLEX_CST)
1947 tree type = TREE_TYPE (arg1);
1948 tree r1 = TREE_REALPART (arg1);
1949 tree i1 = TREE_IMAGPART (arg1);
1950 tree r2 = TREE_REALPART (arg2);
1951 tree i2 = TREE_IMAGPART (arg2);
1952 tree real, imag;
1954 switch (code)
1956 case PLUS_EXPR:
1957 case MINUS_EXPR:
1958 real = const_binop (code, r1, r2, notrunc);
1959 imag = const_binop (code, i1, i2, notrunc);
1960 break;
1962 case MULT_EXPR:
1963 real = const_binop (MINUS_EXPR,
1964 const_binop (MULT_EXPR, r1, r2, notrunc),
1965 const_binop (MULT_EXPR, i1, i2, notrunc),
1966 notrunc);
1967 imag = const_binop (PLUS_EXPR,
1968 const_binop (MULT_EXPR, r1, i2, notrunc),
1969 const_binop (MULT_EXPR, i1, r2, notrunc),
1970 notrunc);
1971 break;
1973 case RDIV_EXPR:
1975 tree magsquared
1976 = const_binop (PLUS_EXPR,
1977 const_binop (MULT_EXPR, r2, r2, notrunc),
1978 const_binop (MULT_EXPR, i2, i2, notrunc),
1979 notrunc);
1980 tree t1
1981 = const_binop (PLUS_EXPR,
1982 const_binop (MULT_EXPR, r1, r2, notrunc),
1983 const_binop (MULT_EXPR, i1, i2, notrunc),
1984 notrunc);
1985 tree t2
1986 = const_binop (MINUS_EXPR,
1987 const_binop (MULT_EXPR, i1, r2, notrunc),
1988 const_binop (MULT_EXPR, r1, i2, notrunc),
1989 notrunc);
1991 if (INTEGRAL_TYPE_P (TREE_TYPE (r1)))
1992 code = TRUNC_DIV_EXPR;
1994 real = const_binop (code, t1, magsquared, notrunc);
1995 imag = const_binop (code, t2, magsquared, notrunc);
1997 break;
1999 default:
2000 return NULL_TREE;
2003 if (real && imag)
2004 return build_complex (type, real, imag);
2007 return NULL_TREE;
2010 /* Create a size type INT_CST node with NUMBER sign extended. KIND
2011 indicates which particular sizetype to create. */
2013 tree
2014 size_int_kind (HOST_WIDE_INT number, enum size_type_kind kind)
2016 return build_int_cst (sizetype_tab[(int) kind], number);
2019 /* Combine operands OP1 and OP2 with arithmetic operation CODE. CODE
2020 is a tree code. The type of the result is taken from the operands.
2021 Both must be equivalent integer types, ala int_binop_types_match_p.
2022 If the operands are constant, so is the result. */
2024 tree
2025 size_binop (enum tree_code code, tree arg0, tree arg1)
2027 tree type = TREE_TYPE (arg0);
2029 if (arg0 == error_mark_node || arg1 == error_mark_node)
2030 return error_mark_node;
2032 gcc_assert (int_binop_types_match_p (code, TREE_TYPE (arg0),
2033 TREE_TYPE (arg1)));
2035 /* Handle the special case of two integer constants faster. */
2036 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
2038 /* And some specific cases even faster than that. */
2039 if (code == PLUS_EXPR)
2041 if (integer_zerop (arg0) && !TREE_OVERFLOW (arg0))
2042 return arg1;
2043 if (integer_zerop (arg1) && !TREE_OVERFLOW (arg1))
2044 return arg0;
2046 else if (code == MINUS_EXPR)
2048 if (integer_zerop (arg1) && !TREE_OVERFLOW (arg1))
2049 return arg0;
2051 else if (code == MULT_EXPR)
2053 if (integer_onep (arg0) && !TREE_OVERFLOW (arg0))
2054 return arg1;
2057 /* Handle general case of two integer constants. */
2058 return int_const_binop (code, arg0, arg1, 0);
2061 return fold_build2 (code, type, arg0, arg1);
2064 /* Given two values, either both of sizetype or both of bitsizetype,
2065 compute the difference between the two values. Return the value
2066 in signed type corresponding to the type of the operands. */
2068 tree
2069 size_diffop (tree arg0, tree arg1)
2071 tree type = TREE_TYPE (arg0);
2072 tree ctype;
2074 gcc_assert (int_binop_types_match_p (MINUS_EXPR, TREE_TYPE (arg0),
2075 TREE_TYPE (arg1)));
2077 /* If the type is already signed, just do the simple thing. */
2078 if (!TYPE_UNSIGNED (type))
2079 return size_binop (MINUS_EXPR, arg0, arg1);
2081 if (type == sizetype)
2082 ctype = ssizetype;
2083 else if (type == bitsizetype)
2084 ctype = sbitsizetype;
2085 else
2086 ctype = signed_type_for (type);
2088 /* If either operand is not a constant, do the conversions to the signed
2089 type and subtract. The hardware will do the right thing with any
2090 overflow in the subtraction. */
2091 if (TREE_CODE (arg0) != INTEGER_CST || TREE_CODE (arg1) != INTEGER_CST)
2092 return size_binop (MINUS_EXPR, fold_convert (ctype, arg0),
2093 fold_convert (ctype, arg1));
2095 /* If ARG0 is larger than ARG1, subtract and return the result in CTYPE.
2096 Otherwise, subtract the other way, convert to CTYPE (we know that can't
2097 overflow) and negate (which can't either). Special-case a result
2098 of zero while we're here. */
2099 if (tree_int_cst_equal (arg0, arg1))
2100 return build_int_cst (ctype, 0);
2101 else if (tree_int_cst_lt (arg1, arg0))
2102 return fold_convert (ctype, size_binop (MINUS_EXPR, arg0, arg1));
2103 else
2104 return size_binop (MINUS_EXPR, build_int_cst (ctype, 0),
2105 fold_convert (ctype, size_binop (MINUS_EXPR,
2106 arg1, arg0)));
2109 /* A subroutine of fold_convert_const handling conversions of an
2110 INTEGER_CST to another integer type. */
2112 static tree
2113 fold_convert_const_int_from_int (tree type, const_tree arg1)
2115 tree t;
2117 /* Given an integer constant, make new constant with new type,
2118 appropriately sign-extended or truncated. */
2119 t = force_fit_type_double (type, TREE_INT_CST_LOW (arg1),
2120 TREE_INT_CST_HIGH (arg1),
2121 /* Don't set the overflow when
2122 converting from a pointer, */
2123 !POINTER_TYPE_P (TREE_TYPE (arg1))
2124 /* or to a sizetype with same signedness
2125 and the precision is unchanged.
2126 ??? sizetype is always sign-extended,
2127 but its signedness depends on the
2128 frontend. Thus we see spurious overflows
2129 here if we do not check this. */
2130 && !((TYPE_PRECISION (TREE_TYPE (arg1))
2131 == TYPE_PRECISION (type))
2132 && (TYPE_UNSIGNED (TREE_TYPE (arg1))
2133 == TYPE_UNSIGNED (type))
2134 && ((TREE_CODE (TREE_TYPE (arg1)) == INTEGER_TYPE
2135 && TYPE_IS_SIZETYPE (TREE_TYPE (arg1)))
2136 || (TREE_CODE (type) == INTEGER_TYPE
2137 && TYPE_IS_SIZETYPE (type)))),
2138 (TREE_INT_CST_HIGH (arg1) < 0
2139 && (TYPE_UNSIGNED (type)
2140 < TYPE_UNSIGNED (TREE_TYPE (arg1))))
2141 | TREE_OVERFLOW (arg1));
2143 return t;
2146 /* A subroutine of fold_convert_const handling conversions a REAL_CST
2147 to an integer type. */
2149 static tree
2150 fold_convert_const_int_from_real (enum tree_code code, tree type, const_tree arg1)
2152 int overflow = 0;
2153 tree t;
2155 /* The following code implements the floating point to integer
2156 conversion rules required by the Java Language Specification,
2157 that IEEE NaNs are mapped to zero and values that overflow
2158 the target precision saturate, i.e. values greater than
2159 INT_MAX are mapped to INT_MAX, and values less than INT_MIN
2160 are mapped to INT_MIN. These semantics are allowed by the
2161 C and C++ standards that simply state that the behavior of
2162 FP-to-integer conversion is unspecified upon overflow. */
2164 HOST_WIDE_INT high, low;
2165 REAL_VALUE_TYPE r;
2166 REAL_VALUE_TYPE x = TREE_REAL_CST (arg1);
2168 switch (code)
2170 case FIX_TRUNC_EXPR:
2171 real_trunc (&r, VOIDmode, &x);
2172 break;
2174 default:
2175 gcc_unreachable ();
2178 /* If R is NaN, return zero and show we have an overflow. */
2179 if (REAL_VALUE_ISNAN (r))
2181 overflow = 1;
2182 high = 0;
2183 low = 0;
2186 /* See if R is less than the lower bound or greater than the
2187 upper bound. */
2189 if (! overflow)
2191 tree lt = TYPE_MIN_VALUE (type);
2192 REAL_VALUE_TYPE l = real_value_from_int_cst (NULL_TREE, lt);
2193 if (REAL_VALUES_LESS (r, l))
2195 overflow = 1;
2196 high = TREE_INT_CST_HIGH (lt);
2197 low = TREE_INT_CST_LOW (lt);
2201 if (! overflow)
2203 tree ut = TYPE_MAX_VALUE (type);
2204 if (ut)
2206 REAL_VALUE_TYPE u = real_value_from_int_cst (NULL_TREE, ut);
2207 if (REAL_VALUES_LESS (u, r))
2209 overflow = 1;
2210 high = TREE_INT_CST_HIGH (ut);
2211 low = TREE_INT_CST_LOW (ut);
2216 if (! overflow)
2217 REAL_VALUE_TO_INT (&low, &high, r);
2219 t = force_fit_type_double (type, low, high, -1,
2220 overflow | TREE_OVERFLOW (arg1));
2221 return t;
2224 /* A subroutine of fold_convert_const handling conversions of a
2225 FIXED_CST to an integer type. */
2227 static tree
2228 fold_convert_const_int_from_fixed (tree type, const_tree arg1)
2230 tree t;
2231 double_int temp, temp_trunc;
2232 unsigned int mode;
2234 /* Right shift FIXED_CST to temp by fbit. */
2235 temp = TREE_FIXED_CST (arg1).data;
2236 mode = TREE_FIXED_CST (arg1).mode;
2237 if (GET_MODE_FBIT (mode) < 2 * HOST_BITS_PER_WIDE_INT)
2239 lshift_double (temp.low, temp.high,
2240 - GET_MODE_FBIT (mode), 2 * HOST_BITS_PER_WIDE_INT,
2241 &temp.low, &temp.high, SIGNED_FIXED_POINT_MODE_P (mode));
2243 /* Left shift temp to temp_trunc by fbit. */
2244 lshift_double (temp.low, temp.high,
2245 GET_MODE_FBIT (mode), 2 * HOST_BITS_PER_WIDE_INT,
2246 &temp_trunc.low, &temp_trunc.high,
2247 SIGNED_FIXED_POINT_MODE_P (mode));
2249 else
2251 temp.low = 0;
2252 temp.high = 0;
2253 temp_trunc.low = 0;
2254 temp_trunc.high = 0;
2257 /* If FIXED_CST is negative, we need to round the value toward 0.
2258 By checking if the fractional bits are not zero to add 1 to temp. */
2259 if (SIGNED_FIXED_POINT_MODE_P (mode) && temp_trunc.high < 0
2260 && !double_int_equal_p (TREE_FIXED_CST (arg1).data, temp_trunc))
2262 double_int one;
2263 one.low = 1;
2264 one.high = 0;
2265 temp = double_int_add (temp, one);
2268 /* Given a fixed-point constant, make new constant with new type,
2269 appropriately sign-extended or truncated. */
2270 t = force_fit_type_double (type, temp.low, temp.high, -1,
2271 (temp.high < 0
2272 && (TYPE_UNSIGNED (type)
2273 < TYPE_UNSIGNED (TREE_TYPE (arg1))))
2274 | TREE_OVERFLOW (arg1));
2276 return t;
2279 /* A subroutine of fold_convert_const handling conversions a REAL_CST
2280 to another floating point type. */
2282 static tree
2283 fold_convert_const_real_from_real (tree type, const_tree arg1)
2285 REAL_VALUE_TYPE value;
2286 tree t;
2288 real_convert (&value, TYPE_MODE (type), &TREE_REAL_CST (arg1));
2289 t = build_real (type, value);
2291 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1);
2292 return t;
2295 /* A subroutine of fold_convert_const handling conversions a FIXED_CST
2296 to a floating point type. */
2298 static tree
2299 fold_convert_const_real_from_fixed (tree type, const_tree arg1)
2301 REAL_VALUE_TYPE value;
2302 tree t;
2304 real_convert_from_fixed (&value, TYPE_MODE (type), &TREE_FIXED_CST (arg1));
2305 t = build_real (type, value);
2307 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1);
2308 TREE_CONSTANT_OVERFLOW (t)
2309 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
2310 return t;
2313 /* A subroutine of fold_convert_const handling conversions a FIXED_CST
2314 to another fixed-point type. */
2316 static tree
2317 fold_convert_const_fixed_from_fixed (tree type, const_tree arg1)
2319 FIXED_VALUE_TYPE value;
2320 tree t;
2321 bool overflow_p;
2323 overflow_p = fixed_convert (&value, TYPE_MODE (type), &TREE_FIXED_CST (arg1),
2324 TYPE_SATURATING (type));
2325 t = build_fixed (type, value);
2327 /* Propagate overflow flags. */
2328 if (overflow_p | TREE_OVERFLOW (arg1))
2330 TREE_OVERFLOW (t) = 1;
2331 TREE_CONSTANT_OVERFLOW (t) = 1;
2333 else if (TREE_CONSTANT_OVERFLOW (arg1))
2334 TREE_CONSTANT_OVERFLOW (t) = 1;
2335 return t;
2338 /* A subroutine of fold_convert_const handling conversions an INTEGER_CST
2339 to a fixed-point type. */
2341 static tree
2342 fold_convert_const_fixed_from_int (tree type, const_tree arg1)
2344 FIXED_VALUE_TYPE value;
2345 tree t;
2346 bool overflow_p;
2348 overflow_p = fixed_convert_from_int (&value, TYPE_MODE (type),
2349 TREE_INT_CST (arg1),
2350 TYPE_UNSIGNED (TREE_TYPE (arg1)),
2351 TYPE_SATURATING (type));
2352 t = build_fixed (type, value);
2354 /* Propagate overflow flags. */
2355 if (overflow_p | TREE_OVERFLOW (arg1))
2357 TREE_OVERFLOW (t) = 1;
2358 TREE_CONSTANT_OVERFLOW (t) = 1;
2360 else if (TREE_CONSTANT_OVERFLOW (arg1))
2361 TREE_CONSTANT_OVERFLOW (t) = 1;
2362 return t;
2365 /* A subroutine of fold_convert_const handling conversions a REAL_CST
2366 to a fixed-point type. */
2368 static tree
2369 fold_convert_const_fixed_from_real (tree type, const_tree arg1)
2371 FIXED_VALUE_TYPE value;
2372 tree t;
2373 bool overflow_p;
2375 overflow_p = fixed_convert_from_real (&value, TYPE_MODE (type),
2376 &TREE_REAL_CST (arg1),
2377 TYPE_SATURATING (type));
2378 t = build_fixed (type, value);
2380 /* Propagate overflow flags. */
2381 if (overflow_p | TREE_OVERFLOW (arg1))
2383 TREE_OVERFLOW (t) = 1;
2384 TREE_CONSTANT_OVERFLOW (t) = 1;
2386 else if (TREE_CONSTANT_OVERFLOW (arg1))
2387 TREE_CONSTANT_OVERFLOW (t) = 1;
2388 return t;
2391 /* Attempt to fold type conversion operation CODE of expression ARG1 to
2392 type TYPE. If no simplification can be done return NULL_TREE. */
2394 static tree
2395 fold_convert_const (enum tree_code code, tree type, tree arg1)
2397 if (TREE_TYPE (arg1) == type)
2398 return arg1;
2400 if (POINTER_TYPE_P (type) || INTEGRAL_TYPE_P (type))
2402 if (TREE_CODE (arg1) == INTEGER_CST)
2403 return fold_convert_const_int_from_int (type, arg1);
2404 else if (TREE_CODE (arg1) == REAL_CST)
2405 return fold_convert_const_int_from_real (code, type, arg1);
2406 else if (TREE_CODE (arg1) == FIXED_CST)
2407 return fold_convert_const_int_from_fixed (type, arg1);
2409 else if (TREE_CODE (type) == REAL_TYPE)
2411 if (TREE_CODE (arg1) == INTEGER_CST)
2412 return build_real_from_int_cst (type, arg1);
2413 else if (TREE_CODE (arg1) == REAL_CST)
2414 return fold_convert_const_real_from_real (type, arg1);
2415 else if (TREE_CODE (arg1) == FIXED_CST)
2416 return fold_convert_const_real_from_fixed (type, arg1);
2418 else if (TREE_CODE (type) == FIXED_POINT_TYPE)
2420 if (TREE_CODE (arg1) == FIXED_CST)
2421 return fold_convert_const_fixed_from_fixed (type, arg1);
2422 else if (TREE_CODE (arg1) == INTEGER_CST)
2423 return fold_convert_const_fixed_from_int (type, arg1);
2424 else if (TREE_CODE (arg1) == REAL_CST)
2425 return fold_convert_const_fixed_from_real (type, arg1);
2427 return NULL_TREE;
2430 /* Construct a vector of zero elements of vector type TYPE. */
2432 static tree
2433 build_zero_vector (tree type)
2435 tree elem, list;
2436 int i, units;
2438 elem = fold_convert_const (NOP_EXPR, TREE_TYPE (type), integer_zero_node);
2439 units = TYPE_VECTOR_SUBPARTS (type);
2441 list = NULL_TREE;
2442 for (i = 0; i < units; i++)
2443 list = tree_cons (NULL_TREE, elem, list);
2444 return build_vector (type, list);
2447 /* Returns true, if ARG is convertible to TYPE using a NOP_EXPR. */
2449 bool
2450 fold_convertible_p (const_tree type, const_tree arg)
2452 tree orig = TREE_TYPE (arg);
2454 if (type == orig)
2455 return true;
2457 if (TREE_CODE (arg) == ERROR_MARK
2458 || TREE_CODE (type) == ERROR_MARK
2459 || TREE_CODE (orig) == ERROR_MARK)
2460 return false;
2462 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (orig))
2463 return true;
2465 switch (TREE_CODE (type))
2467 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2468 case POINTER_TYPE: case REFERENCE_TYPE:
2469 case OFFSET_TYPE:
2470 if (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
2471 || TREE_CODE (orig) == OFFSET_TYPE)
2472 return true;
2473 return (TREE_CODE (orig) == VECTOR_TYPE
2474 && tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
2476 case REAL_TYPE:
2477 case FIXED_POINT_TYPE:
2478 case COMPLEX_TYPE:
2479 case VECTOR_TYPE:
2480 case VOID_TYPE:
2481 return TREE_CODE (type) == TREE_CODE (orig);
2483 default:
2484 return false;
2488 /* Convert expression ARG to type TYPE. Used by the middle-end for
2489 simple conversions in preference to calling the front-end's convert. */
2491 tree
2492 fold_convert (tree type, tree arg)
2494 tree orig = TREE_TYPE (arg);
2495 tree tem;
2497 if (type == orig)
2498 return arg;
2500 if (TREE_CODE (arg) == ERROR_MARK
2501 || TREE_CODE (type) == ERROR_MARK
2502 || TREE_CODE (orig) == ERROR_MARK)
2503 return error_mark_node;
2505 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (orig))
2506 return fold_build1 (NOP_EXPR, type, arg);
2508 switch (TREE_CODE (type))
2510 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2511 case POINTER_TYPE: case REFERENCE_TYPE:
2512 case OFFSET_TYPE:
2513 if (TREE_CODE (arg) == INTEGER_CST)
2515 tem = fold_convert_const (NOP_EXPR, type, arg);
2516 if (tem != NULL_TREE)
2517 return tem;
2519 if (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
2520 || TREE_CODE (orig) == OFFSET_TYPE)
2521 return fold_build1 (NOP_EXPR, type, arg);
2522 if (TREE_CODE (orig) == COMPLEX_TYPE)
2524 tem = fold_build1 (REALPART_EXPR, TREE_TYPE (orig), arg);
2525 return fold_convert (type, tem);
2527 gcc_assert (TREE_CODE (orig) == VECTOR_TYPE
2528 && tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
2529 return fold_build1 (NOP_EXPR, type, arg);
2531 case REAL_TYPE:
2532 if (TREE_CODE (arg) == INTEGER_CST)
2534 tem = fold_convert_const (FLOAT_EXPR, type, arg);
2535 if (tem != NULL_TREE)
2536 return tem;
2538 else if (TREE_CODE (arg) == REAL_CST)
2540 tem = fold_convert_const (NOP_EXPR, type, arg);
2541 if (tem != NULL_TREE)
2542 return tem;
2544 else if (TREE_CODE (arg) == FIXED_CST)
2546 tem = fold_convert_const (FIXED_CONVERT_EXPR, type, arg);
2547 if (tem != NULL_TREE)
2548 return tem;
2551 switch (TREE_CODE (orig))
2553 case INTEGER_TYPE:
2554 case BOOLEAN_TYPE: case ENUMERAL_TYPE:
2555 case POINTER_TYPE: case REFERENCE_TYPE:
2556 return fold_build1 (FLOAT_EXPR, type, arg);
2558 case REAL_TYPE:
2559 return fold_build1 (NOP_EXPR, type, arg);
2561 case FIXED_POINT_TYPE:
2562 return fold_build1 (FIXED_CONVERT_EXPR, type, arg);
2564 case COMPLEX_TYPE:
2565 tem = fold_build1 (REALPART_EXPR, TREE_TYPE (orig), arg);
2566 return fold_convert (type, tem);
2568 default:
2569 gcc_unreachable ();
2572 case FIXED_POINT_TYPE:
2573 if (TREE_CODE (arg) == FIXED_CST || TREE_CODE (arg) == INTEGER_CST
2574 || TREE_CODE (arg) == REAL_CST)
2576 tem = fold_convert_const (FIXED_CONVERT_EXPR, type, arg);
2577 if (tem != NULL_TREE)
2578 return tem;
2581 switch (TREE_CODE (orig))
2583 case FIXED_POINT_TYPE:
2584 case INTEGER_TYPE:
2585 case ENUMERAL_TYPE:
2586 case BOOLEAN_TYPE:
2587 case REAL_TYPE:
2588 return fold_build1 (FIXED_CONVERT_EXPR, type, arg);
2590 case COMPLEX_TYPE:
2591 tem = fold_build1 (REALPART_EXPR, TREE_TYPE (orig), arg);
2592 return fold_convert (type, tem);
2594 default:
2595 gcc_unreachable ();
2598 case COMPLEX_TYPE:
2599 switch (TREE_CODE (orig))
2601 case INTEGER_TYPE:
2602 case BOOLEAN_TYPE: case ENUMERAL_TYPE:
2603 case POINTER_TYPE: case REFERENCE_TYPE:
2604 case REAL_TYPE:
2605 case FIXED_POINT_TYPE:
2606 return build2 (COMPLEX_EXPR, type,
2607 fold_convert (TREE_TYPE (type), arg),
2608 fold_convert (TREE_TYPE (type), integer_zero_node));
2609 case COMPLEX_TYPE:
2611 tree rpart, ipart;
2613 if (TREE_CODE (arg) == COMPLEX_EXPR)
2615 rpart = fold_convert (TREE_TYPE (type), TREE_OPERAND (arg, 0));
2616 ipart = fold_convert (TREE_TYPE (type), TREE_OPERAND (arg, 1));
2617 return fold_build2 (COMPLEX_EXPR, type, rpart, ipart);
2620 arg = save_expr (arg);
2621 rpart = fold_build1 (REALPART_EXPR, TREE_TYPE (orig), arg);
2622 ipart = fold_build1 (IMAGPART_EXPR, TREE_TYPE (orig), arg);
2623 rpart = fold_convert (TREE_TYPE (type), rpart);
2624 ipart = fold_convert (TREE_TYPE (type), ipart);
2625 return fold_build2 (COMPLEX_EXPR, type, rpart, ipart);
2628 default:
2629 gcc_unreachable ();
2632 case VECTOR_TYPE:
2633 if (integer_zerop (arg))
2634 return build_zero_vector (type);
2635 gcc_assert (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
2636 gcc_assert (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
2637 || TREE_CODE (orig) == VECTOR_TYPE);
2638 return fold_build1 (VIEW_CONVERT_EXPR, type, arg);
2640 case VOID_TYPE:
2641 tem = fold_ignored_result (arg);
2642 if (TREE_CODE (tem) == GIMPLE_MODIFY_STMT)
2643 return tem;
2644 return fold_build1 (NOP_EXPR, type, tem);
2646 default:
2647 gcc_unreachable ();
2651 /* Return false if expr can be assumed not to be an lvalue, true
2652 otherwise. */
2654 static bool
2655 maybe_lvalue_p (const_tree x)
2657 /* We only need to wrap lvalue tree codes. */
2658 switch (TREE_CODE (x))
2660 case VAR_DECL:
2661 case PARM_DECL:
2662 case RESULT_DECL:
2663 case LABEL_DECL:
2664 case FUNCTION_DECL:
2665 case SSA_NAME:
2667 case COMPONENT_REF:
2668 case INDIRECT_REF:
2669 case ALIGN_INDIRECT_REF:
2670 case MISALIGNED_INDIRECT_REF:
2671 case ARRAY_REF:
2672 case ARRAY_RANGE_REF:
2673 case BIT_FIELD_REF:
2674 case OBJ_TYPE_REF:
2676 case REALPART_EXPR:
2677 case IMAGPART_EXPR:
2678 case PREINCREMENT_EXPR:
2679 case PREDECREMENT_EXPR:
2680 case SAVE_EXPR:
2681 case TRY_CATCH_EXPR:
2682 case WITH_CLEANUP_EXPR:
2683 case COMPOUND_EXPR:
2684 case MODIFY_EXPR:
2685 case GIMPLE_MODIFY_STMT:
2686 case TARGET_EXPR:
2687 case COND_EXPR:
2688 case BIND_EXPR:
2689 case MIN_EXPR:
2690 case MAX_EXPR:
2691 break;
2693 default:
2694 /* Assume the worst for front-end tree codes. */
2695 if ((int)TREE_CODE (x) >= NUM_TREE_CODES)
2696 break;
2697 return false;
2700 return true;
2703 /* Return an expr equal to X but certainly not valid as an lvalue. */
2705 tree
2706 non_lvalue (tree x)
2708 /* While we are in GIMPLE, NON_LVALUE_EXPR doesn't mean anything to
2709 us. */
2710 if (in_gimple_form)
2711 return x;
2713 if (! maybe_lvalue_p (x))
2714 return x;
2715 return build1 (NON_LVALUE_EXPR, TREE_TYPE (x), x);
2718 /* Nonzero means lvalues are limited to those valid in pedantic ANSI C.
2719 Zero means allow extended lvalues. */
2721 int pedantic_lvalues;
2723 /* When pedantic, return an expr equal to X but certainly not valid as a
2724 pedantic lvalue. Otherwise, return X. */
2726 static tree
2727 pedantic_non_lvalue (tree x)
2729 if (pedantic_lvalues)
2730 return non_lvalue (x);
2731 else
2732 return x;
2735 /* Given a tree comparison code, return the code that is the logical inverse
2736 of the given code. It is not safe to do this for floating-point
2737 comparisons, except for NE_EXPR and EQ_EXPR, so we receive a machine mode
2738 as well: if reversing the comparison is unsafe, return ERROR_MARK. */
2740 enum tree_code
2741 invert_tree_comparison (enum tree_code code, bool honor_nans)
2743 if (honor_nans && flag_trapping_math)
2744 return ERROR_MARK;
2746 switch (code)
2748 case EQ_EXPR:
2749 return NE_EXPR;
2750 case NE_EXPR:
2751 return EQ_EXPR;
2752 case GT_EXPR:
2753 return honor_nans ? UNLE_EXPR : LE_EXPR;
2754 case GE_EXPR:
2755 return honor_nans ? UNLT_EXPR : LT_EXPR;
2756 case LT_EXPR:
2757 return honor_nans ? UNGE_EXPR : GE_EXPR;
2758 case LE_EXPR:
2759 return honor_nans ? UNGT_EXPR : GT_EXPR;
2760 case LTGT_EXPR:
2761 return UNEQ_EXPR;
2762 case UNEQ_EXPR:
2763 return LTGT_EXPR;
2764 case UNGT_EXPR:
2765 return LE_EXPR;
2766 case UNGE_EXPR:
2767 return LT_EXPR;
2768 case UNLT_EXPR:
2769 return GE_EXPR;
2770 case UNLE_EXPR:
2771 return GT_EXPR;
2772 case ORDERED_EXPR:
2773 return UNORDERED_EXPR;
2774 case UNORDERED_EXPR:
2775 return ORDERED_EXPR;
2776 default:
2777 gcc_unreachable ();
2781 /* Similar, but return the comparison that results if the operands are
2782 swapped. This is safe for floating-point. */
2784 enum tree_code
2785 swap_tree_comparison (enum tree_code code)
2787 switch (code)
2789 case EQ_EXPR:
2790 case NE_EXPR:
2791 case ORDERED_EXPR:
2792 case UNORDERED_EXPR:
2793 case LTGT_EXPR:
2794 case UNEQ_EXPR:
2795 return code;
2796 case GT_EXPR:
2797 return LT_EXPR;
2798 case GE_EXPR:
2799 return LE_EXPR;
2800 case LT_EXPR:
2801 return GT_EXPR;
2802 case LE_EXPR:
2803 return GE_EXPR;
2804 case UNGT_EXPR:
2805 return UNLT_EXPR;
2806 case UNGE_EXPR:
2807 return UNLE_EXPR;
2808 case UNLT_EXPR:
2809 return UNGT_EXPR;
2810 case UNLE_EXPR:
2811 return UNGE_EXPR;
2812 default:
2813 gcc_unreachable ();
2818 /* Convert a comparison tree code from an enum tree_code representation
2819 into a compcode bit-based encoding. This function is the inverse of
2820 compcode_to_comparison. */
2822 static enum comparison_code
2823 comparison_to_compcode (enum tree_code code)
2825 switch (code)
2827 case LT_EXPR:
2828 return COMPCODE_LT;
2829 case EQ_EXPR:
2830 return COMPCODE_EQ;
2831 case LE_EXPR:
2832 return COMPCODE_LE;
2833 case GT_EXPR:
2834 return COMPCODE_GT;
2835 case NE_EXPR:
2836 return COMPCODE_NE;
2837 case GE_EXPR:
2838 return COMPCODE_GE;
2839 case ORDERED_EXPR:
2840 return COMPCODE_ORD;
2841 case UNORDERED_EXPR:
2842 return COMPCODE_UNORD;
2843 case UNLT_EXPR:
2844 return COMPCODE_UNLT;
2845 case UNEQ_EXPR:
2846 return COMPCODE_UNEQ;
2847 case UNLE_EXPR:
2848 return COMPCODE_UNLE;
2849 case UNGT_EXPR:
2850 return COMPCODE_UNGT;
2851 case LTGT_EXPR:
2852 return COMPCODE_LTGT;
2853 case UNGE_EXPR:
2854 return COMPCODE_UNGE;
2855 default:
2856 gcc_unreachable ();
2860 /* Convert a compcode bit-based encoding of a comparison operator back
2861 to GCC's enum tree_code representation. This function is the
2862 inverse of comparison_to_compcode. */
2864 static enum tree_code
2865 compcode_to_comparison (enum comparison_code code)
2867 switch (code)
2869 case COMPCODE_LT:
2870 return LT_EXPR;
2871 case COMPCODE_EQ:
2872 return EQ_EXPR;
2873 case COMPCODE_LE:
2874 return LE_EXPR;
2875 case COMPCODE_GT:
2876 return GT_EXPR;
2877 case COMPCODE_NE:
2878 return NE_EXPR;
2879 case COMPCODE_GE:
2880 return GE_EXPR;
2881 case COMPCODE_ORD:
2882 return ORDERED_EXPR;
2883 case COMPCODE_UNORD:
2884 return UNORDERED_EXPR;
2885 case COMPCODE_UNLT:
2886 return UNLT_EXPR;
2887 case COMPCODE_UNEQ:
2888 return UNEQ_EXPR;
2889 case COMPCODE_UNLE:
2890 return UNLE_EXPR;
2891 case COMPCODE_UNGT:
2892 return UNGT_EXPR;
2893 case COMPCODE_LTGT:
2894 return LTGT_EXPR;
2895 case COMPCODE_UNGE:
2896 return UNGE_EXPR;
2897 default:
2898 gcc_unreachable ();
2902 /* Return a tree for the comparison which is the combination of
2903 doing the AND or OR (depending on CODE) of the two operations LCODE
2904 and RCODE on the identical operands LL_ARG and LR_ARG. Take into account
2905 the possibility of trapping if the mode has NaNs, and return NULL_TREE
2906 if this makes the transformation invalid. */
2908 tree
2909 combine_comparisons (enum tree_code code, enum tree_code lcode,
2910 enum tree_code rcode, tree truth_type,
2911 tree ll_arg, tree lr_arg)
2913 bool honor_nans = HONOR_NANS (TYPE_MODE (TREE_TYPE (ll_arg)));
2914 enum comparison_code lcompcode = comparison_to_compcode (lcode);
2915 enum comparison_code rcompcode = comparison_to_compcode (rcode);
2916 enum comparison_code compcode;
2918 switch (code)
2920 case TRUTH_AND_EXPR: case TRUTH_ANDIF_EXPR:
2921 compcode = lcompcode & rcompcode;
2922 break;
2924 case TRUTH_OR_EXPR: case TRUTH_ORIF_EXPR:
2925 compcode = lcompcode | rcompcode;
2926 break;
2928 default:
2929 return NULL_TREE;
2932 if (!honor_nans)
2934 /* Eliminate unordered comparisons, as well as LTGT and ORD
2935 which are not used unless the mode has NaNs. */
2936 compcode &= ~COMPCODE_UNORD;
2937 if (compcode == COMPCODE_LTGT)
2938 compcode = COMPCODE_NE;
2939 else if (compcode == COMPCODE_ORD)
2940 compcode = COMPCODE_TRUE;
2942 else if (flag_trapping_math)
2944 /* Check that the original operation and the optimized ones will trap
2945 under the same condition. */
2946 bool ltrap = (lcompcode & COMPCODE_UNORD) == 0
2947 && (lcompcode != COMPCODE_EQ)
2948 && (lcompcode != COMPCODE_ORD);
2949 bool rtrap = (rcompcode & COMPCODE_UNORD) == 0
2950 && (rcompcode != COMPCODE_EQ)
2951 && (rcompcode != COMPCODE_ORD);
2952 bool trap = (compcode & COMPCODE_UNORD) == 0
2953 && (compcode != COMPCODE_EQ)
2954 && (compcode != COMPCODE_ORD);
2956 /* In a short-circuited boolean expression the LHS might be
2957 such that the RHS, if evaluated, will never trap. For
2958 example, in ORD (x, y) && (x < y), we evaluate the RHS only
2959 if neither x nor y is NaN. (This is a mixed blessing: for
2960 example, the expression above will never trap, hence
2961 optimizing it to x < y would be invalid). */
2962 if ((code == TRUTH_ORIF_EXPR && (lcompcode & COMPCODE_UNORD))
2963 || (code == TRUTH_ANDIF_EXPR && !(lcompcode & COMPCODE_UNORD)))
2964 rtrap = false;
2966 /* If the comparison was short-circuited, and only the RHS
2967 trapped, we may now generate a spurious trap. */
2968 if (rtrap && !ltrap
2969 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2970 return NULL_TREE;
2972 /* If we changed the conditions that cause a trap, we lose. */
2973 if ((ltrap || rtrap) != trap)
2974 return NULL_TREE;
2977 if (compcode == COMPCODE_TRUE)
2978 return constant_boolean_node (true, truth_type);
2979 else if (compcode == COMPCODE_FALSE)
2980 return constant_boolean_node (false, truth_type);
2981 else
2982 return fold_build2 (compcode_to_comparison (compcode),
2983 truth_type, ll_arg, lr_arg);
2986 /* Return nonzero if CODE is a tree code that represents a truth value. */
2988 static int
2989 truth_value_p (enum tree_code code)
2991 return (TREE_CODE_CLASS (code) == tcc_comparison
2992 || code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
2993 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
2994 || code == TRUTH_XOR_EXPR || code == TRUTH_NOT_EXPR);
2997 /* Return nonzero if two operands (typically of the same tree node)
2998 are necessarily equal. If either argument has side-effects this
2999 function returns zero. FLAGS modifies behavior as follows:
3001 If OEP_ONLY_CONST is set, only return nonzero for constants.
3002 This function tests whether the operands are indistinguishable;
3003 it does not test whether they are equal using C's == operation.
3004 The distinction is important for IEEE floating point, because
3005 (1) -0.0 and 0.0 are distinguishable, but -0.0==0.0, and
3006 (2) two NaNs may be indistinguishable, but NaN!=NaN.
3008 If OEP_ONLY_CONST is unset, a VAR_DECL is considered equal to itself
3009 even though it may hold multiple values during a function.
3010 This is because a GCC tree node guarantees that nothing else is
3011 executed between the evaluation of its "operands" (which may often
3012 be evaluated in arbitrary order). Hence if the operands themselves
3013 don't side-effect, the VAR_DECLs, PARM_DECLs etc... must hold the
3014 same value in each operand/subexpression. Hence leaving OEP_ONLY_CONST
3015 unset means assuming isochronic (or instantaneous) tree equivalence.
3016 Unless comparing arbitrary expression trees, such as from different
3017 statements, this flag can usually be left unset.
3019 If OEP_PURE_SAME is set, then pure functions with identical arguments
3020 are considered the same. It is used when the caller has other ways
3021 to ensure that global memory is unchanged in between. */
3024 operand_equal_p (const_tree arg0, const_tree arg1, unsigned int flags)
3026 /* If either is ERROR_MARK, they aren't equal. */
3027 if (TREE_CODE (arg0) == ERROR_MARK || TREE_CODE (arg1) == ERROR_MARK)
3028 return 0;
3030 /* If both types don't have the same signedness, then we can't consider
3031 them equal. We must check this before the STRIP_NOPS calls
3032 because they may change the signedness of the arguments. */
3033 if (TYPE_UNSIGNED (TREE_TYPE (arg0)) != TYPE_UNSIGNED (TREE_TYPE (arg1)))
3034 return 0;
3036 /* If both types don't have the same precision, then it is not safe
3037 to strip NOPs. */
3038 if (TYPE_PRECISION (TREE_TYPE (arg0)) != TYPE_PRECISION (TREE_TYPE (arg1)))
3039 return 0;
3041 STRIP_NOPS (arg0);
3042 STRIP_NOPS (arg1);
3044 /* In case both args are comparisons but with different comparison
3045 code, try to swap the comparison operands of one arg to produce
3046 a match and compare that variant. */
3047 if (TREE_CODE (arg0) != TREE_CODE (arg1)
3048 && COMPARISON_CLASS_P (arg0)
3049 && COMPARISON_CLASS_P (arg1))
3051 enum tree_code swap_code = swap_tree_comparison (TREE_CODE (arg1));
3053 if (TREE_CODE (arg0) == swap_code)
3054 return operand_equal_p (TREE_OPERAND (arg0, 0),
3055 TREE_OPERAND (arg1, 1), flags)
3056 && operand_equal_p (TREE_OPERAND (arg0, 1),
3057 TREE_OPERAND (arg1, 0), flags);
3060 if (TREE_CODE (arg0) != TREE_CODE (arg1)
3061 /* This is needed for conversions and for COMPONENT_REF.
3062 Might as well play it safe and always test this. */
3063 || TREE_CODE (TREE_TYPE (arg0)) == ERROR_MARK
3064 || TREE_CODE (TREE_TYPE (arg1)) == ERROR_MARK
3065 || TYPE_MODE (TREE_TYPE (arg0)) != TYPE_MODE (TREE_TYPE (arg1)))
3066 return 0;
3068 /* If ARG0 and ARG1 are the same SAVE_EXPR, they are necessarily equal.
3069 We don't care about side effects in that case because the SAVE_EXPR
3070 takes care of that for us. In all other cases, two expressions are
3071 equal if they have no side effects. If we have two identical
3072 expressions with side effects that should be treated the same due
3073 to the only side effects being identical SAVE_EXPR's, that will
3074 be detected in the recursive calls below. */
3075 if (arg0 == arg1 && ! (flags & OEP_ONLY_CONST)
3076 && (TREE_CODE (arg0) == SAVE_EXPR
3077 || (! TREE_SIDE_EFFECTS (arg0) && ! TREE_SIDE_EFFECTS (arg1))))
3078 return 1;
3080 /* Next handle constant cases, those for which we can return 1 even
3081 if ONLY_CONST is set. */
3082 if (TREE_CONSTANT (arg0) && TREE_CONSTANT (arg1))
3083 switch (TREE_CODE (arg0))
3085 case INTEGER_CST:
3086 return tree_int_cst_equal (arg0, arg1);
3088 case FIXED_CST:
3089 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (arg0),
3090 TREE_FIXED_CST (arg1));
3092 case REAL_CST:
3093 if (REAL_VALUES_IDENTICAL (TREE_REAL_CST (arg0),
3094 TREE_REAL_CST (arg1)))
3095 return 1;
3098 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0))))
3100 /* If we do not distinguish between signed and unsigned zero,
3101 consider them equal. */
3102 if (real_zerop (arg0) && real_zerop (arg1))
3103 return 1;
3105 return 0;
3107 case VECTOR_CST:
3109 tree v1, v2;
3111 v1 = TREE_VECTOR_CST_ELTS (arg0);
3112 v2 = TREE_VECTOR_CST_ELTS (arg1);
3113 while (v1 && v2)
3115 if (!operand_equal_p (TREE_VALUE (v1), TREE_VALUE (v2),
3116 flags))
3117 return 0;
3118 v1 = TREE_CHAIN (v1);
3119 v2 = TREE_CHAIN (v2);
3122 return v1 == v2;
3125 case COMPLEX_CST:
3126 return (operand_equal_p (TREE_REALPART (arg0), TREE_REALPART (arg1),
3127 flags)
3128 && operand_equal_p (TREE_IMAGPART (arg0), TREE_IMAGPART (arg1),
3129 flags));
3131 case STRING_CST:
3132 return (TREE_STRING_LENGTH (arg0) == TREE_STRING_LENGTH (arg1)
3133 && ! memcmp (TREE_STRING_POINTER (arg0),
3134 TREE_STRING_POINTER (arg1),
3135 TREE_STRING_LENGTH (arg0)));
3137 case ADDR_EXPR:
3138 return operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0),
3140 default:
3141 break;
3144 if (flags & OEP_ONLY_CONST)
3145 return 0;
3147 /* Define macros to test an operand from arg0 and arg1 for equality and a
3148 variant that allows null and views null as being different from any
3149 non-null value. In the latter case, if either is null, the both
3150 must be; otherwise, do the normal comparison. */
3151 #define OP_SAME(N) operand_equal_p (TREE_OPERAND (arg0, N), \
3152 TREE_OPERAND (arg1, N), flags)
3154 #define OP_SAME_WITH_NULL(N) \
3155 ((!TREE_OPERAND (arg0, N) || !TREE_OPERAND (arg1, N)) \
3156 ? TREE_OPERAND (arg0, N) == TREE_OPERAND (arg1, N) : OP_SAME (N))
3158 switch (TREE_CODE_CLASS (TREE_CODE (arg0)))
3160 case tcc_unary:
3161 /* Two conversions are equal only if signedness and modes match. */
3162 switch (TREE_CODE (arg0))
3164 case NOP_EXPR:
3165 case CONVERT_EXPR:
3166 case FIX_TRUNC_EXPR:
3167 if (TYPE_UNSIGNED (TREE_TYPE (arg0))
3168 != TYPE_UNSIGNED (TREE_TYPE (arg1)))
3169 return 0;
3170 break;
3171 default:
3172 break;
3175 return OP_SAME (0);
3178 case tcc_comparison:
3179 case tcc_binary:
3180 if (OP_SAME (0) && OP_SAME (1))
3181 return 1;
3183 /* For commutative ops, allow the other order. */
3184 return (commutative_tree_code (TREE_CODE (arg0))
3185 && operand_equal_p (TREE_OPERAND (arg0, 0),
3186 TREE_OPERAND (arg1, 1), flags)
3187 && operand_equal_p (TREE_OPERAND (arg0, 1),
3188 TREE_OPERAND (arg1, 0), flags));
3190 case tcc_reference:
3191 /* If either of the pointer (or reference) expressions we are
3192 dereferencing contain a side effect, these cannot be equal. */
3193 if (TREE_SIDE_EFFECTS (arg0)
3194 || TREE_SIDE_EFFECTS (arg1))
3195 return 0;
3197 switch (TREE_CODE (arg0))
3199 case INDIRECT_REF:
3200 case ALIGN_INDIRECT_REF:
3201 case MISALIGNED_INDIRECT_REF:
3202 case REALPART_EXPR:
3203 case IMAGPART_EXPR:
3204 return OP_SAME (0);
3206 case ARRAY_REF:
3207 case ARRAY_RANGE_REF:
3208 /* Operands 2 and 3 may be null.
3209 Compare the array index by value if it is constant first as we
3210 may have different types but same value here. */
3211 return (OP_SAME (0)
3212 && (tree_int_cst_equal (TREE_OPERAND (arg0, 1),
3213 TREE_OPERAND (arg1, 1))
3214 || OP_SAME (1))
3215 && OP_SAME_WITH_NULL (2)
3216 && OP_SAME_WITH_NULL (3));
3218 case COMPONENT_REF:
3219 /* Handle operand 2 the same as for ARRAY_REF. Operand 0
3220 may be NULL when we're called to compare MEM_EXPRs. */
3221 return OP_SAME_WITH_NULL (0)
3222 && OP_SAME (1)
3223 && OP_SAME_WITH_NULL (2);
3225 case BIT_FIELD_REF:
3226 return OP_SAME (0) && OP_SAME (1) && OP_SAME (2);
3228 default:
3229 return 0;
3232 case tcc_expression:
3233 switch (TREE_CODE (arg0))
3235 case ADDR_EXPR:
3236 case TRUTH_NOT_EXPR:
3237 return OP_SAME (0);
3239 case TRUTH_ANDIF_EXPR:
3240 case TRUTH_ORIF_EXPR:
3241 return OP_SAME (0) && OP_SAME (1);
3243 case TRUTH_AND_EXPR:
3244 case TRUTH_OR_EXPR:
3245 case TRUTH_XOR_EXPR:
3246 if (OP_SAME (0) && OP_SAME (1))
3247 return 1;
3249 /* Otherwise take into account this is a commutative operation. */
3250 return (operand_equal_p (TREE_OPERAND (arg0, 0),
3251 TREE_OPERAND (arg1, 1), flags)
3252 && operand_equal_p (TREE_OPERAND (arg0, 1),
3253 TREE_OPERAND (arg1, 0), flags));
3255 default:
3256 return 0;
3259 case tcc_vl_exp:
3260 switch (TREE_CODE (arg0))
3262 case CALL_EXPR:
3263 /* If the CALL_EXPRs call different functions, then they
3264 clearly can not be equal. */
3265 if (! operand_equal_p (CALL_EXPR_FN (arg0), CALL_EXPR_FN (arg1),
3266 flags))
3267 return 0;
3270 unsigned int cef = call_expr_flags (arg0);
3271 if (flags & OEP_PURE_SAME)
3272 cef &= ECF_CONST | ECF_PURE;
3273 else
3274 cef &= ECF_CONST;
3275 if (!cef)
3276 return 0;
3279 /* Now see if all the arguments are the same. */
3281 const_call_expr_arg_iterator iter0, iter1;
3282 const_tree a0, a1;
3283 for (a0 = first_const_call_expr_arg (arg0, &iter0),
3284 a1 = first_const_call_expr_arg (arg1, &iter1);
3285 a0 && a1;
3286 a0 = next_const_call_expr_arg (&iter0),
3287 a1 = next_const_call_expr_arg (&iter1))
3288 if (! operand_equal_p (a0, a1, flags))
3289 return 0;
3291 /* If we get here and both argument lists are exhausted
3292 then the CALL_EXPRs are equal. */
3293 return ! (a0 || a1);
3295 default:
3296 return 0;
3299 case tcc_declaration:
3300 /* Consider __builtin_sqrt equal to sqrt. */
3301 return (TREE_CODE (arg0) == FUNCTION_DECL
3302 && DECL_BUILT_IN (arg0) && DECL_BUILT_IN (arg1)
3303 && DECL_BUILT_IN_CLASS (arg0) == DECL_BUILT_IN_CLASS (arg1)
3304 && DECL_FUNCTION_CODE (arg0) == DECL_FUNCTION_CODE (arg1));
3306 default:
3307 return 0;
3310 #undef OP_SAME
3311 #undef OP_SAME_WITH_NULL
3314 /* Similar to operand_equal_p, but see if ARG0 might have been made by
3315 shorten_compare from ARG1 when ARG1 was being compared with OTHER.
3317 When in doubt, return 0. */
3319 static int
3320 operand_equal_for_comparison_p (tree arg0, tree arg1, tree other)
3322 int unsignedp1, unsignedpo;
3323 tree primarg0, primarg1, primother;
3324 unsigned int correct_width;
3326 if (operand_equal_p (arg0, arg1, 0))
3327 return 1;
3329 if (! INTEGRAL_TYPE_P (TREE_TYPE (arg0))
3330 || ! INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
3331 return 0;
3333 /* Discard any conversions that don't change the modes of ARG0 and ARG1
3334 and see if the inner values are the same. This removes any
3335 signedness comparison, which doesn't matter here. */
3336 primarg0 = arg0, primarg1 = arg1;
3337 STRIP_NOPS (primarg0);
3338 STRIP_NOPS (primarg1);
3339 if (operand_equal_p (primarg0, primarg1, 0))
3340 return 1;
3342 /* Duplicate what shorten_compare does to ARG1 and see if that gives the
3343 actual comparison operand, ARG0.
3345 First throw away any conversions to wider types
3346 already present in the operands. */
3348 primarg1 = get_narrower (arg1, &unsignedp1);
3349 primother = get_narrower (other, &unsignedpo);
3351 correct_width = TYPE_PRECISION (TREE_TYPE (arg1));
3352 if (unsignedp1 == unsignedpo
3353 && TYPE_PRECISION (TREE_TYPE (primarg1)) < correct_width
3354 && TYPE_PRECISION (TREE_TYPE (primother)) < correct_width)
3356 tree type = TREE_TYPE (arg0);
3358 /* Make sure shorter operand is extended the right way
3359 to match the longer operand. */
3360 primarg1 = fold_convert (signed_or_unsigned_type_for
3361 (unsignedp1, TREE_TYPE (primarg1)), primarg1);
3363 if (operand_equal_p (arg0, fold_convert (type, primarg1), 0))
3364 return 1;
3367 return 0;
3370 /* See if ARG is an expression that is either a comparison or is performing
3371 arithmetic on comparisons. The comparisons must only be comparing
3372 two different values, which will be stored in *CVAL1 and *CVAL2; if
3373 they are nonzero it means that some operands have already been found.
3374 No variables may be used anywhere else in the expression except in the
3375 comparisons. If SAVE_P is true it means we removed a SAVE_EXPR around
3376 the expression and save_expr needs to be called with CVAL1 and CVAL2.
3378 If this is true, return 1. Otherwise, return zero. */
3380 static int
3381 twoval_comparison_p (tree arg, tree *cval1, tree *cval2, int *save_p)
3383 enum tree_code code = TREE_CODE (arg);
3384 enum tree_code_class class = TREE_CODE_CLASS (code);
3386 /* We can handle some of the tcc_expression cases here. */
3387 if (class == tcc_expression && code == TRUTH_NOT_EXPR)
3388 class = tcc_unary;
3389 else if (class == tcc_expression
3390 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR
3391 || code == COMPOUND_EXPR))
3392 class = tcc_binary;
3394 else if (class == tcc_expression && code == SAVE_EXPR
3395 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
3397 /* If we've already found a CVAL1 or CVAL2, this expression is
3398 two complex to handle. */
3399 if (*cval1 || *cval2)
3400 return 0;
3402 class = tcc_unary;
3403 *save_p = 1;
3406 switch (class)
3408 case tcc_unary:
3409 return twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p);
3411 case tcc_binary:
3412 return (twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p)
3413 && twoval_comparison_p (TREE_OPERAND (arg, 1),
3414 cval1, cval2, save_p));
3416 case tcc_constant:
3417 return 1;
3419 case tcc_expression:
3420 if (code == COND_EXPR)
3421 return (twoval_comparison_p (TREE_OPERAND (arg, 0),
3422 cval1, cval2, save_p)
3423 && twoval_comparison_p (TREE_OPERAND (arg, 1),
3424 cval1, cval2, save_p)
3425 && twoval_comparison_p (TREE_OPERAND (arg, 2),
3426 cval1, cval2, save_p));
3427 return 0;
3429 case tcc_comparison:
3430 /* First see if we can handle the first operand, then the second. For
3431 the second operand, we know *CVAL1 can't be zero. It must be that
3432 one side of the comparison is each of the values; test for the
3433 case where this isn't true by failing if the two operands
3434 are the same. */
3436 if (operand_equal_p (TREE_OPERAND (arg, 0),
3437 TREE_OPERAND (arg, 1), 0))
3438 return 0;
3440 if (*cval1 == 0)
3441 *cval1 = TREE_OPERAND (arg, 0);
3442 else if (operand_equal_p (*cval1, TREE_OPERAND (arg, 0), 0))
3444 else if (*cval2 == 0)
3445 *cval2 = TREE_OPERAND (arg, 0);
3446 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 0), 0))
3448 else
3449 return 0;
3451 if (operand_equal_p (*cval1, TREE_OPERAND (arg, 1), 0))
3453 else if (*cval2 == 0)
3454 *cval2 = TREE_OPERAND (arg, 1);
3455 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 1), 0))
3457 else
3458 return 0;
3460 return 1;
3462 default:
3463 return 0;
3467 /* ARG is a tree that is known to contain just arithmetic operations and
3468 comparisons. Evaluate the operations in the tree substituting NEW0 for
3469 any occurrence of OLD0 as an operand of a comparison and likewise for
3470 NEW1 and OLD1. */
3472 static tree
3473 eval_subst (tree arg, tree old0, tree new0, tree old1, tree new1)
3475 tree type = TREE_TYPE (arg);
3476 enum tree_code code = TREE_CODE (arg);
3477 enum tree_code_class class = TREE_CODE_CLASS (code);
3479 /* We can handle some of the tcc_expression cases here. */
3480 if (class == tcc_expression && code == TRUTH_NOT_EXPR)
3481 class = tcc_unary;
3482 else if (class == tcc_expression
3483 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
3484 class = tcc_binary;
3486 switch (class)
3488 case tcc_unary:
3489 return fold_build1 (code, type,
3490 eval_subst (TREE_OPERAND (arg, 0),
3491 old0, new0, old1, new1));
3493 case tcc_binary:
3494 return fold_build2 (code, type,
3495 eval_subst (TREE_OPERAND (arg, 0),
3496 old0, new0, old1, new1),
3497 eval_subst (TREE_OPERAND (arg, 1),
3498 old0, new0, old1, new1));
3500 case tcc_expression:
3501 switch (code)
3503 case SAVE_EXPR:
3504 return eval_subst (TREE_OPERAND (arg, 0), old0, new0, old1, new1);
3506 case COMPOUND_EXPR:
3507 return eval_subst (TREE_OPERAND (arg, 1), old0, new0, old1, new1);
3509 case COND_EXPR:
3510 return fold_build3 (code, type,
3511 eval_subst (TREE_OPERAND (arg, 0),
3512 old0, new0, old1, new1),
3513 eval_subst (TREE_OPERAND (arg, 1),
3514 old0, new0, old1, new1),
3515 eval_subst (TREE_OPERAND (arg, 2),
3516 old0, new0, old1, new1));
3517 default:
3518 break;
3520 /* Fall through - ??? */
3522 case tcc_comparison:
3524 tree arg0 = TREE_OPERAND (arg, 0);
3525 tree arg1 = TREE_OPERAND (arg, 1);
3527 /* We need to check both for exact equality and tree equality. The
3528 former will be true if the operand has a side-effect. In that
3529 case, we know the operand occurred exactly once. */
3531 if (arg0 == old0 || operand_equal_p (arg0, old0, 0))
3532 arg0 = new0;
3533 else if (arg0 == old1 || operand_equal_p (arg0, old1, 0))
3534 arg0 = new1;
3536 if (arg1 == old0 || operand_equal_p (arg1, old0, 0))
3537 arg1 = new0;
3538 else if (arg1 == old1 || operand_equal_p (arg1, old1, 0))
3539 arg1 = new1;
3541 return fold_build2 (code, type, arg0, arg1);
3544 default:
3545 return arg;
3549 /* Return a tree for the case when the result of an expression is RESULT
3550 converted to TYPE and OMITTED was previously an operand of the expression
3551 but is now not needed (e.g., we folded OMITTED * 0).
3553 If OMITTED has side effects, we must evaluate it. Otherwise, just do
3554 the conversion of RESULT to TYPE. */
3556 tree
3557 omit_one_operand (tree type, tree result, tree omitted)
3559 tree t = fold_convert (type, result);
3561 /* If the resulting operand is an empty statement, just return the omitted
3562 statement casted to void. */
3563 if (IS_EMPTY_STMT (t) && TREE_SIDE_EFFECTS (omitted))
3564 return build1 (NOP_EXPR, void_type_node, fold_ignored_result (omitted));
3566 if (TREE_SIDE_EFFECTS (omitted))
3567 return build2 (COMPOUND_EXPR, type, fold_ignored_result (omitted), t);
3569 return non_lvalue (t);
3572 /* Similar, but call pedantic_non_lvalue instead of non_lvalue. */
3574 static tree
3575 pedantic_omit_one_operand (tree type, tree result, tree omitted)
3577 tree t = fold_convert (type, result);
3579 /* If the resulting operand is an empty statement, just return the omitted
3580 statement casted to void. */
3581 if (IS_EMPTY_STMT (t) && TREE_SIDE_EFFECTS (omitted))
3582 return build1 (NOP_EXPR, void_type_node, fold_ignored_result (omitted));
3584 if (TREE_SIDE_EFFECTS (omitted))
3585 return build2 (COMPOUND_EXPR, type, fold_ignored_result (omitted), t);
3587 return pedantic_non_lvalue (t);
3590 /* Return a tree for the case when the result of an expression is RESULT
3591 converted to TYPE and OMITTED1 and OMITTED2 were previously operands
3592 of the expression but are now not needed.
3594 If OMITTED1 or OMITTED2 has side effects, they must be evaluated.
3595 If both OMITTED1 and OMITTED2 have side effects, OMITTED1 is
3596 evaluated before OMITTED2. Otherwise, if neither has side effects,
3597 just do the conversion of RESULT to TYPE. */
3599 tree
3600 omit_two_operands (tree type, tree result, tree omitted1, tree omitted2)
3602 tree t = fold_convert (type, result);
3604 if (TREE_SIDE_EFFECTS (omitted2))
3605 t = build2 (COMPOUND_EXPR, type, omitted2, t);
3606 if (TREE_SIDE_EFFECTS (omitted1))
3607 t = build2 (COMPOUND_EXPR, type, omitted1, t);
3609 return TREE_CODE (t) != COMPOUND_EXPR ? non_lvalue (t) : t;
3613 /* Return a simplified tree node for the truth-negation of ARG. This
3614 never alters ARG itself. We assume that ARG is an operation that
3615 returns a truth value (0 or 1).
3617 FIXME: one would think we would fold the result, but it causes
3618 problems with the dominator optimizer. */
3620 tree
3621 fold_truth_not_expr (tree arg)
3623 tree type = TREE_TYPE (arg);
3624 enum tree_code code = TREE_CODE (arg);
3626 /* If this is a comparison, we can simply invert it, except for
3627 floating-point non-equality comparisons, in which case we just
3628 enclose a TRUTH_NOT_EXPR around what we have. */
3630 if (TREE_CODE_CLASS (code) == tcc_comparison)
3632 tree op_type = TREE_TYPE (TREE_OPERAND (arg, 0));
3633 if (FLOAT_TYPE_P (op_type)
3634 && flag_trapping_math
3635 && code != ORDERED_EXPR && code != UNORDERED_EXPR
3636 && code != NE_EXPR && code != EQ_EXPR)
3637 return NULL_TREE;
3638 else
3640 code = invert_tree_comparison (code,
3641 HONOR_NANS (TYPE_MODE (op_type)));
3642 if (code == ERROR_MARK)
3643 return NULL_TREE;
3644 else
3645 return build2 (code, type,
3646 TREE_OPERAND (arg, 0), TREE_OPERAND (arg, 1));
3650 switch (code)
3652 case INTEGER_CST:
3653 return constant_boolean_node (integer_zerop (arg), type);
3655 case TRUTH_AND_EXPR:
3656 return build2 (TRUTH_OR_EXPR, type,
3657 invert_truthvalue (TREE_OPERAND (arg, 0)),
3658 invert_truthvalue (TREE_OPERAND (arg, 1)));
3660 case TRUTH_OR_EXPR:
3661 return build2 (TRUTH_AND_EXPR, type,
3662 invert_truthvalue (TREE_OPERAND (arg, 0)),
3663 invert_truthvalue (TREE_OPERAND (arg, 1)));
3665 case TRUTH_XOR_EXPR:
3666 /* Here we can invert either operand. We invert the first operand
3667 unless the second operand is a TRUTH_NOT_EXPR in which case our
3668 result is the XOR of the first operand with the inside of the
3669 negation of the second operand. */
3671 if (TREE_CODE (TREE_OPERAND (arg, 1)) == TRUTH_NOT_EXPR)
3672 return build2 (TRUTH_XOR_EXPR, type, TREE_OPERAND (arg, 0),
3673 TREE_OPERAND (TREE_OPERAND (arg, 1), 0));
3674 else
3675 return build2 (TRUTH_XOR_EXPR, type,
3676 invert_truthvalue (TREE_OPERAND (arg, 0)),
3677 TREE_OPERAND (arg, 1));
3679 case TRUTH_ANDIF_EXPR:
3680 return build2 (TRUTH_ORIF_EXPR, type,
3681 invert_truthvalue (TREE_OPERAND (arg, 0)),
3682 invert_truthvalue (TREE_OPERAND (arg, 1)));
3684 case TRUTH_ORIF_EXPR:
3685 return build2 (TRUTH_ANDIF_EXPR, type,
3686 invert_truthvalue (TREE_OPERAND (arg, 0)),
3687 invert_truthvalue (TREE_OPERAND (arg, 1)));
3689 case TRUTH_NOT_EXPR:
3690 return TREE_OPERAND (arg, 0);
3692 case COND_EXPR:
3694 tree arg1 = TREE_OPERAND (arg, 1);
3695 tree arg2 = TREE_OPERAND (arg, 2);
3696 /* A COND_EXPR may have a throw as one operand, which
3697 then has void type. Just leave void operands
3698 as they are. */
3699 return build3 (COND_EXPR, type, TREE_OPERAND (arg, 0),
3700 VOID_TYPE_P (TREE_TYPE (arg1))
3701 ? arg1 : invert_truthvalue (arg1),
3702 VOID_TYPE_P (TREE_TYPE (arg2))
3703 ? arg2 : invert_truthvalue (arg2));
3706 case COMPOUND_EXPR:
3707 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg, 0),
3708 invert_truthvalue (TREE_OPERAND (arg, 1)));
3710 case NON_LVALUE_EXPR:
3711 return invert_truthvalue (TREE_OPERAND (arg, 0));
3713 case NOP_EXPR:
3714 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
3715 return build1 (TRUTH_NOT_EXPR, type, arg);
3717 case CONVERT_EXPR:
3718 case FLOAT_EXPR:
3719 return build1 (TREE_CODE (arg), type,
3720 invert_truthvalue (TREE_OPERAND (arg, 0)));
3722 case BIT_AND_EXPR:
3723 if (!integer_onep (TREE_OPERAND (arg, 1)))
3724 break;
3725 return build2 (EQ_EXPR, type, arg,
3726 build_int_cst (type, 0));
3728 case SAVE_EXPR:
3729 return build1 (TRUTH_NOT_EXPR, type, arg);
3731 case CLEANUP_POINT_EXPR:
3732 return build1 (CLEANUP_POINT_EXPR, type,
3733 invert_truthvalue (TREE_OPERAND (arg, 0)));
3735 default:
3736 break;
3739 return NULL_TREE;
3742 /* Return a simplified tree node for the truth-negation of ARG. This
3743 never alters ARG itself. We assume that ARG is an operation that
3744 returns a truth value (0 or 1).
3746 FIXME: one would think we would fold the result, but it causes
3747 problems with the dominator optimizer. */
3749 tree
3750 invert_truthvalue (tree arg)
3752 tree tem;
3754 if (TREE_CODE (arg) == ERROR_MARK)
3755 return arg;
3757 tem = fold_truth_not_expr (arg);
3758 if (!tem)
3759 tem = build1 (TRUTH_NOT_EXPR, TREE_TYPE (arg), arg);
3761 return tem;
3764 /* Given a bit-wise operation CODE applied to ARG0 and ARG1, see if both
3765 operands are another bit-wise operation with a common input. If so,
3766 distribute the bit operations to save an operation and possibly two if
3767 constants are involved. For example, convert
3768 (A | B) & (A | C) into A | (B & C)
3769 Further simplification will occur if B and C are constants.
3771 If this optimization cannot be done, 0 will be returned. */
3773 static tree
3774 distribute_bit_expr (enum tree_code code, tree type, tree arg0, tree arg1)
3776 tree common;
3777 tree left, right;
3779 if (TREE_CODE (arg0) != TREE_CODE (arg1)
3780 || TREE_CODE (arg0) == code
3781 || (TREE_CODE (arg0) != BIT_AND_EXPR
3782 && TREE_CODE (arg0) != BIT_IOR_EXPR))
3783 return 0;
3785 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0))
3787 common = TREE_OPERAND (arg0, 0);
3788 left = TREE_OPERAND (arg0, 1);
3789 right = TREE_OPERAND (arg1, 1);
3791 else if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 1), 0))
3793 common = TREE_OPERAND (arg0, 0);
3794 left = TREE_OPERAND (arg0, 1);
3795 right = TREE_OPERAND (arg1, 0);
3797 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 0), 0))
3799 common = TREE_OPERAND (arg0, 1);
3800 left = TREE_OPERAND (arg0, 0);
3801 right = TREE_OPERAND (arg1, 1);
3803 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1), 0))
3805 common = TREE_OPERAND (arg0, 1);
3806 left = TREE_OPERAND (arg0, 0);
3807 right = TREE_OPERAND (arg1, 0);
3809 else
3810 return 0;
3812 return fold_build2 (TREE_CODE (arg0), type, common,
3813 fold_build2 (code, type, left, right));
3816 /* Knowing that ARG0 and ARG1 are both RDIV_EXPRs, simplify a binary operation
3817 with code CODE. This optimization is unsafe. */
3818 static tree
3819 distribute_real_division (enum tree_code code, tree type, tree arg0, tree arg1)
3821 bool mul0 = TREE_CODE (arg0) == MULT_EXPR;
3822 bool mul1 = TREE_CODE (arg1) == MULT_EXPR;
3824 /* (A / C) +- (B / C) -> (A +- B) / C. */
3825 if (mul0 == mul1
3826 && operand_equal_p (TREE_OPERAND (arg0, 1),
3827 TREE_OPERAND (arg1, 1), 0))
3828 return fold_build2 (mul0 ? MULT_EXPR : RDIV_EXPR, type,
3829 fold_build2 (code, type,
3830 TREE_OPERAND (arg0, 0),
3831 TREE_OPERAND (arg1, 0)),
3832 TREE_OPERAND (arg0, 1));
3834 /* (A / C1) +- (A / C2) -> A * (1 / C1 +- 1 / C2). */
3835 if (operand_equal_p (TREE_OPERAND (arg0, 0),
3836 TREE_OPERAND (arg1, 0), 0)
3837 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
3838 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST)
3840 REAL_VALUE_TYPE r0, r1;
3841 r0 = TREE_REAL_CST (TREE_OPERAND (arg0, 1));
3842 r1 = TREE_REAL_CST (TREE_OPERAND (arg1, 1));
3843 if (!mul0)
3844 real_arithmetic (&r0, RDIV_EXPR, &dconst1, &r0);
3845 if (!mul1)
3846 real_arithmetic (&r1, RDIV_EXPR, &dconst1, &r1);
3847 real_arithmetic (&r0, code, &r0, &r1);
3848 return fold_build2 (MULT_EXPR, type,
3849 TREE_OPERAND (arg0, 0),
3850 build_real (type, r0));
3853 return NULL_TREE;
3856 /* Subroutine for fold_truthop: decode a field reference.
3858 If EXP is a comparison reference, we return the innermost reference.
3860 *PBITSIZE is set to the number of bits in the reference, *PBITPOS is
3861 set to the starting bit number.
3863 If the innermost field can be completely contained in a mode-sized
3864 unit, *PMODE is set to that mode. Otherwise, it is set to VOIDmode.
3866 *PVOLATILEP is set to 1 if the any expression encountered is volatile;
3867 otherwise it is not changed.
3869 *PUNSIGNEDP is set to the signedness of the field.
3871 *PMASK is set to the mask used. This is either contained in a
3872 BIT_AND_EXPR or derived from the width of the field.
3874 *PAND_MASK is set to the mask found in a BIT_AND_EXPR, if any.
3876 Return 0 if this is not a component reference or is one that we can't
3877 do anything with. */
3879 static tree
3880 decode_field_reference (tree exp, HOST_WIDE_INT *pbitsize,
3881 HOST_WIDE_INT *pbitpos, enum machine_mode *pmode,
3882 int *punsignedp, int *pvolatilep,
3883 tree *pmask, tree *pand_mask)
3885 tree outer_type = 0;
3886 tree and_mask = 0;
3887 tree mask, inner, offset;
3888 tree unsigned_type;
3889 unsigned int precision;
3891 /* All the optimizations using this function assume integer fields.
3892 There are problems with FP fields since the type_for_size call
3893 below can fail for, e.g., XFmode. */
3894 if (! INTEGRAL_TYPE_P (TREE_TYPE (exp)))
3895 return 0;
3897 /* We are interested in the bare arrangement of bits, so strip everything
3898 that doesn't affect the machine mode. However, record the type of the
3899 outermost expression if it may matter below. */
3900 if (TREE_CODE (exp) == NOP_EXPR
3901 || TREE_CODE (exp) == CONVERT_EXPR
3902 || TREE_CODE (exp) == NON_LVALUE_EXPR)
3903 outer_type = TREE_TYPE (exp);
3904 STRIP_NOPS (exp);
3906 if (TREE_CODE (exp) == BIT_AND_EXPR)
3908 and_mask = TREE_OPERAND (exp, 1);
3909 exp = TREE_OPERAND (exp, 0);
3910 STRIP_NOPS (exp); STRIP_NOPS (and_mask);
3911 if (TREE_CODE (and_mask) != INTEGER_CST)
3912 return 0;
3915 inner = get_inner_reference (exp, pbitsize, pbitpos, &offset, pmode,
3916 punsignedp, pvolatilep, false);
3917 if ((inner == exp && and_mask == 0)
3918 || *pbitsize < 0 || offset != 0
3919 || TREE_CODE (inner) == PLACEHOLDER_EXPR)
3920 return 0;
3922 /* If the number of bits in the reference is the same as the bitsize of
3923 the outer type, then the outer type gives the signedness. Otherwise
3924 (in case of a small bitfield) the signedness is unchanged. */
3925 if (outer_type && *pbitsize == TYPE_PRECISION (outer_type))
3926 *punsignedp = TYPE_UNSIGNED (outer_type);
3928 /* Compute the mask to access the bitfield. */
3929 unsigned_type = lang_hooks.types.type_for_size (*pbitsize, 1);
3930 precision = TYPE_PRECISION (unsigned_type);
3932 mask = build_int_cst_type (unsigned_type, -1);
3934 mask = const_binop (LSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
3935 mask = const_binop (RSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
3937 /* Merge it with the mask we found in the BIT_AND_EXPR, if any. */
3938 if (and_mask != 0)
3939 mask = fold_build2 (BIT_AND_EXPR, unsigned_type,
3940 fold_convert (unsigned_type, and_mask), mask);
3942 *pmask = mask;
3943 *pand_mask = and_mask;
3944 return inner;
3947 /* Subroutine for fold: determine if VAL is the INTEGER_CONST that
3948 represents the sign bit of EXP's type. If EXP represents a sign
3949 or zero extension, also test VAL against the unextended type.
3950 The return value is the (sub)expression whose sign bit is VAL,
3951 or NULL_TREE otherwise. */
3953 static tree
3954 sign_bit_p (tree exp, const_tree val)
3956 unsigned HOST_WIDE_INT mask_lo, lo;
3957 HOST_WIDE_INT mask_hi, hi;
3958 int width;
3959 tree t;
3961 /* Tree EXP must have an integral type. */
3962 t = TREE_TYPE (exp);
3963 if (! INTEGRAL_TYPE_P (t))
3964 return NULL_TREE;
3966 /* Tree VAL must be an integer constant. */
3967 if (TREE_CODE (val) != INTEGER_CST
3968 || TREE_OVERFLOW (val))
3969 return NULL_TREE;
3971 width = TYPE_PRECISION (t);
3972 if (width > HOST_BITS_PER_WIDE_INT)
3974 hi = (unsigned HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT - 1);
3975 lo = 0;
3977 mask_hi = ((unsigned HOST_WIDE_INT) -1
3978 >> (2 * HOST_BITS_PER_WIDE_INT - width));
3979 mask_lo = -1;
3981 else
3983 hi = 0;
3984 lo = (unsigned HOST_WIDE_INT) 1 << (width - 1);
3986 mask_hi = 0;
3987 mask_lo = ((unsigned HOST_WIDE_INT) -1
3988 >> (HOST_BITS_PER_WIDE_INT - width));
3991 /* We mask off those bits beyond TREE_TYPE (exp) so that we can
3992 treat VAL as if it were unsigned. */
3993 if ((TREE_INT_CST_HIGH (val) & mask_hi) == hi
3994 && (TREE_INT_CST_LOW (val) & mask_lo) == lo)
3995 return exp;
3997 /* Handle extension from a narrower type. */
3998 if (TREE_CODE (exp) == NOP_EXPR
3999 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))) < width)
4000 return sign_bit_p (TREE_OPERAND (exp, 0), val);
4002 return NULL_TREE;
4005 /* Subroutine for fold_truthop: determine if an operand is simple enough
4006 to be evaluated unconditionally. */
4008 static int
4009 simple_operand_p (const_tree exp)
4011 /* Strip any conversions that don't change the machine mode. */
4012 STRIP_NOPS (exp);
4014 return (CONSTANT_CLASS_P (exp)
4015 || TREE_CODE (exp) == SSA_NAME
4016 || (DECL_P (exp)
4017 && ! TREE_ADDRESSABLE (exp)
4018 && ! TREE_THIS_VOLATILE (exp)
4019 && ! DECL_NONLOCAL (exp)
4020 /* Don't regard global variables as simple. They may be
4021 allocated in ways unknown to the compiler (shared memory,
4022 #pragma weak, etc). */
4023 && ! TREE_PUBLIC (exp)
4024 && ! DECL_EXTERNAL (exp)
4025 /* Loading a static variable is unduly expensive, but global
4026 registers aren't expensive. */
4027 && (! TREE_STATIC (exp) || DECL_REGISTER (exp))));
4030 /* The following functions are subroutines to fold_range_test and allow it to
4031 try to change a logical combination of comparisons into a range test.
4033 For example, both
4034 X == 2 || X == 3 || X == 4 || X == 5
4036 X >= 2 && X <= 5
4037 are converted to
4038 (unsigned) (X - 2) <= 3
4040 We describe each set of comparisons as being either inside or outside
4041 a range, using a variable named like IN_P, and then describe the
4042 range with a lower and upper bound. If one of the bounds is omitted,
4043 it represents either the highest or lowest value of the type.
4045 In the comments below, we represent a range by two numbers in brackets
4046 preceded by a "+" to designate being inside that range, or a "-" to
4047 designate being outside that range, so the condition can be inverted by
4048 flipping the prefix. An omitted bound is represented by a "-". For
4049 example, "- [-, 10]" means being outside the range starting at the lowest
4050 possible value and ending at 10, in other words, being greater than 10.
4051 The range "+ [-, -]" is always true and hence the range "- [-, -]" is
4052 always false.
4054 We set up things so that the missing bounds are handled in a consistent
4055 manner so neither a missing bound nor "true" and "false" need to be
4056 handled using a special case. */
4058 /* Return the result of applying CODE to ARG0 and ARG1, but handle the case
4059 of ARG0 and/or ARG1 being omitted, meaning an unlimited range. UPPER0_P
4060 and UPPER1_P are nonzero if the respective argument is an upper bound
4061 and zero for a lower. TYPE, if nonzero, is the type of the result; it
4062 must be specified for a comparison. ARG1 will be converted to ARG0's
4063 type if both are specified. */
4065 static tree
4066 range_binop (enum tree_code code, tree type, tree arg0, int upper0_p,
4067 tree arg1, int upper1_p)
4069 tree tem;
4070 int result;
4071 int sgn0, sgn1;
4073 /* If neither arg represents infinity, do the normal operation.
4074 Else, if not a comparison, return infinity. Else handle the special
4075 comparison rules. Note that most of the cases below won't occur, but
4076 are handled for consistency. */
4078 if (arg0 != 0 && arg1 != 0)
4080 tem = fold_build2 (code, type != 0 ? type : TREE_TYPE (arg0),
4081 arg0, fold_convert (TREE_TYPE (arg0), arg1));
4082 STRIP_NOPS (tem);
4083 return TREE_CODE (tem) == INTEGER_CST ? tem : 0;
4086 if (TREE_CODE_CLASS (code) != tcc_comparison)
4087 return 0;
4089 /* Set SGN[01] to -1 if ARG[01] is a lower bound, 1 for upper, and 0
4090 for neither. In real maths, we cannot assume open ended ranges are
4091 the same. But, this is computer arithmetic, where numbers are finite.
4092 We can therefore make the transformation of any unbounded range with
4093 the value Z, Z being greater than any representable number. This permits
4094 us to treat unbounded ranges as equal. */
4095 sgn0 = arg0 != 0 ? 0 : (upper0_p ? 1 : -1);
4096 sgn1 = arg1 != 0 ? 0 : (upper1_p ? 1 : -1);
4097 switch (code)
4099 case EQ_EXPR:
4100 result = sgn0 == sgn1;
4101 break;
4102 case NE_EXPR:
4103 result = sgn0 != sgn1;
4104 break;
4105 case LT_EXPR:
4106 result = sgn0 < sgn1;
4107 break;
4108 case LE_EXPR:
4109 result = sgn0 <= sgn1;
4110 break;
4111 case GT_EXPR:
4112 result = sgn0 > sgn1;
4113 break;
4114 case GE_EXPR:
4115 result = sgn0 >= sgn1;
4116 break;
4117 default:
4118 gcc_unreachable ();
4121 return constant_boolean_node (result, type);
4124 /* Given EXP, a logical expression, set the range it is testing into
4125 variables denoted by PIN_P, PLOW, and PHIGH. Return the expression
4126 actually being tested. *PLOW and *PHIGH will be made of the same
4127 type as the returned expression. If EXP is not a comparison, we
4128 will most likely not be returning a useful value and range. Set
4129 *STRICT_OVERFLOW_P to true if the return value is only valid
4130 because signed overflow is undefined; otherwise, do not change
4131 *STRICT_OVERFLOW_P. */
4133 static tree
4134 make_range (tree exp, int *pin_p, tree *plow, tree *phigh,
4135 bool *strict_overflow_p)
4137 enum tree_code code;
4138 tree arg0 = NULL_TREE, arg1 = NULL_TREE;
4139 tree exp_type = NULL_TREE, arg0_type = NULL_TREE;
4140 int in_p, n_in_p;
4141 tree low, high, n_low, n_high;
4143 /* Start with simply saying "EXP != 0" and then look at the code of EXP
4144 and see if we can refine the range. Some of the cases below may not
4145 happen, but it doesn't seem worth worrying about this. We "continue"
4146 the outer loop when we've changed something; otherwise we "break"
4147 the switch, which will "break" the while. */
4149 in_p = 0;
4150 low = high = build_int_cst (TREE_TYPE (exp), 0);
4152 while (1)
4154 code = TREE_CODE (exp);
4155 exp_type = TREE_TYPE (exp);
4157 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
4159 if (TREE_OPERAND_LENGTH (exp) > 0)
4160 arg0 = TREE_OPERAND (exp, 0);
4161 if (TREE_CODE_CLASS (code) == tcc_comparison
4162 || TREE_CODE_CLASS (code) == tcc_unary
4163 || TREE_CODE_CLASS (code) == tcc_binary)
4164 arg0_type = TREE_TYPE (arg0);
4165 if (TREE_CODE_CLASS (code) == tcc_binary
4166 || TREE_CODE_CLASS (code) == tcc_comparison
4167 || (TREE_CODE_CLASS (code) == tcc_expression
4168 && TREE_OPERAND_LENGTH (exp) > 1))
4169 arg1 = TREE_OPERAND (exp, 1);
4172 switch (code)
4174 case TRUTH_NOT_EXPR:
4175 in_p = ! in_p, exp = arg0;
4176 continue;
4178 case EQ_EXPR: case NE_EXPR:
4179 case LT_EXPR: case LE_EXPR: case GE_EXPR: case GT_EXPR:
4180 /* We can only do something if the range is testing for zero
4181 and if the second operand is an integer constant. Note that
4182 saying something is "in" the range we make is done by
4183 complementing IN_P since it will set in the initial case of
4184 being not equal to zero; "out" is leaving it alone. */
4185 if (low == 0 || high == 0
4186 || ! integer_zerop (low) || ! integer_zerop (high)
4187 || TREE_CODE (arg1) != INTEGER_CST)
4188 break;
4190 switch (code)
4192 case NE_EXPR: /* - [c, c] */
4193 low = high = arg1;
4194 break;
4195 case EQ_EXPR: /* + [c, c] */
4196 in_p = ! in_p, low = high = arg1;
4197 break;
4198 case GT_EXPR: /* - [-, c] */
4199 low = 0, high = arg1;
4200 break;
4201 case GE_EXPR: /* + [c, -] */
4202 in_p = ! in_p, low = arg1, high = 0;
4203 break;
4204 case LT_EXPR: /* - [c, -] */
4205 low = arg1, high = 0;
4206 break;
4207 case LE_EXPR: /* + [-, c] */
4208 in_p = ! in_p, low = 0, high = arg1;
4209 break;
4210 default:
4211 gcc_unreachable ();
4214 /* If this is an unsigned comparison, we also know that EXP is
4215 greater than or equal to zero. We base the range tests we make
4216 on that fact, so we record it here so we can parse existing
4217 range tests. We test arg0_type since often the return type
4218 of, e.g. EQ_EXPR, is boolean. */
4219 if (TYPE_UNSIGNED (arg0_type) && (low == 0 || high == 0))
4221 if (! merge_ranges (&n_in_p, &n_low, &n_high,
4222 in_p, low, high, 1,
4223 build_int_cst (arg0_type, 0),
4224 NULL_TREE))
4225 break;
4227 in_p = n_in_p, low = n_low, high = n_high;
4229 /* If the high bound is missing, but we have a nonzero low
4230 bound, reverse the range so it goes from zero to the low bound
4231 minus 1. */
4232 if (high == 0 && low && ! integer_zerop (low))
4234 in_p = ! in_p;
4235 high = range_binop (MINUS_EXPR, NULL_TREE, low, 0,
4236 integer_one_node, 0);
4237 low = build_int_cst (arg0_type, 0);
4241 exp = arg0;
4242 continue;
4244 case NEGATE_EXPR:
4245 /* (-x) IN [a,b] -> x in [-b, -a] */
4246 n_low = range_binop (MINUS_EXPR, exp_type,
4247 build_int_cst (exp_type, 0),
4248 0, high, 1);
4249 n_high = range_binop (MINUS_EXPR, exp_type,
4250 build_int_cst (exp_type, 0),
4251 0, low, 0);
4252 low = n_low, high = n_high;
4253 exp = arg0;
4254 continue;
4256 case BIT_NOT_EXPR:
4257 /* ~ X -> -X - 1 */
4258 exp = build2 (MINUS_EXPR, exp_type, negate_expr (arg0),
4259 build_int_cst (exp_type, 1));
4260 continue;
4262 case PLUS_EXPR: case MINUS_EXPR:
4263 if (TREE_CODE (arg1) != INTEGER_CST)
4264 break;
4266 /* If flag_wrapv and ARG0_TYPE is signed, then we cannot
4267 move a constant to the other side. */
4268 if (!TYPE_UNSIGNED (arg0_type)
4269 && !TYPE_OVERFLOW_UNDEFINED (arg0_type))
4270 break;
4272 /* If EXP is signed, any overflow in the computation is undefined,
4273 so we don't worry about it so long as our computations on
4274 the bounds don't overflow. For unsigned, overflow is defined
4275 and this is exactly the right thing. */
4276 n_low = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
4277 arg0_type, low, 0, arg1, 0);
4278 n_high = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
4279 arg0_type, high, 1, arg1, 0);
4280 if ((n_low != 0 && TREE_OVERFLOW (n_low))
4281 || (n_high != 0 && TREE_OVERFLOW (n_high)))
4282 break;
4284 if (TYPE_OVERFLOW_UNDEFINED (arg0_type))
4285 *strict_overflow_p = true;
4287 /* Check for an unsigned range which has wrapped around the maximum
4288 value thus making n_high < n_low, and normalize it. */
4289 if (n_low && n_high && tree_int_cst_lt (n_high, n_low))
4291 low = range_binop (PLUS_EXPR, arg0_type, n_high, 0,
4292 integer_one_node, 0);
4293 high = range_binop (MINUS_EXPR, arg0_type, n_low, 0,
4294 integer_one_node, 0);
4296 /* If the range is of the form +/- [ x+1, x ], we won't
4297 be able to normalize it. But then, it represents the
4298 whole range or the empty set, so make it
4299 +/- [ -, - ]. */
4300 if (tree_int_cst_equal (n_low, low)
4301 && tree_int_cst_equal (n_high, high))
4302 low = high = 0;
4303 else
4304 in_p = ! in_p;
4306 else
4307 low = n_low, high = n_high;
4309 exp = arg0;
4310 continue;
4312 case NOP_EXPR: case NON_LVALUE_EXPR: case CONVERT_EXPR:
4313 if (TYPE_PRECISION (arg0_type) > TYPE_PRECISION (exp_type))
4314 break;
4316 if (! INTEGRAL_TYPE_P (arg0_type)
4317 || (low != 0 && ! int_fits_type_p (low, arg0_type))
4318 || (high != 0 && ! int_fits_type_p (high, arg0_type)))
4319 break;
4321 n_low = low, n_high = high;
4323 if (n_low != 0)
4324 n_low = fold_convert (arg0_type, n_low);
4326 if (n_high != 0)
4327 n_high = fold_convert (arg0_type, n_high);
4330 /* If we're converting arg0 from an unsigned type, to exp,
4331 a signed type, we will be doing the comparison as unsigned.
4332 The tests above have already verified that LOW and HIGH
4333 are both positive.
4335 So we have to ensure that we will handle large unsigned
4336 values the same way that the current signed bounds treat
4337 negative values. */
4339 if (!TYPE_UNSIGNED (exp_type) && TYPE_UNSIGNED (arg0_type))
4341 tree high_positive;
4342 tree equiv_type;
4343 /* For fixed-point modes, we need to pass the saturating flag
4344 as the 2nd parameter. */
4345 if (ALL_FIXED_POINT_MODE_P (TYPE_MODE (arg0_type)))
4346 equiv_type = lang_hooks.types.type_for_mode
4347 (TYPE_MODE (arg0_type),
4348 TYPE_SATURATING (arg0_type));
4349 else
4350 equiv_type = lang_hooks.types.type_for_mode
4351 (TYPE_MODE (arg0_type), 1);
4353 /* A range without an upper bound is, naturally, unbounded.
4354 Since convert would have cropped a very large value, use
4355 the max value for the destination type. */
4356 high_positive
4357 = TYPE_MAX_VALUE (equiv_type) ? TYPE_MAX_VALUE (equiv_type)
4358 : TYPE_MAX_VALUE (arg0_type);
4360 if (TYPE_PRECISION (exp_type) == TYPE_PRECISION (arg0_type))
4361 high_positive = fold_build2 (RSHIFT_EXPR, arg0_type,
4362 fold_convert (arg0_type,
4363 high_positive),
4364 build_int_cst (arg0_type, 1));
4366 /* If the low bound is specified, "and" the range with the
4367 range for which the original unsigned value will be
4368 positive. */
4369 if (low != 0)
4371 if (! merge_ranges (&n_in_p, &n_low, &n_high,
4372 1, n_low, n_high, 1,
4373 fold_convert (arg0_type,
4374 integer_zero_node),
4375 high_positive))
4376 break;
4378 in_p = (n_in_p == in_p);
4380 else
4382 /* Otherwise, "or" the range with the range of the input
4383 that will be interpreted as negative. */
4384 if (! merge_ranges (&n_in_p, &n_low, &n_high,
4385 0, n_low, n_high, 1,
4386 fold_convert (arg0_type,
4387 integer_zero_node),
4388 high_positive))
4389 break;
4391 in_p = (in_p != n_in_p);
4395 exp = arg0;
4396 low = n_low, high = n_high;
4397 continue;
4399 default:
4400 break;
4403 break;
4406 /* If EXP is a constant, we can evaluate whether this is true or false. */
4407 if (TREE_CODE (exp) == INTEGER_CST)
4409 in_p = in_p == (integer_onep (range_binop (GE_EXPR, integer_type_node,
4410 exp, 0, low, 0))
4411 && integer_onep (range_binop (LE_EXPR, integer_type_node,
4412 exp, 1, high, 1)));
4413 low = high = 0;
4414 exp = 0;
4417 *pin_p = in_p, *plow = low, *phigh = high;
4418 return exp;
4421 /* Given a range, LOW, HIGH, and IN_P, an expression, EXP, and a result
4422 type, TYPE, return an expression to test if EXP is in (or out of, depending
4423 on IN_P) the range. Return 0 if the test couldn't be created. */
4425 static tree
4426 build_range_check (tree type, tree exp, int in_p, tree low, tree high)
4428 tree etype = TREE_TYPE (exp);
4429 tree value;
4431 #ifdef HAVE_canonicalize_funcptr_for_compare
4432 /* Disable this optimization for function pointer expressions
4433 on targets that require function pointer canonicalization. */
4434 if (HAVE_canonicalize_funcptr_for_compare
4435 && TREE_CODE (etype) == POINTER_TYPE
4436 && TREE_CODE (TREE_TYPE (etype)) == FUNCTION_TYPE)
4437 return NULL_TREE;
4438 #endif
4440 if (! in_p)
4442 value = build_range_check (type, exp, 1, low, high);
4443 if (value != 0)
4444 return invert_truthvalue (value);
4446 return 0;
4449 if (low == 0 && high == 0)
4450 return build_int_cst (type, 1);
4452 if (low == 0)
4453 return fold_build2 (LE_EXPR, type, exp,
4454 fold_convert (etype, high));
4456 if (high == 0)
4457 return fold_build2 (GE_EXPR, type, exp,
4458 fold_convert (etype, low));
4460 if (operand_equal_p (low, high, 0))
4461 return fold_build2 (EQ_EXPR, type, exp,
4462 fold_convert (etype, low));
4464 if (integer_zerop (low))
4466 if (! TYPE_UNSIGNED (etype))
4468 etype = unsigned_type_for (etype);
4469 high = fold_convert (etype, high);
4470 exp = fold_convert (etype, exp);
4472 return build_range_check (type, exp, 1, 0, high);
4475 /* Optimize (c>=1) && (c<=127) into (signed char)c > 0. */
4476 if (integer_onep (low) && TREE_CODE (high) == INTEGER_CST)
4478 unsigned HOST_WIDE_INT lo;
4479 HOST_WIDE_INT hi;
4480 int prec;
4482 prec = TYPE_PRECISION (etype);
4483 if (prec <= HOST_BITS_PER_WIDE_INT)
4485 hi = 0;
4486 lo = ((unsigned HOST_WIDE_INT) 1 << (prec - 1)) - 1;
4488 else
4490 hi = ((HOST_WIDE_INT) 1 << (prec - HOST_BITS_PER_WIDE_INT - 1)) - 1;
4491 lo = (unsigned HOST_WIDE_INT) -1;
4494 if (TREE_INT_CST_HIGH (high) == hi && TREE_INT_CST_LOW (high) == lo)
4496 if (TYPE_UNSIGNED (etype))
4498 etype = signed_type_for (etype);
4499 exp = fold_convert (etype, exp);
4501 return fold_build2 (GT_EXPR, type, exp,
4502 build_int_cst (etype, 0));
4506 /* Optimize (c>=low) && (c<=high) into (c-low>=0) && (c-low<=high-low).
4507 This requires wrap-around arithmetics for the type of the expression. */
4508 switch (TREE_CODE (etype))
4510 case INTEGER_TYPE:
4511 /* There is no requirement that LOW be within the range of ETYPE
4512 if the latter is a subtype. It must, however, be within the base
4513 type of ETYPE. So be sure we do the subtraction in that type. */
4514 if (TREE_TYPE (etype))
4515 etype = TREE_TYPE (etype);
4516 break;
4518 case ENUMERAL_TYPE:
4519 case BOOLEAN_TYPE:
4520 etype = lang_hooks.types.type_for_size (TYPE_PRECISION (etype),
4521 TYPE_UNSIGNED (etype));
4522 break;
4524 default:
4525 break;
4528 /* If we don't have wrap-around arithmetics upfront, try to force it. */
4529 if (TREE_CODE (etype) == INTEGER_TYPE
4530 && !TYPE_OVERFLOW_WRAPS (etype))
4532 tree utype, minv, maxv;
4534 /* Check if (unsigned) INT_MAX + 1 == (unsigned) INT_MIN
4535 for the type in question, as we rely on this here. */
4536 utype = unsigned_type_for (etype);
4537 maxv = fold_convert (utype, TYPE_MAX_VALUE (etype));
4538 maxv = range_binop (PLUS_EXPR, NULL_TREE, maxv, 1,
4539 integer_one_node, 1);
4540 minv = fold_convert (utype, TYPE_MIN_VALUE (etype));
4542 if (integer_zerop (range_binop (NE_EXPR, integer_type_node,
4543 minv, 1, maxv, 1)))
4544 etype = utype;
4545 else
4546 return 0;
4549 high = fold_convert (etype, high);
4550 low = fold_convert (etype, low);
4551 exp = fold_convert (etype, exp);
4553 value = const_binop (MINUS_EXPR, high, low, 0);
4556 if (POINTER_TYPE_P (etype))
4558 if (value != 0 && !TREE_OVERFLOW (value))
4560 low = fold_convert (sizetype, low);
4561 low = fold_build1 (NEGATE_EXPR, sizetype, low);
4562 return build_range_check (type,
4563 fold_build2 (POINTER_PLUS_EXPR, etype, exp, low),
4564 1, build_int_cst (etype, 0), value);
4566 return 0;
4569 if (value != 0 && !TREE_OVERFLOW (value))
4570 return build_range_check (type,
4571 fold_build2 (MINUS_EXPR, etype, exp, low),
4572 1, build_int_cst (etype, 0), value);
4574 return 0;
4577 /* Return the predecessor of VAL in its type, handling the infinite case. */
4579 static tree
4580 range_predecessor (tree val)
4582 tree type = TREE_TYPE (val);
4584 if (INTEGRAL_TYPE_P (type)
4585 && operand_equal_p (val, TYPE_MIN_VALUE (type), 0))
4586 return 0;
4587 else
4588 return range_binop (MINUS_EXPR, NULL_TREE, val, 0, integer_one_node, 0);
4591 /* Return the successor of VAL in its type, handling the infinite case. */
4593 static tree
4594 range_successor (tree val)
4596 tree type = TREE_TYPE (val);
4598 if (INTEGRAL_TYPE_P (type)
4599 && operand_equal_p (val, TYPE_MAX_VALUE (type), 0))
4600 return 0;
4601 else
4602 return range_binop (PLUS_EXPR, NULL_TREE, val, 0, integer_one_node, 0);
4605 /* Given two ranges, see if we can merge them into one. Return 1 if we
4606 can, 0 if we can't. Set the output range into the specified parameters. */
4608 static int
4609 merge_ranges (int *pin_p, tree *plow, tree *phigh, int in0_p, tree low0,
4610 tree high0, int in1_p, tree low1, tree high1)
4612 int no_overlap;
4613 int subset;
4614 int temp;
4615 tree tem;
4616 int in_p;
4617 tree low, high;
4618 int lowequal = ((low0 == 0 && low1 == 0)
4619 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
4620 low0, 0, low1, 0)));
4621 int highequal = ((high0 == 0 && high1 == 0)
4622 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
4623 high0, 1, high1, 1)));
4625 /* Make range 0 be the range that starts first, or ends last if they
4626 start at the same value. Swap them if it isn't. */
4627 if (integer_onep (range_binop (GT_EXPR, integer_type_node,
4628 low0, 0, low1, 0))
4629 || (lowequal
4630 && integer_onep (range_binop (GT_EXPR, integer_type_node,
4631 high1, 1, high0, 1))))
4633 temp = in0_p, in0_p = in1_p, in1_p = temp;
4634 tem = low0, low0 = low1, low1 = tem;
4635 tem = high0, high0 = high1, high1 = tem;
4638 /* Now flag two cases, whether the ranges are disjoint or whether the
4639 second range is totally subsumed in the first. Note that the tests
4640 below are simplified by the ones above. */
4641 no_overlap = integer_onep (range_binop (LT_EXPR, integer_type_node,
4642 high0, 1, low1, 0));
4643 subset = integer_onep (range_binop (LE_EXPR, integer_type_node,
4644 high1, 1, high0, 1));
4646 /* We now have four cases, depending on whether we are including or
4647 excluding the two ranges. */
4648 if (in0_p && in1_p)
4650 /* If they don't overlap, the result is false. If the second range
4651 is a subset it is the result. Otherwise, the range is from the start
4652 of the second to the end of the first. */
4653 if (no_overlap)
4654 in_p = 0, low = high = 0;
4655 else if (subset)
4656 in_p = 1, low = low1, high = high1;
4657 else
4658 in_p = 1, low = low1, high = high0;
4661 else if (in0_p && ! in1_p)
4663 /* If they don't overlap, the result is the first range. If they are
4664 equal, the result is false. If the second range is a subset of the
4665 first, and the ranges begin at the same place, we go from just after
4666 the end of the second range to the end of the first. If the second
4667 range is not a subset of the first, or if it is a subset and both
4668 ranges end at the same place, the range starts at the start of the
4669 first range and ends just before the second range.
4670 Otherwise, we can't describe this as a single range. */
4671 if (no_overlap)
4672 in_p = 1, low = low0, high = high0;
4673 else if (lowequal && highequal)
4674 in_p = 0, low = high = 0;
4675 else if (subset && lowequal)
4677 low = range_successor (high1);
4678 high = high0;
4679 in_p = 1;
4680 if (low == 0)
4682 /* We are in the weird situation where high0 > high1 but
4683 high1 has no successor. Punt. */
4684 return 0;
4687 else if (! subset || highequal)
4689 low = low0;
4690 high = range_predecessor (low1);
4691 in_p = 1;
4692 if (high == 0)
4694 /* low0 < low1 but low1 has no predecessor. Punt. */
4695 return 0;
4698 else
4699 return 0;
4702 else if (! in0_p && in1_p)
4704 /* If they don't overlap, the result is the second range. If the second
4705 is a subset of the first, the result is false. Otherwise,
4706 the range starts just after the first range and ends at the
4707 end of the second. */
4708 if (no_overlap)
4709 in_p = 1, low = low1, high = high1;
4710 else if (subset || highequal)
4711 in_p = 0, low = high = 0;
4712 else
4714 low = range_successor (high0);
4715 high = high1;
4716 in_p = 1;
4717 if (low == 0)
4719 /* high1 > high0 but high0 has no successor. Punt. */
4720 return 0;
4725 else
4727 /* The case where we are excluding both ranges. Here the complex case
4728 is if they don't overlap. In that case, the only time we have a
4729 range is if they are adjacent. If the second is a subset of the
4730 first, the result is the first. Otherwise, the range to exclude
4731 starts at the beginning of the first range and ends at the end of the
4732 second. */
4733 if (no_overlap)
4735 if (integer_onep (range_binop (EQ_EXPR, integer_type_node,
4736 range_successor (high0),
4737 1, low1, 0)))
4738 in_p = 0, low = low0, high = high1;
4739 else
4741 /* Canonicalize - [min, x] into - [-, x]. */
4742 if (low0 && TREE_CODE (low0) == INTEGER_CST)
4743 switch (TREE_CODE (TREE_TYPE (low0)))
4745 case ENUMERAL_TYPE:
4746 if (TYPE_PRECISION (TREE_TYPE (low0))
4747 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (low0))))
4748 break;
4749 /* FALLTHROUGH */
4750 case INTEGER_TYPE:
4751 if (tree_int_cst_equal (low0,
4752 TYPE_MIN_VALUE (TREE_TYPE (low0))))
4753 low0 = 0;
4754 break;
4755 case POINTER_TYPE:
4756 if (TYPE_UNSIGNED (TREE_TYPE (low0))
4757 && integer_zerop (low0))
4758 low0 = 0;
4759 break;
4760 default:
4761 break;
4764 /* Canonicalize - [x, max] into - [x, -]. */
4765 if (high1 && TREE_CODE (high1) == INTEGER_CST)
4766 switch (TREE_CODE (TREE_TYPE (high1)))
4768 case ENUMERAL_TYPE:
4769 if (TYPE_PRECISION (TREE_TYPE (high1))
4770 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (high1))))
4771 break;
4772 /* FALLTHROUGH */
4773 case INTEGER_TYPE:
4774 if (tree_int_cst_equal (high1,
4775 TYPE_MAX_VALUE (TREE_TYPE (high1))))
4776 high1 = 0;
4777 break;
4778 case POINTER_TYPE:
4779 if (TYPE_UNSIGNED (TREE_TYPE (high1))
4780 && integer_zerop (range_binop (PLUS_EXPR, NULL_TREE,
4781 high1, 1,
4782 integer_one_node, 1)))
4783 high1 = 0;
4784 break;
4785 default:
4786 break;
4789 /* The ranges might be also adjacent between the maximum and
4790 minimum values of the given type. For
4791 - [{min,-}, x] and - [y, {max,-}] ranges where x + 1 < y
4792 return + [x + 1, y - 1]. */
4793 if (low0 == 0 && high1 == 0)
4795 low = range_successor (high0);
4796 high = range_predecessor (low1);
4797 if (low == 0 || high == 0)
4798 return 0;
4800 in_p = 1;
4802 else
4803 return 0;
4806 else if (subset)
4807 in_p = 0, low = low0, high = high0;
4808 else
4809 in_p = 0, low = low0, high = high1;
4812 *pin_p = in_p, *plow = low, *phigh = high;
4813 return 1;
4817 /* Subroutine of fold, looking inside expressions of the form
4818 A op B ? A : C, where ARG0, ARG1 and ARG2 are the three operands
4819 of the COND_EXPR. This function is being used also to optimize
4820 A op B ? C : A, by reversing the comparison first.
4822 Return a folded expression whose code is not a COND_EXPR
4823 anymore, or NULL_TREE if no folding opportunity is found. */
4825 static tree
4826 fold_cond_expr_with_comparison (tree type, tree arg0, tree arg1, tree arg2)
4828 enum tree_code comp_code = TREE_CODE (arg0);
4829 tree arg00 = TREE_OPERAND (arg0, 0);
4830 tree arg01 = TREE_OPERAND (arg0, 1);
4831 tree arg1_type = TREE_TYPE (arg1);
4832 tree tem;
4834 STRIP_NOPS (arg1);
4835 STRIP_NOPS (arg2);
4837 /* If we have A op 0 ? A : -A, consider applying the following
4838 transformations:
4840 A == 0? A : -A same as -A
4841 A != 0? A : -A same as A
4842 A >= 0? A : -A same as abs (A)
4843 A > 0? A : -A same as abs (A)
4844 A <= 0? A : -A same as -abs (A)
4845 A < 0? A : -A same as -abs (A)
4847 None of these transformations work for modes with signed
4848 zeros. If A is +/-0, the first two transformations will
4849 change the sign of the result (from +0 to -0, or vice
4850 versa). The last four will fix the sign of the result,
4851 even though the original expressions could be positive or
4852 negative, depending on the sign of A.
4854 Note that all these transformations are correct if A is
4855 NaN, since the two alternatives (A and -A) are also NaNs. */
4856 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type))
4857 && (FLOAT_TYPE_P (TREE_TYPE (arg01))
4858 ? real_zerop (arg01)
4859 : integer_zerop (arg01))
4860 && ((TREE_CODE (arg2) == NEGATE_EXPR
4861 && operand_equal_p (TREE_OPERAND (arg2, 0), arg1, 0))
4862 /* In the case that A is of the form X-Y, '-A' (arg2) may
4863 have already been folded to Y-X, check for that. */
4864 || (TREE_CODE (arg1) == MINUS_EXPR
4865 && TREE_CODE (arg2) == MINUS_EXPR
4866 && operand_equal_p (TREE_OPERAND (arg1, 0),
4867 TREE_OPERAND (arg2, 1), 0)
4868 && operand_equal_p (TREE_OPERAND (arg1, 1),
4869 TREE_OPERAND (arg2, 0), 0))))
4870 switch (comp_code)
4872 case EQ_EXPR:
4873 case UNEQ_EXPR:
4874 tem = fold_convert (arg1_type, arg1);
4875 return pedantic_non_lvalue (fold_convert (type, negate_expr (tem)));
4876 case NE_EXPR:
4877 case LTGT_EXPR:
4878 return pedantic_non_lvalue (fold_convert (type, arg1));
4879 case UNGE_EXPR:
4880 case UNGT_EXPR:
4881 if (flag_trapping_math)
4882 break;
4883 /* Fall through. */
4884 case GE_EXPR:
4885 case GT_EXPR:
4886 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
4887 arg1 = fold_convert (signed_type_for
4888 (TREE_TYPE (arg1)), arg1);
4889 tem = fold_build1 (ABS_EXPR, TREE_TYPE (arg1), arg1);
4890 return pedantic_non_lvalue (fold_convert (type, tem));
4891 case UNLE_EXPR:
4892 case UNLT_EXPR:
4893 if (flag_trapping_math)
4894 break;
4895 case LE_EXPR:
4896 case LT_EXPR:
4897 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
4898 arg1 = fold_convert (signed_type_for
4899 (TREE_TYPE (arg1)), arg1);
4900 tem = fold_build1 (ABS_EXPR, TREE_TYPE (arg1), arg1);
4901 return negate_expr (fold_convert (type, tem));
4902 default:
4903 gcc_assert (TREE_CODE_CLASS (comp_code) == tcc_comparison);
4904 break;
4907 /* A != 0 ? A : 0 is simply A, unless A is -0. Likewise
4908 A == 0 ? A : 0 is always 0 unless A is -0. Note that
4909 both transformations are correct when A is NaN: A != 0
4910 is then true, and A == 0 is false. */
4912 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type))
4913 && integer_zerop (arg01) && integer_zerop (arg2))
4915 if (comp_code == NE_EXPR)
4916 return pedantic_non_lvalue (fold_convert (type, arg1));
4917 else if (comp_code == EQ_EXPR)
4918 return build_int_cst (type, 0);
4921 /* Try some transformations of A op B ? A : B.
4923 A == B? A : B same as B
4924 A != B? A : B same as A
4925 A >= B? A : B same as max (A, B)
4926 A > B? A : B same as max (B, A)
4927 A <= B? A : B same as min (A, B)
4928 A < B? A : B same as min (B, A)
4930 As above, these transformations don't work in the presence
4931 of signed zeros. For example, if A and B are zeros of
4932 opposite sign, the first two transformations will change
4933 the sign of the result. In the last four, the original
4934 expressions give different results for (A=+0, B=-0) and
4935 (A=-0, B=+0), but the transformed expressions do not.
4937 The first two transformations are correct if either A or B
4938 is a NaN. In the first transformation, the condition will
4939 be false, and B will indeed be chosen. In the case of the
4940 second transformation, the condition A != B will be true,
4941 and A will be chosen.
4943 The conversions to max() and min() are not correct if B is
4944 a number and A is not. The conditions in the original
4945 expressions will be false, so all four give B. The min()
4946 and max() versions would give a NaN instead. */
4947 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type))
4948 && operand_equal_for_comparison_p (arg01, arg2, arg00)
4949 /* Avoid these transformations if the COND_EXPR may be used
4950 as an lvalue in the C++ front-end. PR c++/19199. */
4951 && (in_gimple_form
4952 || (strcmp (lang_hooks.name, "GNU C++") != 0
4953 && strcmp (lang_hooks.name, "GNU Objective-C++") != 0)
4954 || ! maybe_lvalue_p (arg1)
4955 || ! maybe_lvalue_p (arg2)))
4957 tree comp_op0 = arg00;
4958 tree comp_op1 = arg01;
4959 tree comp_type = TREE_TYPE (comp_op0);
4961 /* Avoid adding NOP_EXPRs in case this is an lvalue. */
4962 if (TYPE_MAIN_VARIANT (comp_type) == TYPE_MAIN_VARIANT (type))
4964 comp_type = type;
4965 comp_op0 = arg1;
4966 comp_op1 = arg2;
4969 switch (comp_code)
4971 case EQ_EXPR:
4972 return pedantic_non_lvalue (fold_convert (type, arg2));
4973 case NE_EXPR:
4974 return pedantic_non_lvalue (fold_convert (type, arg1));
4975 case LE_EXPR:
4976 case LT_EXPR:
4977 case UNLE_EXPR:
4978 case UNLT_EXPR:
4979 /* In C++ a ?: expression can be an lvalue, so put the
4980 operand which will be used if they are equal first
4981 so that we can convert this back to the
4982 corresponding COND_EXPR. */
4983 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4985 comp_op0 = fold_convert (comp_type, comp_op0);
4986 comp_op1 = fold_convert (comp_type, comp_op1);
4987 tem = (comp_code == LE_EXPR || comp_code == UNLE_EXPR)
4988 ? fold_build2 (MIN_EXPR, comp_type, comp_op0, comp_op1)
4989 : fold_build2 (MIN_EXPR, comp_type, comp_op1, comp_op0);
4990 return pedantic_non_lvalue (fold_convert (type, tem));
4992 break;
4993 case GE_EXPR:
4994 case GT_EXPR:
4995 case UNGE_EXPR:
4996 case UNGT_EXPR:
4997 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4999 comp_op0 = fold_convert (comp_type, comp_op0);
5000 comp_op1 = fold_convert (comp_type, comp_op1);
5001 tem = (comp_code == GE_EXPR || comp_code == UNGE_EXPR)
5002 ? fold_build2 (MAX_EXPR, comp_type, comp_op0, comp_op1)
5003 : fold_build2 (MAX_EXPR, comp_type, comp_op1, comp_op0);
5004 return pedantic_non_lvalue (fold_convert (type, tem));
5006 break;
5007 case UNEQ_EXPR:
5008 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
5009 return pedantic_non_lvalue (fold_convert (type, arg2));
5010 break;
5011 case LTGT_EXPR:
5012 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
5013 return pedantic_non_lvalue (fold_convert (type, arg1));
5014 break;
5015 default:
5016 gcc_assert (TREE_CODE_CLASS (comp_code) == tcc_comparison);
5017 break;
5021 /* If this is A op C1 ? A : C2 with C1 and C2 constant integers,
5022 we might still be able to simplify this. For example,
5023 if C1 is one less or one more than C2, this might have started
5024 out as a MIN or MAX and been transformed by this function.
5025 Only good for INTEGER_TYPEs, because we need TYPE_MAX_VALUE. */
5027 if (INTEGRAL_TYPE_P (type)
5028 && TREE_CODE (arg01) == INTEGER_CST
5029 && TREE_CODE (arg2) == INTEGER_CST)
5030 switch (comp_code)
5032 case EQ_EXPR:
5033 /* We can replace A with C1 in this case. */
5034 arg1 = fold_convert (type, arg01);
5035 return fold_build3 (COND_EXPR, type, arg0, arg1, arg2);
5037 case LT_EXPR:
5038 /* If C1 is C2 + 1, this is min(A, C2). */
5039 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type),
5040 OEP_ONLY_CONST)
5041 && operand_equal_p (arg01,
5042 const_binop (PLUS_EXPR, arg2,
5043 build_int_cst (type, 1), 0),
5044 OEP_ONLY_CONST))
5045 return pedantic_non_lvalue (fold_build2 (MIN_EXPR,
5046 type,
5047 fold_convert (type, arg1),
5048 arg2));
5049 break;
5051 case LE_EXPR:
5052 /* If C1 is C2 - 1, this is min(A, C2). */
5053 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type),
5054 OEP_ONLY_CONST)
5055 && operand_equal_p (arg01,
5056 const_binop (MINUS_EXPR, arg2,
5057 build_int_cst (type, 1), 0),
5058 OEP_ONLY_CONST))
5059 return pedantic_non_lvalue (fold_build2 (MIN_EXPR,
5060 type,
5061 fold_convert (type, arg1),
5062 arg2));
5063 break;
5065 case GT_EXPR:
5066 /* If C1 is C2 - 1, this is max(A, C2). */
5067 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type),
5068 OEP_ONLY_CONST)
5069 && operand_equal_p (arg01,
5070 const_binop (MINUS_EXPR, arg2,
5071 build_int_cst (type, 1), 0),
5072 OEP_ONLY_CONST))
5073 return pedantic_non_lvalue (fold_build2 (MAX_EXPR,
5074 type,
5075 fold_convert (type, arg1),
5076 arg2));
5077 break;
5079 case GE_EXPR:
5080 /* If C1 is C2 + 1, this is max(A, C2). */
5081 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type),
5082 OEP_ONLY_CONST)
5083 && operand_equal_p (arg01,
5084 const_binop (PLUS_EXPR, arg2,
5085 build_int_cst (type, 1), 0),
5086 OEP_ONLY_CONST))
5087 return pedantic_non_lvalue (fold_build2 (MAX_EXPR,
5088 type,
5089 fold_convert (type, arg1),
5090 arg2));
5091 break;
5092 case NE_EXPR:
5093 break;
5094 default:
5095 gcc_unreachable ();
5098 return NULL_TREE;
5103 #ifndef LOGICAL_OP_NON_SHORT_CIRCUIT
5104 #define LOGICAL_OP_NON_SHORT_CIRCUIT (BRANCH_COST >= 2)
5105 #endif
5107 /* EXP is some logical combination of boolean tests. See if we can
5108 merge it into some range test. Return the new tree if so. */
5110 static tree
5111 fold_range_test (enum tree_code code, tree type, tree op0, tree op1)
5113 int or_op = (code == TRUTH_ORIF_EXPR
5114 || code == TRUTH_OR_EXPR);
5115 int in0_p, in1_p, in_p;
5116 tree low0, low1, low, high0, high1, high;
5117 bool strict_overflow_p = false;
5118 tree lhs = make_range (op0, &in0_p, &low0, &high0, &strict_overflow_p);
5119 tree rhs = make_range (op1, &in1_p, &low1, &high1, &strict_overflow_p);
5120 tree tem;
5121 const char * const warnmsg = G_("assuming signed overflow does not occur "
5122 "when simplifying range test");
5124 /* If this is an OR operation, invert both sides; we will invert
5125 again at the end. */
5126 if (or_op)
5127 in0_p = ! in0_p, in1_p = ! in1_p;
5129 /* If both expressions are the same, if we can merge the ranges, and we
5130 can build the range test, return it or it inverted. If one of the
5131 ranges is always true or always false, consider it to be the same
5132 expression as the other. */
5133 if ((lhs == 0 || rhs == 0 || operand_equal_p (lhs, rhs, 0))
5134 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
5135 in1_p, low1, high1)
5136 && 0 != (tem = (build_range_check (type,
5137 lhs != 0 ? lhs
5138 : rhs != 0 ? rhs : integer_zero_node,
5139 in_p, low, high))))
5141 if (strict_overflow_p)
5142 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_COMPARISON);
5143 return or_op ? invert_truthvalue (tem) : tem;
5146 /* On machines where the branch cost is expensive, if this is a
5147 short-circuited branch and the underlying object on both sides
5148 is the same, make a non-short-circuit operation. */
5149 else if (LOGICAL_OP_NON_SHORT_CIRCUIT
5150 && lhs != 0 && rhs != 0
5151 && (code == TRUTH_ANDIF_EXPR
5152 || code == TRUTH_ORIF_EXPR)
5153 && operand_equal_p (lhs, rhs, 0))
5155 /* If simple enough, just rewrite. Otherwise, make a SAVE_EXPR
5156 unless we are at top level or LHS contains a PLACEHOLDER_EXPR, in
5157 which cases we can't do this. */
5158 if (simple_operand_p (lhs))
5159 return build2 (code == TRUTH_ANDIF_EXPR
5160 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
5161 type, op0, op1);
5163 else if (lang_hooks.decls.global_bindings_p () == 0
5164 && ! CONTAINS_PLACEHOLDER_P (lhs))
5166 tree common = save_expr (lhs);
5168 if (0 != (lhs = build_range_check (type, common,
5169 or_op ? ! in0_p : in0_p,
5170 low0, high0))
5171 && (0 != (rhs = build_range_check (type, common,
5172 or_op ? ! in1_p : in1_p,
5173 low1, high1))))
5175 if (strict_overflow_p)
5176 fold_overflow_warning (warnmsg,
5177 WARN_STRICT_OVERFLOW_COMPARISON);
5178 return build2 (code == TRUTH_ANDIF_EXPR
5179 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
5180 type, lhs, rhs);
5185 return 0;
5188 /* Subroutine for fold_truthop: C is an INTEGER_CST interpreted as a P
5189 bit value. Arrange things so the extra bits will be set to zero if and
5190 only if C is signed-extended to its full width. If MASK is nonzero,
5191 it is an INTEGER_CST that should be AND'ed with the extra bits. */
5193 static tree
5194 unextend (tree c, int p, int unsignedp, tree mask)
5196 tree type = TREE_TYPE (c);
5197 int modesize = GET_MODE_BITSIZE (TYPE_MODE (type));
5198 tree temp;
5200 if (p == modesize || unsignedp)
5201 return c;
5203 /* We work by getting just the sign bit into the low-order bit, then
5204 into the high-order bit, then sign-extend. We then XOR that value
5205 with C. */
5206 temp = const_binop (RSHIFT_EXPR, c, size_int (p - 1), 0);
5207 temp = const_binop (BIT_AND_EXPR, temp, size_int (1), 0);
5209 /* We must use a signed type in order to get an arithmetic right shift.
5210 However, we must also avoid introducing accidental overflows, so that
5211 a subsequent call to integer_zerop will work. Hence we must
5212 do the type conversion here. At this point, the constant is either
5213 zero or one, and the conversion to a signed type can never overflow.
5214 We could get an overflow if this conversion is done anywhere else. */
5215 if (TYPE_UNSIGNED (type))
5216 temp = fold_convert (signed_type_for (type), temp);
5218 temp = const_binop (LSHIFT_EXPR, temp, size_int (modesize - 1), 0);
5219 temp = const_binop (RSHIFT_EXPR, temp, size_int (modesize - p - 1), 0);
5220 if (mask != 0)
5221 temp = const_binop (BIT_AND_EXPR, temp,
5222 fold_convert (TREE_TYPE (c), mask), 0);
5223 /* If necessary, convert the type back to match the type of C. */
5224 if (TYPE_UNSIGNED (type))
5225 temp = fold_convert (type, temp);
5227 return fold_convert (type, const_binop (BIT_XOR_EXPR, c, temp, 0));
5230 /* Find ways of folding logical expressions of LHS and RHS:
5231 Try to merge two comparisons to the same innermost item.
5232 Look for range tests like "ch >= '0' && ch <= '9'".
5233 Look for combinations of simple terms on machines with expensive branches
5234 and evaluate the RHS unconditionally.
5236 For example, if we have p->a == 2 && p->b == 4 and we can make an
5237 object large enough to span both A and B, we can do this with a comparison
5238 against the object ANDed with the a mask.
5240 If we have p->a == q->a && p->b == q->b, we may be able to use bit masking
5241 operations to do this with one comparison.
5243 We check for both normal comparisons and the BIT_AND_EXPRs made this by
5244 function and the one above.
5246 CODE is the logical operation being done. It can be TRUTH_ANDIF_EXPR,
5247 TRUTH_AND_EXPR, TRUTH_ORIF_EXPR, or TRUTH_OR_EXPR.
5249 TRUTH_TYPE is the type of the logical operand and LHS and RHS are its
5250 two operands.
5252 We return the simplified tree or 0 if no optimization is possible. */
5254 static tree
5255 fold_truthop (enum tree_code code, tree truth_type, tree lhs, tree rhs)
5257 /* If this is the "or" of two comparisons, we can do something if
5258 the comparisons are NE_EXPR. If this is the "and", we can do something
5259 if the comparisons are EQ_EXPR. I.e.,
5260 (a->b == 2 && a->c == 4) can become (a->new == NEW).
5262 WANTED_CODE is this operation code. For single bit fields, we can
5263 convert EQ_EXPR to NE_EXPR so we need not reject the "wrong"
5264 comparison for one-bit fields. */
5266 enum tree_code wanted_code;
5267 enum tree_code lcode, rcode;
5268 tree ll_arg, lr_arg, rl_arg, rr_arg;
5269 tree ll_inner, lr_inner, rl_inner, rr_inner;
5270 HOST_WIDE_INT ll_bitsize, ll_bitpos, lr_bitsize, lr_bitpos;
5271 HOST_WIDE_INT rl_bitsize, rl_bitpos, rr_bitsize, rr_bitpos;
5272 HOST_WIDE_INT xll_bitpos, xrl_bitpos;
5273 HOST_WIDE_INT lnbitsize, lnbitpos;
5274 int ll_unsignedp, lr_unsignedp, rl_unsignedp, rr_unsignedp;
5275 enum machine_mode ll_mode, lr_mode, rl_mode, rr_mode;
5276 enum machine_mode lnmode;
5277 tree ll_mask, lr_mask, rl_mask, rr_mask;
5278 tree ll_and_mask, lr_and_mask, rl_and_mask, rr_and_mask;
5279 tree l_const, r_const;
5280 tree lntype, result;
5281 int first_bit, end_bit;
5282 int volatilep;
5283 tree orig_lhs = lhs, orig_rhs = rhs;
5284 enum tree_code orig_code = code;
5286 /* Start by getting the comparison codes. Fail if anything is volatile.
5287 If one operand is a BIT_AND_EXPR with the constant one, treat it as if
5288 it were surrounded with a NE_EXPR. */
5290 if (TREE_SIDE_EFFECTS (lhs) || TREE_SIDE_EFFECTS (rhs))
5291 return 0;
5293 lcode = TREE_CODE (lhs);
5294 rcode = TREE_CODE (rhs);
5296 if (lcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (lhs, 1)))
5298 lhs = build2 (NE_EXPR, truth_type, lhs,
5299 build_int_cst (TREE_TYPE (lhs), 0));
5300 lcode = NE_EXPR;
5303 if (rcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (rhs, 1)))
5305 rhs = build2 (NE_EXPR, truth_type, rhs,
5306 build_int_cst (TREE_TYPE (rhs), 0));
5307 rcode = NE_EXPR;
5310 if (TREE_CODE_CLASS (lcode) != tcc_comparison
5311 || TREE_CODE_CLASS (rcode) != tcc_comparison)
5312 return 0;
5314 ll_arg = TREE_OPERAND (lhs, 0);
5315 lr_arg = TREE_OPERAND (lhs, 1);
5316 rl_arg = TREE_OPERAND (rhs, 0);
5317 rr_arg = TREE_OPERAND (rhs, 1);
5319 /* Simplify (x<y) && (x==y) into (x<=y) and related optimizations. */
5320 if (simple_operand_p (ll_arg)
5321 && simple_operand_p (lr_arg))
5323 tree result;
5324 if (operand_equal_p (ll_arg, rl_arg, 0)
5325 && operand_equal_p (lr_arg, rr_arg, 0))
5327 result = combine_comparisons (code, lcode, rcode,
5328 truth_type, ll_arg, lr_arg);
5329 if (result)
5330 return result;
5332 else if (operand_equal_p (ll_arg, rr_arg, 0)
5333 && operand_equal_p (lr_arg, rl_arg, 0))
5335 result = combine_comparisons (code, lcode,
5336 swap_tree_comparison (rcode),
5337 truth_type, ll_arg, lr_arg);
5338 if (result)
5339 return result;
5343 code = ((code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR)
5344 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR);
5346 /* If the RHS can be evaluated unconditionally and its operands are
5347 simple, it wins to evaluate the RHS unconditionally on machines
5348 with expensive branches. In this case, this isn't a comparison
5349 that can be merged. Avoid doing this if the RHS is a floating-point
5350 comparison since those can trap. */
5352 if (BRANCH_COST >= 2
5353 && ! FLOAT_TYPE_P (TREE_TYPE (rl_arg))
5354 && simple_operand_p (rl_arg)
5355 && simple_operand_p (rr_arg))
5357 /* Convert (a != 0) || (b != 0) into (a | b) != 0. */
5358 if (code == TRUTH_OR_EXPR
5359 && lcode == NE_EXPR && integer_zerop (lr_arg)
5360 && rcode == NE_EXPR && integer_zerop (rr_arg)
5361 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg)
5362 && INTEGRAL_TYPE_P (TREE_TYPE (ll_arg)))
5363 return build2 (NE_EXPR, truth_type,
5364 build2 (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
5365 ll_arg, rl_arg),
5366 build_int_cst (TREE_TYPE (ll_arg), 0));
5368 /* Convert (a == 0) && (b == 0) into (a | b) == 0. */
5369 if (code == TRUTH_AND_EXPR
5370 && lcode == EQ_EXPR && integer_zerop (lr_arg)
5371 && rcode == EQ_EXPR && integer_zerop (rr_arg)
5372 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg)
5373 && INTEGRAL_TYPE_P (TREE_TYPE (ll_arg)))
5374 return build2 (EQ_EXPR, truth_type,
5375 build2 (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
5376 ll_arg, rl_arg),
5377 build_int_cst (TREE_TYPE (ll_arg), 0));
5379 if (LOGICAL_OP_NON_SHORT_CIRCUIT)
5381 if (code != orig_code || lhs != orig_lhs || rhs != orig_rhs)
5382 return build2 (code, truth_type, lhs, rhs);
5383 return NULL_TREE;
5387 /* See if the comparisons can be merged. Then get all the parameters for
5388 each side. */
5390 if ((lcode != EQ_EXPR && lcode != NE_EXPR)
5391 || (rcode != EQ_EXPR && rcode != NE_EXPR))
5392 return 0;
5394 volatilep = 0;
5395 ll_inner = decode_field_reference (ll_arg,
5396 &ll_bitsize, &ll_bitpos, &ll_mode,
5397 &ll_unsignedp, &volatilep, &ll_mask,
5398 &ll_and_mask);
5399 lr_inner = decode_field_reference (lr_arg,
5400 &lr_bitsize, &lr_bitpos, &lr_mode,
5401 &lr_unsignedp, &volatilep, &lr_mask,
5402 &lr_and_mask);
5403 rl_inner = decode_field_reference (rl_arg,
5404 &rl_bitsize, &rl_bitpos, &rl_mode,
5405 &rl_unsignedp, &volatilep, &rl_mask,
5406 &rl_and_mask);
5407 rr_inner = decode_field_reference (rr_arg,
5408 &rr_bitsize, &rr_bitpos, &rr_mode,
5409 &rr_unsignedp, &volatilep, &rr_mask,
5410 &rr_and_mask);
5412 /* It must be true that the inner operation on the lhs of each
5413 comparison must be the same if we are to be able to do anything.
5414 Then see if we have constants. If not, the same must be true for
5415 the rhs's. */
5416 if (volatilep || ll_inner == 0 || rl_inner == 0
5417 || ! operand_equal_p (ll_inner, rl_inner, 0))
5418 return 0;
5420 if (TREE_CODE (lr_arg) == INTEGER_CST
5421 && TREE_CODE (rr_arg) == INTEGER_CST)
5422 l_const = lr_arg, r_const = rr_arg;
5423 else if (lr_inner == 0 || rr_inner == 0
5424 || ! operand_equal_p (lr_inner, rr_inner, 0))
5425 return 0;
5426 else
5427 l_const = r_const = 0;
5429 /* If either comparison code is not correct for our logical operation,
5430 fail. However, we can convert a one-bit comparison against zero into
5431 the opposite comparison against that bit being set in the field. */
5433 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR);
5434 if (lcode != wanted_code)
5436 if (l_const && integer_zerop (l_const) && integer_pow2p (ll_mask))
5438 /* Make the left operand unsigned, since we are only interested
5439 in the value of one bit. Otherwise we are doing the wrong
5440 thing below. */
5441 ll_unsignedp = 1;
5442 l_const = ll_mask;
5444 else
5445 return 0;
5448 /* This is analogous to the code for l_const above. */
5449 if (rcode != wanted_code)
5451 if (r_const && integer_zerop (r_const) && integer_pow2p (rl_mask))
5453 rl_unsignedp = 1;
5454 r_const = rl_mask;
5456 else
5457 return 0;
5460 /* See if we can find a mode that contains both fields being compared on
5461 the left. If we can't, fail. Otherwise, update all constants and masks
5462 to be relative to a field of that size. */
5463 first_bit = MIN (ll_bitpos, rl_bitpos);
5464 end_bit = MAX (ll_bitpos + ll_bitsize, rl_bitpos + rl_bitsize);
5465 lnmode = get_best_mode (end_bit - first_bit, first_bit,
5466 TYPE_ALIGN (TREE_TYPE (ll_inner)), word_mode,
5467 volatilep);
5468 if (lnmode == VOIDmode)
5469 return 0;
5471 lnbitsize = GET_MODE_BITSIZE (lnmode);
5472 lnbitpos = first_bit & ~ (lnbitsize - 1);
5473 lntype = lang_hooks.types.type_for_size (lnbitsize, 1);
5474 xll_bitpos = ll_bitpos - lnbitpos, xrl_bitpos = rl_bitpos - lnbitpos;
5476 if (BYTES_BIG_ENDIAN)
5478 xll_bitpos = lnbitsize - xll_bitpos - ll_bitsize;
5479 xrl_bitpos = lnbitsize - xrl_bitpos - rl_bitsize;
5482 ll_mask = const_binop (LSHIFT_EXPR, fold_convert (lntype, ll_mask),
5483 size_int (xll_bitpos), 0);
5484 rl_mask = const_binop (LSHIFT_EXPR, fold_convert (lntype, rl_mask),
5485 size_int (xrl_bitpos), 0);
5487 if (l_const)
5489 l_const = fold_convert (lntype, l_const);
5490 l_const = unextend (l_const, ll_bitsize, ll_unsignedp, ll_and_mask);
5491 l_const = const_binop (LSHIFT_EXPR, l_const, size_int (xll_bitpos), 0);
5492 if (! integer_zerop (const_binop (BIT_AND_EXPR, l_const,
5493 fold_build1 (BIT_NOT_EXPR,
5494 lntype, ll_mask),
5495 0)))
5497 warning (0, "comparison is always %d", wanted_code == NE_EXPR);
5499 return constant_boolean_node (wanted_code == NE_EXPR, truth_type);
5502 if (r_const)
5504 r_const = fold_convert (lntype, r_const);
5505 r_const = unextend (r_const, rl_bitsize, rl_unsignedp, rl_and_mask);
5506 r_const = const_binop (LSHIFT_EXPR, r_const, size_int (xrl_bitpos), 0);
5507 if (! integer_zerop (const_binop (BIT_AND_EXPR, r_const,
5508 fold_build1 (BIT_NOT_EXPR,
5509 lntype, rl_mask),
5510 0)))
5512 warning (0, "comparison is always %d", wanted_code == NE_EXPR);
5514 return constant_boolean_node (wanted_code == NE_EXPR, truth_type);
5518 /* Handle the case of comparisons with constants. If there is something in
5519 common between the masks, those bits of the constants must be the same.
5520 If not, the condition is always false. Test for this to avoid generating
5521 incorrect code below. */
5522 result = const_binop (BIT_AND_EXPR, ll_mask, rl_mask, 0);
5523 if (! integer_zerop (result)
5524 && simple_cst_equal (const_binop (BIT_AND_EXPR, result, l_const, 0),
5525 const_binop (BIT_AND_EXPR, result, r_const, 0)) != 1)
5527 if (wanted_code == NE_EXPR)
5529 warning (0, "%<or%> of unmatched not-equal tests is always 1");
5530 return constant_boolean_node (true, truth_type);
5532 else
5534 warning (0, "%<and%> of mutually exclusive equal-tests is always 0");
5535 return constant_boolean_node (false, truth_type);
5539 return NULL_TREE;
5542 /* Optimize T, which is a comparison of a MIN_EXPR or MAX_EXPR with a
5543 constant. */
5545 static tree
5546 optimize_minmax_comparison (enum tree_code code, tree type, tree op0, tree op1)
5548 tree arg0 = op0;
5549 enum tree_code op_code;
5550 tree comp_const = op1;
5551 tree minmax_const;
5552 int consts_equal, consts_lt;
5553 tree inner;
5555 STRIP_SIGN_NOPS (arg0);
5557 op_code = TREE_CODE (arg0);
5558 minmax_const = TREE_OPERAND (arg0, 1);
5559 consts_equal = tree_int_cst_equal (minmax_const, comp_const);
5560 consts_lt = tree_int_cst_lt (minmax_const, comp_const);
5561 inner = TREE_OPERAND (arg0, 0);
5563 /* If something does not permit us to optimize, return the original tree. */
5564 if ((op_code != MIN_EXPR && op_code != MAX_EXPR)
5565 || TREE_CODE (comp_const) != INTEGER_CST
5566 || TREE_OVERFLOW (comp_const)
5567 || TREE_CODE (minmax_const) != INTEGER_CST
5568 || TREE_OVERFLOW (minmax_const))
5569 return NULL_TREE;
5571 /* Now handle all the various comparison codes. We only handle EQ_EXPR
5572 and GT_EXPR, doing the rest with recursive calls using logical
5573 simplifications. */
5574 switch (code)
5576 case NE_EXPR: case LT_EXPR: case LE_EXPR:
5578 tree tem = optimize_minmax_comparison (invert_tree_comparison (code, false),
5579 type, op0, op1);
5580 if (tem)
5581 return invert_truthvalue (tem);
5582 return NULL_TREE;
5585 case GE_EXPR:
5586 return
5587 fold_build2 (TRUTH_ORIF_EXPR, type,
5588 optimize_minmax_comparison
5589 (EQ_EXPR, type, arg0, comp_const),
5590 optimize_minmax_comparison
5591 (GT_EXPR, type, arg0, comp_const));
5593 case EQ_EXPR:
5594 if (op_code == MAX_EXPR && consts_equal)
5595 /* MAX (X, 0) == 0 -> X <= 0 */
5596 return fold_build2 (LE_EXPR, type, inner, comp_const);
5598 else if (op_code == MAX_EXPR && consts_lt)
5599 /* MAX (X, 0) == 5 -> X == 5 */
5600 return fold_build2 (EQ_EXPR, type, inner, comp_const);
5602 else if (op_code == MAX_EXPR)
5603 /* MAX (X, 0) == -1 -> false */
5604 return omit_one_operand (type, integer_zero_node, inner);
5606 else if (consts_equal)
5607 /* MIN (X, 0) == 0 -> X >= 0 */
5608 return fold_build2 (GE_EXPR, type, inner, comp_const);
5610 else if (consts_lt)
5611 /* MIN (X, 0) == 5 -> false */
5612 return omit_one_operand (type, integer_zero_node, inner);
5614 else
5615 /* MIN (X, 0) == -1 -> X == -1 */
5616 return fold_build2 (EQ_EXPR, type, inner, comp_const);
5618 case GT_EXPR:
5619 if (op_code == MAX_EXPR && (consts_equal || consts_lt))
5620 /* MAX (X, 0) > 0 -> X > 0
5621 MAX (X, 0) > 5 -> X > 5 */
5622 return fold_build2 (GT_EXPR, type, inner, comp_const);
5624 else if (op_code == MAX_EXPR)
5625 /* MAX (X, 0) > -1 -> true */
5626 return omit_one_operand (type, integer_one_node, inner);
5628 else if (op_code == MIN_EXPR && (consts_equal || consts_lt))
5629 /* MIN (X, 0) > 0 -> false
5630 MIN (X, 0) > 5 -> false */
5631 return omit_one_operand (type, integer_zero_node, inner);
5633 else
5634 /* MIN (X, 0) > -1 -> X > -1 */
5635 return fold_build2 (GT_EXPR, type, inner, comp_const);
5637 default:
5638 return NULL_TREE;
5642 /* T is an integer expression that is being multiplied, divided, or taken a
5643 modulus (CODE says which and what kind of divide or modulus) by a
5644 constant C. See if we can eliminate that operation by folding it with
5645 other operations already in T. WIDE_TYPE, if non-null, is a type that
5646 should be used for the computation if wider than our type.
5648 For example, if we are dividing (X * 8) + (Y * 16) by 4, we can return
5649 (X * 2) + (Y * 4). We must, however, be assured that either the original
5650 expression would not overflow or that overflow is undefined for the type
5651 in the language in question.
5653 We also canonicalize (X + 7) * 4 into X * 4 + 28 in the hope that either
5654 the machine has a multiply-accumulate insn or that this is part of an
5655 addressing calculation.
5657 If we return a non-null expression, it is an equivalent form of the
5658 original computation, but need not be in the original type.
5660 We set *STRICT_OVERFLOW_P to true if the return values depends on
5661 signed overflow being undefined. Otherwise we do not change
5662 *STRICT_OVERFLOW_P. */
5664 static tree
5665 extract_muldiv (tree t, tree c, enum tree_code code, tree wide_type,
5666 bool *strict_overflow_p)
5668 /* To avoid exponential search depth, refuse to allow recursion past
5669 three levels. Beyond that (1) it's highly unlikely that we'll find
5670 something interesting and (2) we've probably processed it before
5671 when we built the inner expression. */
5673 static int depth;
5674 tree ret;
5676 if (depth > 3)
5677 return NULL;
5679 depth++;
5680 ret = extract_muldiv_1 (t, c, code, wide_type, strict_overflow_p);
5681 depth--;
5683 return ret;
5686 static tree
5687 extract_muldiv_1 (tree t, tree c, enum tree_code code, tree wide_type,
5688 bool *strict_overflow_p)
5690 tree type = TREE_TYPE (t);
5691 enum tree_code tcode = TREE_CODE (t);
5692 tree ctype = (wide_type != 0 && (GET_MODE_SIZE (TYPE_MODE (wide_type))
5693 > GET_MODE_SIZE (TYPE_MODE (type)))
5694 ? wide_type : type);
5695 tree t1, t2;
5696 int same_p = tcode == code;
5697 tree op0 = NULL_TREE, op1 = NULL_TREE;
5698 bool sub_strict_overflow_p;
5700 /* Don't deal with constants of zero here; they confuse the code below. */
5701 if (integer_zerop (c))
5702 return NULL_TREE;
5704 if (TREE_CODE_CLASS (tcode) == tcc_unary)
5705 op0 = TREE_OPERAND (t, 0);
5707 if (TREE_CODE_CLASS (tcode) == tcc_binary)
5708 op0 = TREE_OPERAND (t, 0), op1 = TREE_OPERAND (t, 1);
5710 /* Note that we need not handle conditional operations here since fold
5711 already handles those cases. So just do arithmetic here. */
5712 switch (tcode)
5714 case INTEGER_CST:
5715 /* For a constant, we can always simplify if we are a multiply
5716 or (for divide and modulus) if it is a multiple of our constant. */
5717 if (code == MULT_EXPR
5718 || integer_zerop (const_binop (TRUNC_MOD_EXPR, t, c, 0)))
5719 return const_binop (code, fold_convert (ctype, t),
5720 fold_convert (ctype, c), 0);
5721 break;
5723 case CONVERT_EXPR: case NON_LVALUE_EXPR: case NOP_EXPR:
5724 /* If op0 is an expression ... */
5725 if ((COMPARISON_CLASS_P (op0)
5726 || UNARY_CLASS_P (op0)
5727 || BINARY_CLASS_P (op0)
5728 || VL_EXP_CLASS_P (op0)
5729 || EXPRESSION_CLASS_P (op0))
5730 /* ... and is unsigned, and its type is smaller than ctype,
5731 then we cannot pass through as widening. */
5732 && ((TYPE_UNSIGNED (TREE_TYPE (op0))
5733 && ! (TREE_CODE (TREE_TYPE (op0)) == INTEGER_TYPE
5734 && TYPE_IS_SIZETYPE (TREE_TYPE (op0)))
5735 && (GET_MODE_SIZE (TYPE_MODE (ctype))
5736 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))))
5737 /* ... or this is a truncation (t is narrower than op0),
5738 then we cannot pass through this narrowing. */
5739 || (GET_MODE_SIZE (TYPE_MODE (type))
5740 < GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0))))
5741 /* ... or signedness changes for division or modulus,
5742 then we cannot pass through this conversion. */
5743 || (code != MULT_EXPR
5744 && (TYPE_UNSIGNED (ctype)
5745 != TYPE_UNSIGNED (TREE_TYPE (op0))))
5746 /* ... or has undefined overflow while the converted to
5747 type has not, we cannot do the operation in the inner type
5748 as that would introduce undefined overflow. */
5749 || (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (op0))
5750 && !TYPE_OVERFLOW_UNDEFINED (type))))
5751 break;
5753 /* Pass the constant down and see if we can make a simplification. If
5754 we can, replace this expression with the inner simplification for
5755 possible later conversion to our or some other type. */
5756 if ((t2 = fold_convert (TREE_TYPE (op0), c)) != 0
5757 && TREE_CODE (t2) == INTEGER_CST
5758 && !TREE_OVERFLOW (t2)
5759 && (0 != (t1 = extract_muldiv (op0, t2, code,
5760 code == MULT_EXPR
5761 ? ctype : NULL_TREE,
5762 strict_overflow_p))))
5763 return t1;
5764 break;
5766 case ABS_EXPR:
5767 /* If widening the type changes it from signed to unsigned, then we
5768 must avoid building ABS_EXPR itself as unsigned. */
5769 if (TYPE_UNSIGNED (ctype) && !TYPE_UNSIGNED (type))
5771 tree cstype = (*signed_type_for) (ctype);
5772 if ((t1 = extract_muldiv (op0, c, code, cstype, strict_overflow_p))
5773 != 0)
5775 t1 = fold_build1 (tcode, cstype, fold_convert (cstype, t1));
5776 return fold_convert (ctype, t1);
5778 break;
5780 /* If the constant is negative, we cannot simplify this. */
5781 if (tree_int_cst_sgn (c) == -1)
5782 break;
5783 /* FALLTHROUGH */
5784 case NEGATE_EXPR:
5785 if ((t1 = extract_muldiv (op0, c, code, wide_type, strict_overflow_p))
5786 != 0)
5787 return fold_build1 (tcode, ctype, fold_convert (ctype, t1));
5788 break;
5790 case MIN_EXPR: case MAX_EXPR:
5791 /* If widening the type changes the signedness, then we can't perform
5792 this optimization as that changes the result. */
5793 if (TYPE_UNSIGNED (ctype) != TYPE_UNSIGNED (type))
5794 break;
5796 /* MIN (a, b) / 5 -> MIN (a / 5, b / 5) */
5797 sub_strict_overflow_p = false;
5798 if ((t1 = extract_muldiv (op0, c, code, wide_type,
5799 &sub_strict_overflow_p)) != 0
5800 && (t2 = extract_muldiv (op1, c, code, wide_type,
5801 &sub_strict_overflow_p)) != 0)
5803 if (tree_int_cst_sgn (c) < 0)
5804 tcode = (tcode == MIN_EXPR ? MAX_EXPR : MIN_EXPR);
5805 if (sub_strict_overflow_p)
5806 *strict_overflow_p = true;
5807 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
5808 fold_convert (ctype, t2));
5810 break;
5812 case LSHIFT_EXPR: case RSHIFT_EXPR:
5813 /* If the second operand is constant, this is a multiplication
5814 or floor division, by a power of two, so we can treat it that
5815 way unless the multiplier or divisor overflows. Signed
5816 left-shift overflow is implementation-defined rather than
5817 undefined in C90, so do not convert signed left shift into
5818 multiplication. */
5819 if (TREE_CODE (op1) == INTEGER_CST
5820 && (tcode == RSHIFT_EXPR || TYPE_UNSIGNED (TREE_TYPE (op0)))
5821 /* const_binop may not detect overflow correctly,
5822 so check for it explicitly here. */
5823 && TYPE_PRECISION (TREE_TYPE (size_one_node)) > TREE_INT_CST_LOW (op1)
5824 && TREE_INT_CST_HIGH (op1) == 0
5825 && 0 != (t1 = fold_convert (ctype,
5826 const_binop (LSHIFT_EXPR,
5827 size_one_node,
5828 op1, 0)))
5829 && !TREE_OVERFLOW (t1))
5830 return extract_muldiv (build2 (tcode == LSHIFT_EXPR
5831 ? MULT_EXPR : FLOOR_DIV_EXPR,
5832 ctype, fold_convert (ctype, op0), t1),
5833 c, code, wide_type, strict_overflow_p);
5834 break;
5836 case PLUS_EXPR: case MINUS_EXPR:
5837 /* See if we can eliminate the operation on both sides. If we can, we
5838 can return a new PLUS or MINUS. If we can't, the only remaining
5839 cases where we can do anything are if the second operand is a
5840 constant. */
5841 sub_strict_overflow_p = false;
5842 t1 = extract_muldiv (op0, c, code, wide_type, &sub_strict_overflow_p);
5843 t2 = extract_muldiv (op1, c, code, wide_type, &sub_strict_overflow_p);
5844 if (t1 != 0 && t2 != 0
5845 && (code == MULT_EXPR
5846 /* If not multiplication, we can only do this if both operands
5847 are divisible by c. */
5848 || (multiple_of_p (ctype, op0, c)
5849 && multiple_of_p (ctype, op1, c))))
5851 if (sub_strict_overflow_p)
5852 *strict_overflow_p = true;
5853 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
5854 fold_convert (ctype, t2));
5857 /* If this was a subtraction, negate OP1 and set it to be an addition.
5858 This simplifies the logic below. */
5859 if (tcode == MINUS_EXPR)
5860 tcode = PLUS_EXPR, op1 = negate_expr (op1);
5862 if (TREE_CODE (op1) != INTEGER_CST)
5863 break;
5865 /* If either OP1 or C are negative, this optimization is not safe for
5866 some of the division and remainder types while for others we need
5867 to change the code. */
5868 if (tree_int_cst_sgn (op1) < 0 || tree_int_cst_sgn (c) < 0)
5870 if (code == CEIL_DIV_EXPR)
5871 code = FLOOR_DIV_EXPR;
5872 else if (code == FLOOR_DIV_EXPR)
5873 code = CEIL_DIV_EXPR;
5874 else if (code != MULT_EXPR
5875 && code != CEIL_MOD_EXPR && code != FLOOR_MOD_EXPR)
5876 break;
5879 /* If it's a multiply or a division/modulus operation of a multiple
5880 of our constant, do the operation and verify it doesn't overflow. */
5881 if (code == MULT_EXPR
5882 || integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
5884 op1 = const_binop (code, fold_convert (ctype, op1),
5885 fold_convert (ctype, c), 0);
5886 /* We allow the constant to overflow with wrapping semantics. */
5887 if (op1 == 0
5888 || (TREE_OVERFLOW (op1) && !TYPE_OVERFLOW_WRAPS (ctype)))
5889 break;
5891 else
5892 break;
5894 /* If we have an unsigned type is not a sizetype, we cannot widen
5895 the operation since it will change the result if the original
5896 computation overflowed. */
5897 if (TYPE_UNSIGNED (ctype)
5898 && ! (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype))
5899 && ctype != type)
5900 break;
5902 /* If we were able to eliminate our operation from the first side,
5903 apply our operation to the second side and reform the PLUS. */
5904 if (t1 != 0 && (TREE_CODE (t1) != code || code == MULT_EXPR))
5905 return fold_build2 (tcode, ctype, fold_convert (ctype, t1), op1);
5907 /* The last case is if we are a multiply. In that case, we can
5908 apply the distributive law to commute the multiply and addition
5909 if the multiplication of the constants doesn't overflow. */
5910 if (code == MULT_EXPR)
5911 return fold_build2 (tcode, ctype,
5912 fold_build2 (code, ctype,
5913 fold_convert (ctype, op0),
5914 fold_convert (ctype, c)),
5915 op1);
5917 break;
5919 case MULT_EXPR:
5920 /* We have a special case here if we are doing something like
5921 (C * 8) % 4 since we know that's zero. */
5922 if ((code == TRUNC_MOD_EXPR || code == CEIL_MOD_EXPR
5923 || code == FLOOR_MOD_EXPR || code == ROUND_MOD_EXPR)
5924 && TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST
5925 && integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
5926 return omit_one_operand (type, integer_zero_node, op0);
5928 /* ... fall through ... */
5930 case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR:
5931 case ROUND_DIV_EXPR: case EXACT_DIV_EXPR:
5932 /* If we can extract our operation from the LHS, do so and return a
5933 new operation. Likewise for the RHS from a MULT_EXPR. Otherwise,
5934 do something only if the second operand is a constant. */
5935 if (same_p
5936 && (t1 = extract_muldiv (op0, c, code, wide_type,
5937 strict_overflow_p)) != 0)
5938 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
5939 fold_convert (ctype, op1));
5940 else if (tcode == MULT_EXPR && code == MULT_EXPR
5941 && (t1 = extract_muldiv (op1, c, code, wide_type,
5942 strict_overflow_p)) != 0)
5943 return fold_build2 (tcode, ctype, fold_convert (ctype, op0),
5944 fold_convert (ctype, t1));
5945 else if (TREE_CODE (op1) != INTEGER_CST)
5946 return 0;
5948 /* If these are the same operation types, we can associate them
5949 assuming no overflow. */
5950 if (tcode == code
5951 && 0 != (t1 = const_binop (MULT_EXPR, fold_convert (ctype, op1),
5952 fold_convert (ctype, c), 0))
5953 && !TREE_OVERFLOW (t1))
5954 return fold_build2 (tcode, ctype, fold_convert (ctype, op0), t1);
5956 /* If these operations "cancel" each other, we have the main
5957 optimizations of this pass, which occur when either constant is a
5958 multiple of the other, in which case we replace this with either an
5959 operation or CODE or TCODE.
5961 If we have an unsigned type that is not a sizetype, we cannot do
5962 this since it will change the result if the original computation
5963 overflowed. */
5964 if ((TYPE_OVERFLOW_UNDEFINED (ctype)
5965 || (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype)))
5966 && ((code == MULT_EXPR && tcode == EXACT_DIV_EXPR)
5967 || (tcode == MULT_EXPR
5968 && code != TRUNC_MOD_EXPR && code != CEIL_MOD_EXPR
5969 && code != FLOOR_MOD_EXPR && code != ROUND_MOD_EXPR
5970 && code != MULT_EXPR)))
5972 if (integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
5974 if (TYPE_OVERFLOW_UNDEFINED (ctype))
5975 *strict_overflow_p = true;
5976 return fold_build2 (tcode, ctype, fold_convert (ctype, op0),
5977 fold_convert (ctype,
5978 const_binop (TRUNC_DIV_EXPR,
5979 op1, c, 0)));
5981 else if (integer_zerop (const_binop (TRUNC_MOD_EXPR, c, op1, 0)))
5983 if (TYPE_OVERFLOW_UNDEFINED (ctype))
5984 *strict_overflow_p = true;
5985 return fold_build2 (code, ctype, fold_convert (ctype, op0),
5986 fold_convert (ctype,
5987 const_binop (TRUNC_DIV_EXPR,
5988 c, op1, 0)));
5991 break;
5993 default:
5994 break;
5997 return 0;
6000 /* Return a node which has the indicated constant VALUE (either 0 or
6001 1), and is of the indicated TYPE. */
6003 tree
6004 constant_boolean_node (int value, tree type)
6006 if (type == integer_type_node)
6007 return value ? integer_one_node : integer_zero_node;
6008 else if (type == boolean_type_node)
6009 return value ? boolean_true_node : boolean_false_node;
6010 else
6011 return build_int_cst (type, value);
6015 /* Transform `a + (b ? x : y)' into `b ? (a + x) : (a + y)'.
6016 Transform, `a + (x < y)' into `(x < y) ? (a + 1) : (a + 0)'. Here
6017 CODE corresponds to the `+', COND to the `(b ? x : y)' or `(x < y)'
6018 expression, and ARG to `a'. If COND_FIRST_P is nonzero, then the
6019 COND is the first argument to CODE; otherwise (as in the example
6020 given here), it is the second argument. TYPE is the type of the
6021 original expression. Return NULL_TREE if no simplification is
6022 possible. */
6024 static tree
6025 fold_binary_op_with_conditional_arg (enum tree_code code,
6026 tree type, tree op0, tree op1,
6027 tree cond, tree arg, int cond_first_p)
6029 tree cond_type = cond_first_p ? TREE_TYPE (op0) : TREE_TYPE (op1);
6030 tree arg_type = cond_first_p ? TREE_TYPE (op1) : TREE_TYPE (op0);
6031 tree test, true_value, false_value;
6032 tree lhs = NULL_TREE;
6033 tree rhs = NULL_TREE;
6035 /* This transformation is only worthwhile if we don't have to wrap
6036 arg in a SAVE_EXPR, and the operation can be simplified on at least
6037 one of the branches once its pushed inside the COND_EXPR. */
6038 if (!TREE_CONSTANT (arg))
6039 return NULL_TREE;
6041 if (TREE_CODE (cond) == COND_EXPR)
6043 test = TREE_OPERAND (cond, 0);
6044 true_value = TREE_OPERAND (cond, 1);
6045 false_value = TREE_OPERAND (cond, 2);
6046 /* If this operand throws an expression, then it does not make
6047 sense to try to perform a logical or arithmetic operation
6048 involving it. */
6049 if (VOID_TYPE_P (TREE_TYPE (true_value)))
6050 lhs = true_value;
6051 if (VOID_TYPE_P (TREE_TYPE (false_value)))
6052 rhs = false_value;
6054 else
6056 tree testtype = TREE_TYPE (cond);
6057 test = cond;
6058 true_value = constant_boolean_node (true, testtype);
6059 false_value = constant_boolean_node (false, testtype);
6062 arg = fold_convert (arg_type, arg);
6063 if (lhs == 0)
6065 true_value = fold_convert (cond_type, true_value);
6066 if (cond_first_p)
6067 lhs = fold_build2 (code, type, true_value, arg);
6068 else
6069 lhs = fold_build2 (code, type, arg, true_value);
6071 if (rhs == 0)
6073 false_value = fold_convert (cond_type, false_value);
6074 if (cond_first_p)
6075 rhs = fold_build2 (code, type, false_value, arg);
6076 else
6077 rhs = fold_build2 (code, type, arg, false_value);
6080 test = fold_build3 (COND_EXPR, type, test, lhs, rhs);
6081 return fold_convert (type, test);
6085 /* Subroutine of fold() that checks for the addition of +/- 0.0.
6087 If !NEGATE, return true if ADDEND is +/-0.0 and, for all X of type
6088 TYPE, X + ADDEND is the same as X. If NEGATE, return true if X -
6089 ADDEND is the same as X.
6091 X + 0 and X - 0 both give X when X is NaN, infinite, or nonzero
6092 and finite. The problematic cases are when X is zero, and its mode
6093 has signed zeros. In the case of rounding towards -infinity,
6094 X - 0 is not the same as X because 0 - 0 is -0. In other rounding
6095 modes, X + 0 is not the same as X because -0 + 0 is 0. */
6097 bool
6098 fold_real_zero_addition_p (const_tree type, const_tree addend, int negate)
6100 if (!real_zerop (addend))
6101 return false;
6103 /* Don't allow the fold with -fsignaling-nans. */
6104 if (HONOR_SNANS (TYPE_MODE (type)))
6105 return false;
6107 /* Allow the fold if zeros aren't signed, or their sign isn't important. */
6108 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
6109 return true;
6111 /* Treat x + -0 as x - 0 and x - -0 as x + 0. */
6112 if (TREE_CODE (addend) == REAL_CST
6113 && REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (addend)))
6114 negate = !negate;
6116 /* The mode has signed zeros, and we have to honor their sign.
6117 In this situation, there is only one case we can return true for.
6118 X - 0 is the same as X unless rounding towards -infinity is
6119 supported. */
6120 return negate && !HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type));
6123 /* Subroutine of fold() that checks comparisons of built-in math
6124 functions against real constants.
6126 FCODE is the DECL_FUNCTION_CODE of the built-in, CODE is the comparison
6127 operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR, GE_EXPR or LE_EXPR. TYPE
6128 is the type of the result and ARG0 and ARG1 are the operands of the
6129 comparison. ARG1 must be a TREE_REAL_CST.
6131 The function returns the constant folded tree if a simplification
6132 can be made, and NULL_TREE otherwise. */
6134 static tree
6135 fold_mathfn_compare (enum built_in_function fcode, enum tree_code code,
6136 tree type, tree arg0, tree arg1)
6138 REAL_VALUE_TYPE c;
6140 if (BUILTIN_SQRT_P (fcode))
6142 tree arg = CALL_EXPR_ARG (arg0, 0);
6143 enum machine_mode mode = TYPE_MODE (TREE_TYPE (arg0));
6145 c = TREE_REAL_CST (arg1);
6146 if (REAL_VALUE_NEGATIVE (c))
6148 /* sqrt(x) < y is always false, if y is negative. */
6149 if (code == EQ_EXPR || code == LT_EXPR || code == LE_EXPR)
6150 return omit_one_operand (type, integer_zero_node, arg);
6152 /* sqrt(x) > y is always true, if y is negative and we
6153 don't care about NaNs, i.e. negative values of x. */
6154 if (code == NE_EXPR || !HONOR_NANS (mode))
6155 return omit_one_operand (type, integer_one_node, arg);
6157 /* sqrt(x) > y is the same as x >= 0, if y is negative. */
6158 return fold_build2 (GE_EXPR, type, arg,
6159 build_real (TREE_TYPE (arg), dconst0));
6161 else if (code == GT_EXPR || code == GE_EXPR)
6163 REAL_VALUE_TYPE c2;
6165 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
6166 real_convert (&c2, mode, &c2);
6168 if (REAL_VALUE_ISINF (c2))
6170 /* sqrt(x) > y is x == +Inf, when y is very large. */
6171 if (HONOR_INFINITIES (mode))
6172 return fold_build2 (EQ_EXPR, type, arg,
6173 build_real (TREE_TYPE (arg), c2));
6175 /* sqrt(x) > y is always false, when y is very large
6176 and we don't care about infinities. */
6177 return omit_one_operand (type, integer_zero_node, arg);
6180 /* sqrt(x) > c is the same as x > c*c. */
6181 return fold_build2 (code, type, arg,
6182 build_real (TREE_TYPE (arg), c2));
6184 else if (code == LT_EXPR || code == LE_EXPR)
6186 REAL_VALUE_TYPE c2;
6188 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
6189 real_convert (&c2, mode, &c2);
6191 if (REAL_VALUE_ISINF (c2))
6193 /* sqrt(x) < y is always true, when y is a very large
6194 value and we don't care about NaNs or Infinities. */
6195 if (! HONOR_NANS (mode) && ! HONOR_INFINITIES (mode))
6196 return omit_one_operand (type, integer_one_node, arg);
6198 /* sqrt(x) < y is x != +Inf when y is very large and we
6199 don't care about NaNs. */
6200 if (! HONOR_NANS (mode))
6201 return fold_build2 (NE_EXPR, type, arg,
6202 build_real (TREE_TYPE (arg), c2));
6204 /* sqrt(x) < y is x >= 0 when y is very large and we
6205 don't care about Infinities. */
6206 if (! HONOR_INFINITIES (mode))
6207 return fold_build2 (GE_EXPR, type, arg,
6208 build_real (TREE_TYPE (arg), dconst0));
6210 /* sqrt(x) < y is x >= 0 && x != +Inf, when y is large. */
6211 if (lang_hooks.decls.global_bindings_p () != 0
6212 || CONTAINS_PLACEHOLDER_P (arg))
6213 return NULL_TREE;
6215 arg = save_expr (arg);
6216 return fold_build2 (TRUTH_ANDIF_EXPR, type,
6217 fold_build2 (GE_EXPR, type, arg,
6218 build_real (TREE_TYPE (arg),
6219 dconst0)),
6220 fold_build2 (NE_EXPR, type, arg,
6221 build_real (TREE_TYPE (arg),
6222 c2)));
6225 /* sqrt(x) < c is the same as x < c*c, if we ignore NaNs. */
6226 if (! HONOR_NANS (mode))
6227 return fold_build2 (code, type, arg,
6228 build_real (TREE_TYPE (arg), c2));
6230 /* sqrt(x) < c is the same as x >= 0 && x < c*c. */
6231 if (lang_hooks.decls.global_bindings_p () == 0
6232 && ! CONTAINS_PLACEHOLDER_P (arg))
6234 arg = save_expr (arg);
6235 return fold_build2 (TRUTH_ANDIF_EXPR, type,
6236 fold_build2 (GE_EXPR, type, arg,
6237 build_real (TREE_TYPE (arg),
6238 dconst0)),
6239 fold_build2 (code, type, arg,
6240 build_real (TREE_TYPE (arg),
6241 c2)));
6246 return NULL_TREE;
6249 /* Subroutine of fold() that optimizes comparisons against Infinities,
6250 either +Inf or -Inf.
6252 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
6253 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
6254 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
6256 The function returns the constant folded tree if a simplification
6257 can be made, and NULL_TREE otherwise. */
6259 static tree
6260 fold_inf_compare (enum tree_code code, tree type, tree arg0, tree arg1)
6262 enum machine_mode mode;
6263 REAL_VALUE_TYPE max;
6264 tree temp;
6265 bool neg;
6267 mode = TYPE_MODE (TREE_TYPE (arg0));
6269 /* For negative infinity swap the sense of the comparison. */
6270 neg = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1));
6271 if (neg)
6272 code = swap_tree_comparison (code);
6274 switch (code)
6276 case GT_EXPR:
6277 /* x > +Inf is always false, if with ignore sNANs. */
6278 if (HONOR_SNANS (mode))
6279 return NULL_TREE;
6280 return omit_one_operand (type, integer_zero_node, arg0);
6282 case LE_EXPR:
6283 /* x <= +Inf is always true, if we don't case about NaNs. */
6284 if (! HONOR_NANS (mode))
6285 return omit_one_operand (type, integer_one_node, arg0);
6287 /* x <= +Inf is the same as x == x, i.e. isfinite(x). */
6288 if (lang_hooks.decls.global_bindings_p () == 0
6289 && ! CONTAINS_PLACEHOLDER_P (arg0))
6291 arg0 = save_expr (arg0);
6292 return fold_build2 (EQ_EXPR, type, arg0, arg0);
6294 break;
6296 case EQ_EXPR:
6297 case GE_EXPR:
6298 /* x == +Inf and x >= +Inf are always equal to x > DBL_MAX. */
6299 real_maxval (&max, neg, mode);
6300 return fold_build2 (neg ? LT_EXPR : GT_EXPR, type,
6301 arg0, build_real (TREE_TYPE (arg0), max));
6303 case LT_EXPR:
6304 /* x < +Inf is always equal to x <= DBL_MAX. */
6305 real_maxval (&max, neg, mode);
6306 return fold_build2 (neg ? GE_EXPR : LE_EXPR, type,
6307 arg0, build_real (TREE_TYPE (arg0), max));
6309 case NE_EXPR:
6310 /* x != +Inf is always equal to !(x > DBL_MAX). */
6311 real_maxval (&max, neg, mode);
6312 if (! HONOR_NANS (mode))
6313 return fold_build2 (neg ? GE_EXPR : LE_EXPR, type,
6314 arg0, build_real (TREE_TYPE (arg0), max));
6316 temp = fold_build2 (neg ? LT_EXPR : GT_EXPR, type,
6317 arg0, build_real (TREE_TYPE (arg0), max));
6318 return fold_build1 (TRUTH_NOT_EXPR, type, temp);
6320 default:
6321 break;
6324 return NULL_TREE;
6327 /* Subroutine of fold() that optimizes comparisons of a division by
6328 a nonzero integer constant against an integer constant, i.e.
6329 X/C1 op C2.
6331 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
6332 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
6333 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
6335 The function returns the constant folded tree if a simplification
6336 can be made, and NULL_TREE otherwise. */
6338 static tree
6339 fold_div_compare (enum tree_code code, tree type, tree arg0, tree arg1)
6341 tree prod, tmp, hi, lo;
6342 tree arg00 = TREE_OPERAND (arg0, 0);
6343 tree arg01 = TREE_OPERAND (arg0, 1);
6344 unsigned HOST_WIDE_INT lpart;
6345 HOST_WIDE_INT hpart;
6346 bool unsigned_p = TYPE_UNSIGNED (TREE_TYPE (arg0));
6347 bool neg_overflow;
6348 int overflow;
6350 /* We have to do this the hard way to detect unsigned overflow.
6351 prod = int_const_binop (MULT_EXPR, arg01, arg1, 0); */
6352 overflow = mul_double_with_sign (TREE_INT_CST_LOW (arg01),
6353 TREE_INT_CST_HIGH (arg01),
6354 TREE_INT_CST_LOW (arg1),
6355 TREE_INT_CST_HIGH (arg1),
6356 &lpart, &hpart, unsigned_p);
6357 prod = force_fit_type_double (TREE_TYPE (arg00), lpart, hpart,
6358 -1, overflow);
6359 neg_overflow = false;
6361 if (unsigned_p)
6363 tmp = int_const_binop (MINUS_EXPR, arg01,
6364 build_int_cst (TREE_TYPE (arg01), 1), 0);
6365 lo = prod;
6367 /* Likewise hi = int_const_binop (PLUS_EXPR, prod, tmp, 0). */
6368 overflow = add_double_with_sign (TREE_INT_CST_LOW (prod),
6369 TREE_INT_CST_HIGH (prod),
6370 TREE_INT_CST_LOW (tmp),
6371 TREE_INT_CST_HIGH (tmp),
6372 &lpart, &hpart, unsigned_p);
6373 hi = force_fit_type_double (TREE_TYPE (arg00), lpart, hpart,
6374 -1, overflow | TREE_OVERFLOW (prod));
6376 else if (tree_int_cst_sgn (arg01) >= 0)
6378 tmp = int_const_binop (MINUS_EXPR, arg01,
6379 build_int_cst (TREE_TYPE (arg01), 1), 0);
6380 switch (tree_int_cst_sgn (arg1))
6382 case -1:
6383 neg_overflow = true;
6384 lo = int_const_binop (MINUS_EXPR, prod, tmp, 0);
6385 hi = prod;
6386 break;
6388 case 0:
6389 lo = fold_negate_const (tmp, TREE_TYPE (arg0));
6390 hi = tmp;
6391 break;
6393 case 1:
6394 hi = int_const_binop (PLUS_EXPR, prod, tmp, 0);
6395 lo = prod;
6396 break;
6398 default:
6399 gcc_unreachable ();
6402 else
6404 /* A negative divisor reverses the relational operators. */
6405 code = swap_tree_comparison (code);
6407 tmp = int_const_binop (PLUS_EXPR, arg01,
6408 build_int_cst (TREE_TYPE (arg01), 1), 0);
6409 switch (tree_int_cst_sgn (arg1))
6411 case -1:
6412 hi = int_const_binop (MINUS_EXPR, prod, tmp, 0);
6413 lo = prod;
6414 break;
6416 case 0:
6417 hi = fold_negate_const (tmp, TREE_TYPE (arg0));
6418 lo = tmp;
6419 break;
6421 case 1:
6422 neg_overflow = true;
6423 lo = int_const_binop (PLUS_EXPR, prod, tmp, 0);
6424 hi = prod;
6425 break;
6427 default:
6428 gcc_unreachable ();
6432 switch (code)
6434 case EQ_EXPR:
6435 if (TREE_OVERFLOW (lo) && TREE_OVERFLOW (hi))
6436 return omit_one_operand (type, integer_zero_node, arg00);
6437 if (TREE_OVERFLOW (hi))
6438 return fold_build2 (GE_EXPR, type, arg00, lo);
6439 if (TREE_OVERFLOW (lo))
6440 return fold_build2 (LE_EXPR, type, arg00, hi);
6441 return build_range_check (type, arg00, 1, lo, hi);
6443 case NE_EXPR:
6444 if (TREE_OVERFLOW (lo) && TREE_OVERFLOW (hi))
6445 return omit_one_operand (type, integer_one_node, arg00);
6446 if (TREE_OVERFLOW (hi))
6447 return fold_build2 (LT_EXPR, type, arg00, lo);
6448 if (TREE_OVERFLOW (lo))
6449 return fold_build2 (GT_EXPR, type, arg00, hi);
6450 return build_range_check (type, arg00, 0, lo, hi);
6452 case LT_EXPR:
6453 if (TREE_OVERFLOW (lo))
6455 tmp = neg_overflow ? integer_zero_node : integer_one_node;
6456 return omit_one_operand (type, tmp, arg00);
6458 return fold_build2 (LT_EXPR, type, arg00, lo);
6460 case LE_EXPR:
6461 if (TREE_OVERFLOW (hi))
6463 tmp = neg_overflow ? integer_zero_node : integer_one_node;
6464 return omit_one_operand (type, tmp, arg00);
6466 return fold_build2 (LE_EXPR, type, arg00, hi);
6468 case GT_EXPR:
6469 if (TREE_OVERFLOW (hi))
6471 tmp = neg_overflow ? integer_one_node : integer_zero_node;
6472 return omit_one_operand (type, tmp, arg00);
6474 return fold_build2 (GT_EXPR, type, arg00, hi);
6476 case GE_EXPR:
6477 if (TREE_OVERFLOW (lo))
6479 tmp = neg_overflow ? integer_one_node : integer_zero_node;
6480 return omit_one_operand (type, tmp, arg00);
6482 return fold_build2 (GE_EXPR, type, arg00, lo);
6484 default:
6485 break;
6488 return NULL_TREE;
6492 /* If CODE with arguments ARG0 and ARG1 represents a single bit
6493 equality/inequality test, then return a simplified form of the test
6494 using a sign testing. Otherwise return NULL. TYPE is the desired
6495 result type. */
6497 static tree
6498 fold_single_bit_test_into_sign_test (enum tree_code code, tree arg0, tree arg1,
6499 tree result_type)
6501 /* If this is testing a single bit, we can optimize the test. */
6502 if ((code == NE_EXPR || code == EQ_EXPR)
6503 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
6504 && integer_pow2p (TREE_OPERAND (arg0, 1)))
6506 /* If we have (A & C) != 0 where C is the sign bit of A, convert
6507 this into A < 0. Similarly for (A & C) == 0 into A >= 0. */
6508 tree arg00 = sign_bit_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1));
6510 if (arg00 != NULL_TREE
6511 /* This is only a win if casting to a signed type is cheap,
6512 i.e. when arg00's type is not a partial mode. */
6513 && TYPE_PRECISION (TREE_TYPE (arg00))
6514 == GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg00))))
6516 tree stype = signed_type_for (TREE_TYPE (arg00));
6517 return fold_build2 (code == EQ_EXPR ? GE_EXPR : LT_EXPR,
6518 result_type, fold_convert (stype, arg00),
6519 build_int_cst (stype, 0));
6523 return NULL_TREE;
6526 /* If CODE with arguments ARG0 and ARG1 represents a single bit
6527 equality/inequality test, then return a simplified form of
6528 the test using shifts and logical operations. Otherwise return
6529 NULL. TYPE is the desired result type. */
6531 tree
6532 fold_single_bit_test (enum tree_code code, tree arg0, tree arg1,
6533 tree result_type)
6535 /* If this is testing a single bit, we can optimize the test. */
6536 if ((code == NE_EXPR || code == EQ_EXPR)
6537 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
6538 && integer_pow2p (TREE_OPERAND (arg0, 1)))
6540 tree inner = TREE_OPERAND (arg0, 0);
6541 tree type = TREE_TYPE (arg0);
6542 int bitnum = tree_log2 (TREE_OPERAND (arg0, 1));
6543 enum machine_mode operand_mode = TYPE_MODE (type);
6544 int ops_unsigned;
6545 tree signed_type, unsigned_type, intermediate_type;
6546 tree tem, one;
6548 /* First, see if we can fold the single bit test into a sign-bit
6549 test. */
6550 tem = fold_single_bit_test_into_sign_test (code, arg0, arg1,
6551 result_type);
6552 if (tem)
6553 return tem;
6555 /* Otherwise we have (A & C) != 0 where C is a single bit,
6556 convert that into ((A >> C2) & 1). Where C2 = log2(C).
6557 Similarly for (A & C) == 0. */
6559 /* If INNER is a right shift of a constant and it plus BITNUM does
6560 not overflow, adjust BITNUM and INNER. */
6561 if (TREE_CODE (inner) == RSHIFT_EXPR
6562 && TREE_CODE (TREE_OPERAND (inner, 1)) == INTEGER_CST
6563 && TREE_INT_CST_HIGH (TREE_OPERAND (inner, 1)) == 0
6564 && bitnum < TYPE_PRECISION (type)
6565 && 0 > compare_tree_int (TREE_OPERAND (inner, 1),
6566 bitnum - TYPE_PRECISION (type)))
6568 bitnum += TREE_INT_CST_LOW (TREE_OPERAND (inner, 1));
6569 inner = TREE_OPERAND (inner, 0);
6572 /* If we are going to be able to omit the AND below, we must do our
6573 operations as unsigned. If we must use the AND, we have a choice.
6574 Normally unsigned is faster, but for some machines signed is. */
6575 #ifdef LOAD_EXTEND_OP
6576 ops_unsigned = (LOAD_EXTEND_OP (operand_mode) == SIGN_EXTEND
6577 && !flag_syntax_only) ? 0 : 1;
6578 #else
6579 ops_unsigned = 1;
6580 #endif
6582 signed_type = lang_hooks.types.type_for_mode (operand_mode, 0);
6583 unsigned_type = lang_hooks.types.type_for_mode (operand_mode, 1);
6584 intermediate_type = ops_unsigned ? unsigned_type : signed_type;
6585 inner = fold_convert (intermediate_type, inner);
6587 if (bitnum != 0)
6588 inner = build2 (RSHIFT_EXPR, intermediate_type,
6589 inner, size_int (bitnum));
6591 one = build_int_cst (intermediate_type, 1);
6593 if (code == EQ_EXPR)
6594 inner = fold_build2 (BIT_XOR_EXPR, intermediate_type, inner, one);
6596 /* Put the AND last so it can combine with more things. */
6597 inner = build2 (BIT_AND_EXPR, intermediate_type, inner, one);
6599 /* Make sure to return the proper type. */
6600 inner = fold_convert (result_type, inner);
6602 return inner;
6604 return NULL_TREE;
6607 /* Check whether we are allowed to reorder operands arg0 and arg1,
6608 such that the evaluation of arg1 occurs before arg0. */
6610 static bool
6611 reorder_operands_p (const_tree arg0, const_tree arg1)
6613 if (! flag_evaluation_order)
6614 return true;
6615 if (TREE_CONSTANT (arg0) || TREE_CONSTANT (arg1))
6616 return true;
6617 return ! TREE_SIDE_EFFECTS (arg0)
6618 && ! TREE_SIDE_EFFECTS (arg1);
6621 /* Test whether it is preferable two swap two operands, ARG0 and
6622 ARG1, for example because ARG0 is an integer constant and ARG1
6623 isn't. If REORDER is true, only recommend swapping if we can
6624 evaluate the operands in reverse order. */
6626 bool
6627 tree_swap_operands_p (const_tree arg0, const_tree arg1, bool reorder)
6629 STRIP_SIGN_NOPS (arg0);
6630 STRIP_SIGN_NOPS (arg1);
6632 if (TREE_CODE (arg1) == INTEGER_CST)
6633 return 0;
6634 if (TREE_CODE (arg0) == INTEGER_CST)
6635 return 1;
6637 if (TREE_CODE (arg1) == REAL_CST)
6638 return 0;
6639 if (TREE_CODE (arg0) == REAL_CST)
6640 return 1;
6642 if (TREE_CODE (arg1) == FIXED_CST)
6643 return 0;
6644 if (TREE_CODE (arg0) == FIXED_CST)
6645 return 1;
6647 if (TREE_CODE (arg1) == COMPLEX_CST)
6648 return 0;
6649 if (TREE_CODE (arg0) == COMPLEX_CST)
6650 return 1;
6652 if (TREE_CONSTANT (arg1))
6653 return 0;
6654 if (TREE_CONSTANT (arg0))
6655 return 1;
6657 if (optimize_size)
6658 return 0;
6660 if (reorder && flag_evaluation_order
6661 && (TREE_SIDE_EFFECTS (arg0) || TREE_SIDE_EFFECTS (arg1)))
6662 return 0;
6664 /* It is preferable to swap two SSA_NAME to ensure a canonical form
6665 for commutative and comparison operators. Ensuring a canonical
6666 form allows the optimizers to find additional redundancies without
6667 having to explicitly check for both orderings. */
6668 if (TREE_CODE (arg0) == SSA_NAME
6669 && TREE_CODE (arg1) == SSA_NAME
6670 && SSA_NAME_VERSION (arg0) > SSA_NAME_VERSION (arg1))
6671 return 1;
6673 /* Put SSA_NAMEs last. */
6674 if (TREE_CODE (arg1) == SSA_NAME)
6675 return 0;
6676 if (TREE_CODE (arg0) == SSA_NAME)
6677 return 1;
6679 /* Put variables last. */
6680 if (DECL_P (arg1))
6681 return 0;
6682 if (DECL_P (arg0))
6683 return 1;
6685 return 0;
6688 /* Fold comparison ARG0 CODE ARG1 (with result in TYPE), where
6689 ARG0 is extended to a wider type. */
6691 static tree
6692 fold_widened_comparison (enum tree_code code, tree type, tree arg0, tree arg1)
6694 tree arg0_unw = get_unwidened (arg0, NULL_TREE);
6695 tree arg1_unw;
6696 tree shorter_type, outer_type;
6697 tree min, max;
6698 bool above, below;
6700 if (arg0_unw == arg0)
6701 return NULL_TREE;
6702 shorter_type = TREE_TYPE (arg0_unw);
6704 #ifdef HAVE_canonicalize_funcptr_for_compare
6705 /* Disable this optimization if we're casting a function pointer
6706 type on targets that require function pointer canonicalization. */
6707 if (HAVE_canonicalize_funcptr_for_compare
6708 && TREE_CODE (shorter_type) == POINTER_TYPE
6709 && TREE_CODE (TREE_TYPE (shorter_type)) == FUNCTION_TYPE)
6710 return NULL_TREE;
6711 #endif
6713 if (TYPE_PRECISION (TREE_TYPE (arg0)) <= TYPE_PRECISION (shorter_type))
6714 return NULL_TREE;
6716 arg1_unw = get_unwidened (arg1, NULL_TREE);
6718 /* If possible, express the comparison in the shorter mode. */
6719 if ((code == EQ_EXPR || code == NE_EXPR
6720 || TYPE_UNSIGNED (TREE_TYPE (arg0)) == TYPE_UNSIGNED (shorter_type))
6721 && (TREE_TYPE (arg1_unw) == shorter_type
6722 || (TYPE_PRECISION (shorter_type)
6723 >= TYPE_PRECISION (TREE_TYPE (arg1_unw)))
6724 || (TREE_CODE (arg1_unw) == INTEGER_CST
6725 && (TREE_CODE (shorter_type) == INTEGER_TYPE
6726 || TREE_CODE (shorter_type) == BOOLEAN_TYPE)
6727 && int_fits_type_p (arg1_unw, shorter_type))))
6728 return fold_build2 (code, type, arg0_unw,
6729 fold_convert (shorter_type, arg1_unw));
6731 if (TREE_CODE (arg1_unw) != INTEGER_CST
6732 || TREE_CODE (shorter_type) != INTEGER_TYPE
6733 || !int_fits_type_p (arg1_unw, shorter_type))
6734 return NULL_TREE;
6736 /* If we are comparing with the integer that does not fit into the range
6737 of the shorter type, the result is known. */
6738 outer_type = TREE_TYPE (arg1_unw);
6739 min = lower_bound_in_type (outer_type, shorter_type);
6740 max = upper_bound_in_type (outer_type, shorter_type);
6742 above = integer_nonzerop (fold_relational_const (LT_EXPR, type,
6743 max, arg1_unw));
6744 below = integer_nonzerop (fold_relational_const (LT_EXPR, type,
6745 arg1_unw, min));
6747 switch (code)
6749 case EQ_EXPR:
6750 if (above || below)
6751 return omit_one_operand (type, integer_zero_node, arg0);
6752 break;
6754 case NE_EXPR:
6755 if (above || below)
6756 return omit_one_operand (type, integer_one_node, arg0);
6757 break;
6759 case LT_EXPR:
6760 case LE_EXPR:
6761 if (above)
6762 return omit_one_operand (type, integer_one_node, arg0);
6763 else if (below)
6764 return omit_one_operand (type, integer_zero_node, arg0);
6766 case GT_EXPR:
6767 case GE_EXPR:
6768 if (above)
6769 return omit_one_operand (type, integer_zero_node, arg0);
6770 else if (below)
6771 return omit_one_operand (type, integer_one_node, arg0);
6773 default:
6774 break;
6777 return NULL_TREE;
6780 /* Fold comparison ARG0 CODE ARG1 (with result in TYPE), where for
6781 ARG0 just the signedness is changed. */
6783 static tree
6784 fold_sign_changed_comparison (enum tree_code code, tree type,
6785 tree arg0, tree arg1)
6787 tree arg0_inner;
6788 tree inner_type, outer_type;
6790 if (TREE_CODE (arg0) != NOP_EXPR
6791 && TREE_CODE (arg0) != CONVERT_EXPR)
6792 return NULL_TREE;
6794 outer_type = TREE_TYPE (arg0);
6795 arg0_inner = TREE_OPERAND (arg0, 0);
6796 inner_type = TREE_TYPE (arg0_inner);
6798 #ifdef HAVE_canonicalize_funcptr_for_compare
6799 /* Disable this optimization if we're casting a function pointer
6800 type on targets that require function pointer canonicalization. */
6801 if (HAVE_canonicalize_funcptr_for_compare
6802 && TREE_CODE (inner_type) == POINTER_TYPE
6803 && TREE_CODE (TREE_TYPE (inner_type)) == FUNCTION_TYPE)
6804 return NULL_TREE;
6805 #endif
6807 if (TYPE_PRECISION (inner_type) != TYPE_PRECISION (outer_type))
6808 return NULL_TREE;
6810 if (TREE_CODE (arg1) != INTEGER_CST
6811 && !((TREE_CODE (arg1) == NOP_EXPR
6812 || TREE_CODE (arg1) == CONVERT_EXPR)
6813 && TREE_TYPE (TREE_OPERAND (arg1, 0)) == inner_type))
6814 return NULL_TREE;
6816 if (TYPE_UNSIGNED (inner_type) != TYPE_UNSIGNED (outer_type)
6817 && code != NE_EXPR
6818 && code != EQ_EXPR)
6819 return NULL_TREE;
6821 if (TREE_CODE (arg1) == INTEGER_CST)
6822 arg1 = force_fit_type_double (inner_type, TREE_INT_CST_LOW (arg1),
6823 TREE_INT_CST_HIGH (arg1), 0,
6824 TREE_OVERFLOW (arg1));
6825 else
6826 arg1 = fold_convert (inner_type, arg1);
6828 return fold_build2 (code, type, arg0_inner, arg1);
6831 /* Tries to replace &a[idx] p+ s * delta with &a[idx + delta], if s is
6832 step of the array. Reconstructs s and delta in the case of s * delta
6833 being an integer constant (and thus already folded).
6834 ADDR is the address. MULT is the multiplicative expression.
6835 If the function succeeds, the new address expression is returned. Otherwise
6836 NULL_TREE is returned. */
6838 static tree
6839 try_move_mult_to_index (tree addr, tree op1)
6841 tree s, delta, step;
6842 tree ref = TREE_OPERAND (addr, 0), pref;
6843 tree ret, pos;
6844 tree itype;
6845 bool mdim = false;
6847 /* Strip the nops that might be added when converting op1 to sizetype. */
6848 STRIP_NOPS (op1);
6850 /* Canonicalize op1 into a possibly non-constant delta
6851 and an INTEGER_CST s. */
6852 if (TREE_CODE (op1) == MULT_EXPR)
6854 tree arg0 = TREE_OPERAND (op1, 0), arg1 = TREE_OPERAND (op1, 1);
6856 STRIP_NOPS (arg0);
6857 STRIP_NOPS (arg1);
6859 if (TREE_CODE (arg0) == INTEGER_CST)
6861 s = arg0;
6862 delta = arg1;
6864 else if (TREE_CODE (arg1) == INTEGER_CST)
6866 s = arg1;
6867 delta = arg0;
6869 else
6870 return NULL_TREE;
6872 else if (TREE_CODE (op1) == INTEGER_CST)
6874 delta = op1;
6875 s = NULL_TREE;
6877 else
6879 /* Simulate we are delta * 1. */
6880 delta = op1;
6881 s = integer_one_node;
6884 for (;; ref = TREE_OPERAND (ref, 0))
6886 if (TREE_CODE (ref) == ARRAY_REF)
6888 /* Remember if this was a multi-dimensional array. */
6889 if (TREE_CODE (TREE_OPERAND (ref, 0)) == ARRAY_REF)
6890 mdim = true;
6892 itype = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (ref, 0)));
6893 if (! itype)
6894 continue;
6896 step = array_ref_element_size (ref);
6897 if (TREE_CODE (step) != INTEGER_CST)
6898 continue;
6900 if (s)
6902 if (! tree_int_cst_equal (step, s))
6903 continue;
6905 else
6907 /* Try if delta is a multiple of step. */
6908 tree tmp = div_if_zero_remainder (EXACT_DIV_EXPR, delta, step);
6909 if (! tmp)
6910 continue;
6911 delta = tmp;
6914 /* Only fold here if we can verify we do not overflow one
6915 dimension of a multi-dimensional array. */
6916 if (mdim)
6918 tree tmp;
6920 if (TREE_CODE (TREE_OPERAND (ref, 1)) != INTEGER_CST
6921 || !INTEGRAL_TYPE_P (itype)
6922 || !TYPE_MAX_VALUE (itype)
6923 || TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST)
6924 continue;
6926 tmp = fold_binary (PLUS_EXPR, itype,
6927 fold_convert (itype,
6928 TREE_OPERAND (ref, 1)),
6929 fold_convert (itype, delta));
6930 if (!tmp
6931 || TREE_CODE (tmp) != INTEGER_CST
6932 || tree_int_cst_lt (TYPE_MAX_VALUE (itype), tmp))
6933 continue;
6936 break;
6938 else
6939 mdim = false;
6941 if (!handled_component_p (ref))
6942 return NULL_TREE;
6945 /* We found the suitable array reference. So copy everything up to it,
6946 and replace the index. */
6948 pref = TREE_OPERAND (addr, 0);
6949 ret = copy_node (pref);
6950 pos = ret;
6952 while (pref != ref)
6954 pref = TREE_OPERAND (pref, 0);
6955 TREE_OPERAND (pos, 0) = copy_node (pref);
6956 pos = TREE_OPERAND (pos, 0);
6959 TREE_OPERAND (pos, 1) = fold_build2 (PLUS_EXPR, itype,
6960 fold_convert (itype,
6961 TREE_OPERAND (pos, 1)),
6962 fold_convert (itype, delta));
6964 return fold_build1 (ADDR_EXPR, TREE_TYPE (addr), ret);
6968 /* Fold A < X && A + 1 > Y to A < X && A >= Y. Normally A + 1 > Y
6969 means A >= Y && A != MAX, but in this case we know that
6970 A < X <= MAX. INEQ is A + 1 > Y, BOUND is A < X. */
6972 static tree
6973 fold_to_nonsharp_ineq_using_bound (tree ineq, tree bound)
6975 tree a, typea, type = TREE_TYPE (ineq), a1, diff, y;
6977 if (TREE_CODE (bound) == LT_EXPR)
6978 a = TREE_OPERAND (bound, 0);
6979 else if (TREE_CODE (bound) == GT_EXPR)
6980 a = TREE_OPERAND (bound, 1);
6981 else
6982 return NULL_TREE;
6984 typea = TREE_TYPE (a);
6985 if (!INTEGRAL_TYPE_P (typea)
6986 && !POINTER_TYPE_P (typea))
6987 return NULL_TREE;
6989 if (TREE_CODE (ineq) == LT_EXPR)
6991 a1 = TREE_OPERAND (ineq, 1);
6992 y = TREE_OPERAND (ineq, 0);
6994 else if (TREE_CODE (ineq) == GT_EXPR)
6996 a1 = TREE_OPERAND (ineq, 0);
6997 y = TREE_OPERAND (ineq, 1);
6999 else
7000 return NULL_TREE;
7002 if (TREE_TYPE (a1) != typea)
7003 return NULL_TREE;
7005 if (POINTER_TYPE_P (typea))
7007 /* Convert the pointer types into integer before taking the difference. */
7008 tree ta = fold_convert (ssizetype, a);
7009 tree ta1 = fold_convert (ssizetype, a1);
7010 diff = fold_binary (MINUS_EXPR, ssizetype, ta1, ta);
7012 else
7013 diff = fold_binary (MINUS_EXPR, typea, a1, a);
7015 if (!diff || !integer_onep (diff))
7016 return NULL_TREE;
7018 return fold_build2 (GE_EXPR, type, a, y);
7021 /* Fold a sum or difference of at least one multiplication.
7022 Returns the folded tree or NULL if no simplification could be made. */
7024 static tree
7025 fold_plusminus_mult_expr (enum tree_code code, tree type, tree arg0, tree arg1)
7027 tree arg00, arg01, arg10, arg11;
7028 tree alt0 = NULL_TREE, alt1 = NULL_TREE, same;
7030 /* (A * C) +- (B * C) -> (A+-B) * C.
7031 (A * C) +- A -> A * (C+-1).
7032 We are most concerned about the case where C is a constant,
7033 but other combinations show up during loop reduction. Since
7034 it is not difficult, try all four possibilities. */
7036 if (TREE_CODE (arg0) == MULT_EXPR)
7038 arg00 = TREE_OPERAND (arg0, 0);
7039 arg01 = TREE_OPERAND (arg0, 1);
7041 else if (TREE_CODE (arg0) == INTEGER_CST)
7043 arg00 = build_one_cst (type);
7044 arg01 = arg0;
7046 else
7048 /* We cannot generate constant 1 for fract. */
7049 if (ALL_FRACT_MODE_P (TYPE_MODE (type)))
7050 return NULL_TREE;
7051 arg00 = arg0;
7052 arg01 = build_one_cst (type);
7054 if (TREE_CODE (arg1) == MULT_EXPR)
7056 arg10 = TREE_OPERAND (arg1, 0);
7057 arg11 = TREE_OPERAND (arg1, 1);
7059 else if (TREE_CODE (arg1) == INTEGER_CST)
7061 arg10 = build_one_cst (type);
7062 arg11 = arg1;
7064 else
7066 /* We cannot generate constant 1 for fract. */
7067 if (ALL_FRACT_MODE_P (TYPE_MODE (type)))
7068 return NULL_TREE;
7069 arg10 = arg1;
7070 arg11 = build_one_cst (type);
7072 same = NULL_TREE;
7074 if (operand_equal_p (arg01, arg11, 0))
7075 same = arg01, alt0 = arg00, alt1 = arg10;
7076 else if (operand_equal_p (arg00, arg10, 0))
7077 same = arg00, alt0 = arg01, alt1 = arg11;
7078 else if (operand_equal_p (arg00, arg11, 0))
7079 same = arg00, alt0 = arg01, alt1 = arg10;
7080 else if (operand_equal_p (arg01, arg10, 0))
7081 same = arg01, alt0 = arg00, alt1 = arg11;
7083 /* No identical multiplicands; see if we can find a common
7084 power-of-two factor in non-power-of-two multiplies. This
7085 can help in multi-dimensional array access. */
7086 else if (host_integerp (arg01, 0)
7087 && host_integerp (arg11, 0))
7089 HOST_WIDE_INT int01, int11, tmp;
7090 bool swap = false;
7091 tree maybe_same;
7092 int01 = TREE_INT_CST_LOW (arg01);
7093 int11 = TREE_INT_CST_LOW (arg11);
7095 /* Move min of absolute values to int11. */
7096 if ((int01 >= 0 ? int01 : -int01)
7097 < (int11 >= 0 ? int11 : -int11))
7099 tmp = int01, int01 = int11, int11 = tmp;
7100 alt0 = arg00, arg00 = arg10, arg10 = alt0;
7101 maybe_same = arg01;
7102 swap = true;
7104 else
7105 maybe_same = arg11;
7107 if (exact_log2 (abs (int11)) > 0 && int01 % int11 == 0)
7109 alt0 = fold_build2 (MULT_EXPR, TREE_TYPE (arg00), arg00,
7110 build_int_cst (TREE_TYPE (arg00),
7111 int01 / int11));
7112 alt1 = arg10;
7113 same = maybe_same;
7114 if (swap)
7115 maybe_same = alt0, alt0 = alt1, alt1 = maybe_same;
7119 if (same)
7120 return fold_build2 (MULT_EXPR, type,
7121 fold_build2 (code, type,
7122 fold_convert (type, alt0),
7123 fold_convert (type, alt1)),
7124 fold_convert (type, same));
7126 return NULL_TREE;
7129 /* Subroutine of native_encode_expr. Encode the INTEGER_CST
7130 specified by EXPR into the buffer PTR of length LEN bytes.
7131 Return the number of bytes placed in the buffer, or zero
7132 upon failure. */
7134 static int
7135 native_encode_int (const_tree expr, unsigned char *ptr, int len)
7137 tree type = TREE_TYPE (expr);
7138 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7139 int byte, offset, word, words;
7140 unsigned char value;
7142 if (total_bytes > len)
7143 return 0;
7144 words = total_bytes / UNITS_PER_WORD;
7146 for (byte = 0; byte < total_bytes; byte++)
7148 int bitpos = byte * BITS_PER_UNIT;
7149 if (bitpos < HOST_BITS_PER_WIDE_INT)
7150 value = (unsigned char) (TREE_INT_CST_LOW (expr) >> bitpos);
7151 else
7152 value = (unsigned char) (TREE_INT_CST_HIGH (expr)
7153 >> (bitpos - HOST_BITS_PER_WIDE_INT));
7155 if (total_bytes > UNITS_PER_WORD)
7157 word = byte / UNITS_PER_WORD;
7158 if (WORDS_BIG_ENDIAN)
7159 word = (words - 1) - word;
7160 offset = word * UNITS_PER_WORD;
7161 if (BYTES_BIG_ENDIAN)
7162 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7163 else
7164 offset += byte % UNITS_PER_WORD;
7166 else
7167 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte;
7168 ptr[offset] = value;
7170 return total_bytes;
7174 /* Subroutine of native_encode_expr. Encode the REAL_CST
7175 specified by EXPR into the buffer PTR of length LEN bytes.
7176 Return the number of bytes placed in the buffer, or zero
7177 upon failure. */
7179 static int
7180 native_encode_real (const_tree expr, unsigned char *ptr, int len)
7182 tree type = TREE_TYPE (expr);
7183 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7184 int byte, offset, word, words, bitpos;
7185 unsigned char value;
7187 /* There are always 32 bits in each long, no matter the size of
7188 the hosts long. We handle floating point representations with
7189 up to 192 bits. */
7190 long tmp[6];
7192 if (total_bytes > len)
7193 return 0;
7194 words = 32 / UNITS_PER_WORD;
7196 real_to_target (tmp, TREE_REAL_CST_PTR (expr), TYPE_MODE (type));
7198 for (bitpos = 0; bitpos < total_bytes * BITS_PER_UNIT;
7199 bitpos += BITS_PER_UNIT)
7201 byte = (bitpos / BITS_PER_UNIT) & 3;
7202 value = (unsigned char) (tmp[bitpos / 32] >> (bitpos & 31));
7204 if (UNITS_PER_WORD < 4)
7206 word = byte / UNITS_PER_WORD;
7207 if (WORDS_BIG_ENDIAN)
7208 word = (words - 1) - word;
7209 offset = word * UNITS_PER_WORD;
7210 if (BYTES_BIG_ENDIAN)
7211 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7212 else
7213 offset += byte % UNITS_PER_WORD;
7215 else
7216 offset = BYTES_BIG_ENDIAN ? 3 - byte : byte;
7217 ptr[offset + ((bitpos / BITS_PER_UNIT) & ~3)] = value;
7219 return total_bytes;
7222 /* Subroutine of native_encode_expr. Encode the COMPLEX_CST
7223 specified by EXPR into the buffer PTR of length LEN bytes.
7224 Return the number of bytes placed in the buffer, or zero
7225 upon failure. */
7227 static int
7228 native_encode_complex (const_tree expr, unsigned char *ptr, int len)
7230 int rsize, isize;
7231 tree part;
7233 part = TREE_REALPART (expr);
7234 rsize = native_encode_expr (part, ptr, len);
7235 if (rsize == 0)
7236 return 0;
7237 part = TREE_IMAGPART (expr);
7238 isize = native_encode_expr (part, ptr+rsize, len-rsize);
7239 if (isize != rsize)
7240 return 0;
7241 return rsize + isize;
7245 /* Subroutine of native_encode_expr. Encode the VECTOR_CST
7246 specified by EXPR into the buffer PTR of length LEN bytes.
7247 Return the number of bytes placed in the buffer, or zero
7248 upon failure. */
7250 static int
7251 native_encode_vector (const_tree expr, unsigned char *ptr, int len)
7253 int i, size, offset, count;
7254 tree itype, elem, elements;
7256 offset = 0;
7257 elements = TREE_VECTOR_CST_ELTS (expr);
7258 count = TYPE_VECTOR_SUBPARTS (TREE_TYPE (expr));
7259 itype = TREE_TYPE (TREE_TYPE (expr));
7260 size = GET_MODE_SIZE (TYPE_MODE (itype));
7261 for (i = 0; i < count; i++)
7263 if (elements)
7265 elem = TREE_VALUE (elements);
7266 elements = TREE_CHAIN (elements);
7268 else
7269 elem = NULL_TREE;
7271 if (elem)
7273 if (native_encode_expr (elem, ptr+offset, len-offset) != size)
7274 return 0;
7276 else
7278 if (offset + size > len)
7279 return 0;
7280 memset (ptr+offset, 0, size);
7282 offset += size;
7284 return offset;
7288 /* Subroutine of fold_view_convert_expr. Encode the INTEGER_CST,
7289 REAL_CST, COMPLEX_CST or VECTOR_CST specified by EXPR into the
7290 buffer PTR of length LEN bytes. Return the number of bytes
7291 placed in the buffer, or zero upon failure. */
7294 native_encode_expr (const_tree expr, unsigned char *ptr, int len)
7296 switch (TREE_CODE (expr))
7298 case INTEGER_CST:
7299 return native_encode_int (expr, ptr, len);
7301 case REAL_CST:
7302 return native_encode_real (expr, ptr, len);
7304 case COMPLEX_CST:
7305 return native_encode_complex (expr, ptr, len);
7307 case VECTOR_CST:
7308 return native_encode_vector (expr, ptr, len);
7310 default:
7311 return 0;
7316 /* Subroutine of native_interpret_expr. Interpret the contents of
7317 the buffer PTR of length LEN as an INTEGER_CST of type TYPE.
7318 If the buffer cannot be interpreted, return NULL_TREE. */
7320 static tree
7321 native_interpret_int (tree type, const unsigned char *ptr, int len)
7323 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7324 int byte, offset, word, words;
7325 unsigned char value;
7326 unsigned int HOST_WIDE_INT lo = 0;
7327 HOST_WIDE_INT hi = 0;
7329 if (total_bytes > len)
7330 return NULL_TREE;
7331 if (total_bytes * BITS_PER_UNIT > 2 * HOST_BITS_PER_WIDE_INT)
7332 return NULL_TREE;
7333 words = total_bytes / UNITS_PER_WORD;
7335 for (byte = 0; byte < total_bytes; byte++)
7337 int bitpos = byte * BITS_PER_UNIT;
7338 if (total_bytes > UNITS_PER_WORD)
7340 word = byte / UNITS_PER_WORD;
7341 if (WORDS_BIG_ENDIAN)
7342 word = (words - 1) - word;
7343 offset = word * UNITS_PER_WORD;
7344 if (BYTES_BIG_ENDIAN)
7345 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7346 else
7347 offset += byte % UNITS_PER_WORD;
7349 else
7350 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte;
7351 value = ptr[offset];
7353 if (bitpos < HOST_BITS_PER_WIDE_INT)
7354 lo |= (unsigned HOST_WIDE_INT) value << bitpos;
7355 else
7356 hi |= (unsigned HOST_WIDE_INT) value
7357 << (bitpos - HOST_BITS_PER_WIDE_INT);
7360 return build_int_cst_wide_type (type, lo, hi);
7364 /* Subroutine of native_interpret_expr. Interpret the contents of
7365 the buffer PTR of length LEN as a REAL_CST of type TYPE.
7366 If the buffer cannot be interpreted, return NULL_TREE. */
7368 static tree
7369 native_interpret_real (tree type, const unsigned char *ptr, int len)
7371 enum machine_mode mode = TYPE_MODE (type);
7372 int total_bytes = GET_MODE_SIZE (mode);
7373 int byte, offset, word, words, bitpos;
7374 unsigned char value;
7375 /* There are always 32 bits in each long, no matter the size of
7376 the hosts long. We handle floating point representations with
7377 up to 192 bits. */
7378 REAL_VALUE_TYPE r;
7379 long tmp[6];
7381 total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7382 if (total_bytes > len || total_bytes > 24)
7383 return NULL_TREE;
7384 words = 32 / UNITS_PER_WORD;
7386 memset (tmp, 0, sizeof (tmp));
7387 for (bitpos = 0; bitpos < total_bytes * BITS_PER_UNIT;
7388 bitpos += BITS_PER_UNIT)
7390 byte = (bitpos / BITS_PER_UNIT) & 3;
7391 if (UNITS_PER_WORD < 4)
7393 word = byte / UNITS_PER_WORD;
7394 if (WORDS_BIG_ENDIAN)
7395 word = (words - 1) - word;
7396 offset = word * UNITS_PER_WORD;
7397 if (BYTES_BIG_ENDIAN)
7398 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7399 else
7400 offset += byte % UNITS_PER_WORD;
7402 else
7403 offset = BYTES_BIG_ENDIAN ? 3 - byte : byte;
7404 value = ptr[offset + ((bitpos / BITS_PER_UNIT) & ~3)];
7406 tmp[bitpos / 32] |= (unsigned long)value << (bitpos & 31);
7409 real_from_target (&r, tmp, mode);
7410 return build_real (type, r);
7414 /* Subroutine of native_interpret_expr. Interpret the contents of
7415 the buffer PTR of length LEN as a COMPLEX_CST of type TYPE.
7416 If the buffer cannot be interpreted, return NULL_TREE. */
7418 static tree
7419 native_interpret_complex (tree type, const unsigned char *ptr, int len)
7421 tree etype, rpart, ipart;
7422 int size;
7424 etype = TREE_TYPE (type);
7425 size = GET_MODE_SIZE (TYPE_MODE (etype));
7426 if (size * 2 > len)
7427 return NULL_TREE;
7428 rpart = native_interpret_expr (etype, ptr, size);
7429 if (!rpart)
7430 return NULL_TREE;
7431 ipart = native_interpret_expr (etype, ptr+size, size);
7432 if (!ipart)
7433 return NULL_TREE;
7434 return build_complex (type, rpart, ipart);
7438 /* Subroutine of native_interpret_expr. Interpret the contents of
7439 the buffer PTR of length LEN as a VECTOR_CST of type TYPE.
7440 If the buffer cannot be interpreted, return NULL_TREE. */
7442 static tree
7443 native_interpret_vector (tree type, const unsigned char *ptr, int len)
7445 tree etype, elem, elements;
7446 int i, size, count;
7448 etype = TREE_TYPE (type);
7449 size = GET_MODE_SIZE (TYPE_MODE (etype));
7450 count = TYPE_VECTOR_SUBPARTS (type);
7451 if (size * count > len)
7452 return NULL_TREE;
7454 elements = NULL_TREE;
7455 for (i = count - 1; i >= 0; i--)
7457 elem = native_interpret_expr (etype, ptr+(i*size), size);
7458 if (!elem)
7459 return NULL_TREE;
7460 elements = tree_cons (NULL_TREE, elem, elements);
7462 return build_vector (type, elements);
7466 /* Subroutine of fold_view_convert_expr. Interpret the contents of
7467 the buffer PTR of length LEN as a constant of type TYPE. For
7468 INTEGRAL_TYPE_P we return an INTEGER_CST, for SCALAR_FLOAT_TYPE_P
7469 we return a REAL_CST, etc... If the buffer cannot be interpreted,
7470 return NULL_TREE. */
7472 tree
7473 native_interpret_expr (tree type, const unsigned char *ptr, int len)
7475 switch (TREE_CODE (type))
7477 case INTEGER_TYPE:
7478 case ENUMERAL_TYPE:
7479 case BOOLEAN_TYPE:
7480 return native_interpret_int (type, ptr, len);
7482 case REAL_TYPE:
7483 return native_interpret_real (type, ptr, len);
7485 case COMPLEX_TYPE:
7486 return native_interpret_complex (type, ptr, len);
7488 case VECTOR_TYPE:
7489 return native_interpret_vector (type, ptr, len);
7491 default:
7492 return NULL_TREE;
7497 /* Fold a VIEW_CONVERT_EXPR of a constant expression EXPR to type
7498 TYPE at compile-time. If we're unable to perform the conversion
7499 return NULL_TREE. */
7501 static tree
7502 fold_view_convert_expr (tree type, tree expr)
7504 /* We support up to 512-bit values (for V8DFmode). */
7505 unsigned char buffer[64];
7506 int len;
7508 /* Check that the host and target are sane. */
7509 if (CHAR_BIT != 8 || BITS_PER_UNIT != 8)
7510 return NULL_TREE;
7512 len = native_encode_expr (expr, buffer, sizeof (buffer));
7513 if (len == 0)
7514 return NULL_TREE;
7516 return native_interpret_expr (type, buffer, len);
7519 /* Build an expression for the address of T. Folds away INDIRECT_REF
7520 to avoid confusing the gimplify process. When IN_FOLD is true
7521 avoid modifications of T. */
7523 static tree
7524 build_fold_addr_expr_with_type_1 (tree t, tree ptrtype, bool in_fold)
7526 /* The size of the object is not relevant when talking about its address. */
7527 if (TREE_CODE (t) == WITH_SIZE_EXPR)
7528 t = TREE_OPERAND (t, 0);
7530 /* Note: doesn't apply to ALIGN_INDIRECT_REF */
7531 if (TREE_CODE (t) == INDIRECT_REF
7532 || TREE_CODE (t) == MISALIGNED_INDIRECT_REF)
7534 t = TREE_OPERAND (t, 0);
7536 if (TREE_TYPE (t) != ptrtype)
7537 t = build1 (NOP_EXPR, ptrtype, t);
7539 else if (!in_fold)
7541 tree base = t;
7543 while (handled_component_p (base))
7544 base = TREE_OPERAND (base, 0);
7546 if (DECL_P (base))
7547 TREE_ADDRESSABLE (base) = 1;
7549 t = build1 (ADDR_EXPR, ptrtype, t);
7551 else
7552 t = build1 (ADDR_EXPR, ptrtype, t);
7554 return t;
7557 /* Build an expression for the address of T with type PTRTYPE. This
7558 function modifies the input parameter 'T' by sometimes setting the
7559 TREE_ADDRESSABLE flag. */
7561 tree
7562 build_fold_addr_expr_with_type (tree t, tree ptrtype)
7564 return build_fold_addr_expr_with_type_1 (t, ptrtype, false);
7567 /* Build an expression for the address of T. This function modifies
7568 the input parameter 'T' by sometimes setting the TREE_ADDRESSABLE
7569 flag. When called from fold functions, use fold_addr_expr instead. */
7571 tree
7572 build_fold_addr_expr (tree t)
7574 return build_fold_addr_expr_with_type_1 (t,
7575 build_pointer_type (TREE_TYPE (t)),
7576 false);
7579 /* Same as build_fold_addr_expr, builds an expression for the address
7580 of T, but avoids touching the input node 't'. Fold functions
7581 should use this version. */
7583 static tree
7584 fold_addr_expr (tree t)
7586 tree ptrtype = build_pointer_type (TREE_TYPE (t));
7588 return build_fold_addr_expr_with_type_1 (t, ptrtype, true);
7591 /* Fold a unary expression of code CODE and type TYPE with operand
7592 OP0. Return the folded expression if folding is successful.
7593 Otherwise, return NULL_TREE. */
7595 tree
7596 fold_unary (enum tree_code code, tree type, tree op0)
7598 tree tem;
7599 tree arg0;
7600 enum tree_code_class kind = TREE_CODE_CLASS (code);
7602 gcc_assert (IS_EXPR_CODE_CLASS (kind)
7603 && TREE_CODE_LENGTH (code) == 1);
7605 arg0 = op0;
7606 if (arg0)
7608 if (code == NOP_EXPR || code == CONVERT_EXPR
7609 || code == FLOAT_EXPR || code == ABS_EXPR)
7611 /* Don't use STRIP_NOPS, because signedness of argument type
7612 matters. */
7613 STRIP_SIGN_NOPS (arg0);
7615 else
7617 /* Strip any conversions that don't change the mode. This
7618 is safe for every expression, except for a comparison
7619 expression because its signedness is derived from its
7620 operands.
7622 Note that this is done as an internal manipulation within
7623 the constant folder, in order to find the simplest
7624 representation of the arguments so that their form can be
7625 studied. In any cases, the appropriate type conversions
7626 should be put back in the tree that will get out of the
7627 constant folder. */
7628 STRIP_NOPS (arg0);
7632 if (TREE_CODE_CLASS (code) == tcc_unary)
7634 if (TREE_CODE (arg0) == COMPOUND_EXPR)
7635 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
7636 fold_build1 (code, type, TREE_OPERAND (arg0, 1)));
7637 else if (TREE_CODE (arg0) == COND_EXPR)
7639 tree arg01 = TREE_OPERAND (arg0, 1);
7640 tree arg02 = TREE_OPERAND (arg0, 2);
7641 if (! VOID_TYPE_P (TREE_TYPE (arg01)))
7642 arg01 = fold_build1 (code, type, arg01);
7643 if (! VOID_TYPE_P (TREE_TYPE (arg02)))
7644 arg02 = fold_build1 (code, type, arg02);
7645 tem = fold_build3 (COND_EXPR, type, TREE_OPERAND (arg0, 0),
7646 arg01, arg02);
7648 /* If this was a conversion, and all we did was to move into
7649 inside the COND_EXPR, bring it back out. But leave it if
7650 it is a conversion from integer to integer and the
7651 result precision is no wider than a word since such a
7652 conversion is cheap and may be optimized away by combine,
7653 while it couldn't if it were outside the COND_EXPR. Then return
7654 so we don't get into an infinite recursion loop taking the
7655 conversion out and then back in. */
7657 if ((code == NOP_EXPR || code == CONVERT_EXPR
7658 || code == NON_LVALUE_EXPR)
7659 && TREE_CODE (tem) == COND_EXPR
7660 && TREE_CODE (TREE_OPERAND (tem, 1)) == code
7661 && TREE_CODE (TREE_OPERAND (tem, 2)) == code
7662 && ! VOID_TYPE_P (TREE_OPERAND (tem, 1))
7663 && ! VOID_TYPE_P (TREE_OPERAND (tem, 2))
7664 && (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 1), 0))
7665 == TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 2), 0)))
7666 && (! (INTEGRAL_TYPE_P (TREE_TYPE (tem))
7667 && (INTEGRAL_TYPE_P
7668 (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 1), 0))))
7669 && TYPE_PRECISION (TREE_TYPE (tem)) <= BITS_PER_WORD)
7670 || flag_syntax_only))
7671 tem = build1 (code, type,
7672 build3 (COND_EXPR,
7673 TREE_TYPE (TREE_OPERAND
7674 (TREE_OPERAND (tem, 1), 0)),
7675 TREE_OPERAND (tem, 0),
7676 TREE_OPERAND (TREE_OPERAND (tem, 1), 0),
7677 TREE_OPERAND (TREE_OPERAND (tem, 2), 0)));
7678 return tem;
7680 else if (COMPARISON_CLASS_P (arg0))
7682 if (TREE_CODE (type) == BOOLEAN_TYPE)
7684 arg0 = copy_node (arg0);
7685 TREE_TYPE (arg0) = type;
7686 return arg0;
7688 else if (TREE_CODE (type) != INTEGER_TYPE)
7689 return fold_build3 (COND_EXPR, type, arg0,
7690 fold_build1 (code, type,
7691 integer_one_node),
7692 fold_build1 (code, type,
7693 integer_zero_node));
7697 switch (code)
7699 case PAREN_EXPR:
7700 /* Re-association barriers around constants and other re-association
7701 barriers can be removed. */
7702 if (CONSTANT_CLASS_P (op0)
7703 || TREE_CODE (op0) == PAREN_EXPR)
7704 return fold_convert (type, op0);
7705 return NULL_TREE;
7707 case NOP_EXPR:
7708 case FLOAT_EXPR:
7709 case CONVERT_EXPR:
7710 case FIX_TRUNC_EXPR:
7711 if (TREE_TYPE (op0) == type)
7712 return op0;
7714 /* If we have (type) (a CMP b) and type is an integral type, return
7715 new expression involving the new type. */
7716 if (COMPARISON_CLASS_P (op0) && INTEGRAL_TYPE_P (type))
7717 return fold_build2 (TREE_CODE (op0), type, TREE_OPERAND (op0, 0),
7718 TREE_OPERAND (op0, 1));
7720 /* Handle cases of two conversions in a row. */
7721 if (TREE_CODE (op0) == NOP_EXPR
7722 || TREE_CODE (op0) == CONVERT_EXPR)
7724 tree inside_type = TREE_TYPE (TREE_OPERAND (op0, 0));
7725 tree inter_type = TREE_TYPE (op0);
7726 int inside_int = INTEGRAL_TYPE_P (inside_type);
7727 int inside_ptr = POINTER_TYPE_P (inside_type);
7728 int inside_float = FLOAT_TYPE_P (inside_type);
7729 int inside_vec = TREE_CODE (inside_type) == VECTOR_TYPE;
7730 unsigned int inside_prec = TYPE_PRECISION (inside_type);
7731 int inside_unsignedp = TYPE_UNSIGNED (inside_type);
7732 int inter_int = INTEGRAL_TYPE_P (inter_type);
7733 int inter_ptr = POINTER_TYPE_P (inter_type);
7734 int inter_float = FLOAT_TYPE_P (inter_type);
7735 int inter_vec = TREE_CODE (inter_type) == VECTOR_TYPE;
7736 unsigned int inter_prec = TYPE_PRECISION (inter_type);
7737 int inter_unsignedp = TYPE_UNSIGNED (inter_type);
7738 int final_int = INTEGRAL_TYPE_P (type);
7739 int final_ptr = POINTER_TYPE_P (type);
7740 int final_float = FLOAT_TYPE_P (type);
7741 int final_vec = TREE_CODE (type) == VECTOR_TYPE;
7742 unsigned int final_prec = TYPE_PRECISION (type);
7743 int final_unsignedp = TYPE_UNSIGNED (type);
7745 /* In addition to the cases of two conversions in a row
7746 handled below, if we are converting something to its own
7747 type via an object of identical or wider precision, neither
7748 conversion is needed. */
7749 if (TYPE_MAIN_VARIANT (inside_type) == TYPE_MAIN_VARIANT (type)
7750 && (((inter_int || inter_ptr) && final_int)
7751 || (inter_float && final_float))
7752 && inter_prec >= final_prec)
7753 return fold_build1 (code, type, TREE_OPERAND (op0, 0));
7755 /* Likewise, if the intermediate and final types are either both
7756 float or both integer, we don't need the middle conversion if
7757 it is wider than the final type and doesn't change the signedness
7758 (for integers). Avoid this if the final type is a pointer
7759 since then we sometimes need the inner conversion. Likewise if
7760 the outer has a precision not equal to the size of its mode. */
7761 if (((inter_int && inside_int)
7762 || (inter_float && inside_float)
7763 || (inter_vec && inside_vec))
7764 && inter_prec >= inside_prec
7765 && (inter_float || inter_vec
7766 || inter_unsignedp == inside_unsignedp)
7767 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (type))
7768 && TYPE_MODE (type) == TYPE_MODE (inter_type))
7769 && ! final_ptr
7770 && (! final_vec || inter_prec == inside_prec))
7771 return fold_build1 (code, type, TREE_OPERAND (op0, 0));
7773 /* If we have a sign-extension of a zero-extended value, we can
7774 replace that by a single zero-extension. */
7775 if (inside_int && inter_int && final_int
7776 && inside_prec < inter_prec && inter_prec < final_prec
7777 && inside_unsignedp && !inter_unsignedp)
7778 return fold_build1 (code, type, TREE_OPERAND (op0, 0));
7780 /* Two conversions in a row are not needed unless:
7781 - some conversion is floating-point (overstrict for now), or
7782 - some conversion is a vector (overstrict for now), or
7783 - the intermediate type is narrower than both initial and
7784 final, or
7785 - the intermediate type and innermost type differ in signedness,
7786 and the outermost type is wider than the intermediate, or
7787 - the initial type is a pointer type and the precisions of the
7788 intermediate and final types differ, or
7789 - the final type is a pointer type and the precisions of the
7790 initial and intermediate types differ. */
7791 if (! inside_float && ! inter_float && ! final_float
7792 && ! inside_vec && ! inter_vec && ! final_vec
7793 && (inter_prec >= inside_prec || inter_prec >= final_prec)
7794 && ! (inside_int && inter_int
7795 && inter_unsignedp != inside_unsignedp
7796 && inter_prec < final_prec)
7797 && ((inter_unsignedp && inter_prec > inside_prec)
7798 == (final_unsignedp && final_prec > inter_prec))
7799 && ! (inside_ptr && inter_prec != final_prec)
7800 && ! (final_ptr && inside_prec != inter_prec)
7801 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (type))
7802 && TYPE_MODE (type) == TYPE_MODE (inter_type)))
7803 return fold_build1 (code, type, TREE_OPERAND (op0, 0));
7806 /* Handle (T *)&A.B.C for A being of type T and B and C
7807 living at offset zero. This occurs frequently in
7808 C++ upcasting and then accessing the base. */
7809 if (TREE_CODE (op0) == ADDR_EXPR
7810 && POINTER_TYPE_P (type)
7811 && handled_component_p (TREE_OPERAND (op0, 0)))
7813 HOST_WIDE_INT bitsize, bitpos;
7814 tree offset;
7815 enum machine_mode mode;
7816 int unsignedp, volatilep;
7817 tree base = TREE_OPERAND (op0, 0);
7818 base = get_inner_reference (base, &bitsize, &bitpos, &offset,
7819 &mode, &unsignedp, &volatilep, false);
7820 /* If the reference was to a (constant) zero offset, we can use
7821 the address of the base if it has the same base type
7822 as the result type. */
7823 if (! offset && bitpos == 0
7824 && TYPE_MAIN_VARIANT (TREE_TYPE (type))
7825 == TYPE_MAIN_VARIANT (TREE_TYPE (base)))
7826 return fold_convert (type, fold_addr_expr (base));
7829 if ((TREE_CODE (op0) == MODIFY_EXPR
7830 || TREE_CODE (op0) == GIMPLE_MODIFY_STMT)
7831 && TREE_CONSTANT (GENERIC_TREE_OPERAND (op0, 1))
7832 /* Detect assigning a bitfield. */
7833 && !(TREE_CODE (GENERIC_TREE_OPERAND (op0, 0)) == COMPONENT_REF
7834 && DECL_BIT_FIELD
7835 (TREE_OPERAND (GENERIC_TREE_OPERAND (op0, 0), 1))))
7837 /* Don't leave an assignment inside a conversion
7838 unless assigning a bitfield. */
7839 tem = fold_build1 (code, type, GENERIC_TREE_OPERAND (op0, 1));
7840 /* First do the assignment, then return converted constant. */
7841 tem = build2 (COMPOUND_EXPR, TREE_TYPE (tem), op0, tem);
7842 TREE_NO_WARNING (tem) = 1;
7843 TREE_USED (tem) = 1;
7844 return tem;
7847 /* Convert (T)(x & c) into (T)x & (T)c, if c is an integer
7848 constants (if x has signed type, the sign bit cannot be set
7849 in c). This folds extension into the BIT_AND_EXPR. */
7850 if (INTEGRAL_TYPE_P (type)
7851 && TREE_CODE (type) != BOOLEAN_TYPE
7852 && TREE_CODE (op0) == BIT_AND_EXPR
7853 && TREE_CODE (TREE_OPERAND (op0, 1)) == INTEGER_CST)
7855 tree and = op0;
7856 tree and0 = TREE_OPERAND (and, 0), and1 = TREE_OPERAND (and, 1);
7857 int change = 0;
7859 if (TYPE_UNSIGNED (TREE_TYPE (and))
7860 || (TYPE_PRECISION (type)
7861 <= TYPE_PRECISION (TREE_TYPE (and))))
7862 change = 1;
7863 else if (TYPE_PRECISION (TREE_TYPE (and1))
7864 <= HOST_BITS_PER_WIDE_INT
7865 && host_integerp (and1, 1))
7867 unsigned HOST_WIDE_INT cst;
7869 cst = tree_low_cst (and1, 1);
7870 cst &= (HOST_WIDE_INT) -1
7871 << (TYPE_PRECISION (TREE_TYPE (and1)) - 1);
7872 change = (cst == 0);
7873 #ifdef LOAD_EXTEND_OP
7874 if (change
7875 && !flag_syntax_only
7876 && (LOAD_EXTEND_OP (TYPE_MODE (TREE_TYPE (and0)))
7877 == ZERO_EXTEND))
7879 tree uns = unsigned_type_for (TREE_TYPE (and0));
7880 and0 = fold_convert (uns, and0);
7881 and1 = fold_convert (uns, and1);
7883 #endif
7885 if (change)
7887 tem = force_fit_type_double (type, TREE_INT_CST_LOW (and1),
7888 TREE_INT_CST_HIGH (and1), 0,
7889 TREE_OVERFLOW (and1));
7890 return fold_build2 (BIT_AND_EXPR, type,
7891 fold_convert (type, and0), tem);
7895 /* Convert (T1)(X p+ Y) into ((T1)X p+ Y), for pointer type,
7896 when one of the new casts will fold away. Conservatively we assume
7897 that this happens when X or Y is NOP_EXPR or Y is INTEGER_CST. */
7898 if (POINTER_TYPE_P (type)
7899 && TREE_CODE (arg0) == POINTER_PLUS_EXPR
7900 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
7901 || TREE_CODE (TREE_OPERAND (arg0, 0)) == NOP_EXPR
7902 || TREE_CODE (TREE_OPERAND (arg0, 1)) == NOP_EXPR))
7904 tree arg00 = TREE_OPERAND (arg0, 0);
7905 tree arg01 = TREE_OPERAND (arg0, 1);
7907 return fold_build2 (TREE_CODE (arg0), type, fold_convert (type, arg00),
7908 fold_convert (sizetype, arg01));
7911 /* Convert (T1)(~(T2)X) into ~(T1)X if T1 and T2 are integral types
7912 of the same precision, and X is an integer type not narrower than
7913 types T1 or T2, i.e. the cast (T2)X isn't an extension. */
7914 if (INTEGRAL_TYPE_P (type)
7915 && TREE_CODE (op0) == BIT_NOT_EXPR
7916 && INTEGRAL_TYPE_P (TREE_TYPE (op0))
7917 && (TREE_CODE (TREE_OPERAND (op0, 0)) == NOP_EXPR
7918 || TREE_CODE (TREE_OPERAND (op0, 0)) == CONVERT_EXPR)
7919 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (op0)))
7921 tem = TREE_OPERAND (TREE_OPERAND (op0, 0), 0);
7922 if (INTEGRAL_TYPE_P (TREE_TYPE (tem))
7923 && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (tem)))
7924 return fold_build1 (BIT_NOT_EXPR, type, fold_convert (type, tem));
7927 /* Convert (T1)(X * Y) into (T1)X * (T1)Y if T1 is narrower than the
7928 type of X and Y (integer types only). */
7929 if (INTEGRAL_TYPE_P (type)
7930 && TREE_CODE (op0) == MULT_EXPR
7931 && INTEGRAL_TYPE_P (TREE_TYPE (op0))
7932 && TYPE_PRECISION (type) < TYPE_PRECISION (TREE_TYPE (op0)))
7934 /* Be careful not to introduce new overflows. */
7935 tree mult_type;
7936 if (TYPE_OVERFLOW_WRAPS (type))
7937 mult_type = type;
7938 else
7939 mult_type = unsigned_type_for (type);
7941 tem = fold_build2 (MULT_EXPR, mult_type,
7942 fold_convert (mult_type, TREE_OPERAND (op0, 0)),
7943 fold_convert (mult_type, TREE_OPERAND (op0, 1)));
7944 return fold_convert (type, tem);
7947 tem = fold_convert_const (code, type, op0);
7948 return tem ? tem : NULL_TREE;
7950 case FIXED_CONVERT_EXPR:
7951 tem = fold_convert_const (code, type, arg0);
7952 return tem ? tem : NULL_TREE;
7954 case VIEW_CONVERT_EXPR:
7955 if (TREE_TYPE (op0) == type)
7956 return op0;
7957 if (TREE_CODE (op0) == VIEW_CONVERT_EXPR)
7958 return fold_build1 (VIEW_CONVERT_EXPR, type, TREE_OPERAND (op0, 0));
7960 /* For integral conversions with the same precision or pointer
7961 conversions use a NOP_EXPR instead. */
7962 if ((INTEGRAL_TYPE_P (type)
7963 || POINTER_TYPE_P (type))
7964 && (INTEGRAL_TYPE_P (TREE_TYPE (op0))
7965 || POINTER_TYPE_P (TREE_TYPE (op0)))
7966 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (op0))
7967 /* Do not muck with VIEW_CONVERT_EXPRs that convert from
7968 a sub-type to its base type as generated by the Ada FE. */
7969 && !(INTEGRAL_TYPE_P (TREE_TYPE (op0))
7970 && TREE_TYPE (TREE_TYPE (op0))))
7971 return fold_convert (type, op0);
7973 /* Strip inner integral conversions that do not change the precision. */
7974 if ((TREE_CODE (op0) == NOP_EXPR
7975 || TREE_CODE (op0) == CONVERT_EXPR)
7976 && (INTEGRAL_TYPE_P (TREE_TYPE (op0))
7977 || POINTER_TYPE_P (TREE_TYPE (op0)))
7978 && (INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (op0, 0)))
7979 || POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (op0, 0))))
7980 && (TYPE_PRECISION (TREE_TYPE (op0))
7981 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op0, 0)))))
7982 return fold_build1 (VIEW_CONVERT_EXPR, type, TREE_OPERAND (op0, 0));
7984 return fold_view_convert_expr (type, op0);
7986 case NEGATE_EXPR:
7987 tem = fold_negate_expr (arg0);
7988 if (tem)
7989 return fold_convert (type, tem);
7990 return NULL_TREE;
7992 case ABS_EXPR:
7993 if (TREE_CODE (arg0) == INTEGER_CST || TREE_CODE (arg0) == REAL_CST)
7994 return fold_abs_const (arg0, type);
7995 else if (TREE_CODE (arg0) == NEGATE_EXPR)
7996 return fold_build1 (ABS_EXPR, type, TREE_OPERAND (arg0, 0));
7997 /* Convert fabs((double)float) into (double)fabsf(float). */
7998 else if (TREE_CODE (arg0) == NOP_EXPR
7999 && TREE_CODE (type) == REAL_TYPE)
8001 tree targ0 = strip_float_extensions (arg0);
8002 if (targ0 != arg0)
8003 return fold_convert (type, fold_build1 (ABS_EXPR,
8004 TREE_TYPE (targ0),
8005 targ0));
8007 /* ABS_EXPR<ABS_EXPR<x>> = ABS_EXPR<x> even if flag_wrapv is on. */
8008 else if (TREE_CODE (arg0) == ABS_EXPR)
8009 return arg0;
8010 else if (tree_expr_nonnegative_p (arg0))
8011 return arg0;
8013 /* Strip sign ops from argument. */
8014 if (TREE_CODE (type) == REAL_TYPE)
8016 tem = fold_strip_sign_ops (arg0);
8017 if (tem)
8018 return fold_build1 (ABS_EXPR, type, fold_convert (type, tem));
8020 return NULL_TREE;
8022 case CONJ_EXPR:
8023 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
8024 return fold_convert (type, arg0);
8025 if (TREE_CODE (arg0) == COMPLEX_EXPR)
8027 tree itype = TREE_TYPE (type);
8028 tree rpart = fold_convert (itype, TREE_OPERAND (arg0, 0));
8029 tree ipart = fold_convert (itype, TREE_OPERAND (arg0, 1));
8030 return fold_build2 (COMPLEX_EXPR, type, rpart, negate_expr (ipart));
8032 if (TREE_CODE (arg0) == COMPLEX_CST)
8034 tree itype = TREE_TYPE (type);
8035 tree rpart = fold_convert (itype, TREE_REALPART (arg0));
8036 tree ipart = fold_convert (itype, TREE_IMAGPART (arg0));
8037 return build_complex (type, rpart, negate_expr (ipart));
8039 if (TREE_CODE (arg0) == CONJ_EXPR)
8040 return fold_convert (type, TREE_OPERAND (arg0, 0));
8041 return NULL_TREE;
8043 case BIT_NOT_EXPR:
8044 if (TREE_CODE (arg0) == INTEGER_CST)
8045 return fold_not_const (arg0, type);
8046 else if (TREE_CODE (arg0) == BIT_NOT_EXPR)
8047 return fold_convert (type, TREE_OPERAND (arg0, 0));
8048 /* Convert ~ (-A) to A - 1. */
8049 else if (INTEGRAL_TYPE_P (type) && TREE_CODE (arg0) == NEGATE_EXPR)
8050 return fold_build2 (MINUS_EXPR, type,
8051 fold_convert (type, TREE_OPERAND (arg0, 0)),
8052 build_int_cst (type, 1));
8053 /* Convert ~ (A - 1) or ~ (A + -1) to -A. */
8054 else if (INTEGRAL_TYPE_P (type)
8055 && ((TREE_CODE (arg0) == MINUS_EXPR
8056 && integer_onep (TREE_OPERAND (arg0, 1)))
8057 || (TREE_CODE (arg0) == PLUS_EXPR
8058 && integer_all_onesp (TREE_OPERAND (arg0, 1)))))
8059 return fold_build1 (NEGATE_EXPR, type,
8060 fold_convert (type, TREE_OPERAND (arg0, 0)));
8061 /* Convert ~(X ^ Y) to ~X ^ Y or X ^ ~Y if ~X or ~Y simplify. */
8062 else if (TREE_CODE (arg0) == BIT_XOR_EXPR
8063 && (tem = fold_unary (BIT_NOT_EXPR, type,
8064 fold_convert (type,
8065 TREE_OPERAND (arg0, 0)))))
8066 return fold_build2 (BIT_XOR_EXPR, type, tem,
8067 fold_convert (type, TREE_OPERAND (arg0, 1)));
8068 else if (TREE_CODE (arg0) == BIT_XOR_EXPR
8069 && (tem = fold_unary (BIT_NOT_EXPR, type,
8070 fold_convert (type,
8071 TREE_OPERAND (arg0, 1)))))
8072 return fold_build2 (BIT_XOR_EXPR, type,
8073 fold_convert (type, TREE_OPERAND (arg0, 0)), tem);
8074 /* Perform BIT_NOT_EXPR on each element individually. */
8075 else if (TREE_CODE (arg0) == VECTOR_CST)
8077 tree elements = TREE_VECTOR_CST_ELTS (arg0), elem, list = NULL_TREE;
8078 int count = TYPE_VECTOR_SUBPARTS (type), i;
8080 for (i = 0; i < count; i++)
8082 if (elements)
8084 elem = TREE_VALUE (elements);
8085 elem = fold_unary (BIT_NOT_EXPR, TREE_TYPE (type), elem);
8086 if (elem == NULL_TREE)
8087 break;
8088 elements = TREE_CHAIN (elements);
8090 else
8091 elem = build_int_cst (TREE_TYPE (type), -1);
8092 list = tree_cons (NULL_TREE, elem, list);
8094 if (i == count)
8095 return build_vector (type, nreverse (list));
8098 return NULL_TREE;
8100 case TRUTH_NOT_EXPR:
8101 /* The argument to invert_truthvalue must have Boolean type. */
8102 if (TREE_CODE (TREE_TYPE (arg0)) != BOOLEAN_TYPE)
8103 arg0 = fold_convert (boolean_type_node, arg0);
8105 /* Note that the operand of this must be an int
8106 and its values must be 0 or 1.
8107 ("true" is a fixed value perhaps depending on the language,
8108 but we don't handle values other than 1 correctly yet.) */
8109 tem = fold_truth_not_expr (arg0);
8110 if (!tem)
8111 return NULL_TREE;
8112 return fold_convert (type, tem);
8114 case REALPART_EXPR:
8115 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
8116 return fold_convert (type, arg0);
8117 if (TREE_CODE (arg0) == COMPLEX_EXPR)
8118 return omit_one_operand (type, TREE_OPERAND (arg0, 0),
8119 TREE_OPERAND (arg0, 1));
8120 if (TREE_CODE (arg0) == COMPLEX_CST)
8121 return fold_convert (type, TREE_REALPART (arg0));
8122 if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8124 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8125 tem = fold_build2 (TREE_CODE (arg0), itype,
8126 fold_build1 (REALPART_EXPR, itype,
8127 TREE_OPERAND (arg0, 0)),
8128 fold_build1 (REALPART_EXPR, itype,
8129 TREE_OPERAND (arg0, 1)));
8130 return fold_convert (type, tem);
8132 if (TREE_CODE (arg0) == CONJ_EXPR)
8134 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8135 tem = fold_build1 (REALPART_EXPR, itype, TREE_OPERAND (arg0, 0));
8136 return fold_convert (type, tem);
8138 if (TREE_CODE (arg0) == CALL_EXPR)
8140 tree fn = get_callee_fndecl (arg0);
8141 if (fn && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
8142 switch (DECL_FUNCTION_CODE (fn))
8144 CASE_FLT_FN (BUILT_IN_CEXPI):
8145 fn = mathfn_built_in (type, BUILT_IN_COS);
8146 if (fn)
8147 return build_call_expr (fn, 1, CALL_EXPR_ARG (arg0, 0));
8148 break;
8150 default:
8151 break;
8154 return NULL_TREE;
8156 case IMAGPART_EXPR:
8157 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
8158 return fold_convert (type, integer_zero_node);
8159 if (TREE_CODE (arg0) == COMPLEX_EXPR)
8160 return omit_one_operand (type, TREE_OPERAND (arg0, 1),
8161 TREE_OPERAND (arg0, 0));
8162 if (TREE_CODE (arg0) == COMPLEX_CST)
8163 return fold_convert (type, TREE_IMAGPART (arg0));
8164 if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8166 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8167 tem = fold_build2 (TREE_CODE (arg0), itype,
8168 fold_build1 (IMAGPART_EXPR, itype,
8169 TREE_OPERAND (arg0, 0)),
8170 fold_build1 (IMAGPART_EXPR, itype,
8171 TREE_OPERAND (arg0, 1)));
8172 return fold_convert (type, tem);
8174 if (TREE_CODE (arg0) == CONJ_EXPR)
8176 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8177 tem = fold_build1 (IMAGPART_EXPR, itype, TREE_OPERAND (arg0, 0));
8178 return fold_convert (type, negate_expr (tem));
8180 if (TREE_CODE (arg0) == CALL_EXPR)
8182 tree fn = get_callee_fndecl (arg0);
8183 if (fn && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
8184 switch (DECL_FUNCTION_CODE (fn))
8186 CASE_FLT_FN (BUILT_IN_CEXPI):
8187 fn = mathfn_built_in (type, BUILT_IN_SIN);
8188 if (fn)
8189 return build_call_expr (fn, 1, CALL_EXPR_ARG (arg0, 0));
8190 break;
8192 default:
8193 break;
8196 return NULL_TREE;
8198 default:
8199 return NULL_TREE;
8200 } /* switch (code) */
8203 /* Fold a binary expression of code CODE and type TYPE with operands
8204 OP0 and OP1, containing either a MIN-MAX or a MAX-MIN combination.
8205 Return the folded expression if folding is successful. Otherwise,
8206 return NULL_TREE. */
8208 static tree
8209 fold_minmax (enum tree_code code, tree type, tree op0, tree op1)
8211 enum tree_code compl_code;
8213 if (code == MIN_EXPR)
8214 compl_code = MAX_EXPR;
8215 else if (code == MAX_EXPR)
8216 compl_code = MIN_EXPR;
8217 else
8218 gcc_unreachable ();
8220 /* MIN (MAX (a, b), b) == b. */
8221 if (TREE_CODE (op0) == compl_code
8222 && operand_equal_p (TREE_OPERAND (op0, 1), op1, 0))
8223 return omit_one_operand (type, op1, TREE_OPERAND (op0, 0));
8225 /* MIN (MAX (b, a), b) == b. */
8226 if (TREE_CODE (op0) == compl_code
8227 && operand_equal_p (TREE_OPERAND (op0, 0), op1, 0)
8228 && reorder_operands_p (TREE_OPERAND (op0, 1), op1))
8229 return omit_one_operand (type, op1, TREE_OPERAND (op0, 1));
8231 /* MIN (a, MAX (a, b)) == a. */
8232 if (TREE_CODE (op1) == compl_code
8233 && operand_equal_p (op0, TREE_OPERAND (op1, 0), 0)
8234 && reorder_operands_p (op0, TREE_OPERAND (op1, 1)))
8235 return omit_one_operand (type, op0, TREE_OPERAND (op1, 1));
8237 /* MIN (a, MAX (b, a)) == a. */
8238 if (TREE_CODE (op1) == compl_code
8239 && operand_equal_p (op0, TREE_OPERAND (op1, 1), 0)
8240 && reorder_operands_p (op0, TREE_OPERAND (op1, 0)))
8241 return omit_one_operand (type, op0, TREE_OPERAND (op1, 0));
8243 return NULL_TREE;
8246 /* Helper that tries to canonicalize the comparison ARG0 CODE ARG1
8247 by changing CODE to reduce the magnitude of constants involved in
8248 ARG0 of the comparison.
8249 Returns a canonicalized comparison tree if a simplification was
8250 possible, otherwise returns NULL_TREE.
8251 Set *STRICT_OVERFLOW_P to true if the canonicalization is only
8252 valid if signed overflow is undefined. */
8254 static tree
8255 maybe_canonicalize_comparison_1 (enum tree_code code, tree type,
8256 tree arg0, tree arg1,
8257 bool *strict_overflow_p)
8259 enum tree_code code0 = TREE_CODE (arg0);
8260 tree t, cst0 = NULL_TREE;
8261 int sgn0;
8262 bool swap = false;
8264 /* Match A +- CST code arg1 and CST code arg1. */
8265 if (!(((code0 == MINUS_EXPR
8266 || code0 == PLUS_EXPR)
8267 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
8268 || code0 == INTEGER_CST))
8269 return NULL_TREE;
8271 /* Identify the constant in arg0 and its sign. */
8272 if (code0 == INTEGER_CST)
8273 cst0 = arg0;
8274 else
8275 cst0 = TREE_OPERAND (arg0, 1);
8276 sgn0 = tree_int_cst_sgn (cst0);
8278 /* Overflowed constants and zero will cause problems. */
8279 if (integer_zerop (cst0)
8280 || TREE_OVERFLOW (cst0))
8281 return NULL_TREE;
8283 /* See if we can reduce the magnitude of the constant in
8284 arg0 by changing the comparison code. */
8285 if (code0 == INTEGER_CST)
8287 /* CST <= arg1 -> CST-1 < arg1. */
8288 if (code == LE_EXPR && sgn0 == 1)
8289 code = LT_EXPR;
8290 /* -CST < arg1 -> -CST-1 <= arg1. */
8291 else if (code == LT_EXPR && sgn0 == -1)
8292 code = LE_EXPR;
8293 /* CST > arg1 -> CST-1 >= arg1. */
8294 else if (code == GT_EXPR && sgn0 == 1)
8295 code = GE_EXPR;
8296 /* -CST >= arg1 -> -CST-1 > arg1. */
8297 else if (code == GE_EXPR && sgn0 == -1)
8298 code = GT_EXPR;
8299 else
8300 return NULL_TREE;
8301 /* arg1 code' CST' might be more canonical. */
8302 swap = true;
8304 else
8306 /* A - CST < arg1 -> A - CST-1 <= arg1. */
8307 if (code == LT_EXPR
8308 && code0 == ((sgn0 == -1) ? PLUS_EXPR : MINUS_EXPR))
8309 code = LE_EXPR;
8310 /* A + CST > arg1 -> A + CST-1 >= arg1. */
8311 else if (code == GT_EXPR
8312 && code0 == ((sgn0 == -1) ? MINUS_EXPR : PLUS_EXPR))
8313 code = GE_EXPR;
8314 /* A + CST <= arg1 -> A + CST-1 < arg1. */
8315 else if (code == LE_EXPR
8316 && code0 == ((sgn0 == -1) ? MINUS_EXPR : PLUS_EXPR))
8317 code = LT_EXPR;
8318 /* A - CST >= arg1 -> A - CST-1 > arg1. */
8319 else if (code == GE_EXPR
8320 && code0 == ((sgn0 == -1) ? PLUS_EXPR : MINUS_EXPR))
8321 code = GT_EXPR;
8322 else
8323 return NULL_TREE;
8324 *strict_overflow_p = true;
8327 /* Now build the constant reduced in magnitude. */
8328 t = int_const_binop (sgn0 == -1 ? PLUS_EXPR : MINUS_EXPR,
8329 cst0, build_int_cst (TREE_TYPE (cst0), 1), 0);
8330 if (code0 != INTEGER_CST)
8331 t = fold_build2 (code0, TREE_TYPE (arg0), TREE_OPERAND (arg0, 0), t);
8333 /* If swapping might yield to a more canonical form, do so. */
8334 if (swap)
8335 return fold_build2 (swap_tree_comparison (code), type, arg1, t);
8336 else
8337 return fold_build2 (code, type, t, arg1);
8340 /* Canonicalize the comparison ARG0 CODE ARG1 with type TYPE with undefined
8341 overflow further. Try to decrease the magnitude of constants involved
8342 by changing LE_EXPR and GE_EXPR to LT_EXPR and GT_EXPR or vice versa
8343 and put sole constants at the second argument position.
8344 Returns the canonicalized tree if changed, otherwise NULL_TREE. */
8346 static tree
8347 maybe_canonicalize_comparison (enum tree_code code, tree type,
8348 tree arg0, tree arg1)
8350 tree t;
8351 bool strict_overflow_p;
8352 const char * const warnmsg = G_("assuming signed overflow does not occur "
8353 "when reducing constant in comparison");
8355 /* In principle pointers also have undefined overflow behavior,
8356 but that causes problems elsewhere. */
8357 if (!TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg0))
8358 || POINTER_TYPE_P (TREE_TYPE (arg0)))
8359 return NULL_TREE;
8361 /* Try canonicalization by simplifying arg0. */
8362 strict_overflow_p = false;
8363 t = maybe_canonicalize_comparison_1 (code, type, arg0, arg1,
8364 &strict_overflow_p);
8365 if (t)
8367 if (strict_overflow_p)
8368 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MAGNITUDE);
8369 return t;
8372 /* Try canonicalization by simplifying arg1 using the swapped
8373 comparison. */
8374 code = swap_tree_comparison (code);
8375 strict_overflow_p = false;
8376 t = maybe_canonicalize_comparison_1 (code, type, arg1, arg0,
8377 &strict_overflow_p);
8378 if (t && strict_overflow_p)
8379 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MAGNITUDE);
8380 return t;
8383 /* Subroutine of fold_binary. This routine performs all of the
8384 transformations that are common to the equality/inequality
8385 operators (EQ_EXPR and NE_EXPR) and the ordering operators
8386 (LT_EXPR, LE_EXPR, GE_EXPR and GT_EXPR). Callers other than
8387 fold_binary should call fold_binary. Fold a comparison with
8388 tree code CODE and type TYPE with operands OP0 and OP1. Return
8389 the folded comparison or NULL_TREE. */
8391 static tree
8392 fold_comparison (enum tree_code code, tree type, tree op0, tree op1)
8394 tree arg0, arg1, tem;
8396 arg0 = op0;
8397 arg1 = op1;
8399 STRIP_SIGN_NOPS (arg0);
8400 STRIP_SIGN_NOPS (arg1);
8402 tem = fold_relational_const (code, type, arg0, arg1);
8403 if (tem != NULL_TREE)
8404 return tem;
8406 /* If one arg is a real or integer constant, put it last. */
8407 if (tree_swap_operands_p (arg0, arg1, true))
8408 return fold_build2 (swap_tree_comparison (code), type, op1, op0);
8410 /* Transform comparisons of the form X +- C1 CMP C2 to X CMP C2 +- C1. */
8411 if ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8412 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8413 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1))
8414 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
8415 && (TREE_CODE (arg1) == INTEGER_CST
8416 && !TREE_OVERFLOW (arg1)))
8418 tree const1 = TREE_OPERAND (arg0, 1);
8419 tree const2 = arg1;
8420 tree variable = TREE_OPERAND (arg0, 0);
8421 tree lhs;
8422 int lhs_add;
8423 lhs_add = TREE_CODE (arg0) != PLUS_EXPR;
8425 lhs = fold_build2 (lhs_add ? PLUS_EXPR : MINUS_EXPR,
8426 TREE_TYPE (arg1), const2, const1);
8428 /* If the constant operation overflowed this can be
8429 simplified as a comparison against INT_MAX/INT_MIN. */
8430 if (TREE_CODE (lhs) == INTEGER_CST
8431 && TREE_OVERFLOW (lhs))
8433 int const1_sgn = tree_int_cst_sgn (const1);
8434 enum tree_code code2 = code;
8436 /* Get the sign of the constant on the lhs if the
8437 operation were VARIABLE + CONST1. */
8438 if (TREE_CODE (arg0) == MINUS_EXPR)
8439 const1_sgn = -const1_sgn;
8441 /* The sign of the constant determines if we overflowed
8442 INT_MAX (const1_sgn == -1) or INT_MIN (const1_sgn == 1).
8443 Canonicalize to the INT_MIN overflow by swapping the comparison
8444 if necessary. */
8445 if (const1_sgn == -1)
8446 code2 = swap_tree_comparison (code);
8448 /* We now can look at the canonicalized case
8449 VARIABLE + 1 CODE2 INT_MIN
8450 and decide on the result. */
8451 if (code2 == LT_EXPR
8452 || code2 == LE_EXPR
8453 || code2 == EQ_EXPR)
8454 return omit_one_operand (type, boolean_false_node, variable);
8455 else if (code2 == NE_EXPR
8456 || code2 == GE_EXPR
8457 || code2 == GT_EXPR)
8458 return omit_one_operand (type, boolean_true_node, variable);
8461 if (TREE_CODE (lhs) == TREE_CODE (arg1)
8462 && (TREE_CODE (lhs) != INTEGER_CST
8463 || !TREE_OVERFLOW (lhs)))
8465 fold_overflow_warning (("assuming signed overflow does not occur "
8466 "when changing X +- C1 cmp C2 to "
8467 "X cmp C1 +- C2"),
8468 WARN_STRICT_OVERFLOW_COMPARISON);
8469 return fold_build2 (code, type, variable, lhs);
8473 /* For comparisons of pointers we can decompose it to a compile time
8474 comparison of the base objects and the offsets into the object.
8475 This requires at least one operand being an ADDR_EXPR or a
8476 POINTER_PLUS_EXPR to do more than the operand_equal_p test below. */
8477 if (POINTER_TYPE_P (TREE_TYPE (arg0))
8478 && (TREE_CODE (arg0) == ADDR_EXPR
8479 || TREE_CODE (arg1) == ADDR_EXPR
8480 || TREE_CODE (arg0) == POINTER_PLUS_EXPR
8481 || TREE_CODE (arg1) == POINTER_PLUS_EXPR))
8483 tree base0, base1, offset0 = NULL_TREE, offset1 = NULL_TREE;
8484 HOST_WIDE_INT bitsize, bitpos0 = 0, bitpos1 = 0;
8485 enum machine_mode mode;
8486 int volatilep, unsignedp;
8487 bool indirect_base0 = false, indirect_base1 = false;
8489 /* Get base and offset for the access. Strip ADDR_EXPR for
8490 get_inner_reference, but put it back by stripping INDIRECT_REF
8491 off the base object if possible. indirect_baseN will be true
8492 if baseN is not an address but refers to the object itself. */
8493 base0 = arg0;
8494 if (TREE_CODE (arg0) == ADDR_EXPR)
8496 base0 = get_inner_reference (TREE_OPERAND (arg0, 0),
8497 &bitsize, &bitpos0, &offset0, &mode,
8498 &unsignedp, &volatilep, false);
8499 if (TREE_CODE (base0) == INDIRECT_REF)
8500 base0 = TREE_OPERAND (base0, 0);
8501 else
8502 indirect_base0 = true;
8504 else if (TREE_CODE (arg0) == POINTER_PLUS_EXPR)
8506 base0 = TREE_OPERAND (arg0, 0);
8507 offset0 = TREE_OPERAND (arg0, 1);
8510 base1 = arg1;
8511 if (TREE_CODE (arg1) == ADDR_EXPR)
8513 base1 = get_inner_reference (TREE_OPERAND (arg1, 0),
8514 &bitsize, &bitpos1, &offset1, &mode,
8515 &unsignedp, &volatilep, false);
8516 if (TREE_CODE (base1) == INDIRECT_REF)
8517 base1 = TREE_OPERAND (base1, 0);
8518 else
8519 indirect_base1 = true;
8521 else if (TREE_CODE (arg1) == POINTER_PLUS_EXPR)
8523 base1 = TREE_OPERAND (arg1, 0);
8524 offset1 = TREE_OPERAND (arg1, 1);
8527 /* If we have equivalent bases we might be able to simplify. */
8528 if (indirect_base0 == indirect_base1
8529 && operand_equal_p (base0, base1, 0))
8531 /* We can fold this expression to a constant if the non-constant
8532 offset parts are equal. */
8533 if (offset0 == offset1
8534 || (offset0 && offset1
8535 && operand_equal_p (offset0, offset1, 0)))
8537 switch (code)
8539 case EQ_EXPR:
8540 return build_int_cst (boolean_type_node, bitpos0 == bitpos1);
8541 case NE_EXPR:
8542 return build_int_cst (boolean_type_node, bitpos0 != bitpos1);
8543 case LT_EXPR:
8544 return build_int_cst (boolean_type_node, bitpos0 < bitpos1);
8545 case LE_EXPR:
8546 return build_int_cst (boolean_type_node, bitpos0 <= bitpos1);
8547 case GE_EXPR:
8548 return build_int_cst (boolean_type_node, bitpos0 >= bitpos1);
8549 case GT_EXPR:
8550 return build_int_cst (boolean_type_node, bitpos0 > bitpos1);
8551 default:;
8554 /* We can simplify the comparison to a comparison of the variable
8555 offset parts if the constant offset parts are equal.
8556 Be careful to use signed size type here because otherwise we
8557 mess with array offsets in the wrong way. This is possible
8558 because pointer arithmetic is restricted to retain within an
8559 object and overflow on pointer differences is undefined as of
8560 6.5.6/8 and /9 with respect to the signed ptrdiff_t. */
8561 else if (bitpos0 == bitpos1)
8563 tree signed_size_type_node;
8564 signed_size_type_node = signed_type_for (size_type_node);
8566 /* By converting to signed size type we cover middle-end pointer
8567 arithmetic which operates on unsigned pointer types of size
8568 type size and ARRAY_REF offsets which are properly sign or
8569 zero extended from their type in case it is narrower than
8570 size type. */
8571 if (offset0 == NULL_TREE)
8572 offset0 = build_int_cst (signed_size_type_node, 0);
8573 else
8574 offset0 = fold_convert (signed_size_type_node, offset0);
8575 if (offset1 == NULL_TREE)
8576 offset1 = build_int_cst (signed_size_type_node, 0);
8577 else
8578 offset1 = fold_convert (signed_size_type_node, offset1);
8580 return fold_build2 (code, type, offset0, offset1);
8583 /* For non-equal bases we can simplify if they are addresses
8584 of local binding decls or constants. */
8585 else if (indirect_base0 && indirect_base1
8586 /* We know that !operand_equal_p (base0, base1, 0)
8587 because the if condition was false. But make
8588 sure two decls are not the same. */
8589 && base0 != base1
8590 && TREE_CODE (arg0) == ADDR_EXPR
8591 && TREE_CODE (arg1) == ADDR_EXPR
8592 && (((TREE_CODE (base0) == VAR_DECL
8593 || TREE_CODE (base0) == PARM_DECL)
8594 && (targetm.binds_local_p (base0)
8595 || CONSTANT_CLASS_P (base1)))
8596 || CONSTANT_CLASS_P (base0))
8597 && (((TREE_CODE (base1) == VAR_DECL
8598 || TREE_CODE (base1) == PARM_DECL)
8599 && (targetm.binds_local_p (base1)
8600 || CONSTANT_CLASS_P (base0)))
8601 || CONSTANT_CLASS_P (base1)))
8603 if (code == EQ_EXPR)
8604 return omit_two_operands (type, boolean_false_node, arg0, arg1);
8605 else if (code == NE_EXPR)
8606 return omit_two_operands (type, boolean_true_node, arg0, arg1);
8608 /* For equal offsets we can simplify to a comparison of the
8609 base addresses. */
8610 else if (bitpos0 == bitpos1
8611 && (indirect_base0
8612 ? base0 != TREE_OPERAND (arg0, 0) : base0 != arg0)
8613 && (indirect_base1
8614 ? base1 != TREE_OPERAND (arg1, 0) : base1 != arg1)
8615 && ((offset0 == offset1)
8616 || (offset0 && offset1
8617 && operand_equal_p (offset0, offset1, 0))))
8619 if (indirect_base0)
8620 base0 = fold_addr_expr (base0);
8621 if (indirect_base1)
8622 base1 = fold_addr_expr (base1);
8623 return fold_build2 (code, type, base0, base1);
8627 /* Transform comparisons of the form X +- C1 CMP Y +- C2 to
8628 X CMP Y +- C2 +- C1 for signed X, Y. This is valid if
8629 the resulting offset is smaller in absolute value than the
8630 original one. */
8631 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg0))
8632 && (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8633 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8634 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1)))
8635 && (TREE_CODE (arg1) == PLUS_EXPR || TREE_CODE (arg1) == MINUS_EXPR)
8636 && (TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
8637 && !TREE_OVERFLOW (TREE_OPERAND (arg1, 1))))
8639 tree const1 = TREE_OPERAND (arg0, 1);
8640 tree const2 = TREE_OPERAND (arg1, 1);
8641 tree variable1 = TREE_OPERAND (arg0, 0);
8642 tree variable2 = TREE_OPERAND (arg1, 0);
8643 tree cst;
8644 const char * const warnmsg = G_("assuming signed overflow does not "
8645 "occur when combining constants around "
8646 "a comparison");
8648 /* Put the constant on the side where it doesn't overflow and is
8649 of lower absolute value than before. */
8650 cst = int_const_binop (TREE_CODE (arg0) == TREE_CODE (arg1)
8651 ? MINUS_EXPR : PLUS_EXPR,
8652 const2, const1, 0);
8653 if (!TREE_OVERFLOW (cst)
8654 && tree_int_cst_compare (const2, cst) == tree_int_cst_sgn (const2))
8656 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_COMPARISON);
8657 return fold_build2 (code, type,
8658 variable1,
8659 fold_build2 (TREE_CODE (arg1), TREE_TYPE (arg1),
8660 variable2, cst));
8663 cst = int_const_binop (TREE_CODE (arg0) == TREE_CODE (arg1)
8664 ? MINUS_EXPR : PLUS_EXPR,
8665 const1, const2, 0);
8666 if (!TREE_OVERFLOW (cst)
8667 && tree_int_cst_compare (const1, cst) == tree_int_cst_sgn (const1))
8669 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_COMPARISON);
8670 return fold_build2 (code, type,
8671 fold_build2 (TREE_CODE (arg0), TREE_TYPE (arg0),
8672 variable1, cst),
8673 variable2);
8677 /* Transform comparisons of the form X * C1 CMP 0 to X CMP 0 in the
8678 signed arithmetic case. That form is created by the compiler
8679 often enough for folding it to be of value. One example is in
8680 computing loop trip counts after Operator Strength Reduction. */
8681 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg0))
8682 && TREE_CODE (arg0) == MULT_EXPR
8683 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8684 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1)))
8685 && integer_zerop (arg1))
8687 tree const1 = TREE_OPERAND (arg0, 1);
8688 tree const2 = arg1; /* zero */
8689 tree variable1 = TREE_OPERAND (arg0, 0);
8690 enum tree_code cmp_code = code;
8692 gcc_assert (!integer_zerop (const1));
8694 fold_overflow_warning (("assuming signed overflow does not occur when "
8695 "eliminating multiplication in comparison "
8696 "with zero"),
8697 WARN_STRICT_OVERFLOW_COMPARISON);
8699 /* If const1 is negative we swap the sense of the comparison. */
8700 if (tree_int_cst_sgn (const1) < 0)
8701 cmp_code = swap_tree_comparison (cmp_code);
8703 return fold_build2 (cmp_code, type, variable1, const2);
8706 tem = maybe_canonicalize_comparison (code, type, op0, op1);
8707 if (tem)
8708 return tem;
8710 if (FLOAT_TYPE_P (TREE_TYPE (arg0)))
8712 tree targ0 = strip_float_extensions (arg0);
8713 tree targ1 = strip_float_extensions (arg1);
8714 tree newtype = TREE_TYPE (targ0);
8716 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
8717 newtype = TREE_TYPE (targ1);
8719 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
8720 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
8721 return fold_build2 (code, type, fold_convert (newtype, targ0),
8722 fold_convert (newtype, targ1));
8724 /* (-a) CMP (-b) -> b CMP a */
8725 if (TREE_CODE (arg0) == NEGATE_EXPR
8726 && TREE_CODE (arg1) == NEGATE_EXPR)
8727 return fold_build2 (code, type, TREE_OPERAND (arg1, 0),
8728 TREE_OPERAND (arg0, 0));
8730 if (TREE_CODE (arg1) == REAL_CST)
8732 REAL_VALUE_TYPE cst;
8733 cst = TREE_REAL_CST (arg1);
8735 /* (-a) CMP CST -> a swap(CMP) (-CST) */
8736 if (TREE_CODE (arg0) == NEGATE_EXPR)
8737 return fold_build2 (swap_tree_comparison (code), type,
8738 TREE_OPERAND (arg0, 0),
8739 build_real (TREE_TYPE (arg1),
8740 REAL_VALUE_NEGATE (cst)));
8742 /* IEEE doesn't distinguish +0 and -0 in comparisons. */
8743 /* a CMP (-0) -> a CMP 0 */
8744 if (REAL_VALUE_MINUS_ZERO (cst))
8745 return fold_build2 (code, type, arg0,
8746 build_real (TREE_TYPE (arg1), dconst0));
8748 /* x != NaN is always true, other ops are always false. */
8749 if (REAL_VALUE_ISNAN (cst)
8750 && ! HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg1))))
8752 tem = (code == NE_EXPR) ? integer_one_node : integer_zero_node;
8753 return omit_one_operand (type, tem, arg0);
8756 /* Fold comparisons against infinity. */
8757 if (REAL_VALUE_ISINF (cst))
8759 tem = fold_inf_compare (code, type, arg0, arg1);
8760 if (tem != NULL_TREE)
8761 return tem;
8765 /* If this is a comparison of a real constant with a PLUS_EXPR
8766 or a MINUS_EXPR of a real constant, we can convert it into a
8767 comparison with a revised real constant as long as no overflow
8768 occurs when unsafe_math_optimizations are enabled. */
8769 if (flag_unsafe_math_optimizations
8770 && TREE_CODE (arg1) == REAL_CST
8771 && (TREE_CODE (arg0) == PLUS_EXPR
8772 || TREE_CODE (arg0) == MINUS_EXPR)
8773 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
8774 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
8775 ? MINUS_EXPR : PLUS_EXPR,
8776 arg1, TREE_OPERAND (arg0, 1), 0))
8777 && !TREE_OVERFLOW (tem))
8778 return fold_build2 (code, type, TREE_OPERAND (arg0, 0), tem);
8780 /* Likewise, we can simplify a comparison of a real constant with
8781 a MINUS_EXPR whose first operand is also a real constant, i.e.
8782 (c1 - x) < c2 becomes x > c1-c2. Reordering is allowed on
8783 floating-point types only if -fassociative-math is set. */
8784 if (flag_associative_math
8785 && TREE_CODE (arg1) == REAL_CST
8786 && TREE_CODE (arg0) == MINUS_EXPR
8787 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST
8788 && 0 != (tem = const_binop (MINUS_EXPR, TREE_OPERAND (arg0, 0),
8789 arg1, 0))
8790 && !TREE_OVERFLOW (tem))
8791 return fold_build2 (swap_tree_comparison (code), type,
8792 TREE_OPERAND (arg0, 1), tem);
8794 /* Fold comparisons against built-in math functions. */
8795 if (TREE_CODE (arg1) == REAL_CST
8796 && flag_unsafe_math_optimizations
8797 && ! flag_errno_math)
8799 enum built_in_function fcode = builtin_mathfn_code (arg0);
8801 if (fcode != END_BUILTINS)
8803 tem = fold_mathfn_compare (fcode, code, type, arg0, arg1);
8804 if (tem != NULL_TREE)
8805 return tem;
8810 if (TREE_CODE (TREE_TYPE (arg0)) == INTEGER_TYPE
8811 && (TREE_CODE (arg0) == NOP_EXPR
8812 || TREE_CODE (arg0) == CONVERT_EXPR))
8814 /* If we are widening one operand of an integer comparison,
8815 see if the other operand is similarly being widened. Perhaps we
8816 can do the comparison in the narrower type. */
8817 tem = fold_widened_comparison (code, type, arg0, arg1);
8818 if (tem)
8819 return tem;
8821 /* Or if we are changing signedness. */
8822 tem = fold_sign_changed_comparison (code, type, arg0, arg1);
8823 if (tem)
8824 return tem;
8827 /* If this is comparing a constant with a MIN_EXPR or a MAX_EXPR of a
8828 constant, we can simplify it. */
8829 if (TREE_CODE (arg1) == INTEGER_CST
8830 && (TREE_CODE (arg0) == MIN_EXPR
8831 || TREE_CODE (arg0) == MAX_EXPR)
8832 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
8834 tem = optimize_minmax_comparison (code, type, op0, op1);
8835 if (tem)
8836 return tem;
8839 /* Simplify comparison of something with itself. (For IEEE
8840 floating-point, we can only do some of these simplifications.) */
8841 if (operand_equal_p (arg0, arg1, 0))
8843 switch (code)
8845 case EQ_EXPR:
8846 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
8847 || ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
8848 return constant_boolean_node (1, type);
8849 break;
8851 case GE_EXPR:
8852 case LE_EXPR:
8853 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
8854 || ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
8855 return constant_boolean_node (1, type);
8856 return fold_build2 (EQ_EXPR, type, arg0, arg1);
8858 case NE_EXPR:
8859 /* For NE, we can only do this simplification if integer
8860 or we don't honor IEEE floating point NaNs. */
8861 if (FLOAT_TYPE_P (TREE_TYPE (arg0))
8862 && HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
8863 break;
8864 /* ... fall through ... */
8865 case GT_EXPR:
8866 case LT_EXPR:
8867 return constant_boolean_node (0, type);
8868 default:
8869 gcc_unreachable ();
8873 /* If we are comparing an expression that just has comparisons
8874 of two integer values, arithmetic expressions of those comparisons,
8875 and constants, we can simplify it. There are only three cases
8876 to check: the two values can either be equal, the first can be
8877 greater, or the second can be greater. Fold the expression for
8878 those three values. Since each value must be 0 or 1, we have
8879 eight possibilities, each of which corresponds to the constant 0
8880 or 1 or one of the six possible comparisons.
8882 This handles common cases like (a > b) == 0 but also handles
8883 expressions like ((x > y) - (y > x)) > 0, which supposedly
8884 occur in macroized code. */
8886 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) != INTEGER_CST)
8888 tree cval1 = 0, cval2 = 0;
8889 int save_p = 0;
8891 if (twoval_comparison_p (arg0, &cval1, &cval2, &save_p)
8892 /* Don't handle degenerate cases here; they should already
8893 have been handled anyway. */
8894 && cval1 != 0 && cval2 != 0
8895 && ! (TREE_CONSTANT (cval1) && TREE_CONSTANT (cval2))
8896 && TREE_TYPE (cval1) == TREE_TYPE (cval2)
8897 && INTEGRAL_TYPE_P (TREE_TYPE (cval1))
8898 && TYPE_MAX_VALUE (TREE_TYPE (cval1))
8899 && TYPE_MAX_VALUE (TREE_TYPE (cval2))
8900 && ! operand_equal_p (TYPE_MIN_VALUE (TREE_TYPE (cval1)),
8901 TYPE_MAX_VALUE (TREE_TYPE (cval2)), 0))
8903 tree maxval = TYPE_MAX_VALUE (TREE_TYPE (cval1));
8904 tree minval = TYPE_MIN_VALUE (TREE_TYPE (cval1));
8906 /* We can't just pass T to eval_subst in case cval1 or cval2
8907 was the same as ARG1. */
8909 tree high_result
8910 = fold_build2 (code, type,
8911 eval_subst (arg0, cval1, maxval,
8912 cval2, minval),
8913 arg1);
8914 tree equal_result
8915 = fold_build2 (code, type,
8916 eval_subst (arg0, cval1, maxval,
8917 cval2, maxval),
8918 arg1);
8919 tree low_result
8920 = fold_build2 (code, type,
8921 eval_subst (arg0, cval1, minval,
8922 cval2, maxval),
8923 arg1);
8925 /* All three of these results should be 0 or 1. Confirm they are.
8926 Then use those values to select the proper code to use. */
8928 if (TREE_CODE (high_result) == INTEGER_CST
8929 && TREE_CODE (equal_result) == INTEGER_CST
8930 && TREE_CODE (low_result) == INTEGER_CST)
8932 /* Make a 3-bit mask with the high-order bit being the
8933 value for `>', the next for '=', and the low for '<'. */
8934 switch ((integer_onep (high_result) * 4)
8935 + (integer_onep (equal_result) * 2)
8936 + integer_onep (low_result))
8938 case 0:
8939 /* Always false. */
8940 return omit_one_operand (type, integer_zero_node, arg0);
8941 case 1:
8942 code = LT_EXPR;
8943 break;
8944 case 2:
8945 code = EQ_EXPR;
8946 break;
8947 case 3:
8948 code = LE_EXPR;
8949 break;
8950 case 4:
8951 code = GT_EXPR;
8952 break;
8953 case 5:
8954 code = NE_EXPR;
8955 break;
8956 case 6:
8957 code = GE_EXPR;
8958 break;
8959 case 7:
8960 /* Always true. */
8961 return omit_one_operand (type, integer_one_node, arg0);
8964 if (save_p)
8965 return save_expr (build2 (code, type, cval1, cval2));
8966 return fold_build2 (code, type, cval1, cval2);
8971 /* We can fold X/C1 op C2 where C1 and C2 are integer constants
8972 into a single range test. */
8973 if ((TREE_CODE (arg0) == TRUNC_DIV_EXPR
8974 || TREE_CODE (arg0) == EXACT_DIV_EXPR)
8975 && TREE_CODE (arg1) == INTEGER_CST
8976 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8977 && !integer_zerop (TREE_OPERAND (arg0, 1))
8978 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1))
8979 && !TREE_OVERFLOW (arg1))
8981 tem = fold_div_compare (code, type, arg0, arg1);
8982 if (tem != NULL_TREE)
8983 return tem;
8986 /* Fold ~X op ~Y as Y op X. */
8987 if (TREE_CODE (arg0) == BIT_NOT_EXPR
8988 && TREE_CODE (arg1) == BIT_NOT_EXPR)
8990 tree cmp_type = TREE_TYPE (TREE_OPERAND (arg0, 0));
8991 return fold_build2 (code, type,
8992 fold_convert (cmp_type, TREE_OPERAND (arg1, 0)),
8993 TREE_OPERAND (arg0, 0));
8996 /* Fold ~X op C as X op' ~C, where op' is the swapped comparison. */
8997 if (TREE_CODE (arg0) == BIT_NOT_EXPR
8998 && TREE_CODE (arg1) == INTEGER_CST)
9000 tree cmp_type = TREE_TYPE (TREE_OPERAND (arg0, 0));
9001 return fold_build2 (swap_tree_comparison (code), type,
9002 TREE_OPERAND (arg0, 0),
9003 fold_build1 (BIT_NOT_EXPR, cmp_type,
9004 fold_convert (cmp_type, arg1)));
9007 return NULL_TREE;
9011 /* Subroutine of fold_binary. Optimize complex multiplications of the
9012 form z * conj(z), as pow(realpart(z),2) + pow(imagpart(z),2). The
9013 argument EXPR represents the expression "z" of type TYPE. */
9015 static tree
9016 fold_mult_zconjz (tree type, tree expr)
9018 tree itype = TREE_TYPE (type);
9019 tree rpart, ipart, tem;
9021 if (TREE_CODE (expr) == COMPLEX_EXPR)
9023 rpart = TREE_OPERAND (expr, 0);
9024 ipart = TREE_OPERAND (expr, 1);
9026 else if (TREE_CODE (expr) == COMPLEX_CST)
9028 rpart = TREE_REALPART (expr);
9029 ipart = TREE_IMAGPART (expr);
9031 else
9033 expr = save_expr (expr);
9034 rpart = fold_build1 (REALPART_EXPR, itype, expr);
9035 ipart = fold_build1 (IMAGPART_EXPR, itype, expr);
9038 rpart = save_expr (rpart);
9039 ipart = save_expr (ipart);
9040 tem = fold_build2 (PLUS_EXPR, itype,
9041 fold_build2 (MULT_EXPR, itype, rpart, rpart),
9042 fold_build2 (MULT_EXPR, itype, ipart, ipart));
9043 return fold_build2 (COMPLEX_EXPR, type, tem,
9044 fold_convert (itype, integer_zero_node));
9048 /* Subroutine of fold_binary. If P is the value of EXPR, computes
9049 power-of-two M and (arbitrary) N such that M divides (P-N). This condition
9050 guarantees that P and N have the same least significant log2(M) bits.
9051 N is not otherwise constrained. In particular, N is not normalized to
9052 0 <= N < M as is common. In general, the precise value of P is unknown.
9053 M is chosen as large as possible such that constant N can be determined.
9055 Returns M and sets *RESIDUE to N. */
9057 static unsigned HOST_WIDE_INT
9058 get_pointer_modulus_and_residue (tree expr, unsigned HOST_WIDE_INT *residue)
9060 enum tree_code code;
9062 *residue = 0;
9064 code = TREE_CODE (expr);
9065 if (code == ADDR_EXPR)
9067 expr = TREE_OPERAND (expr, 0);
9068 if (handled_component_p (expr))
9070 HOST_WIDE_INT bitsize, bitpos;
9071 tree offset;
9072 enum machine_mode mode;
9073 int unsignedp, volatilep;
9075 expr = get_inner_reference (expr, &bitsize, &bitpos, &offset,
9076 &mode, &unsignedp, &volatilep, false);
9077 *residue = bitpos / BITS_PER_UNIT;
9078 if (offset)
9080 if (TREE_CODE (offset) == INTEGER_CST)
9081 *residue += TREE_INT_CST_LOW (offset);
9082 else
9083 /* We don't handle more complicated offset expressions. */
9084 return 1;
9088 if (DECL_P (expr))
9089 return DECL_ALIGN_UNIT (expr);
9091 else if (code == POINTER_PLUS_EXPR)
9093 tree op0, op1;
9094 unsigned HOST_WIDE_INT modulus;
9095 enum tree_code inner_code;
9097 op0 = TREE_OPERAND (expr, 0);
9098 STRIP_NOPS (op0);
9099 modulus = get_pointer_modulus_and_residue (op0, residue);
9101 op1 = TREE_OPERAND (expr, 1);
9102 STRIP_NOPS (op1);
9103 inner_code = TREE_CODE (op1);
9104 if (inner_code == INTEGER_CST)
9106 *residue += TREE_INT_CST_LOW (op1);
9107 return modulus;
9109 else if (inner_code == MULT_EXPR)
9111 op1 = TREE_OPERAND (op1, 1);
9112 if (TREE_CODE (op1) == INTEGER_CST)
9114 unsigned HOST_WIDE_INT align;
9116 /* Compute the greatest power-of-2 divisor of op1. */
9117 align = TREE_INT_CST_LOW (op1);
9118 align &= -align;
9120 /* If align is non-zero and less than *modulus, replace
9121 *modulus with align., If align is 0, then either op1 is 0
9122 or the greatest power-of-2 divisor of op1 doesn't fit in an
9123 unsigned HOST_WIDE_INT. In either case, no additional
9124 constraint is imposed. */
9125 if (align)
9126 modulus = MIN (modulus, align);
9128 return modulus;
9133 /* If we get here, we were unable to determine anything useful about the
9134 expression. */
9135 return 1;
9139 /* Fold a binary expression of code CODE and type TYPE with operands
9140 OP0 and OP1. Return the folded expression if folding is
9141 successful. Otherwise, return NULL_TREE. */
9143 tree
9144 fold_binary (enum tree_code code, tree type, tree op0, tree op1)
9146 enum tree_code_class kind = TREE_CODE_CLASS (code);
9147 tree arg0, arg1, tem;
9148 tree t1 = NULL_TREE;
9149 bool strict_overflow_p;
9151 gcc_assert ((IS_EXPR_CODE_CLASS (kind)
9152 || IS_GIMPLE_STMT_CODE_CLASS (kind))
9153 && TREE_CODE_LENGTH (code) == 2
9154 && op0 != NULL_TREE
9155 && op1 != NULL_TREE);
9157 arg0 = op0;
9158 arg1 = op1;
9160 /* Strip any conversions that don't change the mode. This is
9161 safe for every expression, except for a comparison expression
9162 because its signedness is derived from its operands. So, in
9163 the latter case, only strip conversions that don't change the
9164 signedness.
9166 Note that this is done as an internal manipulation within the
9167 constant folder, in order to find the simplest representation
9168 of the arguments so that their form can be studied. In any
9169 cases, the appropriate type conversions should be put back in
9170 the tree that will get out of the constant folder. */
9172 if (kind == tcc_comparison)
9174 STRIP_SIGN_NOPS (arg0);
9175 STRIP_SIGN_NOPS (arg1);
9177 else
9179 STRIP_NOPS (arg0);
9180 STRIP_NOPS (arg1);
9183 /* Note that TREE_CONSTANT isn't enough: static var addresses are
9184 constant but we can't do arithmetic on them. */
9185 if ((TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
9186 || (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
9187 || (TREE_CODE (arg0) == FIXED_CST && TREE_CODE (arg1) == FIXED_CST)
9188 || (TREE_CODE (arg0) == FIXED_CST && TREE_CODE (arg1) == INTEGER_CST)
9189 || (TREE_CODE (arg0) == COMPLEX_CST && TREE_CODE (arg1) == COMPLEX_CST)
9190 || (TREE_CODE (arg0) == VECTOR_CST && TREE_CODE (arg1) == VECTOR_CST))
9192 if (kind == tcc_binary)
9194 /* Make sure type and arg0 have the same saturating flag. */
9195 gcc_assert (TYPE_SATURATING (type)
9196 == TYPE_SATURATING (TREE_TYPE (arg0)));
9197 tem = const_binop (code, arg0, arg1, 0);
9199 else if (kind == tcc_comparison)
9200 tem = fold_relational_const (code, type, arg0, arg1);
9201 else
9202 tem = NULL_TREE;
9204 if (tem != NULL_TREE)
9206 if (TREE_TYPE (tem) != type)
9207 tem = fold_convert (type, tem);
9208 return tem;
9212 /* If this is a commutative operation, and ARG0 is a constant, move it
9213 to ARG1 to reduce the number of tests below. */
9214 if (commutative_tree_code (code)
9215 && tree_swap_operands_p (arg0, arg1, true))
9216 return fold_build2 (code, type, op1, op0);
9218 /* ARG0 is the first operand of EXPR, and ARG1 is the second operand.
9220 First check for cases where an arithmetic operation is applied to a
9221 compound, conditional, or comparison operation. Push the arithmetic
9222 operation inside the compound or conditional to see if any folding
9223 can then be done. Convert comparison to conditional for this purpose.
9224 The also optimizes non-constant cases that used to be done in
9225 expand_expr.
9227 Before we do that, see if this is a BIT_AND_EXPR or a BIT_IOR_EXPR,
9228 one of the operands is a comparison and the other is a comparison, a
9229 BIT_AND_EXPR with the constant 1, or a truth value. In that case, the
9230 code below would make the expression more complex. Change it to a
9231 TRUTH_{AND,OR}_EXPR. Likewise, convert a similar NE_EXPR to
9232 TRUTH_XOR_EXPR and an EQ_EXPR to the inversion of a TRUTH_XOR_EXPR. */
9234 if ((code == BIT_AND_EXPR || code == BIT_IOR_EXPR
9235 || code == EQ_EXPR || code == NE_EXPR)
9236 && ((truth_value_p (TREE_CODE (arg0))
9237 && (truth_value_p (TREE_CODE (arg1))
9238 || (TREE_CODE (arg1) == BIT_AND_EXPR
9239 && integer_onep (TREE_OPERAND (arg1, 1)))))
9240 || (truth_value_p (TREE_CODE (arg1))
9241 && (truth_value_p (TREE_CODE (arg0))
9242 || (TREE_CODE (arg0) == BIT_AND_EXPR
9243 && integer_onep (TREE_OPERAND (arg0, 1)))))))
9245 tem = fold_build2 (code == BIT_AND_EXPR ? TRUTH_AND_EXPR
9246 : code == BIT_IOR_EXPR ? TRUTH_OR_EXPR
9247 : TRUTH_XOR_EXPR,
9248 boolean_type_node,
9249 fold_convert (boolean_type_node, arg0),
9250 fold_convert (boolean_type_node, arg1));
9252 if (code == EQ_EXPR)
9253 tem = invert_truthvalue (tem);
9255 return fold_convert (type, tem);
9258 if (TREE_CODE_CLASS (code) == tcc_binary
9259 || TREE_CODE_CLASS (code) == tcc_comparison)
9261 if (TREE_CODE (arg0) == COMPOUND_EXPR)
9262 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
9263 fold_build2 (code, type,
9264 fold_convert (TREE_TYPE (op0),
9265 TREE_OPERAND (arg0, 1)),
9266 op1));
9267 if (TREE_CODE (arg1) == COMPOUND_EXPR
9268 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
9269 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
9270 fold_build2 (code, type, op0,
9271 fold_convert (TREE_TYPE (op1),
9272 TREE_OPERAND (arg1, 1))));
9274 if (TREE_CODE (arg0) == COND_EXPR || COMPARISON_CLASS_P (arg0))
9276 tem = fold_binary_op_with_conditional_arg (code, type, op0, op1,
9277 arg0, arg1,
9278 /*cond_first_p=*/1);
9279 if (tem != NULL_TREE)
9280 return tem;
9283 if (TREE_CODE (arg1) == COND_EXPR || COMPARISON_CLASS_P (arg1))
9285 tem = fold_binary_op_with_conditional_arg (code, type, op0, op1,
9286 arg1, arg0,
9287 /*cond_first_p=*/0);
9288 if (tem != NULL_TREE)
9289 return tem;
9293 switch (code)
9295 case POINTER_PLUS_EXPR:
9296 /* 0 +p index -> (type)index */
9297 if (integer_zerop (arg0))
9298 return non_lvalue (fold_convert (type, arg1));
9300 /* PTR +p 0 -> PTR */
9301 if (integer_zerop (arg1))
9302 return non_lvalue (fold_convert (type, arg0));
9304 /* INT +p INT -> (PTR)(INT + INT). Stripping types allows for this. */
9305 if (INTEGRAL_TYPE_P (TREE_TYPE (arg1))
9306 && INTEGRAL_TYPE_P (TREE_TYPE (arg0)))
9307 return fold_convert (type, fold_build2 (PLUS_EXPR, sizetype,
9308 fold_convert (sizetype, arg1),
9309 fold_convert (sizetype, arg0)));
9311 /* index +p PTR -> PTR +p index */
9312 if (POINTER_TYPE_P (TREE_TYPE (arg1))
9313 && INTEGRAL_TYPE_P (TREE_TYPE (arg0)))
9314 return fold_build2 (POINTER_PLUS_EXPR, type,
9315 fold_convert (type, arg1),
9316 fold_convert (sizetype, arg0));
9318 /* (PTR +p B) +p A -> PTR +p (B + A) */
9319 if (TREE_CODE (arg0) == POINTER_PLUS_EXPR)
9321 tree inner;
9322 tree arg01 = fold_convert (sizetype, TREE_OPERAND (arg0, 1));
9323 tree arg00 = TREE_OPERAND (arg0, 0);
9324 inner = fold_build2 (PLUS_EXPR, sizetype,
9325 arg01, fold_convert (sizetype, arg1));
9326 return fold_convert (type,
9327 fold_build2 (POINTER_PLUS_EXPR,
9328 TREE_TYPE (arg00), arg00, inner));
9331 /* PTR_CST +p CST -> CST1 */
9332 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
9333 return fold_build2 (PLUS_EXPR, type, arg0, fold_convert (type, arg1));
9335 /* Try replacing &a[i1] +p c * i2 with &a[i1 + i2], if c is step
9336 of the array. Loop optimizer sometimes produce this type of
9337 expressions. */
9338 if (TREE_CODE (arg0) == ADDR_EXPR)
9340 tem = try_move_mult_to_index (arg0, fold_convert (sizetype, arg1));
9341 if (tem)
9342 return fold_convert (type, tem);
9345 return NULL_TREE;
9347 case PLUS_EXPR:
9348 /* PTR + INT -> (INT)(PTR p+ INT) */
9349 if (POINTER_TYPE_P (TREE_TYPE (arg0))
9350 && INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
9351 return fold_convert (type, fold_build2 (POINTER_PLUS_EXPR,
9352 TREE_TYPE (arg0),
9353 arg0,
9354 fold_convert (sizetype, arg1)));
9355 /* INT + PTR -> (INT)(PTR p+ INT) */
9356 if (POINTER_TYPE_P (TREE_TYPE (arg1))
9357 && INTEGRAL_TYPE_P (TREE_TYPE (arg0)))
9358 return fold_convert (type, fold_build2 (POINTER_PLUS_EXPR,
9359 TREE_TYPE (arg1),
9360 arg1,
9361 fold_convert (sizetype, arg0)));
9362 /* A + (-B) -> A - B */
9363 if (TREE_CODE (arg1) == NEGATE_EXPR)
9364 return fold_build2 (MINUS_EXPR, type,
9365 fold_convert (type, arg0),
9366 fold_convert (type, TREE_OPERAND (arg1, 0)));
9367 /* (-A) + B -> B - A */
9368 if (TREE_CODE (arg0) == NEGATE_EXPR
9369 && reorder_operands_p (TREE_OPERAND (arg0, 0), arg1))
9370 return fold_build2 (MINUS_EXPR, type,
9371 fold_convert (type, arg1),
9372 fold_convert (type, TREE_OPERAND (arg0, 0)));
9374 if (INTEGRAL_TYPE_P (type))
9376 /* Convert ~A + 1 to -A. */
9377 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9378 && integer_onep (arg1))
9379 return fold_build1 (NEGATE_EXPR, type, TREE_OPERAND (arg0, 0));
9381 /* ~X + X is -1. */
9382 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9383 && !TYPE_OVERFLOW_TRAPS (type))
9385 tree tem = TREE_OPERAND (arg0, 0);
9387 STRIP_NOPS (tem);
9388 if (operand_equal_p (tem, arg1, 0))
9390 t1 = build_int_cst_type (type, -1);
9391 return omit_one_operand (type, t1, arg1);
9395 /* X + ~X is -1. */
9396 if (TREE_CODE (arg1) == BIT_NOT_EXPR
9397 && !TYPE_OVERFLOW_TRAPS (type))
9399 tree tem = TREE_OPERAND (arg1, 0);
9401 STRIP_NOPS (tem);
9402 if (operand_equal_p (arg0, tem, 0))
9404 t1 = build_int_cst_type (type, -1);
9405 return omit_one_operand (type, t1, arg0);
9409 /* X + (X / CST) * -CST is X % CST. */
9410 if (TREE_CODE (arg1) == MULT_EXPR
9411 && TREE_CODE (TREE_OPERAND (arg1, 0)) == TRUNC_DIV_EXPR
9412 && operand_equal_p (arg0,
9413 TREE_OPERAND (TREE_OPERAND (arg1, 0), 0), 0))
9415 tree cst0 = TREE_OPERAND (TREE_OPERAND (arg1, 0), 1);
9416 tree cst1 = TREE_OPERAND (arg1, 1);
9417 tree sum = fold_binary (PLUS_EXPR, TREE_TYPE (cst1), cst1, cst0);
9418 if (sum && integer_zerop (sum))
9419 return fold_convert (type,
9420 fold_build2 (TRUNC_MOD_EXPR,
9421 TREE_TYPE (arg0), arg0, cst0));
9425 /* Handle (A1 * C1) + (A2 * C2) with A1, A2 or C1, C2 being the
9426 same or one. Make sure type is not saturating.
9427 fold_plusminus_mult_expr will re-associate. */
9428 if ((TREE_CODE (arg0) == MULT_EXPR
9429 || TREE_CODE (arg1) == MULT_EXPR)
9430 && !TYPE_SATURATING (type)
9431 && (!FLOAT_TYPE_P (type) || flag_associative_math))
9433 tree tem = fold_plusminus_mult_expr (code, type, arg0, arg1);
9434 if (tem)
9435 return tem;
9438 if (! FLOAT_TYPE_P (type))
9440 if (integer_zerop (arg1))
9441 return non_lvalue (fold_convert (type, arg0));
9443 /* If we are adding two BIT_AND_EXPR's, both of which are and'ing
9444 with a constant, and the two constants have no bits in common,
9445 we should treat this as a BIT_IOR_EXPR since this may produce more
9446 simplifications. */
9447 if (TREE_CODE (arg0) == BIT_AND_EXPR
9448 && TREE_CODE (arg1) == BIT_AND_EXPR
9449 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
9450 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
9451 && integer_zerop (const_binop (BIT_AND_EXPR,
9452 TREE_OPERAND (arg0, 1),
9453 TREE_OPERAND (arg1, 1), 0)))
9455 code = BIT_IOR_EXPR;
9456 goto bit_ior;
9459 /* Reassociate (plus (plus (mult) (foo)) (mult)) as
9460 (plus (plus (mult) (mult)) (foo)) so that we can
9461 take advantage of the factoring cases below. */
9462 if (((TREE_CODE (arg0) == PLUS_EXPR
9463 || TREE_CODE (arg0) == MINUS_EXPR)
9464 && TREE_CODE (arg1) == MULT_EXPR)
9465 || ((TREE_CODE (arg1) == PLUS_EXPR
9466 || TREE_CODE (arg1) == MINUS_EXPR)
9467 && TREE_CODE (arg0) == MULT_EXPR))
9469 tree parg0, parg1, parg, marg;
9470 enum tree_code pcode;
9472 if (TREE_CODE (arg1) == MULT_EXPR)
9473 parg = arg0, marg = arg1;
9474 else
9475 parg = arg1, marg = arg0;
9476 pcode = TREE_CODE (parg);
9477 parg0 = TREE_OPERAND (parg, 0);
9478 parg1 = TREE_OPERAND (parg, 1);
9479 STRIP_NOPS (parg0);
9480 STRIP_NOPS (parg1);
9482 if (TREE_CODE (parg0) == MULT_EXPR
9483 && TREE_CODE (parg1) != MULT_EXPR)
9484 return fold_build2 (pcode, type,
9485 fold_build2 (PLUS_EXPR, type,
9486 fold_convert (type, parg0),
9487 fold_convert (type, marg)),
9488 fold_convert (type, parg1));
9489 if (TREE_CODE (parg0) != MULT_EXPR
9490 && TREE_CODE (parg1) == MULT_EXPR)
9491 return fold_build2 (PLUS_EXPR, type,
9492 fold_convert (type, parg0),
9493 fold_build2 (pcode, type,
9494 fold_convert (type, marg),
9495 fold_convert (type,
9496 parg1)));
9499 else
9501 /* See if ARG1 is zero and X + ARG1 reduces to X. */
9502 if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 0))
9503 return non_lvalue (fold_convert (type, arg0));
9505 /* Likewise if the operands are reversed. */
9506 if (fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
9507 return non_lvalue (fold_convert (type, arg1));
9509 /* Convert X + -C into X - C. */
9510 if (TREE_CODE (arg1) == REAL_CST
9511 && REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1)))
9513 tem = fold_negate_const (arg1, type);
9514 if (!TREE_OVERFLOW (arg1) || !flag_trapping_math)
9515 return fold_build2 (MINUS_EXPR, type,
9516 fold_convert (type, arg0),
9517 fold_convert (type, tem));
9520 /* Fold __complex__ ( x, 0 ) + __complex__ ( 0, y )
9521 to __complex__ ( x, y ). This is not the same for SNaNs or
9522 if signed zeros are involved. */
9523 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
9524 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
9525 && COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0)))
9527 tree rtype = TREE_TYPE (TREE_TYPE (arg0));
9528 tree arg0r = fold_unary (REALPART_EXPR, rtype, arg0);
9529 tree arg0i = fold_unary (IMAGPART_EXPR, rtype, arg0);
9530 bool arg0rz = false, arg0iz = false;
9531 if ((arg0r && (arg0rz = real_zerop (arg0r)))
9532 || (arg0i && (arg0iz = real_zerop (arg0i))))
9534 tree arg1r = fold_unary (REALPART_EXPR, rtype, arg1);
9535 tree arg1i = fold_unary (IMAGPART_EXPR, rtype, arg1);
9536 if (arg0rz && arg1i && real_zerop (arg1i))
9538 tree rp = arg1r ? arg1r
9539 : build1 (REALPART_EXPR, rtype, arg1);
9540 tree ip = arg0i ? arg0i
9541 : build1 (IMAGPART_EXPR, rtype, arg0);
9542 return fold_build2 (COMPLEX_EXPR, type, rp, ip);
9544 else if (arg0iz && arg1r && real_zerop (arg1r))
9546 tree rp = arg0r ? arg0r
9547 : build1 (REALPART_EXPR, rtype, arg0);
9548 tree ip = arg1i ? arg1i
9549 : build1 (IMAGPART_EXPR, rtype, arg1);
9550 return fold_build2 (COMPLEX_EXPR, type, rp, ip);
9555 if (flag_unsafe_math_optimizations
9556 && (TREE_CODE (arg0) == RDIV_EXPR || TREE_CODE (arg0) == MULT_EXPR)
9557 && (TREE_CODE (arg1) == RDIV_EXPR || TREE_CODE (arg1) == MULT_EXPR)
9558 && (tem = distribute_real_division (code, type, arg0, arg1)))
9559 return tem;
9561 /* Convert x+x into x*2.0. */
9562 if (operand_equal_p (arg0, arg1, 0)
9563 && SCALAR_FLOAT_TYPE_P (type))
9564 return fold_build2 (MULT_EXPR, type, arg0,
9565 build_real (type, dconst2));
9567 /* Convert a + (b*c + d*e) into (a + b*c) + d*e.
9568 We associate floats only if the user has specified
9569 -fassociative-math. */
9570 if (flag_associative_math
9571 && TREE_CODE (arg1) == PLUS_EXPR
9572 && TREE_CODE (arg0) != MULT_EXPR)
9574 tree tree10 = TREE_OPERAND (arg1, 0);
9575 tree tree11 = TREE_OPERAND (arg1, 1);
9576 if (TREE_CODE (tree11) == MULT_EXPR
9577 && TREE_CODE (tree10) == MULT_EXPR)
9579 tree tree0;
9580 tree0 = fold_build2 (PLUS_EXPR, type, arg0, tree10);
9581 return fold_build2 (PLUS_EXPR, type, tree0, tree11);
9584 /* Convert (b*c + d*e) + a into b*c + (d*e +a).
9585 We associate floats only if the user has specified
9586 -fassociative-math. */
9587 if (flag_associative_math
9588 && TREE_CODE (arg0) == PLUS_EXPR
9589 && TREE_CODE (arg1) != MULT_EXPR)
9591 tree tree00 = TREE_OPERAND (arg0, 0);
9592 tree tree01 = TREE_OPERAND (arg0, 1);
9593 if (TREE_CODE (tree01) == MULT_EXPR
9594 && TREE_CODE (tree00) == MULT_EXPR)
9596 tree tree0;
9597 tree0 = fold_build2 (PLUS_EXPR, type, tree01, arg1);
9598 return fold_build2 (PLUS_EXPR, type, tree00, tree0);
9603 bit_rotate:
9604 /* (A << C1) + (A >> C2) if A is unsigned and C1+C2 is the size of A
9605 is a rotate of A by C1 bits. */
9606 /* (A << B) + (A >> (Z - B)) if A is unsigned and Z is the size of A
9607 is a rotate of A by B bits. */
9609 enum tree_code code0, code1;
9610 tree rtype;
9611 code0 = TREE_CODE (arg0);
9612 code1 = TREE_CODE (arg1);
9613 if (((code0 == RSHIFT_EXPR && code1 == LSHIFT_EXPR)
9614 || (code1 == RSHIFT_EXPR && code0 == LSHIFT_EXPR))
9615 && operand_equal_p (TREE_OPERAND (arg0, 0),
9616 TREE_OPERAND (arg1, 0), 0)
9617 && (rtype = TREE_TYPE (TREE_OPERAND (arg0, 0)),
9618 TYPE_UNSIGNED (rtype))
9619 /* Only create rotates in complete modes. Other cases are not
9620 expanded properly. */
9621 && TYPE_PRECISION (rtype) == GET_MODE_PRECISION (TYPE_MODE (rtype)))
9623 tree tree01, tree11;
9624 enum tree_code code01, code11;
9626 tree01 = TREE_OPERAND (arg0, 1);
9627 tree11 = TREE_OPERAND (arg1, 1);
9628 STRIP_NOPS (tree01);
9629 STRIP_NOPS (tree11);
9630 code01 = TREE_CODE (tree01);
9631 code11 = TREE_CODE (tree11);
9632 if (code01 == INTEGER_CST
9633 && code11 == INTEGER_CST
9634 && TREE_INT_CST_HIGH (tree01) == 0
9635 && TREE_INT_CST_HIGH (tree11) == 0
9636 && ((TREE_INT_CST_LOW (tree01) + TREE_INT_CST_LOW (tree11))
9637 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)))))
9638 return build2 (LROTATE_EXPR, type, TREE_OPERAND (arg0, 0),
9639 code0 == LSHIFT_EXPR ? tree01 : tree11);
9640 else if (code11 == MINUS_EXPR)
9642 tree tree110, tree111;
9643 tree110 = TREE_OPERAND (tree11, 0);
9644 tree111 = TREE_OPERAND (tree11, 1);
9645 STRIP_NOPS (tree110);
9646 STRIP_NOPS (tree111);
9647 if (TREE_CODE (tree110) == INTEGER_CST
9648 && 0 == compare_tree_int (tree110,
9649 TYPE_PRECISION
9650 (TREE_TYPE (TREE_OPERAND
9651 (arg0, 0))))
9652 && operand_equal_p (tree01, tree111, 0))
9653 return build2 ((code0 == LSHIFT_EXPR
9654 ? LROTATE_EXPR
9655 : RROTATE_EXPR),
9656 type, TREE_OPERAND (arg0, 0), tree01);
9658 else if (code01 == MINUS_EXPR)
9660 tree tree010, tree011;
9661 tree010 = TREE_OPERAND (tree01, 0);
9662 tree011 = TREE_OPERAND (tree01, 1);
9663 STRIP_NOPS (tree010);
9664 STRIP_NOPS (tree011);
9665 if (TREE_CODE (tree010) == INTEGER_CST
9666 && 0 == compare_tree_int (tree010,
9667 TYPE_PRECISION
9668 (TREE_TYPE (TREE_OPERAND
9669 (arg0, 0))))
9670 && operand_equal_p (tree11, tree011, 0))
9671 return build2 ((code0 != LSHIFT_EXPR
9672 ? LROTATE_EXPR
9673 : RROTATE_EXPR),
9674 type, TREE_OPERAND (arg0, 0), tree11);
9679 associate:
9680 /* In most languages, can't associate operations on floats through
9681 parentheses. Rather than remember where the parentheses were, we
9682 don't associate floats at all, unless the user has specified
9683 -fassociative-math.
9684 And, we need to make sure type is not saturating. */
9686 if ((! FLOAT_TYPE_P (type) || flag_associative_math)
9687 && !TYPE_SATURATING (type))
9689 tree var0, con0, lit0, minus_lit0;
9690 tree var1, con1, lit1, minus_lit1;
9691 bool ok = true;
9693 /* Split both trees into variables, constants, and literals. Then
9694 associate each group together, the constants with literals,
9695 then the result with variables. This increases the chances of
9696 literals being recombined later and of generating relocatable
9697 expressions for the sum of a constant and literal. */
9698 var0 = split_tree (arg0, code, &con0, &lit0, &minus_lit0, 0);
9699 var1 = split_tree (arg1, code, &con1, &lit1, &minus_lit1,
9700 code == MINUS_EXPR);
9702 /* With undefined overflow we can only associate constants
9703 with one variable. */
9704 if ((POINTER_TYPE_P (type)
9705 || (INTEGRAL_TYPE_P (type) && !TYPE_OVERFLOW_WRAPS (type)))
9706 && var0 && var1)
9708 tree tmp0 = var0;
9709 tree tmp1 = var1;
9711 if (TREE_CODE (tmp0) == NEGATE_EXPR)
9712 tmp0 = TREE_OPERAND (tmp0, 0);
9713 if (TREE_CODE (tmp1) == NEGATE_EXPR)
9714 tmp1 = TREE_OPERAND (tmp1, 0);
9715 /* The only case we can still associate with two variables
9716 is if they are the same, modulo negation. */
9717 if (!operand_equal_p (tmp0, tmp1, 0))
9718 ok = false;
9721 /* Only do something if we found more than two objects. Otherwise,
9722 nothing has changed and we risk infinite recursion. */
9723 if (ok
9724 && (2 < ((var0 != 0) + (var1 != 0)
9725 + (con0 != 0) + (con1 != 0)
9726 + (lit0 != 0) + (lit1 != 0)
9727 + (minus_lit0 != 0) + (minus_lit1 != 0))))
9729 /* Recombine MINUS_EXPR operands by using PLUS_EXPR. */
9730 if (code == MINUS_EXPR)
9731 code = PLUS_EXPR;
9733 var0 = associate_trees (var0, var1, code, type);
9734 con0 = associate_trees (con0, con1, code, type);
9735 lit0 = associate_trees (lit0, lit1, code, type);
9736 minus_lit0 = associate_trees (minus_lit0, minus_lit1, code, type);
9738 /* Preserve the MINUS_EXPR if the negative part of the literal is
9739 greater than the positive part. Otherwise, the multiplicative
9740 folding code (i.e extract_muldiv) may be fooled in case
9741 unsigned constants are subtracted, like in the following
9742 example: ((X*2 + 4) - 8U)/2. */
9743 if (minus_lit0 && lit0)
9745 if (TREE_CODE (lit0) == INTEGER_CST
9746 && TREE_CODE (minus_lit0) == INTEGER_CST
9747 && tree_int_cst_lt (lit0, minus_lit0))
9749 minus_lit0 = associate_trees (minus_lit0, lit0,
9750 MINUS_EXPR, type);
9751 lit0 = 0;
9753 else
9755 lit0 = associate_trees (lit0, minus_lit0,
9756 MINUS_EXPR, type);
9757 minus_lit0 = 0;
9760 if (minus_lit0)
9762 if (con0 == 0)
9763 return fold_convert (type,
9764 associate_trees (var0, minus_lit0,
9765 MINUS_EXPR, type));
9766 else
9768 con0 = associate_trees (con0, minus_lit0,
9769 MINUS_EXPR, type);
9770 return fold_convert (type,
9771 associate_trees (var0, con0,
9772 PLUS_EXPR, type));
9776 con0 = associate_trees (con0, lit0, code, type);
9777 return fold_convert (type, associate_trees (var0, con0,
9778 code, type));
9782 return NULL_TREE;
9784 case MINUS_EXPR:
9785 /* Pointer simplifications for subtraction, simple reassociations. */
9786 if (POINTER_TYPE_P (TREE_TYPE (arg1)) && POINTER_TYPE_P (TREE_TYPE (arg0)))
9788 /* (PTR0 p+ A) - (PTR1 p+ B) -> (PTR0 - PTR1) + (A - B) */
9789 if (TREE_CODE (arg0) == POINTER_PLUS_EXPR
9790 && TREE_CODE (arg1) == POINTER_PLUS_EXPR)
9792 tree arg00 = fold_convert (type, TREE_OPERAND (arg0, 0));
9793 tree arg01 = fold_convert (type, TREE_OPERAND (arg0, 1));
9794 tree arg10 = fold_convert (type, TREE_OPERAND (arg1, 0));
9795 tree arg11 = fold_convert (type, TREE_OPERAND (arg1, 1));
9796 return fold_build2 (PLUS_EXPR, type,
9797 fold_build2 (MINUS_EXPR, type, arg00, arg10),
9798 fold_build2 (MINUS_EXPR, type, arg01, arg11));
9800 /* (PTR0 p+ A) - PTR1 -> (PTR0 - PTR1) + A, assuming PTR0 - PTR1 simplifies. */
9801 else if (TREE_CODE (arg0) == POINTER_PLUS_EXPR)
9803 tree arg00 = fold_convert (type, TREE_OPERAND (arg0, 0));
9804 tree arg01 = fold_convert (type, TREE_OPERAND (arg0, 1));
9805 tree tmp = fold_binary (MINUS_EXPR, type, arg00, fold_convert (type, arg1));
9806 if (tmp)
9807 return fold_build2 (PLUS_EXPR, type, tmp, arg01);
9810 /* A - (-B) -> A + B */
9811 if (TREE_CODE (arg1) == NEGATE_EXPR)
9812 return fold_build2 (PLUS_EXPR, type, op0,
9813 fold_convert (type, TREE_OPERAND (arg1, 0)));
9814 /* (-A) - B -> (-B) - A where B is easily negated and we can swap. */
9815 if (TREE_CODE (arg0) == NEGATE_EXPR
9816 && (FLOAT_TYPE_P (type)
9817 || INTEGRAL_TYPE_P (type))
9818 && negate_expr_p (arg1)
9819 && reorder_operands_p (arg0, arg1))
9820 return fold_build2 (MINUS_EXPR, type,
9821 fold_convert (type, negate_expr (arg1)),
9822 fold_convert (type, TREE_OPERAND (arg0, 0)));
9823 /* Convert -A - 1 to ~A. */
9824 if (INTEGRAL_TYPE_P (type)
9825 && TREE_CODE (arg0) == NEGATE_EXPR
9826 && integer_onep (arg1)
9827 && !TYPE_OVERFLOW_TRAPS (type))
9828 return fold_build1 (BIT_NOT_EXPR, type,
9829 fold_convert (type, TREE_OPERAND (arg0, 0)));
9831 /* Convert -1 - A to ~A. */
9832 if (INTEGRAL_TYPE_P (type)
9833 && integer_all_onesp (arg0))
9834 return fold_build1 (BIT_NOT_EXPR, type, op1);
9837 /* X - (X / CST) * CST is X % CST. */
9838 if (INTEGRAL_TYPE_P (type)
9839 && TREE_CODE (arg1) == MULT_EXPR
9840 && TREE_CODE (TREE_OPERAND (arg1, 0)) == TRUNC_DIV_EXPR
9841 && operand_equal_p (arg0,
9842 TREE_OPERAND (TREE_OPERAND (arg1, 0), 0), 0)
9843 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg1, 0), 1),
9844 TREE_OPERAND (arg1, 1), 0))
9845 return fold_convert (type,
9846 fold_build2 (TRUNC_MOD_EXPR, TREE_TYPE (arg0),
9847 arg0, TREE_OPERAND (arg1, 1)));
9849 if (! FLOAT_TYPE_P (type))
9851 if (integer_zerop (arg0))
9852 return negate_expr (fold_convert (type, arg1));
9853 if (integer_zerop (arg1))
9854 return non_lvalue (fold_convert (type, arg0));
9856 /* Fold A - (A & B) into ~B & A. */
9857 if (!TREE_SIDE_EFFECTS (arg0)
9858 && TREE_CODE (arg1) == BIT_AND_EXPR)
9860 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0))
9862 tree arg10 = fold_convert (type, TREE_OPERAND (arg1, 0));
9863 return fold_build2 (BIT_AND_EXPR, type,
9864 fold_build1 (BIT_NOT_EXPR, type, arg10),
9865 fold_convert (type, arg0));
9867 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
9869 tree arg11 = fold_convert (type, TREE_OPERAND (arg1, 1));
9870 return fold_build2 (BIT_AND_EXPR, type,
9871 fold_build1 (BIT_NOT_EXPR, type, arg11),
9872 fold_convert (type, arg0));
9876 /* Fold (A & ~B) - (A & B) into (A ^ B) - B, where B is
9877 any power of 2 minus 1. */
9878 if (TREE_CODE (arg0) == BIT_AND_EXPR
9879 && TREE_CODE (arg1) == BIT_AND_EXPR
9880 && operand_equal_p (TREE_OPERAND (arg0, 0),
9881 TREE_OPERAND (arg1, 0), 0))
9883 tree mask0 = TREE_OPERAND (arg0, 1);
9884 tree mask1 = TREE_OPERAND (arg1, 1);
9885 tree tem = fold_build1 (BIT_NOT_EXPR, type, mask0);
9887 if (operand_equal_p (tem, mask1, 0))
9889 tem = fold_build2 (BIT_XOR_EXPR, type,
9890 TREE_OPERAND (arg0, 0), mask1);
9891 return fold_build2 (MINUS_EXPR, type, tem, mask1);
9896 /* See if ARG1 is zero and X - ARG1 reduces to X. */
9897 else if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 1))
9898 return non_lvalue (fold_convert (type, arg0));
9900 /* (ARG0 - ARG1) is the same as (-ARG1 + ARG0). So check whether
9901 ARG0 is zero and X + ARG0 reduces to X, since that would mean
9902 (-ARG1 + ARG0) reduces to -ARG1. */
9903 else if (fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
9904 return negate_expr (fold_convert (type, arg1));
9906 /* Fold __complex__ ( x, 0 ) - __complex__ ( 0, y ) to
9907 __complex__ ( x, -y ). This is not the same for SNaNs or if
9908 signed zeros are involved. */
9909 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
9910 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
9911 && COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0)))
9913 tree rtype = TREE_TYPE (TREE_TYPE (arg0));
9914 tree arg0r = fold_unary (REALPART_EXPR, rtype, arg0);
9915 tree arg0i = fold_unary (IMAGPART_EXPR, rtype, arg0);
9916 bool arg0rz = false, arg0iz = false;
9917 if ((arg0r && (arg0rz = real_zerop (arg0r)))
9918 || (arg0i && (arg0iz = real_zerop (arg0i))))
9920 tree arg1r = fold_unary (REALPART_EXPR, rtype, arg1);
9921 tree arg1i = fold_unary (IMAGPART_EXPR, rtype, arg1);
9922 if (arg0rz && arg1i && real_zerop (arg1i))
9924 tree rp = fold_build1 (NEGATE_EXPR, rtype,
9925 arg1r ? arg1r
9926 : build1 (REALPART_EXPR, rtype, arg1));
9927 tree ip = arg0i ? arg0i
9928 : build1 (IMAGPART_EXPR, rtype, arg0);
9929 return fold_build2 (COMPLEX_EXPR, type, rp, ip);
9931 else if (arg0iz && arg1r && real_zerop (arg1r))
9933 tree rp = arg0r ? arg0r
9934 : build1 (REALPART_EXPR, rtype, arg0);
9935 tree ip = fold_build1 (NEGATE_EXPR, rtype,
9936 arg1i ? arg1i
9937 : build1 (IMAGPART_EXPR, rtype, arg1));
9938 return fold_build2 (COMPLEX_EXPR, type, rp, ip);
9943 /* Fold &x - &x. This can happen from &x.foo - &x.
9944 This is unsafe for certain floats even in non-IEEE formats.
9945 In IEEE, it is unsafe because it does wrong for NaNs.
9946 Also note that operand_equal_p is always false if an operand
9947 is volatile. */
9949 if ((!FLOAT_TYPE_P (type) || !HONOR_NANS (TYPE_MODE (type)))
9950 && operand_equal_p (arg0, arg1, 0))
9951 return fold_convert (type, integer_zero_node);
9953 /* A - B -> A + (-B) if B is easily negatable. */
9954 if (negate_expr_p (arg1)
9955 && ((FLOAT_TYPE_P (type)
9956 /* Avoid this transformation if B is a positive REAL_CST. */
9957 && (TREE_CODE (arg1) != REAL_CST
9958 || REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1))))
9959 || INTEGRAL_TYPE_P (type)))
9960 return fold_build2 (PLUS_EXPR, type,
9961 fold_convert (type, arg0),
9962 fold_convert (type, negate_expr (arg1)));
9964 /* Try folding difference of addresses. */
9966 HOST_WIDE_INT diff;
9968 if ((TREE_CODE (arg0) == ADDR_EXPR
9969 || TREE_CODE (arg1) == ADDR_EXPR)
9970 && ptr_difference_const (arg0, arg1, &diff))
9971 return build_int_cst_type (type, diff);
9974 /* Fold &a[i] - &a[j] to i-j. */
9975 if (TREE_CODE (arg0) == ADDR_EXPR
9976 && TREE_CODE (TREE_OPERAND (arg0, 0)) == ARRAY_REF
9977 && TREE_CODE (arg1) == ADDR_EXPR
9978 && TREE_CODE (TREE_OPERAND (arg1, 0)) == ARRAY_REF)
9980 tree aref0 = TREE_OPERAND (arg0, 0);
9981 tree aref1 = TREE_OPERAND (arg1, 0);
9982 if (operand_equal_p (TREE_OPERAND (aref0, 0),
9983 TREE_OPERAND (aref1, 0), 0))
9985 tree op0 = fold_convert (type, TREE_OPERAND (aref0, 1));
9986 tree op1 = fold_convert (type, TREE_OPERAND (aref1, 1));
9987 tree esz = array_ref_element_size (aref0);
9988 tree diff = build2 (MINUS_EXPR, type, op0, op1);
9989 return fold_build2 (MULT_EXPR, type, diff,
9990 fold_convert (type, esz));
9995 if (flag_unsafe_math_optimizations
9996 && (TREE_CODE (arg0) == RDIV_EXPR || TREE_CODE (arg0) == MULT_EXPR)
9997 && (TREE_CODE (arg1) == RDIV_EXPR || TREE_CODE (arg1) == MULT_EXPR)
9998 && (tem = distribute_real_division (code, type, arg0, arg1)))
9999 return tem;
10001 /* Handle (A1 * C1) - (A2 * C2) with A1, A2 or C1, C2 being the
10002 same or one. Make sure type is not saturating.
10003 fold_plusminus_mult_expr will re-associate. */
10004 if ((TREE_CODE (arg0) == MULT_EXPR
10005 || TREE_CODE (arg1) == MULT_EXPR)
10006 && !TYPE_SATURATING (type)
10007 && (!FLOAT_TYPE_P (type) || flag_associative_math))
10009 tree tem = fold_plusminus_mult_expr (code, type, arg0, arg1);
10010 if (tem)
10011 return tem;
10014 goto associate;
10016 case MULT_EXPR:
10017 /* (-A) * (-B) -> A * B */
10018 if (TREE_CODE (arg0) == NEGATE_EXPR && negate_expr_p (arg1))
10019 return fold_build2 (MULT_EXPR, type,
10020 fold_convert (type, TREE_OPERAND (arg0, 0)),
10021 fold_convert (type, negate_expr (arg1)));
10022 if (TREE_CODE (arg1) == NEGATE_EXPR && negate_expr_p (arg0))
10023 return fold_build2 (MULT_EXPR, type,
10024 fold_convert (type, negate_expr (arg0)),
10025 fold_convert (type, TREE_OPERAND (arg1, 0)));
10027 if (! FLOAT_TYPE_P (type))
10029 if (integer_zerop (arg1))
10030 return omit_one_operand (type, arg1, arg0);
10031 if (integer_onep (arg1))
10032 return non_lvalue (fold_convert (type, arg0));
10033 /* Transform x * -1 into -x. Make sure to do the negation
10034 on the original operand with conversions not stripped
10035 because we can only strip non-sign-changing conversions. */
10036 if (integer_all_onesp (arg1))
10037 return fold_convert (type, negate_expr (op0));
10038 /* Transform x * -C into -x * C if x is easily negatable. */
10039 if (TREE_CODE (arg1) == INTEGER_CST
10040 && tree_int_cst_sgn (arg1) == -1
10041 && negate_expr_p (arg0)
10042 && (tem = negate_expr (arg1)) != arg1
10043 && !TREE_OVERFLOW (tem))
10044 return fold_build2 (MULT_EXPR, type,
10045 fold_convert (type, negate_expr (arg0)), tem);
10047 /* (a * (1 << b)) is (a << b) */
10048 if (TREE_CODE (arg1) == LSHIFT_EXPR
10049 && integer_onep (TREE_OPERAND (arg1, 0)))
10050 return fold_build2 (LSHIFT_EXPR, type, op0,
10051 TREE_OPERAND (arg1, 1));
10052 if (TREE_CODE (arg0) == LSHIFT_EXPR
10053 && integer_onep (TREE_OPERAND (arg0, 0)))
10054 return fold_build2 (LSHIFT_EXPR, type, op1,
10055 TREE_OPERAND (arg0, 1));
10057 strict_overflow_p = false;
10058 if (TREE_CODE (arg1) == INTEGER_CST
10059 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE,
10060 &strict_overflow_p)))
10062 if (strict_overflow_p)
10063 fold_overflow_warning (("assuming signed overflow does not "
10064 "occur when simplifying "
10065 "multiplication"),
10066 WARN_STRICT_OVERFLOW_MISC);
10067 return fold_convert (type, tem);
10070 /* Optimize z * conj(z) for integer complex numbers. */
10071 if (TREE_CODE (arg0) == CONJ_EXPR
10072 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10073 return fold_mult_zconjz (type, arg1);
10074 if (TREE_CODE (arg1) == CONJ_EXPR
10075 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10076 return fold_mult_zconjz (type, arg0);
10078 else
10080 /* Maybe fold x * 0 to 0. The expressions aren't the same
10081 when x is NaN, since x * 0 is also NaN. Nor are they the
10082 same in modes with signed zeros, since multiplying a
10083 negative value by 0 gives -0, not +0. */
10084 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
10085 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
10086 && real_zerop (arg1))
10087 return omit_one_operand (type, arg1, arg0);
10088 /* In IEEE floating point, x*1 is not equivalent to x for snans. */
10089 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
10090 && real_onep (arg1))
10091 return non_lvalue (fold_convert (type, arg0));
10093 /* Transform x * -1.0 into -x. */
10094 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
10095 && real_minus_onep (arg1))
10096 return fold_convert (type, negate_expr (arg0));
10098 /* Convert (C1/X)*C2 into (C1*C2)/X. This transformation may change
10099 the result for floating point types due to rounding so it is applied
10100 only if -fassociative-math was specify. */
10101 if (flag_associative_math
10102 && TREE_CODE (arg0) == RDIV_EXPR
10103 && TREE_CODE (arg1) == REAL_CST
10104 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST)
10106 tree tem = const_binop (MULT_EXPR, TREE_OPERAND (arg0, 0),
10107 arg1, 0);
10108 if (tem)
10109 return fold_build2 (RDIV_EXPR, type, tem,
10110 TREE_OPERAND (arg0, 1));
10113 /* Strip sign operations from X in X*X, i.e. -Y*-Y -> Y*Y. */
10114 if (operand_equal_p (arg0, arg1, 0))
10116 tree tem = fold_strip_sign_ops (arg0);
10117 if (tem != NULL_TREE)
10119 tem = fold_convert (type, tem);
10120 return fold_build2 (MULT_EXPR, type, tem, tem);
10124 /* Fold z * +-I to __complex__ (-+__imag z, +-__real z).
10125 This is not the same for NaNs or if signed zeros are
10126 involved. */
10127 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
10128 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
10129 && COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0))
10130 && TREE_CODE (arg1) == COMPLEX_CST
10131 && real_zerop (TREE_REALPART (arg1)))
10133 tree rtype = TREE_TYPE (TREE_TYPE (arg0));
10134 if (real_onep (TREE_IMAGPART (arg1)))
10135 return fold_build2 (COMPLEX_EXPR, type,
10136 negate_expr (fold_build1 (IMAGPART_EXPR,
10137 rtype, arg0)),
10138 fold_build1 (REALPART_EXPR, rtype, arg0));
10139 else if (real_minus_onep (TREE_IMAGPART (arg1)))
10140 return fold_build2 (COMPLEX_EXPR, type,
10141 fold_build1 (IMAGPART_EXPR, rtype, arg0),
10142 negate_expr (fold_build1 (REALPART_EXPR,
10143 rtype, arg0)));
10146 /* Optimize z * conj(z) for floating point complex numbers.
10147 Guarded by flag_unsafe_math_optimizations as non-finite
10148 imaginary components don't produce scalar results. */
10149 if (flag_unsafe_math_optimizations
10150 && TREE_CODE (arg0) == CONJ_EXPR
10151 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10152 return fold_mult_zconjz (type, arg1);
10153 if (flag_unsafe_math_optimizations
10154 && TREE_CODE (arg1) == CONJ_EXPR
10155 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10156 return fold_mult_zconjz (type, arg0);
10158 if (flag_unsafe_math_optimizations)
10160 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
10161 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
10163 /* Optimizations of root(...)*root(...). */
10164 if (fcode0 == fcode1 && BUILTIN_ROOT_P (fcode0))
10166 tree rootfn, arg;
10167 tree arg00 = CALL_EXPR_ARG (arg0, 0);
10168 tree arg10 = CALL_EXPR_ARG (arg1, 0);
10170 /* Optimize sqrt(x)*sqrt(x) as x. */
10171 if (BUILTIN_SQRT_P (fcode0)
10172 && operand_equal_p (arg00, arg10, 0)
10173 && ! HONOR_SNANS (TYPE_MODE (type)))
10174 return arg00;
10176 /* Optimize root(x)*root(y) as root(x*y). */
10177 rootfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10178 arg = fold_build2 (MULT_EXPR, type, arg00, arg10);
10179 return build_call_expr (rootfn, 1, arg);
10182 /* Optimize expN(x)*expN(y) as expN(x+y). */
10183 if (fcode0 == fcode1 && BUILTIN_EXPONENT_P (fcode0))
10185 tree expfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10186 tree arg = fold_build2 (PLUS_EXPR, type,
10187 CALL_EXPR_ARG (arg0, 0),
10188 CALL_EXPR_ARG (arg1, 0));
10189 return build_call_expr (expfn, 1, arg);
10192 /* Optimizations of pow(...)*pow(...). */
10193 if ((fcode0 == BUILT_IN_POW && fcode1 == BUILT_IN_POW)
10194 || (fcode0 == BUILT_IN_POWF && fcode1 == BUILT_IN_POWF)
10195 || (fcode0 == BUILT_IN_POWL && fcode1 == BUILT_IN_POWL))
10197 tree arg00 = CALL_EXPR_ARG (arg0, 0);
10198 tree arg01 = CALL_EXPR_ARG (arg0, 1);
10199 tree arg10 = CALL_EXPR_ARG (arg1, 0);
10200 tree arg11 = CALL_EXPR_ARG (arg1, 1);
10202 /* Optimize pow(x,y)*pow(z,y) as pow(x*z,y). */
10203 if (operand_equal_p (arg01, arg11, 0))
10205 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10206 tree arg = fold_build2 (MULT_EXPR, type, arg00, arg10);
10207 return build_call_expr (powfn, 2, arg, arg01);
10210 /* Optimize pow(x,y)*pow(x,z) as pow(x,y+z). */
10211 if (operand_equal_p (arg00, arg10, 0))
10213 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10214 tree arg = fold_build2 (PLUS_EXPR, type, arg01, arg11);
10215 return build_call_expr (powfn, 2, arg00, arg);
10219 /* Optimize tan(x)*cos(x) as sin(x). */
10220 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_COS)
10221 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_COSF)
10222 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_COSL)
10223 || (fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_TAN)
10224 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_TANF)
10225 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_TANL))
10226 && operand_equal_p (CALL_EXPR_ARG (arg0, 0),
10227 CALL_EXPR_ARG (arg1, 0), 0))
10229 tree sinfn = mathfn_built_in (type, BUILT_IN_SIN);
10231 if (sinfn != NULL_TREE)
10232 return build_call_expr (sinfn, 1, CALL_EXPR_ARG (arg0, 0));
10235 /* Optimize x*pow(x,c) as pow(x,c+1). */
10236 if (fcode1 == BUILT_IN_POW
10237 || fcode1 == BUILT_IN_POWF
10238 || fcode1 == BUILT_IN_POWL)
10240 tree arg10 = CALL_EXPR_ARG (arg1, 0);
10241 tree arg11 = CALL_EXPR_ARG (arg1, 1);
10242 if (TREE_CODE (arg11) == REAL_CST
10243 && !TREE_OVERFLOW (arg11)
10244 && operand_equal_p (arg0, arg10, 0))
10246 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
10247 REAL_VALUE_TYPE c;
10248 tree arg;
10250 c = TREE_REAL_CST (arg11);
10251 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
10252 arg = build_real (type, c);
10253 return build_call_expr (powfn, 2, arg0, arg);
10257 /* Optimize pow(x,c)*x as pow(x,c+1). */
10258 if (fcode0 == BUILT_IN_POW
10259 || fcode0 == BUILT_IN_POWF
10260 || fcode0 == BUILT_IN_POWL)
10262 tree arg00 = CALL_EXPR_ARG (arg0, 0);
10263 tree arg01 = CALL_EXPR_ARG (arg0, 1);
10264 if (TREE_CODE (arg01) == REAL_CST
10265 && !TREE_OVERFLOW (arg01)
10266 && operand_equal_p (arg1, arg00, 0))
10268 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10269 REAL_VALUE_TYPE c;
10270 tree arg;
10272 c = TREE_REAL_CST (arg01);
10273 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
10274 arg = build_real (type, c);
10275 return build_call_expr (powfn, 2, arg1, arg);
10279 /* Optimize x*x as pow(x,2.0), which is expanded as x*x. */
10280 if (! optimize_size
10281 && operand_equal_p (arg0, arg1, 0))
10283 tree powfn = mathfn_built_in (type, BUILT_IN_POW);
10285 if (powfn)
10287 tree arg = build_real (type, dconst2);
10288 return build_call_expr (powfn, 2, arg0, arg);
10293 goto associate;
10295 case BIT_IOR_EXPR:
10296 bit_ior:
10297 if (integer_all_onesp (arg1))
10298 return omit_one_operand (type, arg1, arg0);
10299 if (integer_zerop (arg1))
10300 return non_lvalue (fold_convert (type, arg0));
10301 if (operand_equal_p (arg0, arg1, 0))
10302 return non_lvalue (fold_convert (type, arg0));
10304 /* ~X | X is -1. */
10305 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10306 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10308 t1 = fold_convert (type, integer_zero_node);
10309 t1 = fold_unary (BIT_NOT_EXPR, type, t1);
10310 return omit_one_operand (type, t1, arg1);
10313 /* X | ~X is -1. */
10314 if (TREE_CODE (arg1) == BIT_NOT_EXPR
10315 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10317 t1 = fold_convert (type, integer_zero_node);
10318 t1 = fold_unary (BIT_NOT_EXPR, type, t1);
10319 return omit_one_operand (type, t1, arg0);
10322 /* Canonicalize (X & C1) | C2. */
10323 if (TREE_CODE (arg0) == BIT_AND_EXPR
10324 && TREE_CODE (arg1) == INTEGER_CST
10325 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
10327 unsigned HOST_WIDE_INT hi1, lo1, hi2, lo2, hi3, lo3, mlo, mhi;
10328 int width = TYPE_PRECISION (type), w;
10329 hi1 = TREE_INT_CST_HIGH (TREE_OPERAND (arg0, 1));
10330 lo1 = TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1));
10331 hi2 = TREE_INT_CST_HIGH (arg1);
10332 lo2 = TREE_INT_CST_LOW (arg1);
10334 /* If (C1&C2) == C1, then (X&C1)|C2 becomes (X,C2). */
10335 if ((hi1 & hi2) == hi1 && (lo1 & lo2) == lo1)
10336 return omit_one_operand (type, arg1, TREE_OPERAND (arg0, 0));
10338 if (width > HOST_BITS_PER_WIDE_INT)
10340 mhi = (unsigned HOST_WIDE_INT) -1
10341 >> (2 * HOST_BITS_PER_WIDE_INT - width);
10342 mlo = -1;
10344 else
10346 mhi = 0;
10347 mlo = (unsigned HOST_WIDE_INT) -1
10348 >> (HOST_BITS_PER_WIDE_INT - width);
10351 /* If (C1|C2) == ~0 then (X&C1)|C2 becomes X|C2. */
10352 if ((~(hi1 | hi2) & mhi) == 0 && (~(lo1 | lo2) & mlo) == 0)
10353 return fold_build2 (BIT_IOR_EXPR, type,
10354 TREE_OPERAND (arg0, 0), arg1);
10356 /* Minimize the number of bits set in C1, i.e. C1 := C1 & ~C2,
10357 unless (C1 & ~C2) | (C2 & C3) for some C3 is a mask of some
10358 mode which allows further optimizations. */
10359 hi1 &= mhi;
10360 lo1 &= mlo;
10361 hi2 &= mhi;
10362 lo2 &= mlo;
10363 hi3 = hi1 & ~hi2;
10364 lo3 = lo1 & ~lo2;
10365 for (w = BITS_PER_UNIT;
10366 w <= width && w <= HOST_BITS_PER_WIDE_INT;
10367 w <<= 1)
10369 unsigned HOST_WIDE_INT mask
10370 = (unsigned HOST_WIDE_INT) -1 >> (HOST_BITS_PER_WIDE_INT - w);
10371 if (((lo1 | lo2) & mask) == mask
10372 && (lo1 & ~mask) == 0 && hi1 == 0)
10374 hi3 = 0;
10375 lo3 = mask;
10376 break;
10379 if (hi3 != hi1 || lo3 != lo1)
10380 return fold_build2 (BIT_IOR_EXPR, type,
10381 fold_build2 (BIT_AND_EXPR, type,
10382 TREE_OPERAND (arg0, 0),
10383 build_int_cst_wide (type,
10384 lo3, hi3)),
10385 arg1);
10388 /* (X & Y) | Y is (X, Y). */
10389 if (TREE_CODE (arg0) == BIT_AND_EXPR
10390 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10391 return omit_one_operand (type, arg1, TREE_OPERAND (arg0, 0));
10392 /* (X & Y) | X is (Y, X). */
10393 if (TREE_CODE (arg0) == BIT_AND_EXPR
10394 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
10395 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
10396 return omit_one_operand (type, arg1, TREE_OPERAND (arg0, 1));
10397 /* X | (X & Y) is (Y, X). */
10398 if (TREE_CODE (arg1) == BIT_AND_EXPR
10399 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0)
10400 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 1)))
10401 return omit_one_operand (type, arg0, TREE_OPERAND (arg1, 1));
10402 /* X | (Y & X) is (Y, X). */
10403 if (TREE_CODE (arg1) == BIT_AND_EXPR
10404 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
10405 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
10406 return omit_one_operand (type, arg0, TREE_OPERAND (arg1, 0));
10408 t1 = distribute_bit_expr (code, type, arg0, arg1);
10409 if (t1 != NULL_TREE)
10410 return t1;
10412 /* Convert (or (not arg0) (not arg1)) to (not (and (arg0) (arg1))).
10414 This results in more efficient code for machines without a NAND
10415 instruction. Combine will canonicalize to the first form
10416 which will allow use of NAND instructions provided by the
10417 backend if they exist. */
10418 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10419 && TREE_CODE (arg1) == BIT_NOT_EXPR)
10421 return fold_build1 (BIT_NOT_EXPR, type,
10422 build2 (BIT_AND_EXPR, type,
10423 TREE_OPERAND (arg0, 0),
10424 TREE_OPERAND (arg1, 0)));
10427 /* See if this can be simplified into a rotate first. If that
10428 is unsuccessful continue in the association code. */
10429 goto bit_rotate;
10431 case BIT_XOR_EXPR:
10432 if (integer_zerop (arg1))
10433 return non_lvalue (fold_convert (type, arg0));
10434 if (integer_all_onesp (arg1))
10435 return fold_build1 (BIT_NOT_EXPR, type, op0);
10436 if (operand_equal_p (arg0, arg1, 0))
10437 return omit_one_operand (type, integer_zero_node, arg0);
10439 /* ~X ^ X is -1. */
10440 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10441 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10443 t1 = fold_convert (type, integer_zero_node);
10444 t1 = fold_unary (BIT_NOT_EXPR, type, t1);
10445 return omit_one_operand (type, t1, arg1);
10448 /* X ^ ~X is -1. */
10449 if (TREE_CODE (arg1) == BIT_NOT_EXPR
10450 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10452 t1 = fold_convert (type, integer_zero_node);
10453 t1 = fold_unary (BIT_NOT_EXPR, type, t1);
10454 return omit_one_operand (type, t1, arg0);
10457 /* If we are XORing two BIT_AND_EXPR's, both of which are and'ing
10458 with a constant, and the two constants have no bits in common,
10459 we should treat this as a BIT_IOR_EXPR since this may produce more
10460 simplifications. */
10461 if (TREE_CODE (arg0) == BIT_AND_EXPR
10462 && TREE_CODE (arg1) == BIT_AND_EXPR
10463 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
10464 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
10465 && integer_zerop (const_binop (BIT_AND_EXPR,
10466 TREE_OPERAND (arg0, 1),
10467 TREE_OPERAND (arg1, 1), 0)))
10469 code = BIT_IOR_EXPR;
10470 goto bit_ior;
10473 /* (X | Y) ^ X -> Y & ~ X*/
10474 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10475 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10477 tree t2 = TREE_OPERAND (arg0, 1);
10478 t1 = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg1),
10479 arg1);
10480 t1 = fold_build2 (BIT_AND_EXPR, type, fold_convert (type, t2),
10481 fold_convert (type, t1));
10482 return t1;
10485 /* (Y | X) ^ X -> Y & ~ X*/
10486 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10487 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10489 tree t2 = TREE_OPERAND (arg0, 0);
10490 t1 = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg1),
10491 arg1);
10492 t1 = fold_build2 (BIT_AND_EXPR, type, fold_convert (type, t2),
10493 fold_convert (type, t1));
10494 return t1;
10497 /* X ^ (X | Y) -> Y & ~ X*/
10498 if (TREE_CODE (arg1) == BIT_IOR_EXPR
10499 && operand_equal_p (TREE_OPERAND (arg1, 0), arg0, 0))
10501 tree t2 = TREE_OPERAND (arg1, 1);
10502 t1 = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg0),
10503 arg0);
10504 t1 = fold_build2 (BIT_AND_EXPR, type, fold_convert (type, t2),
10505 fold_convert (type, t1));
10506 return t1;
10509 /* X ^ (Y | X) -> Y & ~ X*/
10510 if (TREE_CODE (arg1) == BIT_IOR_EXPR
10511 && operand_equal_p (TREE_OPERAND (arg1, 1), arg0, 0))
10513 tree t2 = TREE_OPERAND (arg1, 0);
10514 t1 = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg0),
10515 arg0);
10516 t1 = fold_build2 (BIT_AND_EXPR, type, fold_convert (type, t2),
10517 fold_convert (type, t1));
10518 return t1;
10521 /* Convert ~X ^ ~Y to X ^ Y. */
10522 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10523 && TREE_CODE (arg1) == BIT_NOT_EXPR)
10524 return fold_build2 (code, type,
10525 fold_convert (type, TREE_OPERAND (arg0, 0)),
10526 fold_convert (type, TREE_OPERAND (arg1, 0)));
10528 /* Convert ~X ^ C to X ^ ~C. */
10529 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10530 && TREE_CODE (arg1) == INTEGER_CST)
10531 return fold_build2 (code, type,
10532 fold_convert (type, TREE_OPERAND (arg0, 0)),
10533 fold_build1 (BIT_NOT_EXPR, type, arg1));
10535 /* Fold (X & 1) ^ 1 as (X & 1) == 0. */
10536 if (TREE_CODE (arg0) == BIT_AND_EXPR
10537 && integer_onep (TREE_OPERAND (arg0, 1))
10538 && integer_onep (arg1))
10539 return fold_build2 (EQ_EXPR, type, arg0,
10540 build_int_cst (TREE_TYPE (arg0), 0));
10542 /* Fold (X & Y) ^ Y as ~X & Y. */
10543 if (TREE_CODE (arg0) == BIT_AND_EXPR
10544 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10546 tem = fold_convert (type, TREE_OPERAND (arg0, 0));
10547 return fold_build2 (BIT_AND_EXPR, type,
10548 fold_build1 (BIT_NOT_EXPR, type, tem),
10549 fold_convert (type, arg1));
10551 /* Fold (X & Y) ^ X as ~Y & X. */
10552 if (TREE_CODE (arg0) == BIT_AND_EXPR
10553 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
10554 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
10556 tem = fold_convert (type, TREE_OPERAND (arg0, 1));
10557 return fold_build2 (BIT_AND_EXPR, type,
10558 fold_build1 (BIT_NOT_EXPR, type, tem),
10559 fold_convert (type, arg1));
10561 /* Fold X ^ (X & Y) as X & ~Y. */
10562 if (TREE_CODE (arg1) == BIT_AND_EXPR
10563 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10565 tem = fold_convert (type, TREE_OPERAND (arg1, 1));
10566 return fold_build2 (BIT_AND_EXPR, type,
10567 fold_convert (type, arg0),
10568 fold_build1 (BIT_NOT_EXPR, type, tem));
10570 /* Fold X ^ (Y & X) as ~Y & X. */
10571 if (TREE_CODE (arg1) == BIT_AND_EXPR
10572 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
10573 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
10575 tem = fold_convert (type, TREE_OPERAND (arg1, 0));
10576 return fold_build2 (BIT_AND_EXPR, type,
10577 fold_build1 (BIT_NOT_EXPR, type, tem),
10578 fold_convert (type, arg0));
10581 /* See if this can be simplified into a rotate first. If that
10582 is unsuccessful continue in the association code. */
10583 goto bit_rotate;
10585 case BIT_AND_EXPR:
10586 if (integer_all_onesp (arg1))
10587 return non_lvalue (fold_convert (type, arg0));
10588 if (integer_zerop (arg1))
10589 return omit_one_operand (type, arg1, arg0);
10590 if (operand_equal_p (arg0, arg1, 0))
10591 return non_lvalue (fold_convert (type, arg0));
10593 /* ~X & X is always zero. */
10594 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10595 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10596 return omit_one_operand (type, integer_zero_node, arg1);
10598 /* X & ~X is always zero. */
10599 if (TREE_CODE (arg1) == BIT_NOT_EXPR
10600 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10601 return omit_one_operand (type, integer_zero_node, arg0);
10603 /* Canonicalize (X | C1) & C2 as (X & C2) | (C1 & C2). */
10604 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10605 && TREE_CODE (arg1) == INTEGER_CST
10606 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
10608 tree tmp1 = fold_convert (TREE_TYPE (arg0), arg1);
10609 tree tmp2 = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
10610 TREE_OPERAND (arg0, 0), tmp1);
10611 tree tmp3 = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
10612 TREE_OPERAND (arg0, 1), tmp1);
10613 return fold_convert (type,
10614 fold_build2 (BIT_IOR_EXPR, TREE_TYPE (arg0),
10615 tmp2, tmp3));
10618 /* (X | Y) & Y is (X, Y). */
10619 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10620 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10621 return omit_one_operand (type, arg1, TREE_OPERAND (arg0, 0));
10622 /* (X | Y) & X is (Y, X). */
10623 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10624 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
10625 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
10626 return omit_one_operand (type, arg1, TREE_OPERAND (arg0, 1));
10627 /* X & (X | Y) is (Y, X). */
10628 if (TREE_CODE (arg1) == BIT_IOR_EXPR
10629 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0)
10630 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 1)))
10631 return omit_one_operand (type, arg0, TREE_OPERAND (arg1, 1));
10632 /* X & (Y | X) is (Y, X). */
10633 if (TREE_CODE (arg1) == BIT_IOR_EXPR
10634 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
10635 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
10636 return omit_one_operand (type, arg0, TREE_OPERAND (arg1, 0));
10638 /* Fold (X ^ 1) & 1 as (X & 1) == 0. */
10639 if (TREE_CODE (arg0) == BIT_XOR_EXPR
10640 && integer_onep (TREE_OPERAND (arg0, 1))
10641 && integer_onep (arg1))
10643 tem = TREE_OPERAND (arg0, 0);
10644 return fold_build2 (EQ_EXPR, type,
10645 fold_build2 (BIT_AND_EXPR, TREE_TYPE (tem), tem,
10646 build_int_cst (TREE_TYPE (tem), 1)),
10647 build_int_cst (TREE_TYPE (tem), 0));
10649 /* Fold ~X & 1 as (X & 1) == 0. */
10650 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10651 && integer_onep (arg1))
10653 tem = TREE_OPERAND (arg0, 0);
10654 return fold_build2 (EQ_EXPR, type,
10655 fold_build2 (BIT_AND_EXPR, TREE_TYPE (tem), tem,
10656 build_int_cst (TREE_TYPE (tem), 1)),
10657 build_int_cst (TREE_TYPE (tem), 0));
10660 /* Fold (X ^ Y) & Y as ~X & Y. */
10661 if (TREE_CODE (arg0) == BIT_XOR_EXPR
10662 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10664 tem = fold_convert (type, TREE_OPERAND (arg0, 0));
10665 return fold_build2 (BIT_AND_EXPR, type,
10666 fold_build1 (BIT_NOT_EXPR, type, tem),
10667 fold_convert (type, arg1));
10669 /* Fold (X ^ Y) & X as ~Y & X. */
10670 if (TREE_CODE (arg0) == BIT_XOR_EXPR
10671 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
10672 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
10674 tem = fold_convert (type, TREE_OPERAND (arg0, 1));
10675 return fold_build2 (BIT_AND_EXPR, type,
10676 fold_build1 (BIT_NOT_EXPR, type, tem),
10677 fold_convert (type, arg1));
10679 /* Fold X & (X ^ Y) as X & ~Y. */
10680 if (TREE_CODE (arg1) == BIT_XOR_EXPR
10681 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10683 tem = fold_convert (type, TREE_OPERAND (arg1, 1));
10684 return fold_build2 (BIT_AND_EXPR, type,
10685 fold_convert (type, arg0),
10686 fold_build1 (BIT_NOT_EXPR, type, tem));
10688 /* Fold X & (Y ^ X) as ~Y & X. */
10689 if (TREE_CODE (arg1) == BIT_XOR_EXPR
10690 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
10691 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
10693 tem = fold_convert (type, TREE_OPERAND (arg1, 0));
10694 return fold_build2 (BIT_AND_EXPR, type,
10695 fold_build1 (BIT_NOT_EXPR, type, tem),
10696 fold_convert (type, arg0));
10699 t1 = distribute_bit_expr (code, type, arg0, arg1);
10700 if (t1 != NULL_TREE)
10701 return t1;
10702 /* Simplify ((int)c & 0377) into (int)c, if c is unsigned char. */
10703 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) == NOP_EXPR
10704 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
10706 unsigned int prec
10707 = TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)));
10709 if (prec < BITS_PER_WORD && prec < HOST_BITS_PER_WIDE_INT
10710 && (~TREE_INT_CST_LOW (arg1)
10711 & (((HOST_WIDE_INT) 1 << prec) - 1)) == 0)
10712 return fold_convert (type, TREE_OPERAND (arg0, 0));
10715 /* Convert (and (not arg0) (not arg1)) to (not (or (arg0) (arg1))).
10717 This results in more efficient code for machines without a NOR
10718 instruction. Combine will canonicalize to the first form
10719 which will allow use of NOR instructions provided by the
10720 backend if they exist. */
10721 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10722 && TREE_CODE (arg1) == BIT_NOT_EXPR)
10724 return fold_build1 (BIT_NOT_EXPR, type,
10725 build2 (BIT_IOR_EXPR, type,
10726 fold_convert (type,
10727 TREE_OPERAND (arg0, 0)),
10728 fold_convert (type,
10729 TREE_OPERAND (arg1, 0))));
10732 /* If arg0 is derived from the address of an object or function, we may
10733 be able to fold this expression using the object or function's
10734 alignment. */
10735 if (POINTER_TYPE_P (TREE_TYPE (arg0)) && host_integerp (arg1, 1))
10737 unsigned HOST_WIDE_INT modulus, residue;
10738 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (arg1);
10740 modulus = get_pointer_modulus_and_residue (arg0, &residue);
10742 /* This works because modulus is a power of 2. If this weren't the
10743 case, we'd have to replace it by its greatest power-of-2
10744 divisor: modulus & -modulus. */
10745 if (low < modulus)
10746 return build_int_cst (type, residue & low);
10749 /* Fold (X << C1) & C2 into (X << C1) & (C2 | ((1 << C1) - 1))
10750 (X >> C1) & C2 into (X >> C1) & (C2 | ~((type) -1 >> C1))
10751 if the new mask might be further optimized. */
10752 if ((TREE_CODE (arg0) == LSHIFT_EXPR
10753 || TREE_CODE (arg0) == RSHIFT_EXPR)
10754 && host_integerp (TREE_OPERAND (arg0, 1), 1)
10755 && host_integerp (arg1, TYPE_UNSIGNED (TREE_TYPE (arg1)))
10756 && tree_low_cst (TREE_OPERAND (arg0, 1), 1)
10757 < TYPE_PRECISION (TREE_TYPE (arg0))
10758 && TYPE_PRECISION (TREE_TYPE (arg0)) <= HOST_BITS_PER_WIDE_INT
10759 && tree_low_cst (TREE_OPERAND (arg0, 1), 1) > 0)
10761 unsigned int shiftc = tree_low_cst (TREE_OPERAND (arg0, 1), 1);
10762 unsigned HOST_WIDE_INT mask
10763 = tree_low_cst (arg1, TYPE_UNSIGNED (TREE_TYPE (arg1)));
10764 unsigned HOST_WIDE_INT newmask, zerobits = 0;
10765 tree shift_type = TREE_TYPE (arg0);
10767 if (TREE_CODE (arg0) == LSHIFT_EXPR)
10768 zerobits = ((((unsigned HOST_WIDE_INT) 1) << shiftc) - 1);
10769 else if (TREE_CODE (arg0) == RSHIFT_EXPR
10770 && TYPE_PRECISION (TREE_TYPE (arg0))
10771 == GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg0))))
10773 unsigned int prec = TYPE_PRECISION (TREE_TYPE (arg0));
10774 tree arg00 = TREE_OPERAND (arg0, 0);
10775 /* See if more bits can be proven as zero because of
10776 zero extension. */
10777 if (TREE_CODE (arg00) == NOP_EXPR
10778 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg00, 0))))
10780 tree inner_type = TREE_TYPE (TREE_OPERAND (arg00, 0));
10781 if (TYPE_PRECISION (inner_type)
10782 == GET_MODE_BITSIZE (TYPE_MODE (inner_type))
10783 && TYPE_PRECISION (inner_type) < prec)
10785 prec = TYPE_PRECISION (inner_type);
10786 /* See if we can shorten the right shift. */
10787 if (shiftc < prec)
10788 shift_type = inner_type;
10791 zerobits = ~(unsigned HOST_WIDE_INT) 0;
10792 zerobits >>= HOST_BITS_PER_WIDE_INT - shiftc;
10793 zerobits <<= prec - shiftc;
10794 /* For arithmetic shift if sign bit could be set, zerobits
10795 can contain actually sign bits, so no transformation is
10796 possible, unless MASK masks them all away. In that
10797 case the shift needs to be converted into logical shift. */
10798 if (!TYPE_UNSIGNED (TREE_TYPE (arg0))
10799 && prec == TYPE_PRECISION (TREE_TYPE (arg0)))
10801 if ((mask & zerobits) == 0)
10802 shift_type = unsigned_type_for (TREE_TYPE (arg0));
10803 else
10804 zerobits = 0;
10808 /* ((X << 16) & 0xff00) is (X, 0). */
10809 if ((mask & zerobits) == mask)
10810 return omit_one_operand (type, build_int_cst (type, 0), arg0);
10812 newmask = mask | zerobits;
10813 if (newmask != mask && (newmask & (newmask + 1)) == 0)
10815 unsigned int prec;
10817 /* Only do the transformation if NEWMASK is some integer
10818 mode's mask. */
10819 for (prec = BITS_PER_UNIT;
10820 prec < HOST_BITS_PER_WIDE_INT; prec <<= 1)
10821 if (newmask == (((unsigned HOST_WIDE_INT) 1) << prec) - 1)
10822 break;
10823 if (prec < HOST_BITS_PER_WIDE_INT
10824 || newmask == ~(unsigned HOST_WIDE_INT) 0)
10826 if (shift_type != TREE_TYPE (arg0))
10828 tem = fold_build2 (TREE_CODE (arg0), shift_type,
10829 fold_convert (shift_type,
10830 TREE_OPERAND (arg0, 0)),
10831 TREE_OPERAND (arg0, 1));
10832 tem = fold_convert (type, tem);
10834 else
10835 tem = op0;
10836 return fold_build2 (BIT_AND_EXPR, type, tem,
10837 build_int_cst_type (TREE_TYPE (op1),
10838 newmask));
10843 goto associate;
10845 case RDIV_EXPR:
10846 /* Don't touch a floating-point divide by zero unless the mode
10847 of the constant can represent infinity. */
10848 if (TREE_CODE (arg1) == REAL_CST
10849 && !MODE_HAS_INFINITIES (TYPE_MODE (TREE_TYPE (arg1)))
10850 && real_zerop (arg1))
10851 return NULL_TREE;
10853 /* Optimize A / A to 1.0 if we don't care about
10854 NaNs or Infinities. Skip the transformation
10855 for non-real operands. */
10856 if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (arg0))
10857 && ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
10858 && ! HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg0)))
10859 && operand_equal_p (arg0, arg1, 0))
10861 tree r = build_real (TREE_TYPE (arg0), dconst1);
10863 return omit_two_operands (type, r, arg0, arg1);
10866 /* The complex version of the above A / A optimization. */
10867 if (COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0))
10868 && operand_equal_p (arg0, arg1, 0))
10870 tree elem_type = TREE_TYPE (TREE_TYPE (arg0));
10871 if (! HONOR_NANS (TYPE_MODE (elem_type))
10872 && ! HONOR_INFINITIES (TYPE_MODE (elem_type)))
10874 tree r = build_real (elem_type, dconst1);
10875 /* omit_two_operands will call fold_convert for us. */
10876 return omit_two_operands (type, r, arg0, arg1);
10880 /* (-A) / (-B) -> A / B */
10881 if (TREE_CODE (arg0) == NEGATE_EXPR && negate_expr_p (arg1))
10882 return fold_build2 (RDIV_EXPR, type,
10883 TREE_OPERAND (arg0, 0),
10884 negate_expr (arg1));
10885 if (TREE_CODE (arg1) == NEGATE_EXPR && negate_expr_p (arg0))
10886 return fold_build2 (RDIV_EXPR, type,
10887 negate_expr (arg0),
10888 TREE_OPERAND (arg1, 0));
10890 /* In IEEE floating point, x/1 is not equivalent to x for snans. */
10891 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
10892 && real_onep (arg1))
10893 return non_lvalue (fold_convert (type, arg0));
10895 /* In IEEE floating point, x/-1 is not equivalent to -x for snans. */
10896 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
10897 && real_minus_onep (arg1))
10898 return non_lvalue (fold_convert (type, negate_expr (arg0)));
10900 /* If ARG1 is a constant, we can convert this to a multiply by the
10901 reciprocal. This does not have the same rounding properties,
10902 so only do this if -freciprocal-math. We can actually
10903 always safely do it if ARG1 is a power of two, but it's hard to
10904 tell if it is or not in a portable manner. */
10905 if (TREE_CODE (arg1) == REAL_CST)
10907 if (flag_reciprocal_math
10908 && 0 != (tem = const_binop (code, build_real (type, dconst1),
10909 arg1, 0)))
10910 return fold_build2 (MULT_EXPR, type, arg0, tem);
10911 /* Find the reciprocal if optimizing and the result is exact. */
10912 if (optimize)
10914 REAL_VALUE_TYPE r;
10915 r = TREE_REAL_CST (arg1);
10916 if (exact_real_inverse (TYPE_MODE(TREE_TYPE(arg0)), &r))
10918 tem = build_real (type, r);
10919 return fold_build2 (MULT_EXPR, type,
10920 fold_convert (type, arg0), tem);
10924 /* Convert A/B/C to A/(B*C). */
10925 if (flag_reciprocal_math
10926 && TREE_CODE (arg0) == RDIV_EXPR)
10927 return fold_build2 (RDIV_EXPR, type, TREE_OPERAND (arg0, 0),
10928 fold_build2 (MULT_EXPR, type,
10929 TREE_OPERAND (arg0, 1), arg1));
10931 /* Convert A/(B/C) to (A/B)*C. */
10932 if (flag_reciprocal_math
10933 && TREE_CODE (arg1) == RDIV_EXPR)
10934 return fold_build2 (MULT_EXPR, type,
10935 fold_build2 (RDIV_EXPR, type, arg0,
10936 TREE_OPERAND (arg1, 0)),
10937 TREE_OPERAND (arg1, 1));
10939 /* Convert C1/(X*C2) into (C1/C2)/X. */
10940 if (flag_reciprocal_math
10941 && TREE_CODE (arg1) == MULT_EXPR
10942 && TREE_CODE (arg0) == REAL_CST
10943 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST)
10945 tree tem = const_binop (RDIV_EXPR, arg0,
10946 TREE_OPERAND (arg1, 1), 0);
10947 if (tem)
10948 return fold_build2 (RDIV_EXPR, type, tem,
10949 TREE_OPERAND (arg1, 0));
10952 if (flag_unsafe_math_optimizations)
10954 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
10955 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
10957 /* Optimize sin(x)/cos(x) as tan(x). */
10958 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_COS)
10959 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_COSF)
10960 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_COSL))
10961 && operand_equal_p (CALL_EXPR_ARG (arg0, 0),
10962 CALL_EXPR_ARG (arg1, 0), 0))
10964 tree tanfn = mathfn_built_in (type, BUILT_IN_TAN);
10966 if (tanfn != NULL_TREE)
10967 return build_call_expr (tanfn, 1, CALL_EXPR_ARG (arg0, 0));
10970 /* Optimize cos(x)/sin(x) as 1.0/tan(x). */
10971 if (((fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_SIN)
10972 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_SINF)
10973 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_SINL))
10974 && operand_equal_p (CALL_EXPR_ARG (arg0, 0),
10975 CALL_EXPR_ARG (arg1, 0), 0))
10977 tree tanfn = mathfn_built_in (type, BUILT_IN_TAN);
10979 if (tanfn != NULL_TREE)
10981 tree tmp = build_call_expr (tanfn, 1, CALL_EXPR_ARG (arg0, 0));
10982 return fold_build2 (RDIV_EXPR, type,
10983 build_real (type, dconst1), tmp);
10987 /* Optimize sin(x)/tan(x) as cos(x) if we don't care about
10988 NaNs or Infinities. */
10989 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_TAN)
10990 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_TANF)
10991 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_TANL)))
10993 tree arg00 = CALL_EXPR_ARG (arg0, 0);
10994 tree arg01 = CALL_EXPR_ARG (arg1, 0);
10996 if (! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg00)))
10997 && ! HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg00)))
10998 && operand_equal_p (arg00, arg01, 0))
11000 tree cosfn = mathfn_built_in (type, BUILT_IN_COS);
11002 if (cosfn != NULL_TREE)
11003 return build_call_expr (cosfn, 1, arg00);
11007 /* Optimize tan(x)/sin(x) as 1.0/cos(x) if we don't care about
11008 NaNs or Infinities. */
11009 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_SIN)
11010 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_SINF)
11011 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_SINL)))
11013 tree arg00 = CALL_EXPR_ARG (arg0, 0);
11014 tree arg01 = CALL_EXPR_ARG (arg1, 0);
11016 if (! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg00)))
11017 && ! HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg00)))
11018 && operand_equal_p (arg00, arg01, 0))
11020 tree cosfn = mathfn_built_in (type, BUILT_IN_COS);
11022 if (cosfn != NULL_TREE)
11024 tree tmp = build_call_expr (cosfn, 1, arg00);
11025 return fold_build2 (RDIV_EXPR, type,
11026 build_real (type, dconst1),
11027 tmp);
11032 /* Optimize pow(x,c)/x as pow(x,c-1). */
11033 if (fcode0 == BUILT_IN_POW
11034 || fcode0 == BUILT_IN_POWF
11035 || fcode0 == BUILT_IN_POWL)
11037 tree arg00 = CALL_EXPR_ARG (arg0, 0);
11038 tree arg01 = CALL_EXPR_ARG (arg0, 1);
11039 if (TREE_CODE (arg01) == REAL_CST
11040 && !TREE_OVERFLOW (arg01)
11041 && operand_equal_p (arg1, arg00, 0))
11043 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
11044 REAL_VALUE_TYPE c;
11045 tree arg;
11047 c = TREE_REAL_CST (arg01);
11048 real_arithmetic (&c, MINUS_EXPR, &c, &dconst1);
11049 arg = build_real (type, c);
11050 return build_call_expr (powfn, 2, arg1, arg);
11054 /* Optimize a/root(b/c) into a*root(c/b). */
11055 if (BUILTIN_ROOT_P (fcode1))
11057 tree rootarg = CALL_EXPR_ARG (arg1, 0);
11059 if (TREE_CODE (rootarg) == RDIV_EXPR)
11061 tree rootfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
11062 tree b = TREE_OPERAND (rootarg, 0);
11063 tree c = TREE_OPERAND (rootarg, 1);
11065 tree tmp = fold_build2 (RDIV_EXPR, type, c, b);
11067 tmp = build_call_expr (rootfn, 1, tmp);
11068 return fold_build2 (MULT_EXPR, type, arg0, tmp);
11072 /* Optimize x/expN(y) into x*expN(-y). */
11073 if (BUILTIN_EXPONENT_P (fcode1))
11075 tree expfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
11076 tree arg = negate_expr (CALL_EXPR_ARG (arg1, 0));
11077 arg1 = build_call_expr (expfn, 1, fold_convert (type, arg));
11078 return fold_build2 (MULT_EXPR, type, arg0, arg1);
11081 /* Optimize x/pow(y,z) into x*pow(y,-z). */
11082 if (fcode1 == BUILT_IN_POW
11083 || fcode1 == BUILT_IN_POWF
11084 || fcode1 == BUILT_IN_POWL)
11086 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
11087 tree arg10 = CALL_EXPR_ARG (arg1, 0);
11088 tree arg11 = CALL_EXPR_ARG (arg1, 1);
11089 tree neg11 = fold_convert (type, negate_expr (arg11));
11090 arg1 = build_call_expr (powfn, 2, arg10, neg11);
11091 return fold_build2 (MULT_EXPR, type, arg0, arg1);
11094 return NULL_TREE;
11096 case TRUNC_DIV_EXPR:
11097 case FLOOR_DIV_EXPR:
11098 /* Simplify A / (B << N) where A and B are positive and B is
11099 a power of 2, to A >> (N + log2(B)). */
11100 strict_overflow_p = false;
11101 if (TREE_CODE (arg1) == LSHIFT_EXPR
11102 && (TYPE_UNSIGNED (type)
11103 || tree_expr_nonnegative_warnv_p (op0, &strict_overflow_p)))
11105 tree sval = TREE_OPERAND (arg1, 0);
11106 if (integer_pow2p (sval) && tree_int_cst_sgn (sval) > 0)
11108 tree sh_cnt = TREE_OPERAND (arg1, 1);
11109 unsigned long pow2 = exact_log2 (TREE_INT_CST_LOW (sval));
11111 if (strict_overflow_p)
11112 fold_overflow_warning (("assuming signed overflow does not "
11113 "occur when simplifying A / (B << N)"),
11114 WARN_STRICT_OVERFLOW_MISC);
11116 sh_cnt = fold_build2 (PLUS_EXPR, TREE_TYPE (sh_cnt),
11117 sh_cnt, build_int_cst (NULL_TREE, pow2));
11118 return fold_build2 (RSHIFT_EXPR, type,
11119 fold_convert (type, arg0), sh_cnt);
11123 /* For unsigned integral types, FLOOR_DIV_EXPR is the same as
11124 TRUNC_DIV_EXPR. Rewrite into the latter in this case. */
11125 if (INTEGRAL_TYPE_P (type)
11126 && TYPE_UNSIGNED (type)
11127 && code == FLOOR_DIV_EXPR)
11128 return fold_build2 (TRUNC_DIV_EXPR, type, op0, op1);
11130 /* Fall thru */
11132 case ROUND_DIV_EXPR:
11133 case CEIL_DIV_EXPR:
11134 case EXACT_DIV_EXPR:
11135 if (integer_onep (arg1))
11136 return non_lvalue (fold_convert (type, arg0));
11137 if (integer_zerop (arg1))
11138 return NULL_TREE;
11139 /* X / -1 is -X. */
11140 if (!TYPE_UNSIGNED (type)
11141 && TREE_CODE (arg1) == INTEGER_CST
11142 && TREE_INT_CST_LOW (arg1) == (unsigned HOST_WIDE_INT) -1
11143 && TREE_INT_CST_HIGH (arg1) == -1)
11144 return fold_convert (type, negate_expr (arg0));
11146 /* Convert -A / -B to A / B when the type is signed and overflow is
11147 undefined. */
11148 if ((!INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_UNDEFINED (type))
11149 && TREE_CODE (arg0) == NEGATE_EXPR
11150 && negate_expr_p (arg1))
11152 if (INTEGRAL_TYPE_P (type))
11153 fold_overflow_warning (("assuming signed overflow does not occur "
11154 "when distributing negation across "
11155 "division"),
11156 WARN_STRICT_OVERFLOW_MISC);
11157 return fold_build2 (code, type,
11158 fold_convert (type, TREE_OPERAND (arg0, 0)),
11159 negate_expr (arg1));
11161 if ((!INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_UNDEFINED (type))
11162 && TREE_CODE (arg1) == NEGATE_EXPR
11163 && negate_expr_p (arg0))
11165 if (INTEGRAL_TYPE_P (type))
11166 fold_overflow_warning (("assuming signed overflow does not occur "
11167 "when distributing negation across "
11168 "division"),
11169 WARN_STRICT_OVERFLOW_MISC);
11170 return fold_build2 (code, type, negate_expr (arg0),
11171 TREE_OPERAND (arg1, 0));
11174 /* If arg0 is a multiple of arg1, then rewrite to the fastest div
11175 operation, EXACT_DIV_EXPR.
11177 Note that only CEIL_DIV_EXPR and FLOOR_DIV_EXPR are rewritten now.
11178 At one time others generated faster code, it's not clear if they do
11179 after the last round to changes to the DIV code in expmed.c. */
11180 if ((code == CEIL_DIV_EXPR || code == FLOOR_DIV_EXPR)
11181 && multiple_of_p (type, arg0, arg1))
11182 return fold_build2 (EXACT_DIV_EXPR, type, arg0, arg1);
11184 strict_overflow_p = false;
11185 if (TREE_CODE (arg1) == INTEGER_CST
11186 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE,
11187 &strict_overflow_p)))
11189 if (strict_overflow_p)
11190 fold_overflow_warning (("assuming signed overflow does not occur "
11191 "when simplifying division"),
11192 WARN_STRICT_OVERFLOW_MISC);
11193 return fold_convert (type, tem);
11196 return NULL_TREE;
11198 case CEIL_MOD_EXPR:
11199 case FLOOR_MOD_EXPR:
11200 case ROUND_MOD_EXPR:
11201 case TRUNC_MOD_EXPR:
11202 /* X % 1 is always zero, but be sure to preserve any side
11203 effects in X. */
11204 if (integer_onep (arg1))
11205 return omit_one_operand (type, integer_zero_node, arg0);
11207 /* X % 0, return X % 0 unchanged so that we can get the
11208 proper warnings and errors. */
11209 if (integer_zerop (arg1))
11210 return NULL_TREE;
11212 /* 0 % X is always zero, but be sure to preserve any side
11213 effects in X. Place this after checking for X == 0. */
11214 if (integer_zerop (arg0))
11215 return omit_one_operand (type, integer_zero_node, arg1);
11217 /* X % -1 is zero. */
11218 if (!TYPE_UNSIGNED (type)
11219 && TREE_CODE (arg1) == INTEGER_CST
11220 && TREE_INT_CST_LOW (arg1) == (unsigned HOST_WIDE_INT) -1
11221 && TREE_INT_CST_HIGH (arg1) == -1)
11222 return omit_one_operand (type, integer_zero_node, arg0);
11224 /* Optimize TRUNC_MOD_EXPR by a power of two into a BIT_AND_EXPR,
11225 i.e. "X % C" into "X & (C - 1)", if X and C are positive. */
11226 strict_overflow_p = false;
11227 if ((code == TRUNC_MOD_EXPR || code == FLOOR_MOD_EXPR)
11228 && (TYPE_UNSIGNED (type)
11229 || tree_expr_nonnegative_warnv_p (op0, &strict_overflow_p)))
11231 tree c = arg1;
11232 /* Also optimize A % (C << N) where C is a power of 2,
11233 to A & ((C << N) - 1). */
11234 if (TREE_CODE (arg1) == LSHIFT_EXPR)
11235 c = TREE_OPERAND (arg1, 0);
11237 if (integer_pow2p (c) && tree_int_cst_sgn (c) > 0)
11239 tree mask = fold_build2 (MINUS_EXPR, TREE_TYPE (arg1), arg1,
11240 build_int_cst (TREE_TYPE (arg1), 1));
11241 if (strict_overflow_p)
11242 fold_overflow_warning (("assuming signed overflow does not "
11243 "occur when simplifying "
11244 "X % (power of two)"),
11245 WARN_STRICT_OVERFLOW_MISC);
11246 return fold_build2 (BIT_AND_EXPR, type,
11247 fold_convert (type, arg0),
11248 fold_convert (type, mask));
11252 /* X % -C is the same as X % C. */
11253 if (code == TRUNC_MOD_EXPR
11254 && !TYPE_UNSIGNED (type)
11255 && TREE_CODE (arg1) == INTEGER_CST
11256 && !TREE_OVERFLOW (arg1)
11257 && TREE_INT_CST_HIGH (arg1) < 0
11258 && !TYPE_OVERFLOW_TRAPS (type)
11259 /* Avoid this transformation if C is INT_MIN, i.e. C == -C. */
11260 && !sign_bit_p (arg1, arg1))
11261 return fold_build2 (code, type, fold_convert (type, arg0),
11262 fold_convert (type, negate_expr (arg1)));
11264 /* X % -Y is the same as X % Y. */
11265 if (code == TRUNC_MOD_EXPR
11266 && !TYPE_UNSIGNED (type)
11267 && TREE_CODE (arg1) == NEGATE_EXPR
11268 && !TYPE_OVERFLOW_TRAPS (type))
11269 return fold_build2 (code, type, fold_convert (type, arg0),
11270 fold_convert (type, TREE_OPERAND (arg1, 0)));
11272 if (TREE_CODE (arg1) == INTEGER_CST
11273 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE,
11274 &strict_overflow_p)))
11276 if (strict_overflow_p)
11277 fold_overflow_warning (("assuming signed overflow does not occur "
11278 "when simplifying modulos"),
11279 WARN_STRICT_OVERFLOW_MISC);
11280 return fold_convert (type, tem);
11283 return NULL_TREE;
11285 case LROTATE_EXPR:
11286 case RROTATE_EXPR:
11287 if (integer_all_onesp (arg0))
11288 return omit_one_operand (type, arg0, arg1);
11289 goto shift;
11291 case RSHIFT_EXPR:
11292 /* Optimize -1 >> x for arithmetic right shifts. */
11293 if (integer_all_onesp (arg0) && !TYPE_UNSIGNED (type))
11294 return omit_one_operand (type, arg0, arg1);
11295 /* ... fall through ... */
11297 case LSHIFT_EXPR:
11298 shift:
11299 if (integer_zerop (arg1))
11300 return non_lvalue (fold_convert (type, arg0));
11301 if (integer_zerop (arg0))
11302 return omit_one_operand (type, arg0, arg1);
11304 /* Since negative shift count is not well-defined,
11305 don't try to compute it in the compiler. */
11306 if (TREE_CODE (arg1) == INTEGER_CST && tree_int_cst_sgn (arg1) < 0)
11307 return NULL_TREE;
11309 /* Turn (a OP c1) OP c2 into a OP (c1+c2). */
11310 if (TREE_CODE (op0) == code && host_integerp (arg1, false)
11311 && TREE_INT_CST_LOW (arg1) < TYPE_PRECISION (type)
11312 && host_integerp (TREE_OPERAND (arg0, 1), false)
11313 && TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)) < TYPE_PRECISION (type))
11315 HOST_WIDE_INT low = (TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1))
11316 + TREE_INT_CST_LOW (arg1));
11318 /* Deal with a OP (c1 + c2) being undefined but (a OP c1) OP c2
11319 being well defined. */
11320 if (low >= TYPE_PRECISION (type))
11322 if (code == LROTATE_EXPR || code == RROTATE_EXPR)
11323 low = low % TYPE_PRECISION (type);
11324 else if (TYPE_UNSIGNED (type) || code == LSHIFT_EXPR)
11325 return build_int_cst (type, 0);
11326 else
11327 low = TYPE_PRECISION (type) - 1;
11330 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
11331 build_int_cst (type, low));
11334 /* Transform (x >> c) << c into x & (-1<<c), or transform (x << c) >> c
11335 into x & ((unsigned)-1 >> c) for unsigned types. */
11336 if (((code == LSHIFT_EXPR && TREE_CODE (arg0) == RSHIFT_EXPR)
11337 || (TYPE_UNSIGNED (type)
11338 && code == RSHIFT_EXPR && TREE_CODE (arg0) == LSHIFT_EXPR))
11339 && host_integerp (arg1, false)
11340 && TREE_INT_CST_LOW (arg1) < TYPE_PRECISION (type)
11341 && host_integerp (TREE_OPERAND (arg0, 1), false)
11342 && TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)) < TYPE_PRECISION (type))
11344 HOST_WIDE_INT low0 = TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1));
11345 HOST_WIDE_INT low1 = TREE_INT_CST_LOW (arg1);
11346 tree lshift;
11347 tree arg00;
11349 if (low0 == low1)
11351 arg00 = fold_convert (type, TREE_OPERAND (arg0, 0));
11353 lshift = build_int_cst (type, -1);
11354 lshift = int_const_binop (code, lshift, arg1, 0);
11356 return fold_build2 (BIT_AND_EXPR, type, arg00, lshift);
11360 /* Rewrite an LROTATE_EXPR by a constant into an
11361 RROTATE_EXPR by a new constant. */
11362 if (code == LROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST)
11364 tree tem = build_int_cst (TREE_TYPE (arg1),
11365 TYPE_PRECISION (type));
11366 tem = const_binop (MINUS_EXPR, tem, arg1, 0);
11367 return fold_build2 (RROTATE_EXPR, type, op0, tem);
11370 /* If we have a rotate of a bit operation with the rotate count and
11371 the second operand of the bit operation both constant,
11372 permute the two operations. */
11373 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
11374 && (TREE_CODE (arg0) == BIT_AND_EXPR
11375 || TREE_CODE (arg0) == BIT_IOR_EXPR
11376 || TREE_CODE (arg0) == BIT_XOR_EXPR)
11377 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11378 return fold_build2 (TREE_CODE (arg0), type,
11379 fold_build2 (code, type,
11380 TREE_OPERAND (arg0, 0), arg1),
11381 fold_build2 (code, type,
11382 TREE_OPERAND (arg0, 1), arg1));
11384 /* Two consecutive rotates adding up to the precision of the
11385 type can be ignored. */
11386 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
11387 && TREE_CODE (arg0) == RROTATE_EXPR
11388 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
11389 && TREE_INT_CST_HIGH (arg1) == 0
11390 && TREE_INT_CST_HIGH (TREE_OPERAND (arg0, 1)) == 0
11391 && ((TREE_INT_CST_LOW (arg1)
11392 + TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)))
11393 == (unsigned int) TYPE_PRECISION (type)))
11394 return TREE_OPERAND (arg0, 0);
11396 /* Fold (X & C2) << C1 into (X << C1) & (C2 << C1)
11397 (X & C2) >> C1 into (X >> C1) & (C2 >> C1)
11398 if the latter can be further optimized. */
11399 if ((code == LSHIFT_EXPR || code == RSHIFT_EXPR)
11400 && TREE_CODE (arg0) == BIT_AND_EXPR
11401 && TREE_CODE (arg1) == INTEGER_CST
11402 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11404 tree mask = fold_build2 (code, type,
11405 fold_convert (type, TREE_OPERAND (arg0, 1)),
11406 arg1);
11407 tree shift = fold_build2 (code, type,
11408 fold_convert (type, TREE_OPERAND (arg0, 0)),
11409 arg1);
11410 tem = fold_binary (BIT_AND_EXPR, type, shift, mask);
11411 if (tem)
11412 return tem;
11415 return NULL_TREE;
11417 case MIN_EXPR:
11418 if (operand_equal_p (arg0, arg1, 0))
11419 return omit_one_operand (type, arg0, arg1);
11420 if (INTEGRAL_TYPE_P (type)
11421 && operand_equal_p (arg1, TYPE_MIN_VALUE (type), OEP_ONLY_CONST))
11422 return omit_one_operand (type, arg1, arg0);
11423 tem = fold_minmax (MIN_EXPR, type, arg0, arg1);
11424 if (tem)
11425 return tem;
11426 goto associate;
11428 case MAX_EXPR:
11429 if (operand_equal_p (arg0, arg1, 0))
11430 return omit_one_operand (type, arg0, arg1);
11431 if (INTEGRAL_TYPE_P (type)
11432 && TYPE_MAX_VALUE (type)
11433 && operand_equal_p (arg1, TYPE_MAX_VALUE (type), OEP_ONLY_CONST))
11434 return omit_one_operand (type, arg1, arg0);
11435 tem = fold_minmax (MAX_EXPR, type, arg0, arg1);
11436 if (tem)
11437 return tem;
11438 goto associate;
11440 case TRUTH_ANDIF_EXPR:
11441 /* Note that the operands of this must be ints
11442 and their values must be 0 or 1.
11443 ("true" is a fixed value perhaps depending on the language.) */
11444 /* If first arg is constant zero, return it. */
11445 if (integer_zerop (arg0))
11446 return fold_convert (type, arg0);
11447 case TRUTH_AND_EXPR:
11448 /* If either arg is constant true, drop it. */
11449 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
11450 return non_lvalue (fold_convert (type, arg1));
11451 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1)
11452 /* Preserve sequence points. */
11453 && (code != TRUTH_ANDIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
11454 return non_lvalue (fold_convert (type, arg0));
11455 /* If second arg is constant zero, result is zero, but first arg
11456 must be evaluated. */
11457 if (integer_zerop (arg1))
11458 return omit_one_operand (type, arg1, arg0);
11459 /* Likewise for first arg, but note that only the TRUTH_AND_EXPR
11460 case will be handled here. */
11461 if (integer_zerop (arg0))
11462 return omit_one_operand (type, arg0, arg1);
11464 /* !X && X is always false. */
11465 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
11466 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
11467 return omit_one_operand (type, integer_zero_node, arg1);
11468 /* X && !X is always false. */
11469 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
11470 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
11471 return omit_one_operand (type, integer_zero_node, arg0);
11473 /* A < X && A + 1 > Y ==> A < X && A >= Y. Normally A + 1 > Y
11474 means A >= Y && A != MAX, but in this case we know that
11475 A < X <= MAX. */
11477 if (!TREE_SIDE_EFFECTS (arg0)
11478 && !TREE_SIDE_EFFECTS (arg1))
11480 tem = fold_to_nonsharp_ineq_using_bound (arg0, arg1);
11481 if (tem && !operand_equal_p (tem, arg0, 0))
11482 return fold_build2 (code, type, tem, arg1);
11484 tem = fold_to_nonsharp_ineq_using_bound (arg1, arg0);
11485 if (tem && !operand_equal_p (tem, arg1, 0))
11486 return fold_build2 (code, type, arg0, tem);
11489 truth_andor:
11490 /* We only do these simplifications if we are optimizing. */
11491 if (!optimize)
11492 return NULL_TREE;
11494 /* Check for things like (A || B) && (A || C). We can convert this
11495 to A || (B && C). Note that either operator can be any of the four
11496 truth and/or operations and the transformation will still be
11497 valid. Also note that we only care about order for the
11498 ANDIF and ORIF operators. If B contains side effects, this
11499 might change the truth-value of A. */
11500 if (TREE_CODE (arg0) == TREE_CODE (arg1)
11501 && (TREE_CODE (arg0) == TRUTH_ANDIF_EXPR
11502 || TREE_CODE (arg0) == TRUTH_ORIF_EXPR
11503 || TREE_CODE (arg0) == TRUTH_AND_EXPR
11504 || TREE_CODE (arg0) == TRUTH_OR_EXPR)
11505 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg0, 1)))
11507 tree a00 = TREE_OPERAND (arg0, 0);
11508 tree a01 = TREE_OPERAND (arg0, 1);
11509 tree a10 = TREE_OPERAND (arg1, 0);
11510 tree a11 = TREE_OPERAND (arg1, 1);
11511 int commutative = ((TREE_CODE (arg0) == TRUTH_OR_EXPR
11512 || TREE_CODE (arg0) == TRUTH_AND_EXPR)
11513 && (code == TRUTH_AND_EXPR
11514 || code == TRUTH_OR_EXPR));
11516 if (operand_equal_p (a00, a10, 0))
11517 return fold_build2 (TREE_CODE (arg0), type, a00,
11518 fold_build2 (code, type, a01, a11));
11519 else if (commutative && operand_equal_p (a00, a11, 0))
11520 return fold_build2 (TREE_CODE (arg0), type, a00,
11521 fold_build2 (code, type, a01, a10));
11522 else if (commutative && operand_equal_p (a01, a10, 0))
11523 return fold_build2 (TREE_CODE (arg0), type, a01,
11524 fold_build2 (code, type, a00, a11));
11526 /* This case if tricky because we must either have commutative
11527 operators or else A10 must not have side-effects. */
11529 else if ((commutative || ! TREE_SIDE_EFFECTS (a10))
11530 && operand_equal_p (a01, a11, 0))
11531 return fold_build2 (TREE_CODE (arg0), type,
11532 fold_build2 (code, type, a00, a10),
11533 a01);
11536 /* See if we can build a range comparison. */
11537 if (0 != (tem = fold_range_test (code, type, op0, op1)))
11538 return tem;
11540 /* Check for the possibility of merging component references. If our
11541 lhs is another similar operation, try to merge its rhs with our
11542 rhs. Then try to merge our lhs and rhs. */
11543 if (TREE_CODE (arg0) == code
11544 && 0 != (tem = fold_truthop (code, type,
11545 TREE_OPERAND (arg0, 1), arg1)))
11546 return fold_build2 (code, type, TREE_OPERAND (arg0, 0), tem);
11548 if ((tem = fold_truthop (code, type, arg0, arg1)) != 0)
11549 return tem;
11551 return NULL_TREE;
11553 case TRUTH_ORIF_EXPR:
11554 /* Note that the operands of this must be ints
11555 and their values must be 0 or true.
11556 ("true" is a fixed value perhaps depending on the language.) */
11557 /* If first arg is constant true, return it. */
11558 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
11559 return fold_convert (type, arg0);
11560 case TRUTH_OR_EXPR:
11561 /* If either arg is constant zero, drop it. */
11562 if (TREE_CODE (arg0) == INTEGER_CST && integer_zerop (arg0))
11563 return non_lvalue (fold_convert (type, arg1));
11564 if (TREE_CODE (arg1) == INTEGER_CST && integer_zerop (arg1)
11565 /* Preserve sequence points. */
11566 && (code != TRUTH_ORIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
11567 return non_lvalue (fold_convert (type, arg0));
11568 /* If second arg is constant true, result is true, but we must
11569 evaluate first arg. */
11570 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1))
11571 return omit_one_operand (type, arg1, arg0);
11572 /* Likewise for first arg, but note this only occurs here for
11573 TRUTH_OR_EXPR. */
11574 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
11575 return omit_one_operand (type, arg0, arg1);
11577 /* !X || X is always true. */
11578 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
11579 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
11580 return omit_one_operand (type, integer_one_node, arg1);
11581 /* X || !X is always true. */
11582 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
11583 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
11584 return omit_one_operand (type, integer_one_node, arg0);
11586 goto truth_andor;
11588 case TRUTH_XOR_EXPR:
11589 /* If the second arg is constant zero, drop it. */
11590 if (integer_zerop (arg1))
11591 return non_lvalue (fold_convert (type, arg0));
11592 /* If the second arg is constant true, this is a logical inversion. */
11593 if (integer_onep (arg1))
11595 /* Only call invert_truthvalue if operand is a truth value. */
11596 if (TREE_CODE (TREE_TYPE (arg0)) != BOOLEAN_TYPE)
11597 tem = fold_build1 (TRUTH_NOT_EXPR, TREE_TYPE (arg0), arg0);
11598 else
11599 tem = invert_truthvalue (arg0);
11600 return non_lvalue (fold_convert (type, tem));
11602 /* Identical arguments cancel to zero. */
11603 if (operand_equal_p (arg0, arg1, 0))
11604 return omit_one_operand (type, integer_zero_node, arg0);
11606 /* !X ^ X is always true. */
11607 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
11608 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
11609 return omit_one_operand (type, integer_one_node, arg1);
11611 /* X ^ !X is always true. */
11612 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
11613 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
11614 return omit_one_operand (type, integer_one_node, arg0);
11616 return NULL_TREE;
11618 case EQ_EXPR:
11619 case NE_EXPR:
11620 tem = fold_comparison (code, type, op0, op1);
11621 if (tem != NULL_TREE)
11622 return tem;
11624 /* bool_var != 0 becomes bool_var. */
11625 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_zerop (arg1)
11626 && code == NE_EXPR)
11627 return non_lvalue (fold_convert (type, arg0));
11629 /* bool_var == 1 becomes bool_var. */
11630 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_onep (arg1)
11631 && code == EQ_EXPR)
11632 return non_lvalue (fold_convert (type, arg0));
11634 /* bool_var != 1 becomes !bool_var. */
11635 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_onep (arg1)
11636 && code == NE_EXPR)
11637 return fold_build1 (TRUTH_NOT_EXPR, type, fold_convert (type, arg0));
11639 /* bool_var == 0 becomes !bool_var. */
11640 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_zerop (arg1)
11641 && code == EQ_EXPR)
11642 return fold_build1 (TRUTH_NOT_EXPR, type, fold_convert (type, arg0));
11644 /* If this is an equality comparison of the address of two non-weak,
11645 unaliased symbols neither of which are extern (since we do not
11646 have access to attributes for externs), then we know the result. */
11647 if (TREE_CODE (arg0) == ADDR_EXPR
11648 && VAR_OR_FUNCTION_DECL_P (TREE_OPERAND (arg0, 0))
11649 && ! DECL_WEAK (TREE_OPERAND (arg0, 0))
11650 && ! lookup_attribute ("alias",
11651 DECL_ATTRIBUTES (TREE_OPERAND (arg0, 0)))
11652 && ! DECL_EXTERNAL (TREE_OPERAND (arg0, 0))
11653 && TREE_CODE (arg1) == ADDR_EXPR
11654 && VAR_OR_FUNCTION_DECL_P (TREE_OPERAND (arg1, 0))
11655 && ! DECL_WEAK (TREE_OPERAND (arg1, 0))
11656 && ! lookup_attribute ("alias",
11657 DECL_ATTRIBUTES (TREE_OPERAND (arg1, 0)))
11658 && ! DECL_EXTERNAL (TREE_OPERAND (arg1, 0)))
11660 /* We know that we're looking at the address of two
11661 non-weak, unaliased, static _DECL nodes.
11663 It is both wasteful and incorrect to call operand_equal_p
11664 to compare the two ADDR_EXPR nodes. It is wasteful in that
11665 all we need to do is test pointer equality for the arguments
11666 to the two ADDR_EXPR nodes. It is incorrect to use
11667 operand_equal_p as that function is NOT equivalent to a
11668 C equality test. It can in fact return false for two
11669 objects which would test as equal using the C equality
11670 operator. */
11671 bool equal = TREE_OPERAND (arg0, 0) == TREE_OPERAND (arg1, 0);
11672 return constant_boolean_node (equal
11673 ? code == EQ_EXPR : code != EQ_EXPR,
11674 type);
11677 /* If this is an EQ or NE comparison of a constant with a PLUS_EXPR or
11678 a MINUS_EXPR of a constant, we can convert it into a comparison with
11679 a revised constant as long as no overflow occurs. */
11680 if (TREE_CODE (arg1) == INTEGER_CST
11681 && (TREE_CODE (arg0) == PLUS_EXPR
11682 || TREE_CODE (arg0) == MINUS_EXPR)
11683 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
11684 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
11685 ? MINUS_EXPR : PLUS_EXPR,
11686 fold_convert (TREE_TYPE (arg0), arg1),
11687 TREE_OPERAND (arg0, 1), 0))
11688 && !TREE_OVERFLOW (tem))
11689 return fold_build2 (code, type, TREE_OPERAND (arg0, 0), tem);
11691 /* Similarly for a NEGATE_EXPR. */
11692 if (TREE_CODE (arg0) == NEGATE_EXPR
11693 && TREE_CODE (arg1) == INTEGER_CST
11694 && 0 != (tem = negate_expr (arg1))
11695 && TREE_CODE (tem) == INTEGER_CST
11696 && !TREE_OVERFLOW (tem))
11697 return fold_build2 (code, type, TREE_OPERAND (arg0, 0), tem);
11699 /* Similarly for a BIT_XOR_EXPR; X ^ C1 == C2 is X == (C1 ^ C2). */
11700 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11701 && TREE_CODE (arg1) == INTEGER_CST
11702 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11703 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
11704 fold_build2 (BIT_XOR_EXPR, TREE_TYPE (arg0),
11705 fold_convert (TREE_TYPE (arg0), arg1),
11706 TREE_OPERAND (arg0, 1)));
11708 /* Transform comparisons of the form X +- C CMP X. */
11709 if ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
11710 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
11711 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
11712 && (INTEGRAL_TYPE_P (TREE_TYPE (arg0))
11713 || POINTER_TYPE_P (TREE_TYPE (arg0))))
11715 tree cst = TREE_OPERAND (arg0, 1);
11717 if (code == EQ_EXPR
11718 && !integer_zerop (cst))
11719 return omit_two_operands (type, boolean_false_node,
11720 TREE_OPERAND (arg0, 0), arg1);
11721 else
11722 return omit_two_operands (type, boolean_true_node,
11723 TREE_OPERAND (arg0, 0), arg1);
11726 /* If we have X - Y == 0, we can convert that to X == Y and similarly
11727 for !=. Don't do this for ordered comparisons due to overflow. */
11728 if (TREE_CODE (arg0) == MINUS_EXPR
11729 && integer_zerop (arg1))
11730 return fold_build2 (code, type,
11731 TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1));
11733 /* Convert ABS_EXPR<x> == 0 or ABS_EXPR<x> != 0 to x == 0 or x != 0. */
11734 if (TREE_CODE (arg0) == ABS_EXPR
11735 && (integer_zerop (arg1) || real_zerop (arg1)))
11736 return fold_build2 (code, type, TREE_OPERAND (arg0, 0), arg1);
11738 /* If this is an EQ or NE comparison with zero and ARG0 is
11739 (1 << foo) & bar, convert it to (bar >> foo) & 1. Both require
11740 two operations, but the latter can be done in one less insn
11741 on machines that have only two-operand insns or on which a
11742 constant cannot be the first operand. */
11743 if (TREE_CODE (arg0) == BIT_AND_EXPR
11744 && integer_zerop (arg1))
11746 tree arg00 = TREE_OPERAND (arg0, 0);
11747 tree arg01 = TREE_OPERAND (arg0, 1);
11748 if (TREE_CODE (arg00) == LSHIFT_EXPR
11749 && integer_onep (TREE_OPERAND (arg00, 0)))
11751 tree tem = fold_build2 (RSHIFT_EXPR, TREE_TYPE (arg00),
11752 arg01, TREE_OPERAND (arg00, 1));
11753 tem = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg0), tem,
11754 build_int_cst (TREE_TYPE (arg0), 1));
11755 return fold_build2 (code, type,
11756 fold_convert (TREE_TYPE (arg1), tem), arg1);
11758 else if (TREE_CODE (arg01) == LSHIFT_EXPR
11759 && integer_onep (TREE_OPERAND (arg01, 0)))
11761 tree tem = fold_build2 (RSHIFT_EXPR, TREE_TYPE (arg01),
11762 arg00, TREE_OPERAND (arg01, 1));
11763 tem = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg0), tem,
11764 build_int_cst (TREE_TYPE (arg0), 1));
11765 return fold_build2 (code, type,
11766 fold_convert (TREE_TYPE (arg1), tem), arg1);
11770 /* If this is an NE or EQ comparison of zero against the result of a
11771 signed MOD operation whose second operand is a power of 2, make
11772 the MOD operation unsigned since it is simpler and equivalent. */
11773 if (integer_zerop (arg1)
11774 && !TYPE_UNSIGNED (TREE_TYPE (arg0))
11775 && (TREE_CODE (arg0) == TRUNC_MOD_EXPR
11776 || TREE_CODE (arg0) == CEIL_MOD_EXPR
11777 || TREE_CODE (arg0) == FLOOR_MOD_EXPR
11778 || TREE_CODE (arg0) == ROUND_MOD_EXPR)
11779 && integer_pow2p (TREE_OPERAND (arg0, 1)))
11781 tree newtype = unsigned_type_for (TREE_TYPE (arg0));
11782 tree newmod = fold_build2 (TREE_CODE (arg0), newtype,
11783 fold_convert (newtype,
11784 TREE_OPERAND (arg0, 0)),
11785 fold_convert (newtype,
11786 TREE_OPERAND (arg0, 1)));
11788 return fold_build2 (code, type, newmod,
11789 fold_convert (newtype, arg1));
11792 /* Fold ((X >> C1) & C2) == 0 and ((X >> C1) & C2) != 0 where
11793 C1 is a valid shift constant, and C2 is a power of two, i.e.
11794 a single bit. */
11795 if (TREE_CODE (arg0) == BIT_AND_EXPR
11796 && TREE_CODE (TREE_OPERAND (arg0, 0)) == RSHIFT_EXPR
11797 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1))
11798 == INTEGER_CST
11799 && integer_pow2p (TREE_OPERAND (arg0, 1))
11800 && integer_zerop (arg1))
11802 tree itype = TREE_TYPE (arg0);
11803 unsigned HOST_WIDE_INT prec = TYPE_PRECISION (itype);
11804 tree arg001 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 1);
11806 /* Check for a valid shift count. */
11807 if (TREE_INT_CST_HIGH (arg001) == 0
11808 && TREE_INT_CST_LOW (arg001) < prec)
11810 tree arg01 = TREE_OPERAND (arg0, 1);
11811 tree arg000 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
11812 unsigned HOST_WIDE_INT log2 = tree_log2 (arg01);
11813 /* If (C2 << C1) doesn't overflow, then ((X >> C1) & C2) != 0
11814 can be rewritten as (X & (C2 << C1)) != 0. */
11815 if ((log2 + TREE_INT_CST_LOW (arg001)) < prec)
11817 tem = fold_build2 (LSHIFT_EXPR, itype, arg01, arg001);
11818 tem = fold_build2 (BIT_AND_EXPR, itype, arg000, tem);
11819 return fold_build2 (code, type, tem, arg1);
11821 /* Otherwise, for signed (arithmetic) shifts,
11822 ((X >> C1) & C2) != 0 is rewritten as X < 0, and
11823 ((X >> C1) & C2) == 0 is rewritten as X >= 0. */
11824 else if (!TYPE_UNSIGNED (itype))
11825 return fold_build2 (code == EQ_EXPR ? GE_EXPR : LT_EXPR, type,
11826 arg000, build_int_cst (itype, 0));
11827 /* Otherwise, of unsigned (logical) shifts,
11828 ((X >> C1) & C2) != 0 is rewritten as (X,false), and
11829 ((X >> C1) & C2) == 0 is rewritten as (X,true). */
11830 else
11831 return omit_one_operand (type,
11832 code == EQ_EXPR ? integer_one_node
11833 : integer_zero_node,
11834 arg000);
11838 /* If this is an NE comparison of zero with an AND of one, remove the
11839 comparison since the AND will give the correct value. */
11840 if (code == NE_EXPR
11841 && integer_zerop (arg1)
11842 && TREE_CODE (arg0) == BIT_AND_EXPR
11843 && integer_onep (TREE_OPERAND (arg0, 1)))
11844 return fold_convert (type, arg0);
11846 /* If we have (A & C) == C where C is a power of 2, convert this into
11847 (A & C) != 0. Similarly for NE_EXPR. */
11848 if (TREE_CODE (arg0) == BIT_AND_EXPR
11849 && integer_pow2p (TREE_OPERAND (arg0, 1))
11850 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
11851 return fold_build2 (code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
11852 arg0, fold_convert (TREE_TYPE (arg0),
11853 integer_zero_node));
11855 /* If we have (A & C) != 0 or (A & C) == 0 and C is the sign
11856 bit, then fold the expression into A < 0 or A >= 0. */
11857 tem = fold_single_bit_test_into_sign_test (code, arg0, arg1, type);
11858 if (tem)
11859 return tem;
11861 /* If we have (A & C) == D where D & ~C != 0, convert this into 0.
11862 Similarly for NE_EXPR. */
11863 if (TREE_CODE (arg0) == BIT_AND_EXPR
11864 && TREE_CODE (arg1) == INTEGER_CST
11865 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11867 tree notc = fold_build1 (BIT_NOT_EXPR,
11868 TREE_TYPE (TREE_OPERAND (arg0, 1)),
11869 TREE_OPERAND (arg0, 1));
11870 tree dandnotc = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
11871 arg1, notc);
11872 tree rslt = code == EQ_EXPR ? integer_zero_node : integer_one_node;
11873 if (integer_nonzerop (dandnotc))
11874 return omit_one_operand (type, rslt, arg0);
11877 /* If we have (A | C) == D where C & ~D != 0, convert this into 0.
11878 Similarly for NE_EXPR. */
11879 if (TREE_CODE (arg0) == BIT_IOR_EXPR
11880 && TREE_CODE (arg1) == INTEGER_CST
11881 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11883 tree notd = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg1), arg1);
11884 tree candnotd = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
11885 TREE_OPERAND (arg0, 1), notd);
11886 tree rslt = code == EQ_EXPR ? integer_zero_node : integer_one_node;
11887 if (integer_nonzerop (candnotd))
11888 return omit_one_operand (type, rslt, arg0);
11891 /* Optimize comparisons of strlen vs zero to a compare of the
11892 first character of the string vs zero. To wit,
11893 strlen(ptr) == 0 => *ptr == 0
11894 strlen(ptr) != 0 => *ptr != 0
11895 Other cases should reduce to one of these two (or a constant)
11896 due to the return value of strlen being unsigned. */
11897 if (TREE_CODE (arg0) == CALL_EXPR
11898 && integer_zerop (arg1))
11900 tree fndecl = get_callee_fndecl (arg0);
11902 if (fndecl
11903 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
11904 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STRLEN
11905 && call_expr_nargs (arg0) == 1
11906 && TREE_CODE (TREE_TYPE (CALL_EXPR_ARG (arg0, 0))) == POINTER_TYPE)
11908 tree iref = build_fold_indirect_ref (CALL_EXPR_ARG (arg0, 0));
11909 return fold_build2 (code, type, iref,
11910 build_int_cst (TREE_TYPE (iref), 0));
11914 /* Fold (X >> C) != 0 into X < 0 if C is one less than the width
11915 of X. Similarly fold (X >> C) == 0 into X >= 0. */
11916 if (TREE_CODE (arg0) == RSHIFT_EXPR
11917 && integer_zerop (arg1)
11918 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11920 tree arg00 = TREE_OPERAND (arg0, 0);
11921 tree arg01 = TREE_OPERAND (arg0, 1);
11922 tree itype = TREE_TYPE (arg00);
11923 if (TREE_INT_CST_HIGH (arg01) == 0
11924 && TREE_INT_CST_LOW (arg01)
11925 == (unsigned HOST_WIDE_INT) (TYPE_PRECISION (itype) - 1))
11927 if (TYPE_UNSIGNED (itype))
11929 itype = signed_type_for (itype);
11930 arg00 = fold_convert (itype, arg00);
11932 return fold_build2 (code == EQ_EXPR ? GE_EXPR : LT_EXPR,
11933 type, arg00, build_int_cst (itype, 0));
11937 /* (X ^ Y) == 0 becomes X == Y, and (X ^ Y) != 0 becomes X != Y. */
11938 if (integer_zerop (arg1)
11939 && TREE_CODE (arg0) == BIT_XOR_EXPR)
11940 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
11941 TREE_OPERAND (arg0, 1));
11943 /* (X ^ Y) == Y becomes X == 0. We know that Y has no side-effects. */
11944 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11945 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
11946 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
11947 build_int_cst (TREE_TYPE (arg1), 0));
11948 /* Likewise (X ^ Y) == X becomes Y == 0. X has no side-effects. */
11949 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11950 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
11951 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
11952 return fold_build2 (code, type, TREE_OPERAND (arg0, 1),
11953 build_int_cst (TREE_TYPE (arg1), 0));
11955 /* (X ^ C1) op C2 can be rewritten as X op (C1 ^ C2). */
11956 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11957 && TREE_CODE (arg1) == INTEGER_CST
11958 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11959 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
11960 fold_build2 (BIT_XOR_EXPR, TREE_TYPE (arg1),
11961 TREE_OPERAND (arg0, 1), arg1));
11963 /* Fold (~X & C) == 0 into (X & C) != 0 and (~X & C) != 0 into
11964 (X & C) == 0 when C is a single bit. */
11965 if (TREE_CODE (arg0) == BIT_AND_EXPR
11966 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_NOT_EXPR
11967 && integer_zerop (arg1)
11968 && integer_pow2p (TREE_OPERAND (arg0, 1)))
11970 tem = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
11971 TREE_OPERAND (TREE_OPERAND (arg0, 0), 0),
11972 TREE_OPERAND (arg0, 1));
11973 return fold_build2 (code == EQ_EXPR ? NE_EXPR : EQ_EXPR,
11974 type, tem, arg1);
11977 /* Fold ((X & C) ^ C) eq/ne 0 into (X & C) ne/eq 0, when the
11978 constant C is a power of two, i.e. a single bit. */
11979 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11980 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
11981 && integer_zerop (arg1)
11982 && integer_pow2p (TREE_OPERAND (arg0, 1))
11983 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
11984 TREE_OPERAND (arg0, 1), OEP_ONLY_CONST))
11986 tree arg00 = TREE_OPERAND (arg0, 0);
11987 return fold_build2 (code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
11988 arg00, build_int_cst (TREE_TYPE (arg00), 0));
11991 /* Likewise, fold ((X ^ C) & C) eq/ne 0 into (X & C) ne/eq 0,
11992 when is C is a power of two, i.e. a single bit. */
11993 if (TREE_CODE (arg0) == BIT_AND_EXPR
11994 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_XOR_EXPR
11995 && integer_zerop (arg1)
11996 && integer_pow2p (TREE_OPERAND (arg0, 1))
11997 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
11998 TREE_OPERAND (arg0, 1), OEP_ONLY_CONST))
12000 tree arg000 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
12001 tem = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg000),
12002 arg000, TREE_OPERAND (arg0, 1));
12003 return fold_build2 (code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
12004 tem, build_int_cst (TREE_TYPE (tem), 0));
12007 if (integer_zerop (arg1)
12008 && tree_expr_nonzero_p (arg0))
12010 tree res = constant_boolean_node (code==NE_EXPR, type);
12011 return omit_one_operand (type, res, arg0);
12014 /* Fold -X op -Y as X op Y, where op is eq/ne. */
12015 if (TREE_CODE (arg0) == NEGATE_EXPR
12016 && TREE_CODE (arg1) == NEGATE_EXPR)
12017 return fold_build2 (code, type,
12018 TREE_OPERAND (arg0, 0),
12019 TREE_OPERAND (arg1, 0));
12021 /* Fold (X & C) op (Y & C) as (X ^ Y) & C op 0", and symmetries. */
12022 if (TREE_CODE (arg0) == BIT_AND_EXPR
12023 && TREE_CODE (arg1) == BIT_AND_EXPR)
12025 tree arg00 = TREE_OPERAND (arg0, 0);
12026 tree arg01 = TREE_OPERAND (arg0, 1);
12027 tree arg10 = TREE_OPERAND (arg1, 0);
12028 tree arg11 = TREE_OPERAND (arg1, 1);
12029 tree itype = TREE_TYPE (arg0);
12031 if (operand_equal_p (arg01, arg11, 0))
12032 return fold_build2 (code, type,
12033 fold_build2 (BIT_AND_EXPR, itype,
12034 fold_build2 (BIT_XOR_EXPR, itype,
12035 arg00, arg10),
12036 arg01),
12037 build_int_cst (itype, 0));
12039 if (operand_equal_p (arg01, arg10, 0))
12040 return fold_build2 (code, type,
12041 fold_build2 (BIT_AND_EXPR, itype,
12042 fold_build2 (BIT_XOR_EXPR, itype,
12043 arg00, arg11),
12044 arg01),
12045 build_int_cst (itype, 0));
12047 if (operand_equal_p (arg00, arg11, 0))
12048 return fold_build2 (code, type,
12049 fold_build2 (BIT_AND_EXPR, itype,
12050 fold_build2 (BIT_XOR_EXPR, itype,
12051 arg01, arg10),
12052 arg00),
12053 build_int_cst (itype, 0));
12055 if (operand_equal_p (arg00, arg10, 0))
12056 return fold_build2 (code, type,
12057 fold_build2 (BIT_AND_EXPR, itype,
12058 fold_build2 (BIT_XOR_EXPR, itype,
12059 arg01, arg11),
12060 arg00),
12061 build_int_cst (itype, 0));
12064 if (TREE_CODE (arg0) == BIT_XOR_EXPR
12065 && TREE_CODE (arg1) == BIT_XOR_EXPR)
12067 tree arg00 = TREE_OPERAND (arg0, 0);
12068 tree arg01 = TREE_OPERAND (arg0, 1);
12069 tree arg10 = TREE_OPERAND (arg1, 0);
12070 tree arg11 = TREE_OPERAND (arg1, 1);
12071 tree itype = TREE_TYPE (arg0);
12073 /* Optimize (X ^ Z) op (Y ^ Z) as X op Y, and symmetries.
12074 operand_equal_p guarantees no side-effects so we don't need
12075 to use omit_one_operand on Z. */
12076 if (operand_equal_p (arg01, arg11, 0))
12077 return fold_build2 (code, type, arg00, arg10);
12078 if (operand_equal_p (arg01, arg10, 0))
12079 return fold_build2 (code, type, arg00, arg11);
12080 if (operand_equal_p (arg00, arg11, 0))
12081 return fold_build2 (code, type, arg01, arg10);
12082 if (operand_equal_p (arg00, arg10, 0))
12083 return fold_build2 (code, type, arg01, arg11);
12085 /* Optimize (X ^ C1) op (Y ^ C2) as (X ^ (C1 ^ C2)) op Y. */
12086 if (TREE_CODE (arg01) == INTEGER_CST
12087 && TREE_CODE (arg11) == INTEGER_CST)
12088 return fold_build2 (code, type,
12089 fold_build2 (BIT_XOR_EXPR, itype, arg00,
12090 fold_build2 (BIT_XOR_EXPR, itype,
12091 arg01, arg11)),
12092 arg10);
12095 /* Attempt to simplify equality/inequality comparisons of complex
12096 values. Only lower the comparison if the result is known or
12097 can be simplified to a single scalar comparison. */
12098 if ((TREE_CODE (arg0) == COMPLEX_EXPR
12099 || TREE_CODE (arg0) == COMPLEX_CST)
12100 && (TREE_CODE (arg1) == COMPLEX_EXPR
12101 || TREE_CODE (arg1) == COMPLEX_CST))
12103 tree real0, imag0, real1, imag1;
12104 tree rcond, icond;
12106 if (TREE_CODE (arg0) == COMPLEX_EXPR)
12108 real0 = TREE_OPERAND (arg0, 0);
12109 imag0 = TREE_OPERAND (arg0, 1);
12111 else
12113 real0 = TREE_REALPART (arg0);
12114 imag0 = TREE_IMAGPART (arg0);
12117 if (TREE_CODE (arg1) == COMPLEX_EXPR)
12119 real1 = TREE_OPERAND (arg1, 0);
12120 imag1 = TREE_OPERAND (arg1, 1);
12122 else
12124 real1 = TREE_REALPART (arg1);
12125 imag1 = TREE_IMAGPART (arg1);
12128 rcond = fold_binary (code, type, real0, real1);
12129 if (rcond && TREE_CODE (rcond) == INTEGER_CST)
12131 if (integer_zerop (rcond))
12133 if (code == EQ_EXPR)
12134 return omit_two_operands (type, boolean_false_node,
12135 imag0, imag1);
12136 return fold_build2 (NE_EXPR, type, imag0, imag1);
12138 else
12140 if (code == NE_EXPR)
12141 return omit_two_operands (type, boolean_true_node,
12142 imag0, imag1);
12143 return fold_build2 (EQ_EXPR, type, imag0, imag1);
12147 icond = fold_binary (code, type, imag0, imag1);
12148 if (icond && TREE_CODE (icond) == INTEGER_CST)
12150 if (integer_zerop (icond))
12152 if (code == EQ_EXPR)
12153 return omit_two_operands (type, boolean_false_node,
12154 real0, real1);
12155 return fold_build2 (NE_EXPR, type, real0, real1);
12157 else
12159 if (code == NE_EXPR)
12160 return omit_two_operands (type, boolean_true_node,
12161 real0, real1);
12162 return fold_build2 (EQ_EXPR, type, real0, real1);
12167 return NULL_TREE;
12169 case LT_EXPR:
12170 case GT_EXPR:
12171 case LE_EXPR:
12172 case GE_EXPR:
12173 tem = fold_comparison (code, type, op0, op1);
12174 if (tem != NULL_TREE)
12175 return tem;
12177 /* Transform comparisons of the form X +- C CMP X. */
12178 if ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
12179 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
12180 && ((TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
12181 && !HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0))))
12182 || (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
12183 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))))
12185 tree arg01 = TREE_OPERAND (arg0, 1);
12186 enum tree_code code0 = TREE_CODE (arg0);
12187 int is_positive;
12189 if (TREE_CODE (arg01) == REAL_CST)
12190 is_positive = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg01)) ? -1 : 1;
12191 else
12192 is_positive = tree_int_cst_sgn (arg01);
12194 /* (X - c) > X becomes false. */
12195 if (code == GT_EXPR
12196 && ((code0 == MINUS_EXPR && is_positive >= 0)
12197 || (code0 == PLUS_EXPR && is_positive <= 0)))
12199 if (TREE_CODE (arg01) == INTEGER_CST
12200 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12201 fold_overflow_warning (("assuming signed overflow does not "
12202 "occur when assuming that (X - c) > X "
12203 "is always false"),
12204 WARN_STRICT_OVERFLOW_ALL);
12205 return constant_boolean_node (0, type);
12208 /* Likewise (X + c) < X becomes false. */
12209 if (code == LT_EXPR
12210 && ((code0 == PLUS_EXPR && is_positive >= 0)
12211 || (code0 == MINUS_EXPR && is_positive <= 0)))
12213 if (TREE_CODE (arg01) == INTEGER_CST
12214 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12215 fold_overflow_warning (("assuming signed overflow does not "
12216 "occur when assuming that "
12217 "(X + c) < X is always false"),
12218 WARN_STRICT_OVERFLOW_ALL);
12219 return constant_boolean_node (0, type);
12222 /* Convert (X - c) <= X to true. */
12223 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1)))
12224 && code == LE_EXPR
12225 && ((code0 == MINUS_EXPR && is_positive >= 0)
12226 || (code0 == PLUS_EXPR && is_positive <= 0)))
12228 if (TREE_CODE (arg01) == INTEGER_CST
12229 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12230 fold_overflow_warning (("assuming signed overflow does not "
12231 "occur when assuming that "
12232 "(X - c) <= X is always true"),
12233 WARN_STRICT_OVERFLOW_ALL);
12234 return constant_boolean_node (1, type);
12237 /* Convert (X + c) >= X to true. */
12238 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1)))
12239 && code == GE_EXPR
12240 && ((code0 == PLUS_EXPR && is_positive >= 0)
12241 || (code0 == MINUS_EXPR && is_positive <= 0)))
12243 if (TREE_CODE (arg01) == INTEGER_CST
12244 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12245 fold_overflow_warning (("assuming signed overflow does not "
12246 "occur when assuming that "
12247 "(X + c) >= X is always true"),
12248 WARN_STRICT_OVERFLOW_ALL);
12249 return constant_boolean_node (1, type);
12252 if (TREE_CODE (arg01) == INTEGER_CST)
12254 /* Convert X + c > X and X - c < X to true for integers. */
12255 if (code == GT_EXPR
12256 && ((code0 == PLUS_EXPR && is_positive > 0)
12257 || (code0 == MINUS_EXPR && is_positive < 0)))
12259 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12260 fold_overflow_warning (("assuming signed overflow does "
12261 "not occur when assuming that "
12262 "(X + c) > X is always true"),
12263 WARN_STRICT_OVERFLOW_ALL);
12264 return constant_boolean_node (1, type);
12267 if (code == LT_EXPR
12268 && ((code0 == MINUS_EXPR && is_positive > 0)
12269 || (code0 == PLUS_EXPR && is_positive < 0)))
12271 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12272 fold_overflow_warning (("assuming signed overflow does "
12273 "not occur when assuming that "
12274 "(X - c) < X is always true"),
12275 WARN_STRICT_OVERFLOW_ALL);
12276 return constant_boolean_node (1, type);
12279 /* Convert X + c <= X and X - c >= X to false for integers. */
12280 if (code == LE_EXPR
12281 && ((code0 == PLUS_EXPR && is_positive > 0)
12282 || (code0 == MINUS_EXPR && is_positive < 0)))
12284 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12285 fold_overflow_warning (("assuming signed overflow does "
12286 "not occur when assuming that "
12287 "(X + c) <= X is always false"),
12288 WARN_STRICT_OVERFLOW_ALL);
12289 return constant_boolean_node (0, type);
12292 if (code == GE_EXPR
12293 && ((code0 == MINUS_EXPR && is_positive > 0)
12294 || (code0 == PLUS_EXPR && is_positive < 0)))
12296 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12297 fold_overflow_warning (("assuming signed overflow does "
12298 "not occur when assuming that "
12299 "(X - c) >= X is always false"),
12300 WARN_STRICT_OVERFLOW_ALL);
12301 return constant_boolean_node (0, type);
12306 /* Change X >= C to X > (C - 1) and X < C to X <= (C - 1) if C > 0.
12307 This transformation affects the cases which are handled in later
12308 optimizations involving comparisons with non-negative constants. */
12309 if (TREE_CODE (arg1) == INTEGER_CST
12310 && TREE_CODE (arg0) != INTEGER_CST
12311 && tree_int_cst_sgn (arg1) > 0)
12313 if (code == GE_EXPR)
12315 arg1 = const_binop (MINUS_EXPR, arg1,
12316 build_int_cst (TREE_TYPE (arg1), 1), 0);
12317 return fold_build2 (GT_EXPR, type, arg0,
12318 fold_convert (TREE_TYPE (arg0), arg1));
12320 if (code == LT_EXPR)
12322 arg1 = const_binop (MINUS_EXPR, arg1,
12323 build_int_cst (TREE_TYPE (arg1), 1), 0);
12324 return fold_build2 (LE_EXPR, type, arg0,
12325 fold_convert (TREE_TYPE (arg0), arg1));
12329 /* Comparisons with the highest or lowest possible integer of
12330 the specified precision will have known values. */
12332 tree arg1_type = TREE_TYPE (arg1);
12333 unsigned int width = TYPE_PRECISION (arg1_type);
12335 if (TREE_CODE (arg1) == INTEGER_CST
12336 && !TREE_OVERFLOW (arg1)
12337 && width <= 2 * HOST_BITS_PER_WIDE_INT
12338 && (INTEGRAL_TYPE_P (arg1_type) || POINTER_TYPE_P (arg1_type)))
12340 HOST_WIDE_INT signed_max_hi;
12341 unsigned HOST_WIDE_INT signed_max_lo;
12342 unsigned HOST_WIDE_INT max_hi, max_lo, min_hi, min_lo;
12344 if (width <= HOST_BITS_PER_WIDE_INT)
12346 signed_max_lo = ((unsigned HOST_WIDE_INT) 1 << (width - 1))
12347 - 1;
12348 signed_max_hi = 0;
12349 max_hi = 0;
12351 if (TYPE_UNSIGNED (arg1_type))
12353 max_lo = ((unsigned HOST_WIDE_INT) 2 << (width - 1)) - 1;
12354 min_lo = 0;
12355 min_hi = 0;
12357 else
12359 max_lo = signed_max_lo;
12360 min_lo = ((unsigned HOST_WIDE_INT) -1 << (width - 1));
12361 min_hi = -1;
12364 else
12366 width -= HOST_BITS_PER_WIDE_INT;
12367 signed_max_lo = -1;
12368 signed_max_hi = ((unsigned HOST_WIDE_INT) 1 << (width - 1))
12369 - 1;
12370 max_lo = -1;
12371 min_lo = 0;
12373 if (TYPE_UNSIGNED (arg1_type))
12375 max_hi = ((unsigned HOST_WIDE_INT) 2 << (width - 1)) - 1;
12376 min_hi = 0;
12378 else
12380 max_hi = signed_max_hi;
12381 min_hi = ((unsigned HOST_WIDE_INT) -1 << (width - 1));
12385 if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1) == max_hi
12386 && TREE_INT_CST_LOW (arg1) == max_lo)
12387 switch (code)
12389 case GT_EXPR:
12390 return omit_one_operand (type, integer_zero_node, arg0);
12392 case GE_EXPR:
12393 return fold_build2 (EQ_EXPR, type, op0, op1);
12395 case LE_EXPR:
12396 return omit_one_operand (type, integer_one_node, arg0);
12398 case LT_EXPR:
12399 return fold_build2 (NE_EXPR, type, op0, op1);
12401 /* The GE_EXPR and LT_EXPR cases above are not normally
12402 reached because of previous transformations. */
12404 default:
12405 break;
12407 else if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1)
12408 == max_hi
12409 && TREE_INT_CST_LOW (arg1) == max_lo - 1)
12410 switch (code)
12412 case GT_EXPR:
12413 arg1 = const_binop (PLUS_EXPR, arg1,
12414 build_int_cst (TREE_TYPE (arg1), 1), 0);
12415 return fold_build2 (EQ_EXPR, type,
12416 fold_convert (TREE_TYPE (arg1), arg0),
12417 arg1);
12418 case LE_EXPR:
12419 arg1 = const_binop (PLUS_EXPR, arg1,
12420 build_int_cst (TREE_TYPE (arg1), 1), 0);
12421 return fold_build2 (NE_EXPR, type,
12422 fold_convert (TREE_TYPE (arg1), arg0),
12423 arg1);
12424 default:
12425 break;
12427 else if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1)
12428 == min_hi
12429 && TREE_INT_CST_LOW (arg1) == min_lo)
12430 switch (code)
12432 case LT_EXPR:
12433 return omit_one_operand (type, integer_zero_node, arg0);
12435 case LE_EXPR:
12436 return fold_build2 (EQ_EXPR, type, op0, op1);
12438 case GE_EXPR:
12439 return omit_one_operand (type, integer_one_node, arg0);
12441 case GT_EXPR:
12442 return fold_build2 (NE_EXPR, type, op0, op1);
12444 default:
12445 break;
12447 else if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1)
12448 == min_hi
12449 && TREE_INT_CST_LOW (arg1) == min_lo + 1)
12450 switch (code)
12452 case GE_EXPR:
12453 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
12454 return fold_build2 (NE_EXPR, type,
12455 fold_convert (TREE_TYPE (arg1), arg0),
12456 arg1);
12457 case LT_EXPR:
12458 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
12459 return fold_build2 (EQ_EXPR, type,
12460 fold_convert (TREE_TYPE (arg1), arg0),
12461 arg1);
12462 default:
12463 break;
12466 else if (TREE_INT_CST_HIGH (arg1) == signed_max_hi
12467 && TREE_INT_CST_LOW (arg1) == signed_max_lo
12468 && TYPE_UNSIGNED (arg1_type)
12469 /* We will flip the signedness of the comparison operator
12470 associated with the mode of arg1, so the sign bit is
12471 specified by this mode. Check that arg1 is the signed
12472 max associated with this sign bit. */
12473 && width == GET_MODE_BITSIZE (TYPE_MODE (arg1_type))
12474 /* signed_type does not work on pointer types. */
12475 && INTEGRAL_TYPE_P (arg1_type))
12477 /* The following case also applies to X < signed_max+1
12478 and X >= signed_max+1 because previous transformations. */
12479 if (code == LE_EXPR || code == GT_EXPR)
12481 tree st;
12482 st = signed_type_for (TREE_TYPE (arg1));
12483 return fold_build2 (code == LE_EXPR ? GE_EXPR : LT_EXPR,
12484 type, fold_convert (st, arg0),
12485 build_int_cst (st, 0));
12491 /* If we are comparing an ABS_EXPR with a constant, we can
12492 convert all the cases into explicit comparisons, but they may
12493 well not be faster than doing the ABS and one comparison.
12494 But ABS (X) <= C is a range comparison, which becomes a subtraction
12495 and a comparison, and is probably faster. */
12496 if (code == LE_EXPR
12497 && TREE_CODE (arg1) == INTEGER_CST
12498 && TREE_CODE (arg0) == ABS_EXPR
12499 && ! TREE_SIDE_EFFECTS (arg0)
12500 && (0 != (tem = negate_expr (arg1)))
12501 && TREE_CODE (tem) == INTEGER_CST
12502 && !TREE_OVERFLOW (tem))
12503 return fold_build2 (TRUTH_ANDIF_EXPR, type,
12504 build2 (GE_EXPR, type,
12505 TREE_OPERAND (arg0, 0), tem),
12506 build2 (LE_EXPR, type,
12507 TREE_OPERAND (arg0, 0), arg1));
12509 /* Convert ABS_EXPR<x> >= 0 to true. */
12510 strict_overflow_p = false;
12511 if (code == GE_EXPR
12512 && (integer_zerop (arg1)
12513 || (! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
12514 && real_zerop (arg1)))
12515 && tree_expr_nonnegative_warnv_p (arg0, &strict_overflow_p))
12517 if (strict_overflow_p)
12518 fold_overflow_warning (("assuming signed overflow does not occur "
12519 "when simplifying comparison of "
12520 "absolute value and zero"),
12521 WARN_STRICT_OVERFLOW_CONDITIONAL);
12522 return omit_one_operand (type, integer_one_node, arg0);
12525 /* Convert ABS_EXPR<x> < 0 to false. */
12526 strict_overflow_p = false;
12527 if (code == LT_EXPR
12528 && (integer_zerop (arg1) || real_zerop (arg1))
12529 && tree_expr_nonnegative_warnv_p (arg0, &strict_overflow_p))
12531 if (strict_overflow_p)
12532 fold_overflow_warning (("assuming signed overflow does not occur "
12533 "when simplifying comparison of "
12534 "absolute value and zero"),
12535 WARN_STRICT_OVERFLOW_CONDITIONAL);
12536 return omit_one_operand (type, integer_zero_node, arg0);
12539 /* If X is unsigned, convert X < (1 << Y) into X >> Y == 0
12540 and similarly for >= into !=. */
12541 if ((code == LT_EXPR || code == GE_EXPR)
12542 && TYPE_UNSIGNED (TREE_TYPE (arg0))
12543 && TREE_CODE (arg1) == LSHIFT_EXPR
12544 && integer_onep (TREE_OPERAND (arg1, 0)))
12545 return build2 (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
12546 build2 (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
12547 TREE_OPERAND (arg1, 1)),
12548 build_int_cst (TREE_TYPE (arg0), 0));
12550 if ((code == LT_EXPR || code == GE_EXPR)
12551 && TYPE_UNSIGNED (TREE_TYPE (arg0))
12552 && (TREE_CODE (arg1) == NOP_EXPR
12553 || TREE_CODE (arg1) == CONVERT_EXPR)
12554 && TREE_CODE (TREE_OPERAND (arg1, 0)) == LSHIFT_EXPR
12555 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg1, 0), 0)))
12556 return
12557 build2 (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
12558 fold_convert (TREE_TYPE (arg0),
12559 build2 (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
12560 TREE_OPERAND (TREE_OPERAND (arg1, 0),
12561 1))),
12562 build_int_cst (TREE_TYPE (arg0), 0));
12564 return NULL_TREE;
12566 case UNORDERED_EXPR:
12567 case ORDERED_EXPR:
12568 case UNLT_EXPR:
12569 case UNLE_EXPR:
12570 case UNGT_EXPR:
12571 case UNGE_EXPR:
12572 case UNEQ_EXPR:
12573 case LTGT_EXPR:
12574 if (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
12576 t1 = fold_relational_const (code, type, arg0, arg1);
12577 if (t1 != NULL_TREE)
12578 return t1;
12581 /* If the first operand is NaN, the result is constant. */
12582 if (TREE_CODE (arg0) == REAL_CST
12583 && REAL_VALUE_ISNAN (TREE_REAL_CST (arg0))
12584 && (code != LTGT_EXPR || ! flag_trapping_math))
12586 t1 = (code == ORDERED_EXPR || code == LTGT_EXPR)
12587 ? integer_zero_node
12588 : integer_one_node;
12589 return omit_one_operand (type, t1, arg1);
12592 /* If the second operand is NaN, the result is constant. */
12593 if (TREE_CODE (arg1) == REAL_CST
12594 && REAL_VALUE_ISNAN (TREE_REAL_CST (arg1))
12595 && (code != LTGT_EXPR || ! flag_trapping_math))
12597 t1 = (code == ORDERED_EXPR || code == LTGT_EXPR)
12598 ? integer_zero_node
12599 : integer_one_node;
12600 return omit_one_operand (type, t1, arg0);
12603 /* Simplify unordered comparison of something with itself. */
12604 if ((code == UNLE_EXPR || code == UNGE_EXPR || code == UNEQ_EXPR)
12605 && operand_equal_p (arg0, arg1, 0))
12606 return constant_boolean_node (1, type);
12608 if (code == LTGT_EXPR
12609 && !flag_trapping_math
12610 && operand_equal_p (arg0, arg1, 0))
12611 return constant_boolean_node (0, type);
12613 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
12615 tree targ0 = strip_float_extensions (arg0);
12616 tree targ1 = strip_float_extensions (arg1);
12617 tree newtype = TREE_TYPE (targ0);
12619 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
12620 newtype = TREE_TYPE (targ1);
12622 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
12623 return fold_build2 (code, type, fold_convert (newtype, targ0),
12624 fold_convert (newtype, targ1));
12627 return NULL_TREE;
12629 case COMPOUND_EXPR:
12630 /* When pedantic, a compound expression can be neither an lvalue
12631 nor an integer constant expression. */
12632 if (TREE_SIDE_EFFECTS (arg0) || TREE_CONSTANT (arg1))
12633 return NULL_TREE;
12634 /* Don't let (0, 0) be null pointer constant. */
12635 tem = integer_zerop (arg1) ? build1 (NOP_EXPR, type, arg1)
12636 : fold_convert (type, arg1);
12637 return pedantic_non_lvalue (tem);
12639 case COMPLEX_EXPR:
12640 if ((TREE_CODE (arg0) == REAL_CST
12641 && TREE_CODE (arg1) == REAL_CST)
12642 || (TREE_CODE (arg0) == INTEGER_CST
12643 && TREE_CODE (arg1) == INTEGER_CST))
12644 return build_complex (type, arg0, arg1);
12645 return NULL_TREE;
12647 case ASSERT_EXPR:
12648 /* An ASSERT_EXPR should never be passed to fold_binary. */
12649 gcc_unreachable ();
12651 default:
12652 return NULL_TREE;
12653 } /* switch (code) */
12656 /* Callback for walk_tree, looking for LABEL_EXPR.
12657 Returns tree TP if it is LABEL_EXPR. Otherwise it returns NULL_TREE.
12658 Do not check the sub-tree of GOTO_EXPR. */
12660 static tree
12661 contains_label_1 (tree *tp,
12662 int *walk_subtrees,
12663 void *data ATTRIBUTE_UNUSED)
12665 switch (TREE_CODE (*tp))
12667 case LABEL_EXPR:
12668 return *tp;
12669 case GOTO_EXPR:
12670 *walk_subtrees = 0;
12671 /* no break */
12672 default:
12673 return NULL_TREE;
12677 /* Checks whether the sub-tree ST contains a label LABEL_EXPR which is
12678 accessible from outside the sub-tree. Returns NULL_TREE if no
12679 addressable label is found. */
12681 static bool
12682 contains_label_p (tree st)
12684 return (walk_tree (&st, contains_label_1 , NULL, NULL) != NULL_TREE);
12687 /* Fold a ternary expression of code CODE and type TYPE with operands
12688 OP0, OP1, and OP2. Return the folded expression if folding is
12689 successful. Otherwise, return NULL_TREE. */
12691 tree
12692 fold_ternary (enum tree_code code, tree type, tree op0, tree op1, tree op2)
12694 tree tem;
12695 tree arg0 = NULL_TREE, arg1 = NULL_TREE;
12696 enum tree_code_class kind = TREE_CODE_CLASS (code);
12698 gcc_assert (IS_EXPR_CODE_CLASS (kind)
12699 && TREE_CODE_LENGTH (code) == 3);
12701 /* Strip any conversions that don't change the mode. This is safe
12702 for every expression, except for a comparison expression because
12703 its signedness is derived from its operands. So, in the latter
12704 case, only strip conversions that don't change the signedness.
12706 Note that this is done as an internal manipulation within the
12707 constant folder, in order to find the simplest representation of
12708 the arguments so that their form can be studied. In any cases,
12709 the appropriate type conversions should be put back in the tree
12710 that will get out of the constant folder. */
12711 if (op0)
12713 arg0 = op0;
12714 STRIP_NOPS (arg0);
12717 if (op1)
12719 arg1 = op1;
12720 STRIP_NOPS (arg1);
12723 switch (code)
12725 case COMPONENT_REF:
12726 if (TREE_CODE (arg0) == CONSTRUCTOR
12727 && ! type_contains_placeholder_p (TREE_TYPE (arg0)))
12729 unsigned HOST_WIDE_INT idx;
12730 tree field, value;
12731 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg0), idx, field, value)
12732 if (field == arg1)
12733 return value;
12735 return NULL_TREE;
12737 case COND_EXPR:
12738 /* Pedantic ANSI C says that a conditional expression is never an lvalue,
12739 so all simple results must be passed through pedantic_non_lvalue. */
12740 if (TREE_CODE (arg0) == INTEGER_CST)
12742 tree unused_op = integer_zerop (arg0) ? op1 : op2;
12743 tem = integer_zerop (arg0) ? op2 : op1;
12744 /* Only optimize constant conditions when the selected branch
12745 has the same type as the COND_EXPR. This avoids optimizing
12746 away "c ? x : throw", where the throw has a void type.
12747 Avoid throwing away that operand which contains label. */
12748 if ((!TREE_SIDE_EFFECTS (unused_op)
12749 || !contains_label_p (unused_op))
12750 && (! VOID_TYPE_P (TREE_TYPE (tem))
12751 || VOID_TYPE_P (type)))
12752 return pedantic_non_lvalue (tem);
12753 return NULL_TREE;
12755 if (operand_equal_p (arg1, op2, 0))
12756 return pedantic_omit_one_operand (type, arg1, arg0);
12758 /* If we have A op B ? A : C, we may be able to convert this to a
12759 simpler expression, depending on the operation and the values
12760 of B and C. Signed zeros prevent all of these transformations,
12761 for reasons given above each one.
12763 Also try swapping the arguments and inverting the conditional. */
12764 if (COMPARISON_CLASS_P (arg0)
12765 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
12766 arg1, TREE_OPERAND (arg0, 1))
12767 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg1))))
12769 tem = fold_cond_expr_with_comparison (type, arg0, op1, op2);
12770 if (tem)
12771 return tem;
12774 if (COMPARISON_CLASS_P (arg0)
12775 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
12776 op2,
12777 TREE_OPERAND (arg0, 1))
12778 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (op2))))
12780 tem = fold_truth_not_expr (arg0);
12781 if (tem && COMPARISON_CLASS_P (tem))
12783 tem = fold_cond_expr_with_comparison (type, tem, op2, op1);
12784 if (tem)
12785 return tem;
12789 /* If the second operand is simpler than the third, swap them
12790 since that produces better jump optimization results. */
12791 if (truth_value_p (TREE_CODE (arg0))
12792 && tree_swap_operands_p (op1, op2, false))
12794 /* See if this can be inverted. If it can't, possibly because
12795 it was a floating-point inequality comparison, don't do
12796 anything. */
12797 tem = fold_truth_not_expr (arg0);
12798 if (tem)
12799 return fold_build3 (code, type, tem, op2, op1);
12802 /* Convert A ? 1 : 0 to simply A. */
12803 if (integer_onep (op1)
12804 && integer_zerop (op2)
12805 /* If we try to convert OP0 to our type, the
12806 call to fold will try to move the conversion inside
12807 a COND, which will recurse. In that case, the COND_EXPR
12808 is probably the best choice, so leave it alone. */
12809 && type == TREE_TYPE (arg0))
12810 return pedantic_non_lvalue (arg0);
12812 /* Convert A ? 0 : 1 to !A. This prefers the use of NOT_EXPR
12813 over COND_EXPR in cases such as floating point comparisons. */
12814 if (integer_zerop (op1)
12815 && integer_onep (op2)
12816 && truth_value_p (TREE_CODE (arg0)))
12817 return pedantic_non_lvalue (fold_convert (type,
12818 invert_truthvalue (arg0)));
12820 /* A < 0 ? <sign bit of A> : 0 is simply (A & <sign bit of A>). */
12821 if (TREE_CODE (arg0) == LT_EXPR
12822 && integer_zerop (TREE_OPERAND (arg0, 1))
12823 && integer_zerop (op2)
12824 && (tem = sign_bit_p (TREE_OPERAND (arg0, 0), arg1)))
12826 /* sign_bit_p only checks ARG1 bits within A's precision.
12827 If <sign bit of A> has wider type than A, bits outside
12828 of A's precision in <sign bit of A> need to be checked.
12829 If they are all 0, this optimization needs to be done
12830 in unsigned A's type, if they are all 1 in signed A's type,
12831 otherwise this can't be done. */
12832 if (TYPE_PRECISION (TREE_TYPE (tem))
12833 < TYPE_PRECISION (TREE_TYPE (arg1))
12834 && TYPE_PRECISION (TREE_TYPE (tem))
12835 < TYPE_PRECISION (type))
12837 unsigned HOST_WIDE_INT mask_lo;
12838 HOST_WIDE_INT mask_hi;
12839 int inner_width, outer_width;
12840 tree tem_type;
12842 inner_width = TYPE_PRECISION (TREE_TYPE (tem));
12843 outer_width = TYPE_PRECISION (TREE_TYPE (arg1));
12844 if (outer_width > TYPE_PRECISION (type))
12845 outer_width = TYPE_PRECISION (type);
12847 if (outer_width > HOST_BITS_PER_WIDE_INT)
12849 mask_hi = ((unsigned HOST_WIDE_INT) -1
12850 >> (2 * HOST_BITS_PER_WIDE_INT - outer_width));
12851 mask_lo = -1;
12853 else
12855 mask_hi = 0;
12856 mask_lo = ((unsigned HOST_WIDE_INT) -1
12857 >> (HOST_BITS_PER_WIDE_INT - outer_width));
12859 if (inner_width > HOST_BITS_PER_WIDE_INT)
12861 mask_hi &= ~((unsigned HOST_WIDE_INT) -1
12862 >> (HOST_BITS_PER_WIDE_INT - inner_width));
12863 mask_lo = 0;
12865 else
12866 mask_lo &= ~((unsigned HOST_WIDE_INT) -1
12867 >> (HOST_BITS_PER_WIDE_INT - inner_width));
12869 if ((TREE_INT_CST_HIGH (arg1) & mask_hi) == mask_hi
12870 && (TREE_INT_CST_LOW (arg1) & mask_lo) == mask_lo)
12872 tem_type = signed_type_for (TREE_TYPE (tem));
12873 tem = fold_convert (tem_type, tem);
12875 else if ((TREE_INT_CST_HIGH (arg1) & mask_hi) == 0
12876 && (TREE_INT_CST_LOW (arg1) & mask_lo) == 0)
12878 tem_type = unsigned_type_for (TREE_TYPE (tem));
12879 tem = fold_convert (tem_type, tem);
12881 else
12882 tem = NULL;
12885 if (tem)
12886 return fold_convert (type,
12887 fold_build2 (BIT_AND_EXPR,
12888 TREE_TYPE (tem), tem,
12889 fold_convert (TREE_TYPE (tem),
12890 arg1)));
12893 /* (A >> N) & 1 ? (1 << N) : 0 is simply A & (1 << N). A & 1 was
12894 already handled above. */
12895 if (TREE_CODE (arg0) == BIT_AND_EXPR
12896 && integer_onep (TREE_OPERAND (arg0, 1))
12897 && integer_zerop (op2)
12898 && integer_pow2p (arg1))
12900 tree tem = TREE_OPERAND (arg0, 0);
12901 STRIP_NOPS (tem);
12902 if (TREE_CODE (tem) == RSHIFT_EXPR
12903 && TREE_CODE (TREE_OPERAND (tem, 1)) == INTEGER_CST
12904 && (unsigned HOST_WIDE_INT) tree_log2 (arg1) ==
12905 TREE_INT_CST_LOW (TREE_OPERAND (tem, 1)))
12906 return fold_build2 (BIT_AND_EXPR, type,
12907 TREE_OPERAND (tem, 0), arg1);
12910 /* A & N ? N : 0 is simply A & N if N is a power of two. This
12911 is probably obsolete because the first operand should be a
12912 truth value (that's why we have the two cases above), but let's
12913 leave it in until we can confirm this for all front-ends. */
12914 if (integer_zerop (op2)
12915 && TREE_CODE (arg0) == NE_EXPR
12916 && integer_zerop (TREE_OPERAND (arg0, 1))
12917 && integer_pow2p (arg1)
12918 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
12919 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
12920 arg1, OEP_ONLY_CONST))
12921 return pedantic_non_lvalue (fold_convert (type,
12922 TREE_OPERAND (arg0, 0)));
12924 /* Convert A ? B : 0 into A && B if A and B are truth values. */
12925 if (integer_zerop (op2)
12926 && truth_value_p (TREE_CODE (arg0))
12927 && truth_value_p (TREE_CODE (arg1)))
12928 return fold_build2 (TRUTH_ANDIF_EXPR, type,
12929 fold_convert (type, arg0),
12930 arg1);
12932 /* Convert A ? B : 1 into !A || B if A and B are truth values. */
12933 if (integer_onep (op2)
12934 && truth_value_p (TREE_CODE (arg0))
12935 && truth_value_p (TREE_CODE (arg1)))
12937 /* Only perform transformation if ARG0 is easily inverted. */
12938 tem = fold_truth_not_expr (arg0);
12939 if (tem)
12940 return fold_build2 (TRUTH_ORIF_EXPR, type,
12941 fold_convert (type, tem),
12942 arg1);
12945 /* Convert A ? 0 : B into !A && B if A and B are truth values. */
12946 if (integer_zerop (arg1)
12947 && truth_value_p (TREE_CODE (arg0))
12948 && truth_value_p (TREE_CODE (op2)))
12950 /* Only perform transformation if ARG0 is easily inverted. */
12951 tem = fold_truth_not_expr (arg0);
12952 if (tem)
12953 return fold_build2 (TRUTH_ANDIF_EXPR, type,
12954 fold_convert (type, tem),
12955 op2);
12958 /* Convert A ? 1 : B into A || B if A and B are truth values. */
12959 if (integer_onep (arg1)
12960 && truth_value_p (TREE_CODE (arg0))
12961 && truth_value_p (TREE_CODE (op2)))
12962 return fold_build2 (TRUTH_ORIF_EXPR, type,
12963 fold_convert (type, arg0),
12964 op2);
12966 return NULL_TREE;
12968 case CALL_EXPR:
12969 /* CALL_EXPRs used to be ternary exprs. Catch any mistaken uses
12970 of fold_ternary on them. */
12971 gcc_unreachable ();
12973 case BIT_FIELD_REF:
12974 if ((TREE_CODE (arg0) == VECTOR_CST
12975 || (TREE_CODE (arg0) == CONSTRUCTOR && TREE_CONSTANT (arg0)))
12976 && type == TREE_TYPE (TREE_TYPE (arg0)))
12978 unsigned HOST_WIDE_INT width = tree_low_cst (arg1, 1);
12979 unsigned HOST_WIDE_INT idx = tree_low_cst (op2, 1);
12981 if (width != 0
12982 && simple_cst_equal (arg1, TYPE_SIZE (type)) == 1
12983 && (idx % width) == 0
12984 && (idx = idx / width)
12985 < TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg0)))
12987 tree elements = NULL_TREE;
12989 if (TREE_CODE (arg0) == VECTOR_CST)
12990 elements = TREE_VECTOR_CST_ELTS (arg0);
12991 else
12993 unsigned HOST_WIDE_INT idx;
12994 tree value;
12996 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg0), idx, value)
12997 elements = tree_cons (NULL_TREE, value, elements);
12999 while (idx-- > 0 && elements)
13000 elements = TREE_CHAIN (elements);
13001 if (elements)
13002 return TREE_VALUE (elements);
13003 else
13004 return fold_convert (type, integer_zero_node);
13007 return NULL_TREE;
13009 default:
13010 return NULL_TREE;
13011 } /* switch (code) */
13014 /* Perform constant folding and related simplification of EXPR.
13015 The related simplifications include x*1 => x, x*0 => 0, etc.,
13016 and application of the associative law.
13017 NOP_EXPR conversions may be removed freely (as long as we
13018 are careful not to change the type of the overall expression).
13019 We cannot simplify through a CONVERT_EXPR, FIX_EXPR or FLOAT_EXPR,
13020 but we can constant-fold them if they have constant operands. */
13022 #ifdef ENABLE_FOLD_CHECKING
13023 # define fold(x) fold_1 (x)
13024 static tree fold_1 (tree);
13025 static
13026 #endif
13027 tree
13028 fold (tree expr)
13030 const tree t = expr;
13031 enum tree_code code = TREE_CODE (t);
13032 enum tree_code_class kind = TREE_CODE_CLASS (code);
13033 tree tem;
13035 /* Return right away if a constant. */
13036 if (kind == tcc_constant)
13037 return t;
13039 /* CALL_EXPR-like objects with variable numbers of operands are
13040 treated specially. */
13041 if (kind == tcc_vl_exp)
13043 if (code == CALL_EXPR)
13045 tem = fold_call_expr (expr, false);
13046 return tem ? tem : expr;
13048 return expr;
13051 if (IS_EXPR_CODE_CLASS (kind)
13052 || IS_GIMPLE_STMT_CODE_CLASS (kind))
13054 tree type = TREE_TYPE (t);
13055 tree op0, op1, op2;
13057 switch (TREE_CODE_LENGTH (code))
13059 case 1:
13060 op0 = TREE_OPERAND (t, 0);
13061 tem = fold_unary (code, type, op0);
13062 return tem ? tem : expr;
13063 case 2:
13064 op0 = TREE_OPERAND (t, 0);
13065 op1 = TREE_OPERAND (t, 1);
13066 tem = fold_binary (code, type, op0, op1);
13067 return tem ? tem : expr;
13068 case 3:
13069 op0 = TREE_OPERAND (t, 0);
13070 op1 = TREE_OPERAND (t, 1);
13071 op2 = TREE_OPERAND (t, 2);
13072 tem = fold_ternary (code, type, op0, op1, op2);
13073 return tem ? tem : expr;
13074 default:
13075 break;
13079 switch (code)
13081 case CONST_DECL:
13082 return fold (DECL_INITIAL (t));
13084 default:
13085 return t;
13086 } /* switch (code) */
13089 #ifdef ENABLE_FOLD_CHECKING
13090 #undef fold
13092 static void fold_checksum_tree (const_tree, struct md5_ctx *, htab_t);
13093 static void fold_check_failed (const_tree, const_tree);
13094 void print_fold_checksum (const_tree);
13096 /* When --enable-checking=fold, compute a digest of expr before
13097 and after actual fold call to see if fold did not accidentally
13098 change original expr. */
13100 tree
13101 fold (tree expr)
13103 tree ret;
13104 struct md5_ctx ctx;
13105 unsigned char checksum_before[16], checksum_after[16];
13106 htab_t ht;
13108 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13109 md5_init_ctx (&ctx);
13110 fold_checksum_tree (expr, &ctx, ht);
13111 md5_finish_ctx (&ctx, checksum_before);
13112 htab_empty (ht);
13114 ret = fold_1 (expr);
13116 md5_init_ctx (&ctx);
13117 fold_checksum_tree (expr, &ctx, ht);
13118 md5_finish_ctx (&ctx, checksum_after);
13119 htab_delete (ht);
13121 if (memcmp (checksum_before, checksum_after, 16))
13122 fold_check_failed (expr, ret);
13124 return ret;
13127 void
13128 print_fold_checksum (const_tree expr)
13130 struct md5_ctx ctx;
13131 unsigned char checksum[16], cnt;
13132 htab_t ht;
13134 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13135 md5_init_ctx (&ctx);
13136 fold_checksum_tree (expr, &ctx, ht);
13137 md5_finish_ctx (&ctx, checksum);
13138 htab_delete (ht);
13139 for (cnt = 0; cnt < 16; ++cnt)
13140 fprintf (stderr, "%02x", checksum[cnt]);
13141 putc ('\n', stderr);
13144 static void
13145 fold_check_failed (const_tree expr ATTRIBUTE_UNUSED, const_tree ret ATTRIBUTE_UNUSED)
13147 internal_error ("fold check: original tree changed by fold");
13150 static void
13151 fold_checksum_tree (const_tree expr, struct md5_ctx *ctx, htab_t ht)
13153 const void **slot;
13154 enum tree_code code;
13155 struct tree_function_decl buf;
13156 int i, len;
13158 recursive_label:
13160 gcc_assert ((sizeof (struct tree_exp) + 5 * sizeof (tree)
13161 <= sizeof (struct tree_function_decl))
13162 && sizeof (struct tree_type) <= sizeof (struct tree_function_decl));
13163 if (expr == NULL)
13164 return;
13165 slot = (const void **) htab_find_slot (ht, expr, INSERT);
13166 if (*slot != NULL)
13167 return;
13168 *slot = expr;
13169 code = TREE_CODE (expr);
13170 if (TREE_CODE_CLASS (code) == tcc_declaration
13171 && DECL_ASSEMBLER_NAME_SET_P (expr))
13173 /* Allow DECL_ASSEMBLER_NAME to be modified. */
13174 memcpy ((char *) &buf, expr, tree_size (expr));
13175 SET_DECL_ASSEMBLER_NAME ((tree)&buf, NULL);
13176 expr = (tree) &buf;
13178 else if (TREE_CODE_CLASS (code) == tcc_type
13179 && (TYPE_POINTER_TO (expr) || TYPE_REFERENCE_TO (expr)
13180 || TYPE_CACHED_VALUES_P (expr)
13181 || TYPE_CONTAINS_PLACEHOLDER_INTERNAL (expr)))
13183 /* Allow these fields to be modified. */
13184 tree tmp;
13185 memcpy ((char *) &buf, expr, tree_size (expr));
13186 expr = tmp = (tree) &buf;
13187 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (tmp) = 0;
13188 TYPE_POINTER_TO (tmp) = NULL;
13189 TYPE_REFERENCE_TO (tmp) = NULL;
13190 if (TYPE_CACHED_VALUES_P (tmp))
13192 TYPE_CACHED_VALUES_P (tmp) = 0;
13193 TYPE_CACHED_VALUES (tmp) = NULL;
13196 md5_process_bytes (expr, tree_size (expr), ctx);
13197 fold_checksum_tree (TREE_TYPE (expr), ctx, ht);
13198 if (TREE_CODE_CLASS (code) != tcc_type
13199 && TREE_CODE_CLASS (code) != tcc_declaration
13200 && code != TREE_LIST
13201 && code != SSA_NAME)
13202 fold_checksum_tree (TREE_CHAIN (expr), ctx, ht);
13203 switch (TREE_CODE_CLASS (code))
13205 case tcc_constant:
13206 switch (code)
13208 case STRING_CST:
13209 md5_process_bytes (TREE_STRING_POINTER (expr),
13210 TREE_STRING_LENGTH (expr), ctx);
13211 break;
13212 case COMPLEX_CST:
13213 fold_checksum_tree (TREE_REALPART (expr), ctx, ht);
13214 fold_checksum_tree (TREE_IMAGPART (expr), ctx, ht);
13215 break;
13216 case VECTOR_CST:
13217 fold_checksum_tree (TREE_VECTOR_CST_ELTS (expr), ctx, ht);
13218 break;
13219 default:
13220 break;
13222 break;
13223 case tcc_exceptional:
13224 switch (code)
13226 case TREE_LIST:
13227 fold_checksum_tree (TREE_PURPOSE (expr), ctx, ht);
13228 fold_checksum_tree (TREE_VALUE (expr), ctx, ht);
13229 expr = TREE_CHAIN (expr);
13230 goto recursive_label;
13231 break;
13232 case TREE_VEC:
13233 for (i = 0; i < TREE_VEC_LENGTH (expr); ++i)
13234 fold_checksum_tree (TREE_VEC_ELT (expr, i), ctx, ht);
13235 break;
13236 default:
13237 break;
13239 break;
13240 case tcc_expression:
13241 case tcc_reference:
13242 case tcc_comparison:
13243 case tcc_unary:
13244 case tcc_binary:
13245 case tcc_statement:
13246 case tcc_vl_exp:
13247 len = TREE_OPERAND_LENGTH (expr);
13248 for (i = 0; i < len; ++i)
13249 fold_checksum_tree (TREE_OPERAND (expr, i), ctx, ht);
13250 break;
13251 case tcc_declaration:
13252 fold_checksum_tree (DECL_NAME (expr), ctx, ht);
13253 fold_checksum_tree (DECL_CONTEXT (expr), ctx, ht);
13254 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_COMMON))
13256 fold_checksum_tree (DECL_SIZE (expr), ctx, ht);
13257 fold_checksum_tree (DECL_SIZE_UNIT (expr), ctx, ht);
13258 fold_checksum_tree (DECL_INITIAL (expr), ctx, ht);
13259 fold_checksum_tree (DECL_ABSTRACT_ORIGIN (expr), ctx, ht);
13260 fold_checksum_tree (DECL_ATTRIBUTES (expr), ctx, ht);
13262 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_WITH_VIS))
13263 fold_checksum_tree (DECL_SECTION_NAME (expr), ctx, ht);
13265 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_NON_COMMON))
13267 fold_checksum_tree (DECL_VINDEX (expr), ctx, ht);
13268 fold_checksum_tree (DECL_RESULT_FLD (expr), ctx, ht);
13269 fold_checksum_tree (DECL_ARGUMENT_FLD (expr), ctx, ht);
13271 break;
13272 case tcc_type:
13273 if (TREE_CODE (expr) == ENUMERAL_TYPE)
13274 fold_checksum_tree (TYPE_VALUES (expr), ctx, ht);
13275 fold_checksum_tree (TYPE_SIZE (expr), ctx, ht);
13276 fold_checksum_tree (TYPE_SIZE_UNIT (expr), ctx, ht);
13277 fold_checksum_tree (TYPE_ATTRIBUTES (expr), ctx, ht);
13278 fold_checksum_tree (TYPE_NAME (expr), ctx, ht);
13279 if (INTEGRAL_TYPE_P (expr)
13280 || SCALAR_FLOAT_TYPE_P (expr))
13282 fold_checksum_tree (TYPE_MIN_VALUE (expr), ctx, ht);
13283 fold_checksum_tree (TYPE_MAX_VALUE (expr), ctx, ht);
13285 fold_checksum_tree (TYPE_MAIN_VARIANT (expr), ctx, ht);
13286 if (TREE_CODE (expr) == RECORD_TYPE
13287 || TREE_CODE (expr) == UNION_TYPE
13288 || TREE_CODE (expr) == QUAL_UNION_TYPE)
13289 fold_checksum_tree (TYPE_BINFO (expr), ctx, ht);
13290 fold_checksum_tree (TYPE_CONTEXT (expr), ctx, ht);
13291 break;
13292 default:
13293 break;
13297 /* Helper function for outputting the checksum of a tree T. When
13298 debugging with gdb, you can "define mynext" to be "next" followed
13299 by "call debug_fold_checksum (op0)", then just trace down till the
13300 outputs differ. */
13302 void
13303 debug_fold_checksum (const_tree t)
13305 int i;
13306 unsigned char checksum[16];
13307 struct md5_ctx ctx;
13308 htab_t ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13310 md5_init_ctx (&ctx);
13311 fold_checksum_tree (t, &ctx, ht);
13312 md5_finish_ctx (&ctx, checksum);
13313 htab_empty (ht);
13315 for (i = 0; i < 16; i++)
13316 fprintf (stderr, "%d ", checksum[i]);
13318 fprintf (stderr, "\n");
13321 #endif
13323 /* Fold a unary tree expression with code CODE of type TYPE with an
13324 operand OP0. Return a folded expression if successful. Otherwise,
13325 return a tree expression with code CODE of type TYPE with an
13326 operand OP0. */
13328 tree
13329 fold_build1_stat (enum tree_code code, tree type, tree op0 MEM_STAT_DECL)
13331 tree tem;
13332 #ifdef ENABLE_FOLD_CHECKING
13333 unsigned char checksum_before[16], checksum_after[16];
13334 struct md5_ctx ctx;
13335 htab_t ht;
13337 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13338 md5_init_ctx (&ctx);
13339 fold_checksum_tree (op0, &ctx, ht);
13340 md5_finish_ctx (&ctx, checksum_before);
13341 htab_empty (ht);
13342 #endif
13344 tem = fold_unary (code, type, op0);
13345 if (!tem)
13346 tem = build1_stat (code, type, op0 PASS_MEM_STAT);
13348 #ifdef ENABLE_FOLD_CHECKING
13349 md5_init_ctx (&ctx);
13350 fold_checksum_tree (op0, &ctx, ht);
13351 md5_finish_ctx (&ctx, checksum_after);
13352 htab_delete (ht);
13354 if (memcmp (checksum_before, checksum_after, 16))
13355 fold_check_failed (op0, tem);
13356 #endif
13357 return tem;
13360 /* Fold a binary tree expression with code CODE of type TYPE with
13361 operands OP0 and OP1. Return a folded expression if successful.
13362 Otherwise, return a tree expression with code CODE of type TYPE
13363 with operands OP0 and OP1. */
13365 tree
13366 fold_build2_stat (enum tree_code code, tree type, tree op0, tree op1
13367 MEM_STAT_DECL)
13369 tree tem;
13370 #ifdef ENABLE_FOLD_CHECKING
13371 unsigned char checksum_before_op0[16],
13372 checksum_before_op1[16],
13373 checksum_after_op0[16],
13374 checksum_after_op1[16];
13375 struct md5_ctx ctx;
13376 htab_t ht;
13378 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13379 md5_init_ctx (&ctx);
13380 fold_checksum_tree (op0, &ctx, ht);
13381 md5_finish_ctx (&ctx, checksum_before_op0);
13382 htab_empty (ht);
13384 md5_init_ctx (&ctx);
13385 fold_checksum_tree (op1, &ctx, ht);
13386 md5_finish_ctx (&ctx, checksum_before_op1);
13387 htab_empty (ht);
13388 #endif
13390 tem = fold_binary (code, type, op0, op1);
13391 if (!tem)
13392 tem = build2_stat (code, type, op0, op1 PASS_MEM_STAT);
13394 #ifdef ENABLE_FOLD_CHECKING
13395 md5_init_ctx (&ctx);
13396 fold_checksum_tree (op0, &ctx, ht);
13397 md5_finish_ctx (&ctx, checksum_after_op0);
13398 htab_empty (ht);
13400 if (memcmp (checksum_before_op0, checksum_after_op0, 16))
13401 fold_check_failed (op0, tem);
13403 md5_init_ctx (&ctx);
13404 fold_checksum_tree (op1, &ctx, ht);
13405 md5_finish_ctx (&ctx, checksum_after_op1);
13406 htab_delete (ht);
13408 if (memcmp (checksum_before_op1, checksum_after_op1, 16))
13409 fold_check_failed (op1, tem);
13410 #endif
13411 return tem;
13414 /* Fold a ternary tree expression with code CODE of type TYPE with
13415 operands OP0, OP1, and OP2. Return a folded expression if
13416 successful. Otherwise, return a tree expression with code CODE of
13417 type TYPE with operands OP0, OP1, and OP2. */
13419 tree
13420 fold_build3_stat (enum tree_code code, tree type, tree op0, tree op1, tree op2
13421 MEM_STAT_DECL)
13423 tree tem;
13424 #ifdef ENABLE_FOLD_CHECKING
13425 unsigned char checksum_before_op0[16],
13426 checksum_before_op1[16],
13427 checksum_before_op2[16],
13428 checksum_after_op0[16],
13429 checksum_after_op1[16],
13430 checksum_after_op2[16];
13431 struct md5_ctx ctx;
13432 htab_t ht;
13434 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13435 md5_init_ctx (&ctx);
13436 fold_checksum_tree (op0, &ctx, ht);
13437 md5_finish_ctx (&ctx, checksum_before_op0);
13438 htab_empty (ht);
13440 md5_init_ctx (&ctx);
13441 fold_checksum_tree (op1, &ctx, ht);
13442 md5_finish_ctx (&ctx, checksum_before_op1);
13443 htab_empty (ht);
13445 md5_init_ctx (&ctx);
13446 fold_checksum_tree (op2, &ctx, ht);
13447 md5_finish_ctx (&ctx, checksum_before_op2);
13448 htab_empty (ht);
13449 #endif
13451 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
13452 tem = fold_ternary (code, type, op0, op1, op2);
13453 if (!tem)
13454 tem = build3_stat (code, type, op0, op1, op2 PASS_MEM_STAT);
13456 #ifdef ENABLE_FOLD_CHECKING
13457 md5_init_ctx (&ctx);
13458 fold_checksum_tree (op0, &ctx, ht);
13459 md5_finish_ctx (&ctx, checksum_after_op0);
13460 htab_empty (ht);
13462 if (memcmp (checksum_before_op0, checksum_after_op0, 16))
13463 fold_check_failed (op0, tem);
13465 md5_init_ctx (&ctx);
13466 fold_checksum_tree (op1, &ctx, ht);
13467 md5_finish_ctx (&ctx, checksum_after_op1);
13468 htab_empty (ht);
13470 if (memcmp (checksum_before_op1, checksum_after_op1, 16))
13471 fold_check_failed (op1, tem);
13473 md5_init_ctx (&ctx);
13474 fold_checksum_tree (op2, &ctx, ht);
13475 md5_finish_ctx (&ctx, checksum_after_op2);
13476 htab_delete (ht);
13478 if (memcmp (checksum_before_op2, checksum_after_op2, 16))
13479 fold_check_failed (op2, tem);
13480 #endif
13481 return tem;
13484 /* Fold a CALL_EXPR expression of type TYPE with operands FN and NARGS
13485 arguments in ARGARRAY, and a null static chain.
13486 Return a folded expression if successful. Otherwise, return a CALL_EXPR
13487 of type TYPE from the given operands as constructed by build_call_array. */
13489 tree
13490 fold_build_call_array (tree type, tree fn, int nargs, tree *argarray)
13492 tree tem;
13493 #ifdef ENABLE_FOLD_CHECKING
13494 unsigned char checksum_before_fn[16],
13495 checksum_before_arglist[16],
13496 checksum_after_fn[16],
13497 checksum_after_arglist[16];
13498 struct md5_ctx ctx;
13499 htab_t ht;
13500 int i;
13502 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13503 md5_init_ctx (&ctx);
13504 fold_checksum_tree (fn, &ctx, ht);
13505 md5_finish_ctx (&ctx, checksum_before_fn);
13506 htab_empty (ht);
13508 md5_init_ctx (&ctx);
13509 for (i = 0; i < nargs; i++)
13510 fold_checksum_tree (argarray[i], &ctx, ht);
13511 md5_finish_ctx (&ctx, checksum_before_arglist);
13512 htab_empty (ht);
13513 #endif
13515 tem = fold_builtin_call_array (type, fn, nargs, argarray);
13517 #ifdef ENABLE_FOLD_CHECKING
13518 md5_init_ctx (&ctx);
13519 fold_checksum_tree (fn, &ctx, ht);
13520 md5_finish_ctx (&ctx, checksum_after_fn);
13521 htab_empty (ht);
13523 if (memcmp (checksum_before_fn, checksum_after_fn, 16))
13524 fold_check_failed (fn, tem);
13526 md5_init_ctx (&ctx);
13527 for (i = 0; i < nargs; i++)
13528 fold_checksum_tree (argarray[i], &ctx, ht);
13529 md5_finish_ctx (&ctx, checksum_after_arglist);
13530 htab_delete (ht);
13532 if (memcmp (checksum_before_arglist, checksum_after_arglist, 16))
13533 fold_check_failed (NULL_TREE, tem);
13534 #endif
13535 return tem;
13538 /* Perform constant folding and related simplification of initializer
13539 expression EXPR. These behave identically to "fold_buildN" but ignore
13540 potential run-time traps and exceptions that fold must preserve. */
13542 #define START_FOLD_INIT \
13543 int saved_signaling_nans = flag_signaling_nans;\
13544 int saved_trapping_math = flag_trapping_math;\
13545 int saved_rounding_math = flag_rounding_math;\
13546 int saved_trapv = flag_trapv;\
13547 int saved_folding_initializer = folding_initializer;\
13548 flag_signaling_nans = 0;\
13549 flag_trapping_math = 0;\
13550 flag_rounding_math = 0;\
13551 flag_trapv = 0;\
13552 folding_initializer = 1;
13554 #define END_FOLD_INIT \
13555 flag_signaling_nans = saved_signaling_nans;\
13556 flag_trapping_math = saved_trapping_math;\
13557 flag_rounding_math = saved_rounding_math;\
13558 flag_trapv = saved_trapv;\
13559 folding_initializer = saved_folding_initializer;
13561 tree
13562 fold_build1_initializer (enum tree_code code, tree type, tree op)
13564 tree result;
13565 START_FOLD_INIT;
13567 result = fold_build1 (code, type, op);
13569 END_FOLD_INIT;
13570 return result;
13573 tree
13574 fold_build2_initializer (enum tree_code code, tree type, tree op0, tree op1)
13576 tree result;
13577 START_FOLD_INIT;
13579 result = fold_build2 (code, type, op0, op1);
13581 END_FOLD_INIT;
13582 return result;
13585 tree
13586 fold_build3_initializer (enum tree_code code, tree type, tree op0, tree op1,
13587 tree op2)
13589 tree result;
13590 START_FOLD_INIT;
13592 result = fold_build3 (code, type, op0, op1, op2);
13594 END_FOLD_INIT;
13595 return result;
13598 tree
13599 fold_build_call_array_initializer (tree type, tree fn,
13600 int nargs, tree *argarray)
13602 tree result;
13603 START_FOLD_INIT;
13605 result = fold_build_call_array (type, fn, nargs, argarray);
13607 END_FOLD_INIT;
13608 return result;
13611 #undef START_FOLD_INIT
13612 #undef END_FOLD_INIT
13614 /* Determine if first argument is a multiple of second argument. Return 0 if
13615 it is not, or we cannot easily determined it to be.
13617 An example of the sort of thing we care about (at this point; this routine
13618 could surely be made more general, and expanded to do what the *_DIV_EXPR's
13619 fold cases do now) is discovering that
13621 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
13623 is a multiple of
13625 SAVE_EXPR (J * 8)
13627 when we know that the two SAVE_EXPR (J * 8) nodes are the same node.
13629 This code also handles discovering that
13631 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
13633 is a multiple of 8 so we don't have to worry about dealing with a
13634 possible remainder.
13636 Note that we *look* inside a SAVE_EXPR only to determine how it was
13637 calculated; it is not safe for fold to do much of anything else with the
13638 internals of a SAVE_EXPR, since it cannot know when it will be evaluated
13639 at run time. For example, the latter example above *cannot* be implemented
13640 as SAVE_EXPR (I) * J or any variant thereof, since the value of J at
13641 evaluation time of the original SAVE_EXPR is not necessarily the same at
13642 the time the new expression is evaluated. The only optimization of this
13643 sort that would be valid is changing
13645 SAVE_EXPR (I) * SAVE_EXPR (SAVE_EXPR (J) * 8)
13647 divided by 8 to
13649 SAVE_EXPR (I) * SAVE_EXPR (J)
13651 (where the same SAVE_EXPR (J) is used in the original and the
13652 transformed version). */
13655 multiple_of_p (tree type, const_tree top, const_tree bottom)
13657 if (operand_equal_p (top, bottom, 0))
13658 return 1;
13660 if (TREE_CODE (type) != INTEGER_TYPE)
13661 return 0;
13663 switch (TREE_CODE (top))
13665 case BIT_AND_EXPR:
13666 /* Bitwise and provides a power of two multiple. If the mask is
13667 a multiple of BOTTOM then TOP is a multiple of BOTTOM. */
13668 if (!integer_pow2p (bottom))
13669 return 0;
13670 /* FALLTHRU */
13672 case MULT_EXPR:
13673 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
13674 || multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
13676 case PLUS_EXPR:
13677 case MINUS_EXPR:
13678 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
13679 && multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
13681 case LSHIFT_EXPR:
13682 if (TREE_CODE (TREE_OPERAND (top, 1)) == INTEGER_CST)
13684 tree op1, t1;
13686 op1 = TREE_OPERAND (top, 1);
13687 /* const_binop may not detect overflow correctly,
13688 so check for it explicitly here. */
13689 if (TYPE_PRECISION (TREE_TYPE (size_one_node))
13690 > TREE_INT_CST_LOW (op1)
13691 && TREE_INT_CST_HIGH (op1) == 0
13692 && 0 != (t1 = fold_convert (type,
13693 const_binop (LSHIFT_EXPR,
13694 size_one_node,
13695 op1, 0)))
13696 && !TREE_OVERFLOW (t1))
13697 return multiple_of_p (type, t1, bottom);
13699 return 0;
13701 case NOP_EXPR:
13702 /* Can't handle conversions from non-integral or wider integral type. */
13703 if ((TREE_CODE (TREE_TYPE (TREE_OPERAND (top, 0))) != INTEGER_TYPE)
13704 || (TYPE_PRECISION (type)
13705 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (top, 0)))))
13706 return 0;
13708 /* .. fall through ... */
13710 case SAVE_EXPR:
13711 return multiple_of_p (type, TREE_OPERAND (top, 0), bottom);
13713 case INTEGER_CST:
13714 if (TREE_CODE (bottom) != INTEGER_CST
13715 || integer_zerop (bottom)
13716 || (TYPE_UNSIGNED (type)
13717 && (tree_int_cst_sgn (top) < 0
13718 || tree_int_cst_sgn (bottom) < 0)))
13719 return 0;
13720 return integer_zerop (int_const_binop (TRUNC_MOD_EXPR,
13721 top, bottom, 0));
13723 default:
13724 return 0;
13728 /* Return true if CODE or TYPE is known to be non-negative. */
13730 static bool
13731 tree_simple_nonnegative_warnv_p (enum tree_code code, tree type)
13733 if ((TYPE_PRECISION (type) != 1 || TYPE_UNSIGNED (type))
13734 && truth_value_p (code))
13735 /* Truth values evaluate to 0 or 1, which is nonnegative unless we
13736 have a signed:1 type (where the value is -1 and 0). */
13737 return true;
13738 return false;
13741 /* Return true if (CODE OP0) is known to be non-negative. If the return
13742 value is based on the assumption that signed overflow is undefined,
13743 set *STRICT_OVERFLOW_P to true; otherwise, don't change
13744 *STRICT_OVERFLOW_P. */
13746 bool
13747 tree_unary_nonnegative_warnv_p (enum tree_code code, tree type, tree op0,
13748 bool *strict_overflow_p)
13750 if (TYPE_UNSIGNED (type))
13751 return true;
13753 switch (code)
13755 case ABS_EXPR:
13756 /* We can't return 1 if flag_wrapv is set because
13757 ABS_EXPR<INT_MIN> = INT_MIN. */
13758 if (!INTEGRAL_TYPE_P (type))
13759 return true;
13760 if (TYPE_OVERFLOW_UNDEFINED (type))
13762 *strict_overflow_p = true;
13763 return true;
13765 break;
13767 case NON_LVALUE_EXPR:
13768 case FLOAT_EXPR:
13769 case FIX_TRUNC_EXPR:
13770 return tree_expr_nonnegative_warnv_p (op0,
13771 strict_overflow_p);
13773 case NOP_EXPR:
13775 tree inner_type = TREE_TYPE (op0);
13776 tree outer_type = type;
13778 if (TREE_CODE (outer_type) == REAL_TYPE)
13780 if (TREE_CODE (inner_type) == REAL_TYPE)
13781 return tree_expr_nonnegative_warnv_p (op0,
13782 strict_overflow_p);
13783 if (TREE_CODE (inner_type) == INTEGER_TYPE)
13785 if (TYPE_UNSIGNED (inner_type))
13786 return true;
13787 return tree_expr_nonnegative_warnv_p (op0,
13788 strict_overflow_p);
13791 else if (TREE_CODE (outer_type) == INTEGER_TYPE)
13793 if (TREE_CODE (inner_type) == REAL_TYPE)
13794 return tree_expr_nonnegative_warnv_p (op0,
13795 strict_overflow_p);
13796 if (TREE_CODE (inner_type) == INTEGER_TYPE)
13797 return TYPE_PRECISION (inner_type) < TYPE_PRECISION (outer_type)
13798 && TYPE_UNSIGNED (inner_type);
13801 break;
13803 default:
13804 return tree_simple_nonnegative_warnv_p (code, type);
13807 /* We don't know sign of `t', so be conservative and return false. */
13808 return false;
13811 /* Return true if (CODE OP0 OP1) is known to be non-negative. If the return
13812 value is based on the assumption that signed overflow is undefined,
13813 set *STRICT_OVERFLOW_P to true; otherwise, don't change
13814 *STRICT_OVERFLOW_P. */
13816 bool
13817 tree_binary_nonnegative_warnv_p (enum tree_code code, tree type, tree op0,
13818 tree op1, bool *strict_overflow_p)
13820 if (TYPE_UNSIGNED (type))
13821 return true;
13823 switch (code)
13825 case POINTER_PLUS_EXPR:
13826 case PLUS_EXPR:
13827 if (FLOAT_TYPE_P (type))
13828 return (tree_expr_nonnegative_warnv_p (op0,
13829 strict_overflow_p)
13830 && tree_expr_nonnegative_warnv_p (op1,
13831 strict_overflow_p));
13833 /* zero_extend(x) + zero_extend(y) is non-negative if x and y are
13834 both unsigned and at least 2 bits shorter than the result. */
13835 if (TREE_CODE (type) == INTEGER_TYPE
13836 && TREE_CODE (op0) == NOP_EXPR
13837 && TREE_CODE (op1) == NOP_EXPR)
13839 tree inner1 = TREE_TYPE (TREE_OPERAND (op0, 0));
13840 tree inner2 = TREE_TYPE (TREE_OPERAND (op1, 0));
13841 if (TREE_CODE (inner1) == INTEGER_TYPE && TYPE_UNSIGNED (inner1)
13842 && TREE_CODE (inner2) == INTEGER_TYPE && TYPE_UNSIGNED (inner2))
13844 unsigned int prec = MAX (TYPE_PRECISION (inner1),
13845 TYPE_PRECISION (inner2)) + 1;
13846 return prec < TYPE_PRECISION (type);
13849 break;
13851 case MULT_EXPR:
13852 if (FLOAT_TYPE_P (type))
13854 /* x * x for floating point x is always non-negative. */
13855 if (operand_equal_p (op0, op1, 0))
13856 return true;
13857 return (tree_expr_nonnegative_warnv_p (op0,
13858 strict_overflow_p)
13859 && tree_expr_nonnegative_warnv_p (op1,
13860 strict_overflow_p));
13863 /* zero_extend(x) * zero_extend(y) is non-negative if x and y are
13864 both unsigned and their total bits is shorter than the result. */
13865 if (TREE_CODE (type) == INTEGER_TYPE
13866 && TREE_CODE (op0) == NOP_EXPR
13867 && TREE_CODE (op1) == NOP_EXPR)
13869 tree inner1 = TREE_TYPE (TREE_OPERAND (op0, 0));
13870 tree inner2 = TREE_TYPE (TREE_OPERAND (op1, 0));
13871 if (TREE_CODE (inner1) == INTEGER_TYPE && TYPE_UNSIGNED (inner1)
13872 && TREE_CODE (inner2) == INTEGER_TYPE && TYPE_UNSIGNED (inner2))
13873 return TYPE_PRECISION (inner1) + TYPE_PRECISION (inner2)
13874 < TYPE_PRECISION (type);
13876 return false;
13878 case BIT_AND_EXPR:
13879 case MAX_EXPR:
13880 return (tree_expr_nonnegative_warnv_p (op0,
13881 strict_overflow_p)
13882 || tree_expr_nonnegative_warnv_p (op1,
13883 strict_overflow_p));
13885 case BIT_IOR_EXPR:
13886 case BIT_XOR_EXPR:
13887 case MIN_EXPR:
13888 case RDIV_EXPR:
13889 case TRUNC_DIV_EXPR:
13890 case CEIL_DIV_EXPR:
13891 case FLOOR_DIV_EXPR:
13892 case ROUND_DIV_EXPR:
13893 return (tree_expr_nonnegative_warnv_p (op0,
13894 strict_overflow_p)
13895 && tree_expr_nonnegative_warnv_p (op1,
13896 strict_overflow_p));
13898 case TRUNC_MOD_EXPR:
13899 case CEIL_MOD_EXPR:
13900 case FLOOR_MOD_EXPR:
13901 case ROUND_MOD_EXPR:
13902 return tree_expr_nonnegative_warnv_p (op0,
13903 strict_overflow_p);
13904 default:
13905 return tree_simple_nonnegative_warnv_p (code, type);
13908 /* We don't know sign of `t', so be conservative and return false. */
13909 return false;
13912 /* Return true if T is known to be non-negative. If the return
13913 value is based on the assumption that signed overflow is undefined,
13914 set *STRICT_OVERFLOW_P to true; otherwise, don't change
13915 *STRICT_OVERFLOW_P. */
13917 bool
13918 tree_single_nonnegative_warnv_p (tree t, bool *strict_overflow_p)
13920 if (TYPE_UNSIGNED (TREE_TYPE (t)))
13921 return true;
13923 switch (TREE_CODE (t))
13925 case SSA_NAME:
13926 /* Query VRP to see if it has recorded any information about
13927 the range of this object. */
13928 return ssa_name_nonnegative_p (t);
13930 case INTEGER_CST:
13931 return tree_int_cst_sgn (t) >= 0;
13933 case REAL_CST:
13934 return ! REAL_VALUE_NEGATIVE (TREE_REAL_CST (t));
13936 case FIXED_CST:
13937 return ! FIXED_VALUE_NEGATIVE (TREE_FIXED_CST (t));
13939 case COND_EXPR:
13940 return (tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 1),
13941 strict_overflow_p)
13942 && tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 2),
13943 strict_overflow_p));
13944 default:
13945 return tree_simple_nonnegative_warnv_p (TREE_CODE (t),
13946 TREE_TYPE (t));
13948 /* We don't know sign of `t', so be conservative and return false. */
13949 return false;
13952 /* Return true if T is known to be non-negative. If the return
13953 value is based on the assumption that signed overflow is undefined,
13954 set *STRICT_OVERFLOW_P to true; otherwise, don't change
13955 *STRICT_OVERFLOW_P. */
13957 bool
13958 tree_invalid_nonnegative_warnv_p (tree t, bool *strict_overflow_p)
13960 enum tree_code code = TREE_CODE (t);
13961 if (TYPE_UNSIGNED (TREE_TYPE (t)))
13962 return true;
13964 switch (code)
13966 case TARGET_EXPR:
13968 tree temp = TARGET_EXPR_SLOT (t);
13969 t = TARGET_EXPR_INITIAL (t);
13971 /* If the initializer is non-void, then it's a normal expression
13972 that will be assigned to the slot. */
13973 if (!VOID_TYPE_P (t))
13974 return tree_expr_nonnegative_warnv_p (t, strict_overflow_p);
13976 /* Otherwise, the initializer sets the slot in some way. One common
13977 way is an assignment statement at the end of the initializer. */
13978 while (1)
13980 if (TREE_CODE (t) == BIND_EXPR)
13981 t = expr_last (BIND_EXPR_BODY (t));
13982 else if (TREE_CODE (t) == TRY_FINALLY_EXPR
13983 || TREE_CODE (t) == TRY_CATCH_EXPR)
13984 t = expr_last (TREE_OPERAND (t, 0));
13985 else if (TREE_CODE (t) == STATEMENT_LIST)
13986 t = expr_last (t);
13987 else
13988 break;
13990 if ((TREE_CODE (t) == MODIFY_EXPR
13991 || TREE_CODE (t) == GIMPLE_MODIFY_STMT)
13992 && GENERIC_TREE_OPERAND (t, 0) == temp)
13993 return tree_expr_nonnegative_warnv_p (GENERIC_TREE_OPERAND (t, 1),
13994 strict_overflow_p);
13996 return false;
13999 case CALL_EXPR:
14001 tree fndecl = get_callee_fndecl (t);
14002 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
14003 switch (DECL_FUNCTION_CODE (fndecl))
14005 CASE_FLT_FN (BUILT_IN_ACOS):
14006 CASE_FLT_FN (BUILT_IN_ACOSH):
14007 CASE_FLT_FN (BUILT_IN_CABS):
14008 CASE_FLT_FN (BUILT_IN_COSH):
14009 CASE_FLT_FN (BUILT_IN_ERFC):
14010 CASE_FLT_FN (BUILT_IN_EXP):
14011 CASE_FLT_FN (BUILT_IN_EXP10):
14012 CASE_FLT_FN (BUILT_IN_EXP2):
14013 CASE_FLT_FN (BUILT_IN_FABS):
14014 CASE_FLT_FN (BUILT_IN_FDIM):
14015 CASE_FLT_FN (BUILT_IN_HYPOT):
14016 CASE_FLT_FN (BUILT_IN_POW10):
14017 CASE_INT_FN (BUILT_IN_FFS):
14018 CASE_INT_FN (BUILT_IN_PARITY):
14019 CASE_INT_FN (BUILT_IN_POPCOUNT):
14020 case BUILT_IN_BSWAP32:
14021 case BUILT_IN_BSWAP64:
14022 /* Always true. */
14023 return true;
14025 CASE_FLT_FN (BUILT_IN_SQRT):
14026 /* sqrt(-0.0) is -0.0. */
14027 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (t))))
14028 return true;
14029 return tree_expr_nonnegative_warnv_p (CALL_EXPR_ARG (t, 0),
14030 strict_overflow_p);
14032 CASE_FLT_FN (BUILT_IN_ASINH):
14033 CASE_FLT_FN (BUILT_IN_ATAN):
14034 CASE_FLT_FN (BUILT_IN_ATANH):
14035 CASE_FLT_FN (BUILT_IN_CBRT):
14036 CASE_FLT_FN (BUILT_IN_CEIL):
14037 CASE_FLT_FN (BUILT_IN_ERF):
14038 CASE_FLT_FN (BUILT_IN_EXPM1):
14039 CASE_FLT_FN (BUILT_IN_FLOOR):
14040 CASE_FLT_FN (BUILT_IN_FMOD):
14041 CASE_FLT_FN (BUILT_IN_FREXP):
14042 CASE_FLT_FN (BUILT_IN_LCEIL):
14043 CASE_FLT_FN (BUILT_IN_LDEXP):
14044 CASE_FLT_FN (BUILT_IN_LFLOOR):
14045 CASE_FLT_FN (BUILT_IN_LLCEIL):
14046 CASE_FLT_FN (BUILT_IN_LLFLOOR):
14047 CASE_FLT_FN (BUILT_IN_LLRINT):
14048 CASE_FLT_FN (BUILT_IN_LLROUND):
14049 CASE_FLT_FN (BUILT_IN_LRINT):
14050 CASE_FLT_FN (BUILT_IN_LROUND):
14051 CASE_FLT_FN (BUILT_IN_MODF):
14052 CASE_FLT_FN (BUILT_IN_NEARBYINT):
14053 CASE_FLT_FN (BUILT_IN_RINT):
14054 CASE_FLT_FN (BUILT_IN_ROUND):
14055 CASE_FLT_FN (BUILT_IN_SCALB):
14056 CASE_FLT_FN (BUILT_IN_SCALBLN):
14057 CASE_FLT_FN (BUILT_IN_SCALBN):
14058 CASE_FLT_FN (BUILT_IN_SIGNBIT):
14059 CASE_FLT_FN (BUILT_IN_SIGNIFICAND):
14060 CASE_FLT_FN (BUILT_IN_SINH):
14061 CASE_FLT_FN (BUILT_IN_TANH):
14062 CASE_FLT_FN (BUILT_IN_TRUNC):
14063 /* True if the 1st argument is nonnegative. */
14064 return tree_expr_nonnegative_warnv_p (CALL_EXPR_ARG (t, 0),
14065 strict_overflow_p);
14067 CASE_FLT_FN (BUILT_IN_FMAX):
14068 /* True if the 1st OR 2nd arguments are nonnegative. */
14069 return (tree_expr_nonnegative_warnv_p (CALL_EXPR_ARG (t, 0),
14070 strict_overflow_p)
14071 || (tree_expr_nonnegative_warnv_p (CALL_EXPR_ARG (t, 1),
14072 strict_overflow_p)));
14074 CASE_FLT_FN (BUILT_IN_FMIN):
14075 /* True if the 1st AND 2nd arguments are nonnegative. */
14076 return (tree_expr_nonnegative_warnv_p (CALL_EXPR_ARG (t, 0),
14077 strict_overflow_p)
14078 && (tree_expr_nonnegative_warnv_p (CALL_EXPR_ARG (t, 1),
14079 strict_overflow_p)));
14081 CASE_FLT_FN (BUILT_IN_COPYSIGN):
14082 /* True if the 2nd argument is nonnegative. */
14083 return tree_expr_nonnegative_warnv_p (CALL_EXPR_ARG (t, 1),
14084 strict_overflow_p);
14086 CASE_FLT_FN (BUILT_IN_POWI):
14087 /* True if the 1st argument is nonnegative or the second
14088 argument is an even integer. */
14089 if (TREE_CODE (CALL_EXPR_ARG (t, 1)) == INTEGER_CST)
14091 tree arg1 = CALL_EXPR_ARG (t, 1);
14092 if ((TREE_INT_CST_LOW (arg1) & 1) == 0)
14093 return true;
14095 return tree_expr_nonnegative_warnv_p (CALL_EXPR_ARG (t, 0),
14096 strict_overflow_p);
14098 CASE_FLT_FN (BUILT_IN_POW):
14099 /* True if the 1st argument is nonnegative or the second
14100 argument is an even integer valued real. */
14101 if (TREE_CODE (CALL_EXPR_ARG (t, 1)) == REAL_CST)
14103 REAL_VALUE_TYPE c;
14104 HOST_WIDE_INT n;
14106 c = TREE_REAL_CST (CALL_EXPR_ARG (t, 1));
14107 n = real_to_integer (&c);
14108 if ((n & 1) == 0)
14110 REAL_VALUE_TYPE cint;
14111 real_from_integer (&cint, VOIDmode, n,
14112 n < 0 ? -1 : 0, 0);
14113 if (real_identical (&c, &cint))
14114 return true;
14117 return tree_expr_nonnegative_warnv_p (CALL_EXPR_ARG (t, 0),
14118 strict_overflow_p);
14120 default:
14121 break;
14123 return tree_simple_nonnegative_warnv_p (TREE_CODE (t),
14124 TREE_TYPE (t));
14126 break;
14128 case COMPOUND_EXPR:
14129 case MODIFY_EXPR:
14130 case GIMPLE_MODIFY_STMT:
14131 return tree_expr_nonnegative_warnv_p (GENERIC_TREE_OPERAND (t, 1),
14132 strict_overflow_p);
14133 case BIND_EXPR:
14134 return tree_expr_nonnegative_warnv_p (expr_last (TREE_OPERAND (t, 1)),
14135 strict_overflow_p);
14136 case SAVE_EXPR:
14137 return tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 0),
14138 strict_overflow_p);
14140 default:
14141 return tree_simple_nonnegative_warnv_p (TREE_CODE (t),
14142 TREE_TYPE (t));
14145 /* We don't know sign of `t', so be conservative and return false. */
14146 return false;
14149 /* Return true if T is known to be non-negative. If the return
14150 value is based on the assumption that signed overflow is undefined,
14151 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14152 *STRICT_OVERFLOW_P. */
14154 bool
14155 tree_expr_nonnegative_warnv_p (tree t, bool *strict_overflow_p)
14157 enum tree_code code;
14158 if (t == error_mark_node)
14159 return false;
14161 code = TREE_CODE (t);
14162 switch (TREE_CODE_CLASS (code))
14164 case tcc_binary:
14165 case tcc_comparison:
14166 return tree_binary_nonnegative_warnv_p (TREE_CODE (t),
14167 TREE_TYPE (t),
14168 TREE_OPERAND (t, 0),
14169 TREE_OPERAND (t, 1),
14170 strict_overflow_p);
14172 case tcc_unary:
14173 return tree_unary_nonnegative_warnv_p (TREE_CODE (t),
14174 TREE_TYPE (t),
14175 TREE_OPERAND (t, 0),
14176 strict_overflow_p);
14178 case tcc_constant:
14179 case tcc_declaration:
14180 case tcc_reference:
14181 return tree_single_nonnegative_warnv_p (t, strict_overflow_p);
14183 default:
14184 break;
14187 switch (code)
14189 case TRUTH_AND_EXPR:
14190 case TRUTH_OR_EXPR:
14191 case TRUTH_XOR_EXPR:
14192 return tree_binary_nonnegative_warnv_p (TREE_CODE (t),
14193 TREE_TYPE (t),
14194 TREE_OPERAND (t, 0),
14195 TREE_OPERAND (t, 1),
14196 strict_overflow_p);
14197 case TRUTH_NOT_EXPR:
14198 return tree_unary_nonnegative_warnv_p (TREE_CODE (t),
14199 TREE_TYPE (t),
14200 TREE_OPERAND (t, 0),
14201 strict_overflow_p);
14203 case COND_EXPR:
14204 case CONSTRUCTOR:
14205 case OBJ_TYPE_REF:
14206 case ASSERT_EXPR:
14207 case ADDR_EXPR:
14208 case WITH_SIZE_EXPR:
14209 case EXC_PTR_EXPR:
14210 case SSA_NAME:
14211 case FILTER_EXPR:
14212 return tree_single_nonnegative_warnv_p (t, strict_overflow_p);
14214 default:
14215 return tree_invalid_nonnegative_warnv_p (t, strict_overflow_p);
14219 /* Return true if `t' is known to be non-negative. Handle warnings
14220 about undefined signed overflow. */
14222 bool
14223 tree_expr_nonnegative_p (tree t)
14225 bool ret, strict_overflow_p;
14227 strict_overflow_p = false;
14228 ret = tree_expr_nonnegative_warnv_p (t, &strict_overflow_p);
14229 if (strict_overflow_p)
14230 fold_overflow_warning (("assuming signed overflow does not occur when "
14231 "determining that expression is always "
14232 "non-negative"),
14233 WARN_STRICT_OVERFLOW_MISC);
14234 return ret;
14238 /* Return true when (CODE OP0) is an address and is known to be nonzero.
14239 For floating point we further ensure that T is not denormal.
14240 Similar logic is present in nonzero_address in rtlanal.h.
14242 If the return value is based on the assumption that signed overflow
14243 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
14244 change *STRICT_OVERFLOW_P. */
14246 bool
14247 tree_unary_nonzero_warnv_p (enum tree_code code, tree type, tree op0,
14248 bool *strict_overflow_p)
14250 switch (code)
14252 case ABS_EXPR:
14253 return tree_expr_nonzero_warnv_p (op0,
14254 strict_overflow_p);
14256 case NOP_EXPR:
14258 tree inner_type = TREE_TYPE (op0);
14259 tree outer_type = type;
14261 return (TYPE_PRECISION (outer_type) >= TYPE_PRECISION (inner_type)
14262 && tree_expr_nonzero_warnv_p (op0,
14263 strict_overflow_p));
14265 break;
14267 case NON_LVALUE_EXPR:
14268 return tree_expr_nonzero_warnv_p (op0,
14269 strict_overflow_p);
14271 default:
14272 break;
14275 return false;
14278 /* Return true when (CODE OP0 OP1) is an address and is known to be nonzero.
14279 For floating point we further ensure that T is not denormal.
14280 Similar logic is present in nonzero_address in rtlanal.h.
14282 If the return value is based on the assumption that signed overflow
14283 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
14284 change *STRICT_OVERFLOW_P. */
14286 bool
14287 tree_binary_nonzero_warnv_p (enum tree_code code,
14288 tree type,
14289 tree op0,
14290 tree op1, bool *strict_overflow_p)
14292 bool sub_strict_overflow_p;
14293 switch (code)
14295 case POINTER_PLUS_EXPR:
14296 case PLUS_EXPR:
14297 if (TYPE_OVERFLOW_UNDEFINED (type))
14299 /* With the presence of negative values it is hard
14300 to say something. */
14301 sub_strict_overflow_p = false;
14302 if (!tree_expr_nonnegative_warnv_p (op0,
14303 &sub_strict_overflow_p)
14304 || !tree_expr_nonnegative_warnv_p (op1,
14305 &sub_strict_overflow_p))
14306 return false;
14307 /* One of operands must be positive and the other non-negative. */
14308 /* We don't set *STRICT_OVERFLOW_P here: even if this value
14309 overflows, on a twos-complement machine the sum of two
14310 nonnegative numbers can never be zero. */
14311 return (tree_expr_nonzero_warnv_p (op0,
14312 strict_overflow_p)
14313 || tree_expr_nonzero_warnv_p (op1,
14314 strict_overflow_p));
14316 break;
14318 case MULT_EXPR:
14319 if (TYPE_OVERFLOW_UNDEFINED (type))
14321 if (tree_expr_nonzero_warnv_p (op0,
14322 strict_overflow_p)
14323 && tree_expr_nonzero_warnv_p (op1,
14324 strict_overflow_p))
14326 *strict_overflow_p = true;
14327 return true;
14330 break;
14332 case MIN_EXPR:
14333 sub_strict_overflow_p = false;
14334 if (tree_expr_nonzero_warnv_p (op0,
14335 &sub_strict_overflow_p)
14336 && tree_expr_nonzero_warnv_p (op1,
14337 &sub_strict_overflow_p))
14339 if (sub_strict_overflow_p)
14340 *strict_overflow_p = true;
14342 break;
14344 case MAX_EXPR:
14345 sub_strict_overflow_p = false;
14346 if (tree_expr_nonzero_warnv_p (op0,
14347 &sub_strict_overflow_p))
14349 if (sub_strict_overflow_p)
14350 *strict_overflow_p = true;
14352 /* When both operands are nonzero, then MAX must be too. */
14353 if (tree_expr_nonzero_warnv_p (op1,
14354 strict_overflow_p))
14355 return true;
14357 /* MAX where operand 0 is positive is positive. */
14358 return tree_expr_nonnegative_warnv_p (op0,
14359 strict_overflow_p);
14361 /* MAX where operand 1 is positive is positive. */
14362 else if (tree_expr_nonzero_warnv_p (op1,
14363 &sub_strict_overflow_p)
14364 && tree_expr_nonnegative_warnv_p (op1,
14365 &sub_strict_overflow_p))
14367 if (sub_strict_overflow_p)
14368 *strict_overflow_p = true;
14369 return true;
14371 break;
14373 case BIT_IOR_EXPR:
14374 return (tree_expr_nonzero_warnv_p (op1,
14375 strict_overflow_p)
14376 || tree_expr_nonzero_warnv_p (op0,
14377 strict_overflow_p));
14379 default:
14380 break;
14383 return false;
14386 /* Return true when T is an address and is known to be nonzero.
14387 For floating point we further ensure that T is not denormal.
14388 Similar logic is present in nonzero_address in rtlanal.h.
14390 If the return value is based on the assumption that signed overflow
14391 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
14392 change *STRICT_OVERFLOW_P. */
14394 bool
14395 tree_single_nonzero_warnv_p (tree t, bool *strict_overflow_p)
14397 bool sub_strict_overflow_p;
14398 switch (TREE_CODE (t))
14400 case SSA_NAME:
14401 /* Query VRP to see if it has recorded any information about
14402 the range of this object. */
14403 return ssa_name_nonzero_p (t);
14405 case INTEGER_CST:
14406 return !integer_zerop (t);
14408 case ADDR_EXPR:
14410 tree base = get_base_address (TREE_OPERAND (t, 0));
14412 if (!base)
14413 return false;
14415 /* Weak declarations may link to NULL. */
14416 if (VAR_OR_FUNCTION_DECL_P (base))
14417 return !DECL_WEAK (base);
14419 /* Constants are never weak. */
14420 if (CONSTANT_CLASS_P (base))
14421 return true;
14423 return false;
14426 case COND_EXPR:
14427 sub_strict_overflow_p = false;
14428 if (tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 1),
14429 &sub_strict_overflow_p)
14430 && tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 2),
14431 &sub_strict_overflow_p))
14433 if (sub_strict_overflow_p)
14434 *strict_overflow_p = true;
14435 return true;
14437 break;
14439 default:
14440 break;
14442 return false;
14445 /* Return true when T is an address and is known to be nonzero.
14446 For floating point we further ensure that T is not denormal.
14447 Similar logic is present in nonzero_address in rtlanal.h.
14449 If the return value is based on the assumption that signed overflow
14450 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
14451 change *STRICT_OVERFLOW_P. */
14453 bool
14454 tree_expr_nonzero_warnv_p (tree t, bool *strict_overflow_p)
14456 tree type = TREE_TYPE (t);
14457 enum tree_code code;
14459 /* Doing something useful for floating point would need more work. */
14460 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
14461 return false;
14463 code = TREE_CODE (t);
14464 switch (TREE_CODE_CLASS (code))
14466 case tcc_unary:
14467 return tree_unary_nonzero_warnv_p (code, type, TREE_OPERAND (t, 0),
14468 strict_overflow_p);
14469 case tcc_binary:
14470 case tcc_comparison:
14471 return tree_binary_nonzero_warnv_p (code, type,
14472 TREE_OPERAND (t, 0),
14473 TREE_OPERAND (t, 1),
14474 strict_overflow_p);
14475 case tcc_constant:
14476 case tcc_declaration:
14477 case tcc_reference:
14478 return tree_single_nonzero_warnv_p (t, strict_overflow_p);
14480 default:
14481 break;
14484 switch (code)
14486 case TRUTH_NOT_EXPR:
14487 return tree_unary_nonzero_warnv_p (code, type, TREE_OPERAND (t, 0),
14488 strict_overflow_p);
14490 case TRUTH_AND_EXPR:
14491 case TRUTH_OR_EXPR:
14492 case TRUTH_XOR_EXPR:
14493 return tree_binary_nonzero_warnv_p (code, type,
14494 TREE_OPERAND (t, 0),
14495 TREE_OPERAND (t, 1),
14496 strict_overflow_p);
14498 case COND_EXPR:
14499 case CONSTRUCTOR:
14500 case OBJ_TYPE_REF:
14501 case ASSERT_EXPR:
14502 case ADDR_EXPR:
14503 case WITH_SIZE_EXPR:
14504 case EXC_PTR_EXPR:
14505 case SSA_NAME:
14506 case FILTER_EXPR:
14507 return tree_single_nonzero_warnv_p (t, strict_overflow_p);
14509 case COMPOUND_EXPR:
14510 case MODIFY_EXPR:
14511 case GIMPLE_MODIFY_STMT:
14512 case BIND_EXPR:
14513 return tree_expr_nonzero_warnv_p (GENERIC_TREE_OPERAND (t, 1),
14514 strict_overflow_p);
14516 case SAVE_EXPR:
14517 return tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 0),
14518 strict_overflow_p);
14520 case CALL_EXPR:
14521 return alloca_call_p (t);
14523 default:
14524 break;
14526 return false;
14529 /* Return true when T is an address and is known to be nonzero.
14530 Handle warnings about undefined signed overflow. */
14532 bool
14533 tree_expr_nonzero_p (tree t)
14535 bool ret, strict_overflow_p;
14537 strict_overflow_p = false;
14538 ret = tree_expr_nonzero_warnv_p (t, &strict_overflow_p);
14539 if (strict_overflow_p)
14540 fold_overflow_warning (("assuming signed overflow does not occur when "
14541 "determining that expression is always "
14542 "non-zero"),
14543 WARN_STRICT_OVERFLOW_MISC);
14544 return ret;
14547 /* Given the components of a binary expression CODE, TYPE, OP0 and OP1,
14548 attempt to fold the expression to a constant without modifying TYPE,
14549 OP0 or OP1.
14551 If the expression could be simplified to a constant, then return
14552 the constant. If the expression would not be simplified to a
14553 constant, then return NULL_TREE. */
14555 tree
14556 fold_binary_to_constant (enum tree_code code, tree type, tree op0, tree op1)
14558 tree tem = fold_binary (code, type, op0, op1);
14559 return (tem && TREE_CONSTANT (tem)) ? tem : NULL_TREE;
14562 /* Given the components of a unary expression CODE, TYPE and OP0,
14563 attempt to fold the expression to a constant without modifying
14564 TYPE or OP0.
14566 If the expression could be simplified to a constant, then return
14567 the constant. If the expression would not be simplified to a
14568 constant, then return NULL_TREE. */
14570 tree
14571 fold_unary_to_constant (enum tree_code code, tree type, tree op0)
14573 tree tem = fold_unary (code, type, op0);
14574 return (tem && TREE_CONSTANT (tem)) ? tem : NULL_TREE;
14577 /* If EXP represents referencing an element in a constant string
14578 (either via pointer arithmetic or array indexing), return the
14579 tree representing the value accessed, otherwise return NULL. */
14581 tree
14582 fold_read_from_constant_string (tree exp)
14584 if ((TREE_CODE (exp) == INDIRECT_REF
14585 || TREE_CODE (exp) == ARRAY_REF)
14586 && TREE_CODE (TREE_TYPE (exp)) == INTEGER_TYPE)
14588 tree exp1 = TREE_OPERAND (exp, 0);
14589 tree index;
14590 tree string;
14592 if (TREE_CODE (exp) == INDIRECT_REF)
14593 string = string_constant (exp1, &index);
14594 else
14596 tree low_bound = array_ref_low_bound (exp);
14597 index = fold_convert (sizetype, TREE_OPERAND (exp, 1));
14599 /* Optimize the special-case of a zero lower bound.
14601 We convert the low_bound to sizetype to avoid some problems
14602 with constant folding. (E.g. suppose the lower bound is 1,
14603 and its mode is QI. Without the conversion,l (ARRAY
14604 +(INDEX-(unsigned char)1)) becomes ((ARRAY+(-(unsigned char)1))
14605 +INDEX), which becomes (ARRAY+255+INDEX). Opps!) */
14606 if (! integer_zerop (low_bound))
14607 index = size_diffop (index, fold_convert (sizetype, low_bound));
14609 string = exp1;
14612 if (string
14613 && TYPE_MODE (TREE_TYPE (exp)) == TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))
14614 && TREE_CODE (string) == STRING_CST
14615 && TREE_CODE (index) == INTEGER_CST
14616 && compare_tree_int (index, TREE_STRING_LENGTH (string)) < 0
14617 && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (string))))
14618 == MODE_INT)
14619 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))) == 1))
14620 return build_int_cst_type (TREE_TYPE (exp),
14621 (TREE_STRING_POINTER (string)
14622 [TREE_INT_CST_LOW (index)]));
14624 return NULL;
14627 /* Return the tree for neg (ARG0) when ARG0 is known to be either
14628 an integer constant, real, or fixed-point constant.
14630 TYPE is the type of the result. */
14632 static tree
14633 fold_negate_const (tree arg0, tree type)
14635 tree t = NULL_TREE;
14637 switch (TREE_CODE (arg0))
14639 case INTEGER_CST:
14641 unsigned HOST_WIDE_INT low;
14642 HOST_WIDE_INT high;
14643 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
14644 TREE_INT_CST_HIGH (arg0),
14645 &low, &high);
14646 t = force_fit_type_double (type, low, high, 1,
14647 (overflow | TREE_OVERFLOW (arg0))
14648 && !TYPE_UNSIGNED (type));
14649 break;
14652 case REAL_CST:
14653 t = build_real (type, REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
14654 break;
14656 case FIXED_CST:
14658 FIXED_VALUE_TYPE f;
14659 bool overflow_p = fixed_arithmetic (&f, NEGATE_EXPR,
14660 &(TREE_FIXED_CST (arg0)), NULL,
14661 TYPE_SATURATING (type));
14662 t = build_fixed (type, f);
14663 /* Propagate overflow flags. */
14664 if (overflow_p | TREE_OVERFLOW (arg0))
14666 TREE_OVERFLOW (t) = 1;
14667 TREE_CONSTANT_OVERFLOW (t) = 1;
14669 else if (TREE_CONSTANT_OVERFLOW (arg0))
14670 TREE_CONSTANT_OVERFLOW (t) = 1;
14671 break;
14674 default:
14675 gcc_unreachable ();
14678 return t;
14681 /* Return the tree for abs (ARG0) when ARG0 is known to be either
14682 an integer constant or real constant.
14684 TYPE is the type of the result. */
14686 tree
14687 fold_abs_const (tree arg0, tree type)
14689 tree t = NULL_TREE;
14691 switch (TREE_CODE (arg0))
14693 case INTEGER_CST:
14694 /* If the value is unsigned, then the absolute value is
14695 the same as the ordinary value. */
14696 if (TYPE_UNSIGNED (type))
14697 t = arg0;
14698 /* Similarly, if the value is non-negative. */
14699 else if (INT_CST_LT (integer_minus_one_node, arg0))
14700 t = arg0;
14701 /* If the value is negative, then the absolute value is
14702 its negation. */
14703 else
14705 unsigned HOST_WIDE_INT low;
14706 HOST_WIDE_INT high;
14707 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
14708 TREE_INT_CST_HIGH (arg0),
14709 &low, &high);
14710 t = force_fit_type_double (type, low, high, -1,
14711 overflow | TREE_OVERFLOW (arg0));
14713 break;
14715 case REAL_CST:
14716 if (REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg0)))
14717 t = build_real (type, REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
14718 else
14719 t = arg0;
14720 break;
14722 default:
14723 gcc_unreachable ();
14726 return t;
14729 /* Return the tree for not (ARG0) when ARG0 is known to be an integer
14730 constant. TYPE is the type of the result. */
14732 static tree
14733 fold_not_const (tree arg0, tree type)
14735 tree t = NULL_TREE;
14737 gcc_assert (TREE_CODE (arg0) == INTEGER_CST);
14739 t = force_fit_type_double (type, ~TREE_INT_CST_LOW (arg0),
14740 ~TREE_INT_CST_HIGH (arg0), 0,
14741 TREE_OVERFLOW (arg0));
14743 return t;
14746 /* Given CODE, a relational operator, the target type, TYPE and two
14747 constant operands OP0 and OP1, return the result of the
14748 relational operation. If the result is not a compile time
14749 constant, then return NULL_TREE. */
14751 static tree
14752 fold_relational_const (enum tree_code code, tree type, tree op0, tree op1)
14754 int result, invert;
14756 /* From here on, the only cases we handle are when the result is
14757 known to be a constant. */
14759 if (TREE_CODE (op0) == REAL_CST && TREE_CODE (op1) == REAL_CST)
14761 const REAL_VALUE_TYPE *c0 = TREE_REAL_CST_PTR (op0);
14762 const REAL_VALUE_TYPE *c1 = TREE_REAL_CST_PTR (op1);
14764 /* Handle the cases where either operand is a NaN. */
14765 if (real_isnan (c0) || real_isnan (c1))
14767 switch (code)
14769 case EQ_EXPR:
14770 case ORDERED_EXPR:
14771 result = 0;
14772 break;
14774 case NE_EXPR:
14775 case UNORDERED_EXPR:
14776 case UNLT_EXPR:
14777 case UNLE_EXPR:
14778 case UNGT_EXPR:
14779 case UNGE_EXPR:
14780 case UNEQ_EXPR:
14781 result = 1;
14782 break;
14784 case LT_EXPR:
14785 case LE_EXPR:
14786 case GT_EXPR:
14787 case GE_EXPR:
14788 case LTGT_EXPR:
14789 if (flag_trapping_math)
14790 return NULL_TREE;
14791 result = 0;
14792 break;
14794 default:
14795 gcc_unreachable ();
14798 return constant_boolean_node (result, type);
14801 return constant_boolean_node (real_compare (code, c0, c1), type);
14804 if (TREE_CODE (op0) == FIXED_CST && TREE_CODE (op1) == FIXED_CST)
14806 const FIXED_VALUE_TYPE *c0 = TREE_FIXED_CST_PTR (op0);
14807 const FIXED_VALUE_TYPE *c1 = TREE_FIXED_CST_PTR (op1);
14808 return constant_boolean_node (fixed_compare (code, c0, c1), type);
14811 /* Handle equality/inequality of complex constants. */
14812 if (TREE_CODE (op0) == COMPLEX_CST && TREE_CODE (op1) == COMPLEX_CST)
14814 tree rcond = fold_relational_const (code, type,
14815 TREE_REALPART (op0),
14816 TREE_REALPART (op1));
14817 tree icond = fold_relational_const (code, type,
14818 TREE_IMAGPART (op0),
14819 TREE_IMAGPART (op1));
14820 if (code == EQ_EXPR)
14821 return fold_build2 (TRUTH_ANDIF_EXPR, type, rcond, icond);
14822 else if (code == NE_EXPR)
14823 return fold_build2 (TRUTH_ORIF_EXPR, type, rcond, icond);
14824 else
14825 return NULL_TREE;
14828 /* From here on we only handle LT, LE, GT, GE, EQ and NE.
14830 To compute GT, swap the arguments and do LT.
14831 To compute GE, do LT and invert the result.
14832 To compute LE, swap the arguments, do LT and invert the result.
14833 To compute NE, do EQ and invert the result.
14835 Therefore, the code below must handle only EQ and LT. */
14837 if (code == LE_EXPR || code == GT_EXPR)
14839 tree tem = op0;
14840 op0 = op1;
14841 op1 = tem;
14842 code = swap_tree_comparison (code);
14845 /* Note that it is safe to invert for real values here because we
14846 have already handled the one case that it matters. */
14848 invert = 0;
14849 if (code == NE_EXPR || code == GE_EXPR)
14851 invert = 1;
14852 code = invert_tree_comparison (code, false);
14855 /* Compute a result for LT or EQ if args permit;
14856 Otherwise return T. */
14857 if (TREE_CODE (op0) == INTEGER_CST && TREE_CODE (op1) == INTEGER_CST)
14859 if (code == EQ_EXPR)
14860 result = tree_int_cst_equal (op0, op1);
14861 else if (TYPE_UNSIGNED (TREE_TYPE (op0)))
14862 result = INT_CST_LT_UNSIGNED (op0, op1);
14863 else
14864 result = INT_CST_LT (op0, op1);
14866 else
14867 return NULL_TREE;
14869 if (invert)
14870 result ^= 1;
14871 return constant_boolean_node (result, type);
14874 /* If necessary, return a CLEANUP_POINT_EXPR for EXPR with the
14875 indicated TYPE. If no CLEANUP_POINT_EXPR is necessary, return EXPR
14876 itself. */
14878 tree
14879 fold_build_cleanup_point_expr (tree type, tree expr)
14881 /* If the expression does not have side effects then we don't have to wrap
14882 it with a cleanup point expression. */
14883 if (!TREE_SIDE_EFFECTS (expr))
14884 return expr;
14886 /* If the expression is a return, check to see if the expression inside the
14887 return has no side effects or the right hand side of the modify expression
14888 inside the return. If either don't have side effects set we don't need to
14889 wrap the expression in a cleanup point expression. Note we don't check the
14890 left hand side of the modify because it should always be a return decl. */
14891 if (TREE_CODE (expr) == RETURN_EXPR)
14893 tree op = TREE_OPERAND (expr, 0);
14894 if (!op || !TREE_SIDE_EFFECTS (op))
14895 return expr;
14896 op = TREE_OPERAND (op, 1);
14897 if (!TREE_SIDE_EFFECTS (op))
14898 return expr;
14901 return build1 (CLEANUP_POINT_EXPR, type, expr);
14904 /* Given a pointer value OP0 and a type TYPE, return a simplified version
14905 of an indirection through OP0, or NULL_TREE if no simplification is
14906 possible. */
14908 tree
14909 fold_indirect_ref_1 (tree type, tree op0)
14911 tree sub = op0;
14912 tree subtype;
14914 STRIP_NOPS (sub);
14915 subtype = TREE_TYPE (sub);
14916 if (!POINTER_TYPE_P (subtype))
14917 return NULL_TREE;
14919 if (TREE_CODE (sub) == ADDR_EXPR)
14921 tree op = TREE_OPERAND (sub, 0);
14922 tree optype = TREE_TYPE (op);
14923 /* *&CONST_DECL -> to the value of the const decl. */
14924 if (TREE_CODE (op) == CONST_DECL)
14925 return DECL_INITIAL (op);
14926 /* *&p => p; make sure to handle *&"str"[cst] here. */
14927 if (type == optype)
14929 tree fop = fold_read_from_constant_string (op);
14930 if (fop)
14931 return fop;
14932 else
14933 return op;
14935 /* *(foo *)&fooarray => fooarray[0] */
14936 else if (TREE_CODE (optype) == ARRAY_TYPE
14937 && type == TREE_TYPE (optype))
14939 tree type_domain = TYPE_DOMAIN (optype);
14940 tree min_val = size_zero_node;
14941 if (type_domain && TYPE_MIN_VALUE (type_domain))
14942 min_val = TYPE_MIN_VALUE (type_domain);
14943 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
14945 /* *(foo *)&complexfoo => __real__ complexfoo */
14946 else if (TREE_CODE (optype) == COMPLEX_TYPE
14947 && type == TREE_TYPE (optype))
14948 return fold_build1 (REALPART_EXPR, type, op);
14949 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
14950 else if (TREE_CODE (optype) == VECTOR_TYPE
14951 && type == TREE_TYPE (optype))
14953 tree part_width = TYPE_SIZE (type);
14954 tree index = bitsize_int (0);
14955 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
14959 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
14960 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
14961 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
14963 tree op00 = TREE_OPERAND (sub, 0);
14964 tree op01 = TREE_OPERAND (sub, 1);
14965 tree op00type;
14967 STRIP_NOPS (op00);
14968 op00type = TREE_TYPE (op00);
14969 if (TREE_CODE (op00) == ADDR_EXPR
14970 && TREE_CODE (TREE_TYPE (op00type)) == COMPLEX_TYPE
14971 && type == TREE_TYPE (TREE_TYPE (op00type)))
14973 tree size = TYPE_SIZE_UNIT (type);
14974 if (tree_int_cst_equal (size, op01))
14975 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (op00, 0));
14979 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
14980 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
14981 && type == TREE_TYPE (TREE_TYPE (subtype)))
14983 tree type_domain;
14984 tree min_val = size_zero_node;
14985 sub = build_fold_indirect_ref (sub);
14986 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
14987 if (type_domain && TYPE_MIN_VALUE (type_domain))
14988 min_val = TYPE_MIN_VALUE (type_domain);
14989 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
14992 return NULL_TREE;
14995 /* Builds an expression for an indirection through T, simplifying some
14996 cases. */
14998 tree
14999 build_fold_indirect_ref (tree t)
15001 tree type = TREE_TYPE (TREE_TYPE (t));
15002 tree sub = fold_indirect_ref_1 (type, t);
15004 if (sub)
15005 return sub;
15006 else
15007 return build1 (INDIRECT_REF, type, t);
15010 /* Given an INDIRECT_REF T, return either T or a simplified version. */
15012 tree
15013 fold_indirect_ref (tree t)
15015 tree sub = fold_indirect_ref_1 (TREE_TYPE (t), TREE_OPERAND (t, 0));
15017 if (sub)
15018 return sub;
15019 else
15020 return t;
15023 /* Strip non-trapping, non-side-effecting tree nodes from an expression
15024 whose result is ignored. The type of the returned tree need not be
15025 the same as the original expression. */
15027 tree
15028 fold_ignored_result (tree t)
15030 if (!TREE_SIDE_EFFECTS (t))
15031 return integer_zero_node;
15033 for (;;)
15034 switch (TREE_CODE_CLASS (TREE_CODE (t)))
15036 case tcc_unary:
15037 t = TREE_OPERAND (t, 0);
15038 break;
15040 case tcc_binary:
15041 case tcc_comparison:
15042 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1)))
15043 t = TREE_OPERAND (t, 0);
15044 else if (!TREE_SIDE_EFFECTS (TREE_OPERAND (t, 0)))
15045 t = TREE_OPERAND (t, 1);
15046 else
15047 return t;
15048 break;
15050 case tcc_expression:
15051 switch (TREE_CODE (t))
15053 case COMPOUND_EXPR:
15054 if (TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1)))
15055 return t;
15056 t = TREE_OPERAND (t, 0);
15057 break;
15059 case COND_EXPR:
15060 if (TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1))
15061 || TREE_SIDE_EFFECTS (TREE_OPERAND (t, 2)))
15062 return t;
15063 t = TREE_OPERAND (t, 0);
15064 break;
15066 default:
15067 return t;
15069 break;
15071 default:
15072 return t;
15076 /* Return the value of VALUE, rounded up to a multiple of DIVISOR.
15077 This can only be applied to objects of a sizetype. */
15079 tree
15080 round_up (tree value, int divisor)
15082 tree div = NULL_TREE;
15084 gcc_assert (divisor > 0);
15085 if (divisor == 1)
15086 return value;
15088 /* See if VALUE is already a multiple of DIVISOR. If so, we don't
15089 have to do anything. Only do this when we are not given a const,
15090 because in that case, this check is more expensive than just
15091 doing it. */
15092 if (TREE_CODE (value) != INTEGER_CST)
15094 div = build_int_cst (TREE_TYPE (value), divisor);
15096 if (multiple_of_p (TREE_TYPE (value), value, div))
15097 return value;
15100 /* If divisor is a power of two, simplify this to bit manipulation. */
15101 if (divisor == (divisor & -divisor))
15103 if (TREE_CODE (value) == INTEGER_CST)
15105 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (value);
15106 unsigned HOST_WIDE_INT high;
15107 bool overflow_p;
15109 if ((low & (divisor - 1)) == 0)
15110 return value;
15112 overflow_p = TREE_OVERFLOW (value);
15113 high = TREE_INT_CST_HIGH (value);
15114 low &= ~(divisor - 1);
15115 low += divisor;
15116 if (low == 0)
15118 high++;
15119 if (high == 0)
15120 overflow_p = true;
15123 return force_fit_type_double (TREE_TYPE (value), low, high,
15124 -1, overflow_p);
15126 else
15128 tree t;
15130 t = build_int_cst (TREE_TYPE (value), divisor - 1);
15131 value = size_binop (PLUS_EXPR, value, t);
15132 t = build_int_cst (TREE_TYPE (value), -divisor);
15133 value = size_binop (BIT_AND_EXPR, value, t);
15136 else
15138 if (!div)
15139 div = build_int_cst (TREE_TYPE (value), divisor);
15140 value = size_binop (CEIL_DIV_EXPR, value, div);
15141 value = size_binop (MULT_EXPR, value, div);
15144 return value;
15147 /* Likewise, but round down. */
15149 tree
15150 round_down (tree value, int divisor)
15152 tree div = NULL_TREE;
15154 gcc_assert (divisor > 0);
15155 if (divisor == 1)
15156 return value;
15158 /* See if VALUE is already a multiple of DIVISOR. If so, we don't
15159 have to do anything. Only do this when we are not given a const,
15160 because in that case, this check is more expensive than just
15161 doing it. */
15162 if (TREE_CODE (value) != INTEGER_CST)
15164 div = build_int_cst (TREE_TYPE (value), divisor);
15166 if (multiple_of_p (TREE_TYPE (value), value, div))
15167 return value;
15170 /* If divisor is a power of two, simplify this to bit manipulation. */
15171 if (divisor == (divisor & -divisor))
15173 tree t;
15175 t = build_int_cst (TREE_TYPE (value), -divisor);
15176 value = size_binop (BIT_AND_EXPR, value, t);
15178 else
15180 if (!div)
15181 div = build_int_cst (TREE_TYPE (value), divisor);
15182 value = size_binop (FLOOR_DIV_EXPR, value, div);
15183 value = size_binop (MULT_EXPR, value, div);
15186 return value;
15189 /* Returns the pointer to the base of the object addressed by EXP and
15190 extracts the information about the offset of the access, storing it
15191 to PBITPOS and POFFSET. */
15193 static tree
15194 split_address_to_core_and_offset (tree exp,
15195 HOST_WIDE_INT *pbitpos, tree *poffset)
15197 tree core;
15198 enum machine_mode mode;
15199 int unsignedp, volatilep;
15200 HOST_WIDE_INT bitsize;
15202 if (TREE_CODE (exp) == ADDR_EXPR)
15204 core = get_inner_reference (TREE_OPERAND (exp, 0), &bitsize, pbitpos,
15205 poffset, &mode, &unsignedp, &volatilep,
15206 false);
15207 core = fold_addr_expr (core);
15209 else
15211 core = exp;
15212 *pbitpos = 0;
15213 *poffset = NULL_TREE;
15216 return core;
15219 /* Returns true if addresses of E1 and E2 differ by a constant, false
15220 otherwise. If they do, E1 - E2 is stored in *DIFF. */
15222 bool
15223 ptr_difference_const (tree e1, tree e2, HOST_WIDE_INT *diff)
15225 tree core1, core2;
15226 HOST_WIDE_INT bitpos1, bitpos2;
15227 tree toffset1, toffset2, tdiff, type;
15229 core1 = split_address_to_core_and_offset (e1, &bitpos1, &toffset1);
15230 core2 = split_address_to_core_and_offset (e2, &bitpos2, &toffset2);
15232 if (bitpos1 % BITS_PER_UNIT != 0
15233 || bitpos2 % BITS_PER_UNIT != 0
15234 || !operand_equal_p (core1, core2, 0))
15235 return false;
15237 if (toffset1 && toffset2)
15239 type = TREE_TYPE (toffset1);
15240 if (type != TREE_TYPE (toffset2))
15241 toffset2 = fold_convert (type, toffset2);
15243 tdiff = fold_build2 (MINUS_EXPR, type, toffset1, toffset2);
15244 if (!cst_and_fits_in_hwi (tdiff))
15245 return false;
15247 *diff = int_cst_value (tdiff);
15249 else if (toffset1 || toffset2)
15251 /* If only one of the offsets is non-constant, the difference cannot
15252 be a constant. */
15253 return false;
15255 else
15256 *diff = 0;
15258 *diff += (bitpos1 - bitpos2) / BITS_PER_UNIT;
15259 return true;
15262 /* Simplify the floating point expression EXP when the sign of the
15263 result is not significant. Return NULL_TREE if no simplification
15264 is possible. */
15266 tree
15267 fold_strip_sign_ops (tree exp)
15269 tree arg0, arg1;
15271 switch (TREE_CODE (exp))
15273 case ABS_EXPR:
15274 case NEGATE_EXPR:
15275 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 0));
15276 return arg0 ? arg0 : TREE_OPERAND (exp, 0);
15278 case MULT_EXPR:
15279 case RDIV_EXPR:
15280 if (HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (TREE_TYPE (exp))))
15281 return NULL_TREE;
15282 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 0));
15283 arg1 = fold_strip_sign_ops (TREE_OPERAND (exp, 1));
15284 if (arg0 != NULL_TREE || arg1 != NULL_TREE)
15285 return fold_build2 (TREE_CODE (exp), TREE_TYPE (exp),
15286 arg0 ? arg0 : TREE_OPERAND (exp, 0),
15287 arg1 ? arg1 : TREE_OPERAND (exp, 1));
15288 break;
15290 case COMPOUND_EXPR:
15291 arg0 = TREE_OPERAND (exp, 0);
15292 arg1 = fold_strip_sign_ops (TREE_OPERAND (exp, 1));
15293 if (arg1)
15294 return fold_build2 (COMPOUND_EXPR, TREE_TYPE (exp), arg0, arg1);
15295 break;
15297 case COND_EXPR:
15298 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 1));
15299 arg1 = fold_strip_sign_ops (TREE_OPERAND (exp, 2));
15300 if (arg0 || arg1)
15301 return fold_build3 (COND_EXPR, TREE_TYPE (exp), TREE_OPERAND (exp, 0),
15302 arg0 ? arg0 : TREE_OPERAND (exp, 1),
15303 arg1 ? arg1 : TREE_OPERAND (exp, 2));
15304 break;
15306 case CALL_EXPR:
15308 const enum built_in_function fcode = builtin_mathfn_code (exp);
15309 switch (fcode)
15311 CASE_FLT_FN (BUILT_IN_COPYSIGN):
15312 /* Strip copysign function call, return the 1st argument. */
15313 arg0 = CALL_EXPR_ARG (exp, 0);
15314 arg1 = CALL_EXPR_ARG (exp, 1);
15315 return omit_one_operand (TREE_TYPE (exp), arg0, arg1);
15317 default:
15318 /* Strip sign ops from the argument of "odd" math functions. */
15319 if (negate_mathfn_p (fcode))
15321 arg0 = fold_strip_sign_ops (CALL_EXPR_ARG (exp, 0));
15322 if (arg0)
15323 return build_call_expr (get_callee_fndecl (exp), 1, arg0);
15325 break;
15328 break;
15330 default:
15331 break;
15333 return NULL_TREE;