* error.c (dump_expr): Handle EMPTY_CLASS_EXPR.
[official-gcc.git] / gcc / fold-const.c
blob95a68bcbeee4a7b0324e4800a8d8653cb939b8ad
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 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
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.
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 takes a constant and prior overflow indicator, and
43 forces the value to fit the type. It returns an overflow indicator. */
45 #include "config.h"
46 #include "system.h"
47 #include "coretypes.h"
48 #include "tm.h"
49 #include "flags.h"
50 #include "tree.h"
51 #include "real.h"
52 #include "rtl.h"
53 #include "expr.h"
54 #include "tm_p.h"
55 #include "toplev.h"
56 #include "ggc.h"
57 #include "hashtab.h"
58 #include "langhooks.h"
60 static void encode (HOST_WIDE_INT *, unsigned HOST_WIDE_INT, HOST_WIDE_INT);
61 static void decode (HOST_WIDE_INT *, unsigned HOST_WIDE_INT *, HOST_WIDE_INT *);
62 static bool negate_expr_p (tree);
63 static tree negate_expr (tree);
64 static tree split_tree (tree, enum tree_code, tree *, tree *, tree *, int);
65 static tree associate_trees (tree, tree, enum tree_code, tree);
66 static tree int_const_binop (enum tree_code, tree, tree, int);
67 static tree const_binop (enum tree_code, tree, tree, int);
68 static hashval_t size_htab_hash (const void *);
69 static int size_htab_eq (const void *, const void *);
70 static tree fold_convert (tree, tree);
71 static enum tree_code invert_tree_comparison (enum tree_code);
72 static enum tree_code swap_tree_comparison (enum tree_code);
73 static int comparison_to_compcode (enum tree_code);
74 static enum tree_code compcode_to_comparison (int);
75 static int truth_value_p (enum tree_code);
76 static int operand_equal_for_comparison_p (tree, tree, tree);
77 static int twoval_comparison_p (tree, tree *, tree *, int *);
78 static tree eval_subst (tree, tree, tree, tree, tree);
79 static tree pedantic_omit_one_operand (tree, tree, tree);
80 static tree distribute_bit_expr (enum tree_code, tree, tree, tree);
81 static tree make_bit_field_ref (tree, tree, int, int, int);
82 static tree optimize_bit_field_compare (enum tree_code, tree, tree, tree);
83 static tree decode_field_reference (tree, HOST_WIDE_INT *, HOST_WIDE_INT *,
84 enum machine_mode *, int *, int *,
85 tree *, tree *);
86 static int all_ones_mask_p (tree, int);
87 static tree sign_bit_p (tree, tree);
88 static int simple_operand_p (tree);
89 static tree range_binop (enum tree_code, tree, tree, int, tree, int);
90 static tree make_range (tree, int *, tree *, tree *);
91 static tree build_range_check (tree, tree, int, tree, tree);
92 static int merge_ranges (int *, tree *, tree *, int, tree, tree, int, tree,
93 tree);
94 static tree fold_range_test (tree);
95 static tree unextend (tree, int, int, tree);
96 static tree fold_truthop (enum tree_code, tree, tree, tree);
97 static tree optimize_minmax_comparison (tree);
98 static tree extract_muldiv (tree, tree, enum tree_code, tree);
99 static tree extract_muldiv_1 (tree, tree, enum tree_code, tree);
100 static tree strip_compound_expr (tree, tree);
101 static int multiple_of_p (tree, tree, tree);
102 static tree constant_boolean_node (int, tree);
103 static int count_cond (tree, int);
104 static tree fold_binary_op_with_conditional_arg (enum tree_code, tree, tree,
105 tree, int);
106 static bool fold_real_zero_addition_p (tree, tree, int);
107 static tree fold_mathfn_compare (enum built_in_function, enum tree_code,
108 tree, tree, tree);
109 static tree fold_inf_compare (enum tree_code, tree, tree, tree);
111 /* The following constants represent a bit based encoding of GCC's
112 comparison operators. This encoding simplifies transformations
113 on relational comparison operators, such as AND and OR. */
114 #define COMPCODE_FALSE 0
115 #define COMPCODE_LT 1
116 #define COMPCODE_EQ 2
117 #define COMPCODE_LE 3
118 #define COMPCODE_GT 4
119 #define COMPCODE_NE 5
120 #define COMPCODE_GE 6
121 #define COMPCODE_TRUE 7
123 /* We know that A1 + B1 = SUM1, using 2's complement arithmetic and ignoring
124 overflow. Suppose A, B and SUM have the same respective signs as A1, B1,
125 and SUM1. Then this yields nonzero if overflow occurred during the
126 addition.
128 Overflow occurs if A and B have the same sign, but A and SUM differ in
129 sign. Use `^' to test whether signs differ, and `< 0' to isolate the
130 sign. */
131 #define OVERFLOW_SUM_SIGN(a, b, sum) ((~((a) ^ (b)) & ((a) ^ (sum))) < 0)
133 /* To do constant folding on INTEGER_CST nodes requires two-word arithmetic.
134 We do that by representing the two-word integer in 4 words, with only
135 HOST_BITS_PER_WIDE_INT / 2 bits stored in each word, as a positive
136 number. The value of the word is LOWPART + HIGHPART * BASE. */
138 #define LOWPART(x) \
139 ((x) & (((unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)) - 1))
140 #define HIGHPART(x) \
141 ((unsigned HOST_WIDE_INT) (x) >> HOST_BITS_PER_WIDE_INT / 2)
142 #define BASE ((unsigned HOST_WIDE_INT) 1 << HOST_BITS_PER_WIDE_INT / 2)
144 /* Unpack a two-word integer into 4 words.
145 LOW and HI are the integer, as two `HOST_WIDE_INT' pieces.
146 WORDS points to the array of HOST_WIDE_INTs. */
148 static void
149 encode (HOST_WIDE_INT *words, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
151 words[0] = LOWPART (low);
152 words[1] = HIGHPART (low);
153 words[2] = LOWPART (hi);
154 words[3] = HIGHPART (hi);
157 /* Pack an array of 4 words into a two-word integer.
158 WORDS points to the array of words.
159 The integer is stored into *LOW and *HI as two `HOST_WIDE_INT' pieces. */
161 static void
162 decode (HOST_WIDE_INT *words, unsigned HOST_WIDE_INT *low,
163 HOST_WIDE_INT *hi)
165 *low = words[0] + words[1] * BASE;
166 *hi = words[2] + words[3] * BASE;
169 /* Make the integer constant T valid for its type by setting to 0 or 1 all
170 the bits in the constant that don't belong in the type.
172 Return 1 if a signed overflow occurs, 0 otherwise. If OVERFLOW is
173 nonzero, a signed overflow has already occurred in calculating T, so
174 propagate it. */
177 force_fit_type (tree t, int overflow)
179 unsigned HOST_WIDE_INT low;
180 HOST_WIDE_INT high;
181 unsigned int prec;
183 if (TREE_CODE (t) == REAL_CST)
185 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
186 Consider doing it via real_convert now. */
187 return overflow;
190 else if (TREE_CODE (t) != INTEGER_CST)
191 return overflow;
193 low = TREE_INT_CST_LOW (t);
194 high = TREE_INT_CST_HIGH (t);
196 if (POINTER_TYPE_P (TREE_TYPE (t)))
197 prec = POINTER_SIZE;
198 else
199 prec = TYPE_PRECISION (TREE_TYPE (t));
201 /* First clear all bits that are beyond the type's precision. */
203 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
205 else if (prec > HOST_BITS_PER_WIDE_INT)
206 TREE_INT_CST_HIGH (t)
207 &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
208 else
210 TREE_INT_CST_HIGH (t) = 0;
211 if (prec < HOST_BITS_PER_WIDE_INT)
212 TREE_INT_CST_LOW (t) &= ~((unsigned HOST_WIDE_INT) (-1) << prec);
215 /* Unsigned types do not suffer sign extension or overflow unless they
216 are a sizetype. */
217 if (TREE_UNSIGNED (TREE_TYPE (t))
218 && ! (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
219 && TYPE_IS_SIZETYPE (TREE_TYPE (t))))
220 return overflow;
222 /* If the value's sign bit is set, extend the sign. */
223 if (prec != 2 * HOST_BITS_PER_WIDE_INT
224 && (prec > HOST_BITS_PER_WIDE_INT
225 ? 0 != (TREE_INT_CST_HIGH (t)
226 & ((HOST_WIDE_INT) 1
227 << (prec - HOST_BITS_PER_WIDE_INT - 1)))
228 : 0 != (TREE_INT_CST_LOW (t)
229 & ((unsigned HOST_WIDE_INT) 1 << (prec - 1)))))
231 /* Value is negative:
232 set to 1 all the bits that are outside this type's precision. */
233 if (prec > HOST_BITS_PER_WIDE_INT)
234 TREE_INT_CST_HIGH (t)
235 |= ((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
236 else
238 TREE_INT_CST_HIGH (t) = -1;
239 if (prec < HOST_BITS_PER_WIDE_INT)
240 TREE_INT_CST_LOW (t) |= ((unsigned HOST_WIDE_INT) (-1) << prec);
244 /* Return nonzero if signed overflow occurred. */
245 return
246 ((overflow | (low ^ TREE_INT_CST_LOW (t)) | (high ^ TREE_INT_CST_HIGH (t)))
247 != 0);
250 /* Add two doubleword integers with doubleword result.
251 Each argument is given as two `HOST_WIDE_INT' pieces.
252 One argument is L1 and H1; the other, L2 and H2.
253 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
256 add_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
257 unsigned HOST_WIDE_INT l2, HOST_WIDE_INT h2,
258 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
260 unsigned HOST_WIDE_INT l;
261 HOST_WIDE_INT h;
263 l = l1 + l2;
264 h = h1 + h2 + (l < l1);
266 *lv = l;
267 *hv = h;
268 return OVERFLOW_SUM_SIGN (h1, h2, h);
271 /* Negate a doubleword integer with doubleword result.
272 Return nonzero if the operation overflows, assuming it's signed.
273 The argument is given as two `HOST_WIDE_INT' pieces in L1 and H1.
274 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
277 neg_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
278 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
280 if (l1 == 0)
282 *lv = 0;
283 *hv = - h1;
284 return (*hv & h1) < 0;
286 else
288 *lv = -l1;
289 *hv = ~h1;
290 return 0;
294 /* Multiply two doubleword integers with doubleword result.
295 Return nonzero if the operation overflows, assuming it's signed.
296 Each argument is given as two `HOST_WIDE_INT' pieces.
297 One argument is L1 and H1; the other, L2 and H2.
298 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
301 mul_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
302 unsigned HOST_WIDE_INT l2, HOST_WIDE_INT h2,
303 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
305 HOST_WIDE_INT arg1[4];
306 HOST_WIDE_INT arg2[4];
307 HOST_WIDE_INT prod[4 * 2];
308 unsigned HOST_WIDE_INT carry;
309 int i, j, k;
310 unsigned HOST_WIDE_INT toplow, neglow;
311 HOST_WIDE_INT tophigh, neghigh;
313 encode (arg1, l1, h1);
314 encode (arg2, l2, h2);
316 memset ((char *) prod, 0, sizeof prod);
318 for (i = 0; i < 4; i++)
320 carry = 0;
321 for (j = 0; j < 4; j++)
323 k = i + j;
324 /* This product is <= 0xFFFE0001, the sum <= 0xFFFF0000. */
325 carry += arg1[i] * arg2[j];
326 /* Since prod[p] < 0xFFFF, this sum <= 0xFFFFFFFF. */
327 carry += prod[k];
328 prod[k] = LOWPART (carry);
329 carry = HIGHPART (carry);
331 prod[i + 4] = carry;
334 decode (prod, lv, hv); /* This ignores prod[4] through prod[4*2-1] */
336 /* Check for overflow by calculating the top half of the answer in full;
337 it should agree with the low half's sign bit. */
338 decode (prod + 4, &toplow, &tophigh);
339 if (h1 < 0)
341 neg_double (l2, h2, &neglow, &neghigh);
342 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
344 if (h2 < 0)
346 neg_double (l1, h1, &neglow, &neghigh);
347 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
349 return (*hv < 0 ? ~(toplow & tophigh) : toplow | tophigh) != 0;
352 /* Shift the doubleword integer in L1, H1 left by COUNT places
353 keeping only PREC bits of result.
354 Shift right if COUNT is negative.
355 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
356 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
358 void
359 lshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
360 HOST_WIDE_INT count, unsigned int prec,
361 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv, int arith)
363 unsigned HOST_WIDE_INT signmask;
365 if (count < 0)
367 rshift_double (l1, h1, -count, prec, lv, hv, arith);
368 return;
371 #ifdef SHIFT_COUNT_TRUNCATED
372 if (SHIFT_COUNT_TRUNCATED)
373 count %= prec;
374 #endif
376 if (count >= 2 * HOST_BITS_PER_WIDE_INT)
378 /* Shifting by the host word size is undefined according to the
379 ANSI standard, so we must handle this as a special case. */
380 *hv = 0;
381 *lv = 0;
383 else if (count >= HOST_BITS_PER_WIDE_INT)
385 *hv = l1 << (count - HOST_BITS_PER_WIDE_INT);
386 *lv = 0;
388 else
390 *hv = (((unsigned HOST_WIDE_INT) h1 << count)
391 | (l1 >> (HOST_BITS_PER_WIDE_INT - count - 1) >> 1));
392 *lv = l1 << count;
395 /* Sign extend all bits that are beyond the precision. */
397 signmask = -((prec > HOST_BITS_PER_WIDE_INT
398 ? ((unsigned HOST_WIDE_INT) *hv
399 >> (prec - HOST_BITS_PER_WIDE_INT - 1))
400 : (*lv >> (prec - 1))) & 1);
402 if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
404 else if (prec >= HOST_BITS_PER_WIDE_INT)
406 *hv &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
407 *hv |= signmask << (prec - HOST_BITS_PER_WIDE_INT);
409 else
411 *hv = signmask;
412 *lv &= ~((unsigned HOST_WIDE_INT) (-1) << prec);
413 *lv |= signmask << prec;
417 /* Shift the doubleword integer in L1, H1 right by COUNT places
418 keeping only PREC bits of result. COUNT must be positive.
419 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
420 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
422 void
423 rshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
424 HOST_WIDE_INT count, unsigned int prec,
425 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv,
426 int arith)
428 unsigned HOST_WIDE_INT signmask;
430 signmask = (arith
431 ? -((unsigned HOST_WIDE_INT) h1 >> (HOST_BITS_PER_WIDE_INT - 1))
432 : 0);
434 #ifdef SHIFT_COUNT_TRUNCATED
435 if (SHIFT_COUNT_TRUNCATED)
436 count %= prec;
437 #endif
439 if (count >= 2 * HOST_BITS_PER_WIDE_INT)
441 /* Shifting by the host word size is undefined according to the
442 ANSI standard, so we must handle this as a special case. */
443 *hv = 0;
444 *lv = 0;
446 else if (count >= HOST_BITS_PER_WIDE_INT)
448 *hv = 0;
449 *lv = (unsigned HOST_WIDE_INT) h1 >> (count - HOST_BITS_PER_WIDE_INT);
451 else
453 *hv = (unsigned HOST_WIDE_INT) h1 >> count;
454 *lv = ((l1 >> count)
455 | ((unsigned HOST_WIDE_INT) h1 << (HOST_BITS_PER_WIDE_INT - count - 1) << 1));
458 /* Zero / sign extend all bits that are beyond the precision. */
460 if (count >= (HOST_WIDE_INT)prec)
462 *hv = signmask;
463 *lv = signmask;
465 else if ((prec - count) >= 2 * HOST_BITS_PER_WIDE_INT)
467 else if ((prec - count) >= HOST_BITS_PER_WIDE_INT)
469 *hv &= ~((HOST_WIDE_INT) (-1) << (prec - count - HOST_BITS_PER_WIDE_INT));
470 *hv |= signmask << (prec - count - HOST_BITS_PER_WIDE_INT);
472 else
474 *hv = signmask;
475 *lv &= ~((unsigned HOST_WIDE_INT) (-1) << (prec - count));
476 *lv |= signmask << (prec - count);
480 /* Rotate the doubleword integer in L1, H1 left by COUNT places
481 keeping only PREC bits of result.
482 Rotate right if COUNT is negative.
483 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
485 void
486 lrotate_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
487 HOST_WIDE_INT count, unsigned int prec,
488 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
490 unsigned HOST_WIDE_INT s1l, s2l;
491 HOST_WIDE_INT s1h, s2h;
493 count %= prec;
494 if (count < 0)
495 count += prec;
497 lshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
498 rshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
499 *lv = s1l | s2l;
500 *hv = s1h | s2h;
503 /* Rotate the doubleword integer in L1, H1 left by COUNT places
504 keeping only PREC bits of result. COUNT must be positive.
505 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
507 void
508 rrotate_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
509 HOST_WIDE_INT count, unsigned int prec,
510 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
512 unsigned HOST_WIDE_INT s1l, s2l;
513 HOST_WIDE_INT s1h, s2h;
515 count %= prec;
516 if (count < 0)
517 count += prec;
519 rshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
520 lshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
521 *lv = s1l | s2l;
522 *hv = s1h | s2h;
525 /* Divide doubleword integer LNUM, HNUM by doubleword integer LDEN, HDEN
526 for a quotient (stored in *LQUO, *HQUO) and remainder (in *LREM, *HREM).
527 CODE is a tree code for a kind of division, one of
528 TRUNC_DIV_EXPR, FLOOR_DIV_EXPR, CEIL_DIV_EXPR, ROUND_DIV_EXPR
529 or EXACT_DIV_EXPR
530 It controls how the quotient is rounded to an integer.
531 Return nonzero if the operation overflows.
532 UNS nonzero says do unsigned division. */
535 div_and_round_double (enum tree_code code, int uns,
536 unsigned HOST_WIDE_INT lnum_orig, /* num == numerator == dividend */
537 HOST_WIDE_INT hnum_orig,
538 unsigned HOST_WIDE_INT lden_orig, /* den == denominator == divisor */
539 HOST_WIDE_INT hden_orig,
540 unsigned HOST_WIDE_INT *lquo,
541 HOST_WIDE_INT *hquo, unsigned HOST_WIDE_INT *lrem,
542 HOST_WIDE_INT *hrem)
544 int quo_neg = 0;
545 HOST_WIDE_INT num[4 + 1]; /* extra element for scaling. */
546 HOST_WIDE_INT den[4], quo[4];
547 int i, j;
548 unsigned HOST_WIDE_INT work;
549 unsigned HOST_WIDE_INT carry = 0;
550 unsigned HOST_WIDE_INT lnum = lnum_orig;
551 HOST_WIDE_INT hnum = hnum_orig;
552 unsigned HOST_WIDE_INT lden = lden_orig;
553 HOST_WIDE_INT hden = hden_orig;
554 int overflow = 0;
556 if (hden == 0 && lden == 0)
557 overflow = 1, lden = 1;
559 /* calculate quotient sign and convert operands to unsigned. */
560 if (!uns)
562 if (hnum < 0)
564 quo_neg = ~ quo_neg;
565 /* (minimum integer) / (-1) is the only overflow case. */
566 if (neg_double (lnum, hnum, &lnum, &hnum)
567 && ((HOST_WIDE_INT) lden & hden) == -1)
568 overflow = 1;
570 if (hden < 0)
572 quo_neg = ~ quo_neg;
573 neg_double (lden, hden, &lden, &hden);
577 if (hnum == 0 && hden == 0)
578 { /* single precision */
579 *hquo = *hrem = 0;
580 /* This unsigned division rounds toward zero. */
581 *lquo = lnum / lden;
582 goto finish_up;
585 if (hnum == 0)
586 { /* trivial case: dividend < divisor */
587 /* hden != 0 already checked. */
588 *hquo = *lquo = 0;
589 *hrem = hnum;
590 *lrem = lnum;
591 goto finish_up;
594 memset ((char *) quo, 0, sizeof quo);
596 memset ((char *) num, 0, sizeof num); /* to zero 9th element */
597 memset ((char *) den, 0, sizeof den);
599 encode (num, lnum, hnum);
600 encode (den, lden, hden);
602 /* Special code for when the divisor < BASE. */
603 if (hden == 0 && lden < (unsigned HOST_WIDE_INT) BASE)
605 /* hnum != 0 already checked. */
606 for (i = 4 - 1; i >= 0; i--)
608 work = num[i] + carry * BASE;
609 quo[i] = work / lden;
610 carry = work % lden;
613 else
615 /* Full double precision division,
616 with thanks to Don Knuth's "Seminumerical Algorithms". */
617 int num_hi_sig, den_hi_sig;
618 unsigned HOST_WIDE_INT quo_est, scale;
620 /* Find the highest nonzero divisor digit. */
621 for (i = 4 - 1;; i--)
622 if (den[i] != 0)
624 den_hi_sig = i;
625 break;
628 /* Insure that the first digit of the divisor is at least BASE/2.
629 This is required by the quotient digit estimation algorithm. */
631 scale = BASE / (den[den_hi_sig] + 1);
632 if (scale > 1)
633 { /* scale divisor and dividend */
634 carry = 0;
635 for (i = 0; i <= 4 - 1; i++)
637 work = (num[i] * scale) + carry;
638 num[i] = LOWPART (work);
639 carry = HIGHPART (work);
642 num[4] = carry;
643 carry = 0;
644 for (i = 0; i <= 4 - 1; i++)
646 work = (den[i] * scale) + carry;
647 den[i] = LOWPART (work);
648 carry = HIGHPART (work);
649 if (den[i] != 0) den_hi_sig = i;
653 num_hi_sig = 4;
655 /* Main loop */
656 for (i = num_hi_sig - den_hi_sig - 1; i >= 0; i--)
658 /* Guess the next quotient digit, quo_est, by dividing the first
659 two remaining dividend digits by the high order quotient digit.
660 quo_est is never low and is at most 2 high. */
661 unsigned HOST_WIDE_INT tmp;
663 num_hi_sig = i + den_hi_sig + 1;
664 work = num[num_hi_sig] * BASE + num[num_hi_sig - 1];
665 if (num[num_hi_sig] != den[den_hi_sig])
666 quo_est = work / den[den_hi_sig];
667 else
668 quo_est = BASE - 1;
670 /* Refine quo_est so it's usually correct, and at most one high. */
671 tmp = work - quo_est * den[den_hi_sig];
672 if (tmp < BASE
673 && (den[den_hi_sig - 1] * quo_est
674 > (tmp * BASE + num[num_hi_sig - 2])))
675 quo_est--;
677 /* Try QUO_EST as the quotient digit, by multiplying the
678 divisor by QUO_EST and subtracting from the remaining dividend.
679 Keep in mind that QUO_EST is the I - 1st digit. */
681 carry = 0;
682 for (j = 0; j <= den_hi_sig; j++)
684 work = quo_est * den[j] + carry;
685 carry = HIGHPART (work);
686 work = num[i + j] - LOWPART (work);
687 num[i + j] = LOWPART (work);
688 carry += HIGHPART (work) != 0;
691 /* If quo_est was high by one, then num[i] went negative and
692 we need to correct things. */
693 if (num[num_hi_sig] < (HOST_WIDE_INT) carry)
695 quo_est--;
696 carry = 0; /* add divisor back in */
697 for (j = 0; j <= den_hi_sig; j++)
699 work = num[i + j] + den[j] + carry;
700 carry = HIGHPART (work);
701 num[i + j] = LOWPART (work);
704 num [num_hi_sig] += carry;
707 /* Store the quotient digit. */
708 quo[i] = quo_est;
712 decode (quo, lquo, hquo);
714 finish_up:
715 /* if result is negative, make it so. */
716 if (quo_neg)
717 neg_double (*lquo, *hquo, lquo, hquo);
719 /* compute trial remainder: rem = num - (quo * den) */
720 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
721 neg_double (*lrem, *hrem, lrem, hrem);
722 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
724 switch (code)
726 case TRUNC_DIV_EXPR:
727 case TRUNC_MOD_EXPR: /* round toward zero */
728 case EXACT_DIV_EXPR: /* for this one, it shouldn't matter */
729 return overflow;
731 case FLOOR_DIV_EXPR:
732 case FLOOR_MOD_EXPR: /* round toward negative infinity */
733 if (quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio < 0 && rem != 0 */
735 /* quo = quo - 1; */
736 add_double (*lquo, *hquo, (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1,
737 lquo, hquo);
739 else
740 return overflow;
741 break;
743 case CEIL_DIV_EXPR:
744 case CEIL_MOD_EXPR: /* round toward positive infinity */
745 if (!quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio > 0 && rem != 0 */
747 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
748 lquo, hquo);
750 else
751 return overflow;
752 break;
754 case ROUND_DIV_EXPR:
755 case ROUND_MOD_EXPR: /* round to closest integer */
757 unsigned HOST_WIDE_INT labs_rem = *lrem;
758 HOST_WIDE_INT habs_rem = *hrem;
759 unsigned HOST_WIDE_INT labs_den = lden, ltwice;
760 HOST_WIDE_INT habs_den = hden, htwice;
762 /* Get absolute values. */
763 if (*hrem < 0)
764 neg_double (*lrem, *hrem, &labs_rem, &habs_rem);
765 if (hden < 0)
766 neg_double (lden, hden, &labs_den, &habs_den);
768 /* If (2 * abs (lrem) >= abs (lden)) */
769 mul_double ((HOST_WIDE_INT) 2, (HOST_WIDE_INT) 0,
770 labs_rem, habs_rem, &ltwice, &htwice);
772 if (((unsigned HOST_WIDE_INT) habs_den
773 < (unsigned HOST_WIDE_INT) htwice)
774 || (((unsigned HOST_WIDE_INT) habs_den
775 == (unsigned HOST_WIDE_INT) htwice)
776 && (labs_den < ltwice)))
778 if (*hquo < 0)
779 /* quo = quo - 1; */
780 add_double (*lquo, *hquo,
781 (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1, lquo, hquo);
782 else
783 /* quo = quo + 1; */
784 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
785 lquo, hquo);
787 else
788 return overflow;
790 break;
792 default:
793 abort ();
796 /* compute true remainder: rem = num - (quo * den) */
797 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
798 neg_double (*lrem, *hrem, lrem, hrem);
799 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
800 return overflow;
803 /* Determine whether an expression T can be cheaply negated using
804 the function negate_expr. */
806 static bool
807 negate_expr_p (tree t)
809 unsigned HOST_WIDE_INT val;
810 unsigned int prec;
811 tree type;
813 if (t == 0)
814 return false;
816 type = TREE_TYPE (t);
818 STRIP_SIGN_NOPS (t);
819 switch (TREE_CODE (t))
821 case INTEGER_CST:
822 if (TREE_UNSIGNED (type))
823 return false;
825 /* Check that -CST will not overflow type. */
826 prec = TYPE_PRECISION (type);
827 if (prec > HOST_BITS_PER_WIDE_INT)
829 if (TREE_INT_CST_LOW (t) != 0)
830 return true;
831 prec -= HOST_BITS_PER_WIDE_INT;
832 val = TREE_INT_CST_HIGH (t);
834 else
835 val = TREE_INT_CST_LOW (t);
836 if (prec < HOST_BITS_PER_WIDE_INT)
837 val &= ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
838 return val != ((unsigned HOST_WIDE_INT) 1 << (prec - 1));
840 case REAL_CST:
841 case NEGATE_EXPR:
842 case MINUS_EXPR:
843 return true;
845 default:
846 break;
848 return false;
851 /* Given T, an expression, return the negation of T. Allow for T to be
852 null, in which case return null. */
854 static tree
855 negate_expr (tree t)
857 tree type;
858 tree tem;
860 if (t == 0)
861 return 0;
863 type = TREE_TYPE (t);
864 STRIP_SIGN_NOPS (t);
866 switch (TREE_CODE (t))
868 case INTEGER_CST:
869 case REAL_CST:
870 if (! TREE_UNSIGNED (type)
871 && 0 != (tem = fold (build1 (NEGATE_EXPR, type, t)))
872 && ! TREE_OVERFLOW (tem))
873 return tem;
874 break;
876 case NEGATE_EXPR:
877 return convert (type, TREE_OPERAND (t, 0));
879 case MINUS_EXPR:
880 /* - (A - B) -> B - A */
881 if (! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
882 return convert (type,
883 fold (build (MINUS_EXPR, TREE_TYPE (t),
884 TREE_OPERAND (t, 1),
885 TREE_OPERAND (t, 0))));
886 break;
888 default:
889 break;
892 return convert (type, fold (build1 (NEGATE_EXPR, TREE_TYPE (t), t)));
895 /* Split a tree IN into a constant, literal and variable parts that could be
896 combined with CODE to make IN. "constant" means an expression with
897 TREE_CONSTANT but that isn't an actual constant. CODE must be a
898 commutative arithmetic operation. Store the constant part into *CONP,
899 the literal in *LITP and return the variable part. If a part isn't
900 present, set it to null. If the tree does not decompose in this way,
901 return the entire tree as the variable part and the other parts as null.
903 If CODE is PLUS_EXPR we also split trees that use MINUS_EXPR. In that
904 case, we negate an operand that was subtracted. Except if it is a
905 literal for which we use *MINUS_LITP instead.
907 If NEGATE_P is true, we are negating all of IN, again except a literal
908 for which we use *MINUS_LITP instead.
910 If IN is itself a literal or constant, return it as appropriate.
912 Note that we do not guarantee that any of the three values will be the
913 same type as IN, but they will have the same signedness and mode. */
915 static tree
916 split_tree (tree in, enum tree_code code, tree *conp, tree *litp,
917 tree *minus_litp, int negate_p)
919 tree var = 0;
921 *conp = 0;
922 *litp = 0;
923 *minus_litp = 0;
925 /* Strip any conversions that don't change the machine mode or signedness. */
926 STRIP_SIGN_NOPS (in);
928 if (TREE_CODE (in) == INTEGER_CST || TREE_CODE (in) == REAL_CST)
929 *litp = in;
930 else if (TREE_CODE (in) == code
931 || (! FLOAT_TYPE_P (TREE_TYPE (in))
932 /* We can associate addition and subtraction together (even
933 though the C standard doesn't say so) for integers because
934 the value is not affected. For reals, the value might be
935 affected, so we can't. */
936 && ((code == PLUS_EXPR && TREE_CODE (in) == MINUS_EXPR)
937 || (code == MINUS_EXPR && TREE_CODE (in) == PLUS_EXPR))))
939 tree op0 = TREE_OPERAND (in, 0);
940 tree op1 = TREE_OPERAND (in, 1);
941 int neg1_p = TREE_CODE (in) == MINUS_EXPR;
942 int neg_litp_p = 0, neg_conp_p = 0, neg_var_p = 0;
944 /* First see if either of the operands is a literal, then a constant. */
945 if (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST)
946 *litp = op0, op0 = 0;
947 else if (TREE_CODE (op1) == INTEGER_CST || TREE_CODE (op1) == REAL_CST)
948 *litp = op1, neg_litp_p = neg1_p, op1 = 0;
950 if (op0 != 0 && TREE_CONSTANT (op0))
951 *conp = op0, op0 = 0;
952 else if (op1 != 0 && TREE_CONSTANT (op1))
953 *conp = op1, neg_conp_p = neg1_p, op1 = 0;
955 /* If we haven't dealt with either operand, this is not a case we can
956 decompose. Otherwise, VAR is either of the ones remaining, if any. */
957 if (op0 != 0 && op1 != 0)
958 var = in;
959 else if (op0 != 0)
960 var = op0;
961 else
962 var = op1, neg_var_p = neg1_p;
964 /* Now do any needed negations. */
965 if (neg_litp_p)
966 *minus_litp = *litp, *litp = 0;
967 if (neg_conp_p)
968 *conp = negate_expr (*conp);
969 if (neg_var_p)
970 var = negate_expr (var);
972 else if (TREE_CONSTANT (in))
973 *conp = in;
974 else
975 var = in;
977 if (negate_p)
979 if (*litp)
980 *minus_litp = *litp, *litp = 0;
981 else if (*minus_litp)
982 *litp = *minus_litp, *minus_litp = 0;
983 *conp = negate_expr (*conp);
984 var = negate_expr (var);
987 return var;
990 /* Re-associate trees split by the above function. T1 and T2 are either
991 expressions to associate or null. Return the new expression, if any. If
992 we build an operation, do it in TYPE and with CODE. */
994 static tree
995 associate_trees (tree t1, tree t2, enum tree_code code, tree type)
997 if (t1 == 0)
998 return t2;
999 else if (t2 == 0)
1000 return t1;
1002 /* If either input is CODE, a PLUS_EXPR, or a MINUS_EXPR, don't
1003 try to fold this since we will have infinite recursion. But do
1004 deal with any NEGATE_EXPRs. */
1005 if (TREE_CODE (t1) == code || TREE_CODE (t2) == code
1006 || TREE_CODE (t1) == MINUS_EXPR || TREE_CODE (t2) == MINUS_EXPR)
1008 if (code == PLUS_EXPR)
1010 if (TREE_CODE (t1) == NEGATE_EXPR)
1011 return build (MINUS_EXPR, type, convert (type, t2),
1012 convert (type, TREE_OPERAND (t1, 0)));
1013 else if (TREE_CODE (t2) == NEGATE_EXPR)
1014 return build (MINUS_EXPR, type, convert (type, t1),
1015 convert (type, TREE_OPERAND (t2, 0)));
1017 return build (code, type, convert (type, t1), convert (type, t2));
1020 return fold (build (code, type, convert (type, t1), convert (type, t2)));
1023 /* Combine two integer constants ARG1 and ARG2 under operation CODE
1024 to produce a new constant.
1026 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1028 static tree
1029 int_const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
1031 unsigned HOST_WIDE_INT int1l, int2l;
1032 HOST_WIDE_INT int1h, int2h;
1033 unsigned HOST_WIDE_INT low;
1034 HOST_WIDE_INT hi;
1035 unsigned HOST_WIDE_INT garbagel;
1036 HOST_WIDE_INT garbageh;
1037 tree t;
1038 tree type = TREE_TYPE (arg1);
1039 int uns = TREE_UNSIGNED (type);
1040 int is_sizetype
1041 = (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type));
1042 int overflow = 0;
1043 int no_overflow = 0;
1045 int1l = TREE_INT_CST_LOW (arg1);
1046 int1h = TREE_INT_CST_HIGH (arg1);
1047 int2l = TREE_INT_CST_LOW (arg2);
1048 int2h = TREE_INT_CST_HIGH (arg2);
1050 switch (code)
1052 case BIT_IOR_EXPR:
1053 low = int1l | int2l, hi = int1h | int2h;
1054 break;
1056 case BIT_XOR_EXPR:
1057 low = int1l ^ int2l, hi = int1h ^ int2h;
1058 break;
1060 case BIT_AND_EXPR:
1061 low = int1l & int2l, hi = int1h & int2h;
1062 break;
1064 case BIT_ANDTC_EXPR:
1065 low = int1l & ~int2l, hi = int1h & ~int2h;
1066 break;
1068 case RSHIFT_EXPR:
1069 int2l = -int2l;
1070 case LSHIFT_EXPR:
1071 /* It's unclear from the C standard whether shifts can overflow.
1072 The following code ignores overflow; perhaps a C standard
1073 interpretation ruling is needed. */
1074 lshift_double (int1l, int1h, int2l, TYPE_PRECISION (type),
1075 &low, &hi, !uns);
1076 no_overflow = 1;
1077 break;
1079 case RROTATE_EXPR:
1080 int2l = - int2l;
1081 case LROTATE_EXPR:
1082 lrotate_double (int1l, int1h, int2l, TYPE_PRECISION (type),
1083 &low, &hi);
1084 break;
1086 case PLUS_EXPR:
1087 overflow = add_double (int1l, int1h, int2l, int2h, &low, &hi);
1088 break;
1090 case MINUS_EXPR:
1091 neg_double (int2l, int2h, &low, &hi);
1092 add_double (int1l, int1h, low, hi, &low, &hi);
1093 overflow = OVERFLOW_SUM_SIGN (hi, int2h, int1h);
1094 break;
1096 case MULT_EXPR:
1097 overflow = mul_double (int1l, int1h, int2l, int2h, &low, &hi);
1098 break;
1100 case TRUNC_DIV_EXPR:
1101 case FLOOR_DIV_EXPR: case CEIL_DIV_EXPR:
1102 case EXACT_DIV_EXPR:
1103 /* This is a shortcut for a common special case. */
1104 if (int2h == 0 && (HOST_WIDE_INT) int2l > 0
1105 && ! TREE_CONSTANT_OVERFLOW (arg1)
1106 && ! TREE_CONSTANT_OVERFLOW (arg2)
1107 && int1h == 0 && (HOST_WIDE_INT) int1l >= 0)
1109 if (code == CEIL_DIV_EXPR)
1110 int1l += int2l - 1;
1112 low = int1l / int2l, hi = 0;
1113 break;
1116 /* ... fall through ... */
1118 case ROUND_DIV_EXPR:
1119 if (int2h == 0 && int2l == 1)
1121 low = int1l, hi = int1h;
1122 break;
1124 if (int1l == int2l && int1h == int2h
1125 && ! (int1l == 0 && int1h == 0))
1127 low = 1, hi = 0;
1128 break;
1130 overflow = div_and_round_double (code, uns, int1l, int1h, int2l, int2h,
1131 &low, &hi, &garbagel, &garbageh);
1132 break;
1134 case TRUNC_MOD_EXPR:
1135 case FLOOR_MOD_EXPR: case CEIL_MOD_EXPR:
1136 /* This is a shortcut for a common special case. */
1137 if (int2h == 0 && (HOST_WIDE_INT) int2l > 0
1138 && ! TREE_CONSTANT_OVERFLOW (arg1)
1139 && ! TREE_CONSTANT_OVERFLOW (arg2)
1140 && int1h == 0 && (HOST_WIDE_INT) int1l >= 0)
1142 if (code == CEIL_MOD_EXPR)
1143 int1l += int2l - 1;
1144 low = int1l % int2l, hi = 0;
1145 break;
1148 /* ... fall through ... */
1150 case ROUND_MOD_EXPR:
1151 overflow = div_and_round_double (code, uns,
1152 int1l, int1h, int2l, int2h,
1153 &garbagel, &garbageh, &low, &hi);
1154 break;
1156 case MIN_EXPR:
1157 case MAX_EXPR:
1158 if (uns)
1159 low = (((unsigned HOST_WIDE_INT) int1h
1160 < (unsigned HOST_WIDE_INT) int2h)
1161 || (((unsigned HOST_WIDE_INT) int1h
1162 == (unsigned HOST_WIDE_INT) int2h)
1163 && int1l < int2l));
1164 else
1165 low = (int1h < int2h
1166 || (int1h == int2h && int1l < int2l));
1168 if (low == (code == MIN_EXPR))
1169 low = int1l, hi = int1h;
1170 else
1171 low = int2l, hi = int2h;
1172 break;
1174 default:
1175 abort ();
1178 /* If this is for a sizetype, can be represented as one (signed)
1179 HOST_WIDE_INT word, and doesn't overflow, use size_int since it caches
1180 constants. */
1181 if (is_sizetype
1182 && ((hi == 0 && (HOST_WIDE_INT) low >= 0)
1183 || (hi == -1 && (HOST_WIDE_INT) low < 0))
1184 && overflow == 0 && ! TREE_OVERFLOW (arg1) && ! TREE_OVERFLOW (arg2))
1185 return size_int_type_wide (low, type);
1186 else
1188 t = build_int_2 (low, hi);
1189 TREE_TYPE (t) = TREE_TYPE (arg1);
1192 TREE_OVERFLOW (t)
1193 = ((notrunc
1194 ? (!uns || is_sizetype) && overflow
1195 : (force_fit_type (t, (!uns || is_sizetype) && overflow)
1196 && ! no_overflow))
1197 | TREE_OVERFLOW (arg1)
1198 | TREE_OVERFLOW (arg2));
1200 /* If we're doing a size calculation, unsigned arithmetic does overflow.
1201 So check if force_fit_type truncated the value. */
1202 if (is_sizetype
1203 && ! TREE_OVERFLOW (t)
1204 && (TREE_INT_CST_HIGH (t) != hi
1205 || TREE_INT_CST_LOW (t) != low))
1206 TREE_OVERFLOW (t) = 1;
1208 TREE_CONSTANT_OVERFLOW (t) = (TREE_OVERFLOW (t)
1209 | TREE_CONSTANT_OVERFLOW (arg1)
1210 | TREE_CONSTANT_OVERFLOW (arg2));
1211 return t;
1214 /* Combine two constants ARG1 and ARG2 under operation CODE to produce a new
1215 constant. We assume ARG1 and ARG2 have the same data type, or at least
1216 are the same kind of constant and the same machine mode.
1218 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1220 static tree
1221 const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
1223 STRIP_NOPS (arg1);
1224 STRIP_NOPS (arg2);
1226 if (TREE_CODE (arg1) == INTEGER_CST)
1227 return int_const_binop (code, arg1, arg2, notrunc);
1229 if (TREE_CODE (arg1) == REAL_CST)
1231 REAL_VALUE_TYPE d1;
1232 REAL_VALUE_TYPE d2;
1233 REAL_VALUE_TYPE value;
1234 tree t;
1236 d1 = TREE_REAL_CST (arg1);
1237 d2 = TREE_REAL_CST (arg2);
1239 /* If either operand is a NaN, just return it. Otherwise, set up
1240 for floating-point trap; we return an overflow. */
1241 if (REAL_VALUE_ISNAN (d1))
1242 return arg1;
1243 else if (REAL_VALUE_ISNAN (d2))
1244 return arg2;
1246 REAL_ARITHMETIC (value, code, d1, d2);
1248 t = build_real (TREE_TYPE (arg1),
1249 real_value_truncate (TYPE_MODE (TREE_TYPE (arg1)),
1250 value));
1252 TREE_OVERFLOW (t)
1253 = (force_fit_type (t, 0)
1254 | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2));
1255 TREE_CONSTANT_OVERFLOW (t)
1256 = TREE_OVERFLOW (t)
1257 | TREE_CONSTANT_OVERFLOW (arg1)
1258 | TREE_CONSTANT_OVERFLOW (arg2);
1259 return t;
1261 if (TREE_CODE (arg1) == COMPLEX_CST)
1263 tree type = TREE_TYPE (arg1);
1264 tree r1 = TREE_REALPART (arg1);
1265 tree i1 = TREE_IMAGPART (arg1);
1266 tree r2 = TREE_REALPART (arg2);
1267 tree i2 = TREE_IMAGPART (arg2);
1268 tree t;
1270 switch (code)
1272 case PLUS_EXPR:
1273 t = build_complex (type,
1274 const_binop (PLUS_EXPR, r1, r2, notrunc),
1275 const_binop (PLUS_EXPR, i1, i2, notrunc));
1276 break;
1278 case MINUS_EXPR:
1279 t = build_complex (type,
1280 const_binop (MINUS_EXPR, r1, r2, notrunc),
1281 const_binop (MINUS_EXPR, i1, i2, notrunc));
1282 break;
1284 case MULT_EXPR:
1285 t = build_complex (type,
1286 const_binop (MINUS_EXPR,
1287 const_binop (MULT_EXPR,
1288 r1, r2, notrunc),
1289 const_binop (MULT_EXPR,
1290 i1, i2, notrunc),
1291 notrunc),
1292 const_binop (PLUS_EXPR,
1293 const_binop (MULT_EXPR,
1294 r1, i2, notrunc),
1295 const_binop (MULT_EXPR,
1296 i1, r2, notrunc),
1297 notrunc));
1298 break;
1300 case RDIV_EXPR:
1302 tree magsquared
1303 = const_binop (PLUS_EXPR,
1304 const_binop (MULT_EXPR, r2, r2, notrunc),
1305 const_binop (MULT_EXPR, i2, i2, notrunc),
1306 notrunc);
1308 t = build_complex (type,
1309 const_binop
1310 (INTEGRAL_TYPE_P (TREE_TYPE (r1))
1311 ? TRUNC_DIV_EXPR : RDIV_EXPR,
1312 const_binop (PLUS_EXPR,
1313 const_binop (MULT_EXPR, r1, r2,
1314 notrunc),
1315 const_binop (MULT_EXPR, i1, i2,
1316 notrunc),
1317 notrunc),
1318 magsquared, notrunc),
1319 const_binop
1320 (INTEGRAL_TYPE_P (TREE_TYPE (r1))
1321 ? TRUNC_DIV_EXPR : RDIV_EXPR,
1322 const_binop (MINUS_EXPR,
1323 const_binop (MULT_EXPR, i1, r2,
1324 notrunc),
1325 const_binop (MULT_EXPR, r1, i2,
1326 notrunc),
1327 notrunc),
1328 magsquared, notrunc));
1330 break;
1332 default:
1333 abort ();
1335 return t;
1337 return 0;
1340 /* These are the hash table functions for the hash table of INTEGER_CST
1341 nodes of a sizetype. */
1343 /* Return the hash code code X, an INTEGER_CST. */
1345 static hashval_t
1346 size_htab_hash (const void *x)
1348 tree t = (tree) x;
1350 return (TREE_INT_CST_HIGH (t) ^ TREE_INT_CST_LOW (t)
1351 ^ htab_hash_pointer (TREE_TYPE (t))
1352 ^ (TREE_OVERFLOW (t) << 20));
1355 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1356 is the same as that given by *Y, which is the same. */
1358 static int
1359 size_htab_eq (const void *x, const void *y)
1361 tree xt = (tree) x;
1362 tree yt = (tree) y;
1364 return (TREE_INT_CST_HIGH (xt) == TREE_INT_CST_HIGH (yt)
1365 && TREE_INT_CST_LOW (xt) == TREE_INT_CST_LOW (yt)
1366 && TREE_TYPE (xt) == TREE_TYPE (yt)
1367 && TREE_OVERFLOW (xt) == TREE_OVERFLOW (yt));
1370 /* Return an INTEGER_CST with value whose low-order HOST_BITS_PER_WIDE_INT
1371 bits are given by NUMBER and of the sizetype represented by KIND. */
1373 tree
1374 size_int_wide (HOST_WIDE_INT number, enum size_type_kind kind)
1376 return size_int_type_wide (number, sizetype_tab[(int) kind]);
1379 /* Likewise, but the desired type is specified explicitly. */
1381 static GTY (()) tree new_const;
1382 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
1383 htab_t size_htab;
1385 tree
1386 size_int_type_wide (HOST_WIDE_INT number, tree type)
1388 void **slot;
1390 if (size_htab == 0)
1392 size_htab = htab_create_ggc (1024, size_htab_hash, size_htab_eq, NULL);
1393 new_const = make_node (INTEGER_CST);
1396 /* Adjust NEW_CONST to be the constant we want. If it's already in the
1397 hash table, we return the value from the hash table. Otherwise, we
1398 place that in the hash table and make a new node for the next time. */
1399 TREE_INT_CST_LOW (new_const) = number;
1400 TREE_INT_CST_HIGH (new_const) = number < 0 ? -1 : 0;
1401 TREE_TYPE (new_const) = type;
1402 TREE_OVERFLOW (new_const) = TREE_CONSTANT_OVERFLOW (new_const)
1403 = force_fit_type (new_const, 0);
1405 slot = htab_find_slot (size_htab, new_const, INSERT);
1406 if (*slot == 0)
1408 tree t = new_const;
1410 *slot = new_const;
1411 new_const = make_node (INTEGER_CST);
1412 return t;
1414 else
1415 return (tree) *slot;
1418 /* Combine operands OP1 and OP2 with arithmetic operation CODE. CODE
1419 is a tree code. The type of the result is taken from the operands.
1420 Both must be the same type integer type and it must be a size type.
1421 If the operands are constant, so is the result. */
1423 tree
1424 size_binop (enum tree_code code, tree arg0, tree arg1)
1426 tree type = TREE_TYPE (arg0);
1428 if (TREE_CODE (type) != INTEGER_TYPE || ! TYPE_IS_SIZETYPE (type)
1429 || type != TREE_TYPE (arg1))
1430 abort ();
1432 /* Handle the special case of two integer constants faster. */
1433 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
1435 /* And some specific cases even faster than that. */
1436 if (code == PLUS_EXPR && integer_zerop (arg0))
1437 return arg1;
1438 else if ((code == MINUS_EXPR || code == PLUS_EXPR)
1439 && integer_zerop (arg1))
1440 return arg0;
1441 else if (code == MULT_EXPR && integer_onep (arg0))
1442 return arg1;
1444 /* Handle general case of two integer constants. */
1445 return int_const_binop (code, arg0, arg1, 0);
1448 if (arg0 == error_mark_node || arg1 == error_mark_node)
1449 return error_mark_node;
1451 return fold (build (code, type, arg0, arg1));
1454 /* Given two values, either both of sizetype or both of bitsizetype,
1455 compute the difference between the two values. Return the value
1456 in signed type corresponding to the type of the operands. */
1458 tree
1459 size_diffop (tree arg0, tree arg1)
1461 tree type = TREE_TYPE (arg0);
1462 tree ctype;
1464 if (TREE_CODE (type) != INTEGER_TYPE || ! TYPE_IS_SIZETYPE (type)
1465 || type != TREE_TYPE (arg1))
1466 abort ();
1468 /* If the type is already signed, just do the simple thing. */
1469 if (! TREE_UNSIGNED (type))
1470 return size_binop (MINUS_EXPR, arg0, arg1);
1472 ctype = (type == bitsizetype || type == ubitsizetype
1473 ? sbitsizetype : ssizetype);
1475 /* If either operand is not a constant, do the conversions to the signed
1476 type and subtract. The hardware will do the right thing with any
1477 overflow in the subtraction. */
1478 if (TREE_CODE (arg0) != INTEGER_CST || TREE_CODE (arg1) != INTEGER_CST)
1479 return size_binop (MINUS_EXPR, convert (ctype, arg0),
1480 convert (ctype, arg1));
1482 /* If ARG0 is larger than ARG1, subtract and return the result in CTYPE.
1483 Otherwise, subtract the other way, convert to CTYPE (we know that can't
1484 overflow) and negate (which can't either). Special-case a result
1485 of zero while we're here. */
1486 if (tree_int_cst_equal (arg0, arg1))
1487 return convert (ctype, integer_zero_node);
1488 else if (tree_int_cst_lt (arg1, arg0))
1489 return convert (ctype, size_binop (MINUS_EXPR, arg0, arg1));
1490 else
1491 return size_binop (MINUS_EXPR, convert (ctype, integer_zero_node),
1492 convert (ctype, size_binop (MINUS_EXPR, arg1, arg0)));
1496 /* Given T, a tree representing type conversion of ARG1, a constant,
1497 return a constant tree representing the result of conversion. */
1499 static tree
1500 fold_convert (tree t, tree arg1)
1502 tree type = TREE_TYPE (t);
1503 int overflow = 0;
1505 if (POINTER_TYPE_P (type) || INTEGRAL_TYPE_P (type))
1507 if (TREE_CODE (arg1) == INTEGER_CST)
1509 /* If we would build a constant wider than GCC supports,
1510 leave the conversion unfolded. */
1511 if (TYPE_PRECISION (type) > 2 * HOST_BITS_PER_WIDE_INT)
1512 return t;
1514 /* If we are trying to make a sizetype for a small integer, use
1515 size_int to pick up cached types to reduce duplicate nodes. */
1516 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type)
1517 && !TREE_CONSTANT_OVERFLOW (arg1)
1518 && compare_tree_int (arg1, 10000) < 0)
1519 return size_int_type_wide (TREE_INT_CST_LOW (arg1), type);
1521 /* Given an integer constant, make new constant with new type,
1522 appropriately sign-extended or truncated. */
1523 t = build_int_2 (TREE_INT_CST_LOW (arg1),
1524 TREE_INT_CST_HIGH (arg1));
1525 TREE_TYPE (t) = type;
1526 /* Indicate an overflow if (1) ARG1 already overflowed,
1527 or (2) force_fit_type indicates an overflow.
1528 Tell force_fit_type that an overflow has already occurred
1529 if ARG1 is a too-large unsigned value and T is signed.
1530 But don't indicate an overflow if converting a pointer. */
1531 TREE_OVERFLOW (t)
1532 = ((force_fit_type (t,
1533 (TREE_INT_CST_HIGH (arg1) < 0
1534 && (TREE_UNSIGNED (type)
1535 < TREE_UNSIGNED (TREE_TYPE (arg1)))))
1536 && ! POINTER_TYPE_P (TREE_TYPE (arg1)))
1537 || TREE_OVERFLOW (arg1));
1538 TREE_CONSTANT_OVERFLOW (t)
1539 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1541 else if (TREE_CODE (arg1) == REAL_CST)
1543 /* Don't initialize these, use assignments.
1544 Initialized local aggregates don't work on old compilers. */
1545 REAL_VALUE_TYPE x;
1546 REAL_VALUE_TYPE l;
1547 REAL_VALUE_TYPE u;
1548 tree type1 = TREE_TYPE (arg1);
1549 int no_upper_bound;
1551 x = TREE_REAL_CST (arg1);
1552 l = real_value_from_int_cst (type1, TYPE_MIN_VALUE (type));
1554 no_upper_bound = (TYPE_MAX_VALUE (type) == NULL);
1555 if (!no_upper_bound)
1556 u = real_value_from_int_cst (type1, TYPE_MAX_VALUE (type));
1558 /* See if X will be in range after truncation towards 0.
1559 To compensate for truncation, move the bounds away from 0,
1560 but reject if X exactly equals the adjusted bounds. */
1561 REAL_ARITHMETIC (l, MINUS_EXPR, l, dconst1);
1562 if (!no_upper_bound)
1563 REAL_ARITHMETIC (u, PLUS_EXPR, u, dconst1);
1564 /* If X is a NaN, use zero instead and show we have an overflow.
1565 Otherwise, range check. */
1566 if (REAL_VALUE_ISNAN (x))
1567 overflow = 1, x = dconst0;
1568 else if (! (REAL_VALUES_LESS (l, x)
1569 && !no_upper_bound
1570 && REAL_VALUES_LESS (x, u)))
1571 overflow = 1;
1574 HOST_WIDE_INT low, high;
1575 REAL_VALUE_TO_INT (&low, &high, x);
1576 t = build_int_2 (low, high);
1578 TREE_TYPE (t) = type;
1579 TREE_OVERFLOW (t)
1580 = TREE_OVERFLOW (arg1) | force_fit_type (t, overflow);
1581 TREE_CONSTANT_OVERFLOW (t)
1582 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1584 TREE_TYPE (t) = type;
1586 else if (TREE_CODE (type) == REAL_TYPE)
1588 if (TREE_CODE (arg1) == INTEGER_CST)
1589 return build_real_from_int_cst (type, arg1);
1590 if (TREE_CODE (arg1) == REAL_CST)
1592 if (REAL_VALUE_ISNAN (TREE_REAL_CST (arg1)))
1594 /* We make a copy of ARG1 so that we don't modify an
1595 existing constant tree. */
1596 t = copy_node (arg1);
1597 TREE_TYPE (t) = type;
1598 return t;
1601 t = build_real (type,
1602 real_value_truncate (TYPE_MODE (type),
1603 TREE_REAL_CST (arg1)));
1605 TREE_OVERFLOW (t)
1606 = TREE_OVERFLOW (arg1) | force_fit_type (t, 0);
1607 TREE_CONSTANT_OVERFLOW (t)
1608 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1609 return t;
1612 TREE_CONSTANT (t) = 1;
1613 return t;
1616 /* Return an expr equal to X but certainly not valid as an lvalue. */
1618 tree
1619 non_lvalue (tree x)
1621 tree result;
1623 /* These things are certainly not lvalues. */
1624 if (TREE_CODE (x) == NON_LVALUE_EXPR
1625 || TREE_CODE (x) == INTEGER_CST
1626 || TREE_CODE (x) == REAL_CST
1627 || TREE_CODE (x) == STRING_CST
1628 || TREE_CODE (x) == ADDR_EXPR)
1629 return x;
1631 result = build1 (NON_LVALUE_EXPR, TREE_TYPE (x), x);
1632 TREE_CONSTANT (result) = TREE_CONSTANT (x);
1633 return result;
1636 /* Nonzero means lvalues are limited to those valid in pedantic ANSI C.
1637 Zero means allow extended lvalues. */
1639 int pedantic_lvalues;
1641 /* When pedantic, return an expr equal to X but certainly not valid as a
1642 pedantic lvalue. Otherwise, return X. */
1644 tree
1645 pedantic_non_lvalue (tree x)
1647 if (pedantic_lvalues)
1648 return non_lvalue (x);
1649 else
1650 return x;
1653 /* Given a tree comparison code, return the code that is the logical inverse
1654 of the given code. It is not safe to do this for floating-point
1655 comparisons, except for NE_EXPR and EQ_EXPR. */
1657 static enum tree_code
1658 invert_tree_comparison (enum tree_code code)
1660 switch (code)
1662 case EQ_EXPR:
1663 return NE_EXPR;
1664 case NE_EXPR:
1665 return EQ_EXPR;
1666 case GT_EXPR:
1667 return LE_EXPR;
1668 case GE_EXPR:
1669 return LT_EXPR;
1670 case LT_EXPR:
1671 return GE_EXPR;
1672 case LE_EXPR:
1673 return GT_EXPR;
1674 default:
1675 abort ();
1679 /* Similar, but return the comparison that results if the operands are
1680 swapped. This is safe for floating-point. */
1682 static enum tree_code
1683 swap_tree_comparison (enum tree_code code)
1685 switch (code)
1687 case EQ_EXPR:
1688 case NE_EXPR:
1689 return code;
1690 case GT_EXPR:
1691 return LT_EXPR;
1692 case GE_EXPR:
1693 return LE_EXPR;
1694 case LT_EXPR:
1695 return GT_EXPR;
1696 case LE_EXPR:
1697 return GE_EXPR;
1698 default:
1699 abort ();
1704 /* Convert a comparison tree code from an enum tree_code representation
1705 into a compcode bit-based encoding. This function is the inverse of
1706 compcode_to_comparison. */
1708 static int
1709 comparison_to_compcode (enum tree_code code)
1711 switch (code)
1713 case LT_EXPR:
1714 return COMPCODE_LT;
1715 case EQ_EXPR:
1716 return COMPCODE_EQ;
1717 case LE_EXPR:
1718 return COMPCODE_LE;
1719 case GT_EXPR:
1720 return COMPCODE_GT;
1721 case NE_EXPR:
1722 return COMPCODE_NE;
1723 case GE_EXPR:
1724 return COMPCODE_GE;
1725 default:
1726 abort ();
1730 /* Convert a compcode bit-based encoding of a comparison operator back
1731 to GCC's enum tree_code representation. This function is the
1732 inverse of comparison_to_compcode. */
1734 static enum tree_code
1735 compcode_to_comparison (int code)
1737 switch (code)
1739 case COMPCODE_LT:
1740 return LT_EXPR;
1741 case COMPCODE_EQ:
1742 return EQ_EXPR;
1743 case COMPCODE_LE:
1744 return LE_EXPR;
1745 case COMPCODE_GT:
1746 return GT_EXPR;
1747 case COMPCODE_NE:
1748 return NE_EXPR;
1749 case COMPCODE_GE:
1750 return GE_EXPR;
1751 default:
1752 abort ();
1756 /* Return nonzero if CODE is a tree code that represents a truth value. */
1758 static int
1759 truth_value_p (enum tree_code code)
1761 return (TREE_CODE_CLASS (code) == '<'
1762 || code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
1763 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
1764 || code == TRUTH_XOR_EXPR || code == TRUTH_NOT_EXPR);
1767 /* Return nonzero if two operands are necessarily equal.
1768 If ONLY_CONST is nonzero, only return nonzero for constants.
1769 This function tests whether the operands are indistinguishable;
1770 it does not test whether they are equal using C's == operation.
1771 The distinction is important for IEEE floating point, because
1772 (1) -0.0 and 0.0 are distinguishable, but -0.0==0.0, and
1773 (2) two NaNs may be indistinguishable, but NaN!=NaN. */
1776 operand_equal_p (tree arg0, tree arg1, int only_const)
1778 /* If both types don't have the same signedness, then we can't consider
1779 them equal. We must check this before the STRIP_NOPS calls
1780 because they may change the signedness of the arguments. */
1781 if (TREE_UNSIGNED (TREE_TYPE (arg0)) != TREE_UNSIGNED (TREE_TYPE (arg1)))
1782 return 0;
1784 STRIP_NOPS (arg0);
1785 STRIP_NOPS (arg1);
1787 if (TREE_CODE (arg0) != TREE_CODE (arg1)
1788 /* This is needed for conversions and for COMPONENT_REF.
1789 Might as well play it safe and always test this. */
1790 || TREE_CODE (TREE_TYPE (arg0)) == ERROR_MARK
1791 || TREE_CODE (TREE_TYPE (arg1)) == ERROR_MARK
1792 || TYPE_MODE (TREE_TYPE (arg0)) != TYPE_MODE (TREE_TYPE (arg1)))
1793 return 0;
1795 /* If ARG0 and ARG1 are the same SAVE_EXPR, they are necessarily equal.
1796 We don't care about side effects in that case because the SAVE_EXPR
1797 takes care of that for us. In all other cases, two expressions are
1798 equal if they have no side effects. If we have two identical
1799 expressions with side effects that should be treated the same due
1800 to the only side effects being identical SAVE_EXPR's, that will
1801 be detected in the recursive calls below. */
1802 if (arg0 == arg1 && ! only_const
1803 && (TREE_CODE (arg0) == SAVE_EXPR
1804 || (! TREE_SIDE_EFFECTS (arg0) && ! TREE_SIDE_EFFECTS (arg1))))
1805 return 1;
1807 /* Next handle constant cases, those for which we can return 1 even
1808 if ONLY_CONST is set. */
1809 if (TREE_CONSTANT (arg0) && TREE_CONSTANT (arg1))
1810 switch (TREE_CODE (arg0))
1812 case INTEGER_CST:
1813 return (! TREE_CONSTANT_OVERFLOW (arg0)
1814 && ! TREE_CONSTANT_OVERFLOW (arg1)
1815 && tree_int_cst_equal (arg0, arg1));
1817 case REAL_CST:
1818 return (! TREE_CONSTANT_OVERFLOW (arg0)
1819 && ! TREE_CONSTANT_OVERFLOW (arg1)
1820 && REAL_VALUES_IDENTICAL (TREE_REAL_CST (arg0),
1821 TREE_REAL_CST (arg1)));
1823 case VECTOR_CST:
1825 tree v1, v2;
1827 if (TREE_CONSTANT_OVERFLOW (arg0)
1828 || TREE_CONSTANT_OVERFLOW (arg1))
1829 return 0;
1831 v1 = TREE_VECTOR_CST_ELTS (arg0);
1832 v2 = TREE_VECTOR_CST_ELTS (arg1);
1833 while (v1 && v2)
1835 if (!operand_equal_p (v1, v2, only_const))
1836 return 0;
1837 v1 = TREE_CHAIN (v1);
1838 v2 = TREE_CHAIN (v2);
1841 return 1;
1844 case COMPLEX_CST:
1845 return (operand_equal_p (TREE_REALPART (arg0), TREE_REALPART (arg1),
1846 only_const)
1847 && operand_equal_p (TREE_IMAGPART (arg0), TREE_IMAGPART (arg1),
1848 only_const));
1850 case STRING_CST:
1851 return (TREE_STRING_LENGTH (arg0) == TREE_STRING_LENGTH (arg1)
1852 && ! memcmp (TREE_STRING_POINTER (arg0),
1853 TREE_STRING_POINTER (arg1),
1854 TREE_STRING_LENGTH (arg0)));
1856 case ADDR_EXPR:
1857 return operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0),
1859 default:
1860 break;
1863 if (only_const)
1864 return 0;
1866 switch (TREE_CODE_CLASS (TREE_CODE (arg0)))
1868 case '1':
1869 /* Two conversions are equal only if signedness and modes match. */
1870 if ((TREE_CODE (arg0) == NOP_EXPR || TREE_CODE (arg0) == CONVERT_EXPR)
1871 && (TREE_UNSIGNED (TREE_TYPE (arg0))
1872 != TREE_UNSIGNED (TREE_TYPE (arg1))))
1873 return 0;
1875 return operand_equal_p (TREE_OPERAND (arg0, 0),
1876 TREE_OPERAND (arg1, 0), 0);
1878 case '<':
1879 case '2':
1880 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0)
1881 && operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1),
1883 return 1;
1885 /* For commutative ops, allow the other order. */
1886 return ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MULT_EXPR
1887 || TREE_CODE (arg0) == MIN_EXPR || TREE_CODE (arg0) == MAX_EXPR
1888 || TREE_CODE (arg0) == BIT_IOR_EXPR
1889 || TREE_CODE (arg0) == BIT_XOR_EXPR
1890 || TREE_CODE (arg0) == BIT_AND_EXPR
1891 || TREE_CODE (arg0) == NE_EXPR || TREE_CODE (arg0) == EQ_EXPR)
1892 && operand_equal_p (TREE_OPERAND (arg0, 0),
1893 TREE_OPERAND (arg1, 1), 0)
1894 && operand_equal_p (TREE_OPERAND (arg0, 1),
1895 TREE_OPERAND (arg1, 0), 0));
1897 case 'r':
1898 /* If either of the pointer (or reference) expressions we are
1899 dereferencing contain a side effect, these cannot be equal. */
1900 if (TREE_SIDE_EFFECTS (arg0)
1901 || TREE_SIDE_EFFECTS (arg1))
1902 return 0;
1904 switch (TREE_CODE (arg0))
1906 case INDIRECT_REF:
1907 return operand_equal_p (TREE_OPERAND (arg0, 0),
1908 TREE_OPERAND (arg1, 0), 0);
1910 case COMPONENT_REF:
1911 case ARRAY_REF:
1912 case ARRAY_RANGE_REF:
1913 return (operand_equal_p (TREE_OPERAND (arg0, 0),
1914 TREE_OPERAND (arg1, 0), 0)
1915 && operand_equal_p (TREE_OPERAND (arg0, 1),
1916 TREE_OPERAND (arg1, 1), 0));
1918 case BIT_FIELD_REF:
1919 return (operand_equal_p (TREE_OPERAND (arg0, 0),
1920 TREE_OPERAND (arg1, 0), 0)
1921 && operand_equal_p (TREE_OPERAND (arg0, 1),
1922 TREE_OPERAND (arg1, 1), 0)
1923 && operand_equal_p (TREE_OPERAND (arg0, 2),
1924 TREE_OPERAND (arg1, 2), 0));
1925 default:
1926 return 0;
1929 case 'e':
1930 switch (TREE_CODE (arg0))
1932 case ADDR_EXPR:
1933 case TRUTH_NOT_EXPR:
1934 return operand_equal_p (TREE_OPERAND (arg0, 0),
1935 TREE_OPERAND (arg1, 0), 0);
1937 case RTL_EXPR:
1938 return rtx_equal_p (RTL_EXPR_RTL (arg0), RTL_EXPR_RTL (arg1));
1940 case CALL_EXPR:
1941 /* If the CALL_EXPRs call different functions, then they
1942 clearly can not be equal. */
1943 if (! operand_equal_p (TREE_OPERAND (arg0, 0),
1944 TREE_OPERAND (arg1, 0), 0))
1945 return 0;
1947 /* Only consider const functions equivalent. */
1948 if (TREE_CODE (TREE_OPERAND (arg0, 0)) == ADDR_EXPR)
1950 tree fndecl = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
1951 if (! (flags_from_decl_or_type (fndecl) & ECF_CONST))
1952 return 0;
1954 else
1955 return 0;
1957 /* Now see if all the arguments are the same. operand_equal_p
1958 does not handle TREE_LIST, so we walk the operands here
1959 feeding them to operand_equal_p. */
1960 arg0 = TREE_OPERAND (arg0, 1);
1961 arg1 = TREE_OPERAND (arg1, 1);
1962 while (arg0 && arg1)
1964 if (! operand_equal_p (TREE_VALUE (arg0), TREE_VALUE (arg1), 0))
1965 return 0;
1967 arg0 = TREE_CHAIN (arg0);
1968 arg1 = TREE_CHAIN (arg1);
1971 /* If we get here and both argument lists are exhausted
1972 then the CALL_EXPRs are equal. */
1973 return ! (arg0 || arg1);
1975 default:
1976 return 0;
1979 case 'd':
1980 /* Consider __builtin_sqrt equal to sqrt. */
1981 return TREE_CODE (arg0) == FUNCTION_DECL
1982 && DECL_BUILT_IN (arg0) && DECL_BUILT_IN (arg1)
1983 && DECL_BUILT_IN_CLASS (arg0) == DECL_BUILT_IN_CLASS (arg1)
1984 && DECL_FUNCTION_CODE (arg0) == DECL_FUNCTION_CODE (arg1);
1986 default:
1987 return 0;
1991 /* Similar to operand_equal_p, but see if ARG0 might have been made by
1992 shorten_compare from ARG1 when ARG1 was being compared with OTHER.
1994 When in doubt, return 0. */
1996 static int
1997 operand_equal_for_comparison_p (tree arg0, tree arg1, tree other)
1999 int unsignedp1, unsignedpo;
2000 tree primarg0, primarg1, primother;
2001 unsigned int correct_width;
2003 if (operand_equal_p (arg0, arg1, 0))
2004 return 1;
2006 if (! INTEGRAL_TYPE_P (TREE_TYPE (arg0))
2007 || ! INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
2008 return 0;
2010 /* Discard any conversions that don't change the modes of ARG0 and ARG1
2011 and see if the inner values are the same. This removes any
2012 signedness comparison, which doesn't matter here. */
2013 primarg0 = arg0, primarg1 = arg1;
2014 STRIP_NOPS (primarg0);
2015 STRIP_NOPS (primarg1);
2016 if (operand_equal_p (primarg0, primarg1, 0))
2017 return 1;
2019 /* Duplicate what shorten_compare does to ARG1 and see if that gives the
2020 actual comparison operand, ARG0.
2022 First throw away any conversions to wider types
2023 already present in the operands. */
2025 primarg1 = get_narrower (arg1, &unsignedp1);
2026 primother = get_narrower (other, &unsignedpo);
2028 correct_width = TYPE_PRECISION (TREE_TYPE (arg1));
2029 if (unsignedp1 == unsignedpo
2030 && TYPE_PRECISION (TREE_TYPE (primarg1)) < correct_width
2031 && TYPE_PRECISION (TREE_TYPE (primother)) < correct_width)
2033 tree type = TREE_TYPE (arg0);
2035 /* Make sure shorter operand is extended the right way
2036 to match the longer operand. */
2037 primarg1 = convert ((*lang_hooks.types.signed_or_unsigned_type)
2038 (unsignedp1, TREE_TYPE (primarg1)), primarg1);
2040 if (operand_equal_p (arg0, convert (type, primarg1), 0))
2041 return 1;
2044 return 0;
2047 /* See if ARG is an expression that is either a comparison or is performing
2048 arithmetic on comparisons. The comparisons must only be comparing
2049 two different values, which will be stored in *CVAL1 and *CVAL2; if
2050 they are nonzero it means that some operands have already been found.
2051 No variables may be used anywhere else in the expression except in the
2052 comparisons. If SAVE_P is true it means we removed a SAVE_EXPR around
2053 the expression and save_expr needs to be called with CVAL1 and CVAL2.
2055 If this is true, return 1. Otherwise, return zero. */
2057 static int
2058 twoval_comparison_p (tree arg, tree *cval1, tree *cval2, int *save_p)
2060 enum tree_code code = TREE_CODE (arg);
2061 char class = TREE_CODE_CLASS (code);
2063 /* We can handle some of the 'e' cases here. */
2064 if (class == 'e' && code == TRUTH_NOT_EXPR)
2065 class = '1';
2066 else if (class == 'e'
2067 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR
2068 || code == COMPOUND_EXPR))
2069 class = '2';
2071 else if (class == 'e' && code == SAVE_EXPR && SAVE_EXPR_RTL (arg) == 0
2072 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
2074 /* If we've already found a CVAL1 or CVAL2, this expression is
2075 two complex to handle. */
2076 if (*cval1 || *cval2)
2077 return 0;
2079 class = '1';
2080 *save_p = 1;
2083 switch (class)
2085 case '1':
2086 return twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p);
2088 case '2':
2089 return (twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p)
2090 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2091 cval1, cval2, save_p));
2093 case 'c':
2094 return 1;
2096 case 'e':
2097 if (code == COND_EXPR)
2098 return (twoval_comparison_p (TREE_OPERAND (arg, 0),
2099 cval1, cval2, save_p)
2100 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2101 cval1, cval2, save_p)
2102 && twoval_comparison_p (TREE_OPERAND (arg, 2),
2103 cval1, cval2, save_p));
2104 return 0;
2106 case '<':
2107 /* First see if we can handle the first operand, then the second. For
2108 the second operand, we know *CVAL1 can't be zero. It must be that
2109 one side of the comparison is each of the values; test for the
2110 case where this isn't true by failing if the two operands
2111 are the same. */
2113 if (operand_equal_p (TREE_OPERAND (arg, 0),
2114 TREE_OPERAND (arg, 1), 0))
2115 return 0;
2117 if (*cval1 == 0)
2118 *cval1 = TREE_OPERAND (arg, 0);
2119 else if (operand_equal_p (*cval1, TREE_OPERAND (arg, 0), 0))
2121 else if (*cval2 == 0)
2122 *cval2 = TREE_OPERAND (arg, 0);
2123 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 0), 0))
2125 else
2126 return 0;
2128 if (operand_equal_p (*cval1, TREE_OPERAND (arg, 1), 0))
2130 else if (*cval2 == 0)
2131 *cval2 = TREE_OPERAND (arg, 1);
2132 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 1), 0))
2134 else
2135 return 0;
2137 return 1;
2139 default:
2140 return 0;
2144 /* ARG is a tree that is known to contain just arithmetic operations and
2145 comparisons. Evaluate the operations in the tree substituting NEW0 for
2146 any occurrence of OLD0 as an operand of a comparison and likewise for
2147 NEW1 and OLD1. */
2149 static tree
2150 eval_subst (tree arg, tree old0, tree new0, tree old1, tree new1)
2152 tree type = TREE_TYPE (arg);
2153 enum tree_code code = TREE_CODE (arg);
2154 char class = TREE_CODE_CLASS (code);
2156 /* We can handle some of the 'e' cases here. */
2157 if (class == 'e' && code == TRUTH_NOT_EXPR)
2158 class = '1';
2159 else if (class == 'e'
2160 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2161 class = '2';
2163 switch (class)
2165 case '1':
2166 return fold (build1 (code, type,
2167 eval_subst (TREE_OPERAND (arg, 0),
2168 old0, new0, old1, new1)));
2170 case '2':
2171 return fold (build (code, type,
2172 eval_subst (TREE_OPERAND (arg, 0),
2173 old0, new0, old1, new1),
2174 eval_subst (TREE_OPERAND (arg, 1),
2175 old0, new0, old1, new1)));
2177 case 'e':
2178 switch (code)
2180 case SAVE_EXPR:
2181 return eval_subst (TREE_OPERAND (arg, 0), old0, new0, old1, new1);
2183 case COMPOUND_EXPR:
2184 return eval_subst (TREE_OPERAND (arg, 1), old0, new0, old1, new1);
2186 case COND_EXPR:
2187 return fold (build (code, type,
2188 eval_subst (TREE_OPERAND (arg, 0),
2189 old0, new0, old1, new1),
2190 eval_subst (TREE_OPERAND (arg, 1),
2191 old0, new0, old1, new1),
2192 eval_subst (TREE_OPERAND (arg, 2),
2193 old0, new0, old1, new1)));
2194 default:
2195 break;
2197 /* fall through - ??? */
2199 case '<':
2201 tree arg0 = TREE_OPERAND (arg, 0);
2202 tree arg1 = TREE_OPERAND (arg, 1);
2204 /* We need to check both for exact equality and tree equality. The
2205 former will be true if the operand has a side-effect. In that
2206 case, we know the operand occurred exactly once. */
2208 if (arg0 == old0 || operand_equal_p (arg0, old0, 0))
2209 arg0 = new0;
2210 else if (arg0 == old1 || operand_equal_p (arg0, old1, 0))
2211 arg0 = new1;
2213 if (arg1 == old0 || operand_equal_p (arg1, old0, 0))
2214 arg1 = new0;
2215 else if (arg1 == old1 || operand_equal_p (arg1, old1, 0))
2216 arg1 = new1;
2218 return fold (build (code, type, arg0, arg1));
2221 default:
2222 return arg;
2226 /* Return a tree for the case when the result of an expression is RESULT
2227 converted to TYPE and OMITTED was previously an operand of the expression
2228 but is now not needed (e.g., we folded OMITTED * 0).
2230 If OMITTED has side effects, we must evaluate it. Otherwise, just do
2231 the conversion of RESULT to TYPE. */
2233 tree
2234 omit_one_operand (tree type, tree result, tree omitted)
2236 tree t = convert (type, result);
2238 if (TREE_SIDE_EFFECTS (omitted))
2239 return build (COMPOUND_EXPR, type, omitted, t);
2241 return non_lvalue (t);
2244 /* Similar, but call pedantic_non_lvalue instead of non_lvalue. */
2246 static tree
2247 pedantic_omit_one_operand (tree type, tree result, tree omitted)
2249 tree t = convert (type, result);
2251 if (TREE_SIDE_EFFECTS (omitted))
2252 return build (COMPOUND_EXPR, type, omitted, t);
2254 return pedantic_non_lvalue (t);
2257 /* Return a simplified tree node for the truth-negation of ARG. This
2258 never alters ARG itself. We assume that ARG is an operation that
2259 returns a truth value (0 or 1). */
2261 tree
2262 invert_truthvalue (tree arg)
2264 tree type = TREE_TYPE (arg);
2265 enum tree_code code = TREE_CODE (arg);
2267 if (code == ERROR_MARK)
2268 return arg;
2270 /* If this is a comparison, we can simply invert it, except for
2271 floating-point non-equality comparisons, in which case we just
2272 enclose a TRUTH_NOT_EXPR around what we have. */
2274 if (TREE_CODE_CLASS (code) == '<')
2276 if (FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
2277 && !flag_unsafe_math_optimizations
2278 && code != NE_EXPR
2279 && code != EQ_EXPR)
2280 return build1 (TRUTH_NOT_EXPR, type, arg);
2281 else
2282 return build (invert_tree_comparison (code), type,
2283 TREE_OPERAND (arg, 0), TREE_OPERAND (arg, 1));
2286 switch (code)
2288 case INTEGER_CST:
2289 return convert (type, build_int_2 (integer_zerop (arg), 0));
2291 case TRUTH_AND_EXPR:
2292 return build (TRUTH_OR_EXPR, type,
2293 invert_truthvalue (TREE_OPERAND (arg, 0)),
2294 invert_truthvalue (TREE_OPERAND (arg, 1)));
2296 case TRUTH_OR_EXPR:
2297 return build (TRUTH_AND_EXPR, type,
2298 invert_truthvalue (TREE_OPERAND (arg, 0)),
2299 invert_truthvalue (TREE_OPERAND (arg, 1)));
2301 case TRUTH_XOR_EXPR:
2302 /* Here we can invert either operand. We invert the first operand
2303 unless the second operand is a TRUTH_NOT_EXPR in which case our
2304 result is the XOR of the first operand with the inside of the
2305 negation of the second operand. */
2307 if (TREE_CODE (TREE_OPERAND (arg, 1)) == TRUTH_NOT_EXPR)
2308 return build (TRUTH_XOR_EXPR, type, TREE_OPERAND (arg, 0),
2309 TREE_OPERAND (TREE_OPERAND (arg, 1), 0));
2310 else
2311 return build (TRUTH_XOR_EXPR, type,
2312 invert_truthvalue (TREE_OPERAND (arg, 0)),
2313 TREE_OPERAND (arg, 1));
2315 case TRUTH_ANDIF_EXPR:
2316 return build (TRUTH_ORIF_EXPR, type,
2317 invert_truthvalue (TREE_OPERAND (arg, 0)),
2318 invert_truthvalue (TREE_OPERAND (arg, 1)));
2320 case TRUTH_ORIF_EXPR:
2321 return build (TRUTH_ANDIF_EXPR, type,
2322 invert_truthvalue (TREE_OPERAND (arg, 0)),
2323 invert_truthvalue (TREE_OPERAND (arg, 1)));
2325 case TRUTH_NOT_EXPR:
2326 return TREE_OPERAND (arg, 0);
2328 case COND_EXPR:
2329 return build (COND_EXPR, type, TREE_OPERAND (arg, 0),
2330 invert_truthvalue (TREE_OPERAND (arg, 1)),
2331 invert_truthvalue (TREE_OPERAND (arg, 2)));
2333 case COMPOUND_EXPR:
2334 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg, 0),
2335 invert_truthvalue (TREE_OPERAND (arg, 1)));
2337 case WITH_RECORD_EXPR:
2338 return build (WITH_RECORD_EXPR, type,
2339 invert_truthvalue (TREE_OPERAND (arg, 0)),
2340 TREE_OPERAND (arg, 1));
2342 case NON_LVALUE_EXPR:
2343 return invert_truthvalue (TREE_OPERAND (arg, 0));
2345 case NOP_EXPR:
2346 case CONVERT_EXPR:
2347 case FLOAT_EXPR:
2348 return build1 (TREE_CODE (arg), type,
2349 invert_truthvalue (TREE_OPERAND (arg, 0)));
2351 case BIT_AND_EXPR:
2352 if (!integer_onep (TREE_OPERAND (arg, 1)))
2353 break;
2354 return build (EQ_EXPR, type, arg, convert (type, integer_zero_node));
2356 case SAVE_EXPR:
2357 return build1 (TRUTH_NOT_EXPR, type, arg);
2359 case CLEANUP_POINT_EXPR:
2360 return build1 (CLEANUP_POINT_EXPR, type,
2361 invert_truthvalue (TREE_OPERAND (arg, 0)));
2363 default:
2364 break;
2366 if (TREE_CODE (TREE_TYPE (arg)) != BOOLEAN_TYPE)
2367 abort ();
2368 return build1 (TRUTH_NOT_EXPR, type, arg);
2371 /* Given a bit-wise operation CODE applied to ARG0 and ARG1, see if both
2372 operands are another bit-wise operation with a common input. If so,
2373 distribute the bit operations to save an operation and possibly two if
2374 constants are involved. For example, convert
2375 (A | B) & (A | C) into A | (B & C)
2376 Further simplification will occur if B and C are constants.
2378 If this optimization cannot be done, 0 will be returned. */
2380 static tree
2381 distribute_bit_expr (enum tree_code code, tree type, tree arg0, tree arg1)
2383 tree common;
2384 tree left, right;
2386 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2387 || TREE_CODE (arg0) == code
2388 || (TREE_CODE (arg0) != BIT_AND_EXPR
2389 && TREE_CODE (arg0) != BIT_IOR_EXPR))
2390 return 0;
2392 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0))
2394 common = TREE_OPERAND (arg0, 0);
2395 left = TREE_OPERAND (arg0, 1);
2396 right = TREE_OPERAND (arg1, 1);
2398 else if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 1), 0))
2400 common = TREE_OPERAND (arg0, 0);
2401 left = TREE_OPERAND (arg0, 1);
2402 right = TREE_OPERAND (arg1, 0);
2404 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 0), 0))
2406 common = TREE_OPERAND (arg0, 1);
2407 left = TREE_OPERAND (arg0, 0);
2408 right = TREE_OPERAND (arg1, 1);
2410 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1), 0))
2412 common = TREE_OPERAND (arg0, 1);
2413 left = TREE_OPERAND (arg0, 0);
2414 right = TREE_OPERAND (arg1, 0);
2416 else
2417 return 0;
2419 return fold (build (TREE_CODE (arg0), type, common,
2420 fold (build (code, type, left, right))));
2423 /* Return a BIT_FIELD_REF of type TYPE to refer to BITSIZE bits of INNER
2424 starting at BITPOS. The field is unsigned if UNSIGNEDP is nonzero. */
2426 static tree
2427 make_bit_field_ref (tree inner, tree type, int bitsize, int bitpos,
2428 int unsignedp)
2430 tree result = build (BIT_FIELD_REF, type, inner,
2431 size_int (bitsize), bitsize_int (bitpos));
2433 TREE_UNSIGNED (result) = unsignedp;
2435 return result;
2438 /* Optimize a bit-field compare.
2440 There are two cases: First is a compare against a constant and the
2441 second is a comparison of two items where the fields are at the same
2442 bit position relative to the start of a chunk (byte, halfword, word)
2443 large enough to contain it. In these cases we can avoid the shift
2444 implicit in bitfield extractions.
2446 For constants, we emit a compare of the shifted constant with the
2447 BIT_AND_EXPR of a mask and a byte, halfword, or word of the operand being
2448 compared. For two fields at the same position, we do the ANDs with the
2449 similar mask and compare the result of the ANDs.
2451 CODE is the comparison code, known to be either NE_EXPR or EQ_EXPR.
2452 COMPARE_TYPE is the type of the comparison, and LHS and RHS
2453 are the left and right operands of the comparison, respectively.
2455 If the optimization described above can be done, we return the resulting
2456 tree. Otherwise we return zero. */
2458 static tree
2459 optimize_bit_field_compare (enum tree_code code, tree compare_type,
2460 tree lhs, tree rhs)
2462 HOST_WIDE_INT lbitpos, lbitsize, rbitpos, rbitsize, nbitpos, nbitsize;
2463 tree type = TREE_TYPE (lhs);
2464 tree signed_type, unsigned_type;
2465 int const_p = TREE_CODE (rhs) == INTEGER_CST;
2466 enum machine_mode lmode, rmode, nmode;
2467 int lunsignedp, runsignedp;
2468 int lvolatilep = 0, rvolatilep = 0;
2469 tree linner, rinner = NULL_TREE;
2470 tree mask;
2471 tree offset;
2473 /* Get all the information about the extractions being done. If the bit size
2474 if the same as the size of the underlying object, we aren't doing an
2475 extraction at all and so can do nothing. We also don't want to
2476 do anything if the inner expression is a PLACEHOLDER_EXPR since we
2477 then will no longer be able to replace it. */
2478 linner = get_inner_reference (lhs, &lbitsize, &lbitpos, &offset, &lmode,
2479 &lunsignedp, &lvolatilep);
2480 if (linner == lhs || lbitsize == GET_MODE_BITSIZE (lmode) || lbitsize < 0
2481 || offset != 0 || TREE_CODE (linner) == PLACEHOLDER_EXPR)
2482 return 0;
2484 if (!const_p)
2486 /* If this is not a constant, we can only do something if bit positions,
2487 sizes, and signedness are the same. */
2488 rinner = get_inner_reference (rhs, &rbitsize, &rbitpos, &offset, &rmode,
2489 &runsignedp, &rvolatilep);
2491 if (rinner == rhs || lbitpos != rbitpos || lbitsize != rbitsize
2492 || lunsignedp != runsignedp || offset != 0
2493 || TREE_CODE (rinner) == PLACEHOLDER_EXPR)
2494 return 0;
2497 /* See if we can find a mode to refer to this field. We should be able to,
2498 but fail if we can't. */
2499 nmode = get_best_mode (lbitsize, lbitpos,
2500 const_p ? TYPE_ALIGN (TREE_TYPE (linner))
2501 : MIN (TYPE_ALIGN (TREE_TYPE (linner)),
2502 TYPE_ALIGN (TREE_TYPE (rinner))),
2503 word_mode, lvolatilep || rvolatilep);
2504 if (nmode == VOIDmode)
2505 return 0;
2507 /* Set signed and unsigned types of the precision of this mode for the
2508 shifts below. */
2509 signed_type = (*lang_hooks.types.type_for_mode) (nmode, 0);
2510 unsigned_type = (*lang_hooks.types.type_for_mode) (nmode, 1);
2512 /* Compute the bit position and size for the new reference and our offset
2513 within it. If the new reference is the same size as the original, we
2514 won't optimize anything, so return zero. */
2515 nbitsize = GET_MODE_BITSIZE (nmode);
2516 nbitpos = lbitpos & ~ (nbitsize - 1);
2517 lbitpos -= nbitpos;
2518 if (nbitsize == lbitsize)
2519 return 0;
2521 if (BYTES_BIG_ENDIAN)
2522 lbitpos = nbitsize - lbitsize - lbitpos;
2524 /* Make the mask to be used against the extracted field. */
2525 mask = build_int_2 (~0, ~0);
2526 TREE_TYPE (mask) = unsigned_type;
2527 force_fit_type (mask, 0);
2528 mask = convert (unsigned_type, mask);
2529 mask = const_binop (LSHIFT_EXPR, mask, size_int (nbitsize - lbitsize), 0);
2530 mask = const_binop (RSHIFT_EXPR, mask,
2531 size_int (nbitsize - lbitsize - lbitpos), 0);
2533 if (! const_p)
2534 /* If not comparing with constant, just rework the comparison
2535 and return. */
2536 return build (code, compare_type,
2537 build (BIT_AND_EXPR, unsigned_type,
2538 make_bit_field_ref (linner, unsigned_type,
2539 nbitsize, nbitpos, 1),
2540 mask),
2541 build (BIT_AND_EXPR, unsigned_type,
2542 make_bit_field_ref (rinner, unsigned_type,
2543 nbitsize, nbitpos, 1),
2544 mask));
2546 /* Otherwise, we are handling the constant case. See if the constant is too
2547 big for the field. Warn and return a tree of for 0 (false) if so. We do
2548 this not only for its own sake, but to avoid having to test for this
2549 error case below. If we didn't, we might generate wrong code.
2551 For unsigned fields, the constant shifted right by the field length should
2552 be all zero. For signed fields, the high-order bits should agree with
2553 the sign bit. */
2555 if (lunsignedp)
2557 if (! integer_zerop (const_binop (RSHIFT_EXPR,
2558 convert (unsigned_type, rhs),
2559 size_int (lbitsize), 0)))
2561 warning ("comparison is always %d due to width of bit-field",
2562 code == NE_EXPR);
2563 return convert (compare_type,
2564 (code == NE_EXPR
2565 ? integer_one_node : integer_zero_node));
2568 else
2570 tree tem = const_binop (RSHIFT_EXPR, convert (signed_type, rhs),
2571 size_int (lbitsize - 1), 0);
2572 if (! integer_zerop (tem) && ! integer_all_onesp (tem))
2574 warning ("comparison is always %d due to width of bit-field",
2575 code == NE_EXPR);
2576 return convert (compare_type,
2577 (code == NE_EXPR
2578 ? integer_one_node : integer_zero_node));
2582 /* Single-bit compares should always be against zero. */
2583 if (lbitsize == 1 && ! integer_zerop (rhs))
2585 code = code == EQ_EXPR ? NE_EXPR : EQ_EXPR;
2586 rhs = convert (type, integer_zero_node);
2589 /* Make a new bitfield reference, shift the constant over the
2590 appropriate number of bits and mask it with the computed mask
2591 (in case this was a signed field). If we changed it, make a new one. */
2592 lhs = make_bit_field_ref (linner, unsigned_type, nbitsize, nbitpos, 1);
2593 if (lvolatilep)
2595 TREE_SIDE_EFFECTS (lhs) = 1;
2596 TREE_THIS_VOLATILE (lhs) = 1;
2599 rhs = fold (const_binop (BIT_AND_EXPR,
2600 const_binop (LSHIFT_EXPR,
2601 convert (unsigned_type, rhs),
2602 size_int (lbitpos), 0),
2603 mask, 0));
2605 return build (code, compare_type,
2606 build (BIT_AND_EXPR, unsigned_type, lhs, mask),
2607 rhs);
2610 /* Subroutine for fold_truthop: decode a field reference.
2612 If EXP is a comparison reference, we return the innermost reference.
2614 *PBITSIZE is set to the number of bits in the reference, *PBITPOS is
2615 set to the starting bit number.
2617 If the innermost field can be completely contained in a mode-sized
2618 unit, *PMODE is set to that mode. Otherwise, it is set to VOIDmode.
2620 *PVOLATILEP is set to 1 if the any expression encountered is volatile;
2621 otherwise it is not changed.
2623 *PUNSIGNEDP is set to the signedness of the field.
2625 *PMASK is set to the mask used. This is either contained in a
2626 BIT_AND_EXPR or derived from the width of the field.
2628 *PAND_MASK is set to the mask found in a BIT_AND_EXPR, if any.
2630 Return 0 if this is not a component reference or is one that we can't
2631 do anything with. */
2633 static tree
2634 decode_field_reference (tree exp, HOST_WIDE_INT *pbitsize,
2635 HOST_WIDE_INT *pbitpos, enum machine_mode *pmode,
2636 int *punsignedp, int *pvolatilep,
2637 tree *pmask, tree *pand_mask)
2639 tree outer_type = 0;
2640 tree and_mask = 0;
2641 tree mask, inner, offset;
2642 tree unsigned_type;
2643 unsigned int precision;
2645 /* All the optimizations using this function assume integer fields.
2646 There are problems with FP fields since the type_for_size call
2647 below can fail for, e.g., XFmode. */
2648 if (! INTEGRAL_TYPE_P (TREE_TYPE (exp)))
2649 return 0;
2651 /* We are interested in the bare arrangement of bits, so strip everything
2652 that doesn't affect the machine mode. However, record the type of the
2653 outermost expression if it may matter below. */
2654 if (TREE_CODE (exp) == NOP_EXPR
2655 || TREE_CODE (exp) == CONVERT_EXPR
2656 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2657 outer_type = TREE_TYPE (exp);
2658 STRIP_NOPS (exp);
2660 if (TREE_CODE (exp) == BIT_AND_EXPR)
2662 and_mask = TREE_OPERAND (exp, 1);
2663 exp = TREE_OPERAND (exp, 0);
2664 STRIP_NOPS (exp); STRIP_NOPS (and_mask);
2665 if (TREE_CODE (and_mask) != INTEGER_CST)
2666 return 0;
2669 inner = get_inner_reference (exp, pbitsize, pbitpos, &offset, pmode,
2670 punsignedp, pvolatilep);
2671 if ((inner == exp && and_mask == 0)
2672 || *pbitsize < 0 || offset != 0
2673 || TREE_CODE (inner) == PLACEHOLDER_EXPR)
2674 return 0;
2676 /* If the number of bits in the reference is the same as the bitsize of
2677 the outer type, then the outer type gives the signedness. Otherwise
2678 (in case of a small bitfield) the signedness is unchanged. */
2679 if (outer_type && *pbitsize == tree_low_cst (TYPE_SIZE (outer_type), 1))
2680 *punsignedp = TREE_UNSIGNED (outer_type);
2682 /* Compute the mask to access the bitfield. */
2683 unsigned_type = (*lang_hooks.types.type_for_size) (*pbitsize, 1);
2684 precision = TYPE_PRECISION (unsigned_type);
2686 mask = build_int_2 (~0, ~0);
2687 TREE_TYPE (mask) = unsigned_type;
2688 force_fit_type (mask, 0);
2689 mask = const_binop (LSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
2690 mask = const_binop (RSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
2692 /* Merge it with the mask we found in the BIT_AND_EXPR, if any. */
2693 if (and_mask != 0)
2694 mask = fold (build (BIT_AND_EXPR, unsigned_type,
2695 convert (unsigned_type, and_mask), mask));
2697 *pmask = mask;
2698 *pand_mask = and_mask;
2699 return inner;
2702 /* Return nonzero if MASK represents a mask of SIZE ones in the low-order
2703 bit positions. */
2705 static int
2706 all_ones_mask_p (tree mask, int size)
2708 tree type = TREE_TYPE (mask);
2709 unsigned int precision = TYPE_PRECISION (type);
2710 tree tmask;
2712 tmask = build_int_2 (~0, ~0);
2713 TREE_TYPE (tmask) = (*lang_hooks.types.signed_type) (type);
2714 force_fit_type (tmask, 0);
2715 return
2716 tree_int_cst_equal (mask,
2717 const_binop (RSHIFT_EXPR,
2718 const_binop (LSHIFT_EXPR, tmask,
2719 size_int (precision - size),
2721 size_int (precision - size), 0));
2724 /* Subroutine for fold: determine if VAL is the INTEGER_CONST that
2725 represents the sign bit of EXP's type. If EXP represents a sign
2726 or zero extension, also test VAL against the unextended type.
2727 The return value is the (sub)expression whose sign bit is VAL,
2728 or NULL_TREE otherwise. */
2730 static tree
2731 sign_bit_p (tree exp, tree val)
2733 unsigned HOST_WIDE_INT mask_lo, lo;
2734 HOST_WIDE_INT mask_hi, hi;
2735 int width;
2736 tree t;
2738 /* Tree EXP must have an integral type. */
2739 t = TREE_TYPE (exp);
2740 if (! INTEGRAL_TYPE_P (t))
2741 return NULL_TREE;
2743 /* Tree VAL must be an integer constant. */
2744 if (TREE_CODE (val) != INTEGER_CST
2745 || TREE_CONSTANT_OVERFLOW (val))
2746 return NULL_TREE;
2748 width = TYPE_PRECISION (t);
2749 if (width > HOST_BITS_PER_WIDE_INT)
2751 hi = (unsigned HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT - 1);
2752 lo = 0;
2754 mask_hi = ((unsigned HOST_WIDE_INT) -1
2755 >> (2 * HOST_BITS_PER_WIDE_INT - width));
2756 mask_lo = -1;
2758 else
2760 hi = 0;
2761 lo = (unsigned HOST_WIDE_INT) 1 << (width - 1);
2763 mask_hi = 0;
2764 mask_lo = ((unsigned HOST_WIDE_INT) -1
2765 >> (HOST_BITS_PER_WIDE_INT - width));
2768 /* We mask off those bits beyond TREE_TYPE (exp) so that we can
2769 treat VAL as if it were unsigned. */
2770 if ((TREE_INT_CST_HIGH (val) & mask_hi) == hi
2771 && (TREE_INT_CST_LOW (val) & mask_lo) == lo)
2772 return exp;
2774 /* Handle extension from a narrower type. */
2775 if (TREE_CODE (exp) == NOP_EXPR
2776 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))) < width)
2777 return sign_bit_p (TREE_OPERAND (exp, 0), val);
2779 return NULL_TREE;
2782 /* Subroutine for fold_truthop: determine if an operand is simple enough
2783 to be evaluated unconditionally. */
2785 static int
2786 simple_operand_p (tree exp)
2788 /* Strip any conversions that don't change the machine mode. */
2789 while ((TREE_CODE (exp) == NOP_EXPR
2790 || TREE_CODE (exp) == CONVERT_EXPR)
2791 && (TYPE_MODE (TREE_TYPE (exp))
2792 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)))))
2793 exp = TREE_OPERAND (exp, 0);
2795 return (TREE_CODE_CLASS (TREE_CODE (exp)) == 'c'
2796 || (DECL_P (exp)
2797 && ! TREE_ADDRESSABLE (exp)
2798 && ! TREE_THIS_VOLATILE (exp)
2799 && ! DECL_NONLOCAL (exp)
2800 /* Don't regard global variables as simple. They may be
2801 allocated in ways unknown to the compiler (shared memory,
2802 #pragma weak, etc). */
2803 && ! TREE_PUBLIC (exp)
2804 && ! DECL_EXTERNAL (exp)
2805 /* Loading a static variable is unduly expensive, but global
2806 registers aren't expensive. */
2807 && (! TREE_STATIC (exp) || DECL_REGISTER (exp))));
2810 /* The following functions are subroutines to fold_range_test and allow it to
2811 try to change a logical combination of comparisons into a range test.
2813 For example, both
2814 X == 2 || X == 3 || X == 4 || X == 5
2816 X >= 2 && X <= 5
2817 are converted to
2818 (unsigned) (X - 2) <= 3
2820 We describe each set of comparisons as being either inside or outside
2821 a range, using a variable named like IN_P, and then describe the
2822 range with a lower and upper bound. If one of the bounds is omitted,
2823 it represents either the highest or lowest value of the type.
2825 In the comments below, we represent a range by two numbers in brackets
2826 preceded by a "+" to designate being inside that range, or a "-" to
2827 designate being outside that range, so the condition can be inverted by
2828 flipping the prefix. An omitted bound is represented by a "-". For
2829 example, "- [-, 10]" means being outside the range starting at the lowest
2830 possible value and ending at 10, in other words, being greater than 10.
2831 The range "+ [-, -]" is always true and hence the range "- [-, -]" is
2832 always false.
2834 We set up things so that the missing bounds are handled in a consistent
2835 manner so neither a missing bound nor "true" and "false" need to be
2836 handled using a special case. */
2838 /* Return the result of applying CODE to ARG0 and ARG1, but handle the case
2839 of ARG0 and/or ARG1 being omitted, meaning an unlimited range. UPPER0_P
2840 and UPPER1_P are nonzero if the respective argument is an upper bound
2841 and zero for a lower. TYPE, if nonzero, is the type of the result; it
2842 must be specified for a comparison. ARG1 will be converted to ARG0's
2843 type if both are specified. */
2845 static tree
2846 range_binop (enum tree_code code, tree type, tree arg0, int upper0_p,
2847 tree arg1, int upper1_p)
2849 tree tem;
2850 int result;
2851 int sgn0, sgn1;
2853 /* If neither arg represents infinity, do the normal operation.
2854 Else, if not a comparison, return infinity. Else handle the special
2855 comparison rules. Note that most of the cases below won't occur, but
2856 are handled for consistency. */
2858 if (arg0 != 0 && arg1 != 0)
2860 tem = fold (build (code, type != 0 ? type : TREE_TYPE (arg0),
2861 arg0, convert (TREE_TYPE (arg0), arg1)));
2862 STRIP_NOPS (tem);
2863 return TREE_CODE (tem) == INTEGER_CST ? tem : 0;
2866 if (TREE_CODE_CLASS (code) != '<')
2867 return 0;
2869 /* Set SGN[01] to -1 if ARG[01] is a lower bound, 1 for upper, and 0
2870 for neither. In real maths, we cannot assume open ended ranges are
2871 the same. But, this is computer arithmetic, where numbers are finite.
2872 We can therefore make the transformation of any unbounded range with
2873 the value Z, Z being greater than any representable number. This permits
2874 us to treat unbounded ranges as equal. */
2875 sgn0 = arg0 != 0 ? 0 : (upper0_p ? 1 : -1);
2876 sgn1 = arg1 != 0 ? 0 : (upper1_p ? 1 : -1);
2877 switch (code)
2879 case EQ_EXPR:
2880 result = sgn0 == sgn1;
2881 break;
2882 case NE_EXPR:
2883 result = sgn0 != sgn1;
2884 break;
2885 case LT_EXPR:
2886 result = sgn0 < sgn1;
2887 break;
2888 case LE_EXPR:
2889 result = sgn0 <= sgn1;
2890 break;
2891 case GT_EXPR:
2892 result = sgn0 > sgn1;
2893 break;
2894 case GE_EXPR:
2895 result = sgn0 >= sgn1;
2896 break;
2897 default:
2898 abort ();
2901 return convert (type, result ? integer_one_node : integer_zero_node);
2904 /* Given EXP, a logical expression, set the range it is testing into
2905 variables denoted by PIN_P, PLOW, and PHIGH. Return the expression
2906 actually being tested. *PLOW and *PHIGH will be made of the same type
2907 as the returned expression. If EXP is not a comparison, we will most
2908 likely not be returning a useful value and range. */
2910 static tree
2911 make_range (tree exp, int *pin_p, tree *plow, tree *phigh)
2913 enum tree_code code;
2914 tree arg0 = NULL_TREE, arg1 = NULL_TREE, type = NULL_TREE;
2915 tree orig_type = NULL_TREE;
2916 int in_p, n_in_p;
2917 tree low, high, n_low, n_high;
2919 /* Start with simply saying "EXP != 0" and then look at the code of EXP
2920 and see if we can refine the range. Some of the cases below may not
2921 happen, but it doesn't seem worth worrying about this. We "continue"
2922 the outer loop when we've changed something; otherwise we "break"
2923 the switch, which will "break" the while. */
2925 in_p = 0, low = high = convert (TREE_TYPE (exp), integer_zero_node);
2927 while (1)
2929 code = TREE_CODE (exp);
2931 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
2933 if (first_rtl_op (code) > 0)
2934 arg0 = TREE_OPERAND (exp, 0);
2935 if (TREE_CODE_CLASS (code) == '<'
2936 || TREE_CODE_CLASS (code) == '1'
2937 || TREE_CODE_CLASS (code) == '2')
2938 type = TREE_TYPE (arg0);
2939 if (TREE_CODE_CLASS (code) == '2'
2940 || TREE_CODE_CLASS (code) == '<'
2941 || (TREE_CODE_CLASS (code) == 'e'
2942 && TREE_CODE_LENGTH (code) > 1))
2943 arg1 = TREE_OPERAND (exp, 1);
2946 /* Set ORIG_TYPE as soon as TYPE is non-null so that we do not
2947 lose a cast by accident. */
2948 if (type != NULL_TREE && orig_type == NULL_TREE)
2949 orig_type = type;
2951 switch (code)
2953 case TRUTH_NOT_EXPR:
2954 in_p = ! in_p, exp = arg0;
2955 continue;
2957 case EQ_EXPR: case NE_EXPR:
2958 case LT_EXPR: case LE_EXPR: case GE_EXPR: case GT_EXPR:
2959 /* We can only do something if the range is testing for zero
2960 and if the second operand is an integer constant. Note that
2961 saying something is "in" the range we make is done by
2962 complementing IN_P since it will set in the initial case of
2963 being not equal to zero; "out" is leaving it alone. */
2964 if (low == 0 || high == 0
2965 || ! integer_zerop (low) || ! integer_zerop (high)
2966 || TREE_CODE (arg1) != INTEGER_CST)
2967 break;
2969 switch (code)
2971 case NE_EXPR: /* - [c, c] */
2972 low = high = arg1;
2973 break;
2974 case EQ_EXPR: /* + [c, c] */
2975 in_p = ! in_p, low = high = arg1;
2976 break;
2977 case GT_EXPR: /* - [-, c] */
2978 low = 0, high = arg1;
2979 break;
2980 case GE_EXPR: /* + [c, -] */
2981 in_p = ! in_p, low = arg1, high = 0;
2982 break;
2983 case LT_EXPR: /* - [c, -] */
2984 low = arg1, high = 0;
2985 break;
2986 case LE_EXPR: /* + [-, c] */
2987 in_p = ! in_p, low = 0, high = arg1;
2988 break;
2989 default:
2990 abort ();
2993 exp = arg0;
2995 /* If this is an unsigned comparison, we also know that EXP is
2996 greater than or equal to zero. We base the range tests we make
2997 on that fact, so we record it here so we can parse existing
2998 range tests. */
2999 if (TREE_UNSIGNED (type) && (low == 0 || high == 0))
3001 if (! merge_ranges (&n_in_p, &n_low, &n_high, in_p, low, high,
3002 1, convert (type, integer_zero_node),
3003 NULL_TREE))
3004 break;
3006 in_p = n_in_p, low = n_low, high = n_high;
3008 /* If the high bound is missing, but we
3009 have a low bound, reverse the range so
3010 it goes from zero to the low bound minus 1. */
3011 if (high == 0 && low)
3013 in_p = ! in_p;
3014 high = range_binop (MINUS_EXPR, NULL_TREE, low, 0,
3015 integer_one_node, 0);
3016 low = convert (type, integer_zero_node);
3019 continue;
3021 case NEGATE_EXPR:
3022 /* (-x) IN [a,b] -> x in [-b, -a] */
3023 n_low = range_binop (MINUS_EXPR, type,
3024 convert (type, integer_zero_node), 0, high, 1);
3025 n_high = range_binop (MINUS_EXPR, type,
3026 convert (type, integer_zero_node), 0, low, 0);
3027 low = n_low, high = n_high;
3028 exp = arg0;
3029 continue;
3031 case BIT_NOT_EXPR:
3032 /* ~ X -> -X - 1 */
3033 exp = build (MINUS_EXPR, type, negate_expr (arg0),
3034 convert (type, integer_one_node));
3035 continue;
3037 case PLUS_EXPR: case MINUS_EXPR:
3038 if (TREE_CODE (arg1) != INTEGER_CST)
3039 break;
3041 /* If EXP is signed, any overflow in the computation is undefined,
3042 so we don't worry about it so long as our computations on
3043 the bounds don't overflow. For unsigned, overflow is defined
3044 and this is exactly the right thing. */
3045 n_low = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3046 type, low, 0, arg1, 0);
3047 n_high = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3048 type, high, 1, arg1, 0);
3049 if ((n_low != 0 && TREE_OVERFLOW (n_low))
3050 || (n_high != 0 && TREE_OVERFLOW (n_high)))
3051 break;
3053 /* Check for an unsigned range which has wrapped around the maximum
3054 value thus making n_high < n_low, and normalize it. */
3055 if (n_low && n_high && tree_int_cst_lt (n_high, n_low))
3057 low = range_binop (PLUS_EXPR, type, n_high, 0,
3058 integer_one_node, 0);
3059 high = range_binop (MINUS_EXPR, type, n_low, 0,
3060 integer_one_node, 0);
3062 /* If the range is of the form +/- [ x+1, x ], we won't
3063 be able to normalize it. But then, it represents the
3064 whole range or the empty set, so make it
3065 +/- [ -, - ]. */
3066 if (tree_int_cst_equal (n_low, low)
3067 && tree_int_cst_equal (n_high, high))
3068 low = high = 0;
3069 else
3070 in_p = ! in_p;
3072 else
3073 low = n_low, high = n_high;
3075 exp = arg0;
3076 continue;
3078 case NOP_EXPR: case NON_LVALUE_EXPR: case CONVERT_EXPR:
3079 if (TYPE_PRECISION (type) > TYPE_PRECISION (orig_type))
3080 break;
3082 if (! INTEGRAL_TYPE_P (type)
3083 || (low != 0 && ! int_fits_type_p (low, type))
3084 || (high != 0 && ! int_fits_type_p (high, type)))
3085 break;
3087 n_low = low, n_high = high;
3089 if (n_low != 0)
3090 n_low = convert (type, n_low);
3092 if (n_high != 0)
3093 n_high = convert (type, n_high);
3095 /* If we're converting from an unsigned to a signed type,
3096 we will be doing the comparison as unsigned. The tests above
3097 have already verified that LOW and HIGH are both positive.
3099 So we have to make sure that the original unsigned value will
3100 be interpreted as positive. */
3101 if (TREE_UNSIGNED (type) && ! TREE_UNSIGNED (TREE_TYPE (exp)))
3103 tree equiv_type = (*lang_hooks.types.type_for_mode)
3104 (TYPE_MODE (type), 1);
3105 tree high_positive;
3107 /* A range without an upper bound is, naturally, unbounded.
3108 Since convert would have cropped a very large value, use
3109 the max value for the destination type. */
3110 high_positive
3111 = TYPE_MAX_VALUE (equiv_type) ? TYPE_MAX_VALUE (equiv_type)
3112 : TYPE_MAX_VALUE (type);
3114 if (TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (exp)))
3115 high_positive = fold (build (RSHIFT_EXPR, type,
3116 convert (type, high_positive),
3117 convert (type, integer_one_node)));
3119 /* If the low bound is specified, "and" the range with the
3120 range for which the original unsigned value will be
3121 positive. */
3122 if (low != 0)
3124 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3125 1, n_low, n_high,
3126 1, convert (type, integer_zero_node),
3127 high_positive))
3128 break;
3130 in_p = (n_in_p == in_p);
3132 else
3134 /* Otherwise, "or" the range with the range of the input
3135 that will be interpreted as negative. */
3136 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3137 0, n_low, n_high,
3138 1, convert (type, integer_zero_node),
3139 high_positive))
3140 break;
3142 in_p = (in_p != n_in_p);
3146 exp = arg0;
3147 low = n_low, high = n_high;
3148 continue;
3150 default:
3151 break;
3154 break;
3157 /* If EXP is a constant, we can evaluate whether this is true or false. */
3158 if (TREE_CODE (exp) == INTEGER_CST)
3160 in_p = in_p == (integer_onep (range_binop (GE_EXPR, integer_type_node,
3161 exp, 0, low, 0))
3162 && integer_onep (range_binop (LE_EXPR, integer_type_node,
3163 exp, 1, high, 1)));
3164 low = high = 0;
3165 exp = 0;
3168 *pin_p = in_p, *plow = low, *phigh = high;
3169 return exp;
3172 /* Given a range, LOW, HIGH, and IN_P, an expression, EXP, and a result
3173 type, TYPE, return an expression to test if EXP is in (or out of, depending
3174 on IN_P) the range. */
3176 static tree
3177 build_range_check (tree type, tree exp, int in_p, tree low, tree high)
3179 tree etype = TREE_TYPE (exp);
3180 tree value;
3182 if (! in_p
3183 && (0 != (value = build_range_check (type, exp, 1, low, high))))
3184 return invert_truthvalue (value);
3186 if (low == 0 && high == 0)
3187 return convert (type, integer_one_node);
3189 if (low == 0)
3190 return fold (build (LE_EXPR, type, exp, high));
3192 if (high == 0)
3193 return fold (build (GE_EXPR, type, exp, low));
3195 if (operand_equal_p (low, high, 0))
3196 return fold (build (EQ_EXPR, type, exp, low));
3198 if (integer_zerop (low))
3200 if (! TREE_UNSIGNED (etype))
3202 etype = (*lang_hooks.types.unsigned_type) (etype);
3203 high = convert (etype, high);
3204 exp = convert (etype, exp);
3206 return build_range_check (type, exp, 1, 0, high);
3209 /* Optimize (c>=1) && (c<=127) into (signed char)c > 0. */
3210 if (integer_onep (low) && TREE_CODE (high) == INTEGER_CST)
3212 unsigned HOST_WIDE_INT lo;
3213 HOST_WIDE_INT hi;
3214 int prec;
3216 prec = TYPE_PRECISION (etype);
3217 if (prec <= HOST_BITS_PER_WIDE_INT)
3219 hi = 0;
3220 lo = ((unsigned HOST_WIDE_INT) 1 << (prec - 1)) - 1;
3222 else
3224 hi = ((HOST_WIDE_INT) 1 << (prec - HOST_BITS_PER_WIDE_INT - 1)) - 1;
3225 lo = (unsigned HOST_WIDE_INT) -1;
3228 if (TREE_INT_CST_HIGH (high) == hi && TREE_INT_CST_LOW (high) == lo)
3230 if (TREE_UNSIGNED (etype))
3232 etype = (*lang_hooks.types.signed_type) (etype);
3233 exp = convert (etype, exp);
3235 return fold (build (GT_EXPR, type, exp,
3236 convert (etype, integer_zero_node)));
3240 if (0 != (value = const_binop (MINUS_EXPR, high, low, 0))
3241 && ! TREE_OVERFLOW (value))
3242 return build_range_check (type,
3243 fold (build (MINUS_EXPR, etype, exp, low)),
3244 1, convert (etype, integer_zero_node), value);
3246 return 0;
3249 /* Given two ranges, see if we can merge them into one. Return 1 if we
3250 can, 0 if we can't. Set the output range into the specified parameters. */
3252 static int
3253 merge_ranges (int *pin_p, tree *plow, tree *phigh, int in0_p, tree low0,
3254 tree high0, int in1_p, tree low1, tree high1)
3256 int no_overlap;
3257 int subset;
3258 int temp;
3259 tree tem;
3260 int in_p;
3261 tree low, high;
3262 int lowequal = ((low0 == 0 && low1 == 0)
3263 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
3264 low0, 0, low1, 0)));
3265 int highequal = ((high0 == 0 && high1 == 0)
3266 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
3267 high0, 1, high1, 1)));
3269 /* Make range 0 be the range that starts first, or ends last if they
3270 start at the same value. Swap them if it isn't. */
3271 if (integer_onep (range_binop (GT_EXPR, integer_type_node,
3272 low0, 0, low1, 0))
3273 || (lowequal
3274 && integer_onep (range_binop (GT_EXPR, integer_type_node,
3275 high1, 1, high0, 1))))
3277 temp = in0_p, in0_p = in1_p, in1_p = temp;
3278 tem = low0, low0 = low1, low1 = tem;
3279 tem = high0, high0 = high1, high1 = tem;
3282 /* Now flag two cases, whether the ranges are disjoint or whether the
3283 second range is totally subsumed in the first. Note that the tests
3284 below are simplified by the ones above. */
3285 no_overlap = integer_onep (range_binop (LT_EXPR, integer_type_node,
3286 high0, 1, low1, 0));
3287 subset = integer_onep (range_binop (LE_EXPR, integer_type_node,
3288 high1, 1, high0, 1));
3290 /* We now have four cases, depending on whether we are including or
3291 excluding the two ranges. */
3292 if (in0_p && in1_p)
3294 /* If they don't overlap, the result is false. If the second range
3295 is a subset it is the result. Otherwise, the range is from the start
3296 of the second to the end of the first. */
3297 if (no_overlap)
3298 in_p = 0, low = high = 0;
3299 else if (subset)
3300 in_p = 1, low = low1, high = high1;
3301 else
3302 in_p = 1, low = low1, high = high0;
3305 else if (in0_p && ! in1_p)
3307 /* If they don't overlap, the result is the first range. If they are
3308 equal, the result is false. If the second range is a subset of the
3309 first, and the ranges begin at the same place, we go from just after
3310 the end of the first range to the end of the second. If the second
3311 range is not a subset of the first, or if it is a subset and both
3312 ranges end at the same place, the range starts at the start of the
3313 first range and ends just before the second range.
3314 Otherwise, we can't describe this as a single range. */
3315 if (no_overlap)
3316 in_p = 1, low = low0, high = high0;
3317 else if (lowequal && highequal)
3318 in_p = 0, low = high = 0;
3319 else if (subset && lowequal)
3321 in_p = 1, high = high0;
3322 low = range_binop (PLUS_EXPR, NULL_TREE, high1, 0,
3323 integer_one_node, 0);
3325 else if (! subset || highequal)
3327 in_p = 1, low = low0;
3328 high = range_binop (MINUS_EXPR, NULL_TREE, low1, 0,
3329 integer_one_node, 0);
3331 else
3332 return 0;
3335 else if (! in0_p && in1_p)
3337 /* If they don't overlap, the result is the second range. If the second
3338 is a subset of the first, the result is false. Otherwise,
3339 the range starts just after the first range and ends at the
3340 end of the second. */
3341 if (no_overlap)
3342 in_p = 1, low = low1, high = high1;
3343 else if (subset || highequal)
3344 in_p = 0, low = high = 0;
3345 else
3347 in_p = 1, high = high1;
3348 low = range_binop (PLUS_EXPR, NULL_TREE, high0, 1,
3349 integer_one_node, 0);
3353 else
3355 /* The case where we are excluding both ranges. Here the complex case
3356 is if they don't overlap. In that case, the only time we have a
3357 range is if they are adjacent. If the second is a subset of the
3358 first, the result is the first. Otherwise, the range to exclude
3359 starts at the beginning of the first range and ends at the end of the
3360 second. */
3361 if (no_overlap)
3363 if (integer_onep (range_binop (EQ_EXPR, integer_type_node,
3364 range_binop (PLUS_EXPR, NULL_TREE,
3365 high0, 1,
3366 integer_one_node, 1),
3367 1, low1, 0)))
3368 in_p = 0, low = low0, high = high1;
3369 else
3370 return 0;
3372 else if (subset)
3373 in_p = 0, low = low0, high = high0;
3374 else
3375 in_p = 0, low = low0, high = high1;
3378 *pin_p = in_p, *plow = low, *phigh = high;
3379 return 1;
3382 #ifndef RANGE_TEST_NON_SHORT_CIRCUIT
3383 #define RANGE_TEST_NON_SHORT_CIRCUIT (BRANCH_COST >= 2)
3384 #endif
3386 /* EXP is some logical combination of boolean tests. See if we can
3387 merge it into some range test. Return the new tree if so. */
3389 static tree
3390 fold_range_test (tree exp)
3392 int or_op = (TREE_CODE (exp) == TRUTH_ORIF_EXPR
3393 || TREE_CODE (exp) == TRUTH_OR_EXPR);
3394 int in0_p, in1_p, in_p;
3395 tree low0, low1, low, high0, high1, high;
3396 tree lhs = make_range (TREE_OPERAND (exp, 0), &in0_p, &low0, &high0);
3397 tree rhs = make_range (TREE_OPERAND (exp, 1), &in1_p, &low1, &high1);
3398 tree tem;
3400 /* If this is an OR operation, invert both sides; we will invert
3401 again at the end. */
3402 if (or_op)
3403 in0_p = ! in0_p, in1_p = ! in1_p;
3405 /* If both expressions are the same, if we can merge the ranges, and we
3406 can build the range test, return it or it inverted. If one of the
3407 ranges is always true or always false, consider it to be the same
3408 expression as the other. */
3409 if ((lhs == 0 || rhs == 0 || operand_equal_p (lhs, rhs, 0))
3410 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
3411 in1_p, low1, high1)
3412 && 0 != (tem = (build_range_check (TREE_TYPE (exp),
3413 lhs != 0 ? lhs
3414 : rhs != 0 ? rhs : integer_zero_node,
3415 in_p, low, high))))
3416 return or_op ? invert_truthvalue (tem) : tem;
3418 /* On machines where the branch cost is expensive, if this is a
3419 short-circuited branch and the underlying object on both sides
3420 is the same, make a non-short-circuit operation. */
3421 else if (RANGE_TEST_NON_SHORT_CIRCUIT
3422 && lhs != 0 && rhs != 0
3423 && (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
3424 || TREE_CODE (exp) == TRUTH_ORIF_EXPR)
3425 && operand_equal_p (lhs, rhs, 0))
3427 /* If simple enough, just rewrite. Otherwise, make a SAVE_EXPR
3428 unless we are at top level or LHS contains a PLACEHOLDER_EXPR, in
3429 which cases we can't do this. */
3430 if (simple_operand_p (lhs))
3431 return build (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
3432 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
3433 TREE_TYPE (exp), TREE_OPERAND (exp, 0),
3434 TREE_OPERAND (exp, 1));
3436 else if ((*lang_hooks.decls.global_bindings_p) () == 0
3437 && ! CONTAINS_PLACEHOLDER_P (lhs))
3439 tree common = save_expr (lhs);
3441 if (0 != (lhs = build_range_check (TREE_TYPE (exp), common,
3442 or_op ? ! in0_p : in0_p,
3443 low0, high0))
3444 && (0 != (rhs = build_range_check (TREE_TYPE (exp), common,
3445 or_op ? ! in1_p : in1_p,
3446 low1, high1))))
3447 return build (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
3448 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
3449 TREE_TYPE (exp), lhs, rhs);
3453 return 0;
3456 /* Subroutine for fold_truthop: C is an INTEGER_CST interpreted as a P
3457 bit value. Arrange things so the extra bits will be set to zero if and
3458 only if C is signed-extended to its full width. If MASK is nonzero,
3459 it is an INTEGER_CST that should be AND'ed with the extra bits. */
3461 static tree
3462 unextend (tree c, int p, int unsignedp, tree mask)
3464 tree type = TREE_TYPE (c);
3465 int modesize = GET_MODE_BITSIZE (TYPE_MODE (type));
3466 tree temp;
3468 if (p == modesize || unsignedp)
3469 return c;
3471 /* We work by getting just the sign bit into the low-order bit, then
3472 into the high-order bit, then sign-extend. We then XOR that value
3473 with C. */
3474 temp = const_binop (RSHIFT_EXPR, c, size_int (p - 1), 0);
3475 temp = const_binop (BIT_AND_EXPR, temp, size_int (1), 0);
3477 /* We must use a signed type in order to get an arithmetic right shift.
3478 However, we must also avoid introducing accidental overflows, so that
3479 a subsequent call to integer_zerop will work. Hence we must
3480 do the type conversion here. At this point, the constant is either
3481 zero or one, and the conversion to a signed type can never overflow.
3482 We could get an overflow if this conversion is done anywhere else. */
3483 if (TREE_UNSIGNED (type))
3484 temp = convert ((*lang_hooks.types.signed_type) (type), temp);
3486 temp = const_binop (LSHIFT_EXPR, temp, size_int (modesize - 1), 0);
3487 temp = const_binop (RSHIFT_EXPR, temp, size_int (modesize - p - 1), 0);
3488 if (mask != 0)
3489 temp = const_binop (BIT_AND_EXPR, temp, convert (TREE_TYPE (c), mask), 0);
3490 /* If necessary, convert the type back to match the type of C. */
3491 if (TREE_UNSIGNED (type))
3492 temp = convert (type, temp);
3494 return convert (type, const_binop (BIT_XOR_EXPR, c, temp, 0));
3497 /* Find ways of folding logical expressions of LHS and RHS:
3498 Try to merge two comparisons to the same innermost item.
3499 Look for range tests like "ch >= '0' && ch <= '9'".
3500 Look for combinations of simple terms on machines with expensive branches
3501 and evaluate the RHS unconditionally.
3503 For example, if we have p->a == 2 && p->b == 4 and we can make an
3504 object large enough to span both A and B, we can do this with a comparison
3505 against the object ANDed with the a mask.
3507 If we have p->a == q->a && p->b == q->b, we may be able to use bit masking
3508 operations to do this with one comparison.
3510 We check for both normal comparisons and the BIT_AND_EXPRs made this by
3511 function and the one above.
3513 CODE is the logical operation being done. It can be TRUTH_ANDIF_EXPR,
3514 TRUTH_AND_EXPR, TRUTH_ORIF_EXPR, or TRUTH_OR_EXPR.
3516 TRUTH_TYPE is the type of the logical operand and LHS and RHS are its
3517 two operands.
3519 We return the simplified tree or 0 if no optimization is possible. */
3521 static tree
3522 fold_truthop (enum tree_code code, tree truth_type, tree lhs, tree rhs)
3524 /* If this is the "or" of two comparisons, we can do something if
3525 the comparisons are NE_EXPR. If this is the "and", we can do something
3526 if the comparisons are EQ_EXPR. I.e.,
3527 (a->b == 2 && a->c == 4) can become (a->new == NEW).
3529 WANTED_CODE is this operation code. For single bit fields, we can
3530 convert EQ_EXPR to NE_EXPR so we need not reject the "wrong"
3531 comparison for one-bit fields. */
3533 enum tree_code wanted_code;
3534 enum tree_code lcode, rcode;
3535 tree ll_arg, lr_arg, rl_arg, rr_arg;
3536 tree ll_inner, lr_inner, rl_inner, rr_inner;
3537 HOST_WIDE_INT ll_bitsize, ll_bitpos, lr_bitsize, lr_bitpos;
3538 HOST_WIDE_INT rl_bitsize, rl_bitpos, rr_bitsize, rr_bitpos;
3539 HOST_WIDE_INT xll_bitpos, xlr_bitpos, xrl_bitpos, xrr_bitpos;
3540 HOST_WIDE_INT lnbitsize, lnbitpos, rnbitsize, rnbitpos;
3541 int ll_unsignedp, lr_unsignedp, rl_unsignedp, rr_unsignedp;
3542 enum machine_mode ll_mode, lr_mode, rl_mode, rr_mode;
3543 enum machine_mode lnmode, rnmode;
3544 tree ll_mask, lr_mask, rl_mask, rr_mask;
3545 tree ll_and_mask, lr_and_mask, rl_and_mask, rr_and_mask;
3546 tree l_const, r_const;
3547 tree lntype, rntype, result;
3548 int first_bit, end_bit;
3549 int volatilep;
3551 /* Start by getting the comparison codes. Fail if anything is volatile.
3552 If one operand is a BIT_AND_EXPR with the constant one, treat it as if
3553 it were surrounded with a NE_EXPR. */
3555 if (TREE_SIDE_EFFECTS (lhs) || TREE_SIDE_EFFECTS (rhs))
3556 return 0;
3558 lcode = TREE_CODE (lhs);
3559 rcode = TREE_CODE (rhs);
3561 if (lcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (lhs, 1)))
3562 lcode = NE_EXPR, lhs = build (NE_EXPR, truth_type, lhs, integer_zero_node);
3564 if (rcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (rhs, 1)))
3565 rcode = NE_EXPR, rhs = build (NE_EXPR, truth_type, rhs, integer_zero_node);
3567 if (TREE_CODE_CLASS (lcode) != '<' || TREE_CODE_CLASS (rcode) != '<')
3568 return 0;
3570 code = ((code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR)
3571 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR);
3573 ll_arg = TREE_OPERAND (lhs, 0);
3574 lr_arg = TREE_OPERAND (lhs, 1);
3575 rl_arg = TREE_OPERAND (rhs, 0);
3576 rr_arg = TREE_OPERAND (rhs, 1);
3578 /* Simplify (x<y) && (x==y) into (x<=y) and related optimizations. */
3579 if (simple_operand_p (ll_arg)
3580 && simple_operand_p (lr_arg)
3581 && !FLOAT_TYPE_P (TREE_TYPE (ll_arg)))
3583 int compcode;
3585 if (operand_equal_p (ll_arg, rl_arg, 0)
3586 && operand_equal_p (lr_arg, rr_arg, 0))
3588 int lcompcode, rcompcode;
3590 lcompcode = comparison_to_compcode (lcode);
3591 rcompcode = comparison_to_compcode (rcode);
3592 compcode = (code == TRUTH_AND_EXPR)
3593 ? lcompcode & rcompcode
3594 : lcompcode | rcompcode;
3596 else if (operand_equal_p (ll_arg, rr_arg, 0)
3597 && operand_equal_p (lr_arg, rl_arg, 0))
3599 int lcompcode, rcompcode;
3601 rcode = swap_tree_comparison (rcode);
3602 lcompcode = comparison_to_compcode (lcode);
3603 rcompcode = comparison_to_compcode (rcode);
3604 compcode = (code == TRUTH_AND_EXPR)
3605 ? lcompcode & rcompcode
3606 : lcompcode | rcompcode;
3608 else
3609 compcode = -1;
3611 if (compcode == COMPCODE_TRUE)
3612 return convert (truth_type, integer_one_node);
3613 else if (compcode == COMPCODE_FALSE)
3614 return convert (truth_type, integer_zero_node);
3615 else if (compcode != -1)
3616 return build (compcode_to_comparison (compcode),
3617 truth_type, ll_arg, lr_arg);
3620 /* If the RHS can be evaluated unconditionally and its operands are
3621 simple, it wins to evaluate the RHS unconditionally on machines
3622 with expensive branches. In this case, this isn't a comparison
3623 that can be merged. Avoid doing this if the RHS is a floating-point
3624 comparison since those can trap. */
3626 if (BRANCH_COST >= 2
3627 && ! FLOAT_TYPE_P (TREE_TYPE (rl_arg))
3628 && simple_operand_p (rl_arg)
3629 && simple_operand_p (rr_arg))
3631 /* Convert (a != 0) || (b != 0) into (a | b) != 0. */
3632 if (code == TRUTH_OR_EXPR
3633 && lcode == NE_EXPR && integer_zerop (lr_arg)
3634 && rcode == NE_EXPR && integer_zerop (rr_arg)
3635 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg))
3636 return build (NE_EXPR, truth_type,
3637 build (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
3638 ll_arg, rl_arg),
3639 integer_zero_node);
3641 /* Convert (a == 0) && (b == 0) into (a | b) == 0. */
3642 if (code == TRUTH_AND_EXPR
3643 && lcode == EQ_EXPR && integer_zerop (lr_arg)
3644 && rcode == EQ_EXPR && integer_zerop (rr_arg)
3645 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg))
3646 return build (EQ_EXPR, truth_type,
3647 build (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
3648 ll_arg, rl_arg),
3649 integer_zero_node);
3651 return build (code, truth_type, lhs, rhs);
3654 /* See if the comparisons can be merged. Then get all the parameters for
3655 each side. */
3657 if ((lcode != EQ_EXPR && lcode != NE_EXPR)
3658 || (rcode != EQ_EXPR && rcode != NE_EXPR))
3659 return 0;
3661 volatilep = 0;
3662 ll_inner = decode_field_reference (ll_arg,
3663 &ll_bitsize, &ll_bitpos, &ll_mode,
3664 &ll_unsignedp, &volatilep, &ll_mask,
3665 &ll_and_mask);
3666 lr_inner = decode_field_reference (lr_arg,
3667 &lr_bitsize, &lr_bitpos, &lr_mode,
3668 &lr_unsignedp, &volatilep, &lr_mask,
3669 &lr_and_mask);
3670 rl_inner = decode_field_reference (rl_arg,
3671 &rl_bitsize, &rl_bitpos, &rl_mode,
3672 &rl_unsignedp, &volatilep, &rl_mask,
3673 &rl_and_mask);
3674 rr_inner = decode_field_reference (rr_arg,
3675 &rr_bitsize, &rr_bitpos, &rr_mode,
3676 &rr_unsignedp, &volatilep, &rr_mask,
3677 &rr_and_mask);
3679 /* It must be true that the inner operation on the lhs of each
3680 comparison must be the same if we are to be able to do anything.
3681 Then see if we have constants. If not, the same must be true for
3682 the rhs's. */
3683 if (volatilep || ll_inner == 0 || rl_inner == 0
3684 || ! operand_equal_p (ll_inner, rl_inner, 0))
3685 return 0;
3687 if (TREE_CODE (lr_arg) == INTEGER_CST
3688 && TREE_CODE (rr_arg) == INTEGER_CST)
3689 l_const = lr_arg, r_const = rr_arg;
3690 else if (lr_inner == 0 || rr_inner == 0
3691 || ! operand_equal_p (lr_inner, rr_inner, 0))
3692 return 0;
3693 else
3694 l_const = r_const = 0;
3696 /* If either comparison code is not correct for our logical operation,
3697 fail. However, we can convert a one-bit comparison against zero into
3698 the opposite comparison against that bit being set in the field. */
3700 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR);
3701 if (lcode != wanted_code)
3703 if (l_const && integer_zerop (l_const) && integer_pow2p (ll_mask))
3705 /* Make the left operand unsigned, since we are only interested
3706 in the value of one bit. Otherwise we are doing the wrong
3707 thing below. */
3708 ll_unsignedp = 1;
3709 l_const = ll_mask;
3711 else
3712 return 0;
3715 /* This is analogous to the code for l_const above. */
3716 if (rcode != wanted_code)
3718 if (r_const && integer_zerop (r_const) && integer_pow2p (rl_mask))
3720 rl_unsignedp = 1;
3721 r_const = rl_mask;
3723 else
3724 return 0;
3727 /* After this point all optimizations will generate bit-field
3728 references, which we might not want. */
3729 if (! (*lang_hooks.can_use_bit_fields_p) ())
3730 return 0;
3732 /* See if we can find a mode that contains both fields being compared on
3733 the left. If we can't, fail. Otherwise, update all constants and masks
3734 to be relative to a field of that size. */
3735 first_bit = MIN (ll_bitpos, rl_bitpos);
3736 end_bit = MAX (ll_bitpos + ll_bitsize, rl_bitpos + rl_bitsize);
3737 lnmode = get_best_mode (end_bit - first_bit, first_bit,
3738 TYPE_ALIGN (TREE_TYPE (ll_inner)), word_mode,
3739 volatilep);
3740 if (lnmode == VOIDmode)
3741 return 0;
3743 lnbitsize = GET_MODE_BITSIZE (lnmode);
3744 lnbitpos = first_bit & ~ (lnbitsize - 1);
3745 lntype = (*lang_hooks.types.type_for_size) (lnbitsize, 1);
3746 xll_bitpos = ll_bitpos - lnbitpos, xrl_bitpos = rl_bitpos - lnbitpos;
3748 if (BYTES_BIG_ENDIAN)
3750 xll_bitpos = lnbitsize - xll_bitpos - ll_bitsize;
3751 xrl_bitpos = lnbitsize - xrl_bitpos - rl_bitsize;
3754 ll_mask = const_binop (LSHIFT_EXPR, convert (lntype, ll_mask),
3755 size_int (xll_bitpos), 0);
3756 rl_mask = const_binop (LSHIFT_EXPR, convert (lntype, rl_mask),
3757 size_int (xrl_bitpos), 0);
3759 if (l_const)
3761 l_const = convert (lntype, l_const);
3762 l_const = unextend (l_const, ll_bitsize, ll_unsignedp, ll_and_mask);
3763 l_const = const_binop (LSHIFT_EXPR, l_const, size_int (xll_bitpos), 0);
3764 if (! integer_zerop (const_binop (BIT_AND_EXPR, l_const,
3765 fold (build1 (BIT_NOT_EXPR,
3766 lntype, ll_mask)),
3767 0)))
3769 warning ("comparison is always %d", wanted_code == NE_EXPR);
3771 return convert (truth_type,
3772 wanted_code == NE_EXPR
3773 ? integer_one_node : integer_zero_node);
3776 if (r_const)
3778 r_const = convert (lntype, r_const);
3779 r_const = unextend (r_const, rl_bitsize, rl_unsignedp, rl_and_mask);
3780 r_const = const_binop (LSHIFT_EXPR, r_const, size_int (xrl_bitpos), 0);
3781 if (! integer_zerop (const_binop (BIT_AND_EXPR, r_const,
3782 fold (build1 (BIT_NOT_EXPR,
3783 lntype, rl_mask)),
3784 0)))
3786 warning ("comparison is always %d", wanted_code == NE_EXPR);
3788 return convert (truth_type,
3789 wanted_code == NE_EXPR
3790 ? integer_one_node : integer_zero_node);
3794 /* If the right sides are not constant, do the same for it. Also,
3795 disallow this optimization if a size or signedness mismatch occurs
3796 between the left and right sides. */
3797 if (l_const == 0)
3799 if (ll_bitsize != lr_bitsize || rl_bitsize != rr_bitsize
3800 || ll_unsignedp != lr_unsignedp || rl_unsignedp != rr_unsignedp
3801 /* Make sure the two fields on the right
3802 correspond to the left without being swapped. */
3803 || ll_bitpos - rl_bitpos != lr_bitpos - rr_bitpos)
3804 return 0;
3806 first_bit = MIN (lr_bitpos, rr_bitpos);
3807 end_bit = MAX (lr_bitpos + lr_bitsize, rr_bitpos + rr_bitsize);
3808 rnmode = get_best_mode (end_bit - first_bit, first_bit,
3809 TYPE_ALIGN (TREE_TYPE (lr_inner)), word_mode,
3810 volatilep);
3811 if (rnmode == VOIDmode)
3812 return 0;
3814 rnbitsize = GET_MODE_BITSIZE (rnmode);
3815 rnbitpos = first_bit & ~ (rnbitsize - 1);
3816 rntype = (*lang_hooks.types.type_for_size) (rnbitsize, 1);
3817 xlr_bitpos = lr_bitpos - rnbitpos, xrr_bitpos = rr_bitpos - rnbitpos;
3819 if (BYTES_BIG_ENDIAN)
3821 xlr_bitpos = rnbitsize - xlr_bitpos - lr_bitsize;
3822 xrr_bitpos = rnbitsize - xrr_bitpos - rr_bitsize;
3825 lr_mask = const_binop (LSHIFT_EXPR, convert (rntype, lr_mask),
3826 size_int (xlr_bitpos), 0);
3827 rr_mask = const_binop (LSHIFT_EXPR, convert (rntype, rr_mask),
3828 size_int (xrr_bitpos), 0);
3830 /* Make a mask that corresponds to both fields being compared.
3831 Do this for both items being compared. If the operands are the
3832 same size and the bits being compared are in the same position
3833 then we can do this by masking both and comparing the masked
3834 results. */
3835 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask, 0);
3836 lr_mask = const_binop (BIT_IOR_EXPR, lr_mask, rr_mask, 0);
3837 if (lnbitsize == rnbitsize && xll_bitpos == xlr_bitpos)
3839 lhs = make_bit_field_ref (ll_inner, lntype, lnbitsize, lnbitpos,
3840 ll_unsignedp || rl_unsignedp);
3841 if (! all_ones_mask_p (ll_mask, lnbitsize))
3842 lhs = build (BIT_AND_EXPR, lntype, lhs, ll_mask);
3844 rhs = make_bit_field_ref (lr_inner, rntype, rnbitsize, rnbitpos,
3845 lr_unsignedp || rr_unsignedp);
3846 if (! all_ones_mask_p (lr_mask, rnbitsize))
3847 rhs = build (BIT_AND_EXPR, rntype, rhs, lr_mask);
3849 return build (wanted_code, truth_type, lhs, rhs);
3852 /* There is still another way we can do something: If both pairs of
3853 fields being compared are adjacent, we may be able to make a wider
3854 field containing them both.
3856 Note that we still must mask the lhs/rhs expressions. Furthermore,
3857 the mask must be shifted to account for the shift done by
3858 make_bit_field_ref. */
3859 if ((ll_bitsize + ll_bitpos == rl_bitpos
3860 && lr_bitsize + lr_bitpos == rr_bitpos)
3861 || (ll_bitpos == rl_bitpos + rl_bitsize
3862 && lr_bitpos == rr_bitpos + rr_bitsize))
3864 tree type;
3866 lhs = make_bit_field_ref (ll_inner, lntype, ll_bitsize + rl_bitsize,
3867 MIN (ll_bitpos, rl_bitpos), ll_unsignedp);
3868 rhs = make_bit_field_ref (lr_inner, rntype, lr_bitsize + rr_bitsize,
3869 MIN (lr_bitpos, rr_bitpos), lr_unsignedp);
3871 ll_mask = const_binop (RSHIFT_EXPR, ll_mask,
3872 size_int (MIN (xll_bitpos, xrl_bitpos)), 0);
3873 lr_mask = const_binop (RSHIFT_EXPR, lr_mask,
3874 size_int (MIN (xlr_bitpos, xrr_bitpos)), 0);
3876 /* Convert to the smaller type before masking out unwanted bits. */
3877 type = lntype;
3878 if (lntype != rntype)
3880 if (lnbitsize > rnbitsize)
3882 lhs = convert (rntype, lhs);
3883 ll_mask = convert (rntype, ll_mask);
3884 type = rntype;
3886 else if (lnbitsize < rnbitsize)
3888 rhs = convert (lntype, rhs);
3889 lr_mask = convert (lntype, lr_mask);
3890 type = lntype;
3894 if (! all_ones_mask_p (ll_mask, ll_bitsize + rl_bitsize))
3895 lhs = build (BIT_AND_EXPR, type, lhs, ll_mask);
3897 if (! all_ones_mask_p (lr_mask, lr_bitsize + rr_bitsize))
3898 rhs = build (BIT_AND_EXPR, type, rhs, lr_mask);
3900 return build (wanted_code, truth_type, lhs, rhs);
3903 return 0;
3906 /* Handle the case of comparisons with constants. If there is something in
3907 common between the masks, those bits of the constants must be the same.
3908 If not, the condition is always false. Test for this to avoid generating
3909 incorrect code below. */
3910 result = const_binop (BIT_AND_EXPR, ll_mask, rl_mask, 0);
3911 if (! integer_zerop (result)
3912 && simple_cst_equal (const_binop (BIT_AND_EXPR, result, l_const, 0),
3913 const_binop (BIT_AND_EXPR, result, r_const, 0)) != 1)
3915 if (wanted_code == NE_EXPR)
3917 warning ("`or' of unmatched not-equal tests is always 1");
3918 return convert (truth_type, integer_one_node);
3920 else
3922 warning ("`and' of mutually exclusive equal-tests is always 0");
3923 return convert (truth_type, integer_zero_node);
3927 /* Construct the expression we will return. First get the component
3928 reference we will make. Unless the mask is all ones the width of
3929 that field, perform the mask operation. Then compare with the
3930 merged constant. */
3931 result = make_bit_field_ref (ll_inner, lntype, lnbitsize, lnbitpos,
3932 ll_unsignedp || rl_unsignedp);
3934 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask, 0);
3935 if (! all_ones_mask_p (ll_mask, lnbitsize))
3936 result = build (BIT_AND_EXPR, lntype, result, ll_mask);
3938 return build (wanted_code, truth_type, result,
3939 const_binop (BIT_IOR_EXPR, l_const, r_const, 0));
3942 /* Optimize T, which is a comparison of a MIN_EXPR or MAX_EXPR with a
3943 constant. */
3945 static tree
3946 optimize_minmax_comparison (tree t)
3948 tree type = TREE_TYPE (t);
3949 tree arg0 = TREE_OPERAND (t, 0);
3950 enum tree_code op_code;
3951 tree comp_const = TREE_OPERAND (t, 1);
3952 tree minmax_const;
3953 int consts_equal, consts_lt;
3954 tree inner;
3956 STRIP_SIGN_NOPS (arg0);
3958 op_code = TREE_CODE (arg0);
3959 minmax_const = TREE_OPERAND (arg0, 1);
3960 consts_equal = tree_int_cst_equal (minmax_const, comp_const);
3961 consts_lt = tree_int_cst_lt (minmax_const, comp_const);
3962 inner = TREE_OPERAND (arg0, 0);
3964 /* If something does not permit us to optimize, return the original tree. */
3965 if ((op_code != MIN_EXPR && op_code != MAX_EXPR)
3966 || TREE_CODE (comp_const) != INTEGER_CST
3967 || TREE_CONSTANT_OVERFLOW (comp_const)
3968 || TREE_CODE (minmax_const) != INTEGER_CST
3969 || TREE_CONSTANT_OVERFLOW (minmax_const))
3970 return t;
3972 /* Now handle all the various comparison codes. We only handle EQ_EXPR
3973 and GT_EXPR, doing the rest with recursive calls using logical
3974 simplifications. */
3975 switch (TREE_CODE (t))
3977 case NE_EXPR: case LT_EXPR: case LE_EXPR:
3978 return
3979 invert_truthvalue (optimize_minmax_comparison (invert_truthvalue (t)));
3981 case GE_EXPR:
3982 return
3983 fold (build (TRUTH_ORIF_EXPR, type,
3984 optimize_minmax_comparison
3985 (build (EQ_EXPR, type, arg0, comp_const)),
3986 optimize_minmax_comparison
3987 (build (GT_EXPR, type, arg0, comp_const))));
3989 case EQ_EXPR:
3990 if (op_code == MAX_EXPR && consts_equal)
3991 /* MAX (X, 0) == 0 -> X <= 0 */
3992 return fold (build (LE_EXPR, type, inner, comp_const));
3994 else if (op_code == MAX_EXPR && consts_lt)
3995 /* MAX (X, 0) == 5 -> X == 5 */
3996 return fold (build (EQ_EXPR, type, inner, comp_const));
3998 else if (op_code == MAX_EXPR)
3999 /* MAX (X, 0) == -1 -> false */
4000 return omit_one_operand (type, integer_zero_node, inner);
4002 else if (consts_equal)
4003 /* MIN (X, 0) == 0 -> X >= 0 */
4004 return fold (build (GE_EXPR, type, inner, comp_const));
4006 else if (consts_lt)
4007 /* MIN (X, 0) == 5 -> false */
4008 return omit_one_operand (type, integer_zero_node, inner);
4010 else
4011 /* MIN (X, 0) == -1 -> X == -1 */
4012 return fold (build (EQ_EXPR, type, inner, comp_const));
4014 case GT_EXPR:
4015 if (op_code == MAX_EXPR && (consts_equal || consts_lt))
4016 /* MAX (X, 0) > 0 -> X > 0
4017 MAX (X, 0) > 5 -> X > 5 */
4018 return fold (build (GT_EXPR, type, inner, comp_const));
4020 else if (op_code == MAX_EXPR)
4021 /* MAX (X, 0) > -1 -> true */
4022 return omit_one_operand (type, integer_one_node, inner);
4024 else if (op_code == MIN_EXPR && (consts_equal || consts_lt))
4025 /* MIN (X, 0) > 0 -> false
4026 MIN (X, 0) > 5 -> false */
4027 return omit_one_operand (type, integer_zero_node, inner);
4029 else
4030 /* MIN (X, 0) > -1 -> X > -1 */
4031 return fold (build (GT_EXPR, type, inner, comp_const));
4033 default:
4034 return t;
4038 /* T is an integer expression that is being multiplied, divided, or taken a
4039 modulus (CODE says which and what kind of divide or modulus) by a
4040 constant C. See if we can eliminate that operation by folding it with
4041 other operations already in T. WIDE_TYPE, if non-null, is a type that
4042 should be used for the computation if wider than our type.
4044 For example, if we are dividing (X * 8) + (Y * 16) by 4, we can return
4045 (X * 2) + (Y * 4). We must, however, be assured that either the original
4046 expression would not overflow or that overflow is undefined for the type
4047 in the language in question.
4049 We also canonicalize (X + 7) * 4 into X * 4 + 28 in the hope that either
4050 the machine has a multiply-accumulate insn or that this is part of an
4051 addressing calculation.
4053 If we return a non-null expression, it is an equivalent form of the
4054 original computation, but need not be in the original type. */
4056 static tree
4057 extract_muldiv (tree t, tree c, enum tree_code code, tree wide_type)
4059 /* To avoid exponential search depth, refuse to allow recursion past
4060 three levels. Beyond that (1) it's highly unlikely that we'll find
4061 something interesting and (2) we've probably processed it before
4062 when we built the inner expression. */
4064 static int depth;
4065 tree ret;
4067 if (depth > 3)
4068 return NULL;
4070 depth++;
4071 ret = extract_muldiv_1 (t, c, code, wide_type);
4072 depth--;
4074 return ret;
4077 static tree
4078 extract_muldiv_1 (tree t, tree c, enum tree_code code, tree wide_type)
4080 tree type = TREE_TYPE (t);
4081 enum tree_code tcode = TREE_CODE (t);
4082 tree ctype = (wide_type != 0 && (GET_MODE_SIZE (TYPE_MODE (wide_type))
4083 > GET_MODE_SIZE (TYPE_MODE (type)))
4084 ? wide_type : type);
4085 tree t1, t2;
4086 int same_p = tcode == code;
4087 tree op0 = NULL_TREE, op1 = NULL_TREE;
4089 /* Don't deal with constants of zero here; they confuse the code below. */
4090 if (integer_zerop (c))
4091 return NULL_TREE;
4093 if (TREE_CODE_CLASS (tcode) == '1')
4094 op0 = TREE_OPERAND (t, 0);
4096 if (TREE_CODE_CLASS (tcode) == '2')
4097 op0 = TREE_OPERAND (t, 0), op1 = TREE_OPERAND (t, 1);
4099 /* Note that we need not handle conditional operations here since fold
4100 already handles those cases. So just do arithmetic here. */
4101 switch (tcode)
4103 case INTEGER_CST:
4104 /* For a constant, we can always simplify if we are a multiply
4105 or (for divide and modulus) if it is a multiple of our constant. */
4106 if (code == MULT_EXPR
4107 || integer_zerop (const_binop (TRUNC_MOD_EXPR, t, c, 0)))
4108 return const_binop (code, convert (ctype, t), convert (ctype, c), 0);
4109 break;
4111 case CONVERT_EXPR: case NON_LVALUE_EXPR: case NOP_EXPR:
4112 /* If op0 is an expression ... */
4113 if ((TREE_CODE_CLASS (TREE_CODE (op0)) == '<'
4114 || TREE_CODE_CLASS (TREE_CODE (op0)) == '1'
4115 || TREE_CODE_CLASS (TREE_CODE (op0)) == '2'
4116 || TREE_CODE_CLASS (TREE_CODE (op0)) == 'e')
4117 /* ... and is unsigned, and its type is smaller than ctype,
4118 then we cannot pass through as widening. */
4119 && ((TREE_UNSIGNED (TREE_TYPE (op0))
4120 && ! (TREE_CODE (TREE_TYPE (op0)) == INTEGER_TYPE
4121 && TYPE_IS_SIZETYPE (TREE_TYPE (op0)))
4122 && (GET_MODE_SIZE (TYPE_MODE (ctype))
4123 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))))
4124 /* ... or its type is larger than ctype,
4125 then we cannot pass through this truncation. */
4126 || (GET_MODE_SIZE (TYPE_MODE (ctype))
4127 < GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0))))
4128 /* ... or signedness changes for division or modulus,
4129 then we cannot pass through this conversion. */
4130 || (code != MULT_EXPR
4131 && (TREE_UNSIGNED (ctype)
4132 != TREE_UNSIGNED (TREE_TYPE (op0))))))
4133 break;
4135 /* Pass the constant down and see if we can make a simplification. If
4136 we can, replace this expression with the inner simplification for
4137 possible later conversion to our or some other type. */
4138 if ((t2 = convert (TREE_TYPE (op0), c)) != 0
4139 && TREE_CODE (t2) == INTEGER_CST
4140 && ! TREE_CONSTANT_OVERFLOW (t2)
4141 && (0 != (t1 = extract_muldiv (op0, t2, code,
4142 code == MULT_EXPR
4143 ? ctype : NULL_TREE))))
4144 return t1;
4145 break;
4147 case NEGATE_EXPR: case ABS_EXPR:
4148 if ((t1 = extract_muldiv (op0, c, code, wide_type)) != 0)
4149 return fold (build1 (tcode, ctype, convert (ctype, t1)));
4150 break;
4152 case MIN_EXPR: case MAX_EXPR:
4153 /* If widening the type changes the signedness, then we can't perform
4154 this optimization as that changes the result. */
4155 if (TREE_UNSIGNED (ctype) != TREE_UNSIGNED (type))
4156 break;
4158 /* MIN (a, b) / 5 -> MIN (a / 5, b / 5) */
4159 if ((t1 = extract_muldiv (op0, c, code, wide_type)) != 0
4160 && (t2 = extract_muldiv (op1, c, code, wide_type)) != 0)
4162 if (tree_int_cst_sgn (c) < 0)
4163 tcode = (tcode == MIN_EXPR ? MAX_EXPR : MIN_EXPR);
4165 return fold (build (tcode, ctype, convert (ctype, t1),
4166 convert (ctype, t2)));
4168 break;
4170 case WITH_RECORD_EXPR:
4171 if ((t1 = extract_muldiv (TREE_OPERAND (t, 0), c, code, wide_type)) != 0)
4172 return build (WITH_RECORD_EXPR, TREE_TYPE (t1), t1,
4173 TREE_OPERAND (t, 1));
4174 break;
4176 case LSHIFT_EXPR: case RSHIFT_EXPR:
4177 /* If the second operand is constant, this is a multiplication
4178 or floor division, by a power of two, so we can treat it that
4179 way unless the multiplier or divisor overflows. */
4180 if (TREE_CODE (op1) == INTEGER_CST
4181 /* const_binop may not detect overflow correctly,
4182 so check for it explicitly here. */
4183 && TYPE_PRECISION (TREE_TYPE (size_one_node)) > TREE_INT_CST_LOW (op1)
4184 && TREE_INT_CST_HIGH (op1) == 0
4185 && 0 != (t1 = convert (ctype,
4186 const_binop (LSHIFT_EXPR, size_one_node,
4187 op1, 0)))
4188 && ! TREE_OVERFLOW (t1))
4189 return extract_muldiv (build (tcode == LSHIFT_EXPR
4190 ? MULT_EXPR : FLOOR_DIV_EXPR,
4191 ctype, convert (ctype, op0), t1),
4192 c, code, wide_type);
4193 break;
4195 case PLUS_EXPR: case MINUS_EXPR:
4196 /* See if we can eliminate the operation on both sides. If we can, we
4197 can return a new PLUS or MINUS. If we can't, the only remaining
4198 cases where we can do anything are if the second operand is a
4199 constant. */
4200 t1 = extract_muldiv (op0, c, code, wide_type);
4201 t2 = extract_muldiv (op1, c, code, wide_type);
4202 if (t1 != 0 && t2 != 0
4203 && (code == MULT_EXPR
4204 /* If not multiplication, we can only do this if both operands
4205 are divisible by c. */
4206 || (multiple_of_p (ctype, op0, c)
4207 && multiple_of_p (ctype, op1, c))))
4208 return fold (build (tcode, ctype, convert (ctype, t1),
4209 convert (ctype, t2)));
4211 /* If this was a subtraction, negate OP1 and set it to be an addition.
4212 This simplifies the logic below. */
4213 if (tcode == MINUS_EXPR)
4214 tcode = PLUS_EXPR, op1 = negate_expr (op1);
4216 if (TREE_CODE (op1) != INTEGER_CST)
4217 break;
4219 /* If either OP1 or C are negative, this optimization is not safe for
4220 some of the division and remainder types while for others we need
4221 to change the code. */
4222 if (tree_int_cst_sgn (op1) < 0 || tree_int_cst_sgn (c) < 0)
4224 if (code == CEIL_DIV_EXPR)
4225 code = FLOOR_DIV_EXPR;
4226 else if (code == FLOOR_DIV_EXPR)
4227 code = CEIL_DIV_EXPR;
4228 else if (code != MULT_EXPR
4229 && code != CEIL_MOD_EXPR && code != FLOOR_MOD_EXPR)
4230 break;
4233 /* If it's a multiply or a division/modulus operation of a multiple
4234 of our constant, do the operation and verify it doesn't overflow. */
4235 if (code == MULT_EXPR
4236 || integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
4238 op1 = const_binop (code, convert (ctype, op1), convert (ctype, c), 0);
4239 if (op1 == 0 || TREE_OVERFLOW (op1))
4240 break;
4242 else
4243 break;
4245 /* If we have an unsigned type is not a sizetype, we cannot widen
4246 the operation since it will change the result if the original
4247 computation overflowed. */
4248 if (TREE_UNSIGNED (ctype)
4249 && ! (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype))
4250 && ctype != type)
4251 break;
4253 /* If we were able to eliminate our operation from the first side,
4254 apply our operation to the second side and reform the PLUS. */
4255 if (t1 != 0 && (TREE_CODE (t1) != code || code == MULT_EXPR))
4256 return fold (build (tcode, ctype, convert (ctype, t1), op1));
4258 /* The last case is if we are a multiply. In that case, we can
4259 apply the distributive law to commute the multiply and addition
4260 if the multiplication of the constants doesn't overflow. */
4261 if (code == MULT_EXPR)
4262 return fold (build (tcode, ctype, fold (build (code, ctype,
4263 convert (ctype, op0),
4264 convert (ctype, c))),
4265 op1));
4267 break;
4269 case MULT_EXPR:
4270 /* We have a special case here if we are doing something like
4271 (C * 8) % 4 since we know that's zero. */
4272 if ((code == TRUNC_MOD_EXPR || code == CEIL_MOD_EXPR
4273 || code == FLOOR_MOD_EXPR || code == ROUND_MOD_EXPR)
4274 && TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST
4275 && integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
4276 return omit_one_operand (type, integer_zero_node, op0);
4278 /* ... fall through ... */
4280 case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR:
4281 case ROUND_DIV_EXPR: case EXACT_DIV_EXPR:
4282 /* If we can extract our operation from the LHS, do so and return a
4283 new operation. Likewise for the RHS from a MULT_EXPR. Otherwise,
4284 do something only if the second operand is a constant. */
4285 if (same_p
4286 && (t1 = extract_muldiv (op0, c, code, wide_type)) != 0)
4287 return fold (build (tcode, ctype, convert (ctype, t1),
4288 convert (ctype, op1)));
4289 else if (tcode == MULT_EXPR && code == MULT_EXPR
4290 && (t1 = extract_muldiv (op1, c, code, wide_type)) != 0)
4291 return fold (build (tcode, ctype, convert (ctype, op0),
4292 convert (ctype, t1)));
4293 else if (TREE_CODE (op1) != INTEGER_CST)
4294 return 0;
4296 /* If these are the same operation types, we can associate them
4297 assuming no overflow. */
4298 if (tcode == code
4299 && 0 != (t1 = const_binop (MULT_EXPR, convert (ctype, op1),
4300 convert (ctype, c), 0))
4301 && ! TREE_OVERFLOW (t1))
4302 return fold (build (tcode, ctype, convert (ctype, op0), t1));
4304 /* If these operations "cancel" each other, we have the main
4305 optimizations of this pass, which occur when either constant is a
4306 multiple of the other, in which case we replace this with either an
4307 operation or CODE or TCODE.
4309 If we have an unsigned type that is not a sizetype, we cannot do
4310 this since it will change the result if the original computation
4311 overflowed. */
4312 if ((! TREE_UNSIGNED (ctype)
4313 || (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype)))
4314 && ! flag_wrapv
4315 && ((code == MULT_EXPR && tcode == EXACT_DIV_EXPR)
4316 || (tcode == MULT_EXPR
4317 && code != TRUNC_MOD_EXPR && code != CEIL_MOD_EXPR
4318 && code != FLOOR_MOD_EXPR && code != ROUND_MOD_EXPR)))
4320 if (integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
4321 return fold (build (tcode, ctype, convert (ctype, op0),
4322 convert (ctype,
4323 const_binop (TRUNC_DIV_EXPR,
4324 op1, c, 0))));
4325 else if (integer_zerop (const_binop (TRUNC_MOD_EXPR, c, op1, 0)))
4326 return fold (build (code, ctype, convert (ctype, op0),
4327 convert (ctype,
4328 const_binop (TRUNC_DIV_EXPR,
4329 c, op1, 0))));
4331 break;
4333 default:
4334 break;
4337 return 0;
4340 /* If T contains a COMPOUND_EXPR which was inserted merely to evaluate
4341 S, a SAVE_EXPR, return the expression actually being evaluated. Note
4342 that we may sometimes modify the tree. */
4344 static tree
4345 strip_compound_expr (tree t, tree s)
4347 enum tree_code code = TREE_CODE (t);
4349 /* See if this is the COMPOUND_EXPR we want to eliminate. */
4350 if (code == COMPOUND_EXPR && TREE_CODE (TREE_OPERAND (t, 0)) == CONVERT_EXPR
4351 && TREE_OPERAND (TREE_OPERAND (t, 0), 0) == s)
4352 return TREE_OPERAND (t, 1);
4354 /* See if this is a COND_EXPR or a simple arithmetic operator. We
4355 don't bother handling any other types. */
4356 else if (code == COND_EXPR)
4358 TREE_OPERAND (t, 0) = strip_compound_expr (TREE_OPERAND (t, 0), s);
4359 TREE_OPERAND (t, 1) = strip_compound_expr (TREE_OPERAND (t, 1), s);
4360 TREE_OPERAND (t, 2) = strip_compound_expr (TREE_OPERAND (t, 2), s);
4362 else if (TREE_CODE_CLASS (code) == '1')
4363 TREE_OPERAND (t, 0) = strip_compound_expr (TREE_OPERAND (t, 0), s);
4364 else if (TREE_CODE_CLASS (code) == '<'
4365 || TREE_CODE_CLASS (code) == '2')
4367 TREE_OPERAND (t, 0) = strip_compound_expr (TREE_OPERAND (t, 0), s);
4368 TREE_OPERAND (t, 1) = strip_compound_expr (TREE_OPERAND (t, 1), s);
4371 return t;
4374 /* Return a node which has the indicated constant VALUE (either 0 or
4375 1), and is of the indicated TYPE. */
4377 static tree
4378 constant_boolean_node (int value, tree type)
4380 if (type == integer_type_node)
4381 return value ? integer_one_node : integer_zero_node;
4382 else if (TREE_CODE (type) == BOOLEAN_TYPE)
4383 return (*lang_hooks.truthvalue_conversion) (value ? integer_one_node :
4384 integer_zero_node);
4385 else
4387 tree t = build_int_2 (value, 0);
4389 TREE_TYPE (t) = type;
4390 return t;
4394 /* Utility function for the following routine, to see how complex a nesting of
4395 COND_EXPRs can be. EXPR is the expression and LIMIT is a count beyond which
4396 we don't care (to avoid spending too much time on complex expressions.). */
4398 static int
4399 count_cond (tree expr, int lim)
4401 int ctrue, cfalse;
4403 if (TREE_CODE (expr) != COND_EXPR)
4404 return 0;
4405 else if (lim <= 0)
4406 return 0;
4408 ctrue = count_cond (TREE_OPERAND (expr, 1), lim - 1);
4409 cfalse = count_cond (TREE_OPERAND (expr, 2), lim - 1 - ctrue);
4410 return MIN (lim, 1 + ctrue + cfalse);
4413 /* Transform `a + (b ? x : y)' into `b ? (a + x) : (a + y)'.
4414 Transform, `a + (x < y)' into `(x < y) ? (a + 1) : (a + 0)'. Here
4415 CODE corresponds to the `+', COND to the `(b ? x : y)' or `(x < y)'
4416 expression, and ARG to `a'. If COND_FIRST_P is nonzero, then the
4417 COND is the first argument to CODE; otherwise (as in the example
4418 given here), it is the second argument. TYPE is the type of the
4419 original expression. */
4421 static tree
4422 fold_binary_op_with_conditional_arg (enum tree_code code, tree type,
4423 tree cond, tree arg, int cond_first_p)
4425 tree test, true_value, false_value;
4426 tree lhs = NULL_TREE;
4427 tree rhs = NULL_TREE;
4428 /* In the end, we'll produce a COND_EXPR. Both arms of the
4429 conditional expression will be binary operations. The left-hand
4430 side of the expression to be executed if the condition is true
4431 will be pointed to by TRUE_LHS. Similarly, the right-hand side
4432 of the expression to be executed if the condition is true will be
4433 pointed to by TRUE_RHS. FALSE_LHS and FALSE_RHS are analogous --
4434 but apply to the expression to be executed if the conditional is
4435 false. */
4436 tree *true_lhs;
4437 tree *true_rhs;
4438 tree *false_lhs;
4439 tree *false_rhs;
4440 /* These are the codes to use for the left-hand side and right-hand
4441 side of the COND_EXPR. Normally, they are the same as CODE. */
4442 enum tree_code lhs_code = code;
4443 enum tree_code rhs_code = code;
4444 /* And these are the types of the expressions. */
4445 tree lhs_type = type;
4446 tree rhs_type = type;
4447 int save = 0;
4449 if (cond_first_p)
4451 true_rhs = false_rhs = &arg;
4452 true_lhs = &true_value;
4453 false_lhs = &false_value;
4455 else
4457 true_lhs = false_lhs = &arg;
4458 true_rhs = &true_value;
4459 false_rhs = &false_value;
4462 if (TREE_CODE (cond) == COND_EXPR)
4464 test = TREE_OPERAND (cond, 0);
4465 true_value = TREE_OPERAND (cond, 1);
4466 false_value = TREE_OPERAND (cond, 2);
4467 /* If this operand throws an expression, then it does not make
4468 sense to try to perform a logical or arithmetic operation
4469 involving it. Instead of building `a + throw 3' for example,
4470 we simply build `a, throw 3'. */
4471 if (VOID_TYPE_P (TREE_TYPE (true_value)))
4473 if (! cond_first_p)
4475 lhs_code = COMPOUND_EXPR;
4476 lhs_type = void_type_node;
4478 else
4479 lhs = true_value;
4481 if (VOID_TYPE_P (TREE_TYPE (false_value)))
4483 if (! cond_first_p)
4485 rhs_code = COMPOUND_EXPR;
4486 rhs_type = void_type_node;
4488 else
4489 rhs = false_value;
4492 else
4494 tree testtype = TREE_TYPE (cond);
4495 test = cond;
4496 true_value = convert (testtype, integer_one_node);
4497 false_value = convert (testtype, integer_zero_node);
4500 /* If ARG is complex we want to make sure we only evaluate it once. Though
4501 this is only required if it is volatile, it might be more efficient even
4502 if it is not. However, if we succeed in folding one part to a constant,
4503 we do not need to make this SAVE_EXPR. Since we do this optimization
4504 primarily to see if we do end up with constant and this SAVE_EXPR
4505 interferes with later optimizations, suppressing it when we can is
4506 important.
4508 If we are not in a function, we can't make a SAVE_EXPR, so don't try to
4509 do so. Don't try to see if the result is a constant if an arm is a
4510 COND_EXPR since we get exponential behavior in that case. */
4512 if (saved_expr_p (arg))
4513 save = 1;
4514 else if (lhs == 0 && rhs == 0
4515 && !TREE_CONSTANT (arg)
4516 && (*lang_hooks.decls.global_bindings_p) () == 0
4517 && ((TREE_CODE (arg) != VAR_DECL && TREE_CODE (arg) != PARM_DECL)
4518 || TREE_SIDE_EFFECTS (arg)))
4520 if (TREE_CODE (true_value) != COND_EXPR)
4521 lhs = fold (build (lhs_code, lhs_type, *true_lhs, *true_rhs));
4523 if (TREE_CODE (false_value) != COND_EXPR)
4524 rhs = fold (build (rhs_code, rhs_type, *false_lhs, *false_rhs));
4526 if ((lhs == 0 || ! TREE_CONSTANT (lhs))
4527 && (rhs == 0 || !TREE_CONSTANT (rhs)))
4529 arg = save_expr (arg);
4530 lhs = rhs = 0;
4531 save = 1;
4535 if (lhs == 0)
4536 lhs = fold (build (lhs_code, lhs_type, *true_lhs, *true_rhs));
4537 if (rhs == 0)
4538 rhs = fold (build (rhs_code, rhs_type, *false_lhs, *false_rhs));
4540 test = fold (build (COND_EXPR, type, test, lhs, rhs));
4542 if (save)
4543 return build (COMPOUND_EXPR, type,
4544 convert (void_type_node, arg),
4545 strip_compound_expr (test, arg));
4546 else
4547 return convert (type, test);
4551 /* Subroutine of fold() that checks for the addition of +/- 0.0.
4553 If !NEGATE, return true if ADDEND is +/-0.0 and, for all X of type
4554 TYPE, X + ADDEND is the same as X. If NEGATE, return true if X -
4555 ADDEND is the same as X.
4557 X + 0 and X - 0 both give X when X is NaN, infinite, or nonzero
4558 and finite. The problematic cases are when X is zero, and its mode
4559 has signed zeros. In the case of rounding towards -infinity,
4560 X - 0 is not the same as X because 0 - 0 is -0. In other rounding
4561 modes, X + 0 is not the same as X because -0 + 0 is 0. */
4563 static bool
4564 fold_real_zero_addition_p (tree type, tree addend, int negate)
4566 if (!real_zerop (addend))
4567 return false;
4569 /* Don't allow the fold with -fsignaling-nans. */
4570 if (HONOR_SNANS (TYPE_MODE (type)))
4571 return false;
4573 /* Allow the fold if zeros aren't signed, or their sign isn't important. */
4574 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
4575 return true;
4577 /* Treat x + -0 as x - 0 and x - -0 as x + 0. */
4578 if (TREE_CODE (addend) == REAL_CST
4579 && REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (addend)))
4580 negate = !negate;
4582 /* The mode has signed zeros, and we have to honor their sign.
4583 In this situation, there is only one case we can return true for.
4584 X - 0 is the same as X unless rounding towards -infinity is
4585 supported. */
4586 return negate && !HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type));
4589 /* Subroutine of fold() that checks comparisons of built-in math
4590 functions against real constants.
4592 FCODE is the DECL_FUNCTION_CODE of the built-in, CODE is the comparison
4593 operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR, GE_EXPR or LE_EXPR. TYPE
4594 is the type of the result and ARG0 and ARG1 are the operands of the
4595 comparison. ARG1 must be a TREE_REAL_CST.
4597 The function returns the constant folded tree if a simplification
4598 can be made, and NULL_TREE otherwise. */
4600 static tree
4601 fold_mathfn_compare (enum built_in_function fcode, enum tree_code code,
4602 tree type, tree arg0, tree arg1)
4604 REAL_VALUE_TYPE c;
4606 if (fcode == BUILT_IN_SQRT
4607 || fcode == BUILT_IN_SQRTF
4608 || fcode == BUILT_IN_SQRTL)
4610 tree arg = TREE_VALUE (TREE_OPERAND (arg0, 1));
4611 enum machine_mode mode = TYPE_MODE (TREE_TYPE (arg0));
4613 c = TREE_REAL_CST (arg1);
4614 if (REAL_VALUE_NEGATIVE (c))
4616 /* sqrt(x) < y is always false, if y is negative. */
4617 if (code == EQ_EXPR || code == LT_EXPR || code == LE_EXPR)
4618 return omit_one_operand (type,
4619 convert (type, integer_zero_node),
4620 arg);
4622 /* sqrt(x) > y is always true, if y is negative and we
4623 don't care about NaNs, i.e. negative values of x. */
4624 if (code == NE_EXPR || !HONOR_NANS (mode))
4625 return omit_one_operand (type,
4626 convert (type, integer_one_node),
4627 arg);
4629 /* sqrt(x) > y is the same as x >= 0, if y is negative. */
4630 return fold (build (GE_EXPR, type, arg,
4631 build_real (TREE_TYPE (arg), dconst0)));
4633 else if (code == GT_EXPR || code == GE_EXPR)
4635 REAL_VALUE_TYPE c2;
4637 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
4638 real_convert (&c2, mode, &c2);
4640 if (REAL_VALUE_ISINF (c2))
4642 /* sqrt(x) > y is x == +Inf, when y is very large. */
4643 if (HONOR_INFINITIES (mode))
4644 return fold (build (EQ_EXPR, type, arg,
4645 build_real (TREE_TYPE (arg), c2)));
4647 /* sqrt(x) > y is always false, when y is very large
4648 and we don't care about infinities. */
4649 return omit_one_operand (type,
4650 convert (type, integer_zero_node),
4651 arg);
4654 /* sqrt(x) > c is the same as x > c*c. */
4655 return fold (build (code, type, arg,
4656 build_real (TREE_TYPE (arg), c2)));
4658 else if (code == LT_EXPR || code == LE_EXPR)
4660 REAL_VALUE_TYPE c2;
4662 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
4663 real_convert (&c2, mode, &c2);
4665 if (REAL_VALUE_ISINF (c2))
4667 /* sqrt(x) < y is always true, when y is a very large
4668 value and we don't care about NaNs or Infinities. */
4669 if (! HONOR_NANS (mode) && ! HONOR_INFINITIES (mode))
4670 return omit_one_operand (type,
4671 convert (type, integer_one_node),
4672 arg);
4674 /* sqrt(x) < y is x != +Inf when y is very large and we
4675 don't care about NaNs. */
4676 if (! HONOR_NANS (mode))
4677 return fold (build (NE_EXPR, type, arg,
4678 build_real (TREE_TYPE (arg), c2)));
4680 /* sqrt(x) < y is x >= 0 when y is very large and we
4681 don't care about Infinities. */
4682 if (! HONOR_INFINITIES (mode))
4683 return fold (build (GE_EXPR, type, arg,
4684 build_real (TREE_TYPE (arg), dconst0)));
4686 /* sqrt(x) < y is x >= 0 && x != +Inf, when y is large. */
4687 if ((*lang_hooks.decls.global_bindings_p) () != 0
4688 || CONTAINS_PLACEHOLDER_P (arg))
4689 return NULL_TREE;
4691 arg = save_expr (arg);
4692 return fold (build (TRUTH_ANDIF_EXPR, type,
4693 fold (build (GE_EXPR, type, arg,
4694 build_real (TREE_TYPE (arg),
4695 dconst0))),
4696 fold (build (NE_EXPR, type, arg,
4697 build_real (TREE_TYPE (arg),
4698 c2)))));
4701 /* sqrt(x) < c is the same as x < c*c, if we ignore NaNs. */
4702 if (! HONOR_NANS (mode))
4703 return fold (build (code, type, arg,
4704 build_real (TREE_TYPE (arg), c2)));
4706 /* sqrt(x) < c is the same as x >= 0 && x < c*c. */
4707 if ((*lang_hooks.decls.global_bindings_p) () == 0
4708 && ! CONTAINS_PLACEHOLDER_P (arg))
4710 arg = save_expr (arg);
4711 return fold (build (TRUTH_ANDIF_EXPR, type,
4712 fold (build (GE_EXPR, type, arg,
4713 build_real (TREE_TYPE (arg),
4714 dconst0))),
4715 fold (build (code, type, arg,
4716 build_real (TREE_TYPE (arg),
4717 c2)))));
4722 return NULL_TREE;
4725 /* Subroutine of fold() that optimizes comparisons against Infinities,
4726 either +Inf or -Inf.
4728 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
4729 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
4730 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
4732 The function returns the constant folded tree if a simplification
4733 can be made, and NULL_TREE otherwise. */
4735 static tree
4736 fold_inf_compare (enum tree_code code, tree type, tree arg0, tree arg1)
4738 enum machine_mode mode;
4739 REAL_VALUE_TYPE max;
4740 tree temp;
4741 bool neg;
4743 mode = TYPE_MODE (TREE_TYPE (arg0));
4745 /* For negative infinity swap the sense of the comparison. */
4746 neg = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1));
4747 if (neg)
4748 code = swap_tree_comparison (code);
4750 switch (code)
4752 case GT_EXPR:
4753 /* x > +Inf is always false, if with ignore sNANs. */
4754 if (HONOR_SNANS (mode))
4755 return NULL_TREE;
4756 return omit_one_operand (type,
4757 convert (type, integer_zero_node),
4758 arg0);
4760 case LE_EXPR:
4761 /* x <= +Inf is always true, if we don't case about NaNs. */
4762 if (! HONOR_NANS (mode))
4763 return omit_one_operand (type,
4764 convert (type, integer_one_node),
4765 arg0);
4767 /* x <= +Inf is the same as x == x, i.e. isfinite(x). */
4768 if ((*lang_hooks.decls.global_bindings_p) () == 0
4769 && ! CONTAINS_PLACEHOLDER_P (arg0))
4771 arg0 = save_expr (arg0);
4772 return fold (build (EQ_EXPR, type, arg0, arg0));
4774 break;
4776 case EQ_EXPR:
4777 case GE_EXPR:
4778 /* x == +Inf and x >= +Inf are always equal to x > DBL_MAX. */
4779 real_maxval (&max, neg, mode);
4780 return fold (build (neg ? LT_EXPR : GT_EXPR, type,
4781 arg0, build_real (TREE_TYPE (arg0), max)));
4783 case LT_EXPR:
4784 /* x < +Inf is always equal to x <= DBL_MAX. */
4785 real_maxval (&max, neg, mode);
4786 return fold (build (neg ? GE_EXPR : LE_EXPR, type,
4787 arg0, build_real (TREE_TYPE (arg0), max)));
4789 case NE_EXPR:
4790 /* x != +Inf is always equal to !(x > DBL_MAX). */
4791 real_maxval (&max, neg, mode);
4792 if (! HONOR_NANS (mode))
4793 return fold (build (neg ? GE_EXPR : LE_EXPR, type,
4794 arg0, build_real (TREE_TYPE (arg0), max)));
4795 temp = fold (build (neg ? LT_EXPR : GT_EXPR, type,
4796 arg0, build_real (TREE_TYPE (arg0), max)));
4797 return fold (build1 (TRUTH_NOT_EXPR, type, temp));
4799 default:
4800 break;
4803 return NULL_TREE;
4806 /* If CODE with arguments ARG0 and ARG1 represents a single bit
4807 equality/inequality test, then return a simplified form of
4808 the test using shifts and logical operations. Otherwise return
4809 NULL. TYPE is the desired result type. */
4811 tree
4812 fold_single_bit_test (enum tree_code code, tree arg0, tree arg1,
4813 tree result_type)
4815 /* If this is a TRUTH_NOT_EXPR, it may have a single bit test inside
4816 operand 0. */
4817 if (code == TRUTH_NOT_EXPR)
4819 code = TREE_CODE (arg0);
4820 if (code != NE_EXPR && code != EQ_EXPR)
4821 return NULL_TREE;
4823 /* Extract the arguments of the EQ/NE. */
4824 arg1 = TREE_OPERAND (arg0, 1);
4825 arg0 = TREE_OPERAND (arg0, 0);
4827 /* This requires us to invert the code. */
4828 code = (code == EQ_EXPR ? NE_EXPR : EQ_EXPR);
4831 /* If this is testing a single bit, we can optimize the test. */
4832 if ((code == NE_EXPR || code == EQ_EXPR)
4833 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
4834 && integer_pow2p (TREE_OPERAND (arg0, 1)))
4836 tree inner = TREE_OPERAND (arg0, 0);
4837 tree type = TREE_TYPE (arg0);
4838 int bitnum = tree_log2 (TREE_OPERAND (arg0, 1));
4839 enum machine_mode operand_mode = TYPE_MODE (type);
4840 int ops_unsigned;
4841 tree signed_type, unsigned_type;
4842 tree arg00;
4844 /* If we have (A & C) != 0 where C is the sign bit of A, convert
4845 this into A < 0. Similarly for (A & C) == 0 into A >= 0. */
4846 arg00 = sign_bit_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1));
4847 if (arg00 != NULL_TREE)
4849 tree stype = (*lang_hooks.types.signed_type) (TREE_TYPE (arg00));
4850 return fold (build (code == EQ_EXPR ? GE_EXPR : LT_EXPR, result_type,
4851 convert (stype, arg00),
4852 convert (stype, integer_zero_node)));
4855 /* At this point, we know that arg0 is not testing the sign bit. */
4856 if (TYPE_PRECISION (type) - 1 == bitnum)
4857 abort ();
4859 /* Otherwise we have (A & C) != 0 where C is a single bit,
4860 convert that into ((A >> C2) & 1). Where C2 = log2(C).
4861 Similarly for (A & C) == 0. */
4863 /* If INNER is a right shift of a constant and it plus BITNUM does
4864 not overflow, adjust BITNUM and INNER. */
4865 if (TREE_CODE (inner) == RSHIFT_EXPR
4866 && TREE_CODE (TREE_OPERAND (inner, 1)) == INTEGER_CST
4867 && TREE_INT_CST_HIGH (TREE_OPERAND (inner, 1)) == 0
4868 && bitnum < TYPE_PRECISION (type)
4869 && 0 > compare_tree_int (TREE_OPERAND (inner, 1),
4870 bitnum - TYPE_PRECISION (type)))
4872 bitnum += TREE_INT_CST_LOW (TREE_OPERAND (inner, 1));
4873 inner = TREE_OPERAND (inner, 0);
4876 /* If we are going to be able to omit the AND below, we must do our
4877 operations as unsigned. If we must use the AND, we have a choice.
4878 Normally unsigned is faster, but for some machines signed is. */
4879 #ifdef LOAD_EXTEND_OP
4880 ops_unsigned = (LOAD_EXTEND_OP (operand_mode) == SIGN_EXTEND ? 0 : 1);
4881 #else
4882 ops_unsigned = 1;
4883 #endif
4885 signed_type = (*lang_hooks.types.type_for_mode) (operand_mode, 0);
4886 unsigned_type = (*lang_hooks.types.type_for_mode) (operand_mode, 1);
4888 if (bitnum != 0)
4889 inner = build (RSHIFT_EXPR, ops_unsigned ? unsigned_type : signed_type,
4890 inner, size_int (bitnum));
4892 if (code == EQ_EXPR)
4893 inner = build (BIT_XOR_EXPR, ops_unsigned ? unsigned_type : signed_type,
4894 inner, integer_one_node);
4896 /* Put the AND last so it can combine with more things. */
4897 inner = build (BIT_AND_EXPR, ops_unsigned ? unsigned_type : signed_type,
4898 inner, integer_one_node);
4900 /* Make sure to return the proper type. */
4901 if (TREE_TYPE (inner) != result_type)
4902 inner = convert (result_type, inner);
4904 return inner;
4906 return NULL_TREE;
4909 /* Perform constant folding and related simplification of EXPR.
4910 The related simplifications include x*1 => x, x*0 => 0, etc.,
4911 and application of the associative law.
4912 NOP_EXPR conversions may be removed freely (as long as we
4913 are careful not to change the C type of the overall expression)
4914 We cannot simplify through a CONVERT_EXPR, FIX_EXPR or FLOAT_EXPR,
4915 but we can constant-fold them if they have constant operands. */
4917 tree
4918 fold (tree expr)
4920 tree t = expr;
4921 tree t1 = NULL_TREE;
4922 tree tem;
4923 tree type = TREE_TYPE (expr);
4924 tree arg0 = NULL_TREE, arg1 = NULL_TREE;
4925 enum tree_code code = TREE_CODE (t);
4926 int kind = TREE_CODE_CLASS (code);
4927 int invert;
4928 /* WINS will be nonzero when the switch is done
4929 if all operands are constant. */
4930 int wins = 1;
4932 /* Don't try to process an RTL_EXPR since its operands aren't trees.
4933 Likewise for a SAVE_EXPR that's already been evaluated. */
4934 if (code == RTL_EXPR || (code == SAVE_EXPR && SAVE_EXPR_RTL (t) != 0))
4935 return t;
4937 /* Return right away if a constant. */
4938 if (kind == 'c')
4939 return t;
4941 #ifdef MAX_INTEGER_COMPUTATION_MODE
4942 check_max_integer_computation_mode (expr);
4943 #endif
4945 if (code == NOP_EXPR || code == FLOAT_EXPR || code == CONVERT_EXPR)
4947 tree subop;
4949 /* Special case for conversion ops that can have fixed point args. */
4950 arg0 = TREE_OPERAND (t, 0);
4952 /* Don't use STRIP_NOPS, because signedness of argument type matters. */
4953 if (arg0 != 0)
4954 STRIP_SIGN_NOPS (arg0);
4956 if (arg0 != 0 && TREE_CODE (arg0) == COMPLEX_CST)
4957 subop = TREE_REALPART (arg0);
4958 else
4959 subop = arg0;
4961 if (subop != 0 && TREE_CODE (subop) != INTEGER_CST
4962 && TREE_CODE (subop) != REAL_CST
4964 /* Note that TREE_CONSTANT isn't enough:
4965 static var addresses are constant but we can't
4966 do arithmetic on them. */
4967 wins = 0;
4969 else if (IS_EXPR_CODE_CLASS (kind) || kind == 'r')
4971 int len = first_rtl_op (code);
4972 int i;
4973 for (i = 0; i < len; i++)
4975 tree op = TREE_OPERAND (t, i);
4976 tree subop;
4978 if (op == 0)
4979 continue; /* Valid for CALL_EXPR, at least. */
4981 if (kind == '<' || code == RSHIFT_EXPR)
4983 /* Signedness matters here. Perhaps we can refine this
4984 later. */
4985 STRIP_SIGN_NOPS (op);
4987 else
4988 /* Strip any conversions that don't change the mode. */
4989 STRIP_NOPS (op);
4991 if (TREE_CODE (op) == COMPLEX_CST)
4992 subop = TREE_REALPART (op);
4993 else
4994 subop = op;
4996 if (TREE_CODE (subop) != INTEGER_CST
4997 && TREE_CODE (subop) != REAL_CST)
4998 /* Note that TREE_CONSTANT isn't enough:
4999 static var addresses are constant but we can't
5000 do arithmetic on them. */
5001 wins = 0;
5003 if (i == 0)
5004 arg0 = op;
5005 else if (i == 1)
5006 arg1 = op;
5010 /* If this is a commutative operation, and ARG0 is a constant, move it
5011 to ARG1 to reduce the number of tests below. */
5012 if ((code == PLUS_EXPR || code == MULT_EXPR || code == MIN_EXPR
5013 || code == MAX_EXPR || code == BIT_IOR_EXPR || code == BIT_XOR_EXPR
5014 || code == BIT_AND_EXPR)
5015 && (TREE_CODE (arg0) == INTEGER_CST || TREE_CODE (arg0) == REAL_CST))
5017 tem = arg0; arg0 = arg1; arg1 = tem;
5019 tem = TREE_OPERAND (t, 0); TREE_OPERAND (t, 0) = TREE_OPERAND (t, 1);
5020 TREE_OPERAND (t, 1) = tem;
5023 /* Now WINS is set as described above,
5024 ARG0 is the first operand of EXPR,
5025 and ARG1 is the second operand (if it has more than one operand).
5027 First check for cases where an arithmetic operation is applied to a
5028 compound, conditional, or comparison operation. Push the arithmetic
5029 operation inside the compound or conditional to see if any folding
5030 can then be done. Convert comparison to conditional for this purpose.
5031 The also optimizes non-constant cases that used to be done in
5032 expand_expr.
5034 Before we do that, see if this is a BIT_AND_EXPR or a BIT_IOR_EXPR,
5035 one of the operands is a comparison and the other is a comparison, a
5036 BIT_AND_EXPR with the constant 1, or a truth value. In that case, the
5037 code below would make the expression more complex. Change it to a
5038 TRUTH_{AND,OR}_EXPR. Likewise, convert a similar NE_EXPR to
5039 TRUTH_XOR_EXPR and an EQ_EXPR to the inversion of a TRUTH_XOR_EXPR. */
5041 if ((code == BIT_AND_EXPR || code == BIT_IOR_EXPR
5042 || code == EQ_EXPR || code == NE_EXPR)
5043 && ((truth_value_p (TREE_CODE (arg0))
5044 && (truth_value_p (TREE_CODE (arg1))
5045 || (TREE_CODE (arg1) == BIT_AND_EXPR
5046 && integer_onep (TREE_OPERAND (arg1, 1)))))
5047 || (truth_value_p (TREE_CODE (arg1))
5048 && (truth_value_p (TREE_CODE (arg0))
5049 || (TREE_CODE (arg0) == BIT_AND_EXPR
5050 && integer_onep (TREE_OPERAND (arg0, 1)))))))
5052 t = fold (build (code == BIT_AND_EXPR ? TRUTH_AND_EXPR
5053 : code == BIT_IOR_EXPR ? TRUTH_OR_EXPR
5054 : TRUTH_XOR_EXPR,
5055 type, arg0, arg1));
5057 if (code == EQ_EXPR)
5058 t = invert_truthvalue (t);
5060 return t;
5063 if (TREE_CODE_CLASS (code) == '1')
5065 if (TREE_CODE (arg0) == COMPOUND_EXPR)
5066 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
5067 fold (build1 (code, type, TREE_OPERAND (arg0, 1))));
5068 else if (TREE_CODE (arg0) == COND_EXPR)
5070 tree arg01 = TREE_OPERAND (arg0, 1);
5071 tree arg02 = TREE_OPERAND (arg0, 2);
5072 if (! VOID_TYPE_P (TREE_TYPE (arg01)))
5073 arg01 = fold (build1 (code, type, arg01));
5074 if (! VOID_TYPE_P (TREE_TYPE (arg02)))
5075 arg02 = fold (build1 (code, type, arg02));
5076 t = fold (build (COND_EXPR, type, TREE_OPERAND (arg0, 0),
5077 arg01, arg02));
5079 /* If this was a conversion, and all we did was to move into
5080 inside the COND_EXPR, bring it back out. But leave it if
5081 it is a conversion from integer to integer and the
5082 result precision is no wider than a word since such a
5083 conversion is cheap and may be optimized away by combine,
5084 while it couldn't if it were outside the COND_EXPR. Then return
5085 so we don't get into an infinite recursion loop taking the
5086 conversion out and then back in. */
5088 if ((code == NOP_EXPR || code == CONVERT_EXPR
5089 || code == NON_LVALUE_EXPR)
5090 && TREE_CODE (t) == COND_EXPR
5091 && TREE_CODE (TREE_OPERAND (t, 1)) == code
5092 && TREE_CODE (TREE_OPERAND (t, 2)) == code
5093 && ! VOID_TYPE_P (TREE_OPERAND (t, 1))
5094 && ! VOID_TYPE_P (TREE_OPERAND (t, 2))
5095 && (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0))
5096 == TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 2), 0)))
5097 && ! (INTEGRAL_TYPE_P (TREE_TYPE (t))
5098 && (INTEGRAL_TYPE_P
5099 (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0))))
5100 && TYPE_PRECISION (TREE_TYPE (t)) <= BITS_PER_WORD))
5101 t = build1 (code, type,
5102 build (COND_EXPR,
5103 TREE_TYPE (TREE_OPERAND
5104 (TREE_OPERAND (t, 1), 0)),
5105 TREE_OPERAND (t, 0),
5106 TREE_OPERAND (TREE_OPERAND (t, 1), 0),
5107 TREE_OPERAND (TREE_OPERAND (t, 2), 0)));
5108 return t;
5110 else if (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<')
5111 return fold (build (COND_EXPR, type, arg0,
5112 fold (build1 (code, type, integer_one_node)),
5113 fold (build1 (code, type, integer_zero_node))));
5115 else if (TREE_CODE_CLASS (code) == '<'
5116 && TREE_CODE (arg0) == COMPOUND_EXPR)
5117 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
5118 fold (build (code, type, TREE_OPERAND (arg0, 1), arg1)));
5119 else if (TREE_CODE_CLASS (code) == '<'
5120 && TREE_CODE (arg1) == COMPOUND_EXPR)
5121 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
5122 fold (build (code, type, arg0, TREE_OPERAND (arg1, 1))));
5123 else if (TREE_CODE_CLASS (code) == '2'
5124 || TREE_CODE_CLASS (code) == '<')
5126 if (TREE_CODE (arg1) == COMPOUND_EXPR
5127 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg1, 0))
5128 && ! TREE_SIDE_EFFECTS (arg0))
5129 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
5130 fold (build (code, type,
5131 arg0, TREE_OPERAND (arg1, 1))));
5132 else if ((TREE_CODE (arg1) == COND_EXPR
5133 || (TREE_CODE_CLASS (TREE_CODE (arg1)) == '<'
5134 && TREE_CODE_CLASS (code) != '<'))
5135 && (TREE_CODE (arg0) != COND_EXPR
5136 || count_cond (arg0, 25) + count_cond (arg1, 25) <= 25)
5137 && (! TREE_SIDE_EFFECTS (arg0)
5138 || ((*lang_hooks.decls.global_bindings_p) () == 0
5139 && ! CONTAINS_PLACEHOLDER_P (arg0))))
5140 return
5141 fold_binary_op_with_conditional_arg (code, type, arg1, arg0,
5142 /*cond_first_p=*/0);
5143 else if (TREE_CODE (arg0) == COMPOUND_EXPR)
5144 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
5145 fold (build (code, type, TREE_OPERAND (arg0, 1), arg1)));
5146 else if ((TREE_CODE (arg0) == COND_EXPR
5147 || (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
5148 && TREE_CODE_CLASS (code) != '<'))
5149 && (TREE_CODE (arg1) != COND_EXPR
5150 || count_cond (arg0, 25) + count_cond (arg1, 25) <= 25)
5151 && (! TREE_SIDE_EFFECTS (arg1)
5152 || ((*lang_hooks.decls.global_bindings_p) () == 0
5153 && ! CONTAINS_PLACEHOLDER_P (arg1))))
5154 return
5155 fold_binary_op_with_conditional_arg (code, type, arg0, arg1,
5156 /*cond_first_p=*/1);
5159 switch (code)
5161 case INTEGER_CST:
5162 case REAL_CST:
5163 case VECTOR_CST:
5164 case STRING_CST:
5165 case COMPLEX_CST:
5166 case CONSTRUCTOR:
5167 return t;
5169 case CONST_DECL:
5170 return fold (DECL_INITIAL (t));
5172 case NOP_EXPR:
5173 case FLOAT_EXPR:
5174 case CONVERT_EXPR:
5175 case FIX_TRUNC_EXPR:
5176 /* Other kinds of FIX are not handled properly by fold_convert. */
5178 if (TREE_TYPE (TREE_OPERAND (t, 0)) == TREE_TYPE (t))
5179 return TREE_OPERAND (t, 0);
5181 /* Handle cases of two conversions in a row. */
5182 if (TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
5183 || TREE_CODE (TREE_OPERAND (t, 0)) == CONVERT_EXPR)
5185 tree inside_type = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5186 tree inter_type = TREE_TYPE (TREE_OPERAND (t, 0));
5187 tree final_type = TREE_TYPE (t);
5188 int inside_int = INTEGRAL_TYPE_P (inside_type);
5189 int inside_ptr = POINTER_TYPE_P (inside_type);
5190 int inside_float = FLOAT_TYPE_P (inside_type);
5191 unsigned int inside_prec = TYPE_PRECISION (inside_type);
5192 int inside_unsignedp = TREE_UNSIGNED (inside_type);
5193 int inter_int = INTEGRAL_TYPE_P (inter_type);
5194 int inter_ptr = POINTER_TYPE_P (inter_type);
5195 int inter_float = FLOAT_TYPE_P (inter_type);
5196 unsigned int inter_prec = TYPE_PRECISION (inter_type);
5197 int inter_unsignedp = TREE_UNSIGNED (inter_type);
5198 int final_int = INTEGRAL_TYPE_P (final_type);
5199 int final_ptr = POINTER_TYPE_P (final_type);
5200 int final_float = FLOAT_TYPE_P (final_type);
5201 unsigned int final_prec = TYPE_PRECISION (final_type);
5202 int final_unsignedp = TREE_UNSIGNED (final_type);
5204 /* In addition to the cases of two conversions in a row
5205 handled below, if we are converting something to its own
5206 type via an object of identical or wider precision, neither
5207 conversion is needed. */
5208 if (TYPE_MAIN_VARIANT (inside_type) == TYPE_MAIN_VARIANT (final_type)
5209 && ((inter_int && final_int) || (inter_float && final_float))
5210 && inter_prec >= final_prec)
5211 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5213 /* Likewise, if the intermediate and final types are either both
5214 float or both integer, we don't need the middle conversion if
5215 it is wider than the final type and doesn't change the signedness
5216 (for integers). Avoid this if the final type is a pointer
5217 since then we sometimes need the inner conversion. Likewise if
5218 the outer has a precision not equal to the size of its mode. */
5219 if ((((inter_int || inter_ptr) && (inside_int || inside_ptr))
5220 || (inter_float && inside_float))
5221 && inter_prec >= inside_prec
5222 && (inter_float || inter_unsignedp == inside_unsignedp)
5223 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (final_type))
5224 && TYPE_MODE (final_type) == TYPE_MODE (inter_type))
5225 && ! final_ptr)
5226 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5228 /* If we have a sign-extension of a zero-extended value, we can
5229 replace that by a single zero-extension. */
5230 if (inside_int && inter_int && final_int
5231 && inside_prec < inter_prec && inter_prec < final_prec
5232 && inside_unsignedp && !inter_unsignedp)
5233 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5235 /* Two conversions in a row are not needed unless:
5236 - some conversion is floating-point (overstrict for now), or
5237 - the intermediate type is narrower than both initial and
5238 final, or
5239 - the intermediate type and innermost type differ in signedness,
5240 and the outermost type is wider than the intermediate, or
5241 - the initial type is a pointer type and the precisions of the
5242 intermediate and final types differ, or
5243 - the final type is a pointer type and the precisions of the
5244 initial and intermediate types differ. */
5245 if (! inside_float && ! inter_float && ! final_float
5246 && (inter_prec > inside_prec || inter_prec > final_prec)
5247 && ! (inside_int && inter_int
5248 && inter_unsignedp != inside_unsignedp
5249 && inter_prec < final_prec)
5250 && ((inter_unsignedp && inter_prec > inside_prec)
5251 == (final_unsignedp && final_prec > inter_prec))
5252 && ! (inside_ptr && inter_prec != final_prec)
5253 && ! (final_ptr && inside_prec != inter_prec)
5254 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (final_type))
5255 && TYPE_MODE (final_type) == TYPE_MODE (inter_type))
5256 && ! final_ptr)
5257 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5260 if (TREE_CODE (TREE_OPERAND (t, 0)) == MODIFY_EXPR
5261 && TREE_CONSTANT (TREE_OPERAND (TREE_OPERAND (t, 0), 1))
5262 /* Detect assigning a bitfield. */
5263 && !(TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 0)) == COMPONENT_REF
5264 && DECL_BIT_FIELD (TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 0), 0), 1))))
5266 /* Don't leave an assignment inside a conversion
5267 unless assigning a bitfield. */
5268 tree prev = TREE_OPERAND (t, 0);
5269 TREE_OPERAND (t, 0) = TREE_OPERAND (prev, 1);
5270 /* First do the assignment, then return converted constant. */
5271 t = build (COMPOUND_EXPR, TREE_TYPE (t), prev, fold (t));
5272 TREE_USED (t) = 1;
5273 return t;
5276 /* Convert (T)(x & c) into (T)x & (T)c, if c is an integer
5277 constants (if x has signed type, the sign bit cannot be set
5278 in c). This folds extension into the BIT_AND_EXPR. */
5279 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
5280 && TREE_CODE (TREE_TYPE (t)) != BOOLEAN_TYPE
5281 && TREE_CODE (TREE_OPERAND (t, 0)) == BIT_AND_EXPR
5282 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 1)) == INTEGER_CST)
5284 tree and = TREE_OPERAND (t, 0);
5285 tree and0 = TREE_OPERAND (and, 0), and1 = TREE_OPERAND (and, 1);
5286 int change = 0;
5288 if (TREE_UNSIGNED (TREE_TYPE (and))
5289 || (TYPE_PRECISION (TREE_TYPE (t))
5290 <= TYPE_PRECISION (TREE_TYPE (and))))
5291 change = 1;
5292 else if (TYPE_PRECISION (TREE_TYPE (and1))
5293 <= HOST_BITS_PER_WIDE_INT
5294 && host_integerp (and1, 1))
5296 unsigned HOST_WIDE_INT cst;
5298 cst = tree_low_cst (and1, 1);
5299 cst &= (HOST_WIDE_INT) -1
5300 << (TYPE_PRECISION (TREE_TYPE (and1)) - 1);
5301 change = (cst == 0);
5302 #ifdef LOAD_EXTEND_OP
5303 if (change
5304 && (LOAD_EXTEND_OP (TYPE_MODE (TREE_TYPE (and0)))
5305 == ZERO_EXTEND))
5307 tree uns = (*lang_hooks.types.unsigned_type) (TREE_TYPE (and0));
5308 and0 = convert (uns, and0);
5309 and1 = convert (uns, and1);
5311 #endif
5313 if (change)
5314 return fold (build (BIT_AND_EXPR, TREE_TYPE (t),
5315 convert (TREE_TYPE (t), and0),
5316 convert (TREE_TYPE (t), and1)));
5319 if (!wins)
5321 TREE_CONSTANT (t) = TREE_CONSTANT (arg0);
5322 return t;
5324 return fold_convert (t, arg0);
5326 case VIEW_CONVERT_EXPR:
5327 if (TREE_CODE (TREE_OPERAND (t, 0)) == VIEW_CONVERT_EXPR)
5328 return build1 (VIEW_CONVERT_EXPR, type,
5329 TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5330 return t;
5332 case COMPONENT_REF:
5333 if (TREE_CODE (arg0) == CONSTRUCTOR
5334 && ! type_contains_placeholder_p (TREE_TYPE (arg0)))
5336 tree m = purpose_member (arg1, CONSTRUCTOR_ELTS (arg0));
5337 if (m)
5338 t = TREE_VALUE (m);
5340 return t;
5342 case RANGE_EXPR:
5343 TREE_CONSTANT (t) = wins;
5344 return t;
5346 case NEGATE_EXPR:
5347 if (wins)
5349 if (TREE_CODE (arg0) == INTEGER_CST)
5351 unsigned HOST_WIDE_INT low;
5352 HOST_WIDE_INT high;
5353 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
5354 TREE_INT_CST_HIGH (arg0),
5355 &low, &high);
5356 t = build_int_2 (low, high);
5357 TREE_TYPE (t) = type;
5358 TREE_OVERFLOW (t)
5359 = (TREE_OVERFLOW (arg0)
5360 | force_fit_type (t, overflow && !TREE_UNSIGNED (type)));
5361 TREE_CONSTANT_OVERFLOW (t)
5362 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg0);
5364 else if (TREE_CODE (arg0) == REAL_CST)
5365 t = build_real (type, REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
5367 else if (TREE_CODE (arg0) == NEGATE_EXPR)
5368 return TREE_OPERAND (arg0, 0);
5369 /* Convert -((double)float) into (double)(-float). */
5370 else if (TREE_CODE (arg0) == NOP_EXPR
5371 && TREE_CODE (type) == REAL_TYPE)
5373 tree targ0 = strip_float_extensions (arg0);
5374 if (targ0 != arg0)
5375 return convert (type, build1 (NEGATE_EXPR, TREE_TYPE (targ0), targ0));
5379 /* Convert - (a - b) to (b - a) for non-floating-point. */
5380 else if (TREE_CODE (arg0) == MINUS_EXPR
5381 && (! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations))
5382 return build (MINUS_EXPR, type, TREE_OPERAND (arg0, 1),
5383 TREE_OPERAND (arg0, 0));
5385 /* Convert -f(x) into f(-x) where f is sin, tan or atan. */
5386 switch (builtin_mathfn_code (arg0))
5388 case BUILT_IN_SIN:
5389 case BUILT_IN_SINF:
5390 case BUILT_IN_SINL:
5391 case BUILT_IN_TAN:
5392 case BUILT_IN_TANF:
5393 case BUILT_IN_TANL:
5394 case BUILT_IN_ATAN:
5395 case BUILT_IN_ATANF:
5396 case BUILT_IN_ATANL:
5397 if (negate_expr_p (TREE_VALUE (TREE_OPERAND (arg0, 1))))
5399 tree fndecl, arg, arglist;
5401 fndecl = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
5402 arg = TREE_VALUE (TREE_OPERAND (arg0, 1));
5403 arg = fold (build1 (NEGATE_EXPR, type, arg));
5404 arglist = build_tree_list (NULL_TREE, arg);
5405 return build_function_call_expr (fndecl, arglist);
5407 break;
5409 default:
5410 break;
5412 return t;
5414 case ABS_EXPR:
5415 if (wins)
5417 if (TREE_CODE (arg0) == INTEGER_CST)
5419 /* If the value is unsigned, then the absolute value is
5420 the same as the ordinary value. */
5421 if (TREE_UNSIGNED (type))
5422 return arg0;
5423 /* Similarly, if the value is non-negative. */
5424 else if (INT_CST_LT (integer_minus_one_node, arg0))
5425 return arg0;
5426 /* If the value is negative, then the absolute value is
5427 its negation. */
5428 else
5430 unsigned HOST_WIDE_INT low;
5431 HOST_WIDE_INT high;
5432 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
5433 TREE_INT_CST_HIGH (arg0),
5434 &low, &high);
5435 t = build_int_2 (low, high);
5436 TREE_TYPE (t) = type;
5437 TREE_OVERFLOW (t)
5438 = (TREE_OVERFLOW (arg0)
5439 | force_fit_type (t, overflow));
5440 TREE_CONSTANT_OVERFLOW (t)
5441 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg0);
5444 else if (TREE_CODE (arg0) == REAL_CST)
5446 if (REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg0)))
5447 t = build_real (type,
5448 REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
5451 else if (TREE_CODE (arg0) == NEGATE_EXPR)
5452 return fold (build1 (ABS_EXPR, type, TREE_OPERAND (arg0, 0)));
5453 /* Convert fabs((double)float) into (double)fabsf(float). */
5454 else if (TREE_CODE (arg0) == NOP_EXPR
5455 && TREE_CODE (type) == REAL_TYPE)
5457 tree targ0 = strip_float_extensions (arg0);
5458 if (targ0 != arg0)
5459 return convert (type, fold (build1 (ABS_EXPR, TREE_TYPE (targ0),
5460 targ0)));
5462 else if (tree_expr_nonnegative_p (arg0))
5463 return arg0;
5464 return t;
5466 case CONJ_EXPR:
5467 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
5468 return convert (type, arg0);
5469 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
5470 return build (COMPLEX_EXPR, type,
5471 TREE_OPERAND (arg0, 0),
5472 negate_expr (TREE_OPERAND (arg0, 1)));
5473 else if (TREE_CODE (arg0) == COMPLEX_CST)
5474 return build_complex (type, TREE_REALPART (arg0),
5475 negate_expr (TREE_IMAGPART (arg0)));
5476 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
5477 return fold (build (TREE_CODE (arg0), type,
5478 fold (build1 (CONJ_EXPR, type,
5479 TREE_OPERAND (arg0, 0))),
5480 fold (build1 (CONJ_EXPR,
5481 type, TREE_OPERAND (arg0, 1)))));
5482 else if (TREE_CODE (arg0) == CONJ_EXPR)
5483 return TREE_OPERAND (arg0, 0);
5484 return t;
5486 case BIT_NOT_EXPR:
5487 if (wins)
5489 t = build_int_2 (~ TREE_INT_CST_LOW (arg0),
5490 ~ TREE_INT_CST_HIGH (arg0));
5491 TREE_TYPE (t) = type;
5492 force_fit_type (t, 0);
5493 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg0);
5494 TREE_CONSTANT_OVERFLOW (t) = TREE_CONSTANT_OVERFLOW (arg0);
5496 else if (TREE_CODE (arg0) == BIT_NOT_EXPR)
5497 return TREE_OPERAND (arg0, 0);
5498 return t;
5500 case PLUS_EXPR:
5501 /* A + (-B) -> A - B */
5502 if (TREE_CODE (arg1) == NEGATE_EXPR)
5503 return fold (build (MINUS_EXPR, type, arg0, TREE_OPERAND (arg1, 0)));
5504 /* (-A) + B -> B - A */
5505 if (TREE_CODE (arg0) == NEGATE_EXPR)
5506 return fold (build (MINUS_EXPR, type, arg1, TREE_OPERAND (arg0, 0)));
5507 else if (! FLOAT_TYPE_P (type))
5509 if (integer_zerop (arg1))
5510 return non_lvalue (convert (type, arg0));
5512 /* If we are adding two BIT_AND_EXPR's, both of which are and'ing
5513 with a constant, and the two constants have no bits in common,
5514 we should treat this as a BIT_IOR_EXPR since this may produce more
5515 simplifications. */
5516 if (TREE_CODE (arg0) == BIT_AND_EXPR
5517 && TREE_CODE (arg1) == BIT_AND_EXPR
5518 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
5519 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
5520 && integer_zerop (const_binop (BIT_AND_EXPR,
5521 TREE_OPERAND (arg0, 1),
5522 TREE_OPERAND (arg1, 1), 0)))
5524 code = BIT_IOR_EXPR;
5525 goto bit_ior;
5528 /* Reassociate (plus (plus (mult) (foo)) (mult)) as
5529 (plus (plus (mult) (mult)) (foo)) so that we can
5530 take advantage of the factoring cases below. */
5531 if ((TREE_CODE (arg0) == PLUS_EXPR
5532 && TREE_CODE (arg1) == MULT_EXPR)
5533 || (TREE_CODE (arg1) == PLUS_EXPR
5534 && TREE_CODE (arg0) == MULT_EXPR))
5536 tree parg0, parg1, parg, marg;
5538 if (TREE_CODE (arg0) == PLUS_EXPR)
5539 parg = arg0, marg = arg1;
5540 else
5541 parg = arg1, marg = arg0;
5542 parg0 = TREE_OPERAND (parg, 0);
5543 parg1 = TREE_OPERAND (parg, 1);
5544 STRIP_NOPS (parg0);
5545 STRIP_NOPS (parg1);
5547 if (TREE_CODE (parg0) == MULT_EXPR
5548 && TREE_CODE (parg1) != MULT_EXPR)
5549 return fold (build (PLUS_EXPR, type,
5550 fold (build (PLUS_EXPR, type,
5551 convert (type, parg0),
5552 convert (type, marg))),
5553 convert (type, parg1)));
5554 if (TREE_CODE (parg0) != MULT_EXPR
5555 && TREE_CODE (parg1) == MULT_EXPR)
5556 return fold (build (PLUS_EXPR, type,
5557 fold (build (PLUS_EXPR, type,
5558 convert (type, parg1),
5559 convert (type, marg))),
5560 convert (type, parg0)));
5563 if (TREE_CODE (arg0) == MULT_EXPR && TREE_CODE (arg1) == MULT_EXPR)
5565 tree arg00, arg01, arg10, arg11;
5566 tree alt0 = NULL_TREE, alt1 = NULL_TREE, same;
5568 /* (A * C) + (B * C) -> (A+B) * C.
5569 We are most concerned about the case where C is a constant,
5570 but other combinations show up during loop reduction. Since
5571 it is not difficult, try all four possibilities. */
5573 arg00 = TREE_OPERAND (arg0, 0);
5574 arg01 = TREE_OPERAND (arg0, 1);
5575 arg10 = TREE_OPERAND (arg1, 0);
5576 arg11 = TREE_OPERAND (arg1, 1);
5577 same = NULL_TREE;
5579 if (operand_equal_p (arg01, arg11, 0))
5580 same = arg01, alt0 = arg00, alt1 = arg10;
5581 else if (operand_equal_p (arg00, arg10, 0))
5582 same = arg00, alt0 = arg01, alt1 = arg11;
5583 else if (operand_equal_p (arg00, arg11, 0))
5584 same = arg00, alt0 = arg01, alt1 = arg10;
5585 else if (operand_equal_p (arg01, arg10, 0))
5586 same = arg01, alt0 = arg00, alt1 = arg11;
5588 /* No identical multiplicands; see if we can find a common
5589 power-of-two factor in non-power-of-two multiplies. This
5590 can help in multi-dimensional array access. */
5591 else if (TREE_CODE (arg01) == INTEGER_CST
5592 && TREE_CODE (arg11) == INTEGER_CST
5593 && TREE_INT_CST_HIGH (arg01) == 0
5594 && TREE_INT_CST_HIGH (arg11) == 0)
5596 HOST_WIDE_INT int01, int11, tmp;
5597 int01 = TREE_INT_CST_LOW (arg01);
5598 int11 = TREE_INT_CST_LOW (arg11);
5600 /* Move min of absolute values to int11. */
5601 if ((int01 >= 0 ? int01 : -int01)
5602 < (int11 >= 0 ? int11 : -int11))
5604 tmp = int01, int01 = int11, int11 = tmp;
5605 alt0 = arg00, arg00 = arg10, arg10 = alt0;
5606 alt0 = arg01, arg01 = arg11, arg11 = alt0;
5609 if (exact_log2 (int11) > 0 && int01 % int11 == 0)
5611 alt0 = fold (build (MULT_EXPR, type, arg00,
5612 build_int_2 (int01 / int11, 0)));
5613 alt1 = arg10;
5614 same = arg11;
5618 if (same)
5619 return fold (build (MULT_EXPR, type,
5620 fold (build (PLUS_EXPR, type, alt0, alt1)),
5621 same));
5625 /* See if ARG1 is zero and X + ARG1 reduces to X. */
5626 else if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 0))
5627 return non_lvalue (convert (type, arg0));
5629 /* Likewise if the operands are reversed. */
5630 else if (fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
5631 return non_lvalue (convert (type, arg1));
5633 bit_rotate:
5634 /* (A << C1) + (A >> C2) if A is unsigned and C1+C2 is the size of A
5635 is a rotate of A by C1 bits. */
5636 /* (A << B) + (A >> (Z - B)) if A is unsigned and Z is the size of A
5637 is a rotate of A by B bits. */
5639 enum tree_code code0, code1;
5640 code0 = TREE_CODE (arg0);
5641 code1 = TREE_CODE (arg1);
5642 if (((code0 == RSHIFT_EXPR && code1 == LSHIFT_EXPR)
5643 || (code1 == RSHIFT_EXPR && code0 == LSHIFT_EXPR))
5644 && operand_equal_p (TREE_OPERAND (arg0, 0),
5645 TREE_OPERAND (arg1, 0), 0)
5646 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
5648 tree tree01, tree11;
5649 enum tree_code code01, code11;
5651 tree01 = TREE_OPERAND (arg0, 1);
5652 tree11 = TREE_OPERAND (arg1, 1);
5653 STRIP_NOPS (tree01);
5654 STRIP_NOPS (tree11);
5655 code01 = TREE_CODE (tree01);
5656 code11 = TREE_CODE (tree11);
5657 if (code01 == INTEGER_CST
5658 && code11 == INTEGER_CST
5659 && TREE_INT_CST_HIGH (tree01) == 0
5660 && TREE_INT_CST_HIGH (tree11) == 0
5661 && ((TREE_INT_CST_LOW (tree01) + TREE_INT_CST_LOW (tree11))
5662 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)))))
5663 return build (LROTATE_EXPR, type, TREE_OPERAND (arg0, 0),
5664 code0 == LSHIFT_EXPR ? tree01 : tree11);
5665 else if (code11 == MINUS_EXPR)
5667 tree tree110, tree111;
5668 tree110 = TREE_OPERAND (tree11, 0);
5669 tree111 = TREE_OPERAND (tree11, 1);
5670 STRIP_NOPS (tree110);
5671 STRIP_NOPS (tree111);
5672 if (TREE_CODE (tree110) == INTEGER_CST
5673 && 0 == compare_tree_int (tree110,
5674 TYPE_PRECISION
5675 (TREE_TYPE (TREE_OPERAND
5676 (arg0, 0))))
5677 && operand_equal_p (tree01, tree111, 0))
5678 return build ((code0 == LSHIFT_EXPR
5679 ? LROTATE_EXPR
5680 : RROTATE_EXPR),
5681 type, TREE_OPERAND (arg0, 0), tree01);
5683 else if (code01 == MINUS_EXPR)
5685 tree tree010, tree011;
5686 tree010 = TREE_OPERAND (tree01, 0);
5687 tree011 = TREE_OPERAND (tree01, 1);
5688 STRIP_NOPS (tree010);
5689 STRIP_NOPS (tree011);
5690 if (TREE_CODE (tree010) == INTEGER_CST
5691 && 0 == compare_tree_int (tree010,
5692 TYPE_PRECISION
5693 (TREE_TYPE (TREE_OPERAND
5694 (arg0, 0))))
5695 && operand_equal_p (tree11, tree011, 0))
5696 return build ((code0 != LSHIFT_EXPR
5697 ? LROTATE_EXPR
5698 : RROTATE_EXPR),
5699 type, TREE_OPERAND (arg0, 0), tree11);
5704 associate:
5705 /* In most languages, can't associate operations on floats through
5706 parentheses. Rather than remember where the parentheses were, we
5707 don't associate floats at all. It shouldn't matter much. However,
5708 associating multiplications is only very slightly inaccurate, so do
5709 that if -funsafe-math-optimizations is specified. */
5711 if (! wins
5712 && (! FLOAT_TYPE_P (type)
5713 || (flag_unsafe_math_optimizations && code == MULT_EXPR)))
5715 tree var0, con0, lit0, minus_lit0;
5716 tree var1, con1, lit1, minus_lit1;
5718 /* Split both trees into variables, constants, and literals. Then
5719 associate each group together, the constants with literals,
5720 then the result with variables. This increases the chances of
5721 literals being recombined later and of generating relocatable
5722 expressions for the sum of a constant and literal. */
5723 var0 = split_tree (arg0, code, &con0, &lit0, &minus_lit0, 0);
5724 var1 = split_tree (arg1, code, &con1, &lit1, &minus_lit1,
5725 code == MINUS_EXPR);
5727 /* Only do something if we found more than two objects. Otherwise,
5728 nothing has changed and we risk infinite recursion. */
5729 if (2 < ((var0 != 0) + (var1 != 0)
5730 + (con0 != 0) + (con1 != 0)
5731 + (lit0 != 0) + (lit1 != 0)
5732 + (minus_lit0 != 0) + (minus_lit1 != 0)))
5734 /* Recombine MINUS_EXPR operands by using PLUS_EXPR. */
5735 if (code == MINUS_EXPR)
5736 code = PLUS_EXPR;
5738 var0 = associate_trees (var0, var1, code, type);
5739 con0 = associate_trees (con0, con1, code, type);
5740 lit0 = associate_trees (lit0, lit1, code, type);
5741 minus_lit0 = associate_trees (minus_lit0, minus_lit1, code, type);
5743 /* Preserve the MINUS_EXPR if the negative part of the literal is
5744 greater than the positive part. Otherwise, the multiplicative
5745 folding code (i.e extract_muldiv) may be fooled in case
5746 unsigned constants are subtracted, like in the following
5747 example: ((X*2 + 4) - 8U)/2. */
5748 if (minus_lit0 && lit0)
5750 if (tree_int_cst_lt (lit0, minus_lit0))
5752 minus_lit0 = associate_trees (minus_lit0, lit0,
5753 MINUS_EXPR, type);
5754 lit0 = 0;
5756 else
5758 lit0 = associate_trees (lit0, minus_lit0,
5759 MINUS_EXPR, type);
5760 minus_lit0 = 0;
5763 if (minus_lit0)
5765 if (con0 == 0)
5766 return convert (type, associate_trees (var0, minus_lit0,
5767 MINUS_EXPR, type));
5768 else
5770 con0 = associate_trees (con0, minus_lit0,
5771 MINUS_EXPR, type);
5772 return convert (type, associate_trees (var0, con0,
5773 PLUS_EXPR, type));
5777 con0 = associate_trees (con0, lit0, code, type);
5778 return convert (type, associate_trees (var0, con0, code, type));
5782 binary:
5783 if (wins)
5784 t1 = const_binop (code, arg0, arg1, 0);
5785 if (t1 != NULL_TREE)
5787 /* The return value should always have
5788 the same type as the original expression. */
5789 if (TREE_TYPE (t1) != TREE_TYPE (t))
5790 t1 = convert (TREE_TYPE (t), t1);
5792 return t1;
5794 return t;
5796 case MINUS_EXPR:
5797 /* A - (-B) -> A + B */
5798 if (TREE_CODE (arg1) == NEGATE_EXPR)
5799 return fold (build (PLUS_EXPR, type, arg0, TREE_OPERAND (arg1, 0)));
5800 /* (-A) - B -> (-B) - A where B is easily negated and we can swap. */
5801 if (TREE_CODE (arg0) == NEGATE_EXPR
5802 && (FLOAT_TYPE_P (type)
5803 || (INTEGRAL_TYPE_P (type) && flag_wrapv && !flag_trapv))
5804 && negate_expr_p (arg1)
5805 && (! TREE_SIDE_EFFECTS (arg0) || TREE_CONSTANT (arg1))
5806 && (! TREE_SIDE_EFFECTS (arg1) || TREE_CONSTANT (arg0)))
5807 return fold (build (MINUS_EXPR, type, negate_expr (arg1),
5808 TREE_OPERAND (arg0, 0)));
5810 if (! FLOAT_TYPE_P (type))
5812 if (! wins && integer_zerop (arg0))
5813 return negate_expr (convert (type, arg1));
5814 if (integer_zerop (arg1))
5815 return non_lvalue (convert (type, arg0));
5817 /* (A * C) - (B * C) -> (A-B) * C. Since we are most concerned
5818 about the case where C is a constant, just try one of the
5819 four possibilities. */
5821 if (TREE_CODE (arg0) == MULT_EXPR && TREE_CODE (arg1) == MULT_EXPR
5822 && operand_equal_p (TREE_OPERAND (arg0, 1),
5823 TREE_OPERAND (arg1, 1), 0))
5824 return fold (build (MULT_EXPR, type,
5825 fold (build (MINUS_EXPR, type,
5826 TREE_OPERAND (arg0, 0),
5827 TREE_OPERAND (arg1, 0))),
5828 TREE_OPERAND (arg0, 1)));
5830 /* Fold A - (A & B) into ~B & A. */
5831 if (!TREE_SIDE_EFFECTS (arg0)
5832 && TREE_CODE (arg1) == BIT_AND_EXPR)
5834 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0))
5835 return fold (build (BIT_AND_EXPR, type,
5836 fold (build1 (BIT_NOT_EXPR, type,
5837 TREE_OPERAND (arg1, 0))),
5838 arg0));
5839 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
5840 return fold (build (BIT_AND_EXPR, type,
5841 fold (build1 (BIT_NOT_EXPR, type,
5842 TREE_OPERAND (arg1, 1))),
5843 arg0));
5847 /* See if ARG1 is zero and X - ARG1 reduces to X. */
5848 else if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 1))
5849 return non_lvalue (convert (type, arg0));
5851 /* (ARG0 - ARG1) is the same as (-ARG1 + ARG0). So check whether
5852 ARG0 is zero and X + ARG0 reduces to X, since that would mean
5853 (-ARG1 + ARG0) reduces to -ARG1. */
5854 else if (!wins && fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
5855 return negate_expr (convert (type, arg1));
5857 /* Fold &x - &x. This can happen from &x.foo - &x.
5858 This is unsafe for certain floats even in non-IEEE formats.
5859 In IEEE, it is unsafe because it does wrong for NaNs.
5860 Also note that operand_equal_p is always false if an operand
5861 is volatile. */
5863 if ((! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
5864 && operand_equal_p (arg0, arg1, 0))
5865 return convert (type, integer_zero_node);
5867 goto associate;
5869 case MULT_EXPR:
5870 /* (-A) * (-B) -> A * B */
5871 if (TREE_CODE (arg0) == NEGATE_EXPR && TREE_CODE (arg1) == NEGATE_EXPR)
5872 return fold (build (MULT_EXPR, type, TREE_OPERAND (arg0, 0),
5873 TREE_OPERAND (arg1, 0)));
5875 if (! FLOAT_TYPE_P (type))
5877 if (integer_zerop (arg1))
5878 return omit_one_operand (type, arg1, arg0);
5879 if (integer_onep (arg1))
5880 return non_lvalue (convert (type, arg0));
5882 /* (a * (1 << b)) is (a << b) */
5883 if (TREE_CODE (arg1) == LSHIFT_EXPR
5884 && integer_onep (TREE_OPERAND (arg1, 0)))
5885 return fold (build (LSHIFT_EXPR, type, arg0,
5886 TREE_OPERAND (arg1, 1)));
5887 if (TREE_CODE (arg0) == LSHIFT_EXPR
5888 && integer_onep (TREE_OPERAND (arg0, 0)))
5889 return fold (build (LSHIFT_EXPR, type, arg1,
5890 TREE_OPERAND (arg0, 1)));
5892 if (TREE_CODE (arg1) == INTEGER_CST
5893 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0),
5894 convert (type, arg1),
5895 code, NULL_TREE)))
5896 return convert (type, tem);
5899 else
5901 /* Maybe fold x * 0 to 0. The expressions aren't the same
5902 when x is NaN, since x * 0 is also NaN. Nor are they the
5903 same in modes with signed zeros, since multiplying a
5904 negative value by 0 gives -0, not +0. */
5905 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
5906 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
5907 && real_zerop (arg1))
5908 return omit_one_operand (type, arg1, arg0);
5909 /* In IEEE floating point, x*1 is not equivalent to x for snans. */
5910 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
5911 && real_onep (arg1))
5912 return non_lvalue (convert (type, arg0));
5914 /* Transform x * -1.0 into -x. */
5915 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
5916 && real_minus_onep (arg1))
5917 return fold (build1 (NEGATE_EXPR, type, arg0));
5919 /* x*2 is x+x */
5920 if (! wins && real_twop (arg1)
5921 && (*lang_hooks.decls.global_bindings_p) () == 0
5922 && ! CONTAINS_PLACEHOLDER_P (arg0))
5924 tree arg = save_expr (arg0);
5925 return fold (build (PLUS_EXPR, type, arg, arg));
5928 if (flag_unsafe_math_optimizations)
5930 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
5931 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
5933 /* Optimizations of sqrt(...)*sqrt(...). */
5934 if ((fcode0 == BUILT_IN_SQRT && fcode1 == BUILT_IN_SQRT)
5935 || (fcode0 == BUILT_IN_SQRTF && fcode1 == BUILT_IN_SQRTF)
5936 || (fcode0 == BUILT_IN_SQRTL && fcode1 == BUILT_IN_SQRTL))
5938 tree sqrtfn, arg, arglist;
5939 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
5940 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
5942 /* Optimize sqrt(x)*sqrt(x) as x. */
5943 if (operand_equal_p (arg00, arg10, 0)
5944 && ! HONOR_SNANS (TYPE_MODE (type)))
5945 return arg00;
5947 /* Optimize sqrt(x)*sqrt(y) as sqrt(x*y). */
5948 sqrtfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
5949 arg = fold (build (MULT_EXPR, type, arg00, arg10));
5950 arglist = build_tree_list (NULL_TREE, arg);
5951 return build_function_call_expr (sqrtfn, arglist);
5954 /* Optimize exp(x)*exp(y) as exp(x+y). */
5955 if ((fcode0 == BUILT_IN_EXP && fcode1 == BUILT_IN_EXP)
5956 || (fcode0 == BUILT_IN_EXPF && fcode1 == BUILT_IN_EXPF)
5957 || (fcode0 == BUILT_IN_EXPL && fcode1 == BUILT_IN_EXPL))
5959 tree expfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
5960 tree arg = build (PLUS_EXPR, type,
5961 TREE_VALUE (TREE_OPERAND (arg0, 1)),
5962 TREE_VALUE (TREE_OPERAND (arg1, 1)));
5963 tree arglist = build_tree_list (NULL_TREE, fold (arg));
5964 return build_function_call_expr (expfn, arglist);
5967 /* Optimizations of pow(...)*pow(...). */
5968 if ((fcode0 == BUILT_IN_POW && fcode1 == BUILT_IN_POW)
5969 || (fcode0 == BUILT_IN_POWF && fcode1 == BUILT_IN_POWF)
5970 || (fcode0 == BUILT_IN_POWL && fcode1 == BUILT_IN_POWL))
5972 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
5973 tree arg01 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0,
5974 1)));
5975 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
5976 tree arg11 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg1,
5977 1)));
5979 /* Optimize pow(x,y)*pow(z,y) as pow(x*z,y). */
5980 if (operand_equal_p (arg01, arg11, 0))
5982 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
5983 tree arg = build (MULT_EXPR, type, arg00, arg10);
5984 tree arglist = tree_cons (NULL_TREE, fold (arg),
5985 build_tree_list (NULL_TREE,
5986 arg01));
5987 return build_function_call_expr (powfn, arglist);
5990 /* Optimize pow(x,y)*pow(x,z) as pow(x,y+z). */
5991 if (operand_equal_p (arg00, arg10, 0))
5993 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
5994 tree arg = fold (build (PLUS_EXPR, type, arg01, arg11));
5995 tree arglist = tree_cons (NULL_TREE, arg00,
5996 build_tree_list (NULL_TREE,
5997 arg));
5998 return build_function_call_expr (powfn, arglist);
6002 /* Optimize tan(x)*cos(x) as sin(x). */
6003 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_COS)
6004 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_COSF)
6005 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_COSL)
6006 || (fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_TAN)
6007 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_TANF)
6008 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_TANL))
6009 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
6010 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
6012 tree sinfn;
6014 switch (fcode0)
6016 case BUILT_IN_TAN:
6017 case BUILT_IN_COS:
6018 sinfn = implicit_built_in_decls[BUILT_IN_SIN];
6019 break;
6020 case BUILT_IN_TANF:
6021 case BUILT_IN_COSF:
6022 sinfn = implicit_built_in_decls[BUILT_IN_SINF];
6023 break;
6024 case BUILT_IN_TANL:
6025 case BUILT_IN_COSL:
6026 sinfn = implicit_built_in_decls[BUILT_IN_SINL];
6027 break;
6028 default:
6029 sinfn = NULL_TREE;
6032 if (sinfn != NULL_TREE)
6033 return build_function_call_expr (sinfn,
6034 TREE_OPERAND (arg0, 1));
6038 goto associate;
6040 case BIT_IOR_EXPR:
6041 bit_ior:
6042 if (integer_all_onesp (arg1))
6043 return omit_one_operand (type, arg1, arg0);
6044 if (integer_zerop (arg1))
6045 return non_lvalue (convert (type, arg0));
6046 t1 = distribute_bit_expr (code, type, arg0, arg1);
6047 if (t1 != NULL_TREE)
6048 return t1;
6050 /* Convert (or (not arg0) (not arg1)) to (not (and (arg0) (arg1))).
6052 This results in more efficient code for machines without a NAND
6053 instruction. Combine will canonicalize to the first form
6054 which will allow use of NAND instructions provided by the
6055 backend if they exist. */
6056 if (TREE_CODE (arg0) == BIT_NOT_EXPR
6057 && TREE_CODE (arg1) == BIT_NOT_EXPR)
6059 return fold (build1 (BIT_NOT_EXPR, type,
6060 build (BIT_AND_EXPR, type,
6061 TREE_OPERAND (arg0, 0),
6062 TREE_OPERAND (arg1, 0))));
6065 /* See if this can be simplified into a rotate first. If that
6066 is unsuccessful continue in the association code. */
6067 goto bit_rotate;
6069 case BIT_XOR_EXPR:
6070 if (integer_zerop (arg1))
6071 return non_lvalue (convert (type, arg0));
6072 if (integer_all_onesp (arg1))
6073 return fold (build1 (BIT_NOT_EXPR, type, arg0));
6075 /* If we are XORing two BIT_AND_EXPR's, both of which are and'ing
6076 with a constant, and the two constants have no bits in common,
6077 we should treat this as a BIT_IOR_EXPR since this may produce more
6078 simplifications. */
6079 if (TREE_CODE (arg0) == BIT_AND_EXPR
6080 && TREE_CODE (arg1) == BIT_AND_EXPR
6081 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
6082 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
6083 && integer_zerop (const_binop (BIT_AND_EXPR,
6084 TREE_OPERAND (arg0, 1),
6085 TREE_OPERAND (arg1, 1), 0)))
6087 code = BIT_IOR_EXPR;
6088 goto bit_ior;
6091 /* See if this can be simplified into a rotate first. If that
6092 is unsuccessful continue in the association code. */
6093 goto bit_rotate;
6095 case BIT_AND_EXPR:
6096 bit_and:
6097 if (integer_all_onesp (arg1))
6098 return non_lvalue (convert (type, arg0));
6099 if (integer_zerop (arg1))
6100 return omit_one_operand (type, arg1, arg0);
6101 t1 = distribute_bit_expr (code, type, arg0, arg1);
6102 if (t1 != NULL_TREE)
6103 return t1;
6104 /* Simplify ((int)c & 0377) into (int)c, if c is unsigned char. */
6105 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) == NOP_EXPR
6106 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
6108 unsigned int prec
6109 = TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)));
6111 if (prec < BITS_PER_WORD && prec < HOST_BITS_PER_WIDE_INT
6112 && (~TREE_INT_CST_LOW (arg1)
6113 & (((HOST_WIDE_INT) 1 << prec) - 1)) == 0)
6114 return build1 (NOP_EXPR, type, TREE_OPERAND (arg0, 0));
6117 /* Convert (and (not arg0) (not arg1)) to (not (or (arg0) (arg1))).
6119 This results in more efficient code for machines without a NOR
6120 instruction. Combine will canonicalize to the first form
6121 which will allow use of NOR instructions provided by the
6122 backend if they exist. */
6123 if (TREE_CODE (arg0) == BIT_NOT_EXPR
6124 && TREE_CODE (arg1) == BIT_NOT_EXPR)
6126 return fold (build1 (BIT_NOT_EXPR, type,
6127 build (BIT_IOR_EXPR, type,
6128 TREE_OPERAND (arg0, 0),
6129 TREE_OPERAND (arg1, 0))));
6132 goto associate;
6134 case BIT_ANDTC_EXPR:
6135 if (integer_all_onesp (arg0))
6136 return non_lvalue (convert (type, arg1));
6137 if (integer_zerop (arg0))
6138 return omit_one_operand (type, arg0, arg1);
6139 if (TREE_CODE (arg1) == INTEGER_CST)
6141 arg1 = fold (build1 (BIT_NOT_EXPR, type, arg1));
6142 code = BIT_AND_EXPR;
6143 goto bit_and;
6145 goto binary;
6147 case RDIV_EXPR:
6148 /* Don't touch a floating-point divide by zero unless the mode
6149 of the constant can represent infinity. */
6150 if (TREE_CODE (arg1) == REAL_CST
6151 && !MODE_HAS_INFINITIES (TYPE_MODE (TREE_TYPE (arg1)))
6152 && real_zerop (arg1))
6153 return t;
6155 /* (-A) / (-B) -> A / B */
6156 if (TREE_CODE (arg0) == NEGATE_EXPR && TREE_CODE (arg1) == NEGATE_EXPR)
6157 return fold (build (RDIV_EXPR, type, TREE_OPERAND (arg0, 0),
6158 TREE_OPERAND (arg1, 0)));
6160 /* In IEEE floating point, x/1 is not equivalent to x for snans. */
6161 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
6162 && real_onep (arg1))
6163 return non_lvalue (convert (type, arg0));
6165 /* If ARG1 is a constant, we can convert this to a multiply by the
6166 reciprocal. This does not have the same rounding properties,
6167 so only do this if -funsafe-math-optimizations. We can actually
6168 always safely do it if ARG1 is a power of two, but it's hard to
6169 tell if it is or not in a portable manner. */
6170 if (TREE_CODE (arg1) == REAL_CST)
6172 if (flag_unsafe_math_optimizations
6173 && 0 != (tem = const_binop (code, build_real (type, dconst1),
6174 arg1, 0)))
6175 return fold (build (MULT_EXPR, type, arg0, tem));
6176 /* Find the reciprocal if optimizing and the result is exact. */
6177 else if (optimize)
6179 REAL_VALUE_TYPE r;
6180 r = TREE_REAL_CST (arg1);
6181 if (exact_real_inverse (TYPE_MODE(TREE_TYPE(arg0)), &r))
6183 tem = build_real (type, r);
6184 return fold (build (MULT_EXPR, type, arg0, tem));
6188 /* Convert A/B/C to A/(B*C). */
6189 if (flag_unsafe_math_optimizations
6190 && TREE_CODE (arg0) == RDIV_EXPR)
6192 return fold (build (RDIV_EXPR, type, TREE_OPERAND (arg0, 0),
6193 build (MULT_EXPR, type, TREE_OPERAND (arg0, 1),
6194 arg1)));
6196 /* Convert A/(B/C) to (A/B)*C. */
6197 if (flag_unsafe_math_optimizations
6198 && TREE_CODE (arg1) == RDIV_EXPR)
6200 return fold (build (MULT_EXPR, type,
6201 build (RDIV_EXPR, type, arg0,
6202 TREE_OPERAND (arg1, 0)),
6203 TREE_OPERAND (arg1, 1)));
6206 if (flag_unsafe_math_optimizations)
6208 enum built_in_function fcode = builtin_mathfn_code (arg1);
6209 /* Optimize x/exp(y) into x*exp(-y). */
6210 if (fcode == BUILT_IN_EXP
6211 || fcode == BUILT_IN_EXPF
6212 || fcode == BUILT_IN_EXPL)
6214 tree expfn = TREE_OPERAND (TREE_OPERAND (arg1, 0), 0);
6215 tree arg = build1 (NEGATE_EXPR, type,
6216 TREE_VALUE (TREE_OPERAND (arg1, 1)));
6217 tree arglist = build_tree_list (NULL_TREE, fold (arg));
6218 arg1 = build_function_call_expr (expfn, arglist);
6219 return fold (build (MULT_EXPR, type, arg0, arg1));
6222 /* Optimize x/pow(y,z) into x*pow(y,-z). */
6223 if (fcode == BUILT_IN_POW
6224 || fcode == BUILT_IN_POWF
6225 || fcode == BUILT_IN_POWL)
6227 tree powfn = TREE_OPERAND (TREE_OPERAND (arg1, 0), 0);
6228 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
6229 tree arg11 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg1, 1)));
6230 tree neg11 = fold (build1 (NEGATE_EXPR, type, arg11));
6231 tree arglist = tree_cons(NULL_TREE, arg10,
6232 build_tree_list (NULL_TREE, neg11));
6233 arg1 = build_function_call_expr (powfn, arglist);
6234 return fold (build (MULT_EXPR, type, arg0, arg1));
6238 if (flag_unsafe_math_optimizations)
6240 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
6241 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
6243 /* Optimize sin(x)/cos(x) as tan(x). */
6244 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_COS)
6245 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_COSF)
6246 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_COSL))
6247 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
6248 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
6250 tree tanfn;
6252 if (fcode0 == BUILT_IN_SIN)
6253 tanfn = implicit_built_in_decls[BUILT_IN_TAN];
6254 else if (fcode0 == BUILT_IN_SINF)
6255 tanfn = implicit_built_in_decls[BUILT_IN_TANF];
6256 else if (fcode0 == BUILT_IN_SINL)
6257 tanfn = implicit_built_in_decls[BUILT_IN_TANL];
6258 else
6259 tanfn = NULL_TREE;
6261 if (tanfn != NULL_TREE)
6262 return build_function_call_expr (tanfn,
6263 TREE_OPERAND (arg0, 1));
6266 /* Optimize cos(x)/sin(x) as 1.0/tan(x). */
6267 if (((fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_SIN)
6268 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_SINF)
6269 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_SINL))
6270 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
6271 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
6273 tree tanfn;
6275 if (fcode0 == BUILT_IN_COS)
6276 tanfn = implicit_built_in_decls[BUILT_IN_TAN];
6277 else if (fcode0 == BUILT_IN_COSF)
6278 tanfn = implicit_built_in_decls[BUILT_IN_TANF];
6279 else if (fcode0 == BUILT_IN_COSL)
6280 tanfn = implicit_built_in_decls[BUILT_IN_TANL];
6281 else
6282 tanfn = NULL_TREE;
6284 if (tanfn != NULL_TREE)
6286 tree tmp = TREE_OPERAND (arg0, 1);
6287 tmp = build_function_call_expr (tanfn, tmp);
6288 return fold (build (RDIV_EXPR, type,
6289 build_real (type, dconst1),
6290 tmp));
6294 goto binary;
6296 case TRUNC_DIV_EXPR:
6297 case ROUND_DIV_EXPR:
6298 case FLOOR_DIV_EXPR:
6299 case CEIL_DIV_EXPR:
6300 case EXACT_DIV_EXPR:
6301 if (integer_onep (arg1))
6302 return non_lvalue (convert (type, arg0));
6303 if (integer_zerop (arg1))
6304 return t;
6306 /* If arg0 is a multiple of arg1, then rewrite to the fastest div
6307 operation, EXACT_DIV_EXPR.
6309 Note that only CEIL_DIV_EXPR and FLOOR_DIV_EXPR are rewritten now.
6310 At one time others generated faster code, it's not clear if they do
6311 after the last round to changes to the DIV code in expmed.c. */
6312 if ((code == CEIL_DIV_EXPR || code == FLOOR_DIV_EXPR)
6313 && multiple_of_p (type, arg0, arg1))
6314 return fold (build (EXACT_DIV_EXPR, type, arg0, arg1));
6316 if (TREE_CODE (arg1) == INTEGER_CST
6317 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0), arg1,
6318 code, NULL_TREE)))
6319 return convert (type, tem);
6321 goto binary;
6323 case CEIL_MOD_EXPR:
6324 case FLOOR_MOD_EXPR:
6325 case ROUND_MOD_EXPR:
6326 case TRUNC_MOD_EXPR:
6327 if (integer_onep (arg1))
6328 return omit_one_operand (type, integer_zero_node, arg0);
6329 if (integer_zerop (arg1))
6330 return t;
6332 if (TREE_CODE (arg1) == INTEGER_CST
6333 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0), arg1,
6334 code, NULL_TREE)))
6335 return convert (type, tem);
6337 goto binary;
6339 case LROTATE_EXPR:
6340 case RROTATE_EXPR:
6341 if (integer_all_onesp (arg0))
6342 return omit_one_operand (type, arg0, arg1);
6343 goto shift;
6345 case RSHIFT_EXPR:
6346 /* Optimize -1 >> x for arithmetic right shifts. */
6347 if (integer_all_onesp (arg0) && ! TREE_UNSIGNED (type))
6348 return omit_one_operand (type, arg0, arg1);
6349 /* ... fall through ... */
6351 case LSHIFT_EXPR:
6352 shift:
6353 if (integer_zerop (arg1))
6354 return non_lvalue (convert (type, arg0));
6355 if (integer_zerop (arg0))
6356 return omit_one_operand (type, arg0, arg1);
6358 /* Since negative shift count is not well-defined,
6359 don't try to compute it in the compiler. */
6360 if (TREE_CODE (arg1) == INTEGER_CST && tree_int_cst_sgn (arg1) < 0)
6361 return t;
6362 /* Rewrite an LROTATE_EXPR by a constant into an
6363 RROTATE_EXPR by a new constant. */
6364 if (code == LROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST)
6366 TREE_SET_CODE (t, RROTATE_EXPR);
6367 code = RROTATE_EXPR;
6368 TREE_OPERAND (t, 1) = arg1
6369 = const_binop
6370 (MINUS_EXPR,
6371 convert (TREE_TYPE (arg1),
6372 build_int_2 (GET_MODE_BITSIZE (TYPE_MODE (type)), 0)),
6373 arg1, 0);
6374 if (tree_int_cst_sgn (arg1) < 0)
6375 return t;
6378 /* If we have a rotate of a bit operation with the rotate count and
6379 the second operand of the bit operation both constant,
6380 permute the two operations. */
6381 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
6382 && (TREE_CODE (arg0) == BIT_AND_EXPR
6383 || TREE_CODE (arg0) == BIT_ANDTC_EXPR
6384 || TREE_CODE (arg0) == BIT_IOR_EXPR
6385 || TREE_CODE (arg0) == BIT_XOR_EXPR)
6386 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
6387 return fold (build (TREE_CODE (arg0), type,
6388 fold (build (code, type,
6389 TREE_OPERAND (arg0, 0), arg1)),
6390 fold (build (code, type,
6391 TREE_OPERAND (arg0, 1), arg1))));
6393 /* Two consecutive rotates adding up to the width of the mode can
6394 be ignored. */
6395 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
6396 && TREE_CODE (arg0) == RROTATE_EXPR
6397 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
6398 && TREE_INT_CST_HIGH (arg1) == 0
6399 && TREE_INT_CST_HIGH (TREE_OPERAND (arg0, 1)) == 0
6400 && ((TREE_INT_CST_LOW (arg1)
6401 + TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)))
6402 == (unsigned int) GET_MODE_BITSIZE (TYPE_MODE (type))))
6403 return TREE_OPERAND (arg0, 0);
6405 goto binary;
6407 case MIN_EXPR:
6408 if (operand_equal_p (arg0, arg1, 0))
6409 return omit_one_operand (type, arg0, arg1);
6410 if (INTEGRAL_TYPE_P (type)
6411 && operand_equal_p (arg1, TYPE_MIN_VALUE (type), 1))
6412 return omit_one_operand (type, arg1, arg0);
6413 goto associate;
6415 case MAX_EXPR:
6416 if (operand_equal_p (arg0, arg1, 0))
6417 return omit_one_operand (type, arg0, arg1);
6418 if (INTEGRAL_TYPE_P (type)
6419 && TYPE_MAX_VALUE (type)
6420 && operand_equal_p (arg1, TYPE_MAX_VALUE (type), 1))
6421 return omit_one_operand (type, arg1, arg0);
6422 goto associate;
6424 case TRUTH_NOT_EXPR:
6425 /* Note that the operand of this must be an int
6426 and its values must be 0 or 1.
6427 ("true" is a fixed value perhaps depending on the language,
6428 but we don't handle values other than 1 correctly yet.) */
6429 tem = invert_truthvalue (arg0);
6430 /* Avoid infinite recursion. */
6431 if (TREE_CODE (tem) == TRUTH_NOT_EXPR)
6433 tem = fold_single_bit_test (code, arg0, arg1, type);
6434 if (tem)
6435 return tem;
6436 return t;
6438 return convert (type, tem);
6440 case TRUTH_ANDIF_EXPR:
6441 /* Note that the operands of this must be ints
6442 and their values must be 0 or 1.
6443 ("true" is a fixed value perhaps depending on the language.) */
6444 /* If first arg is constant zero, return it. */
6445 if (integer_zerop (arg0))
6446 return convert (type, arg0);
6447 case TRUTH_AND_EXPR:
6448 /* If either arg is constant true, drop it. */
6449 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
6450 return non_lvalue (convert (type, arg1));
6451 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1)
6452 /* Preserve sequence points. */
6453 && (code != TRUTH_ANDIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
6454 return non_lvalue (convert (type, arg0));
6455 /* If second arg is constant zero, result is zero, but first arg
6456 must be evaluated. */
6457 if (integer_zerop (arg1))
6458 return omit_one_operand (type, arg1, arg0);
6459 /* Likewise for first arg, but note that only the TRUTH_AND_EXPR
6460 case will be handled here. */
6461 if (integer_zerop (arg0))
6462 return omit_one_operand (type, arg0, arg1);
6464 truth_andor:
6465 /* We only do these simplifications if we are optimizing. */
6466 if (!optimize)
6467 return t;
6469 /* Check for things like (A || B) && (A || C). We can convert this
6470 to A || (B && C). Note that either operator can be any of the four
6471 truth and/or operations and the transformation will still be
6472 valid. Also note that we only care about order for the
6473 ANDIF and ORIF operators. If B contains side effects, this
6474 might change the truth-value of A. */
6475 if (TREE_CODE (arg0) == TREE_CODE (arg1)
6476 && (TREE_CODE (arg0) == TRUTH_ANDIF_EXPR
6477 || TREE_CODE (arg0) == TRUTH_ORIF_EXPR
6478 || TREE_CODE (arg0) == TRUTH_AND_EXPR
6479 || TREE_CODE (arg0) == TRUTH_OR_EXPR)
6480 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg0, 1)))
6482 tree a00 = TREE_OPERAND (arg0, 0);
6483 tree a01 = TREE_OPERAND (arg0, 1);
6484 tree a10 = TREE_OPERAND (arg1, 0);
6485 tree a11 = TREE_OPERAND (arg1, 1);
6486 int commutative = ((TREE_CODE (arg0) == TRUTH_OR_EXPR
6487 || TREE_CODE (arg0) == TRUTH_AND_EXPR)
6488 && (code == TRUTH_AND_EXPR
6489 || code == TRUTH_OR_EXPR));
6491 if (operand_equal_p (a00, a10, 0))
6492 return fold (build (TREE_CODE (arg0), type, a00,
6493 fold (build (code, type, a01, a11))));
6494 else if (commutative && operand_equal_p (a00, a11, 0))
6495 return fold (build (TREE_CODE (arg0), type, a00,
6496 fold (build (code, type, a01, a10))));
6497 else if (commutative && operand_equal_p (a01, a10, 0))
6498 return fold (build (TREE_CODE (arg0), type, a01,
6499 fold (build (code, type, a00, a11))));
6501 /* This case if tricky because we must either have commutative
6502 operators or else A10 must not have side-effects. */
6504 else if ((commutative || ! TREE_SIDE_EFFECTS (a10))
6505 && operand_equal_p (a01, a11, 0))
6506 return fold (build (TREE_CODE (arg0), type,
6507 fold (build (code, type, a00, a10)),
6508 a01));
6511 /* See if we can build a range comparison. */
6512 if (0 != (tem = fold_range_test (t)))
6513 return tem;
6515 /* Check for the possibility of merging component references. If our
6516 lhs is another similar operation, try to merge its rhs with our
6517 rhs. Then try to merge our lhs and rhs. */
6518 if (TREE_CODE (arg0) == code
6519 && 0 != (tem = fold_truthop (code, type,
6520 TREE_OPERAND (arg0, 1), arg1)))
6521 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
6523 if ((tem = fold_truthop (code, type, arg0, arg1)) != 0)
6524 return tem;
6526 return t;
6528 case TRUTH_ORIF_EXPR:
6529 /* Note that the operands of this must be ints
6530 and their values must be 0 or true.
6531 ("true" is a fixed value perhaps depending on the language.) */
6532 /* If first arg is constant true, return it. */
6533 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
6534 return convert (type, arg0);
6535 case TRUTH_OR_EXPR:
6536 /* If either arg is constant zero, drop it. */
6537 if (TREE_CODE (arg0) == INTEGER_CST && integer_zerop (arg0))
6538 return non_lvalue (convert (type, arg1));
6539 if (TREE_CODE (arg1) == INTEGER_CST && integer_zerop (arg1)
6540 /* Preserve sequence points. */
6541 && (code != TRUTH_ORIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
6542 return non_lvalue (convert (type, arg0));
6543 /* If second arg is constant true, result is true, but we must
6544 evaluate first arg. */
6545 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1))
6546 return omit_one_operand (type, arg1, arg0);
6547 /* Likewise for first arg, but note this only occurs here for
6548 TRUTH_OR_EXPR. */
6549 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
6550 return omit_one_operand (type, arg0, arg1);
6551 goto truth_andor;
6553 case TRUTH_XOR_EXPR:
6554 /* If either arg is constant zero, drop it. */
6555 if (integer_zerop (arg0))
6556 return non_lvalue (convert (type, arg1));
6557 if (integer_zerop (arg1))
6558 return non_lvalue (convert (type, arg0));
6559 /* If either arg is constant true, this is a logical inversion. */
6560 if (integer_onep (arg0))
6561 return non_lvalue (convert (type, invert_truthvalue (arg1)));
6562 if (integer_onep (arg1))
6563 return non_lvalue (convert (type, invert_truthvalue (arg0)));
6564 return t;
6566 case EQ_EXPR:
6567 case NE_EXPR:
6568 case LT_EXPR:
6569 case GT_EXPR:
6570 case LE_EXPR:
6571 case GE_EXPR:
6572 /* If one arg is a real or integer constant, put it last. */
6573 if ((TREE_CODE (arg0) == INTEGER_CST
6574 && TREE_CODE (arg1) != INTEGER_CST)
6575 || (TREE_CODE (arg0) == REAL_CST
6576 && TREE_CODE (arg0) != REAL_CST))
6578 TREE_OPERAND (t, 0) = arg1;
6579 TREE_OPERAND (t, 1) = arg0;
6580 arg0 = TREE_OPERAND (t, 0);
6581 arg1 = TREE_OPERAND (t, 1);
6582 code = swap_tree_comparison (code);
6583 TREE_SET_CODE (t, code);
6586 if (FLOAT_TYPE_P (TREE_TYPE (arg0)))
6588 tree targ0 = strip_float_extensions (arg0);
6589 tree targ1 = strip_float_extensions (arg1);
6590 tree newtype = TREE_TYPE (targ0);
6592 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
6593 newtype = TREE_TYPE (targ1);
6595 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
6596 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
6597 return fold (build (code, type, convert (newtype, targ0),
6598 convert (newtype, targ1)));
6600 /* (-a) CMP (-b) -> b CMP a */
6601 if (TREE_CODE (arg0) == NEGATE_EXPR
6602 && TREE_CODE (arg1) == NEGATE_EXPR)
6603 return fold (build (code, type, TREE_OPERAND (arg1, 0),
6604 TREE_OPERAND (arg0, 0)));
6606 if (TREE_CODE (arg1) == REAL_CST)
6608 REAL_VALUE_TYPE cst;
6609 cst = TREE_REAL_CST (arg1);
6611 /* (-a) CMP CST -> a swap(CMP) (-CST) */
6612 if (TREE_CODE (arg0) == NEGATE_EXPR)
6613 return
6614 fold (build (swap_tree_comparison (code), type,
6615 TREE_OPERAND (arg0, 0),
6616 build_real (TREE_TYPE (arg1),
6617 REAL_VALUE_NEGATE (cst))));
6619 /* IEEE doesn't distinguish +0 and -0 in comparisons. */
6620 /* a CMP (-0) -> a CMP 0 */
6621 if (REAL_VALUE_MINUS_ZERO (cst))
6622 return fold (build (code, type, arg0,
6623 build_real (TREE_TYPE (arg1), dconst0)));
6625 /* x != NaN is always true, other ops are always false. */
6626 if (REAL_VALUE_ISNAN (cst)
6627 && ! HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg1))))
6629 t = (code == NE_EXPR) ? integer_one_node : integer_zero_node;
6630 return omit_one_operand (type, convert (type, t), arg0);
6633 /* Fold comparisons against infinity. */
6634 if (REAL_VALUE_ISINF (cst))
6636 tem = fold_inf_compare (code, type, arg0, arg1);
6637 if (tem != NULL_TREE)
6638 return tem;
6642 /* If this is a comparison of a real constant with a PLUS_EXPR
6643 or a MINUS_EXPR of a real constant, we can convert it into a
6644 comparison with a revised real constant as long as no overflow
6645 occurs when unsafe_math_optimizations are enabled. */
6646 if (flag_unsafe_math_optimizations
6647 && TREE_CODE (arg1) == REAL_CST
6648 && (TREE_CODE (arg0) == PLUS_EXPR
6649 || TREE_CODE (arg0) == MINUS_EXPR)
6650 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
6651 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
6652 ? MINUS_EXPR : PLUS_EXPR,
6653 arg1, TREE_OPERAND (arg0, 1), 0))
6654 && ! TREE_CONSTANT_OVERFLOW (tem))
6655 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
6657 /* Likewise, we can simplify a comparison of a real constant with
6658 a MINUS_EXPR whose first operand is also a real constant, i.e.
6659 (c1 - x) < c2 becomes x > c1-c2. */
6660 if (flag_unsafe_math_optimizations
6661 && TREE_CODE (arg1) == REAL_CST
6662 && TREE_CODE (arg0) == MINUS_EXPR
6663 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST
6664 && 0 != (tem = const_binop (MINUS_EXPR, TREE_OPERAND (arg0, 0),
6665 arg1, 0))
6666 && ! TREE_CONSTANT_OVERFLOW (tem))
6667 return fold (build (swap_tree_comparison (code), type,
6668 TREE_OPERAND (arg0, 1), tem));
6670 /* Fold comparisons against built-in math functions. */
6671 if (TREE_CODE (arg1) == REAL_CST
6672 && flag_unsafe_math_optimizations
6673 && ! flag_errno_math)
6675 enum built_in_function fcode = builtin_mathfn_code (arg0);
6677 if (fcode != END_BUILTINS)
6679 tem = fold_mathfn_compare (fcode, code, type, arg0, arg1);
6680 if (tem != NULL_TREE)
6681 return tem;
6686 /* Convert foo++ == CONST into ++foo == CONST + INCR.
6687 First, see if one arg is constant; find the constant arg
6688 and the other one. */
6690 tree constop = 0, varop = NULL_TREE;
6691 int constopnum = -1;
6693 if (TREE_CONSTANT (arg1))
6694 constopnum = 1, constop = arg1, varop = arg0;
6695 if (TREE_CONSTANT (arg0))
6696 constopnum = 0, constop = arg0, varop = arg1;
6698 if (constop && TREE_CODE (varop) == POSTINCREMENT_EXPR)
6700 /* This optimization is invalid for ordered comparisons
6701 if CONST+INCR overflows or if foo+incr might overflow.
6702 This optimization is invalid for floating point due to rounding.
6703 For pointer types we assume overflow doesn't happen. */
6704 if (POINTER_TYPE_P (TREE_TYPE (varop))
6705 || (! FLOAT_TYPE_P (TREE_TYPE (varop))
6706 && (code == EQ_EXPR || code == NE_EXPR)))
6708 tree newconst
6709 = fold (build (PLUS_EXPR, TREE_TYPE (varop),
6710 constop, TREE_OPERAND (varop, 1)));
6712 /* Do not overwrite the current varop to be a preincrement,
6713 create a new node so that we won't confuse our caller who
6714 might create trees and throw them away, reusing the
6715 arguments that they passed to build. This shows up in
6716 the THEN or ELSE parts of ?: being postincrements. */
6717 varop = build (PREINCREMENT_EXPR, TREE_TYPE (varop),
6718 TREE_OPERAND (varop, 0),
6719 TREE_OPERAND (varop, 1));
6721 /* If VAROP is a reference to a bitfield, we must mask
6722 the constant by the width of the field. */
6723 if (TREE_CODE (TREE_OPERAND (varop, 0)) == COMPONENT_REF
6724 && DECL_BIT_FIELD(TREE_OPERAND
6725 (TREE_OPERAND (varop, 0), 1)))
6727 int size
6728 = TREE_INT_CST_LOW (DECL_SIZE
6729 (TREE_OPERAND
6730 (TREE_OPERAND (varop, 0), 1)));
6731 tree mask, unsigned_type;
6732 unsigned int precision;
6733 tree folded_compare;
6735 /* First check whether the comparison would come out
6736 always the same. If we don't do that we would
6737 change the meaning with the masking. */
6738 if (constopnum == 0)
6739 folded_compare = fold (build (code, type, constop,
6740 TREE_OPERAND (varop, 0)));
6741 else
6742 folded_compare = fold (build (code, type,
6743 TREE_OPERAND (varop, 0),
6744 constop));
6745 if (integer_zerop (folded_compare)
6746 || integer_onep (folded_compare))
6747 return omit_one_operand (type, folded_compare, varop);
6749 unsigned_type = (*lang_hooks.types.type_for_size)(size, 1);
6750 precision = TYPE_PRECISION (unsigned_type);
6751 mask = build_int_2 (~0, ~0);
6752 TREE_TYPE (mask) = unsigned_type;
6753 force_fit_type (mask, 0);
6754 mask = const_binop (RSHIFT_EXPR, mask,
6755 size_int (precision - size), 0);
6756 newconst = fold (build (BIT_AND_EXPR,
6757 TREE_TYPE (varop), newconst,
6758 convert (TREE_TYPE (varop),
6759 mask)));
6762 t = build (code, type,
6763 (constopnum == 0) ? newconst : varop,
6764 (constopnum == 1) ? newconst : varop);
6765 return t;
6768 else if (constop && TREE_CODE (varop) == POSTDECREMENT_EXPR)
6770 if (POINTER_TYPE_P (TREE_TYPE (varop))
6771 || (! FLOAT_TYPE_P (TREE_TYPE (varop))
6772 && (code == EQ_EXPR || code == NE_EXPR)))
6774 tree newconst
6775 = fold (build (MINUS_EXPR, TREE_TYPE (varop),
6776 constop, TREE_OPERAND (varop, 1)));
6778 /* Do not overwrite the current varop to be a predecrement,
6779 create a new node so that we won't confuse our caller who
6780 might create trees and throw them away, reusing the
6781 arguments that they passed to build. This shows up in
6782 the THEN or ELSE parts of ?: being postdecrements. */
6783 varop = build (PREDECREMENT_EXPR, TREE_TYPE (varop),
6784 TREE_OPERAND (varop, 0),
6785 TREE_OPERAND (varop, 1));
6787 if (TREE_CODE (TREE_OPERAND (varop, 0)) == COMPONENT_REF
6788 && DECL_BIT_FIELD(TREE_OPERAND
6789 (TREE_OPERAND (varop, 0), 1)))
6791 int size
6792 = TREE_INT_CST_LOW (DECL_SIZE
6793 (TREE_OPERAND
6794 (TREE_OPERAND (varop, 0), 1)));
6795 tree mask, unsigned_type;
6796 unsigned int precision;
6797 tree folded_compare;
6799 if (constopnum == 0)
6800 folded_compare = fold (build (code, type, constop,
6801 TREE_OPERAND (varop, 0)));
6802 else
6803 folded_compare = fold (build (code, type,
6804 TREE_OPERAND (varop, 0),
6805 constop));
6806 if (integer_zerop (folded_compare)
6807 || integer_onep (folded_compare))
6808 return omit_one_operand (type, folded_compare, varop);
6810 unsigned_type = (*lang_hooks.types.type_for_size)(size, 1);
6811 precision = TYPE_PRECISION (unsigned_type);
6812 mask = build_int_2 (~0, ~0);
6813 TREE_TYPE (mask) = TREE_TYPE (varop);
6814 force_fit_type (mask, 0);
6815 mask = const_binop (RSHIFT_EXPR, mask,
6816 size_int (precision - size), 0);
6817 newconst = fold (build (BIT_AND_EXPR,
6818 TREE_TYPE (varop), newconst,
6819 convert (TREE_TYPE (varop),
6820 mask)));
6823 t = build (code, type,
6824 (constopnum == 0) ? newconst : varop,
6825 (constopnum == 1) ? newconst : varop);
6826 return t;
6831 /* Change X >= C to X > (C - 1) and X < C to X <= (C - 1) if C > 0.
6832 This transformation affects the cases which are handled in later
6833 optimizations involving comparisons with non-negative constants. */
6834 if (TREE_CODE (arg1) == INTEGER_CST
6835 && TREE_CODE (arg0) != INTEGER_CST
6836 && tree_int_cst_sgn (arg1) > 0)
6838 switch (code)
6840 case GE_EXPR:
6841 code = GT_EXPR;
6842 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
6843 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6844 break;
6846 case LT_EXPR:
6847 code = LE_EXPR;
6848 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
6849 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6850 break;
6852 default:
6853 break;
6857 /* Comparisons with the highest or lowest possible integer of
6858 the specified size will have known values. */
6860 int width = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg1)));
6862 if (TREE_CODE (arg1) == INTEGER_CST
6863 && ! TREE_CONSTANT_OVERFLOW (arg1)
6864 && width <= HOST_BITS_PER_WIDE_INT
6865 && (INTEGRAL_TYPE_P (TREE_TYPE (arg1))
6866 || POINTER_TYPE_P (TREE_TYPE (arg1))))
6868 unsigned HOST_WIDE_INT signed_max;
6869 unsigned HOST_WIDE_INT max, min;
6871 signed_max = ((unsigned HOST_WIDE_INT) 1 << (width - 1)) - 1;
6873 if (TREE_UNSIGNED (TREE_TYPE (arg1)))
6875 max = ((unsigned HOST_WIDE_INT) 2 << (width - 1)) - 1;
6876 min = 0;
6878 else
6880 max = signed_max;
6881 min = ((unsigned HOST_WIDE_INT) -1 << (width - 1));
6884 if (TREE_INT_CST_HIGH (arg1) == 0
6885 && TREE_INT_CST_LOW (arg1) == max)
6886 switch (code)
6888 case GT_EXPR:
6889 return omit_one_operand (type,
6890 convert (type, integer_zero_node),
6891 arg0);
6892 case GE_EXPR:
6893 code = EQ_EXPR;
6894 TREE_SET_CODE (t, EQ_EXPR);
6895 break;
6896 case LE_EXPR:
6897 return omit_one_operand (type,
6898 convert (type, integer_one_node),
6899 arg0);
6900 case LT_EXPR:
6901 code = NE_EXPR;
6902 TREE_SET_CODE (t, NE_EXPR);
6903 break;
6905 /* The GE_EXPR and LT_EXPR cases above are not normally
6906 reached because of previous transformations. */
6908 default:
6909 break;
6911 else if (TREE_INT_CST_HIGH (arg1) == 0
6912 && TREE_INT_CST_LOW (arg1) == max - 1)
6913 switch (code)
6915 case GT_EXPR:
6916 code = EQ_EXPR;
6917 arg1 = const_binop (PLUS_EXPR, arg1, integer_one_node, 0);
6918 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6919 break;
6920 case LE_EXPR:
6921 code = NE_EXPR;
6922 arg1 = const_binop (PLUS_EXPR, arg1, integer_one_node, 0);
6923 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6924 break;
6925 default:
6926 break;
6928 else if (TREE_INT_CST_HIGH (arg1) == (min ? -1 : 0)
6929 && TREE_INT_CST_LOW (arg1) == min)
6930 switch (code)
6932 case LT_EXPR:
6933 return omit_one_operand (type,
6934 convert (type, integer_zero_node),
6935 arg0);
6936 case LE_EXPR:
6937 code = EQ_EXPR;
6938 TREE_SET_CODE (t, EQ_EXPR);
6939 break;
6941 case GE_EXPR:
6942 return omit_one_operand (type,
6943 convert (type, integer_one_node),
6944 arg0);
6945 case GT_EXPR:
6946 code = NE_EXPR;
6947 TREE_SET_CODE (t, NE_EXPR);
6948 break;
6950 default:
6951 break;
6953 else if (TREE_INT_CST_HIGH (arg1) == (min ? -1 : 0)
6954 && TREE_INT_CST_LOW (arg1) == min + 1)
6955 switch (code)
6957 case GE_EXPR:
6958 code = NE_EXPR;
6959 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
6960 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6961 break;
6962 case LT_EXPR:
6963 code = EQ_EXPR;
6964 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
6965 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6966 break;
6967 default:
6968 break;
6971 else if (TREE_INT_CST_HIGH (arg1) == 0
6972 && TREE_INT_CST_LOW (arg1) == signed_max
6973 && TREE_UNSIGNED (TREE_TYPE (arg1))
6974 /* signed_type does not work on pointer types. */
6975 && INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
6977 /* The following case also applies to X < signed_max+1
6978 and X >= signed_max+1 because previous transformations. */
6979 if (code == LE_EXPR || code == GT_EXPR)
6981 tree st0, st1;
6982 st0 = (*lang_hooks.types.signed_type) (TREE_TYPE (arg0));
6983 st1 = (*lang_hooks.types.signed_type) (TREE_TYPE (arg1));
6984 return fold
6985 (build (code == LE_EXPR ? GE_EXPR: LT_EXPR,
6986 type, convert (st0, arg0),
6987 convert (st1, integer_zero_node)));
6993 /* If this is an EQ or NE comparison of a constant with a PLUS_EXPR or
6994 a MINUS_EXPR of a constant, we can convert it into a comparison with
6995 a revised constant as long as no overflow occurs. */
6996 if ((code == EQ_EXPR || code == NE_EXPR)
6997 && TREE_CODE (arg1) == INTEGER_CST
6998 && (TREE_CODE (arg0) == PLUS_EXPR
6999 || TREE_CODE (arg0) == MINUS_EXPR)
7000 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
7001 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
7002 ? MINUS_EXPR : PLUS_EXPR,
7003 arg1, TREE_OPERAND (arg0, 1), 0))
7004 && ! TREE_CONSTANT_OVERFLOW (tem))
7005 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
7007 /* Similarly for a NEGATE_EXPR. */
7008 else if ((code == EQ_EXPR || code == NE_EXPR)
7009 && TREE_CODE (arg0) == NEGATE_EXPR
7010 && TREE_CODE (arg1) == INTEGER_CST
7011 && 0 != (tem = negate_expr (arg1))
7012 && TREE_CODE (tem) == INTEGER_CST
7013 && ! TREE_CONSTANT_OVERFLOW (tem))
7014 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
7016 /* If we have X - Y == 0, we can convert that to X == Y and similarly
7017 for !=. Don't do this for ordered comparisons due to overflow. */
7018 else if ((code == NE_EXPR || code == EQ_EXPR)
7019 && integer_zerop (arg1) && TREE_CODE (arg0) == MINUS_EXPR)
7020 return fold (build (code, type,
7021 TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1)));
7023 /* If we are widening one operand of an integer comparison,
7024 see if the other operand is similarly being widened. Perhaps we
7025 can do the comparison in the narrower type. */
7026 else if (TREE_CODE (TREE_TYPE (arg0)) == INTEGER_TYPE
7027 && TREE_CODE (arg0) == NOP_EXPR
7028 && (tem = get_unwidened (arg0, NULL_TREE)) != arg0
7029 && (t1 = get_unwidened (arg1, TREE_TYPE (tem))) != 0
7030 && (TREE_TYPE (t1) == TREE_TYPE (tem)
7031 || (TREE_CODE (t1) == INTEGER_CST
7032 && int_fits_type_p (t1, TREE_TYPE (tem)))))
7033 return fold (build (code, type, tem, convert (TREE_TYPE (tem), t1)));
7035 /* If this is comparing a constant with a MIN_EXPR or a MAX_EXPR of a
7036 constant, we can simplify it. */
7037 else if (TREE_CODE (arg1) == INTEGER_CST
7038 && (TREE_CODE (arg0) == MIN_EXPR
7039 || TREE_CODE (arg0) == MAX_EXPR)
7040 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
7041 return optimize_minmax_comparison (t);
7043 /* If we are comparing an ABS_EXPR with a constant, we can
7044 convert all the cases into explicit comparisons, but they may
7045 well not be faster than doing the ABS and one comparison.
7046 But ABS (X) <= C is a range comparison, which becomes a subtraction
7047 and a comparison, and is probably faster. */
7048 else if (code == LE_EXPR && TREE_CODE (arg1) == INTEGER_CST
7049 && TREE_CODE (arg0) == ABS_EXPR
7050 && ! TREE_SIDE_EFFECTS (arg0)
7051 && (0 != (tem = negate_expr (arg1)))
7052 && TREE_CODE (tem) == INTEGER_CST
7053 && ! TREE_CONSTANT_OVERFLOW (tem))
7054 return fold (build (TRUTH_ANDIF_EXPR, type,
7055 build (GE_EXPR, type, TREE_OPERAND (arg0, 0), tem),
7056 build (LE_EXPR, type,
7057 TREE_OPERAND (arg0, 0), arg1)));
7059 /* If this is an EQ or NE comparison with zero and ARG0 is
7060 (1 << foo) & bar, convert it to (bar >> foo) & 1. Both require
7061 two operations, but the latter can be done in one less insn
7062 on machines that have only two-operand insns or on which a
7063 constant cannot be the first operand. */
7064 if (integer_zerop (arg1) && (code == EQ_EXPR || code == NE_EXPR)
7065 && TREE_CODE (arg0) == BIT_AND_EXPR)
7067 if (TREE_CODE (TREE_OPERAND (arg0, 0)) == LSHIFT_EXPR
7068 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg0, 0), 0)))
7069 return
7070 fold (build (code, type,
7071 build (BIT_AND_EXPR, TREE_TYPE (arg0),
7072 build (RSHIFT_EXPR,
7073 TREE_TYPE (TREE_OPERAND (arg0, 0)),
7074 TREE_OPERAND (arg0, 1),
7075 TREE_OPERAND (TREE_OPERAND (arg0, 0), 1)),
7076 convert (TREE_TYPE (arg0),
7077 integer_one_node)),
7078 arg1));
7079 else if (TREE_CODE (TREE_OPERAND (arg0, 1)) == LSHIFT_EXPR
7080 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg0, 1), 0)))
7081 return
7082 fold (build (code, type,
7083 build (BIT_AND_EXPR, TREE_TYPE (arg0),
7084 build (RSHIFT_EXPR,
7085 TREE_TYPE (TREE_OPERAND (arg0, 1)),
7086 TREE_OPERAND (arg0, 0),
7087 TREE_OPERAND (TREE_OPERAND (arg0, 1), 1)),
7088 convert (TREE_TYPE (arg0),
7089 integer_one_node)),
7090 arg1));
7093 /* If this is an NE or EQ comparison of zero against the result of a
7094 signed MOD operation whose second operand is a power of 2, make
7095 the MOD operation unsigned since it is simpler and equivalent. */
7096 if ((code == NE_EXPR || code == EQ_EXPR)
7097 && integer_zerop (arg1)
7098 && ! TREE_UNSIGNED (TREE_TYPE (arg0))
7099 && (TREE_CODE (arg0) == TRUNC_MOD_EXPR
7100 || TREE_CODE (arg0) == CEIL_MOD_EXPR
7101 || TREE_CODE (arg0) == FLOOR_MOD_EXPR
7102 || TREE_CODE (arg0) == ROUND_MOD_EXPR)
7103 && integer_pow2p (TREE_OPERAND (arg0, 1)))
7105 tree newtype = (*lang_hooks.types.unsigned_type) (TREE_TYPE (arg0));
7106 tree newmod = build (TREE_CODE (arg0), newtype,
7107 convert (newtype, TREE_OPERAND (arg0, 0)),
7108 convert (newtype, TREE_OPERAND (arg0, 1)));
7110 return build (code, type, newmod, convert (newtype, arg1));
7113 /* If this is an NE comparison of zero with an AND of one, remove the
7114 comparison since the AND will give the correct value. */
7115 if (code == NE_EXPR && integer_zerop (arg1)
7116 && TREE_CODE (arg0) == BIT_AND_EXPR
7117 && integer_onep (TREE_OPERAND (arg0, 1)))
7118 return convert (type, arg0);
7120 /* If we have (A & C) == C where C is a power of 2, convert this into
7121 (A & C) != 0. Similarly for NE_EXPR. */
7122 if ((code == EQ_EXPR || code == NE_EXPR)
7123 && TREE_CODE (arg0) == BIT_AND_EXPR
7124 && integer_pow2p (TREE_OPERAND (arg0, 1))
7125 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
7126 return fold (build (code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
7127 arg0, integer_zero_node));
7129 /* If we have (A & C) != 0 or (A & C) == 0 and C is a power of
7130 2, then fold the expression into shifts and logical operations. */
7131 tem = fold_single_bit_test (code, arg0, arg1, type);
7132 if (tem)
7133 return tem;
7135 /* If X is unsigned, convert X < (1 << Y) into X >> Y == 0
7136 and similarly for >= into !=. */
7137 if ((code == LT_EXPR || code == GE_EXPR)
7138 && TREE_UNSIGNED (TREE_TYPE (arg0))
7139 && TREE_CODE (arg1) == LSHIFT_EXPR
7140 && integer_onep (TREE_OPERAND (arg1, 0)))
7141 return build (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
7142 build (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
7143 TREE_OPERAND (arg1, 1)),
7144 convert (TREE_TYPE (arg0), integer_zero_node));
7146 else if ((code == LT_EXPR || code == GE_EXPR)
7147 && TREE_UNSIGNED (TREE_TYPE (arg0))
7148 && (TREE_CODE (arg1) == NOP_EXPR
7149 || TREE_CODE (arg1) == CONVERT_EXPR)
7150 && TREE_CODE (TREE_OPERAND (arg1, 0)) == LSHIFT_EXPR
7151 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg1, 0), 0)))
7152 return
7153 build (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
7154 convert (TREE_TYPE (arg0),
7155 build (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
7156 TREE_OPERAND (TREE_OPERAND (arg1, 0), 1))),
7157 convert (TREE_TYPE (arg0), integer_zero_node));
7159 /* Simplify comparison of something with itself. (For IEEE
7160 floating-point, we can only do some of these simplifications.) */
7161 if (operand_equal_p (arg0, arg1, 0))
7163 switch (code)
7165 case EQ_EXPR:
7166 case GE_EXPR:
7167 case LE_EXPR:
7168 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
7169 || ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
7170 return constant_boolean_node (1, type);
7171 code = EQ_EXPR;
7172 TREE_SET_CODE (t, code);
7173 break;
7175 case NE_EXPR:
7176 /* For NE, we can only do this simplification if integer
7177 or we don't honor IEEE floating point NaNs. */
7178 if (FLOAT_TYPE_P (TREE_TYPE (arg0))
7179 && HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
7180 break;
7181 /* ... fall through ... */
7182 case GT_EXPR:
7183 case LT_EXPR:
7184 return constant_boolean_node (0, type);
7185 default:
7186 abort ();
7190 /* If we are comparing an expression that just has comparisons
7191 of two integer values, arithmetic expressions of those comparisons,
7192 and constants, we can simplify it. There are only three cases
7193 to check: the two values can either be equal, the first can be
7194 greater, or the second can be greater. Fold the expression for
7195 those three values. Since each value must be 0 or 1, we have
7196 eight possibilities, each of which corresponds to the constant 0
7197 or 1 or one of the six possible comparisons.
7199 This handles common cases like (a > b) == 0 but also handles
7200 expressions like ((x > y) - (y > x)) > 0, which supposedly
7201 occur in macroized code. */
7203 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) != INTEGER_CST)
7205 tree cval1 = 0, cval2 = 0;
7206 int save_p = 0;
7208 if (twoval_comparison_p (arg0, &cval1, &cval2, &save_p)
7209 /* Don't handle degenerate cases here; they should already
7210 have been handled anyway. */
7211 && cval1 != 0 && cval2 != 0
7212 && ! (TREE_CONSTANT (cval1) && TREE_CONSTANT (cval2))
7213 && TREE_TYPE (cval1) == TREE_TYPE (cval2)
7214 && INTEGRAL_TYPE_P (TREE_TYPE (cval1))
7215 && TYPE_MAX_VALUE (TREE_TYPE (cval1))
7216 && TYPE_MAX_VALUE (TREE_TYPE (cval2))
7217 && ! operand_equal_p (TYPE_MIN_VALUE (TREE_TYPE (cval1)),
7218 TYPE_MAX_VALUE (TREE_TYPE (cval2)), 0))
7220 tree maxval = TYPE_MAX_VALUE (TREE_TYPE (cval1));
7221 tree minval = TYPE_MIN_VALUE (TREE_TYPE (cval1));
7223 /* We can't just pass T to eval_subst in case cval1 or cval2
7224 was the same as ARG1. */
7226 tree high_result
7227 = fold (build (code, type,
7228 eval_subst (arg0, cval1, maxval, cval2, minval),
7229 arg1));
7230 tree equal_result
7231 = fold (build (code, type,
7232 eval_subst (arg0, cval1, maxval, cval2, maxval),
7233 arg1));
7234 tree low_result
7235 = fold (build (code, type,
7236 eval_subst (arg0, cval1, minval, cval2, maxval),
7237 arg1));
7239 /* All three of these results should be 0 or 1. Confirm they
7240 are. Then use those values to select the proper code
7241 to use. */
7243 if ((integer_zerop (high_result)
7244 || integer_onep (high_result))
7245 && (integer_zerop (equal_result)
7246 || integer_onep (equal_result))
7247 && (integer_zerop (low_result)
7248 || integer_onep (low_result)))
7250 /* Make a 3-bit mask with the high-order bit being the
7251 value for `>', the next for '=', and the low for '<'. */
7252 switch ((integer_onep (high_result) * 4)
7253 + (integer_onep (equal_result) * 2)
7254 + integer_onep (low_result))
7256 case 0:
7257 /* Always false. */
7258 return omit_one_operand (type, integer_zero_node, arg0);
7259 case 1:
7260 code = LT_EXPR;
7261 break;
7262 case 2:
7263 code = EQ_EXPR;
7264 break;
7265 case 3:
7266 code = LE_EXPR;
7267 break;
7268 case 4:
7269 code = GT_EXPR;
7270 break;
7271 case 5:
7272 code = NE_EXPR;
7273 break;
7274 case 6:
7275 code = GE_EXPR;
7276 break;
7277 case 7:
7278 /* Always true. */
7279 return omit_one_operand (type, integer_one_node, arg0);
7282 t = build (code, type, cval1, cval2);
7283 if (save_p)
7284 return save_expr (t);
7285 else
7286 return fold (t);
7291 /* If this is a comparison of a field, we may be able to simplify it. */
7292 if (((TREE_CODE (arg0) == COMPONENT_REF
7293 && (*lang_hooks.can_use_bit_fields_p) ())
7294 || TREE_CODE (arg0) == BIT_FIELD_REF)
7295 && (code == EQ_EXPR || code == NE_EXPR)
7296 /* Handle the constant case even without -O
7297 to make sure the warnings are given. */
7298 && (optimize || TREE_CODE (arg1) == INTEGER_CST))
7300 t1 = optimize_bit_field_compare (code, type, arg0, arg1);
7301 return t1 ? t1 : t;
7304 /* If this is a comparison of complex values and either or both sides
7305 are a COMPLEX_EXPR or COMPLEX_CST, it is best to split up the
7306 comparisons and join them with a TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR.
7307 This may prevent needless evaluations. */
7308 if ((code == EQ_EXPR || code == NE_EXPR)
7309 && TREE_CODE (TREE_TYPE (arg0)) == COMPLEX_TYPE
7310 && (TREE_CODE (arg0) == COMPLEX_EXPR
7311 || TREE_CODE (arg1) == COMPLEX_EXPR
7312 || TREE_CODE (arg0) == COMPLEX_CST
7313 || TREE_CODE (arg1) == COMPLEX_CST))
7315 tree subtype = TREE_TYPE (TREE_TYPE (arg0));
7316 tree real0, imag0, real1, imag1;
7318 arg0 = save_expr (arg0);
7319 arg1 = save_expr (arg1);
7320 real0 = fold (build1 (REALPART_EXPR, subtype, arg0));
7321 imag0 = fold (build1 (IMAGPART_EXPR, subtype, arg0));
7322 real1 = fold (build1 (REALPART_EXPR, subtype, arg1));
7323 imag1 = fold (build1 (IMAGPART_EXPR, subtype, arg1));
7325 return fold (build ((code == EQ_EXPR ? TRUTH_ANDIF_EXPR
7326 : TRUTH_ORIF_EXPR),
7327 type,
7328 fold (build (code, type, real0, real1)),
7329 fold (build (code, type, imag0, imag1))));
7332 /* Optimize comparisons of strlen vs zero to a compare of the
7333 first character of the string vs zero. To wit,
7334 strlen(ptr) == 0 => *ptr == 0
7335 strlen(ptr) != 0 => *ptr != 0
7336 Other cases should reduce to one of these two (or a constant)
7337 due to the return value of strlen being unsigned. */
7338 if ((code == EQ_EXPR || code == NE_EXPR)
7339 && integer_zerop (arg1)
7340 && TREE_CODE (arg0) == CALL_EXPR
7341 && TREE_CODE (TREE_OPERAND (arg0, 0)) == ADDR_EXPR)
7343 tree fndecl = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
7344 tree arglist;
7346 if (TREE_CODE (fndecl) == FUNCTION_DECL
7347 && DECL_BUILT_IN (fndecl)
7348 && DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_MD
7349 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STRLEN
7350 && (arglist = TREE_OPERAND (arg0, 1))
7351 && TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) == POINTER_TYPE
7352 && ! TREE_CHAIN (arglist))
7353 return fold (build (code, type,
7354 build1 (INDIRECT_REF, char_type_node,
7355 TREE_VALUE(arglist)),
7356 integer_zero_node));
7359 /* From here on, the only cases we handle are when the result is
7360 known to be a constant.
7362 To compute GT, swap the arguments and do LT.
7363 To compute GE, do LT and invert the result.
7364 To compute LE, swap the arguments, do LT and invert the result.
7365 To compute NE, do EQ and invert the result.
7367 Therefore, the code below must handle only EQ and LT. */
7369 if (code == LE_EXPR || code == GT_EXPR)
7371 tem = arg0, arg0 = arg1, arg1 = tem;
7372 code = swap_tree_comparison (code);
7375 /* Note that it is safe to invert for real values here because we
7376 will check below in the one case that it matters. */
7378 t1 = NULL_TREE;
7379 invert = 0;
7380 if (code == NE_EXPR || code == GE_EXPR)
7382 invert = 1;
7383 code = invert_tree_comparison (code);
7386 /* Compute a result for LT or EQ if args permit;
7387 otherwise return T. */
7388 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
7390 if (code == EQ_EXPR)
7391 t1 = build_int_2 (tree_int_cst_equal (arg0, arg1), 0);
7392 else
7393 t1 = build_int_2 ((TREE_UNSIGNED (TREE_TYPE (arg0))
7394 ? INT_CST_LT_UNSIGNED (arg0, arg1)
7395 : INT_CST_LT (arg0, arg1)),
7399 #if 0 /* This is no longer useful, but breaks some real code. */
7400 /* Assume a nonexplicit constant cannot equal an explicit one,
7401 since such code would be undefined anyway.
7402 Exception: on sysvr4, using #pragma weak,
7403 a label can come out as 0. */
7404 else if (TREE_CODE (arg1) == INTEGER_CST
7405 && !integer_zerop (arg1)
7406 && TREE_CONSTANT (arg0)
7407 && TREE_CODE (arg0) == ADDR_EXPR
7408 && code == EQ_EXPR)
7409 t1 = build_int_2 (0, 0);
7410 #endif
7411 /* Two real constants can be compared explicitly. */
7412 else if (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
7414 /* If either operand is a NaN, the result is false with two
7415 exceptions: First, an NE_EXPR is true on NaNs, but that case
7416 is already handled correctly since we will be inverting the
7417 result for NE_EXPR. Second, if we had inverted a LE_EXPR
7418 or a GE_EXPR into a LT_EXPR, we must return true so that it
7419 will be inverted into false. */
7421 if (REAL_VALUE_ISNAN (TREE_REAL_CST (arg0))
7422 || REAL_VALUE_ISNAN (TREE_REAL_CST (arg1)))
7423 t1 = build_int_2 (invert && code == LT_EXPR, 0);
7425 else if (code == EQ_EXPR)
7426 t1 = build_int_2 (REAL_VALUES_EQUAL (TREE_REAL_CST (arg0),
7427 TREE_REAL_CST (arg1)),
7429 else
7430 t1 = build_int_2 (REAL_VALUES_LESS (TREE_REAL_CST (arg0),
7431 TREE_REAL_CST (arg1)),
7435 if (t1 == NULL_TREE)
7436 return t;
7438 if (invert)
7439 TREE_INT_CST_LOW (t1) ^= 1;
7441 TREE_TYPE (t1) = type;
7442 if (TREE_CODE (type) == BOOLEAN_TYPE)
7443 return (*lang_hooks.truthvalue_conversion) (t1);
7444 return t1;
7446 case COND_EXPR:
7447 /* Pedantic ANSI C says that a conditional expression is never an lvalue,
7448 so all simple results must be passed through pedantic_non_lvalue. */
7449 if (TREE_CODE (arg0) == INTEGER_CST)
7450 return pedantic_non_lvalue
7451 (TREE_OPERAND (t, (integer_zerop (arg0) ? 2 : 1)));
7452 else if (operand_equal_p (arg1, TREE_OPERAND (expr, 2), 0))
7453 return pedantic_omit_one_operand (type, arg1, arg0);
7455 /* If the second operand is zero, invert the comparison and swap
7456 the second and third operands. Likewise if the second operand
7457 is constant and the third is not or if the third operand is
7458 equivalent to the first operand of the comparison. */
7460 if (integer_zerop (arg1)
7461 || (TREE_CONSTANT (arg1) && ! TREE_CONSTANT (TREE_OPERAND (t, 2)))
7462 || (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
7463 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
7464 TREE_OPERAND (t, 2),
7465 TREE_OPERAND (arg0, 1))))
7467 /* See if this can be inverted. If it can't, possibly because
7468 it was a floating-point inequality comparison, don't do
7469 anything. */
7470 tem = invert_truthvalue (arg0);
7472 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
7474 t = build (code, type, tem,
7475 TREE_OPERAND (t, 2), TREE_OPERAND (t, 1));
7476 arg0 = tem;
7477 /* arg1 should be the first argument of the new T. */
7478 arg1 = TREE_OPERAND (t, 1);
7479 STRIP_NOPS (arg1);
7483 /* If we have A op B ? A : C, we may be able to convert this to a
7484 simpler expression, depending on the operation and the values
7485 of B and C. Signed zeros prevent all of these transformations,
7486 for reasons given above each one. */
7488 if (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
7489 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
7490 arg1, TREE_OPERAND (arg0, 1))
7491 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg1))))
7493 tree arg2 = TREE_OPERAND (t, 2);
7494 enum tree_code comp_code = TREE_CODE (arg0);
7496 STRIP_NOPS (arg2);
7498 /* If we have A op 0 ? A : -A, consider applying the following
7499 transformations:
7501 A == 0? A : -A same as -A
7502 A != 0? A : -A same as A
7503 A >= 0? A : -A same as abs (A)
7504 A > 0? A : -A same as abs (A)
7505 A <= 0? A : -A same as -abs (A)
7506 A < 0? A : -A same as -abs (A)
7508 None of these transformations work for modes with signed
7509 zeros. If A is +/-0, the first two transformations will
7510 change the sign of the result (from +0 to -0, or vice
7511 versa). The last four will fix the sign of the result,
7512 even though the original expressions could be positive or
7513 negative, depending on the sign of A.
7515 Note that all these transformations are correct if A is
7516 NaN, since the two alternatives (A and -A) are also NaNs. */
7517 if ((FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (arg0, 1)))
7518 ? real_zerop (TREE_OPERAND (arg0, 1))
7519 : integer_zerop (TREE_OPERAND (arg0, 1)))
7520 && TREE_CODE (arg2) == NEGATE_EXPR
7521 && operand_equal_p (TREE_OPERAND (arg2, 0), arg1, 0))
7522 switch (comp_code)
7524 case EQ_EXPR:
7525 return
7526 pedantic_non_lvalue
7527 (convert (type,
7528 negate_expr
7529 (convert (TREE_TYPE (TREE_OPERAND (t, 1)),
7530 arg1))));
7531 case NE_EXPR:
7532 return pedantic_non_lvalue (convert (type, arg1));
7533 case GE_EXPR:
7534 case GT_EXPR:
7535 if (TREE_UNSIGNED (TREE_TYPE (arg1)))
7536 arg1 = convert ((*lang_hooks.types.signed_type)
7537 (TREE_TYPE (arg1)), arg1);
7538 return pedantic_non_lvalue
7539 (convert (type, fold (build1 (ABS_EXPR,
7540 TREE_TYPE (arg1), arg1))));
7541 case LE_EXPR:
7542 case LT_EXPR:
7543 if (TREE_UNSIGNED (TREE_TYPE (arg1)))
7544 arg1 = convert ((lang_hooks.types.signed_type)
7545 (TREE_TYPE (arg1)), arg1);
7546 return pedantic_non_lvalue
7547 (negate_expr (convert (type,
7548 fold (build1 (ABS_EXPR,
7549 TREE_TYPE (arg1),
7550 arg1)))));
7551 default:
7552 abort ();
7555 /* A != 0 ? A : 0 is simply A, unless A is -0. Likewise
7556 A == 0 ? A : 0 is always 0 unless A is -0. Note that
7557 both transformations are correct when A is NaN: A != 0
7558 is then true, and A == 0 is false. */
7560 if (integer_zerop (TREE_OPERAND (arg0, 1)) && integer_zerop (arg2))
7562 if (comp_code == NE_EXPR)
7563 return pedantic_non_lvalue (convert (type, arg1));
7564 else if (comp_code == EQ_EXPR)
7565 return pedantic_non_lvalue (convert (type, integer_zero_node));
7568 /* Try some transformations of A op B ? A : B.
7570 A == B? A : B same as B
7571 A != B? A : B same as A
7572 A >= B? A : B same as max (A, B)
7573 A > B? A : B same as max (B, A)
7574 A <= B? A : B same as min (A, B)
7575 A < B? A : B same as min (B, A)
7577 As above, these transformations don't work in the presence
7578 of signed zeros. For example, if A and B are zeros of
7579 opposite sign, the first two transformations will change
7580 the sign of the result. In the last four, the original
7581 expressions give different results for (A=+0, B=-0) and
7582 (A=-0, B=+0), but the transformed expressions do not.
7584 The first two transformations are correct if either A or B
7585 is a NaN. In the first transformation, the condition will
7586 be false, and B will indeed be chosen. In the case of the
7587 second transformation, the condition A != B will be true,
7588 and A will be chosen.
7590 The conversions to max() and min() are not correct if B is
7591 a number and A is not. The conditions in the original
7592 expressions will be false, so all four give B. The min()
7593 and max() versions would give a NaN instead. */
7594 if (operand_equal_for_comparison_p (TREE_OPERAND (arg0, 1),
7595 arg2, TREE_OPERAND (arg0, 0)))
7597 tree comp_op0 = TREE_OPERAND (arg0, 0);
7598 tree comp_op1 = TREE_OPERAND (arg0, 1);
7599 tree comp_type = TREE_TYPE (comp_op0);
7601 /* Avoid adding NOP_EXPRs in case this is an lvalue. */
7602 if (TYPE_MAIN_VARIANT (comp_type) == TYPE_MAIN_VARIANT (type))
7604 comp_type = type;
7605 comp_op0 = arg1;
7606 comp_op1 = arg2;
7609 switch (comp_code)
7611 case EQ_EXPR:
7612 return pedantic_non_lvalue (convert (type, arg2));
7613 case NE_EXPR:
7614 return pedantic_non_lvalue (convert (type, arg1));
7615 case LE_EXPR:
7616 case LT_EXPR:
7617 /* In C++ a ?: expression can be an lvalue, so put the
7618 operand which will be used if they are equal first
7619 so that we can convert this back to the
7620 corresponding COND_EXPR. */
7621 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
7622 return pedantic_non_lvalue
7623 (convert (type, fold (build (MIN_EXPR, comp_type,
7624 (comp_code == LE_EXPR
7625 ? comp_op0 : comp_op1),
7626 (comp_code == LE_EXPR
7627 ? comp_op1 : comp_op0)))));
7628 break;
7629 case GE_EXPR:
7630 case GT_EXPR:
7631 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
7632 return pedantic_non_lvalue
7633 (convert (type, fold (build (MAX_EXPR, comp_type,
7634 (comp_code == GE_EXPR
7635 ? comp_op0 : comp_op1),
7636 (comp_code == GE_EXPR
7637 ? comp_op1 : comp_op0)))));
7638 break;
7639 default:
7640 abort ();
7644 /* If this is A op C1 ? A : C2 with C1 and C2 constant integers,
7645 we might still be able to simplify this. For example,
7646 if C1 is one less or one more than C2, this might have started
7647 out as a MIN or MAX and been transformed by this function.
7648 Only good for INTEGER_TYPEs, because we need TYPE_MAX_VALUE. */
7650 if (INTEGRAL_TYPE_P (type)
7651 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
7652 && TREE_CODE (arg2) == INTEGER_CST)
7653 switch (comp_code)
7655 case EQ_EXPR:
7656 /* We can replace A with C1 in this case. */
7657 arg1 = convert (type, TREE_OPERAND (arg0, 1));
7658 t = build (code, type, TREE_OPERAND (t, 0), arg1,
7659 TREE_OPERAND (t, 2));
7660 break;
7662 case LT_EXPR:
7663 /* If C1 is C2 + 1, this is min(A, C2). */
7664 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type), 1)
7665 && operand_equal_p (TREE_OPERAND (arg0, 1),
7666 const_binop (PLUS_EXPR, arg2,
7667 integer_one_node, 0), 1))
7668 return pedantic_non_lvalue
7669 (fold (build (MIN_EXPR, type, arg1, arg2)));
7670 break;
7672 case LE_EXPR:
7673 /* If C1 is C2 - 1, this is min(A, C2). */
7674 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type), 1)
7675 && operand_equal_p (TREE_OPERAND (arg0, 1),
7676 const_binop (MINUS_EXPR, arg2,
7677 integer_one_node, 0), 1))
7678 return pedantic_non_lvalue
7679 (fold (build (MIN_EXPR, type, arg1, arg2)));
7680 break;
7682 case GT_EXPR:
7683 /* If C1 is C2 - 1, this is max(A, C2). */
7684 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type), 1)
7685 && operand_equal_p (TREE_OPERAND (arg0, 1),
7686 const_binop (MINUS_EXPR, arg2,
7687 integer_one_node, 0), 1))
7688 return pedantic_non_lvalue
7689 (fold (build (MAX_EXPR, type, arg1, arg2)));
7690 break;
7692 case GE_EXPR:
7693 /* If C1 is C2 + 1, this is max(A, C2). */
7694 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type), 1)
7695 && operand_equal_p (TREE_OPERAND (arg0, 1),
7696 const_binop (PLUS_EXPR, arg2,
7697 integer_one_node, 0), 1))
7698 return pedantic_non_lvalue
7699 (fold (build (MAX_EXPR, type, arg1, arg2)));
7700 break;
7701 case NE_EXPR:
7702 break;
7703 default:
7704 abort ();
7708 /* If the second operand is simpler than the third, swap them
7709 since that produces better jump optimization results. */
7710 if ((TREE_CONSTANT (arg1) || DECL_P (arg1)
7711 || TREE_CODE (arg1) == SAVE_EXPR)
7712 && ! (TREE_CONSTANT (TREE_OPERAND (t, 2))
7713 || DECL_P (TREE_OPERAND (t, 2))
7714 || TREE_CODE (TREE_OPERAND (t, 2)) == SAVE_EXPR))
7716 /* See if this can be inverted. If it can't, possibly because
7717 it was a floating-point inequality comparison, don't do
7718 anything. */
7719 tem = invert_truthvalue (arg0);
7721 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
7723 t = build (code, type, tem,
7724 TREE_OPERAND (t, 2), TREE_OPERAND (t, 1));
7725 arg0 = tem;
7726 /* arg1 should be the first argument of the new T. */
7727 arg1 = TREE_OPERAND (t, 1);
7728 STRIP_NOPS (arg1);
7732 /* Convert A ? 1 : 0 to simply A. */
7733 if (integer_onep (TREE_OPERAND (t, 1))
7734 && integer_zerop (TREE_OPERAND (t, 2))
7735 /* If we try to convert TREE_OPERAND (t, 0) to our type, the
7736 call to fold will try to move the conversion inside
7737 a COND, which will recurse. In that case, the COND_EXPR
7738 is probably the best choice, so leave it alone. */
7739 && type == TREE_TYPE (arg0))
7740 return pedantic_non_lvalue (arg0);
7742 /* Convert A ? 0 : 1 to !A. This prefers the use of NOT_EXPR
7743 over COND_EXPR in cases such as floating point comparisons. */
7744 if (integer_zerop (TREE_OPERAND (t, 1))
7745 && integer_onep (TREE_OPERAND (t, 2))
7746 && truth_value_p (TREE_CODE (arg0)))
7747 return pedantic_non_lvalue (convert (type,
7748 invert_truthvalue (arg0)));
7750 /* Look for expressions of the form A & 2 ? 2 : 0. The result of this
7751 operation is simply A & 2. */
7753 if (integer_zerop (TREE_OPERAND (t, 2))
7754 && TREE_CODE (arg0) == NE_EXPR
7755 && integer_zerop (TREE_OPERAND (arg0, 1))
7756 && integer_pow2p (arg1)
7757 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
7758 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
7759 arg1, 1))
7760 return pedantic_non_lvalue (convert (type, TREE_OPERAND (arg0, 0)));
7762 /* Convert A ? B : 0 into A && B if A and B are truth values. */
7763 if (integer_zerop (TREE_OPERAND (t, 2))
7764 && truth_value_p (TREE_CODE (arg0))
7765 && truth_value_p (TREE_CODE (arg1)))
7766 return pedantic_non_lvalue (fold (build (TRUTH_ANDIF_EXPR, type,
7767 arg0, arg1)));
7769 /* Convert A ? B : 1 into !A || B if A and B are truth values. */
7770 if (integer_onep (TREE_OPERAND (t, 2))
7771 && truth_value_p (TREE_CODE (arg0))
7772 && truth_value_p (TREE_CODE (arg1)))
7774 /* Only perform transformation if ARG0 is easily inverted. */
7775 tem = invert_truthvalue (arg0);
7776 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
7777 return pedantic_non_lvalue (fold (build (TRUTH_ORIF_EXPR, type,
7778 tem, arg1)));
7781 return t;
7783 case COMPOUND_EXPR:
7784 /* When pedantic, a compound expression can be neither an lvalue
7785 nor an integer constant expression. */
7786 if (TREE_SIDE_EFFECTS (arg0) || pedantic)
7787 return t;
7788 /* Don't let (0, 0) be null pointer constant. */
7789 if (integer_zerop (arg1))
7790 return build1 (NOP_EXPR, type, arg1);
7791 return convert (type, arg1);
7793 case COMPLEX_EXPR:
7794 if (wins)
7795 return build_complex (type, arg0, arg1);
7796 return t;
7798 case REALPART_EXPR:
7799 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
7800 return t;
7801 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
7802 return omit_one_operand (type, TREE_OPERAND (arg0, 0),
7803 TREE_OPERAND (arg0, 1));
7804 else if (TREE_CODE (arg0) == COMPLEX_CST)
7805 return TREE_REALPART (arg0);
7806 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
7807 return fold (build (TREE_CODE (arg0), type,
7808 fold (build1 (REALPART_EXPR, type,
7809 TREE_OPERAND (arg0, 0))),
7810 fold (build1 (REALPART_EXPR,
7811 type, TREE_OPERAND (arg0, 1)))));
7812 return t;
7814 case IMAGPART_EXPR:
7815 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
7816 return convert (type, integer_zero_node);
7817 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
7818 return omit_one_operand (type, TREE_OPERAND (arg0, 1),
7819 TREE_OPERAND (arg0, 0));
7820 else if (TREE_CODE (arg0) == COMPLEX_CST)
7821 return TREE_IMAGPART (arg0);
7822 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
7823 return fold (build (TREE_CODE (arg0), type,
7824 fold (build1 (IMAGPART_EXPR, type,
7825 TREE_OPERAND (arg0, 0))),
7826 fold (build1 (IMAGPART_EXPR, type,
7827 TREE_OPERAND (arg0, 1)))));
7828 return t;
7830 /* Pull arithmetic ops out of the CLEANUP_POINT_EXPR where
7831 appropriate. */
7832 case CLEANUP_POINT_EXPR:
7833 if (! has_cleanups (arg0))
7834 return TREE_OPERAND (t, 0);
7837 enum tree_code code0 = TREE_CODE (arg0);
7838 int kind0 = TREE_CODE_CLASS (code0);
7839 tree arg00 = TREE_OPERAND (arg0, 0);
7840 tree arg01;
7842 if (kind0 == '1' || code0 == TRUTH_NOT_EXPR)
7843 return fold (build1 (code0, type,
7844 fold (build1 (CLEANUP_POINT_EXPR,
7845 TREE_TYPE (arg00), arg00))));
7847 if (kind0 == '<' || kind0 == '2'
7848 || code0 == TRUTH_ANDIF_EXPR || code0 == TRUTH_ORIF_EXPR
7849 || code0 == TRUTH_AND_EXPR || code0 == TRUTH_OR_EXPR
7850 || code0 == TRUTH_XOR_EXPR)
7852 arg01 = TREE_OPERAND (arg0, 1);
7854 if (TREE_CONSTANT (arg00)
7855 || ((code0 == TRUTH_ANDIF_EXPR || code0 == TRUTH_ORIF_EXPR)
7856 && ! has_cleanups (arg00)))
7857 return fold (build (code0, type, arg00,
7858 fold (build1 (CLEANUP_POINT_EXPR,
7859 TREE_TYPE (arg01), arg01))));
7861 if (TREE_CONSTANT (arg01))
7862 return fold (build (code0, type,
7863 fold (build1 (CLEANUP_POINT_EXPR,
7864 TREE_TYPE (arg00), arg00)),
7865 arg01));
7868 return t;
7871 case CALL_EXPR:
7872 /* Check for a built-in function. */
7873 if (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR
7874 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (expr, 0), 0))
7875 == FUNCTION_DECL)
7876 && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (expr, 0), 0)))
7878 tree tmp = fold_builtin (expr);
7879 if (tmp)
7880 return tmp;
7882 return t;
7884 default:
7885 return t;
7886 } /* switch (code) */
7889 /* Determine if first argument is a multiple of second argument. Return 0 if
7890 it is not, or we cannot easily determined it to be.
7892 An example of the sort of thing we care about (at this point; this routine
7893 could surely be made more general, and expanded to do what the *_DIV_EXPR's
7894 fold cases do now) is discovering that
7896 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
7898 is a multiple of
7900 SAVE_EXPR (J * 8)
7902 when we know that the two SAVE_EXPR (J * 8) nodes are the same node.
7904 This code also handles discovering that
7906 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
7908 is a multiple of 8 so we don't have to worry about dealing with a
7909 possible remainder.
7911 Note that we *look* inside a SAVE_EXPR only to determine how it was
7912 calculated; it is not safe for fold to do much of anything else with the
7913 internals of a SAVE_EXPR, since it cannot know when it will be evaluated
7914 at run time. For example, the latter example above *cannot* be implemented
7915 as SAVE_EXPR (I) * J or any variant thereof, since the value of J at
7916 evaluation time of the original SAVE_EXPR is not necessarily the same at
7917 the time the new expression is evaluated. The only optimization of this
7918 sort that would be valid is changing
7920 SAVE_EXPR (I) * SAVE_EXPR (SAVE_EXPR (J) * 8)
7922 divided by 8 to
7924 SAVE_EXPR (I) * SAVE_EXPR (J)
7926 (where the same SAVE_EXPR (J) is used in the original and the
7927 transformed version). */
7929 static int
7930 multiple_of_p (tree type, tree top, tree bottom)
7932 if (operand_equal_p (top, bottom, 0))
7933 return 1;
7935 if (TREE_CODE (type) != INTEGER_TYPE)
7936 return 0;
7938 switch (TREE_CODE (top))
7940 case MULT_EXPR:
7941 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
7942 || multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
7944 case PLUS_EXPR:
7945 case MINUS_EXPR:
7946 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
7947 && multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
7949 case LSHIFT_EXPR:
7950 if (TREE_CODE (TREE_OPERAND (top, 1)) == INTEGER_CST)
7952 tree op1, t1;
7954 op1 = TREE_OPERAND (top, 1);
7955 /* const_binop may not detect overflow correctly,
7956 so check for it explicitly here. */
7957 if (TYPE_PRECISION (TREE_TYPE (size_one_node))
7958 > TREE_INT_CST_LOW (op1)
7959 && TREE_INT_CST_HIGH (op1) == 0
7960 && 0 != (t1 = convert (type,
7961 const_binop (LSHIFT_EXPR, size_one_node,
7962 op1, 0)))
7963 && ! TREE_OVERFLOW (t1))
7964 return multiple_of_p (type, t1, bottom);
7966 return 0;
7968 case NOP_EXPR:
7969 /* Can't handle conversions from non-integral or wider integral type. */
7970 if ((TREE_CODE (TREE_TYPE (TREE_OPERAND (top, 0))) != INTEGER_TYPE)
7971 || (TYPE_PRECISION (type)
7972 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (top, 0)))))
7973 return 0;
7975 /* .. fall through ... */
7977 case SAVE_EXPR:
7978 return multiple_of_p (type, TREE_OPERAND (top, 0), bottom);
7980 case INTEGER_CST:
7981 if (TREE_CODE (bottom) != INTEGER_CST
7982 || (TREE_UNSIGNED (type)
7983 && (tree_int_cst_sgn (top) < 0
7984 || tree_int_cst_sgn (bottom) < 0)))
7985 return 0;
7986 return integer_zerop (const_binop (TRUNC_MOD_EXPR,
7987 top, bottom, 0));
7989 default:
7990 return 0;
7994 /* Return true if `t' is known to be non-negative. */
7997 tree_expr_nonnegative_p (tree t)
7999 switch (TREE_CODE (t))
8001 case ABS_EXPR:
8002 case FFS_EXPR:
8003 case POPCOUNT_EXPR:
8004 case PARITY_EXPR:
8005 return 1;
8007 case CLZ_EXPR:
8008 case CTZ_EXPR:
8009 /* These are undefined at zero. This is true even if
8010 C[LT]Z_DEFINED_VALUE_AT_ZERO is set, since what we're
8011 computing here is a user-visible property. */
8012 return 0;
8014 case INTEGER_CST:
8015 return tree_int_cst_sgn (t) >= 0;
8017 case REAL_CST:
8018 return ! REAL_VALUE_NEGATIVE (TREE_REAL_CST (t));
8020 case PLUS_EXPR:
8021 if (FLOAT_TYPE_P (TREE_TYPE (t)))
8022 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8023 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8025 /* zero_extend(x) + zero_extend(y) is non-negative if x and y are
8026 both unsigned and at least 2 bits shorter than the result. */
8027 if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
8028 && TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
8029 && TREE_CODE (TREE_OPERAND (t, 1)) == NOP_EXPR)
8031 tree inner1 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
8032 tree inner2 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0));
8033 if (TREE_CODE (inner1) == INTEGER_TYPE && TREE_UNSIGNED (inner1)
8034 && TREE_CODE (inner2) == INTEGER_TYPE && TREE_UNSIGNED (inner2))
8036 unsigned int prec = MAX (TYPE_PRECISION (inner1),
8037 TYPE_PRECISION (inner2)) + 1;
8038 return prec < TYPE_PRECISION (TREE_TYPE (t));
8041 break;
8043 case MULT_EXPR:
8044 if (FLOAT_TYPE_P (TREE_TYPE (t)))
8046 /* x * x for floating point x is always non-negative. */
8047 if (operand_equal_p (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1), 0))
8048 return 1;
8049 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8050 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8053 /* zero_extend(x) * zero_extend(y) is non-negative if x and y are
8054 both unsigned and their total bits is shorter than the result. */
8055 if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
8056 && TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
8057 && TREE_CODE (TREE_OPERAND (t, 1)) == NOP_EXPR)
8059 tree inner1 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
8060 tree inner2 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0));
8061 if (TREE_CODE (inner1) == INTEGER_TYPE && TREE_UNSIGNED (inner1)
8062 && TREE_CODE (inner2) == INTEGER_TYPE && TREE_UNSIGNED (inner2))
8063 return TYPE_PRECISION (inner1) + TYPE_PRECISION (inner2)
8064 < TYPE_PRECISION (TREE_TYPE (t));
8066 return 0;
8068 case TRUNC_DIV_EXPR:
8069 case CEIL_DIV_EXPR:
8070 case FLOOR_DIV_EXPR:
8071 case ROUND_DIV_EXPR:
8072 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8073 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8075 case TRUNC_MOD_EXPR:
8076 case CEIL_MOD_EXPR:
8077 case FLOOR_MOD_EXPR:
8078 case ROUND_MOD_EXPR:
8079 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8081 case RDIV_EXPR:
8082 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8083 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8085 case NOP_EXPR:
8087 tree inner_type = TREE_TYPE (TREE_OPERAND (t, 0));
8088 tree outer_type = TREE_TYPE (t);
8090 if (TREE_CODE (outer_type) == REAL_TYPE)
8092 if (TREE_CODE (inner_type) == REAL_TYPE)
8093 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8094 if (TREE_CODE (inner_type) == INTEGER_TYPE)
8096 if (TREE_UNSIGNED (inner_type))
8097 return 1;
8098 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8101 else if (TREE_CODE (outer_type) == INTEGER_TYPE)
8103 if (TREE_CODE (inner_type) == REAL_TYPE)
8104 return tree_expr_nonnegative_p (TREE_OPERAND (t,0));
8105 if (TREE_CODE (inner_type) == INTEGER_TYPE)
8106 return TYPE_PRECISION (inner_type) < TYPE_PRECISION (outer_type)
8107 && TREE_UNSIGNED (inner_type);
8110 break;
8112 case COND_EXPR:
8113 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1))
8114 && tree_expr_nonnegative_p (TREE_OPERAND (t, 2));
8115 case COMPOUND_EXPR:
8116 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8117 case MIN_EXPR:
8118 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8119 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8120 case MAX_EXPR:
8121 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8122 || tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8123 case MODIFY_EXPR:
8124 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8125 case BIND_EXPR:
8126 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8127 case SAVE_EXPR:
8128 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8129 case NON_LVALUE_EXPR:
8130 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8131 case FLOAT_EXPR:
8132 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8133 case RTL_EXPR:
8134 return rtl_expr_nonnegative_p (RTL_EXPR_RTL (t));
8136 case CALL_EXPR:
8137 if (TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
8139 tree fndecl = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
8140 tree arglist = TREE_OPERAND (t, 1);
8141 if (TREE_CODE (fndecl) == FUNCTION_DECL
8142 && DECL_BUILT_IN (fndecl)
8143 && DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_MD)
8144 switch (DECL_FUNCTION_CODE (fndecl))
8146 case BUILT_IN_CABS:
8147 case BUILT_IN_CABSL:
8148 case BUILT_IN_CABSF:
8149 case BUILT_IN_EXP:
8150 case BUILT_IN_EXPF:
8151 case BUILT_IN_EXPL:
8152 case BUILT_IN_FABS:
8153 case BUILT_IN_FABSF:
8154 case BUILT_IN_FABSL:
8155 case BUILT_IN_SQRT:
8156 case BUILT_IN_SQRTF:
8157 case BUILT_IN_SQRTL:
8158 return 1;
8160 case BUILT_IN_ATAN:
8161 case BUILT_IN_ATANF:
8162 case BUILT_IN_ATANL:
8163 case BUILT_IN_CEIL:
8164 case BUILT_IN_CEILF:
8165 case BUILT_IN_CEILL:
8166 case BUILT_IN_FLOOR:
8167 case BUILT_IN_FLOORF:
8168 case BUILT_IN_FLOORL:
8169 case BUILT_IN_NEARBYINT:
8170 case BUILT_IN_NEARBYINTF:
8171 case BUILT_IN_NEARBYINTL:
8172 case BUILT_IN_ROUND:
8173 case BUILT_IN_ROUNDF:
8174 case BUILT_IN_ROUNDL:
8175 case BUILT_IN_TRUNC:
8176 case BUILT_IN_TRUNCF:
8177 case BUILT_IN_TRUNCL:
8178 return tree_expr_nonnegative_p (TREE_VALUE (arglist));
8180 case BUILT_IN_POW:
8181 case BUILT_IN_POWF:
8182 case BUILT_IN_POWL:
8183 return tree_expr_nonnegative_p (TREE_VALUE (arglist));
8185 default:
8186 break;
8190 /* ... fall through ... */
8192 default:
8193 if (truth_value_p (TREE_CODE (t)))
8194 /* Truth values evaluate to 0 or 1, which is nonnegative. */
8195 return 1;
8198 /* We don't know sign of `t', so be conservative and return false. */
8199 return 0;
8202 /* Return true if `r' is known to be non-negative.
8203 Only handles constants at the moment. */
8206 rtl_expr_nonnegative_p (rtx r)
8208 switch (GET_CODE (r))
8210 case CONST_INT:
8211 return INTVAL (r) >= 0;
8213 case CONST_DOUBLE:
8214 if (GET_MODE (r) == VOIDmode)
8215 return CONST_DOUBLE_HIGH (r) >= 0;
8216 return 0;
8218 case CONST_VECTOR:
8220 int units, i;
8221 rtx elt;
8223 units = CONST_VECTOR_NUNITS (r);
8225 for (i = 0; i < units; ++i)
8227 elt = CONST_VECTOR_ELT (r, i);
8228 if (!rtl_expr_nonnegative_p (elt))
8229 return 0;
8232 return 1;
8235 case SYMBOL_REF:
8236 case LABEL_REF:
8237 /* These are always nonnegative. */
8238 return 1;
8240 default:
8241 return 0;
8245 #include "gt-fold-const.h"