* config/xtensa/crti.asm (_init, _fini): Increase frame size to 64.
[official-gcc.git] / gcc / fold-const.c
blob114aaae44c8a1992b2ef954e3e3c395c5724f918
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 || TREE_CODE (TREE_TYPE (t)) == OFFSET_TYPE)
198 prec = POINTER_SIZE;
199 else
200 prec = TYPE_PRECISION (TREE_TYPE (t));
202 /* First clear all bits that are beyond the type's precision. */
204 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
206 else if (prec > HOST_BITS_PER_WIDE_INT)
207 TREE_INT_CST_HIGH (t)
208 &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
209 else
211 TREE_INT_CST_HIGH (t) = 0;
212 if (prec < HOST_BITS_PER_WIDE_INT)
213 TREE_INT_CST_LOW (t) &= ~((unsigned HOST_WIDE_INT) (-1) << prec);
216 /* Unsigned types do not suffer sign extension or overflow unless they
217 are a sizetype. */
218 if (TREE_UNSIGNED (TREE_TYPE (t))
219 && ! (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
220 && TYPE_IS_SIZETYPE (TREE_TYPE (t))))
221 return overflow;
223 /* If the value's sign bit is set, extend the sign. */
224 if (prec != 2 * HOST_BITS_PER_WIDE_INT
225 && (prec > HOST_BITS_PER_WIDE_INT
226 ? 0 != (TREE_INT_CST_HIGH (t)
227 & ((HOST_WIDE_INT) 1
228 << (prec - HOST_BITS_PER_WIDE_INT - 1)))
229 : 0 != (TREE_INT_CST_LOW (t)
230 & ((unsigned HOST_WIDE_INT) 1 << (prec - 1)))))
232 /* Value is negative:
233 set to 1 all the bits that are outside this type's precision. */
234 if (prec > HOST_BITS_PER_WIDE_INT)
235 TREE_INT_CST_HIGH (t)
236 |= ((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
237 else
239 TREE_INT_CST_HIGH (t) = -1;
240 if (prec < HOST_BITS_PER_WIDE_INT)
241 TREE_INT_CST_LOW (t) |= ((unsigned HOST_WIDE_INT) (-1) << prec);
245 /* Return nonzero if signed overflow occurred. */
246 return
247 ((overflow | (low ^ TREE_INT_CST_LOW (t)) | (high ^ TREE_INT_CST_HIGH (t)))
248 != 0);
251 /* Add two doubleword integers with doubleword result.
252 Each argument is given as two `HOST_WIDE_INT' pieces.
253 One argument is L1 and H1; the other, L2 and H2.
254 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
257 add_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
258 unsigned HOST_WIDE_INT l2, HOST_WIDE_INT h2,
259 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
261 unsigned HOST_WIDE_INT l;
262 HOST_WIDE_INT h;
264 l = l1 + l2;
265 h = h1 + h2 + (l < l1);
267 *lv = l;
268 *hv = h;
269 return OVERFLOW_SUM_SIGN (h1, h2, h);
272 /* Negate a doubleword integer with doubleword result.
273 Return nonzero if the operation overflows, assuming it's signed.
274 The argument is given as two `HOST_WIDE_INT' pieces in L1 and H1.
275 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
278 neg_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
279 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
281 if (l1 == 0)
283 *lv = 0;
284 *hv = - h1;
285 return (*hv & h1) < 0;
287 else
289 *lv = -l1;
290 *hv = ~h1;
291 return 0;
295 /* Multiply two doubleword integers with doubleword result.
296 Return nonzero if the operation overflows, assuming it's signed.
297 Each argument is given as two `HOST_WIDE_INT' pieces.
298 One argument is L1 and H1; the other, L2 and H2.
299 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
302 mul_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
303 unsigned HOST_WIDE_INT l2, HOST_WIDE_INT h2,
304 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
306 HOST_WIDE_INT arg1[4];
307 HOST_WIDE_INT arg2[4];
308 HOST_WIDE_INT prod[4 * 2];
309 unsigned HOST_WIDE_INT carry;
310 int i, j, k;
311 unsigned HOST_WIDE_INT toplow, neglow;
312 HOST_WIDE_INT tophigh, neghigh;
314 encode (arg1, l1, h1);
315 encode (arg2, l2, h2);
317 memset (prod, 0, sizeof prod);
319 for (i = 0; i < 4; i++)
321 carry = 0;
322 for (j = 0; j < 4; j++)
324 k = i + j;
325 /* This product is <= 0xFFFE0001, the sum <= 0xFFFF0000. */
326 carry += arg1[i] * arg2[j];
327 /* Since prod[p] < 0xFFFF, this sum <= 0xFFFFFFFF. */
328 carry += prod[k];
329 prod[k] = LOWPART (carry);
330 carry = HIGHPART (carry);
332 prod[i + 4] = carry;
335 decode (prod, lv, hv); /* This ignores prod[4] through prod[4*2-1] */
337 /* Check for overflow by calculating the top half of the answer in full;
338 it should agree with the low half's sign bit. */
339 decode (prod + 4, &toplow, &tophigh);
340 if (h1 < 0)
342 neg_double (l2, h2, &neglow, &neghigh);
343 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
345 if (h2 < 0)
347 neg_double (l1, h1, &neglow, &neghigh);
348 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
350 return (*hv < 0 ? ~(toplow & tophigh) : toplow | tophigh) != 0;
353 /* Shift the doubleword integer in L1, H1 left by COUNT places
354 keeping only PREC bits of result.
355 Shift right if COUNT is negative.
356 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
357 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
359 void
360 lshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
361 HOST_WIDE_INT count, unsigned int prec,
362 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv, int arith)
364 unsigned HOST_WIDE_INT signmask;
366 if (count < 0)
368 rshift_double (l1, h1, -count, prec, lv, hv, arith);
369 return;
372 #ifdef SHIFT_COUNT_TRUNCATED
373 if (SHIFT_COUNT_TRUNCATED)
374 count %= prec;
375 #endif
377 if (count >= 2 * HOST_BITS_PER_WIDE_INT)
379 /* Shifting by the host word size is undefined according to the
380 ANSI standard, so we must handle this as a special case. */
381 *hv = 0;
382 *lv = 0;
384 else if (count >= HOST_BITS_PER_WIDE_INT)
386 *hv = l1 << (count - HOST_BITS_PER_WIDE_INT);
387 *lv = 0;
389 else
391 *hv = (((unsigned HOST_WIDE_INT) h1 << count)
392 | (l1 >> (HOST_BITS_PER_WIDE_INT - count - 1) >> 1));
393 *lv = l1 << count;
396 /* Sign extend all bits that are beyond the precision. */
398 signmask = -((prec > HOST_BITS_PER_WIDE_INT
399 ? ((unsigned HOST_WIDE_INT) *hv
400 >> (prec - HOST_BITS_PER_WIDE_INT - 1))
401 : (*lv >> (prec - 1))) & 1);
403 if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
405 else if (prec >= HOST_BITS_PER_WIDE_INT)
407 *hv &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
408 *hv |= signmask << (prec - HOST_BITS_PER_WIDE_INT);
410 else
412 *hv = signmask;
413 *lv &= ~((unsigned HOST_WIDE_INT) (-1) << prec);
414 *lv |= signmask << prec;
418 /* Shift the doubleword integer in L1, H1 right by COUNT places
419 keeping only PREC bits of result. COUNT must be positive.
420 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
421 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
423 void
424 rshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
425 HOST_WIDE_INT count, unsigned int prec,
426 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv,
427 int arith)
429 unsigned HOST_WIDE_INT signmask;
431 signmask = (arith
432 ? -((unsigned HOST_WIDE_INT) h1 >> (HOST_BITS_PER_WIDE_INT - 1))
433 : 0);
435 #ifdef SHIFT_COUNT_TRUNCATED
436 if (SHIFT_COUNT_TRUNCATED)
437 count %= prec;
438 #endif
440 if (count >= 2 * HOST_BITS_PER_WIDE_INT)
442 /* Shifting by the host word size is undefined according to the
443 ANSI standard, so we must handle this as a special case. */
444 *hv = 0;
445 *lv = 0;
447 else if (count >= HOST_BITS_PER_WIDE_INT)
449 *hv = 0;
450 *lv = (unsigned HOST_WIDE_INT) h1 >> (count - HOST_BITS_PER_WIDE_INT);
452 else
454 *hv = (unsigned HOST_WIDE_INT) h1 >> count;
455 *lv = ((l1 >> count)
456 | ((unsigned HOST_WIDE_INT) h1 << (HOST_BITS_PER_WIDE_INT - count - 1) << 1));
459 /* Zero / sign extend all bits that are beyond the precision. */
461 if (count >= (HOST_WIDE_INT)prec)
463 *hv = signmask;
464 *lv = signmask;
466 else if ((prec - count) >= 2 * HOST_BITS_PER_WIDE_INT)
468 else if ((prec - count) >= HOST_BITS_PER_WIDE_INT)
470 *hv &= ~((HOST_WIDE_INT) (-1) << (prec - count - HOST_BITS_PER_WIDE_INT));
471 *hv |= signmask << (prec - count - HOST_BITS_PER_WIDE_INT);
473 else
475 *hv = signmask;
476 *lv &= ~((unsigned HOST_WIDE_INT) (-1) << (prec - count));
477 *lv |= signmask << (prec - count);
481 /* Rotate the doubleword integer in L1, H1 left by COUNT places
482 keeping only PREC bits of result.
483 Rotate right if COUNT is negative.
484 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
486 void
487 lrotate_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
488 HOST_WIDE_INT count, unsigned int prec,
489 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
491 unsigned HOST_WIDE_INT s1l, s2l;
492 HOST_WIDE_INT s1h, s2h;
494 count %= prec;
495 if (count < 0)
496 count += prec;
498 lshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
499 rshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
500 *lv = s1l | s2l;
501 *hv = s1h | s2h;
504 /* Rotate the doubleword integer in L1, H1 left by COUNT places
505 keeping only PREC bits of result. COUNT must be positive.
506 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
508 void
509 rrotate_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
510 HOST_WIDE_INT count, unsigned int prec,
511 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
513 unsigned HOST_WIDE_INT s1l, s2l;
514 HOST_WIDE_INT s1h, s2h;
516 count %= prec;
517 if (count < 0)
518 count += prec;
520 rshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
521 lshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
522 *lv = s1l | s2l;
523 *hv = s1h | s2h;
526 /* Divide doubleword integer LNUM, HNUM by doubleword integer LDEN, HDEN
527 for a quotient (stored in *LQUO, *HQUO) and remainder (in *LREM, *HREM).
528 CODE is a tree code for a kind of division, one of
529 TRUNC_DIV_EXPR, FLOOR_DIV_EXPR, CEIL_DIV_EXPR, ROUND_DIV_EXPR
530 or EXACT_DIV_EXPR
531 It controls how the quotient is rounded to an integer.
532 Return nonzero if the operation overflows.
533 UNS nonzero says do unsigned division. */
536 div_and_round_double (enum tree_code code, int uns,
537 unsigned HOST_WIDE_INT lnum_orig, /* num == numerator == dividend */
538 HOST_WIDE_INT hnum_orig,
539 unsigned HOST_WIDE_INT lden_orig, /* den == denominator == divisor */
540 HOST_WIDE_INT hden_orig,
541 unsigned HOST_WIDE_INT *lquo,
542 HOST_WIDE_INT *hquo, unsigned HOST_WIDE_INT *lrem,
543 HOST_WIDE_INT *hrem)
545 int quo_neg = 0;
546 HOST_WIDE_INT num[4 + 1]; /* extra element for scaling. */
547 HOST_WIDE_INT den[4], quo[4];
548 int i, j;
549 unsigned HOST_WIDE_INT work;
550 unsigned HOST_WIDE_INT carry = 0;
551 unsigned HOST_WIDE_INT lnum = lnum_orig;
552 HOST_WIDE_INT hnum = hnum_orig;
553 unsigned HOST_WIDE_INT lden = lden_orig;
554 HOST_WIDE_INT hden = hden_orig;
555 int overflow = 0;
557 if (hden == 0 && lden == 0)
558 overflow = 1, lden = 1;
560 /* calculate quotient sign and convert operands to unsigned. */
561 if (!uns)
563 if (hnum < 0)
565 quo_neg = ~ quo_neg;
566 /* (minimum integer) / (-1) is the only overflow case. */
567 if (neg_double (lnum, hnum, &lnum, &hnum)
568 && ((HOST_WIDE_INT) lden & hden) == -1)
569 overflow = 1;
571 if (hden < 0)
573 quo_neg = ~ quo_neg;
574 neg_double (lden, hden, &lden, &hden);
578 if (hnum == 0 && hden == 0)
579 { /* single precision */
580 *hquo = *hrem = 0;
581 /* This unsigned division rounds toward zero. */
582 *lquo = lnum / lden;
583 goto finish_up;
586 if (hnum == 0)
587 { /* trivial case: dividend < divisor */
588 /* hden != 0 already checked. */
589 *hquo = *lquo = 0;
590 *hrem = hnum;
591 *lrem = lnum;
592 goto finish_up;
595 memset (quo, 0, sizeof quo);
597 memset (num, 0, sizeof num); /* to zero 9th element */
598 memset (den, 0, sizeof den);
600 encode (num, lnum, hnum);
601 encode (den, lden, hden);
603 /* Special code for when the divisor < BASE. */
604 if (hden == 0 && lden < (unsigned HOST_WIDE_INT) BASE)
606 /* hnum != 0 already checked. */
607 for (i = 4 - 1; i >= 0; i--)
609 work = num[i] + carry * BASE;
610 quo[i] = work / lden;
611 carry = work % lden;
614 else
616 /* Full double precision division,
617 with thanks to Don Knuth's "Seminumerical Algorithms". */
618 int num_hi_sig, den_hi_sig;
619 unsigned HOST_WIDE_INT quo_est, scale;
621 /* Find the highest nonzero divisor digit. */
622 for (i = 4 - 1;; i--)
623 if (den[i] != 0)
625 den_hi_sig = i;
626 break;
629 /* Insure that the first digit of the divisor is at least BASE/2.
630 This is required by the quotient digit estimation algorithm. */
632 scale = BASE / (den[den_hi_sig] + 1);
633 if (scale > 1)
634 { /* scale divisor and dividend */
635 carry = 0;
636 for (i = 0; i <= 4 - 1; i++)
638 work = (num[i] * scale) + carry;
639 num[i] = LOWPART (work);
640 carry = HIGHPART (work);
643 num[4] = carry;
644 carry = 0;
645 for (i = 0; i <= 4 - 1; i++)
647 work = (den[i] * scale) + carry;
648 den[i] = LOWPART (work);
649 carry = HIGHPART (work);
650 if (den[i] != 0) den_hi_sig = i;
654 num_hi_sig = 4;
656 /* Main loop */
657 for (i = num_hi_sig - den_hi_sig - 1; i >= 0; i--)
659 /* Guess the next quotient digit, quo_est, by dividing the first
660 two remaining dividend digits by the high order quotient digit.
661 quo_est is never low and is at most 2 high. */
662 unsigned HOST_WIDE_INT tmp;
664 num_hi_sig = i + den_hi_sig + 1;
665 work = num[num_hi_sig] * BASE + num[num_hi_sig - 1];
666 if (num[num_hi_sig] != den[den_hi_sig])
667 quo_est = work / den[den_hi_sig];
668 else
669 quo_est = BASE - 1;
671 /* Refine quo_est so it's usually correct, and at most one high. */
672 tmp = work - quo_est * den[den_hi_sig];
673 if (tmp < BASE
674 && (den[den_hi_sig - 1] * quo_est
675 > (tmp * BASE + num[num_hi_sig - 2])))
676 quo_est--;
678 /* Try QUO_EST as the quotient digit, by multiplying the
679 divisor by QUO_EST and subtracting from the remaining dividend.
680 Keep in mind that QUO_EST is the I - 1st digit. */
682 carry = 0;
683 for (j = 0; j <= den_hi_sig; j++)
685 work = quo_est * den[j] + carry;
686 carry = HIGHPART (work);
687 work = num[i + j] - LOWPART (work);
688 num[i + j] = LOWPART (work);
689 carry += HIGHPART (work) != 0;
692 /* If quo_est was high by one, then num[i] went negative and
693 we need to correct things. */
694 if (num[num_hi_sig] < (HOST_WIDE_INT) carry)
696 quo_est--;
697 carry = 0; /* add divisor back in */
698 for (j = 0; j <= den_hi_sig; j++)
700 work = num[i + j] + den[j] + carry;
701 carry = HIGHPART (work);
702 num[i + j] = LOWPART (work);
705 num [num_hi_sig] += carry;
708 /* Store the quotient digit. */
709 quo[i] = quo_est;
713 decode (quo, lquo, hquo);
715 finish_up:
716 /* If result is negative, make it so. */
717 if (quo_neg)
718 neg_double (*lquo, *hquo, lquo, hquo);
720 /* compute trial remainder: rem = num - (quo * den) */
721 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
722 neg_double (*lrem, *hrem, lrem, hrem);
723 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
725 switch (code)
727 case TRUNC_DIV_EXPR:
728 case TRUNC_MOD_EXPR: /* round toward zero */
729 case EXACT_DIV_EXPR: /* for this one, it shouldn't matter */
730 return overflow;
732 case FLOOR_DIV_EXPR:
733 case FLOOR_MOD_EXPR: /* round toward negative infinity */
734 if (quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio < 0 && rem != 0 */
736 /* quo = quo - 1; */
737 add_double (*lquo, *hquo, (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1,
738 lquo, hquo);
740 else
741 return overflow;
742 break;
744 case CEIL_DIV_EXPR:
745 case CEIL_MOD_EXPR: /* round toward positive infinity */
746 if (!quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio > 0 && rem != 0 */
748 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
749 lquo, hquo);
751 else
752 return overflow;
753 break;
755 case ROUND_DIV_EXPR:
756 case ROUND_MOD_EXPR: /* round to closest integer */
758 unsigned HOST_WIDE_INT labs_rem = *lrem;
759 HOST_WIDE_INT habs_rem = *hrem;
760 unsigned HOST_WIDE_INT labs_den = lden, ltwice;
761 HOST_WIDE_INT habs_den = hden, htwice;
763 /* Get absolute values. */
764 if (*hrem < 0)
765 neg_double (*lrem, *hrem, &labs_rem, &habs_rem);
766 if (hden < 0)
767 neg_double (lden, hden, &labs_den, &habs_den);
769 /* If (2 * abs (lrem) >= abs (lden)) */
770 mul_double ((HOST_WIDE_INT) 2, (HOST_WIDE_INT) 0,
771 labs_rem, habs_rem, &ltwice, &htwice);
773 if (((unsigned HOST_WIDE_INT) habs_den
774 < (unsigned HOST_WIDE_INT) htwice)
775 || (((unsigned HOST_WIDE_INT) habs_den
776 == (unsigned HOST_WIDE_INT) htwice)
777 && (labs_den < ltwice)))
779 if (*hquo < 0)
780 /* quo = quo - 1; */
781 add_double (*lquo, *hquo,
782 (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1, lquo, hquo);
783 else
784 /* quo = quo + 1; */
785 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
786 lquo, hquo);
788 else
789 return overflow;
791 break;
793 default:
794 abort ();
797 /* compute true remainder: rem = num - (quo * den) */
798 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
799 neg_double (*lrem, *hrem, lrem, hrem);
800 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
801 return overflow;
804 /* Determine whether an expression T can be cheaply negated using
805 the function negate_expr. */
807 static bool
808 negate_expr_p (tree t)
810 unsigned HOST_WIDE_INT val;
811 unsigned int prec;
812 tree type;
814 if (t == 0)
815 return false;
817 type = TREE_TYPE (t);
819 STRIP_SIGN_NOPS (t);
820 switch (TREE_CODE (t))
822 case INTEGER_CST:
823 if (TREE_UNSIGNED (type))
824 return false;
826 /* Check that -CST will not overflow type. */
827 prec = TYPE_PRECISION (type);
828 if (prec > HOST_BITS_PER_WIDE_INT)
830 if (TREE_INT_CST_LOW (t) != 0)
831 return true;
832 prec -= HOST_BITS_PER_WIDE_INT;
833 val = TREE_INT_CST_HIGH (t);
835 else
836 val = TREE_INT_CST_LOW (t);
837 if (prec < HOST_BITS_PER_WIDE_INT)
838 val &= ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
839 return val != ((unsigned HOST_WIDE_INT) 1 << (prec - 1));
841 case REAL_CST:
842 case NEGATE_EXPR:
843 case MINUS_EXPR:
844 return true;
846 default:
847 break;
849 return false;
852 /* Given T, an expression, return the negation of T. Allow for T to be
853 null, in which case return null. */
855 static tree
856 negate_expr (tree t)
858 tree type;
859 tree tem;
861 if (t == 0)
862 return 0;
864 type = TREE_TYPE (t);
865 STRIP_SIGN_NOPS (t);
867 switch (TREE_CODE (t))
869 case INTEGER_CST:
870 case REAL_CST:
871 if (! TREE_UNSIGNED (type)
872 && 0 != (tem = fold (build1 (NEGATE_EXPR, type, t)))
873 && ! TREE_OVERFLOW (tem))
874 return tem;
875 break;
877 case NEGATE_EXPR:
878 return convert (type, TREE_OPERAND (t, 0));
880 case MINUS_EXPR:
881 /* - (A - B) -> B - A */
882 if (! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
883 return convert (type,
884 fold (build (MINUS_EXPR, TREE_TYPE (t),
885 TREE_OPERAND (t, 1),
886 TREE_OPERAND (t, 0))));
887 break;
889 default:
890 break;
893 return convert (type, fold (build1 (NEGATE_EXPR, TREE_TYPE (t), t)));
896 /* Split a tree IN into a constant, literal and variable parts that could be
897 combined with CODE to make IN. "constant" means an expression with
898 TREE_CONSTANT but that isn't an actual constant. CODE must be a
899 commutative arithmetic operation. Store the constant part into *CONP,
900 the literal in *LITP and return the variable part. If a part isn't
901 present, set it to null. If the tree does not decompose in this way,
902 return the entire tree as the variable part and the other parts as null.
904 If CODE is PLUS_EXPR we also split trees that use MINUS_EXPR. In that
905 case, we negate an operand that was subtracted. Except if it is a
906 literal for which we use *MINUS_LITP instead.
908 If NEGATE_P is true, we are negating all of IN, again except a literal
909 for which we use *MINUS_LITP instead.
911 If IN is itself a literal or constant, return it as appropriate.
913 Note that we do not guarantee that any of the three values will be the
914 same type as IN, but they will have the same signedness and mode. */
916 static tree
917 split_tree (tree in, enum tree_code code, tree *conp, tree *litp,
918 tree *minus_litp, int negate_p)
920 tree var = 0;
922 *conp = 0;
923 *litp = 0;
924 *minus_litp = 0;
926 /* Strip any conversions that don't change the machine mode or signedness. */
927 STRIP_SIGN_NOPS (in);
929 if (TREE_CODE (in) == INTEGER_CST || TREE_CODE (in) == REAL_CST)
930 *litp = in;
931 else if (TREE_CODE (in) == code
932 || (! FLOAT_TYPE_P (TREE_TYPE (in))
933 /* We can associate addition and subtraction together (even
934 though the C standard doesn't say so) for integers because
935 the value is not affected. For reals, the value might be
936 affected, so we can't. */
937 && ((code == PLUS_EXPR && TREE_CODE (in) == MINUS_EXPR)
938 || (code == MINUS_EXPR && TREE_CODE (in) == PLUS_EXPR))))
940 tree op0 = TREE_OPERAND (in, 0);
941 tree op1 = TREE_OPERAND (in, 1);
942 int neg1_p = TREE_CODE (in) == MINUS_EXPR;
943 int neg_litp_p = 0, neg_conp_p = 0, neg_var_p = 0;
945 /* First see if either of the operands is a literal, then a constant. */
946 if (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST)
947 *litp = op0, op0 = 0;
948 else if (TREE_CODE (op1) == INTEGER_CST || TREE_CODE (op1) == REAL_CST)
949 *litp = op1, neg_litp_p = neg1_p, op1 = 0;
951 if (op0 != 0 && TREE_CONSTANT (op0))
952 *conp = op0, op0 = 0;
953 else if (op1 != 0 && TREE_CONSTANT (op1))
954 *conp = op1, neg_conp_p = neg1_p, op1 = 0;
956 /* If we haven't dealt with either operand, this is not a case we can
957 decompose. Otherwise, VAR is either of the ones remaining, if any. */
958 if (op0 != 0 && op1 != 0)
959 var = in;
960 else if (op0 != 0)
961 var = op0;
962 else
963 var = op1, neg_var_p = neg1_p;
965 /* Now do any needed negations. */
966 if (neg_litp_p)
967 *minus_litp = *litp, *litp = 0;
968 if (neg_conp_p)
969 *conp = negate_expr (*conp);
970 if (neg_var_p)
971 var = negate_expr (var);
973 else if (TREE_CONSTANT (in))
974 *conp = in;
975 else
976 var = in;
978 if (negate_p)
980 if (*litp)
981 *minus_litp = *litp, *litp = 0;
982 else if (*minus_litp)
983 *litp = *minus_litp, *minus_litp = 0;
984 *conp = negate_expr (*conp);
985 var = negate_expr (var);
988 return var;
991 /* Re-associate trees split by the above function. T1 and T2 are either
992 expressions to associate or null. Return the new expression, if any. If
993 we build an operation, do it in TYPE and with CODE. */
995 static tree
996 associate_trees (tree t1, tree t2, enum tree_code code, tree type)
998 if (t1 == 0)
999 return t2;
1000 else if (t2 == 0)
1001 return t1;
1003 /* If either input is CODE, a PLUS_EXPR, or a MINUS_EXPR, don't
1004 try to fold this since we will have infinite recursion. But do
1005 deal with any NEGATE_EXPRs. */
1006 if (TREE_CODE (t1) == code || TREE_CODE (t2) == code
1007 || TREE_CODE (t1) == MINUS_EXPR || TREE_CODE (t2) == MINUS_EXPR)
1009 if (code == PLUS_EXPR)
1011 if (TREE_CODE (t1) == NEGATE_EXPR)
1012 return build (MINUS_EXPR, type, convert (type, t2),
1013 convert (type, TREE_OPERAND (t1, 0)));
1014 else if (TREE_CODE (t2) == NEGATE_EXPR)
1015 return build (MINUS_EXPR, type, convert (type, t1),
1016 convert (type, TREE_OPERAND (t2, 0)));
1018 return build (code, type, convert (type, t1), convert (type, t2));
1021 return fold (build (code, type, convert (type, t1), convert (type, t2)));
1024 /* Combine two integer constants ARG1 and ARG2 under operation CODE
1025 to produce a new constant.
1027 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1029 static tree
1030 int_const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
1032 unsigned HOST_WIDE_INT int1l, int2l;
1033 HOST_WIDE_INT int1h, int2h;
1034 unsigned HOST_WIDE_INT low;
1035 HOST_WIDE_INT hi;
1036 unsigned HOST_WIDE_INT garbagel;
1037 HOST_WIDE_INT garbageh;
1038 tree t;
1039 tree type = TREE_TYPE (arg1);
1040 int uns = TREE_UNSIGNED (type);
1041 int is_sizetype
1042 = (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type));
1043 int overflow = 0;
1044 int no_overflow = 0;
1046 int1l = TREE_INT_CST_LOW (arg1);
1047 int1h = TREE_INT_CST_HIGH (arg1);
1048 int2l = TREE_INT_CST_LOW (arg2);
1049 int2h = TREE_INT_CST_HIGH (arg2);
1051 switch (code)
1053 case BIT_IOR_EXPR:
1054 low = int1l | int2l, hi = int1h | int2h;
1055 break;
1057 case BIT_XOR_EXPR:
1058 low = int1l ^ int2l, hi = int1h ^ int2h;
1059 break;
1061 case BIT_AND_EXPR:
1062 low = int1l & int2l, hi = int1h & int2h;
1063 break;
1065 case BIT_ANDTC_EXPR:
1066 low = int1l & ~int2l, hi = int1h & ~int2h;
1067 break;
1069 case RSHIFT_EXPR:
1070 int2l = -int2l;
1071 case LSHIFT_EXPR:
1072 /* It's unclear from the C standard whether shifts can overflow.
1073 The following code ignores overflow; perhaps a C standard
1074 interpretation ruling is needed. */
1075 lshift_double (int1l, int1h, int2l, TYPE_PRECISION (type),
1076 &low, &hi, !uns);
1077 no_overflow = 1;
1078 break;
1080 case RROTATE_EXPR:
1081 int2l = - int2l;
1082 case LROTATE_EXPR:
1083 lrotate_double (int1l, int1h, int2l, TYPE_PRECISION (type),
1084 &low, &hi);
1085 break;
1087 case PLUS_EXPR:
1088 overflow = add_double (int1l, int1h, int2l, int2h, &low, &hi);
1089 break;
1091 case MINUS_EXPR:
1092 neg_double (int2l, int2h, &low, &hi);
1093 add_double (int1l, int1h, low, hi, &low, &hi);
1094 overflow = OVERFLOW_SUM_SIGN (hi, int2h, int1h);
1095 break;
1097 case MULT_EXPR:
1098 overflow = mul_double (int1l, int1h, int2l, int2h, &low, &hi);
1099 break;
1101 case TRUNC_DIV_EXPR:
1102 case FLOOR_DIV_EXPR: case CEIL_DIV_EXPR:
1103 case EXACT_DIV_EXPR:
1104 /* This is a shortcut for a common special case. */
1105 if (int2h == 0 && (HOST_WIDE_INT) int2l > 0
1106 && ! TREE_CONSTANT_OVERFLOW (arg1)
1107 && ! TREE_CONSTANT_OVERFLOW (arg2)
1108 && int1h == 0 && (HOST_WIDE_INT) int1l >= 0)
1110 if (code == CEIL_DIV_EXPR)
1111 int1l += int2l - 1;
1113 low = int1l / int2l, hi = 0;
1114 break;
1117 /* ... fall through ... */
1119 case ROUND_DIV_EXPR:
1120 if (int2h == 0 && int2l == 1)
1122 low = int1l, hi = int1h;
1123 break;
1125 if (int1l == int2l && int1h == int2h
1126 && ! (int1l == 0 && int1h == 0))
1128 low = 1, hi = 0;
1129 break;
1131 overflow = div_and_round_double (code, uns, int1l, int1h, int2l, int2h,
1132 &low, &hi, &garbagel, &garbageh);
1133 break;
1135 case TRUNC_MOD_EXPR:
1136 case FLOOR_MOD_EXPR: case CEIL_MOD_EXPR:
1137 /* This is a shortcut for a common special case. */
1138 if (int2h == 0 && (HOST_WIDE_INT) int2l > 0
1139 && ! TREE_CONSTANT_OVERFLOW (arg1)
1140 && ! TREE_CONSTANT_OVERFLOW (arg2)
1141 && int1h == 0 && (HOST_WIDE_INT) int1l >= 0)
1143 if (code == CEIL_MOD_EXPR)
1144 int1l += int2l - 1;
1145 low = int1l % int2l, hi = 0;
1146 break;
1149 /* ... fall through ... */
1151 case ROUND_MOD_EXPR:
1152 overflow = div_and_round_double (code, uns,
1153 int1l, int1h, int2l, int2h,
1154 &garbagel, &garbageh, &low, &hi);
1155 break;
1157 case MIN_EXPR:
1158 case MAX_EXPR:
1159 if (uns)
1160 low = (((unsigned HOST_WIDE_INT) int1h
1161 < (unsigned HOST_WIDE_INT) int2h)
1162 || (((unsigned HOST_WIDE_INT) int1h
1163 == (unsigned HOST_WIDE_INT) int2h)
1164 && int1l < int2l));
1165 else
1166 low = (int1h < int2h
1167 || (int1h == int2h && int1l < int2l));
1169 if (low == (code == MIN_EXPR))
1170 low = int1l, hi = int1h;
1171 else
1172 low = int2l, hi = int2h;
1173 break;
1175 default:
1176 abort ();
1179 /* If this is for a sizetype, can be represented as one (signed)
1180 HOST_WIDE_INT word, and doesn't overflow, use size_int since it caches
1181 constants. */
1182 if (is_sizetype
1183 && ((hi == 0 && (HOST_WIDE_INT) low >= 0)
1184 || (hi == -1 && (HOST_WIDE_INT) low < 0))
1185 && overflow == 0 && ! TREE_OVERFLOW (arg1) && ! TREE_OVERFLOW (arg2))
1186 return size_int_type_wide (low, type);
1187 else
1189 t = build_int_2 (low, hi);
1190 TREE_TYPE (t) = TREE_TYPE (arg1);
1193 TREE_OVERFLOW (t)
1194 = ((notrunc
1195 ? (!uns || is_sizetype) && overflow
1196 : (force_fit_type (t, (!uns || is_sizetype) && overflow)
1197 && ! no_overflow))
1198 | TREE_OVERFLOW (arg1)
1199 | TREE_OVERFLOW (arg2));
1201 /* If we're doing a size calculation, unsigned arithmetic does overflow.
1202 So check if force_fit_type truncated the value. */
1203 if (is_sizetype
1204 && ! TREE_OVERFLOW (t)
1205 && (TREE_INT_CST_HIGH (t) != hi
1206 || TREE_INT_CST_LOW (t) != low))
1207 TREE_OVERFLOW (t) = 1;
1209 TREE_CONSTANT_OVERFLOW (t) = (TREE_OVERFLOW (t)
1210 | TREE_CONSTANT_OVERFLOW (arg1)
1211 | TREE_CONSTANT_OVERFLOW (arg2));
1212 return t;
1215 /* Combine two constants ARG1 and ARG2 under operation CODE to produce a new
1216 constant. We assume ARG1 and ARG2 have the same data type, or at least
1217 are the same kind of constant and the same machine mode.
1219 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1221 static tree
1222 const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
1224 STRIP_NOPS (arg1);
1225 STRIP_NOPS (arg2);
1227 if (TREE_CODE (arg1) == INTEGER_CST)
1228 return int_const_binop (code, arg1, arg2, notrunc);
1230 if (TREE_CODE (arg1) == REAL_CST)
1232 enum machine_mode mode;
1233 REAL_VALUE_TYPE d1;
1234 REAL_VALUE_TYPE d2;
1235 REAL_VALUE_TYPE value;
1236 tree t, type;
1238 d1 = TREE_REAL_CST (arg1);
1239 d2 = TREE_REAL_CST (arg2);
1241 type = TREE_TYPE (arg1);
1242 mode = TYPE_MODE (type);
1244 /* Don't perform operation if we honor signaling NaNs and
1245 either operand is a NaN. */
1246 if (HONOR_SNANS (mode)
1247 && (REAL_VALUE_ISNAN (d1) || REAL_VALUE_ISNAN (d2)))
1248 return NULL_TREE;
1250 /* Don't perform operation if it would raise a division
1251 by zero exception. */
1252 if (code == RDIV_EXPR
1253 && REAL_VALUES_EQUAL (d2, dconst0)
1254 && (flag_trapping_math || ! MODE_HAS_INFINITIES (mode)))
1255 return NULL_TREE;
1257 /* If either operand is a NaN, just return it. Otherwise, set up
1258 for floating-point trap; we return an overflow. */
1259 if (REAL_VALUE_ISNAN (d1))
1260 return arg1;
1261 else if (REAL_VALUE_ISNAN (d2))
1262 return arg2;
1264 REAL_ARITHMETIC (value, code, d1, d2);
1266 t = build_real (type, real_value_truncate (mode, value));
1268 TREE_OVERFLOW (t)
1269 = (force_fit_type (t, 0)
1270 | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2));
1271 TREE_CONSTANT_OVERFLOW (t)
1272 = TREE_OVERFLOW (t)
1273 | TREE_CONSTANT_OVERFLOW (arg1)
1274 | TREE_CONSTANT_OVERFLOW (arg2);
1275 return t;
1277 if (TREE_CODE (arg1) == COMPLEX_CST)
1279 tree type = TREE_TYPE (arg1);
1280 tree r1 = TREE_REALPART (arg1);
1281 tree i1 = TREE_IMAGPART (arg1);
1282 tree r2 = TREE_REALPART (arg2);
1283 tree i2 = TREE_IMAGPART (arg2);
1284 tree t;
1286 switch (code)
1288 case PLUS_EXPR:
1289 t = build_complex (type,
1290 const_binop (PLUS_EXPR, r1, r2, notrunc),
1291 const_binop (PLUS_EXPR, i1, i2, notrunc));
1292 break;
1294 case MINUS_EXPR:
1295 t = build_complex (type,
1296 const_binop (MINUS_EXPR, r1, r2, notrunc),
1297 const_binop (MINUS_EXPR, i1, i2, notrunc));
1298 break;
1300 case MULT_EXPR:
1301 t = build_complex (type,
1302 const_binop (MINUS_EXPR,
1303 const_binop (MULT_EXPR,
1304 r1, r2, notrunc),
1305 const_binop (MULT_EXPR,
1306 i1, i2, notrunc),
1307 notrunc),
1308 const_binop (PLUS_EXPR,
1309 const_binop (MULT_EXPR,
1310 r1, i2, notrunc),
1311 const_binop (MULT_EXPR,
1312 i1, r2, notrunc),
1313 notrunc));
1314 break;
1316 case RDIV_EXPR:
1318 tree magsquared
1319 = const_binop (PLUS_EXPR,
1320 const_binop (MULT_EXPR, r2, r2, notrunc),
1321 const_binop (MULT_EXPR, i2, i2, notrunc),
1322 notrunc);
1324 t = build_complex (type,
1325 const_binop
1326 (INTEGRAL_TYPE_P (TREE_TYPE (r1))
1327 ? TRUNC_DIV_EXPR : RDIV_EXPR,
1328 const_binop (PLUS_EXPR,
1329 const_binop (MULT_EXPR, r1, r2,
1330 notrunc),
1331 const_binop (MULT_EXPR, i1, i2,
1332 notrunc),
1333 notrunc),
1334 magsquared, notrunc),
1335 const_binop
1336 (INTEGRAL_TYPE_P (TREE_TYPE (r1))
1337 ? TRUNC_DIV_EXPR : RDIV_EXPR,
1338 const_binop (MINUS_EXPR,
1339 const_binop (MULT_EXPR, i1, r2,
1340 notrunc),
1341 const_binop (MULT_EXPR, r1, i2,
1342 notrunc),
1343 notrunc),
1344 magsquared, notrunc));
1346 break;
1348 default:
1349 abort ();
1351 return t;
1353 return 0;
1356 /* These are the hash table functions for the hash table of INTEGER_CST
1357 nodes of a sizetype. */
1359 /* Return the hash code code X, an INTEGER_CST. */
1361 static hashval_t
1362 size_htab_hash (const void *x)
1364 tree t = (tree) x;
1366 return (TREE_INT_CST_HIGH (t) ^ TREE_INT_CST_LOW (t)
1367 ^ htab_hash_pointer (TREE_TYPE (t))
1368 ^ (TREE_OVERFLOW (t) << 20));
1371 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1372 is the same as that given by *Y, which is the same. */
1374 static int
1375 size_htab_eq (const void *x, const void *y)
1377 tree xt = (tree) x;
1378 tree yt = (tree) y;
1380 return (TREE_INT_CST_HIGH (xt) == TREE_INT_CST_HIGH (yt)
1381 && TREE_INT_CST_LOW (xt) == TREE_INT_CST_LOW (yt)
1382 && TREE_TYPE (xt) == TREE_TYPE (yt)
1383 && TREE_OVERFLOW (xt) == TREE_OVERFLOW (yt));
1386 /* Return an INTEGER_CST with value whose low-order HOST_BITS_PER_WIDE_INT
1387 bits are given by NUMBER and of the sizetype represented by KIND. */
1389 tree
1390 size_int_wide (HOST_WIDE_INT number, enum size_type_kind kind)
1392 return size_int_type_wide (number, sizetype_tab[(int) kind]);
1395 /* Likewise, but the desired type is specified explicitly. */
1397 static GTY (()) tree new_const;
1398 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
1399 htab_t size_htab;
1401 tree
1402 size_int_type_wide (HOST_WIDE_INT number, tree type)
1404 void **slot;
1406 if (size_htab == 0)
1408 size_htab = htab_create_ggc (1024, size_htab_hash, size_htab_eq, NULL);
1409 new_const = make_node (INTEGER_CST);
1412 /* Adjust NEW_CONST to be the constant we want. If it's already in the
1413 hash table, we return the value from the hash table. Otherwise, we
1414 place that in the hash table and make a new node for the next time. */
1415 TREE_INT_CST_LOW (new_const) = number;
1416 TREE_INT_CST_HIGH (new_const) = number < 0 ? -1 : 0;
1417 TREE_TYPE (new_const) = type;
1418 TREE_OVERFLOW (new_const) = TREE_CONSTANT_OVERFLOW (new_const)
1419 = force_fit_type (new_const, 0);
1421 slot = htab_find_slot (size_htab, new_const, INSERT);
1422 if (*slot == 0)
1424 tree t = new_const;
1426 *slot = new_const;
1427 new_const = make_node (INTEGER_CST);
1428 return t;
1430 else
1431 return (tree) *slot;
1434 /* Combine operands OP1 and OP2 with arithmetic operation CODE. CODE
1435 is a tree code. The type of the result is taken from the operands.
1436 Both must be the same type integer type and it must be a size type.
1437 If the operands are constant, so is the result. */
1439 tree
1440 size_binop (enum tree_code code, tree arg0, tree arg1)
1442 tree type = TREE_TYPE (arg0);
1444 if (TREE_CODE (type) != INTEGER_TYPE || ! TYPE_IS_SIZETYPE (type)
1445 || type != TREE_TYPE (arg1))
1446 abort ();
1448 /* Handle the special case of two integer constants faster. */
1449 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
1451 /* And some specific cases even faster than that. */
1452 if (code == PLUS_EXPR && integer_zerop (arg0))
1453 return arg1;
1454 else if ((code == MINUS_EXPR || code == PLUS_EXPR)
1455 && integer_zerop (arg1))
1456 return arg0;
1457 else if (code == MULT_EXPR && integer_onep (arg0))
1458 return arg1;
1460 /* Handle general case of two integer constants. */
1461 return int_const_binop (code, arg0, arg1, 0);
1464 if (arg0 == error_mark_node || arg1 == error_mark_node)
1465 return error_mark_node;
1467 return fold (build (code, type, arg0, arg1));
1470 /* Given two values, either both of sizetype or both of bitsizetype,
1471 compute the difference between the two values. Return the value
1472 in signed type corresponding to the type of the operands. */
1474 tree
1475 size_diffop (tree arg0, tree arg1)
1477 tree type = TREE_TYPE (arg0);
1478 tree ctype;
1480 if (TREE_CODE (type) != INTEGER_TYPE || ! TYPE_IS_SIZETYPE (type)
1481 || type != TREE_TYPE (arg1))
1482 abort ();
1484 /* If the type is already signed, just do the simple thing. */
1485 if (! TREE_UNSIGNED (type))
1486 return size_binop (MINUS_EXPR, arg0, arg1);
1488 ctype = (type == bitsizetype || type == ubitsizetype
1489 ? sbitsizetype : ssizetype);
1491 /* If either operand is not a constant, do the conversions to the signed
1492 type and subtract. The hardware will do the right thing with any
1493 overflow in the subtraction. */
1494 if (TREE_CODE (arg0) != INTEGER_CST || TREE_CODE (arg1) != INTEGER_CST)
1495 return size_binop (MINUS_EXPR, convert (ctype, arg0),
1496 convert (ctype, arg1));
1498 /* If ARG0 is larger than ARG1, subtract and return the result in CTYPE.
1499 Otherwise, subtract the other way, convert to CTYPE (we know that can't
1500 overflow) and negate (which can't either). Special-case a result
1501 of zero while we're here. */
1502 if (tree_int_cst_equal (arg0, arg1))
1503 return convert (ctype, integer_zero_node);
1504 else if (tree_int_cst_lt (arg1, arg0))
1505 return convert (ctype, size_binop (MINUS_EXPR, arg0, arg1));
1506 else
1507 return size_binop (MINUS_EXPR, convert (ctype, integer_zero_node),
1508 convert (ctype, size_binop (MINUS_EXPR, arg1, arg0)));
1512 /* Given T, a tree representing type conversion of ARG1, a constant,
1513 return a constant tree representing the result of conversion. */
1515 static tree
1516 fold_convert (tree t, tree arg1)
1518 tree type = TREE_TYPE (t);
1519 int overflow = 0;
1521 if (POINTER_TYPE_P (type) || INTEGRAL_TYPE_P (type))
1523 if (TREE_CODE (arg1) == INTEGER_CST)
1525 /* If we would build a constant wider than GCC supports,
1526 leave the conversion unfolded. */
1527 if (TYPE_PRECISION (type) > 2 * HOST_BITS_PER_WIDE_INT)
1528 return t;
1530 /* If we are trying to make a sizetype for a small integer, use
1531 size_int to pick up cached types to reduce duplicate nodes. */
1532 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type)
1533 && !TREE_CONSTANT_OVERFLOW (arg1)
1534 && compare_tree_int (arg1, 10000) < 0)
1535 return size_int_type_wide (TREE_INT_CST_LOW (arg1), type);
1537 /* Given an integer constant, make new constant with new type,
1538 appropriately sign-extended or truncated. */
1539 t = build_int_2 (TREE_INT_CST_LOW (arg1),
1540 TREE_INT_CST_HIGH (arg1));
1541 TREE_TYPE (t) = type;
1542 /* Indicate an overflow if (1) ARG1 already overflowed,
1543 or (2) force_fit_type indicates an overflow.
1544 Tell force_fit_type that an overflow has already occurred
1545 if ARG1 is a too-large unsigned value and T is signed.
1546 But don't indicate an overflow if converting a pointer. */
1547 TREE_OVERFLOW (t)
1548 = ((force_fit_type (t,
1549 (TREE_INT_CST_HIGH (arg1) < 0
1550 && (TREE_UNSIGNED (type)
1551 < TREE_UNSIGNED (TREE_TYPE (arg1)))))
1552 && ! POINTER_TYPE_P (TREE_TYPE (arg1)))
1553 || TREE_OVERFLOW (arg1));
1554 TREE_CONSTANT_OVERFLOW (t)
1555 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1557 else if (TREE_CODE (arg1) == REAL_CST)
1559 /* Don't initialize these, use assignments.
1560 Initialized local aggregates don't work on old compilers. */
1561 REAL_VALUE_TYPE x;
1562 REAL_VALUE_TYPE l;
1563 REAL_VALUE_TYPE u;
1564 tree type1 = TREE_TYPE (arg1);
1565 int no_upper_bound;
1567 x = TREE_REAL_CST (arg1);
1568 l = real_value_from_int_cst (type1, TYPE_MIN_VALUE (type));
1570 no_upper_bound = (TYPE_MAX_VALUE (type) == NULL);
1571 if (!no_upper_bound)
1572 u = real_value_from_int_cst (type1, TYPE_MAX_VALUE (type));
1574 /* See if X will be in range after truncation towards 0.
1575 To compensate for truncation, move the bounds away from 0,
1576 but reject if X exactly equals the adjusted bounds. */
1577 REAL_ARITHMETIC (l, MINUS_EXPR, l, dconst1);
1578 if (!no_upper_bound)
1579 REAL_ARITHMETIC (u, PLUS_EXPR, u, dconst1);
1580 /* If X is a NaN, use zero instead and show we have an overflow.
1581 Otherwise, range check. */
1582 if (REAL_VALUE_ISNAN (x))
1583 overflow = 1, x = dconst0;
1584 else if (! (REAL_VALUES_LESS (l, x)
1585 && !no_upper_bound
1586 && REAL_VALUES_LESS (x, u)))
1587 overflow = 1;
1590 HOST_WIDE_INT low, high;
1591 REAL_VALUE_TO_INT (&low, &high, x);
1592 t = build_int_2 (low, high);
1594 TREE_TYPE (t) = type;
1595 TREE_OVERFLOW (t)
1596 = TREE_OVERFLOW (arg1) | force_fit_type (t, overflow);
1597 TREE_CONSTANT_OVERFLOW (t)
1598 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1600 TREE_TYPE (t) = type;
1602 else if (TREE_CODE (type) == REAL_TYPE)
1604 if (TREE_CODE (arg1) == INTEGER_CST)
1605 return build_real_from_int_cst (type, arg1);
1606 if (TREE_CODE (arg1) == REAL_CST)
1608 if (REAL_VALUE_ISNAN (TREE_REAL_CST (arg1)))
1610 /* We make a copy of ARG1 so that we don't modify an
1611 existing constant tree. */
1612 t = copy_node (arg1);
1613 TREE_TYPE (t) = type;
1614 return t;
1617 t = build_real (type,
1618 real_value_truncate (TYPE_MODE (type),
1619 TREE_REAL_CST (arg1)));
1621 TREE_OVERFLOW (t)
1622 = TREE_OVERFLOW (arg1) | force_fit_type (t, 0);
1623 TREE_CONSTANT_OVERFLOW (t)
1624 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1625 return t;
1628 TREE_CONSTANT (t) = 1;
1629 return t;
1632 /* Return an expr equal to X but certainly not valid as an lvalue. */
1634 tree
1635 non_lvalue (tree x)
1637 tree result;
1639 /* These things are certainly not lvalues. */
1640 if (TREE_CODE (x) == NON_LVALUE_EXPR
1641 || TREE_CODE (x) == INTEGER_CST
1642 || TREE_CODE (x) == REAL_CST
1643 || TREE_CODE (x) == STRING_CST
1644 || TREE_CODE (x) == ADDR_EXPR)
1645 return x;
1647 result = build1 (NON_LVALUE_EXPR, TREE_TYPE (x), x);
1648 TREE_CONSTANT (result) = TREE_CONSTANT (x);
1649 return result;
1652 /* Nonzero means lvalues are limited to those valid in pedantic ANSI C.
1653 Zero means allow extended lvalues. */
1655 int pedantic_lvalues;
1657 /* When pedantic, return an expr equal to X but certainly not valid as a
1658 pedantic lvalue. Otherwise, return X. */
1660 tree
1661 pedantic_non_lvalue (tree x)
1663 if (pedantic_lvalues)
1664 return non_lvalue (x);
1665 else
1666 return x;
1669 /* Given a tree comparison code, return the code that is the logical inverse
1670 of the given code. It is not safe to do this for floating-point
1671 comparisons, except for NE_EXPR and EQ_EXPR. */
1673 static enum tree_code
1674 invert_tree_comparison (enum tree_code code)
1676 switch (code)
1678 case EQ_EXPR:
1679 return NE_EXPR;
1680 case NE_EXPR:
1681 return EQ_EXPR;
1682 case GT_EXPR:
1683 return LE_EXPR;
1684 case GE_EXPR:
1685 return LT_EXPR;
1686 case LT_EXPR:
1687 return GE_EXPR;
1688 case LE_EXPR:
1689 return GT_EXPR;
1690 default:
1691 abort ();
1695 /* Similar, but return the comparison that results if the operands are
1696 swapped. This is safe for floating-point. */
1698 static enum tree_code
1699 swap_tree_comparison (enum tree_code code)
1701 switch (code)
1703 case EQ_EXPR:
1704 case NE_EXPR:
1705 return code;
1706 case GT_EXPR:
1707 return LT_EXPR;
1708 case GE_EXPR:
1709 return LE_EXPR;
1710 case LT_EXPR:
1711 return GT_EXPR;
1712 case LE_EXPR:
1713 return GE_EXPR;
1714 default:
1715 abort ();
1720 /* Convert a comparison tree code from an enum tree_code representation
1721 into a compcode bit-based encoding. This function is the inverse of
1722 compcode_to_comparison. */
1724 static int
1725 comparison_to_compcode (enum tree_code code)
1727 switch (code)
1729 case LT_EXPR:
1730 return COMPCODE_LT;
1731 case EQ_EXPR:
1732 return COMPCODE_EQ;
1733 case LE_EXPR:
1734 return COMPCODE_LE;
1735 case GT_EXPR:
1736 return COMPCODE_GT;
1737 case NE_EXPR:
1738 return COMPCODE_NE;
1739 case GE_EXPR:
1740 return COMPCODE_GE;
1741 default:
1742 abort ();
1746 /* Convert a compcode bit-based encoding of a comparison operator back
1747 to GCC's enum tree_code representation. This function is the
1748 inverse of comparison_to_compcode. */
1750 static enum tree_code
1751 compcode_to_comparison (int code)
1753 switch (code)
1755 case COMPCODE_LT:
1756 return LT_EXPR;
1757 case COMPCODE_EQ:
1758 return EQ_EXPR;
1759 case COMPCODE_LE:
1760 return LE_EXPR;
1761 case COMPCODE_GT:
1762 return GT_EXPR;
1763 case COMPCODE_NE:
1764 return NE_EXPR;
1765 case COMPCODE_GE:
1766 return GE_EXPR;
1767 default:
1768 abort ();
1772 /* Return nonzero if CODE is a tree code that represents a truth value. */
1774 static int
1775 truth_value_p (enum tree_code code)
1777 return (TREE_CODE_CLASS (code) == '<'
1778 || code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
1779 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
1780 || code == TRUTH_XOR_EXPR || code == TRUTH_NOT_EXPR);
1783 /* Return nonzero if two operands are necessarily equal.
1784 If ONLY_CONST is nonzero, only return nonzero for constants.
1785 This function tests whether the operands are indistinguishable;
1786 it does not test whether they are equal using C's == operation.
1787 The distinction is important for IEEE floating point, because
1788 (1) -0.0 and 0.0 are distinguishable, but -0.0==0.0, and
1789 (2) two NaNs may be indistinguishable, but NaN!=NaN. */
1792 operand_equal_p (tree arg0, tree arg1, int only_const)
1794 /* If both types don't have the same signedness, then we can't consider
1795 them equal. We must check this before the STRIP_NOPS calls
1796 because they may change the signedness of the arguments. */
1797 if (TREE_UNSIGNED (TREE_TYPE (arg0)) != TREE_UNSIGNED (TREE_TYPE (arg1)))
1798 return 0;
1800 STRIP_NOPS (arg0);
1801 STRIP_NOPS (arg1);
1803 if (TREE_CODE (arg0) != TREE_CODE (arg1)
1804 /* This is needed for conversions and for COMPONENT_REF.
1805 Might as well play it safe and always test this. */
1806 || TREE_CODE (TREE_TYPE (arg0)) == ERROR_MARK
1807 || TREE_CODE (TREE_TYPE (arg1)) == ERROR_MARK
1808 || TYPE_MODE (TREE_TYPE (arg0)) != TYPE_MODE (TREE_TYPE (arg1)))
1809 return 0;
1811 /* If ARG0 and ARG1 are the same SAVE_EXPR, they are necessarily equal.
1812 We don't care about side effects in that case because the SAVE_EXPR
1813 takes care of that for us. In all other cases, two expressions are
1814 equal if they have no side effects. If we have two identical
1815 expressions with side effects that should be treated the same due
1816 to the only side effects being identical SAVE_EXPR's, that will
1817 be detected in the recursive calls below. */
1818 if (arg0 == arg1 && ! only_const
1819 && (TREE_CODE (arg0) == SAVE_EXPR
1820 || (! TREE_SIDE_EFFECTS (arg0) && ! TREE_SIDE_EFFECTS (arg1))))
1821 return 1;
1823 /* Next handle constant cases, those for which we can return 1 even
1824 if ONLY_CONST is set. */
1825 if (TREE_CONSTANT (arg0) && TREE_CONSTANT (arg1))
1826 switch (TREE_CODE (arg0))
1828 case INTEGER_CST:
1829 return (! TREE_CONSTANT_OVERFLOW (arg0)
1830 && ! TREE_CONSTANT_OVERFLOW (arg1)
1831 && tree_int_cst_equal (arg0, arg1));
1833 case REAL_CST:
1834 return (! TREE_CONSTANT_OVERFLOW (arg0)
1835 && ! TREE_CONSTANT_OVERFLOW (arg1)
1836 && REAL_VALUES_IDENTICAL (TREE_REAL_CST (arg0),
1837 TREE_REAL_CST (arg1)));
1839 case VECTOR_CST:
1841 tree v1, v2;
1843 if (TREE_CONSTANT_OVERFLOW (arg0)
1844 || TREE_CONSTANT_OVERFLOW (arg1))
1845 return 0;
1847 v1 = TREE_VECTOR_CST_ELTS (arg0);
1848 v2 = TREE_VECTOR_CST_ELTS (arg1);
1849 while (v1 && v2)
1851 if (!operand_equal_p (v1, v2, only_const))
1852 return 0;
1853 v1 = TREE_CHAIN (v1);
1854 v2 = TREE_CHAIN (v2);
1857 return 1;
1860 case COMPLEX_CST:
1861 return (operand_equal_p (TREE_REALPART (arg0), TREE_REALPART (arg1),
1862 only_const)
1863 && operand_equal_p (TREE_IMAGPART (arg0), TREE_IMAGPART (arg1),
1864 only_const));
1866 case STRING_CST:
1867 return (TREE_STRING_LENGTH (arg0) == TREE_STRING_LENGTH (arg1)
1868 && ! memcmp (TREE_STRING_POINTER (arg0),
1869 TREE_STRING_POINTER (arg1),
1870 TREE_STRING_LENGTH (arg0)));
1872 case ADDR_EXPR:
1873 return operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0),
1875 default:
1876 break;
1879 if (only_const)
1880 return 0;
1882 switch (TREE_CODE_CLASS (TREE_CODE (arg0)))
1884 case '1':
1885 /* Two conversions are equal only if signedness and modes match. */
1886 if ((TREE_CODE (arg0) == NOP_EXPR || TREE_CODE (arg0) == CONVERT_EXPR)
1887 && (TREE_UNSIGNED (TREE_TYPE (arg0))
1888 != TREE_UNSIGNED (TREE_TYPE (arg1))))
1889 return 0;
1891 return operand_equal_p (TREE_OPERAND (arg0, 0),
1892 TREE_OPERAND (arg1, 0), 0);
1894 case '<':
1895 case '2':
1896 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0)
1897 && operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1),
1899 return 1;
1901 /* For commutative ops, allow the other order. */
1902 return ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MULT_EXPR
1903 || TREE_CODE (arg0) == MIN_EXPR || TREE_CODE (arg0) == MAX_EXPR
1904 || TREE_CODE (arg0) == BIT_IOR_EXPR
1905 || TREE_CODE (arg0) == BIT_XOR_EXPR
1906 || TREE_CODE (arg0) == BIT_AND_EXPR
1907 || TREE_CODE (arg0) == NE_EXPR || TREE_CODE (arg0) == EQ_EXPR)
1908 && operand_equal_p (TREE_OPERAND (arg0, 0),
1909 TREE_OPERAND (arg1, 1), 0)
1910 && operand_equal_p (TREE_OPERAND (arg0, 1),
1911 TREE_OPERAND (arg1, 0), 0));
1913 case 'r':
1914 /* If either of the pointer (or reference) expressions we are
1915 dereferencing contain a side effect, these cannot be equal. */
1916 if (TREE_SIDE_EFFECTS (arg0)
1917 || TREE_SIDE_EFFECTS (arg1))
1918 return 0;
1920 switch (TREE_CODE (arg0))
1922 case INDIRECT_REF:
1923 return operand_equal_p (TREE_OPERAND (arg0, 0),
1924 TREE_OPERAND (arg1, 0), 0);
1926 case COMPONENT_REF:
1927 case ARRAY_REF:
1928 case ARRAY_RANGE_REF:
1929 return (operand_equal_p (TREE_OPERAND (arg0, 0),
1930 TREE_OPERAND (arg1, 0), 0)
1931 && operand_equal_p (TREE_OPERAND (arg0, 1),
1932 TREE_OPERAND (arg1, 1), 0));
1934 case BIT_FIELD_REF:
1935 return (operand_equal_p (TREE_OPERAND (arg0, 0),
1936 TREE_OPERAND (arg1, 0), 0)
1937 && operand_equal_p (TREE_OPERAND (arg0, 1),
1938 TREE_OPERAND (arg1, 1), 0)
1939 && operand_equal_p (TREE_OPERAND (arg0, 2),
1940 TREE_OPERAND (arg1, 2), 0));
1941 default:
1942 return 0;
1945 case 'e':
1946 switch (TREE_CODE (arg0))
1948 case ADDR_EXPR:
1949 case TRUTH_NOT_EXPR:
1950 return operand_equal_p (TREE_OPERAND (arg0, 0),
1951 TREE_OPERAND (arg1, 0), 0);
1953 case RTL_EXPR:
1954 return rtx_equal_p (RTL_EXPR_RTL (arg0), RTL_EXPR_RTL (arg1));
1956 case CALL_EXPR:
1957 /* If the CALL_EXPRs call different functions, then they
1958 clearly can not be equal. */
1959 if (! operand_equal_p (TREE_OPERAND (arg0, 0),
1960 TREE_OPERAND (arg1, 0), 0))
1961 return 0;
1963 /* Only consider const functions equivalent. */
1964 if (TREE_CODE (TREE_OPERAND (arg0, 0)) == ADDR_EXPR)
1966 tree fndecl = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
1967 if (! (flags_from_decl_or_type (fndecl) & ECF_CONST))
1968 return 0;
1970 else
1971 return 0;
1973 /* Now see if all the arguments are the same. operand_equal_p
1974 does not handle TREE_LIST, so we walk the operands here
1975 feeding them to operand_equal_p. */
1976 arg0 = TREE_OPERAND (arg0, 1);
1977 arg1 = TREE_OPERAND (arg1, 1);
1978 while (arg0 && arg1)
1980 if (! operand_equal_p (TREE_VALUE (arg0), TREE_VALUE (arg1), 0))
1981 return 0;
1983 arg0 = TREE_CHAIN (arg0);
1984 arg1 = TREE_CHAIN (arg1);
1987 /* If we get here and both argument lists are exhausted
1988 then the CALL_EXPRs are equal. */
1989 return ! (arg0 || arg1);
1991 default:
1992 return 0;
1995 case 'd':
1996 /* Consider __builtin_sqrt equal to sqrt. */
1997 return TREE_CODE (arg0) == FUNCTION_DECL
1998 && DECL_BUILT_IN (arg0) && DECL_BUILT_IN (arg1)
1999 && DECL_BUILT_IN_CLASS (arg0) == DECL_BUILT_IN_CLASS (arg1)
2000 && DECL_FUNCTION_CODE (arg0) == DECL_FUNCTION_CODE (arg1);
2002 default:
2003 return 0;
2007 /* Similar to operand_equal_p, but see if ARG0 might have been made by
2008 shorten_compare from ARG1 when ARG1 was being compared with OTHER.
2010 When in doubt, return 0. */
2012 static int
2013 operand_equal_for_comparison_p (tree arg0, tree arg1, tree other)
2015 int unsignedp1, unsignedpo;
2016 tree primarg0, primarg1, primother;
2017 unsigned int correct_width;
2019 if (operand_equal_p (arg0, arg1, 0))
2020 return 1;
2022 if (! INTEGRAL_TYPE_P (TREE_TYPE (arg0))
2023 || ! INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
2024 return 0;
2026 /* Discard any conversions that don't change the modes of ARG0 and ARG1
2027 and see if the inner values are the same. This removes any
2028 signedness comparison, which doesn't matter here. */
2029 primarg0 = arg0, primarg1 = arg1;
2030 STRIP_NOPS (primarg0);
2031 STRIP_NOPS (primarg1);
2032 if (operand_equal_p (primarg0, primarg1, 0))
2033 return 1;
2035 /* Duplicate what shorten_compare does to ARG1 and see if that gives the
2036 actual comparison operand, ARG0.
2038 First throw away any conversions to wider types
2039 already present in the operands. */
2041 primarg1 = get_narrower (arg1, &unsignedp1);
2042 primother = get_narrower (other, &unsignedpo);
2044 correct_width = TYPE_PRECISION (TREE_TYPE (arg1));
2045 if (unsignedp1 == unsignedpo
2046 && TYPE_PRECISION (TREE_TYPE (primarg1)) < correct_width
2047 && TYPE_PRECISION (TREE_TYPE (primother)) < correct_width)
2049 tree type = TREE_TYPE (arg0);
2051 /* Make sure shorter operand is extended the right way
2052 to match the longer operand. */
2053 primarg1 = convert ((*lang_hooks.types.signed_or_unsigned_type)
2054 (unsignedp1, TREE_TYPE (primarg1)), primarg1);
2056 if (operand_equal_p (arg0, convert (type, primarg1), 0))
2057 return 1;
2060 return 0;
2063 /* See if ARG is an expression that is either a comparison or is performing
2064 arithmetic on comparisons. The comparisons must only be comparing
2065 two different values, which will be stored in *CVAL1 and *CVAL2; if
2066 they are nonzero it means that some operands have already been found.
2067 No variables may be used anywhere else in the expression except in the
2068 comparisons. If SAVE_P is true it means we removed a SAVE_EXPR around
2069 the expression and save_expr needs to be called with CVAL1 and CVAL2.
2071 If this is true, return 1. Otherwise, return zero. */
2073 static int
2074 twoval_comparison_p (tree arg, tree *cval1, tree *cval2, int *save_p)
2076 enum tree_code code = TREE_CODE (arg);
2077 char class = TREE_CODE_CLASS (code);
2079 /* We can handle some of the 'e' cases here. */
2080 if (class == 'e' && code == TRUTH_NOT_EXPR)
2081 class = '1';
2082 else if (class == 'e'
2083 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR
2084 || code == COMPOUND_EXPR))
2085 class = '2';
2087 else if (class == 'e' && code == SAVE_EXPR && SAVE_EXPR_RTL (arg) == 0
2088 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
2090 /* If we've already found a CVAL1 or CVAL2, this expression is
2091 two complex to handle. */
2092 if (*cval1 || *cval2)
2093 return 0;
2095 class = '1';
2096 *save_p = 1;
2099 switch (class)
2101 case '1':
2102 return twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p);
2104 case '2':
2105 return (twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p)
2106 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2107 cval1, cval2, save_p));
2109 case 'c':
2110 return 1;
2112 case 'e':
2113 if (code == COND_EXPR)
2114 return (twoval_comparison_p (TREE_OPERAND (arg, 0),
2115 cval1, cval2, save_p)
2116 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2117 cval1, cval2, save_p)
2118 && twoval_comparison_p (TREE_OPERAND (arg, 2),
2119 cval1, cval2, save_p));
2120 return 0;
2122 case '<':
2123 /* First see if we can handle the first operand, then the second. For
2124 the second operand, we know *CVAL1 can't be zero. It must be that
2125 one side of the comparison is each of the values; test for the
2126 case where this isn't true by failing if the two operands
2127 are the same. */
2129 if (operand_equal_p (TREE_OPERAND (arg, 0),
2130 TREE_OPERAND (arg, 1), 0))
2131 return 0;
2133 if (*cval1 == 0)
2134 *cval1 = TREE_OPERAND (arg, 0);
2135 else if (operand_equal_p (*cval1, TREE_OPERAND (arg, 0), 0))
2137 else if (*cval2 == 0)
2138 *cval2 = TREE_OPERAND (arg, 0);
2139 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 0), 0))
2141 else
2142 return 0;
2144 if (operand_equal_p (*cval1, TREE_OPERAND (arg, 1), 0))
2146 else if (*cval2 == 0)
2147 *cval2 = TREE_OPERAND (arg, 1);
2148 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 1), 0))
2150 else
2151 return 0;
2153 return 1;
2155 default:
2156 return 0;
2160 /* ARG is a tree that is known to contain just arithmetic operations and
2161 comparisons. Evaluate the operations in the tree substituting NEW0 for
2162 any occurrence of OLD0 as an operand of a comparison and likewise for
2163 NEW1 and OLD1. */
2165 static tree
2166 eval_subst (tree arg, tree old0, tree new0, tree old1, tree new1)
2168 tree type = TREE_TYPE (arg);
2169 enum tree_code code = TREE_CODE (arg);
2170 char class = TREE_CODE_CLASS (code);
2172 /* We can handle some of the 'e' cases here. */
2173 if (class == 'e' && code == TRUTH_NOT_EXPR)
2174 class = '1';
2175 else if (class == 'e'
2176 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2177 class = '2';
2179 switch (class)
2181 case '1':
2182 return fold (build1 (code, type,
2183 eval_subst (TREE_OPERAND (arg, 0),
2184 old0, new0, old1, new1)));
2186 case '2':
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)));
2193 case 'e':
2194 switch (code)
2196 case SAVE_EXPR:
2197 return eval_subst (TREE_OPERAND (arg, 0), old0, new0, old1, new1);
2199 case COMPOUND_EXPR:
2200 return eval_subst (TREE_OPERAND (arg, 1), old0, new0, old1, new1);
2202 case COND_EXPR:
2203 return fold (build (code, type,
2204 eval_subst (TREE_OPERAND (arg, 0),
2205 old0, new0, old1, new1),
2206 eval_subst (TREE_OPERAND (arg, 1),
2207 old0, new0, old1, new1),
2208 eval_subst (TREE_OPERAND (arg, 2),
2209 old0, new0, old1, new1)));
2210 default:
2211 break;
2213 /* Fall through - ??? */
2215 case '<':
2217 tree arg0 = TREE_OPERAND (arg, 0);
2218 tree arg1 = TREE_OPERAND (arg, 1);
2220 /* We need to check both for exact equality and tree equality. The
2221 former will be true if the operand has a side-effect. In that
2222 case, we know the operand occurred exactly once. */
2224 if (arg0 == old0 || operand_equal_p (arg0, old0, 0))
2225 arg0 = new0;
2226 else if (arg0 == old1 || operand_equal_p (arg0, old1, 0))
2227 arg0 = new1;
2229 if (arg1 == old0 || operand_equal_p (arg1, old0, 0))
2230 arg1 = new0;
2231 else if (arg1 == old1 || operand_equal_p (arg1, old1, 0))
2232 arg1 = new1;
2234 return fold (build (code, type, arg0, arg1));
2237 default:
2238 return arg;
2242 /* Return a tree for the case when the result of an expression is RESULT
2243 converted to TYPE and OMITTED was previously an operand of the expression
2244 but is now not needed (e.g., we folded OMITTED * 0).
2246 If OMITTED has side effects, we must evaluate it. Otherwise, just do
2247 the conversion of RESULT to TYPE. */
2249 tree
2250 omit_one_operand (tree type, tree result, tree omitted)
2252 tree t = convert (type, result);
2254 if (TREE_SIDE_EFFECTS (omitted))
2255 return build (COMPOUND_EXPR, type, omitted, t);
2257 return non_lvalue (t);
2260 /* Similar, but call pedantic_non_lvalue instead of non_lvalue. */
2262 static tree
2263 pedantic_omit_one_operand (tree type, tree result, tree omitted)
2265 tree t = convert (type, result);
2267 if (TREE_SIDE_EFFECTS (omitted))
2268 return build (COMPOUND_EXPR, type, omitted, t);
2270 return pedantic_non_lvalue (t);
2273 /* Return a simplified tree node for the truth-negation of ARG. This
2274 never alters ARG itself. We assume that ARG is an operation that
2275 returns a truth value (0 or 1). */
2277 tree
2278 invert_truthvalue (tree arg)
2280 tree type = TREE_TYPE (arg);
2281 enum tree_code code = TREE_CODE (arg);
2283 if (code == ERROR_MARK)
2284 return arg;
2286 /* If this is a comparison, we can simply invert it, except for
2287 floating-point non-equality comparisons, in which case we just
2288 enclose a TRUTH_NOT_EXPR around what we have. */
2290 if (TREE_CODE_CLASS (code) == '<')
2292 if (FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
2293 && !flag_unsafe_math_optimizations
2294 && code != NE_EXPR
2295 && code != EQ_EXPR)
2296 return build1 (TRUTH_NOT_EXPR, type, arg);
2297 else
2298 return build (invert_tree_comparison (code), type,
2299 TREE_OPERAND (arg, 0), TREE_OPERAND (arg, 1));
2302 switch (code)
2304 case INTEGER_CST:
2305 return convert (type, build_int_2 (integer_zerop (arg), 0));
2307 case TRUTH_AND_EXPR:
2308 return build (TRUTH_OR_EXPR, type,
2309 invert_truthvalue (TREE_OPERAND (arg, 0)),
2310 invert_truthvalue (TREE_OPERAND (arg, 1)));
2312 case TRUTH_OR_EXPR:
2313 return build (TRUTH_AND_EXPR, type,
2314 invert_truthvalue (TREE_OPERAND (arg, 0)),
2315 invert_truthvalue (TREE_OPERAND (arg, 1)));
2317 case TRUTH_XOR_EXPR:
2318 /* Here we can invert either operand. We invert the first operand
2319 unless the second operand is a TRUTH_NOT_EXPR in which case our
2320 result is the XOR of the first operand with the inside of the
2321 negation of the second operand. */
2323 if (TREE_CODE (TREE_OPERAND (arg, 1)) == TRUTH_NOT_EXPR)
2324 return build (TRUTH_XOR_EXPR, type, TREE_OPERAND (arg, 0),
2325 TREE_OPERAND (TREE_OPERAND (arg, 1), 0));
2326 else
2327 return build (TRUTH_XOR_EXPR, type,
2328 invert_truthvalue (TREE_OPERAND (arg, 0)),
2329 TREE_OPERAND (arg, 1));
2331 case TRUTH_ANDIF_EXPR:
2332 return build (TRUTH_ORIF_EXPR, type,
2333 invert_truthvalue (TREE_OPERAND (arg, 0)),
2334 invert_truthvalue (TREE_OPERAND (arg, 1)));
2336 case TRUTH_ORIF_EXPR:
2337 return build (TRUTH_ANDIF_EXPR, type,
2338 invert_truthvalue (TREE_OPERAND (arg, 0)),
2339 invert_truthvalue (TREE_OPERAND (arg, 1)));
2341 case TRUTH_NOT_EXPR:
2342 return TREE_OPERAND (arg, 0);
2344 case COND_EXPR:
2345 return build (COND_EXPR, type, TREE_OPERAND (arg, 0),
2346 invert_truthvalue (TREE_OPERAND (arg, 1)),
2347 invert_truthvalue (TREE_OPERAND (arg, 2)));
2349 case COMPOUND_EXPR:
2350 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg, 0),
2351 invert_truthvalue (TREE_OPERAND (arg, 1)));
2353 case WITH_RECORD_EXPR:
2354 return build (WITH_RECORD_EXPR, type,
2355 invert_truthvalue (TREE_OPERAND (arg, 0)),
2356 TREE_OPERAND (arg, 1));
2358 case NON_LVALUE_EXPR:
2359 return invert_truthvalue (TREE_OPERAND (arg, 0));
2361 case NOP_EXPR:
2362 case CONVERT_EXPR:
2363 case FLOAT_EXPR:
2364 return build1 (TREE_CODE (arg), type,
2365 invert_truthvalue (TREE_OPERAND (arg, 0)));
2367 case BIT_AND_EXPR:
2368 if (!integer_onep (TREE_OPERAND (arg, 1)))
2369 break;
2370 return build (EQ_EXPR, type, arg, convert (type, integer_zero_node));
2372 case SAVE_EXPR:
2373 return build1 (TRUTH_NOT_EXPR, type, arg);
2375 case CLEANUP_POINT_EXPR:
2376 return build1 (CLEANUP_POINT_EXPR, type,
2377 invert_truthvalue (TREE_OPERAND (arg, 0)));
2379 default:
2380 break;
2382 if (TREE_CODE (TREE_TYPE (arg)) != BOOLEAN_TYPE)
2383 abort ();
2384 return build1 (TRUTH_NOT_EXPR, type, arg);
2387 /* Given a bit-wise operation CODE applied to ARG0 and ARG1, see if both
2388 operands are another bit-wise operation with a common input. If so,
2389 distribute the bit operations to save an operation and possibly two if
2390 constants are involved. For example, convert
2391 (A | B) & (A | C) into A | (B & C)
2392 Further simplification will occur if B and C are constants.
2394 If this optimization cannot be done, 0 will be returned. */
2396 static tree
2397 distribute_bit_expr (enum tree_code code, tree type, tree arg0, tree arg1)
2399 tree common;
2400 tree left, right;
2402 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2403 || TREE_CODE (arg0) == code
2404 || (TREE_CODE (arg0) != BIT_AND_EXPR
2405 && TREE_CODE (arg0) != BIT_IOR_EXPR))
2406 return 0;
2408 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0))
2410 common = TREE_OPERAND (arg0, 0);
2411 left = TREE_OPERAND (arg0, 1);
2412 right = TREE_OPERAND (arg1, 1);
2414 else if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 1), 0))
2416 common = TREE_OPERAND (arg0, 0);
2417 left = TREE_OPERAND (arg0, 1);
2418 right = TREE_OPERAND (arg1, 0);
2420 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 0), 0))
2422 common = TREE_OPERAND (arg0, 1);
2423 left = TREE_OPERAND (arg0, 0);
2424 right = TREE_OPERAND (arg1, 1);
2426 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1), 0))
2428 common = TREE_OPERAND (arg0, 1);
2429 left = TREE_OPERAND (arg0, 0);
2430 right = TREE_OPERAND (arg1, 0);
2432 else
2433 return 0;
2435 return fold (build (TREE_CODE (arg0), type, common,
2436 fold (build (code, type, left, right))));
2439 /* Return a BIT_FIELD_REF of type TYPE to refer to BITSIZE bits of INNER
2440 starting at BITPOS. The field is unsigned if UNSIGNEDP is nonzero. */
2442 static tree
2443 make_bit_field_ref (tree inner, tree type, int bitsize, int bitpos,
2444 int unsignedp)
2446 tree result = build (BIT_FIELD_REF, type, inner,
2447 size_int (bitsize), bitsize_int (bitpos));
2449 TREE_UNSIGNED (result) = unsignedp;
2451 return result;
2454 /* Optimize a bit-field compare.
2456 There are two cases: First is a compare against a constant and the
2457 second is a comparison of two items where the fields are at the same
2458 bit position relative to the start of a chunk (byte, halfword, word)
2459 large enough to contain it. In these cases we can avoid the shift
2460 implicit in bitfield extractions.
2462 For constants, we emit a compare of the shifted constant with the
2463 BIT_AND_EXPR of a mask and a byte, halfword, or word of the operand being
2464 compared. For two fields at the same position, we do the ANDs with the
2465 similar mask and compare the result of the ANDs.
2467 CODE is the comparison code, known to be either NE_EXPR or EQ_EXPR.
2468 COMPARE_TYPE is the type of the comparison, and LHS and RHS
2469 are the left and right operands of the comparison, respectively.
2471 If the optimization described above can be done, we return the resulting
2472 tree. Otherwise we return zero. */
2474 static tree
2475 optimize_bit_field_compare (enum tree_code code, tree compare_type,
2476 tree lhs, tree rhs)
2478 HOST_WIDE_INT lbitpos, lbitsize, rbitpos, rbitsize, nbitpos, nbitsize;
2479 tree type = TREE_TYPE (lhs);
2480 tree signed_type, unsigned_type;
2481 int const_p = TREE_CODE (rhs) == INTEGER_CST;
2482 enum machine_mode lmode, rmode, nmode;
2483 int lunsignedp, runsignedp;
2484 int lvolatilep = 0, rvolatilep = 0;
2485 tree linner, rinner = NULL_TREE;
2486 tree mask;
2487 tree offset;
2489 /* Get all the information about the extractions being done. If the bit size
2490 if the same as the size of the underlying object, we aren't doing an
2491 extraction at all and so can do nothing. We also don't want to
2492 do anything if the inner expression is a PLACEHOLDER_EXPR since we
2493 then will no longer be able to replace it. */
2494 linner = get_inner_reference (lhs, &lbitsize, &lbitpos, &offset, &lmode,
2495 &lunsignedp, &lvolatilep);
2496 if (linner == lhs || lbitsize == GET_MODE_BITSIZE (lmode) || lbitsize < 0
2497 || offset != 0 || TREE_CODE (linner) == PLACEHOLDER_EXPR)
2498 return 0;
2500 if (!const_p)
2502 /* If this is not a constant, we can only do something if bit positions,
2503 sizes, and signedness are the same. */
2504 rinner = get_inner_reference (rhs, &rbitsize, &rbitpos, &offset, &rmode,
2505 &runsignedp, &rvolatilep);
2507 if (rinner == rhs || lbitpos != rbitpos || lbitsize != rbitsize
2508 || lunsignedp != runsignedp || offset != 0
2509 || TREE_CODE (rinner) == PLACEHOLDER_EXPR)
2510 return 0;
2513 /* See if we can find a mode to refer to this field. We should be able to,
2514 but fail if we can't. */
2515 nmode = get_best_mode (lbitsize, lbitpos,
2516 const_p ? TYPE_ALIGN (TREE_TYPE (linner))
2517 : MIN (TYPE_ALIGN (TREE_TYPE (linner)),
2518 TYPE_ALIGN (TREE_TYPE (rinner))),
2519 word_mode, lvolatilep || rvolatilep);
2520 if (nmode == VOIDmode)
2521 return 0;
2523 /* Set signed and unsigned types of the precision of this mode for the
2524 shifts below. */
2525 signed_type = (*lang_hooks.types.type_for_mode) (nmode, 0);
2526 unsigned_type = (*lang_hooks.types.type_for_mode) (nmode, 1);
2528 /* Compute the bit position and size for the new reference and our offset
2529 within it. If the new reference is the same size as the original, we
2530 won't optimize anything, so return zero. */
2531 nbitsize = GET_MODE_BITSIZE (nmode);
2532 nbitpos = lbitpos & ~ (nbitsize - 1);
2533 lbitpos -= nbitpos;
2534 if (nbitsize == lbitsize)
2535 return 0;
2537 if (BYTES_BIG_ENDIAN)
2538 lbitpos = nbitsize - lbitsize - lbitpos;
2540 /* Make the mask to be used against the extracted field. */
2541 mask = build_int_2 (~0, ~0);
2542 TREE_TYPE (mask) = unsigned_type;
2543 force_fit_type (mask, 0);
2544 mask = convert (unsigned_type, mask);
2545 mask = const_binop (LSHIFT_EXPR, mask, size_int (nbitsize - lbitsize), 0);
2546 mask = const_binop (RSHIFT_EXPR, mask,
2547 size_int (nbitsize - lbitsize - lbitpos), 0);
2549 if (! const_p)
2550 /* If not comparing with constant, just rework the comparison
2551 and return. */
2552 return build (code, compare_type,
2553 build (BIT_AND_EXPR, unsigned_type,
2554 make_bit_field_ref (linner, unsigned_type,
2555 nbitsize, nbitpos, 1),
2556 mask),
2557 build (BIT_AND_EXPR, unsigned_type,
2558 make_bit_field_ref (rinner, unsigned_type,
2559 nbitsize, nbitpos, 1),
2560 mask));
2562 /* Otherwise, we are handling the constant case. See if the constant is too
2563 big for the field. Warn and return a tree of for 0 (false) if so. We do
2564 this not only for its own sake, but to avoid having to test for this
2565 error case below. If we didn't, we might generate wrong code.
2567 For unsigned fields, the constant shifted right by the field length should
2568 be all zero. For signed fields, the high-order bits should agree with
2569 the sign bit. */
2571 if (lunsignedp)
2573 if (! integer_zerop (const_binop (RSHIFT_EXPR,
2574 convert (unsigned_type, rhs),
2575 size_int (lbitsize), 0)))
2577 warning ("comparison is always %d due to width of bit-field",
2578 code == NE_EXPR);
2579 return convert (compare_type,
2580 (code == NE_EXPR
2581 ? integer_one_node : integer_zero_node));
2584 else
2586 tree tem = const_binop (RSHIFT_EXPR, convert (signed_type, rhs),
2587 size_int (lbitsize - 1), 0);
2588 if (! integer_zerop (tem) && ! integer_all_onesp (tem))
2590 warning ("comparison is always %d due to width of bit-field",
2591 code == NE_EXPR);
2592 return convert (compare_type,
2593 (code == NE_EXPR
2594 ? integer_one_node : integer_zero_node));
2598 /* Single-bit compares should always be against zero. */
2599 if (lbitsize == 1 && ! integer_zerop (rhs))
2601 code = code == EQ_EXPR ? NE_EXPR : EQ_EXPR;
2602 rhs = convert (type, integer_zero_node);
2605 /* Make a new bitfield reference, shift the constant over the
2606 appropriate number of bits and mask it with the computed mask
2607 (in case this was a signed field). If we changed it, make a new one. */
2608 lhs = make_bit_field_ref (linner, unsigned_type, nbitsize, nbitpos, 1);
2609 if (lvolatilep)
2611 TREE_SIDE_EFFECTS (lhs) = 1;
2612 TREE_THIS_VOLATILE (lhs) = 1;
2615 rhs = fold (const_binop (BIT_AND_EXPR,
2616 const_binop (LSHIFT_EXPR,
2617 convert (unsigned_type, rhs),
2618 size_int (lbitpos), 0),
2619 mask, 0));
2621 return build (code, compare_type,
2622 build (BIT_AND_EXPR, unsigned_type, lhs, mask),
2623 rhs);
2626 /* Subroutine for fold_truthop: decode a field reference.
2628 If EXP is a comparison reference, we return the innermost reference.
2630 *PBITSIZE is set to the number of bits in the reference, *PBITPOS is
2631 set to the starting bit number.
2633 If the innermost field can be completely contained in a mode-sized
2634 unit, *PMODE is set to that mode. Otherwise, it is set to VOIDmode.
2636 *PVOLATILEP is set to 1 if the any expression encountered is volatile;
2637 otherwise it is not changed.
2639 *PUNSIGNEDP is set to the signedness of the field.
2641 *PMASK is set to the mask used. This is either contained in a
2642 BIT_AND_EXPR or derived from the width of the field.
2644 *PAND_MASK is set to the mask found in a BIT_AND_EXPR, if any.
2646 Return 0 if this is not a component reference or is one that we can't
2647 do anything with. */
2649 static tree
2650 decode_field_reference (tree exp, HOST_WIDE_INT *pbitsize,
2651 HOST_WIDE_INT *pbitpos, enum machine_mode *pmode,
2652 int *punsignedp, int *pvolatilep,
2653 tree *pmask, tree *pand_mask)
2655 tree outer_type = 0;
2656 tree and_mask = 0;
2657 tree mask, inner, offset;
2658 tree unsigned_type;
2659 unsigned int precision;
2661 /* All the optimizations using this function assume integer fields.
2662 There are problems with FP fields since the type_for_size call
2663 below can fail for, e.g., XFmode. */
2664 if (! INTEGRAL_TYPE_P (TREE_TYPE (exp)))
2665 return 0;
2667 /* We are interested in the bare arrangement of bits, so strip everything
2668 that doesn't affect the machine mode. However, record the type of the
2669 outermost expression if it may matter below. */
2670 if (TREE_CODE (exp) == NOP_EXPR
2671 || TREE_CODE (exp) == CONVERT_EXPR
2672 || TREE_CODE (exp) == NON_LVALUE_EXPR)
2673 outer_type = TREE_TYPE (exp);
2674 STRIP_NOPS (exp);
2676 if (TREE_CODE (exp) == BIT_AND_EXPR)
2678 and_mask = TREE_OPERAND (exp, 1);
2679 exp = TREE_OPERAND (exp, 0);
2680 STRIP_NOPS (exp); STRIP_NOPS (and_mask);
2681 if (TREE_CODE (and_mask) != INTEGER_CST)
2682 return 0;
2685 inner = get_inner_reference (exp, pbitsize, pbitpos, &offset, pmode,
2686 punsignedp, pvolatilep);
2687 if ((inner == exp && and_mask == 0)
2688 || *pbitsize < 0 || offset != 0
2689 || TREE_CODE (inner) == PLACEHOLDER_EXPR)
2690 return 0;
2692 /* If the number of bits in the reference is the same as the bitsize of
2693 the outer type, then the outer type gives the signedness. Otherwise
2694 (in case of a small bitfield) the signedness is unchanged. */
2695 if (outer_type && *pbitsize == tree_low_cst (TYPE_SIZE (outer_type), 1))
2696 *punsignedp = TREE_UNSIGNED (outer_type);
2698 /* Compute the mask to access the bitfield. */
2699 unsigned_type = (*lang_hooks.types.type_for_size) (*pbitsize, 1);
2700 precision = TYPE_PRECISION (unsigned_type);
2702 mask = build_int_2 (~0, ~0);
2703 TREE_TYPE (mask) = unsigned_type;
2704 force_fit_type (mask, 0);
2705 mask = const_binop (LSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
2706 mask = const_binop (RSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
2708 /* Merge it with the mask we found in the BIT_AND_EXPR, if any. */
2709 if (and_mask != 0)
2710 mask = fold (build (BIT_AND_EXPR, unsigned_type,
2711 convert (unsigned_type, and_mask), mask));
2713 *pmask = mask;
2714 *pand_mask = and_mask;
2715 return inner;
2718 /* Return nonzero if MASK represents a mask of SIZE ones in the low-order
2719 bit positions. */
2721 static int
2722 all_ones_mask_p (tree mask, int size)
2724 tree type = TREE_TYPE (mask);
2725 unsigned int precision = TYPE_PRECISION (type);
2726 tree tmask;
2728 tmask = build_int_2 (~0, ~0);
2729 TREE_TYPE (tmask) = (*lang_hooks.types.signed_type) (type);
2730 force_fit_type (tmask, 0);
2731 return
2732 tree_int_cst_equal (mask,
2733 const_binop (RSHIFT_EXPR,
2734 const_binop (LSHIFT_EXPR, tmask,
2735 size_int (precision - size),
2737 size_int (precision - size), 0));
2740 /* Subroutine for fold: determine if VAL is the INTEGER_CONST that
2741 represents the sign bit of EXP's type. If EXP represents a sign
2742 or zero extension, also test VAL against the unextended type.
2743 The return value is the (sub)expression whose sign bit is VAL,
2744 or NULL_TREE otherwise. */
2746 static tree
2747 sign_bit_p (tree exp, tree val)
2749 unsigned HOST_WIDE_INT mask_lo, lo;
2750 HOST_WIDE_INT mask_hi, hi;
2751 int width;
2752 tree t;
2754 /* Tree EXP must have an integral type. */
2755 t = TREE_TYPE (exp);
2756 if (! INTEGRAL_TYPE_P (t))
2757 return NULL_TREE;
2759 /* Tree VAL must be an integer constant. */
2760 if (TREE_CODE (val) != INTEGER_CST
2761 || TREE_CONSTANT_OVERFLOW (val))
2762 return NULL_TREE;
2764 width = TYPE_PRECISION (t);
2765 if (width > HOST_BITS_PER_WIDE_INT)
2767 hi = (unsigned HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT - 1);
2768 lo = 0;
2770 mask_hi = ((unsigned HOST_WIDE_INT) -1
2771 >> (2 * HOST_BITS_PER_WIDE_INT - width));
2772 mask_lo = -1;
2774 else
2776 hi = 0;
2777 lo = (unsigned HOST_WIDE_INT) 1 << (width - 1);
2779 mask_hi = 0;
2780 mask_lo = ((unsigned HOST_WIDE_INT) -1
2781 >> (HOST_BITS_PER_WIDE_INT - width));
2784 /* We mask off those bits beyond TREE_TYPE (exp) so that we can
2785 treat VAL as if it were unsigned. */
2786 if ((TREE_INT_CST_HIGH (val) & mask_hi) == hi
2787 && (TREE_INT_CST_LOW (val) & mask_lo) == lo)
2788 return exp;
2790 /* Handle extension from a narrower type. */
2791 if (TREE_CODE (exp) == NOP_EXPR
2792 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))) < width)
2793 return sign_bit_p (TREE_OPERAND (exp, 0), val);
2795 return NULL_TREE;
2798 /* Subroutine for fold_truthop: determine if an operand is simple enough
2799 to be evaluated unconditionally. */
2801 static int
2802 simple_operand_p (tree exp)
2804 /* Strip any conversions that don't change the machine mode. */
2805 while ((TREE_CODE (exp) == NOP_EXPR
2806 || TREE_CODE (exp) == CONVERT_EXPR)
2807 && (TYPE_MODE (TREE_TYPE (exp))
2808 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)))))
2809 exp = TREE_OPERAND (exp, 0);
2811 return (TREE_CODE_CLASS (TREE_CODE (exp)) == 'c'
2812 || (DECL_P (exp)
2813 && ! TREE_ADDRESSABLE (exp)
2814 && ! TREE_THIS_VOLATILE (exp)
2815 && ! DECL_NONLOCAL (exp)
2816 /* Don't regard global variables as simple. They may be
2817 allocated in ways unknown to the compiler (shared memory,
2818 #pragma weak, etc). */
2819 && ! TREE_PUBLIC (exp)
2820 && ! DECL_EXTERNAL (exp)
2821 /* Loading a static variable is unduly expensive, but global
2822 registers aren't expensive. */
2823 && (! TREE_STATIC (exp) || DECL_REGISTER (exp))));
2826 /* The following functions are subroutines to fold_range_test and allow it to
2827 try to change a logical combination of comparisons into a range test.
2829 For example, both
2830 X == 2 || X == 3 || X == 4 || X == 5
2832 X >= 2 && X <= 5
2833 are converted to
2834 (unsigned) (X - 2) <= 3
2836 We describe each set of comparisons as being either inside or outside
2837 a range, using a variable named like IN_P, and then describe the
2838 range with a lower and upper bound. If one of the bounds is omitted,
2839 it represents either the highest or lowest value of the type.
2841 In the comments below, we represent a range by two numbers in brackets
2842 preceded by a "+" to designate being inside that range, or a "-" to
2843 designate being outside that range, so the condition can be inverted by
2844 flipping the prefix. An omitted bound is represented by a "-". For
2845 example, "- [-, 10]" means being outside the range starting at the lowest
2846 possible value and ending at 10, in other words, being greater than 10.
2847 The range "+ [-, -]" is always true and hence the range "- [-, -]" is
2848 always false.
2850 We set up things so that the missing bounds are handled in a consistent
2851 manner so neither a missing bound nor "true" and "false" need to be
2852 handled using a special case. */
2854 /* Return the result of applying CODE to ARG0 and ARG1, but handle the case
2855 of ARG0 and/or ARG1 being omitted, meaning an unlimited range. UPPER0_P
2856 and UPPER1_P are nonzero if the respective argument is an upper bound
2857 and zero for a lower. TYPE, if nonzero, is the type of the result; it
2858 must be specified for a comparison. ARG1 will be converted to ARG0's
2859 type if both are specified. */
2861 static tree
2862 range_binop (enum tree_code code, tree type, tree arg0, int upper0_p,
2863 tree arg1, int upper1_p)
2865 tree tem;
2866 int result;
2867 int sgn0, sgn1;
2869 /* If neither arg represents infinity, do the normal operation.
2870 Else, if not a comparison, return infinity. Else handle the special
2871 comparison rules. Note that most of the cases below won't occur, but
2872 are handled for consistency. */
2874 if (arg0 != 0 && arg1 != 0)
2876 tem = fold (build (code, type != 0 ? type : TREE_TYPE (arg0),
2877 arg0, convert (TREE_TYPE (arg0), arg1)));
2878 STRIP_NOPS (tem);
2879 return TREE_CODE (tem) == INTEGER_CST ? tem : 0;
2882 if (TREE_CODE_CLASS (code) != '<')
2883 return 0;
2885 /* Set SGN[01] to -1 if ARG[01] is a lower bound, 1 for upper, and 0
2886 for neither. In real maths, we cannot assume open ended ranges are
2887 the same. But, this is computer arithmetic, where numbers are finite.
2888 We can therefore make the transformation of any unbounded range with
2889 the value Z, Z being greater than any representable number. This permits
2890 us to treat unbounded ranges as equal. */
2891 sgn0 = arg0 != 0 ? 0 : (upper0_p ? 1 : -1);
2892 sgn1 = arg1 != 0 ? 0 : (upper1_p ? 1 : -1);
2893 switch (code)
2895 case EQ_EXPR:
2896 result = sgn0 == sgn1;
2897 break;
2898 case NE_EXPR:
2899 result = sgn0 != sgn1;
2900 break;
2901 case LT_EXPR:
2902 result = sgn0 < sgn1;
2903 break;
2904 case LE_EXPR:
2905 result = sgn0 <= sgn1;
2906 break;
2907 case GT_EXPR:
2908 result = sgn0 > sgn1;
2909 break;
2910 case GE_EXPR:
2911 result = sgn0 >= sgn1;
2912 break;
2913 default:
2914 abort ();
2917 return convert (type, result ? integer_one_node : integer_zero_node);
2920 /* Given EXP, a logical expression, set the range it is testing into
2921 variables denoted by PIN_P, PLOW, and PHIGH. Return the expression
2922 actually being tested. *PLOW and *PHIGH will be made of the same type
2923 as the returned expression. If EXP is not a comparison, we will most
2924 likely not be returning a useful value and range. */
2926 static tree
2927 make_range (tree exp, int *pin_p, tree *plow, tree *phigh)
2929 enum tree_code code;
2930 tree arg0 = NULL_TREE, arg1 = NULL_TREE, type = NULL_TREE;
2931 tree orig_type = NULL_TREE;
2932 int in_p, n_in_p;
2933 tree low, high, n_low, n_high;
2935 /* Start with simply saying "EXP != 0" and then look at the code of EXP
2936 and see if we can refine the range. Some of the cases below may not
2937 happen, but it doesn't seem worth worrying about this. We "continue"
2938 the outer loop when we've changed something; otherwise we "break"
2939 the switch, which will "break" the while. */
2941 in_p = 0, low = high = convert (TREE_TYPE (exp), integer_zero_node);
2943 while (1)
2945 code = TREE_CODE (exp);
2947 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
2949 if (first_rtl_op (code) > 0)
2950 arg0 = TREE_OPERAND (exp, 0);
2951 if (TREE_CODE_CLASS (code) == '<'
2952 || TREE_CODE_CLASS (code) == '1'
2953 || TREE_CODE_CLASS (code) == '2')
2954 type = TREE_TYPE (arg0);
2955 if (TREE_CODE_CLASS (code) == '2'
2956 || TREE_CODE_CLASS (code) == '<'
2957 || (TREE_CODE_CLASS (code) == 'e'
2958 && TREE_CODE_LENGTH (code) > 1))
2959 arg1 = TREE_OPERAND (exp, 1);
2962 /* Set ORIG_TYPE as soon as TYPE is non-null so that we do not
2963 lose a cast by accident. */
2964 if (type != NULL_TREE && orig_type == NULL_TREE)
2965 orig_type = type;
2967 switch (code)
2969 case TRUTH_NOT_EXPR:
2970 in_p = ! in_p, exp = arg0;
2971 continue;
2973 case EQ_EXPR: case NE_EXPR:
2974 case LT_EXPR: case LE_EXPR: case GE_EXPR: case GT_EXPR:
2975 /* We can only do something if the range is testing for zero
2976 and if the second operand is an integer constant. Note that
2977 saying something is "in" the range we make is done by
2978 complementing IN_P since it will set in the initial case of
2979 being not equal to zero; "out" is leaving it alone. */
2980 if (low == 0 || high == 0
2981 || ! integer_zerop (low) || ! integer_zerop (high)
2982 || TREE_CODE (arg1) != INTEGER_CST)
2983 break;
2985 switch (code)
2987 case NE_EXPR: /* - [c, c] */
2988 low = high = arg1;
2989 break;
2990 case EQ_EXPR: /* + [c, c] */
2991 in_p = ! in_p, low = high = arg1;
2992 break;
2993 case GT_EXPR: /* - [-, c] */
2994 low = 0, high = arg1;
2995 break;
2996 case GE_EXPR: /* + [c, -] */
2997 in_p = ! in_p, low = arg1, high = 0;
2998 break;
2999 case LT_EXPR: /* - [c, -] */
3000 low = arg1, high = 0;
3001 break;
3002 case LE_EXPR: /* + [-, c] */
3003 in_p = ! in_p, low = 0, high = arg1;
3004 break;
3005 default:
3006 abort ();
3009 exp = arg0;
3011 /* If this is an unsigned comparison, we also know that EXP is
3012 greater than or equal to zero. We base the range tests we make
3013 on that fact, so we record it here so we can parse existing
3014 range tests. */
3015 if (TREE_UNSIGNED (type) && (low == 0 || high == 0))
3017 if (! merge_ranges (&n_in_p, &n_low, &n_high, in_p, low, high,
3018 1, convert (type, integer_zero_node),
3019 NULL_TREE))
3020 break;
3022 in_p = n_in_p, low = n_low, high = n_high;
3024 /* If the high bound is missing, but we
3025 have a low bound, reverse the range so
3026 it goes from zero to the low bound minus 1. */
3027 if (high == 0 && low)
3029 in_p = ! in_p;
3030 high = range_binop (MINUS_EXPR, NULL_TREE, low, 0,
3031 integer_one_node, 0);
3032 low = convert (type, integer_zero_node);
3035 continue;
3037 case NEGATE_EXPR:
3038 /* (-x) IN [a,b] -> x in [-b, -a] */
3039 n_low = range_binop (MINUS_EXPR, type,
3040 convert (type, integer_zero_node), 0, high, 1);
3041 n_high = range_binop (MINUS_EXPR, type,
3042 convert (type, integer_zero_node), 0, low, 0);
3043 low = n_low, high = n_high;
3044 exp = arg0;
3045 continue;
3047 case BIT_NOT_EXPR:
3048 /* ~ X -> -X - 1 */
3049 exp = build (MINUS_EXPR, type, negate_expr (arg0),
3050 convert (type, integer_one_node));
3051 continue;
3053 case PLUS_EXPR: case MINUS_EXPR:
3054 if (TREE_CODE (arg1) != INTEGER_CST)
3055 break;
3057 /* If EXP is signed, any overflow in the computation is undefined,
3058 so we don't worry about it so long as our computations on
3059 the bounds don't overflow. For unsigned, overflow is defined
3060 and this is exactly the right thing. */
3061 n_low = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3062 type, low, 0, arg1, 0);
3063 n_high = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3064 type, high, 1, arg1, 0);
3065 if ((n_low != 0 && TREE_OVERFLOW (n_low))
3066 || (n_high != 0 && TREE_OVERFLOW (n_high)))
3067 break;
3069 /* Check for an unsigned range which has wrapped around the maximum
3070 value thus making n_high < n_low, and normalize it. */
3071 if (n_low && n_high && tree_int_cst_lt (n_high, n_low))
3073 low = range_binop (PLUS_EXPR, type, n_high, 0,
3074 integer_one_node, 0);
3075 high = range_binop (MINUS_EXPR, type, n_low, 0,
3076 integer_one_node, 0);
3078 /* If the range is of the form +/- [ x+1, x ], we won't
3079 be able to normalize it. But then, it represents the
3080 whole range or the empty set, so make it
3081 +/- [ -, - ]. */
3082 if (tree_int_cst_equal (n_low, low)
3083 && tree_int_cst_equal (n_high, high))
3084 low = high = 0;
3085 else
3086 in_p = ! in_p;
3088 else
3089 low = n_low, high = n_high;
3091 exp = arg0;
3092 continue;
3094 case NOP_EXPR: case NON_LVALUE_EXPR: case CONVERT_EXPR:
3095 if (TYPE_PRECISION (type) > TYPE_PRECISION (orig_type))
3096 break;
3098 if (! INTEGRAL_TYPE_P (type)
3099 || (low != 0 && ! int_fits_type_p (low, type))
3100 || (high != 0 && ! int_fits_type_p (high, type)))
3101 break;
3103 n_low = low, n_high = high;
3105 if (n_low != 0)
3106 n_low = convert (type, n_low);
3108 if (n_high != 0)
3109 n_high = convert (type, n_high);
3111 /* If we're converting from an unsigned to a signed type,
3112 we will be doing the comparison as unsigned. The tests above
3113 have already verified that LOW and HIGH are both positive.
3115 So we have to make sure that the original unsigned value will
3116 be interpreted as positive. */
3117 if (TREE_UNSIGNED (type) && ! TREE_UNSIGNED (TREE_TYPE (exp)))
3119 tree equiv_type = (*lang_hooks.types.type_for_mode)
3120 (TYPE_MODE (type), 1);
3121 tree high_positive;
3123 /* A range without an upper bound is, naturally, unbounded.
3124 Since convert would have cropped a very large value, use
3125 the max value for the destination type. */
3126 high_positive
3127 = TYPE_MAX_VALUE (equiv_type) ? TYPE_MAX_VALUE (equiv_type)
3128 : TYPE_MAX_VALUE (type);
3130 if (TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (exp)))
3131 high_positive = fold (build (RSHIFT_EXPR, type,
3132 convert (type, high_positive),
3133 convert (type, integer_one_node)));
3135 /* If the low bound is specified, "and" the range with the
3136 range for which the original unsigned value will be
3137 positive. */
3138 if (low != 0)
3140 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3141 1, n_low, n_high,
3142 1, convert (type, integer_zero_node),
3143 high_positive))
3144 break;
3146 in_p = (n_in_p == in_p);
3148 else
3150 /* Otherwise, "or" the range with the range of the input
3151 that will be interpreted as negative. */
3152 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3153 0, n_low, n_high,
3154 1, convert (type, integer_zero_node),
3155 high_positive))
3156 break;
3158 in_p = (in_p != n_in_p);
3162 exp = arg0;
3163 low = n_low, high = n_high;
3164 continue;
3166 default:
3167 break;
3170 break;
3173 /* If EXP is a constant, we can evaluate whether this is true or false. */
3174 if (TREE_CODE (exp) == INTEGER_CST)
3176 in_p = in_p == (integer_onep (range_binop (GE_EXPR, integer_type_node,
3177 exp, 0, low, 0))
3178 && integer_onep (range_binop (LE_EXPR, integer_type_node,
3179 exp, 1, high, 1)));
3180 low = high = 0;
3181 exp = 0;
3184 *pin_p = in_p, *plow = low, *phigh = high;
3185 return exp;
3188 /* Given a range, LOW, HIGH, and IN_P, an expression, EXP, and a result
3189 type, TYPE, return an expression to test if EXP is in (or out of, depending
3190 on IN_P) the range. */
3192 static tree
3193 build_range_check (tree type, tree exp, int in_p, tree low, tree high)
3195 tree etype = TREE_TYPE (exp);
3196 tree value;
3198 if (! in_p
3199 && (0 != (value = build_range_check (type, exp, 1, low, high))))
3200 return invert_truthvalue (value);
3202 if (low == 0 && high == 0)
3203 return convert (type, integer_one_node);
3205 if (low == 0)
3206 return fold (build (LE_EXPR, type, exp, high));
3208 if (high == 0)
3209 return fold (build (GE_EXPR, type, exp, low));
3211 if (operand_equal_p (low, high, 0))
3212 return fold (build (EQ_EXPR, type, exp, low));
3214 if (integer_zerop (low))
3216 if (! TREE_UNSIGNED (etype))
3218 etype = (*lang_hooks.types.unsigned_type) (etype);
3219 high = convert (etype, high);
3220 exp = convert (etype, exp);
3222 return build_range_check (type, exp, 1, 0, high);
3225 /* Optimize (c>=1) && (c<=127) into (signed char)c > 0. */
3226 if (integer_onep (low) && TREE_CODE (high) == INTEGER_CST)
3228 unsigned HOST_WIDE_INT lo;
3229 HOST_WIDE_INT hi;
3230 int prec;
3232 prec = TYPE_PRECISION (etype);
3233 if (prec <= HOST_BITS_PER_WIDE_INT)
3235 hi = 0;
3236 lo = ((unsigned HOST_WIDE_INT) 1 << (prec - 1)) - 1;
3238 else
3240 hi = ((HOST_WIDE_INT) 1 << (prec - HOST_BITS_PER_WIDE_INT - 1)) - 1;
3241 lo = (unsigned HOST_WIDE_INT) -1;
3244 if (TREE_INT_CST_HIGH (high) == hi && TREE_INT_CST_LOW (high) == lo)
3246 if (TREE_UNSIGNED (etype))
3248 etype = (*lang_hooks.types.signed_type) (etype);
3249 exp = convert (etype, exp);
3251 return fold (build (GT_EXPR, type, exp,
3252 convert (etype, integer_zero_node)));
3256 if (0 != (value = const_binop (MINUS_EXPR, high, low, 0))
3257 && ! TREE_OVERFLOW (value))
3258 return build_range_check (type,
3259 fold (build (MINUS_EXPR, etype, exp, low)),
3260 1, convert (etype, integer_zero_node), value);
3262 return 0;
3265 /* Given two ranges, see if we can merge them into one. Return 1 if we
3266 can, 0 if we can't. Set the output range into the specified parameters. */
3268 static int
3269 merge_ranges (int *pin_p, tree *plow, tree *phigh, int in0_p, tree low0,
3270 tree high0, int in1_p, tree low1, tree high1)
3272 int no_overlap;
3273 int subset;
3274 int temp;
3275 tree tem;
3276 int in_p;
3277 tree low, high;
3278 int lowequal = ((low0 == 0 && low1 == 0)
3279 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
3280 low0, 0, low1, 0)));
3281 int highequal = ((high0 == 0 && high1 == 0)
3282 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
3283 high0, 1, high1, 1)));
3285 /* Make range 0 be the range that starts first, or ends last if they
3286 start at the same value. Swap them if it isn't. */
3287 if (integer_onep (range_binop (GT_EXPR, integer_type_node,
3288 low0, 0, low1, 0))
3289 || (lowequal
3290 && integer_onep (range_binop (GT_EXPR, integer_type_node,
3291 high1, 1, high0, 1))))
3293 temp = in0_p, in0_p = in1_p, in1_p = temp;
3294 tem = low0, low0 = low1, low1 = tem;
3295 tem = high0, high0 = high1, high1 = tem;
3298 /* Now flag two cases, whether the ranges are disjoint or whether the
3299 second range is totally subsumed in the first. Note that the tests
3300 below are simplified by the ones above. */
3301 no_overlap = integer_onep (range_binop (LT_EXPR, integer_type_node,
3302 high0, 1, low1, 0));
3303 subset = integer_onep (range_binop (LE_EXPR, integer_type_node,
3304 high1, 1, high0, 1));
3306 /* We now have four cases, depending on whether we are including or
3307 excluding the two ranges. */
3308 if (in0_p && in1_p)
3310 /* If they don't overlap, the result is false. If the second range
3311 is a subset it is the result. Otherwise, the range is from the start
3312 of the second to the end of the first. */
3313 if (no_overlap)
3314 in_p = 0, low = high = 0;
3315 else if (subset)
3316 in_p = 1, low = low1, high = high1;
3317 else
3318 in_p = 1, low = low1, high = high0;
3321 else if (in0_p && ! in1_p)
3323 /* If they don't overlap, the result is the first range. If they are
3324 equal, the result is false. If the second range is a subset of the
3325 first, and the ranges begin at the same place, we go from just after
3326 the end of the first range to the end of the second. If the second
3327 range is not a subset of the first, or if it is a subset and both
3328 ranges end at the same place, the range starts at the start of the
3329 first range and ends just before the second range.
3330 Otherwise, we can't describe this as a single range. */
3331 if (no_overlap)
3332 in_p = 1, low = low0, high = high0;
3333 else if (lowequal && highequal)
3334 in_p = 0, low = high = 0;
3335 else if (subset && lowequal)
3337 in_p = 1, high = high0;
3338 low = range_binop (PLUS_EXPR, NULL_TREE, high1, 0,
3339 integer_one_node, 0);
3341 else if (! subset || highequal)
3343 in_p = 1, low = low0;
3344 high = range_binop (MINUS_EXPR, NULL_TREE, low1, 0,
3345 integer_one_node, 0);
3347 else
3348 return 0;
3351 else if (! in0_p && in1_p)
3353 /* If they don't overlap, the result is the second range. If the second
3354 is a subset of the first, the result is false. Otherwise,
3355 the range starts just after the first range and ends at the
3356 end of the second. */
3357 if (no_overlap)
3358 in_p = 1, low = low1, high = high1;
3359 else if (subset || highequal)
3360 in_p = 0, low = high = 0;
3361 else
3363 in_p = 1, high = high1;
3364 low = range_binop (PLUS_EXPR, NULL_TREE, high0, 1,
3365 integer_one_node, 0);
3369 else
3371 /* The case where we are excluding both ranges. Here the complex case
3372 is if they don't overlap. In that case, the only time we have a
3373 range is if they are adjacent. If the second is a subset of the
3374 first, the result is the first. Otherwise, the range to exclude
3375 starts at the beginning of the first range and ends at the end of the
3376 second. */
3377 if (no_overlap)
3379 if (integer_onep (range_binop (EQ_EXPR, integer_type_node,
3380 range_binop (PLUS_EXPR, NULL_TREE,
3381 high0, 1,
3382 integer_one_node, 1),
3383 1, low1, 0)))
3384 in_p = 0, low = low0, high = high1;
3385 else
3386 return 0;
3388 else if (subset)
3389 in_p = 0, low = low0, high = high0;
3390 else
3391 in_p = 0, low = low0, high = high1;
3394 *pin_p = in_p, *plow = low, *phigh = high;
3395 return 1;
3398 #ifndef RANGE_TEST_NON_SHORT_CIRCUIT
3399 #define RANGE_TEST_NON_SHORT_CIRCUIT (BRANCH_COST >= 2)
3400 #endif
3402 /* EXP is some logical combination of boolean tests. See if we can
3403 merge it into some range test. Return the new tree if so. */
3405 static tree
3406 fold_range_test (tree exp)
3408 int or_op = (TREE_CODE (exp) == TRUTH_ORIF_EXPR
3409 || TREE_CODE (exp) == TRUTH_OR_EXPR);
3410 int in0_p, in1_p, in_p;
3411 tree low0, low1, low, high0, high1, high;
3412 tree lhs = make_range (TREE_OPERAND (exp, 0), &in0_p, &low0, &high0);
3413 tree rhs = make_range (TREE_OPERAND (exp, 1), &in1_p, &low1, &high1);
3414 tree tem;
3416 /* If this is an OR operation, invert both sides; we will invert
3417 again at the end. */
3418 if (or_op)
3419 in0_p = ! in0_p, in1_p = ! in1_p;
3421 /* If both expressions are the same, if we can merge the ranges, and we
3422 can build the range test, return it or it inverted. If one of the
3423 ranges is always true or always false, consider it to be the same
3424 expression as the other. */
3425 if ((lhs == 0 || rhs == 0 || operand_equal_p (lhs, rhs, 0))
3426 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
3427 in1_p, low1, high1)
3428 && 0 != (tem = (build_range_check (TREE_TYPE (exp),
3429 lhs != 0 ? lhs
3430 : rhs != 0 ? rhs : integer_zero_node,
3431 in_p, low, high))))
3432 return or_op ? invert_truthvalue (tem) : tem;
3434 /* On machines where the branch cost is expensive, if this is a
3435 short-circuited branch and the underlying object on both sides
3436 is the same, make a non-short-circuit operation. */
3437 else if (RANGE_TEST_NON_SHORT_CIRCUIT
3438 && lhs != 0 && rhs != 0
3439 && (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
3440 || TREE_CODE (exp) == TRUTH_ORIF_EXPR)
3441 && operand_equal_p (lhs, rhs, 0))
3443 /* If simple enough, just rewrite. Otherwise, make a SAVE_EXPR
3444 unless we are at top level or LHS contains a PLACEHOLDER_EXPR, in
3445 which cases we can't do this. */
3446 if (simple_operand_p (lhs))
3447 return build (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
3448 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
3449 TREE_TYPE (exp), TREE_OPERAND (exp, 0),
3450 TREE_OPERAND (exp, 1));
3452 else if ((*lang_hooks.decls.global_bindings_p) () == 0
3453 && ! CONTAINS_PLACEHOLDER_P (lhs))
3455 tree common = save_expr (lhs);
3457 if (0 != (lhs = build_range_check (TREE_TYPE (exp), common,
3458 or_op ? ! in0_p : in0_p,
3459 low0, high0))
3460 && (0 != (rhs = build_range_check (TREE_TYPE (exp), common,
3461 or_op ? ! in1_p : in1_p,
3462 low1, high1))))
3463 return build (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
3464 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
3465 TREE_TYPE (exp), lhs, rhs);
3469 return 0;
3472 /* Subroutine for fold_truthop: C is an INTEGER_CST interpreted as a P
3473 bit value. Arrange things so the extra bits will be set to zero if and
3474 only if C is signed-extended to its full width. If MASK is nonzero,
3475 it is an INTEGER_CST that should be AND'ed with the extra bits. */
3477 static tree
3478 unextend (tree c, int p, int unsignedp, tree mask)
3480 tree type = TREE_TYPE (c);
3481 int modesize = GET_MODE_BITSIZE (TYPE_MODE (type));
3482 tree temp;
3484 if (p == modesize || unsignedp)
3485 return c;
3487 /* We work by getting just the sign bit into the low-order bit, then
3488 into the high-order bit, then sign-extend. We then XOR that value
3489 with C. */
3490 temp = const_binop (RSHIFT_EXPR, c, size_int (p - 1), 0);
3491 temp = const_binop (BIT_AND_EXPR, temp, size_int (1), 0);
3493 /* We must use a signed type in order to get an arithmetic right shift.
3494 However, we must also avoid introducing accidental overflows, so that
3495 a subsequent call to integer_zerop will work. Hence we must
3496 do the type conversion here. At this point, the constant is either
3497 zero or one, and the conversion to a signed type can never overflow.
3498 We could get an overflow if this conversion is done anywhere else. */
3499 if (TREE_UNSIGNED (type))
3500 temp = convert ((*lang_hooks.types.signed_type) (type), temp);
3502 temp = const_binop (LSHIFT_EXPR, temp, size_int (modesize - 1), 0);
3503 temp = const_binop (RSHIFT_EXPR, temp, size_int (modesize - p - 1), 0);
3504 if (mask != 0)
3505 temp = const_binop (BIT_AND_EXPR, temp, convert (TREE_TYPE (c), mask), 0);
3506 /* If necessary, convert the type back to match the type of C. */
3507 if (TREE_UNSIGNED (type))
3508 temp = convert (type, temp);
3510 return convert (type, const_binop (BIT_XOR_EXPR, c, temp, 0));
3513 /* Find ways of folding logical expressions of LHS and RHS:
3514 Try to merge two comparisons to the same innermost item.
3515 Look for range tests like "ch >= '0' && ch <= '9'".
3516 Look for combinations of simple terms on machines with expensive branches
3517 and evaluate the RHS unconditionally.
3519 For example, if we have p->a == 2 && p->b == 4 and we can make an
3520 object large enough to span both A and B, we can do this with a comparison
3521 against the object ANDed with the a mask.
3523 If we have p->a == q->a && p->b == q->b, we may be able to use bit masking
3524 operations to do this with one comparison.
3526 We check for both normal comparisons and the BIT_AND_EXPRs made this by
3527 function and the one above.
3529 CODE is the logical operation being done. It can be TRUTH_ANDIF_EXPR,
3530 TRUTH_AND_EXPR, TRUTH_ORIF_EXPR, or TRUTH_OR_EXPR.
3532 TRUTH_TYPE is the type of the logical operand and LHS and RHS are its
3533 two operands.
3535 We return the simplified tree or 0 if no optimization is possible. */
3537 static tree
3538 fold_truthop (enum tree_code code, tree truth_type, tree lhs, tree rhs)
3540 /* If this is the "or" of two comparisons, we can do something if
3541 the comparisons are NE_EXPR. If this is the "and", we can do something
3542 if the comparisons are EQ_EXPR. I.e.,
3543 (a->b == 2 && a->c == 4) can become (a->new == NEW).
3545 WANTED_CODE is this operation code. For single bit fields, we can
3546 convert EQ_EXPR to NE_EXPR so we need not reject the "wrong"
3547 comparison for one-bit fields. */
3549 enum tree_code wanted_code;
3550 enum tree_code lcode, rcode;
3551 tree ll_arg, lr_arg, rl_arg, rr_arg;
3552 tree ll_inner, lr_inner, rl_inner, rr_inner;
3553 HOST_WIDE_INT ll_bitsize, ll_bitpos, lr_bitsize, lr_bitpos;
3554 HOST_WIDE_INT rl_bitsize, rl_bitpos, rr_bitsize, rr_bitpos;
3555 HOST_WIDE_INT xll_bitpos, xlr_bitpos, xrl_bitpos, xrr_bitpos;
3556 HOST_WIDE_INT lnbitsize, lnbitpos, rnbitsize, rnbitpos;
3557 int ll_unsignedp, lr_unsignedp, rl_unsignedp, rr_unsignedp;
3558 enum machine_mode ll_mode, lr_mode, rl_mode, rr_mode;
3559 enum machine_mode lnmode, rnmode;
3560 tree ll_mask, lr_mask, rl_mask, rr_mask;
3561 tree ll_and_mask, lr_and_mask, rl_and_mask, rr_and_mask;
3562 tree l_const, r_const;
3563 tree lntype, rntype, result;
3564 int first_bit, end_bit;
3565 int volatilep;
3567 /* Start by getting the comparison codes. Fail if anything is volatile.
3568 If one operand is a BIT_AND_EXPR with the constant one, treat it as if
3569 it were surrounded with a NE_EXPR. */
3571 if (TREE_SIDE_EFFECTS (lhs) || TREE_SIDE_EFFECTS (rhs))
3572 return 0;
3574 lcode = TREE_CODE (lhs);
3575 rcode = TREE_CODE (rhs);
3577 if (lcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (lhs, 1)))
3578 lcode = NE_EXPR, lhs = build (NE_EXPR, truth_type, lhs, integer_zero_node);
3580 if (rcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (rhs, 1)))
3581 rcode = NE_EXPR, rhs = build (NE_EXPR, truth_type, rhs, integer_zero_node);
3583 if (TREE_CODE_CLASS (lcode) != '<' || TREE_CODE_CLASS (rcode) != '<')
3584 return 0;
3586 code = ((code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR)
3587 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR);
3589 ll_arg = TREE_OPERAND (lhs, 0);
3590 lr_arg = TREE_OPERAND (lhs, 1);
3591 rl_arg = TREE_OPERAND (rhs, 0);
3592 rr_arg = TREE_OPERAND (rhs, 1);
3594 /* Simplify (x<y) && (x==y) into (x<=y) and related optimizations. */
3595 if (simple_operand_p (ll_arg)
3596 && simple_operand_p (lr_arg)
3597 && !FLOAT_TYPE_P (TREE_TYPE (ll_arg)))
3599 int compcode;
3601 if (operand_equal_p (ll_arg, rl_arg, 0)
3602 && operand_equal_p (lr_arg, rr_arg, 0))
3604 int lcompcode, rcompcode;
3606 lcompcode = comparison_to_compcode (lcode);
3607 rcompcode = comparison_to_compcode (rcode);
3608 compcode = (code == TRUTH_AND_EXPR)
3609 ? lcompcode & rcompcode
3610 : lcompcode | rcompcode;
3612 else if (operand_equal_p (ll_arg, rr_arg, 0)
3613 && operand_equal_p (lr_arg, rl_arg, 0))
3615 int lcompcode, rcompcode;
3617 rcode = swap_tree_comparison (rcode);
3618 lcompcode = comparison_to_compcode (lcode);
3619 rcompcode = comparison_to_compcode (rcode);
3620 compcode = (code == TRUTH_AND_EXPR)
3621 ? lcompcode & rcompcode
3622 : lcompcode | rcompcode;
3624 else
3625 compcode = -1;
3627 if (compcode == COMPCODE_TRUE)
3628 return convert (truth_type, integer_one_node);
3629 else if (compcode == COMPCODE_FALSE)
3630 return convert (truth_type, integer_zero_node);
3631 else if (compcode != -1)
3632 return build (compcode_to_comparison (compcode),
3633 truth_type, ll_arg, lr_arg);
3636 /* If the RHS can be evaluated unconditionally and its operands are
3637 simple, it wins to evaluate the RHS unconditionally on machines
3638 with expensive branches. In this case, this isn't a comparison
3639 that can be merged. Avoid doing this if the RHS is a floating-point
3640 comparison since those can trap. */
3642 if (BRANCH_COST >= 2
3643 && ! FLOAT_TYPE_P (TREE_TYPE (rl_arg))
3644 && simple_operand_p (rl_arg)
3645 && simple_operand_p (rr_arg))
3647 /* Convert (a != 0) || (b != 0) into (a | b) != 0. */
3648 if (code == TRUTH_OR_EXPR
3649 && lcode == NE_EXPR && integer_zerop (lr_arg)
3650 && rcode == NE_EXPR && integer_zerop (rr_arg)
3651 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg))
3652 return build (NE_EXPR, truth_type,
3653 build (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
3654 ll_arg, rl_arg),
3655 integer_zero_node);
3657 /* Convert (a == 0) && (b == 0) into (a | b) == 0. */
3658 if (code == TRUTH_AND_EXPR
3659 && lcode == EQ_EXPR && integer_zerop (lr_arg)
3660 && rcode == EQ_EXPR && integer_zerop (rr_arg)
3661 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg))
3662 return build (EQ_EXPR, truth_type,
3663 build (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
3664 ll_arg, rl_arg),
3665 integer_zero_node);
3667 return build (code, truth_type, lhs, rhs);
3670 /* See if the comparisons can be merged. Then get all the parameters for
3671 each side. */
3673 if ((lcode != EQ_EXPR && lcode != NE_EXPR)
3674 || (rcode != EQ_EXPR && rcode != NE_EXPR))
3675 return 0;
3677 volatilep = 0;
3678 ll_inner = decode_field_reference (ll_arg,
3679 &ll_bitsize, &ll_bitpos, &ll_mode,
3680 &ll_unsignedp, &volatilep, &ll_mask,
3681 &ll_and_mask);
3682 lr_inner = decode_field_reference (lr_arg,
3683 &lr_bitsize, &lr_bitpos, &lr_mode,
3684 &lr_unsignedp, &volatilep, &lr_mask,
3685 &lr_and_mask);
3686 rl_inner = decode_field_reference (rl_arg,
3687 &rl_bitsize, &rl_bitpos, &rl_mode,
3688 &rl_unsignedp, &volatilep, &rl_mask,
3689 &rl_and_mask);
3690 rr_inner = decode_field_reference (rr_arg,
3691 &rr_bitsize, &rr_bitpos, &rr_mode,
3692 &rr_unsignedp, &volatilep, &rr_mask,
3693 &rr_and_mask);
3695 /* It must be true that the inner operation on the lhs of each
3696 comparison must be the same if we are to be able to do anything.
3697 Then see if we have constants. If not, the same must be true for
3698 the rhs's. */
3699 if (volatilep || ll_inner == 0 || rl_inner == 0
3700 || ! operand_equal_p (ll_inner, rl_inner, 0))
3701 return 0;
3703 if (TREE_CODE (lr_arg) == INTEGER_CST
3704 && TREE_CODE (rr_arg) == INTEGER_CST)
3705 l_const = lr_arg, r_const = rr_arg;
3706 else if (lr_inner == 0 || rr_inner == 0
3707 || ! operand_equal_p (lr_inner, rr_inner, 0))
3708 return 0;
3709 else
3710 l_const = r_const = 0;
3712 /* If either comparison code is not correct for our logical operation,
3713 fail. However, we can convert a one-bit comparison against zero into
3714 the opposite comparison against that bit being set in the field. */
3716 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR);
3717 if (lcode != wanted_code)
3719 if (l_const && integer_zerop (l_const) && integer_pow2p (ll_mask))
3721 /* Make the left operand unsigned, since we are only interested
3722 in the value of one bit. Otherwise we are doing the wrong
3723 thing below. */
3724 ll_unsignedp = 1;
3725 l_const = ll_mask;
3727 else
3728 return 0;
3731 /* This is analogous to the code for l_const above. */
3732 if (rcode != wanted_code)
3734 if (r_const && integer_zerop (r_const) && integer_pow2p (rl_mask))
3736 rl_unsignedp = 1;
3737 r_const = rl_mask;
3739 else
3740 return 0;
3743 /* After this point all optimizations will generate bit-field
3744 references, which we might not want. */
3745 if (! (*lang_hooks.can_use_bit_fields_p) ())
3746 return 0;
3748 /* See if we can find a mode that contains both fields being compared on
3749 the left. If we can't, fail. Otherwise, update all constants and masks
3750 to be relative to a field of that size. */
3751 first_bit = MIN (ll_bitpos, rl_bitpos);
3752 end_bit = MAX (ll_bitpos + ll_bitsize, rl_bitpos + rl_bitsize);
3753 lnmode = get_best_mode (end_bit - first_bit, first_bit,
3754 TYPE_ALIGN (TREE_TYPE (ll_inner)), word_mode,
3755 volatilep);
3756 if (lnmode == VOIDmode)
3757 return 0;
3759 lnbitsize = GET_MODE_BITSIZE (lnmode);
3760 lnbitpos = first_bit & ~ (lnbitsize - 1);
3761 lntype = (*lang_hooks.types.type_for_size) (lnbitsize, 1);
3762 xll_bitpos = ll_bitpos - lnbitpos, xrl_bitpos = rl_bitpos - lnbitpos;
3764 if (BYTES_BIG_ENDIAN)
3766 xll_bitpos = lnbitsize - xll_bitpos - ll_bitsize;
3767 xrl_bitpos = lnbitsize - xrl_bitpos - rl_bitsize;
3770 ll_mask = const_binop (LSHIFT_EXPR, convert (lntype, ll_mask),
3771 size_int (xll_bitpos), 0);
3772 rl_mask = const_binop (LSHIFT_EXPR, convert (lntype, rl_mask),
3773 size_int (xrl_bitpos), 0);
3775 if (l_const)
3777 l_const = convert (lntype, l_const);
3778 l_const = unextend (l_const, ll_bitsize, ll_unsignedp, ll_and_mask);
3779 l_const = const_binop (LSHIFT_EXPR, l_const, size_int (xll_bitpos), 0);
3780 if (! integer_zerop (const_binop (BIT_AND_EXPR, l_const,
3781 fold (build1 (BIT_NOT_EXPR,
3782 lntype, ll_mask)),
3783 0)))
3785 warning ("comparison is always %d", wanted_code == NE_EXPR);
3787 return convert (truth_type,
3788 wanted_code == NE_EXPR
3789 ? integer_one_node : integer_zero_node);
3792 if (r_const)
3794 r_const = convert (lntype, r_const);
3795 r_const = unextend (r_const, rl_bitsize, rl_unsignedp, rl_and_mask);
3796 r_const = const_binop (LSHIFT_EXPR, r_const, size_int (xrl_bitpos), 0);
3797 if (! integer_zerop (const_binop (BIT_AND_EXPR, r_const,
3798 fold (build1 (BIT_NOT_EXPR,
3799 lntype, rl_mask)),
3800 0)))
3802 warning ("comparison is always %d", wanted_code == NE_EXPR);
3804 return convert (truth_type,
3805 wanted_code == NE_EXPR
3806 ? integer_one_node : integer_zero_node);
3810 /* If the right sides are not constant, do the same for it. Also,
3811 disallow this optimization if a size or signedness mismatch occurs
3812 between the left and right sides. */
3813 if (l_const == 0)
3815 if (ll_bitsize != lr_bitsize || rl_bitsize != rr_bitsize
3816 || ll_unsignedp != lr_unsignedp || rl_unsignedp != rr_unsignedp
3817 /* Make sure the two fields on the right
3818 correspond to the left without being swapped. */
3819 || ll_bitpos - rl_bitpos != lr_bitpos - rr_bitpos)
3820 return 0;
3822 first_bit = MIN (lr_bitpos, rr_bitpos);
3823 end_bit = MAX (lr_bitpos + lr_bitsize, rr_bitpos + rr_bitsize);
3824 rnmode = get_best_mode (end_bit - first_bit, first_bit,
3825 TYPE_ALIGN (TREE_TYPE (lr_inner)), word_mode,
3826 volatilep);
3827 if (rnmode == VOIDmode)
3828 return 0;
3830 rnbitsize = GET_MODE_BITSIZE (rnmode);
3831 rnbitpos = first_bit & ~ (rnbitsize - 1);
3832 rntype = (*lang_hooks.types.type_for_size) (rnbitsize, 1);
3833 xlr_bitpos = lr_bitpos - rnbitpos, xrr_bitpos = rr_bitpos - rnbitpos;
3835 if (BYTES_BIG_ENDIAN)
3837 xlr_bitpos = rnbitsize - xlr_bitpos - lr_bitsize;
3838 xrr_bitpos = rnbitsize - xrr_bitpos - rr_bitsize;
3841 lr_mask = const_binop (LSHIFT_EXPR, convert (rntype, lr_mask),
3842 size_int (xlr_bitpos), 0);
3843 rr_mask = const_binop (LSHIFT_EXPR, convert (rntype, rr_mask),
3844 size_int (xrr_bitpos), 0);
3846 /* Make a mask that corresponds to both fields being compared.
3847 Do this for both items being compared. If the operands are the
3848 same size and the bits being compared are in the same position
3849 then we can do this by masking both and comparing the masked
3850 results. */
3851 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask, 0);
3852 lr_mask = const_binop (BIT_IOR_EXPR, lr_mask, rr_mask, 0);
3853 if (lnbitsize == rnbitsize && xll_bitpos == xlr_bitpos)
3855 lhs = make_bit_field_ref (ll_inner, lntype, lnbitsize, lnbitpos,
3856 ll_unsignedp || rl_unsignedp);
3857 if (! all_ones_mask_p (ll_mask, lnbitsize))
3858 lhs = build (BIT_AND_EXPR, lntype, lhs, ll_mask);
3860 rhs = make_bit_field_ref (lr_inner, rntype, rnbitsize, rnbitpos,
3861 lr_unsignedp || rr_unsignedp);
3862 if (! all_ones_mask_p (lr_mask, rnbitsize))
3863 rhs = build (BIT_AND_EXPR, rntype, rhs, lr_mask);
3865 return build (wanted_code, truth_type, lhs, rhs);
3868 /* There is still another way we can do something: If both pairs of
3869 fields being compared are adjacent, we may be able to make a wider
3870 field containing them both.
3872 Note that we still must mask the lhs/rhs expressions. Furthermore,
3873 the mask must be shifted to account for the shift done by
3874 make_bit_field_ref. */
3875 if ((ll_bitsize + ll_bitpos == rl_bitpos
3876 && lr_bitsize + lr_bitpos == rr_bitpos)
3877 || (ll_bitpos == rl_bitpos + rl_bitsize
3878 && lr_bitpos == rr_bitpos + rr_bitsize))
3880 tree type;
3882 lhs = make_bit_field_ref (ll_inner, lntype, ll_bitsize + rl_bitsize,
3883 MIN (ll_bitpos, rl_bitpos), ll_unsignedp);
3884 rhs = make_bit_field_ref (lr_inner, rntype, lr_bitsize + rr_bitsize,
3885 MIN (lr_bitpos, rr_bitpos), lr_unsignedp);
3887 ll_mask = const_binop (RSHIFT_EXPR, ll_mask,
3888 size_int (MIN (xll_bitpos, xrl_bitpos)), 0);
3889 lr_mask = const_binop (RSHIFT_EXPR, lr_mask,
3890 size_int (MIN (xlr_bitpos, xrr_bitpos)), 0);
3892 /* Convert to the smaller type before masking out unwanted bits. */
3893 type = lntype;
3894 if (lntype != rntype)
3896 if (lnbitsize > rnbitsize)
3898 lhs = convert (rntype, lhs);
3899 ll_mask = convert (rntype, ll_mask);
3900 type = rntype;
3902 else if (lnbitsize < rnbitsize)
3904 rhs = convert (lntype, rhs);
3905 lr_mask = convert (lntype, lr_mask);
3906 type = lntype;
3910 if (! all_ones_mask_p (ll_mask, ll_bitsize + rl_bitsize))
3911 lhs = build (BIT_AND_EXPR, type, lhs, ll_mask);
3913 if (! all_ones_mask_p (lr_mask, lr_bitsize + rr_bitsize))
3914 rhs = build (BIT_AND_EXPR, type, rhs, lr_mask);
3916 return build (wanted_code, truth_type, lhs, rhs);
3919 return 0;
3922 /* Handle the case of comparisons with constants. If there is something in
3923 common between the masks, those bits of the constants must be the same.
3924 If not, the condition is always false. Test for this to avoid generating
3925 incorrect code below. */
3926 result = const_binop (BIT_AND_EXPR, ll_mask, rl_mask, 0);
3927 if (! integer_zerop (result)
3928 && simple_cst_equal (const_binop (BIT_AND_EXPR, result, l_const, 0),
3929 const_binop (BIT_AND_EXPR, result, r_const, 0)) != 1)
3931 if (wanted_code == NE_EXPR)
3933 warning ("`or' of unmatched not-equal tests is always 1");
3934 return convert (truth_type, integer_one_node);
3936 else
3938 warning ("`and' of mutually exclusive equal-tests is always 0");
3939 return convert (truth_type, integer_zero_node);
3943 /* Construct the expression we will return. First get the component
3944 reference we will make. Unless the mask is all ones the width of
3945 that field, perform the mask operation. Then compare with the
3946 merged constant. */
3947 result = make_bit_field_ref (ll_inner, lntype, lnbitsize, lnbitpos,
3948 ll_unsignedp || rl_unsignedp);
3950 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask, 0);
3951 if (! all_ones_mask_p (ll_mask, lnbitsize))
3952 result = build (BIT_AND_EXPR, lntype, result, ll_mask);
3954 return build (wanted_code, truth_type, result,
3955 const_binop (BIT_IOR_EXPR, l_const, r_const, 0));
3958 /* Optimize T, which is a comparison of a MIN_EXPR or MAX_EXPR with a
3959 constant. */
3961 static tree
3962 optimize_minmax_comparison (tree t)
3964 tree type = TREE_TYPE (t);
3965 tree arg0 = TREE_OPERAND (t, 0);
3966 enum tree_code op_code;
3967 tree comp_const = TREE_OPERAND (t, 1);
3968 tree minmax_const;
3969 int consts_equal, consts_lt;
3970 tree inner;
3972 STRIP_SIGN_NOPS (arg0);
3974 op_code = TREE_CODE (arg0);
3975 minmax_const = TREE_OPERAND (arg0, 1);
3976 consts_equal = tree_int_cst_equal (minmax_const, comp_const);
3977 consts_lt = tree_int_cst_lt (minmax_const, comp_const);
3978 inner = TREE_OPERAND (arg0, 0);
3980 /* If something does not permit us to optimize, return the original tree. */
3981 if ((op_code != MIN_EXPR && op_code != MAX_EXPR)
3982 || TREE_CODE (comp_const) != INTEGER_CST
3983 || TREE_CONSTANT_OVERFLOW (comp_const)
3984 || TREE_CODE (minmax_const) != INTEGER_CST
3985 || TREE_CONSTANT_OVERFLOW (minmax_const))
3986 return t;
3988 /* Now handle all the various comparison codes. We only handle EQ_EXPR
3989 and GT_EXPR, doing the rest with recursive calls using logical
3990 simplifications. */
3991 switch (TREE_CODE (t))
3993 case NE_EXPR: case LT_EXPR: case LE_EXPR:
3994 return
3995 invert_truthvalue (optimize_minmax_comparison (invert_truthvalue (t)));
3997 case GE_EXPR:
3998 return
3999 fold (build (TRUTH_ORIF_EXPR, type,
4000 optimize_minmax_comparison
4001 (build (EQ_EXPR, type, arg0, comp_const)),
4002 optimize_minmax_comparison
4003 (build (GT_EXPR, type, arg0, comp_const))));
4005 case EQ_EXPR:
4006 if (op_code == MAX_EXPR && consts_equal)
4007 /* MAX (X, 0) == 0 -> X <= 0 */
4008 return fold (build (LE_EXPR, type, inner, comp_const));
4010 else if (op_code == MAX_EXPR && consts_lt)
4011 /* MAX (X, 0) == 5 -> X == 5 */
4012 return fold (build (EQ_EXPR, type, inner, comp_const));
4014 else if (op_code == MAX_EXPR)
4015 /* MAX (X, 0) == -1 -> false */
4016 return omit_one_operand (type, integer_zero_node, inner);
4018 else if (consts_equal)
4019 /* MIN (X, 0) == 0 -> X >= 0 */
4020 return fold (build (GE_EXPR, type, inner, comp_const));
4022 else if (consts_lt)
4023 /* MIN (X, 0) == 5 -> false */
4024 return omit_one_operand (type, integer_zero_node, inner);
4026 else
4027 /* MIN (X, 0) == -1 -> X == -1 */
4028 return fold (build (EQ_EXPR, type, inner, comp_const));
4030 case GT_EXPR:
4031 if (op_code == MAX_EXPR && (consts_equal || consts_lt))
4032 /* MAX (X, 0) > 0 -> X > 0
4033 MAX (X, 0) > 5 -> X > 5 */
4034 return fold (build (GT_EXPR, type, inner, comp_const));
4036 else if (op_code == MAX_EXPR)
4037 /* MAX (X, 0) > -1 -> true */
4038 return omit_one_operand (type, integer_one_node, inner);
4040 else if (op_code == MIN_EXPR && (consts_equal || consts_lt))
4041 /* MIN (X, 0) > 0 -> false
4042 MIN (X, 0) > 5 -> false */
4043 return omit_one_operand (type, integer_zero_node, inner);
4045 else
4046 /* MIN (X, 0) > -1 -> X > -1 */
4047 return fold (build (GT_EXPR, type, inner, comp_const));
4049 default:
4050 return t;
4054 /* T is an integer expression that is being multiplied, divided, or taken a
4055 modulus (CODE says which and what kind of divide or modulus) by a
4056 constant C. See if we can eliminate that operation by folding it with
4057 other operations already in T. WIDE_TYPE, if non-null, is a type that
4058 should be used for the computation if wider than our type.
4060 For example, if we are dividing (X * 8) + (Y * 16) by 4, we can return
4061 (X * 2) + (Y * 4). We must, however, be assured that either the original
4062 expression would not overflow or that overflow is undefined for the type
4063 in the language in question.
4065 We also canonicalize (X + 7) * 4 into X * 4 + 28 in the hope that either
4066 the machine has a multiply-accumulate insn or that this is part of an
4067 addressing calculation.
4069 If we return a non-null expression, it is an equivalent form of the
4070 original computation, but need not be in the original type. */
4072 static tree
4073 extract_muldiv (tree t, tree c, enum tree_code code, tree wide_type)
4075 /* To avoid exponential search depth, refuse to allow recursion past
4076 three levels. Beyond that (1) it's highly unlikely that we'll find
4077 something interesting and (2) we've probably processed it before
4078 when we built the inner expression. */
4080 static int depth;
4081 tree ret;
4083 if (depth > 3)
4084 return NULL;
4086 depth++;
4087 ret = extract_muldiv_1 (t, c, code, wide_type);
4088 depth--;
4090 return ret;
4093 static tree
4094 extract_muldiv_1 (tree t, tree c, enum tree_code code, tree wide_type)
4096 tree type = TREE_TYPE (t);
4097 enum tree_code tcode = TREE_CODE (t);
4098 tree ctype = (wide_type != 0 && (GET_MODE_SIZE (TYPE_MODE (wide_type))
4099 > GET_MODE_SIZE (TYPE_MODE (type)))
4100 ? wide_type : type);
4101 tree t1, t2;
4102 int same_p = tcode == code;
4103 tree op0 = NULL_TREE, op1 = NULL_TREE;
4105 /* Don't deal with constants of zero here; they confuse the code below. */
4106 if (integer_zerop (c))
4107 return NULL_TREE;
4109 if (TREE_CODE_CLASS (tcode) == '1')
4110 op0 = TREE_OPERAND (t, 0);
4112 if (TREE_CODE_CLASS (tcode) == '2')
4113 op0 = TREE_OPERAND (t, 0), op1 = TREE_OPERAND (t, 1);
4115 /* Note that we need not handle conditional operations here since fold
4116 already handles those cases. So just do arithmetic here. */
4117 switch (tcode)
4119 case INTEGER_CST:
4120 /* For a constant, we can always simplify if we are a multiply
4121 or (for divide and modulus) if it is a multiple of our constant. */
4122 if (code == MULT_EXPR
4123 || integer_zerop (const_binop (TRUNC_MOD_EXPR, t, c, 0)))
4124 return const_binop (code, convert (ctype, t), convert (ctype, c), 0);
4125 break;
4127 case CONVERT_EXPR: case NON_LVALUE_EXPR: case NOP_EXPR:
4128 /* If op0 is an expression ... */
4129 if ((TREE_CODE_CLASS (TREE_CODE (op0)) == '<'
4130 || TREE_CODE_CLASS (TREE_CODE (op0)) == '1'
4131 || TREE_CODE_CLASS (TREE_CODE (op0)) == '2'
4132 || TREE_CODE_CLASS (TREE_CODE (op0)) == 'e')
4133 /* ... and is unsigned, and its type is smaller than ctype,
4134 then we cannot pass through as widening. */
4135 && ((TREE_UNSIGNED (TREE_TYPE (op0))
4136 && ! (TREE_CODE (TREE_TYPE (op0)) == INTEGER_TYPE
4137 && TYPE_IS_SIZETYPE (TREE_TYPE (op0)))
4138 && (GET_MODE_SIZE (TYPE_MODE (ctype))
4139 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))))
4140 /* ... or its type is larger than ctype,
4141 then we cannot pass through this truncation. */
4142 || (GET_MODE_SIZE (TYPE_MODE (ctype))
4143 < GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0))))
4144 /* ... or signedness changes for division or modulus,
4145 then we cannot pass through this conversion. */
4146 || (code != MULT_EXPR
4147 && (TREE_UNSIGNED (ctype)
4148 != TREE_UNSIGNED (TREE_TYPE (op0))))))
4149 break;
4151 /* Pass the constant down and see if we can make a simplification. If
4152 we can, replace this expression with the inner simplification for
4153 possible later conversion to our or some other type. */
4154 if ((t2 = convert (TREE_TYPE (op0), c)) != 0
4155 && TREE_CODE (t2) == INTEGER_CST
4156 && ! TREE_CONSTANT_OVERFLOW (t2)
4157 && (0 != (t1 = extract_muldiv (op0, t2, code,
4158 code == MULT_EXPR
4159 ? ctype : NULL_TREE))))
4160 return t1;
4161 break;
4163 case NEGATE_EXPR: case ABS_EXPR:
4164 if ((t1 = extract_muldiv (op0, c, code, wide_type)) != 0)
4165 return fold (build1 (tcode, ctype, convert (ctype, t1)));
4166 break;
4168 case MIN_EXPR: case MAX_EXPR:
4169 /* If widening the type changes the signedness, then we can't perform
4170 this optimization as that changes the result. */
4171 if (TREE_UNSIGNED (ctype) != TREE_UNSIGNED (type))
4172 break;
4174 /* MIN (a, b) / 5 -> MIN (a / 5, b / 5) */
4175 if ((t1 = extract_muldiv (op0, c, code, wide_type)) != 0
4176 && (t2 = extract_muldiv (op1, c, code, wide_type)) != 0)
4178 if (tree_int_cst_sgn (c) < 0)
4179 tcode = (tcode == MIN_EXPR ? MAX_EXPR : MIN_EXPR);
4181 return fold (build (tcode, ctype, convert (ctype, t1),
4182 convert (ctype, t2)));
4184 break;
4186 case WITH_RECORD_EXPR:
4187 if ((t1 = extract_muldiv (TREE_OPERAND (t, 0), c, code, wide_type)) != 0)
4188 return build (WITH_RECORD_EXPR, TREE_TYPE (t1), t1,
4189 TREE_OPERAND (t, 1));
4190 break;
4192 case LSHIFT_EXPR: case RSHIFT_EXPR:
4193 /* If the second operand is constant, this is a multiplication
4194 or floor division, by a power of two, so we can treat it that
4195 way unless the multiplier or divisor overflows. */
4196 if (TREE_CODE (op1) == INTEGER_CST
4197 /* const_binop may not detect overflow correctly,
4198 so check for it explicitly here. */
4199 && TYPE_PRECISION (TREE_TYPE (size_one_node)) > TREE_INT_CST_LOW (op1)
4200 && TREE_INT_CST_HIGH (op1) == 0
4201 && 0 != (t1 = convert (ctype,
4202 const_binop (LSHIFT_EXPR, size_one_node,
4203 op1, 0)))
4204 && ! TREE_OVERFLOW (t1))
4205 return extract_muldiv (build (tcode == LSHIFT_EXPR
4206 ? MULT_EXPR : FLOOR_DIV_EXPR,
4207 ctype, convert (ctype, op0), t1),
4208 c, code, wide_type);
4209 break;
4211 case PLUS_EXPR: case MINUS_EXPR:
4212 /* See if we can eliminate the operation on both sides. If we can, we
4213 can return a new PLUS or MINUS. If we can't, the only remaining
4214 cases where we can do anything are if the second operand is a
4215 constant. */
4216 t1 = extract_muldiv (op0, c, code, wide_type);
4217 t2 = extract_muldiv (op1, c, code, wide_type);
4218 if (t1 != 0 && t2 != 0
4219 && (code == MULT_EXPR
4220 /* If not multiplication, we can only do this if both operands
4221 are divisible by c. */
4222 || (multiple_of_p (ctype, op0, c)
4223 && multiple_of_p (ctype, op1, c))))
4224 return fold (build (tcode, ctype, convert (ctype, t1),
4225 convert (ctype, t2)));
4227 /* If this was a subtraction, negate OP1 and set it to be an addition.
4228 This simplifies the logic below. */
4229 if (tcode == MINUS_EXPR)
4230 tcode = PLUS_EXPR, op1 = negate_expr (op1);
4232 if (TREE_CODE (op1) != INTEGER_CST)
4233 break;
4235 /* If either OP1 or C are negative, this optimization is not safe for
4236 some of the division and remainder types while for others we need
4237 to change the code. */
4238 if (tree_int_cst_sgn (op1) < 0 || tree_int_cst_sgn (c) < 0)
4240 if (code == CEIL_DIV_EXPR)
4241 code = FLOOR_DIV_EXPR;
4242 else if (code == FLOOR_DIV_EXPR)
4243 code = CEIL_DIV_EXPR;
4244 else if (code != MULT_EXPR
4245 && code != CEIL_MOD_EXPR && code != FLOOR_MOD_EXPR)
4246 break;
4249 /* If it's a multiply or a division/modulus operation of a multiple
4250 of our constant, do the operation and verify it doesn't overflow. */
4251 if (code == MULT_EXPR
4252 || integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
4254 op1 = const_binop (code, convert (ctype, op1), convert (ctype, c), 0);
4255 if (op1 == 0 || TREE_OVERFLOW (op1))
4256 break;
4258 else
4259 break;
4261 /* If we have an unsigned type is not a sizetype, we cannot widen
4262 the operation since it will change the result if the original
4263 computation overflowed. */
4264 if (TREE_UNSIGNED (ctype)
4265 && ! (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype))
4266 && ctype != type)
4267 break;
4269 /* If we were able to eliminate our operation from the first side,
4270 apply our operation to the second side and reform the PLUS. */
4271 if (t1 != 0 && (TREE_CODE (t1) != code || code == MULT_EXPR))
4272 return fold (build (tcode, ctype, convert (ctype, t1), op1));
4274 /* The last case is if we are a multiply. In that case, we can
4275 apply the distributive law to commute the multiply and addition
4276 if the multiplication of the constants doesn't overflow. */
4277 if (code == MULT_EXPR)
4278 return fold (build (tcode, ctype, fold (build (code, ctype,
4279 convert (ctype, op0),
4280 convert (ctype, c))),
4281 op1));
4283 break;
4285 case MULT_EXPR:
4286 /* We have a special case here if we are doing something like
4287 (C * 8) % 4 since we know that's zero. */
4288 if ((code == TRUNC_MOD_EXPR || code == CEIL_MOD_EXPR
4289 || code == FLOOR_MOD_EXPR || code == ROUND_MOD_EXPR)
4290 && TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST
4291 && integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
4292 return omit_one_operand (type, integer_zero_node, op0);
4294 /* ... fall through ... */
4296 case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR:
4297 case ROUND_DIV_EXPR: case EXACT_DIV_EXPR:
4298 /* If we can extract our operation from the LHS, do so and return a
4299 new operation. Likewise for the RHS from a MULT_EXPR. Otherwise,
4300 do something only if the second operand is a constant. */
4301 if (same_p
4302 && (t1 = extract_muldiv (op0, c, code, wide_type)) != 0)
4303 return fold (build (tcode, ctype, convert (ctype, t1),
4304 convert (ctype, op1)));
4305 else if (tcode == MULT_EXPR && code == MULT_EXPR
4306 && (t1 = extract_muldiv (op1, c, code, wide_type)) != 0)
4307 return fold (build (tcode, ctype, convert (ctype, op0),
4308 convert (ctype, t1)));
4309 else if (TREE_CODE (op1) != INTEGER_CST)
4310 return 0;
4312 /* If these are the same operation types, we can associate them
4313 assuming no overflow. */
4314 if (tcode == code
4315 && 0 != (t1 = const_binop (MULT_EXPR, convert (ctype, op1),
4316 convert (ctype, c), 0))
4317 && ! TREE_OVERFLOW (t1))
4318 return fold (build (tcode, ctype, convert (ctype, op0), t1));
4320 /* If these operations "cancel" each other, we have the main
4321 optimizations of this pass, which occur when either constant is a
4322 multiple of the other, in which case we replace this with either an
4323 operation or CODE or TCODE.
4325 If we have an unsigned type that is not a sizetype, we cannot do
4326 this since it will change the result if the original computation
4327 overflowed. */
4328 if ((! TREE_UNSIGNED (ctype)
4329 || (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype)))
4330 && ! flag_wrapv
4331 && ((code == MULT_EXPR && tcode == EXACT_DIV_EXPR)
4332 || (tcode == MULT_EXPR
4333 && code != TRUNC_MOD_EXPR && code != CEIL_MOD_EXPR
4334 && code != FLOOR_MOD_EXPR && code != ROUND_MOD_EXPR)))
4336 if (integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
4337 return fold (build (tcode, ctype, convert (ctype, op0),
4338 convert (ctype,
4339 const_binop (TRUNC_DIV_EXPR,
4340 op1, c, 0))));
4341 else if (integer_zerop (const_binop (TRUNC_MOD_EXPR, c, op1, 0)))
4342 return fold (build (code, ctype, convert (ctype, op0),
4343 convert (ctype,
4344 const_binop (TRUNC_DIV_EXPR,
4345 c, op1, 0))));
4347 break;
4349 default:
4350 break;
4353 return 0;
4356 /* If T contains a COMPOUND_EXPR which was inserted merely to evaluate
4357 S, a SAVE_EXPR, return the expression actually being evaluated. Note
4358 that we may sometimes modify the tree. */
4360 static tree
4361 strip_compound_expr (tree t, tree s)
4363 enum tree_code code = TREE_CODE (t);
4365 /* See if this is the COMPOUND_EXPR we want to eliminate. */
4366 if (code == COMPOUND_EXPR && TREE_CODE (TREE_OPERAND (t, 0)) == CONVERT_EXPR
4367 && TREE_OPERAND (TREE_OPERAND (t, 0), 0) == s)
4368 return TREE_OPERAND (t, 1);
4370 /* See if this is a COND_EXPR or a simple arithmetic operator. We
4371 don't bother handling any other types. */
4372 else if (code == COND_EXPR)
4374 TREE_OPERAND (t, 0) = strip_compound_expr (TREE_OPERAND (t, 0), s);
4375 TREE_OPERAND (t, 1) = strip_compound_expr (TREE_OPERAND (t, 1), s);
4376 TREE_OPERAND (t, 2) = strip_compound_expr (TREE_OPERAND (t, 2), s);
4378 else if (TREE_CODE_CLASS (code) == '1')
4379 TREE_OPERAND (t, 0) = strip_compound_expr (TREE_OPERAND (t, 0), s);
4380 else if (TREE_CODE_CLASS (code) == '<'
4381 || TREE_CODE_CLASS (code) == '2')
4383 TREE_OPERAND (t, 0) = strip_compound_expr (TREE_OPERAND (t, 0), s);
4384 TREE_OPERAND (t, 1) = strip_compound_expr (TREE_OPERAND (t, 1), s);
4387 return t;
4390 /* Return a node which has the indicated constant VALUE (either 0 or
4391 1), and is of the indicated TYPE. */
4393 static tree
4394 constant_boolean_node (int value, tree type)
4396 if (type == integer_type_node)
4397 return value ? integer_one_node : integer_zero_node;
4398 else if (TREE_CODE (type) == BOOLEAN_TYPE)
4399 return (*lang_hooks.truthvalue_conversion) (value ? integer_one_node :
4400 integer_zero_node);
4401 else
4403 tree t = build_int_2 (value, 0);
4405 TREE_TYPE (t) = type;
4406 return t;
4410 /* Utility function for the following routine, to see how complex a nesting of
4411 COND_EXPRs can be. EXPR is the expression and LIMIT is a count beyond which
4412 we don't care (to avoid spending too much time on complex expressions.). */
4414 static int
4415 count_cond (tree expr, int lim)
4417 int ctrue, cfalse;
4419 if (TREE_CODE (expr) != COND_EXPR)
4420 return 0;
4421 else if (lim <= 0)
4422 return 0;
4424 ctrue = count_cond (TREE_OPERAND (expr, 1), lim - 1);
4425 cfalse = count_cond (TREE_OPERAND (expr, 2), lim - 1 - ctrue);
4426 return MIN (lim, 1 + ctrue + cfalse);
4429 /* Transform `a + (b ? x : y)' into `b ? (a + x) : (a + y)'.
4430 Transform, `a + (x < y)' into `(x < y) ? (a + 1) : (a + 0)'. Here
4431 CODE corresponds to the `+', COND to the `(b ? x : y)' or `(x < y)'
4432 expression, and ARG to `a'. If COND_FIRST_P is nonzero, then the
4433 COND is the first argument to CODE; otherwise (as in the example
4434 given here), it is the second argument. TYPE is the type of the
4435 original expression. */
4437 static tree
4438 fold_binary_op_with_conditional_arg (enum tree_code code, tree type,
4439 tree cond, tree arg, int cond_first_p)
4441 tree test, true_value, false_value;
4442 tree lhs = NULL_TREE;
4443 tree rhs = NULL_TREE;
4444 /* In the end, we'll produce a COND_EXPR. Both arms of the
4445 conditional expression will be binary operations. The left-hand
4446 side of the expression to be executed if the condition is true
4447 will be pointed to by TRUE_LHS. Similarly, the right-hand side
4448 of the expression to be executed if the condition is true will be
4449 pointed to by TRUE_RHS. FALSE_LHS and FALSE_RHS are analogous --
4450 but apply to the expression to be executed if the conditional is
4451 false. */
4452 tree *true_lhs;
4453 tree *true_rhs;
4454 tree *false_lhs;
4455 tree *false_rhs;
4456 /* These are the codes to use for the left-hand side and right-hand
4457 side of the COND_EXPR. Normally, they are the same as CODE. */
4458 enum tree_code lhs_code = code;
4459 enum tree_code rhs_code = code;
4460 /* And these are the types of the expressions. */
4461 tree lhs_type = type;
4462 tree rhs_type = type;
4463 int save = 0;
4465 if (cond_first_p)
4467 true_rhs = false_rhs = &arg;
4468 true_lhs = &true_value;
4469 false_lhs = &false_value;
4471 else
4473 true_lhs = false_lhs = &arg;
4474 true_rhs = &true_value;
4475 false_rhs = &false_value;
4478 if (TREE_CODE (cond) == COND_EXPR)
4480 test = TREE_OPERAND (cond, 0);
4481 true_value = TREE_OPERAND (cond, 1);
4482 false_value = TREE_OPERAND (cond, 2);
4483 /* If this operand throws an expression, then it does not make
4484 sense to try to perform a logical or arithmetic operation
4485 involving it. Instead of building `a + throw 3' for example,
4486 we simply build `a, throw 3'. */
4487 if (VOID_TYPE_P (TREE_TYPE (true_value)))
4489 if (! cond_first_p)
4491 lhs_code = COMPOUND_EXPR;
4492 lhs_type = void_type_node;
4494 else
4495 lhs = true_value;
4497 if (VOID_TYPE_P (TREE_TYPE (false_value)))
4499 if (! cond_first_p)
4501 rhs_code = COMPOUND_EXPR;
4502 rhs_type = void_type_node;
4504 else
4505 rhs = false_value;
4508 else
4510 tree testtype = TREE_TYPE (cond);
4511 test = cond;
4512 true_value = convert (testtype, integer_one_node);
4513 false_value = convert (testtype, integer_zero_node);
4516 /* If ARG is complex we want to make sure we only evaluate it once. Though
4517 this is only required if it is volatile, it might be more efficient even
4518 if it is not. However, if we succeed in folding one part to a constant,
4519 we do not need to make this SAVE_EXPR. Since we do this optimization
4520 primarily to see if we do end up with constant and this SAVE_EXPR
4521 interferes with later optimizations, suppressing it when we can is
4522 important.
4524 If we are not in a function, we can't make a SAVE_EXPR, so don't try to
4525 do so. Don't try to see if the result is a constant if an arm is a
4526 COND_EXPR since we get exponential behavior in that case. */
4528 if (saved_expr_p (arg))
4529 save = 1;
4530 else if (lhs == 0 && rhs == 0
4531 && !TREE_CONSTANT (arg)
4532 && (*lang_hooks.decls.global_bindings_p) () == 0
4533 && ((TREE_CODE (arg) != VAR_DECL && TREE_CODE (arg) != PARM_DECL)
4534 || TREE_SIDE_EFFECTS (arg)))
4536 if (TREE_CODE (true_value) != COND_EXPR)
4537 lhs = fold (build (lhs_code, lhs_type, *true_lhs, *true_rhs));
4539 if (TREE_CODE (false_value) != COND_EXPR)
4540 rhs = fold (build (rhs_code, rhs_type, *false_lhs, *false_rhs));
4542 if ((lhs == 0 || ! TREE_CONSTANT (lhs))
4543 && (rhs == 0 || !TREE_CONSTANT (rhs)))
4545 arg = save_expr (arg);
4546 lhs = rhs = 0;
4547 save = 1;
4551 if (lhs == 0)
4552 lhs = fold (build (lhs_code, lhs_type, *true_lhs, *true_rhs));
4553 if (rhs == 0)
4554 rhs = fold (build (rhs_code, rhs_type, *false_lhs, *false_rhs));
4556 test = fold (build (COND_EXPR, type, test, lhs, rhs));
4558 if (save)
4559 return build (COMPOUND_EXPR, type,
4560 convert (void_type_node, arg),
4561 strip_compound_expr (test, arg));
4562 else
4563 return convert (type, test);
4567 /* Subroutine of fold() that checks for the addition of +/- 0.0.
4569 If !NEGATE, return true if ADDEND is +/-0.0 and, for all X of type
4570 TYPE, X + ADDEND is the same as X. If NEGATE, return true if X -
4571 ADDEND is the same as X.
4573 X + 0 and X - 0 both give X when X is NaN, infinite, or nonzero
4574 and finite. The problematic cases are when X is zero, and its mode
4575 has signed zeros. In the case of rounding towards -infinity,
4576 X - 0 is not the same as X because 0 - 0 is -0. In other rounding
4577 modes, X + 0 is not the same as X because -0 + 0 is 0. */
4579 static bool
4580 fold_real_zero_addition_p (tree type, tree addend, int negate)
4582 if (!real_zerop (addend))
4583 return false;
4585 /* Don't allow the fold with -fsignaling-nans. */
4586 if (HONOR_SNANS (TYPE_MODE (type)))
4587 return false;
4589 /* Allow the fold if zeros aren't signed, or their sign isn't important. */
4590 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
4591 return true;
4593 /* Treat x + -0 as x - 0 and x - -0 as x + 0. */
4594 if (TREE_CODE (addend) == REAL_CST
4595 && REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (addend)))
4596 negate = !negate;
4598 /* The mode has signed zeros, and we have to honor their sign.
4599 In this situation, there is only one case we can return true for.
4600 X - 0 is the same as X unless rounding towards -infinity is
4601 supported. */
4602 return negate && !HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type));
4605 /* Subroutine of fold() that checks comparisons of built-in math
4606 functions against real constants.
4608 FCODE is the DECL_FUNCTION_CODE of the built-in, CODE is the comparison
4609 operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR, GE_EXPR or LE_EXPR. TYPE
4610 is the type of the result and ARG0 and ARG1 are the operands of the
4611 comparison. ARG1 must be a TREE_REAL_CST.
4613 The function returns the constant folded tree if a simplification
4614 can be made, and NULL_TREE otherwise. */
4616 static tree
4617 fold_mathfn_compare (enum built_in_function fcode, enum tree_code code,
4618 tree type, tree arg0, tree arg1)
4620 REAL_VALUE_TYPE c;
4622 if (fcode == BUILT_IN_SQRT
4623 || fcode == BUILT_IN_SQRTF
4624 || fcode == BUILT_IN_SQRTL)
4626 tree arg = TREE_VALUE (TREE_OPERAND (arg0, 1));
4627 enum machine_mode mode = TYPE_MODE (TREE_TYPE (arg0));
4629 c = TREE_REAL_CST (arg1);
4630 if (REAL_VALUE_NEGATIVE (c))
4632 /* sqrt(x) < y is always false, if y is negative. */
4633 if (code == EQ_EXPR || code == LT_EXPR || code == LE_EXPR)
4634 return omit_one_operand (type,
4635 convert (type, integer_zero_node),
4636 arg);
4638 /* sqrt(x) > y is always true, if y is negative and we
4639 don't care about NaNs, i.e. negative values of x. */
4640 if (code == NE_EXPR || !HONOR_NANS (mode))
4641 return omit_one_operand (type,
4642 convert (type, integer_one_node),
4643 arg);
4645 /* sqrt(x) > y is the same as x >= 0, if y is negative. */
4646 return fold (build (GE_EXPR, type, arg,
4647 build_real (TREE_TYPE (arg), dconst0)));
4649 else if (code == GT_EXPR || code == GE_EXPR)
4651 REAL_VALUE_TYPE c2;
4653 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
4654 real_convert (&c2, mode, &c2);
4656 if (REAL_VALUE_ISINF (c2))
4658 /* sqrt(x) > y is x == +Inf, when y is very large. */
4659 if (HONOR_INFINITIES (mode))
4660 return fold (build (EQ_EXPR, type, arg,
4661 build_real (TREE_TYPE (arg), c2)));
4663 /* sqrt(x) > y is always false, when y is very large
4664 and we don't care about infinities. */
4665 return omit_one_operand (type,
4666 convert (type, integer_zero_node),
4667 arg);
4670 /* sqrt(x) > c is the same as x > c*c. */
4671 return fold (build (code, type, arg,
4672 build_real (TREE_TYPE (arg), c2)));
4674 else if (code == LT_EXPR || code == LE_EXPR)
4676 REAL_VALUE_TYPE c2;
4678 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
4679 real_convert (&c2, mode, &c2);
4681 if (REAL_VALUE_ISINF (c2))
4683 /* sqrt(x) < y is always true, when y is a very large
4684 value and we don't care about NaNs or Infinities. */
4685 if (! HONOR_NANS (mode) && ! HONOR_INFINITIES (mode))
4686 return omit_one_operand (type,
4687 convert (type, integer_one_node),
4688 arg);
4690 /* sqrt(x) < y is x != +Inf when y is very large and we
4691 don't care about NaNs. */
4692 if (! HONOR_NANS (mode))
4693 return fold (build (NE_EXPR, type, arg,
4694 build_real (TREE_TYPE (arg), c2)));
4696 /* sqrt(x) < y is x >= 0 when y is very large and we
4697 don't care about Infinities. */
4698 if (! HONOR_INFINITIES (mode))
4699 return fold (build (GE_EXPR, type, arg,
4700 build_real (TREE_TYPE (arg), dconst0)));
4702 /* sqrt(x) < y is x >= 0 && x != +Inf, when y is large. */
4703 if ((*lang_hooks.decls.global_bindings_p) () != 0
4704 || CONTAINS_PLACEHOLDER_P (arg))
4705 return NULL_TREE;
4707 arg = save_expr (arg);
4708 return fold (build (TRUTH_ANDIF_EXPR, type,
4709 fold (build (GE_EXPR, type, arg,
4710 build_real (TREE_TYPE (arg),
4711 dconst0))),
4712 fold (build (NE_EXPR, type, arg,
4713 build_real (TREE_TYPE (arg),
4714 c2)))));
4717 /* sqrt(x) < c is the same as x < c*c, if we ignore NaNs. */
4718 if (! HONOR_NANS (mode))
4719 return fold (build (code, type, arg,
4720 build_real (TREE_TYPE (arg), c2)));
4722 /* sqrt(x) < c is the same as x >= 0 && x < c*c. */
4723 if ((*lang_hooks.decls.global_bindings_p) () == 0
4724 && ! CONTAINS_PLACEHOLDER_P (arg))
4726 arg = save_expr (arg);
4727 return fold (build (TRUTH_ANDIF_EXPR, type,
4728 fold (build (GE_EXPR, type, arg,
4729 build_real (TREE_TYPE (arg),
4730 dconst0))),
4731 fold (build (code, type, arg,
4732 build_real (TREE_TYPE (arg),
4733 c2)))));
4738 return NULL_TREE;
4741 /* Subroutine of fold() that optimizes comparisons against Infinities,
4742 either +Inf or -Inf.
4744 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
4745 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
4746 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
4748 The function returns the constant folded tree if a simplification
4749 can be made, and NULL_TREE otherwise. */
4751 static tree
4752 fold_inf_compare (enum tree_code code, tree type, tree arg0, tree arg1)
4754 enum machine_mode mode;
4755 REAL_VALUE_TYPE max;
4756 tree temp;
4757 bool neg;
4759 mode = TYPE_MODE (TREE_TYPE (arg0));
4761 /* For negative infinity swap the sense of the comparison. */
4762 neg = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1));
4763 if (neg)
4764 code = swap_tree_comparison (code);
4766 switch (code)
4768 case GT_EXPR:
4769 /* x > +Inf is always false, if with ignore sNANs. */
4770 if (HONOR_SNANS (mode))
4771 return NULL_TREE;
4772 return omit_one_operand (type,
4773 convert (type, integer_zero_node),
4774 arg0);
4776 case LE_EXPR:
4777 /* x <= +Inf is always true, if we don't case about NaNs. */
4778 if (! HONOR_NANS (mode))
4779 return omit_one_operand (type,
4780 convert (type, integer_one_node),
4781 arg0);
4783 /* x <= +Inf is the same as x == x, i.e. isfinite(x). */
4784 if ((*lang_hooks.decls.global_bindings_p) () == 0
4785 && ! CONTAINS_PLACEHOLDER_P (arg0))
4787 arg0 = save_expr (arg0);
4788 return fold (build (EQ_EXPR, type, arg0, arg0));
4790 break;
4792 case EQ_EXPR:
4793 case GE_EXPR:
4794 /* x == +Inf and x >= +Inf are always equal to x > DBL_MAX. */
4795 real_maxval (&max, neg, mode);
4796 return fold (build (neg ? LT_EXPR : GT_EXPR, type,
4797 arg0, build_real (TREE_TYPE (arg0), max)));
4799 case LT_EXPR:
4800 /* x < +Inf is always equal to x <= DBL_MAX. */
4801 real_maxval (&max, neg, mode);
4802 return fold (build (neg ? GE_EXPR : LE_EXPR, type,
4803 arg0, build_real (TREE_TYPE (arg0), max)));
4805 case NE_EXPR:
4806 /* x != +Inf is always equal to !(x > DBL_MAX). */
4807 real_maxval (&max, neg, mode);
4808 if (! HONOR_NANS (mode))
4809 return fold (build (neg ? GE_EXPR : LE_EXPR, type,
4810 arg0, build_real (TREE_TYPE (arg0), max)));
4811 temp = fold (build (neg ? LT_EXPR : GT_EXPR, type,
4812 arg0, build_real (TREE_TYPE (arg0), max)));
4813 return fold (build1 (TRUTH_NOT_EXPR, type, temp));
4815 default:
4816 break;
4819 return NULL_TREE;
4822 /* If CODE with arguments ARG0 and ARG1 represents a single bit
4823 equality/inequality test, then return a simplified form of
4824 the test using shifts and logical operations. Otherwise return
4825 NULL. TYPE is the desired result type. */
4827 tree
4828 fold_single_bit_test (enum tree_code code, tree arg0, tree arg1,
4829 tree result_type)
4831 /* If this is a TRUTH_NOT_EXPR, it may have a single bit test inside
4832 operand 0. */
4833 if (code == TRUTH_NOT_EXPR)
4835 code = TREE_CODE (arg0);
4836 if (code != NE_EXPR && code != EQ_EXPR)
4837 return NULL_TREE;
4839 /* Extract the arguments of the EQ/NE. */
4840 arg1 = TREE_OPERAND (arg0, 1);
4841 arg0 = TREE_OPERAND (arg0, 0);
4843 /* This requires us to invert the code. */
4844 code = (code == EQ_EXPR ? NE_EXPR : EQ_EXPR);
4847 /* If this is testing a single bit, we can optimize the test. */
4848 if ((code == NE_EXPR || code == EQ_EXPR)
4849 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
4850 && integer_pow2p (TREE_OPERAND (arg0, 1)))
4852 tree inner = TREE_OPERAND (arg0, 0);
4853 tree type = TREE_TYPE (arg0);
4854 int bitnum = tree_log2 (TREE_OPERAND (arg0, 1));
4855 enum machine_mode operand_mode = TYPE_MODE (type);
4856 int ops_unsigned;
4857 tree signed_type, unsigned_type;
4858 tree arg00;
4860 /* If we have (A & C) != 0 where C is the sign bit of A, convert
4861 this into A < 0. Similarly for (A & C) == 0 into A >= 0. */
4862 arg00 = sign_bit_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1));
4863 if (arg00 != NULL_TREE)
4865 tree stype = (*lang_hooks.types.signed_type) (TREE_TYPE (arg00));
4866 return fold (build (code == EQ_EXPR ? GE_EXPR : LT_EXPR, result_type,
4867 convert (stype, arg00),
4868 convert (stype, integer_zero_node)));
4871 /* At this point, we know that arg0 is not testing the sign bit. */
4872 if (TYPE_PRECISION (type) - 1 == bitnum)
4873 abort ();
4875 /* Otherwise we have (A & C) != 0 where C is a single bit,
4876 convert that into ((A >> C2) & 1). Where C2 = log2(C).
4877 Similarly for (A & C) == 0. */
4879 /* If INNER is a right shift of a constant and it plus BITNUM does
4880 not overflow, adjust BITNUM and INNER. */
4881 if (TREE_CODE (inner) == RSHIFT_EXPR
4882 && TREE_CODE (TREE_OPERAND (inner, 1)) == INTEGER_CST
4883 && TREE_INT_CST_HIGH (TREE_OPERAND (inner, 1)) == 0
4884 && bitnum < TYPE_PRECISION (type)
4885 && 0 > compare_tree_int (TREE_OPERAND (inner, 1),
4886 bitnum - TYPE_PRECISION (type)))
4888 bitnum += TREE_INT_CST_LOW (TREE_OPERAND (inner, 1));
4889 inner = TREE_OPERAND (inner, 0);
4892 /* If we are going to be able to omit the AND below, we must do our
4893 operations as unsigned. If we must use the AND, we have a choice.
4894 Normally unsigned is faster, but for some machines signed is. */
4895 #ifdef LOAD_EXTEND_OP
4896 ops_unsigned = (LOAD_EXTEND_OP (operand_mode) == SIGN_EXTEND ? 0 : 1);
4897 #else
4898 ops_unsigned = 1;
4899 #endif
4901 signed_type = (*lang_hooks.types.type_for_mode) (operand_mode, 0);
4902 unsigned_type = (*lang_hooks.types.type_for_mode) (operand_mode, 1);
4904 if (bitnum != 0)
4905 inner = build (RSHIFT_EXPR, ops_unsigned ? unsigned_type : signed_type,
4906 inner, size_int (bitnum));
4908 if (code == EQ_EXPR)
4909 inner = build (BIT_XOR_EXPR, ops_unsigned ? unsigned_type : signed_type,
4910 inner, integer_one_node);
4912 /* Put the AND last so it can combine with more things. */
4913 inner = build (BIT_AND_EXPR, ops_unsigned ? unsigned_type : signed_type,
4914 inner, integer_one_node);
4916 /* Make sure to return the proper type. */
4917 if (TREE_TYPE (inner) != result_type)
4918 inner = convert (result_type, inner);
4920 return inner;
4922 return NULL_TREE;
4925 /* Perform constant folding and related simplification of EXPR.
4926 The related simplifications include x*1 => x, x*0 => 0, etc.,
4927 and application of the associative law.
4928 NOP_EXPR conversions may be removed freely (as long as we
4929 are careful not to change the C type of the overall expression)
4930 We cannot simplify through a CONVERT_EXPR, FIX_EXPR or FLOAT_EXPR,
4931 but we can constant-fold them if they have constant operands. */
4933 tree
4934 fold (tree expr)
4936 tree t = expr;
4937 tree t1 = NULL_TREE;
4938 tree tem;
4939 tree type = TREE_TYPE (expr);
4940 tree arg0 = NULL_TREE, arg1 = NULL_TREE;
4941 enum tree_code code = TREE_CODE (t);
4942 int kind = TREE_CODE_CLASS (code);
4943 int invert;
4944 /* WINS will be nonzero when the switch is done
4945 if all operands are constant. */
4946 int wins = 1;
4948 /* Don't try to process an RTL_EXPR since its operands aren't trees.
4949 Likewise for a SAVE_EXPR that's already been evaluated. */
4950 if (code == RTL_EXPR || (code == SAVE_EXPR && SAVE_EXPR_RTL (t) != 0))
4951 return t;
4953 /* Return right away if a constant. */
4954 if (kind == 'c')
4955 return t;
4957 #ifdef MAX_INTEGER_COMPUTATION_MODE
4958 check_max_integer_computation_mode (expr);
4959 #endif
4961 if (code == NOP_EXPR || code == FLOAT_EXPR || code == CONVERT_EXPR)
4963 tree subop;
4965 /* Special case for conversion ops that can have fixed point args. */
4966 arg0 = TREE_OPERAND (t, 0);
4968 /* Don't use STRIP_NOPS, because signedness of argument type matters. */
4969 if (arg0 != 0)
4970 STRIP_SIGN_NOPS (arg0);
4972 if (arg0 != 0 && TREE_CODE (arg0) == COMPLEX_CST)
4973 subop = TREE_REALPART (arg0);
4974 else
4975 subop = arg0;
4977 if (subop != 0 && TREE_CODE (subop) != INTEGER_CST
4978 && TREE_CODE (subop) != REAL_CST
4980 /* Note that TREE_CONSTANT isn't enough:
4981 static var addresses are constant but we can't
4982 do arithmetic on them. */
4983 wins = 0;
4985 else if (IS_EXPR_CODE_CLASS (kind) || kind == 'r')
4987 int len = first_rtl_op (code);
4988 int i;
4989 for (i = 0; i < len; i++)
4991 tree op = TREE_OPERAND (t, i);
4992 tree subop;
4994 if (op == 0)
4995 continue; /* Valid for CALL_EXPR, at least. */
4997 if (kind == '<' || code == RSHIFT_EXPR)
4999 /* Signedness matters here. Perhaps we can refine this
5000 later. */
5001 STRIP_SIGN_NOPS (op);
5003 else
5004 /* Strip any conversions that don't change the mode. */
5005 STRIP_NOPS (op);
5007 if (TREE_CODE (op) == COMPLEX_CST)
5008 subop = TREE_REALPART (op);
5009 else
5010 subop = op;
5012 if (TREE_CODE (subop) != INTEGER_CST
5013 && TREE_CODE (subop) != REAL_CST)
5014 /* Note that TREE_CONSTANT isn't enough:
5015 static var addresses are constant but we can't
5016 do arithmetic on them. */
5017 wins = 0;
5019 if (i == 0)
5020 arg0 = op;
5021 else if (i == 1)
5022 arg1 = op;
5026 /* If this is a commutative operation, and ARG0 is a constant, move it
5027 to ARG1 to reduce the number of tests below. */
5028 if ((code == PLUS_EXPR || code == MULT_EXPR || code == MIN_EXPR
5029 || code == MAX_EXPR || code == BIT_IOR_EXPR || code == BIT_XOR_EXPR
5030 || code == BIT_AND_EXPR)
5031 && (TREE_CODE (arg0) == INTEGER_CST || TREE_CODE (arg0) == REAL_CST))
5033 tem = arg0; arg0 = arg1; arg1 = tem;
5035 tem = TREE_OPERAND (t, 0); TREE_OPERAND (t, 0) = TREE_OPERAND (t, 1);
5036 TREE_OPERAND (t, 1) = tem;
5039 /* Now WINS is set as described above,
5040 ARG0 is the first operand of EXPR,
5041 and ARG1 is the second operand (if it has more than one operand).
5043 First check for cases where an arithmetic operation is applied to a
5044 compound, conditional, or comparison operation. Push the arithmetic
5045 operation inside the compound or conditional to see if any folding
5046 can then be done. Convert comparison to conditional for this purpose.
5047 The also optimizes non-constant cases that used to be done in
5048 expand_expr.
5050 Before we do that, see if this is a BIT_AND_EXPR or a BIT_IOR_EXPR,
5051 one of the operands is a comparison and the other is a comparison, a
5052 BIT_AND_EXPR with the constant 1, or a truth value. In that case, the
5053 code below would make the expression more complex. Change it to a
5054 TRUTH_{AND,OR}_EXPR. Likewise, convert a similar NE_EXPR to
5055 TRUTH_XOR_EXPR and an EQ_EXPR to the inversion of a TRUTH_XOR_EXPR. */
5057 if ((code == BIT_AND_EXPR || code == BIT_IOR_EXPR
5058 || code == EQ_EXPR || code == NE_EXPR)
5059 && ((truth_value_p (TREE_CODE (arg0))
5060 && (truth_value_p (TREE_CODE (arg1))
5061 || (TREE_CODE (arg1) == BIT_AND_EXPR
5062 && integer_onep (TREE_OPERAND (arg1, 1)))))
5063 || (truth_value_p (TREE_CODE (arg1))
5064 && (truth_value_p (TREE_CODE (arg0))
5065 || (TREE_CODE (arg0) == BIT_AND_EXPR
5066 && integer_onep (TREE_OPERAND (arg0, 1)))))))
5068 t = fold (build (code == BIT_AND_EXPR ? TRUTH_AND_EXPR
5069 : code == BIT_IOR_EXPR ? TRUTH_OR_EXPR
5070 : TRUTH_XOR_EXPR,
5071 type, arg0, arg1));
5073 if (code == EQ_EXPR)
5074 t = invert_truthvalue (t);
5076 return t;
5079 if (TREE_CODE_CLASS (code) == '1')
5081 if (TREE_CODE (arg0) == COMPOUND_EXPR)
5082 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
5083 fold (build1 (code, type, TREE_OPERAND (arg0, 1))));
5084 else if (TREE_CODE (arg0) == COND_EXPR)
5086 tree arg01 = TREE_OPERAND (arg0, 1);
5087 tree arg02 = TREE_OPERAND (arg0, 2);
5088 if (! VOID_TYPE_P (TREE_TYPE (arg01)))
5089 arg01 = fold (build1 (code, type, arg01));
5090 if (! VOID_TYPE_P (TREE_TYPE (arg02)))
5091 arg02 = fold (build1 (code, type, arg02));
5092 t = fold (build (COND_EXPR, type, TREE_OPERAND (arg0, 0),
5093 arg01, arg02));
5095 /* If this was a conversion, and all we did was to move into
5096 inside the COND_EXPR, bring it back out. But leave it if
5097 it is a conversion from integer to integer and the
5098 result precision is no wider than a word since such a
5099 conversion is cheap and may be optimized away by combine,
5100 while it couldn't if it were outside the COND_EXPR. Then return
5101 so we don't get into an infinite recursion loop taking the
5102 conversion out and then back in. */
5104 if ((code == NOP_EXPR || code == CONVERT_EXPR
5105 || code == NON_LVALUE_EXPR)
5106 && TREE_CODE (t) == COND_EXPR
5107 && TREE_CODE (TREE_OPERAND (t, 1)) == code
5108 && TREE_CODE (TREE_OPERAND (t, 2)) == code
5109 && ! VOID_TYPE_P (TREE_OPERAND (t, 1))
5110 && ! VOID_TYPE_P (TREE_OPERAND (t, 2))
5111 && (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0))
5112 == TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 2), 0)))
5113 && ! (INTEGRAL_TYPE_P (TREE_TYPE (t))
5114 && (INTEGRAL_TYPE_P
5115 (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0))))
5116 && TYPE_PRECISION (TREE_TYPE (t)) <= BITS_PER_WORD))
5117 t = build1 (code, type,
5118 build (COND_EXPR,
5119 TREE_TYPE (TREE_OPERAND
5120 (TREE_OPERAND (t, 1), 0)),
5121 TREE_OPERAND (t, 0),
5122 TREE_OPERAND (TREE_OPERAND (t, 1), 0),
5123 TREE_OPERAND (TREE_OPERAND (t, 2), 0)));
5124 return t;
5126 else if (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<')
5127 return fold (build (COND_EXPR, type, arg0,
5128 fold (build1 (code, type, integer_one_node)),
5129 fold (build1 (code, type, integer_zero_node))));
5131 else if (TREE_CODE_CLASS (code) == '<'
5132 && TREE_CODE (arg0) == COMPOUND_EXPR)
5133 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
5134 fold (build (code, type, TREE_OPERAND (arg0, 1), arg1)));
5135 else if (TREE_CODE_CLASS (code) == '<'
5136 && TREE_CODE (arg1) == COMPOUND_EXPR)
5137 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
5138 fold (build (code, type, arg0, TREE_OPERAND (arg1, 1))));
5139 else if (TREE_CODE_CLASS (code) == '2'
5140 || TREE_CODE_CLASS (code) == '<')
5142 if (TREE_CODE (arg1) == COMPOUND_EXPR
5143 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg1, 0))
5144 && ! TREE_SIDE_EFFECTS (arg0))
5145 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
5146 fold (build (code, type,
5147 arg0, TREE_OPERAND (arg1, 1))));
5148 else if ((TREE_CODE (arg1) == COND_EXPR
5149 || (TREE_CODE_CLASS (TREE_CODE (arg1)) == '<'
5150 && TREE_CODE_CLASS (code) != '<'))
5151 && (TREE_CODE (arg0) != COND_EXPR
5152 || count_cond (arg0, 25) + count_cond (arg1, 25) <= 25)
5153 && (! TREE_SIDE_EFFECTS (arg0)
5154 || ((*lang_hooks.decls.global_bindings_p) () == 0
5155 && ! CONTAINS_PLACEHOLDER_P (arg0))))
5156 return
5157 fold_binary_op_with_conditional_arg (code, type, arg1, arg0,
5158 /*cond_first_p=*/0);
5159 else if (TREE_CODE (arg0) == COMPOUND_EXPR)
5160 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
5161 fold (build (code, type, TREE_OPERAND (arg0, 1), arg1)));
5162 else if ((TREE_CODE (arg0) == COND_EXPR
5163 || (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
5164 && TREE_CODE_CLASS (code) != '<'))
5165 && (TREE_CODE (arg1) != COND_EXPR
5166 || count_cond (arg0, 25) + count_cond (arg1, 25) <= 25)
5167 && (! TREE_SIDE_EFFECTS (arg1)
5168 || ((*lang_hooks.decls.global_bindings_p) () == 0
5169 && ! CONTAINS_PLACEHOLDER_P (arg1))))
5170 return
5171 fold_binary_op_with_conditional_arg (code, type, arg0, arg1,
5172 /*cond_first_p=*/1);
5175 switch (code)
5177 case INTEGER_CST:
5178 case REAL_CST:
5179 case VECTOR_CST:
5180 case STRING_CST:
5181 case COMPLEX_CST:
5182 case CONSTRUCTOR:
5183 return t;
5185 case CONST_DECL:
5186 return fold (DECL_INITIAL (t));
5188 case NOP_EXPR:
5189 case FLOAT_EXPR:
5190 case CONVERT_EXPR:
5191 case FIX_TRUNC_EXPR:
5192 /* Other kinds of FIX are not handled properly by fold_convert. */
5194 if (TREE_TYPE (TREE_OPERAND (t, 0)) == TREE_TYPE (t))
5195 return TREE_OPERAND (t, 0);
5197 /* Handle cases of two conversions in a row. */
5198 if (TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
5199 || TREE_CODE (TREE_OPERAND (t, 0)) == CONVERT_EXPR)
5201 tree inside_type = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5202 tree inter_type = TREE_TYPE (TREE_OPERAND (t, 0));
5203 tree final_type = TREE_TYPE (t);
5204 int inside_int = INTEGRAL_TYPE_P (inside_type);
5205 int inside_ptr = POINTER_TYPE_P (inside_type);
5206 int inside_float = FLOAT_TYPE_P (inside_type);
5207 unsigned int inside_prec = TYPE_PRECISION (inside_type);
5208 int inside_unsignedp = TREE_UNSIGNED (inside_type);
5209 int inter_int = INTEGRAL_TYPE_P (inter_type);
5210 int inter_ptr = POINTER_TYPE_P (inter_type);
5211 int inter_float = FLOAT_TYPE_P (inter_type);
5212 unsigned int inter_prec = TYPE_PRECISION (inter_type);
5213 int inter_unsignedp = TREE_UNSIGNED (inter_type);
5214 int final_int = INTEGRAL_TYPE_P (final_type);
5215 int final_ptr = POINTER_TYPE_P (final_type);
5216 int final_float = FLOAT_TYPE_P (final_type);
5217 unsigned int final_prec = TYPE_PRECISION (final_type);
5218 int final_unsignedp = TREE_UNSIGNED (final_type);
5220 /* In addition to the cases of two conversions in a row
5221 handled below, if we are converting something to its own
5222 type via an object of identical or wider precision, neither
5223 conversion is needed. */
5224 if (TYPE_MAIN_VARIANT (inside_type) == TYPE_MAIN_VARIANT (final_type)
5225 && ((inter_int && final_int) || (inter_float && final_float))
5226 && inter_prec >= final_prec)
5227 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5229 /* Likewise, if the intermediate and final types are either both
5230 float or both integer, we don't need the middle conversion if
5231 it is wider than the final type and doesn't change the signedness
5232 (for integers). Avoid this if the final type is a pointer
5233 since then we sometimes need the inner conversion. Likewise if
5234 the outer has a precision not equal to the size of its mode. */
5235 if ((((inter_int || inter_ptr) && (inside_int || inside_ptr))
5236 || (inter_float && inside_float))
5237 && inter_prec >= inside_prec
5238 && (inter_float || inter_unsignedp == inside_unsignedp)
5239 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (final_type))
5240 && TYPE_MODE (final_type) == TYPE_MODE (inter_type))
5241 && ! final_ptr)
5242 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5244 /* If we have a sign-extension of a zero-extended value, we can
5245 replace that by a single zero-extension. */
5246 if (inside_int && inter_int && final_int
5247 && inside_prec < inter_prec && inter_prec < final_prec
5248 && inside_unsignedp && !inter_unsignedp)
5249 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5251 /* Two conversions in a row are not needed unless:
5252 - some conversion is floating-point (overstrict for now), or
5253 - the intermediate type is narrower than both initial and
5254 final, or
5255 - the intermediate type and innermost type differ in signedness,
5256 and the outermost type is wider than the intermediate, or
5257 - the initial type is a pointer type and the precisions of the
5258 intermediate and final types differ, or
5259 - the final type is a pointer type and the precisions of the
5260 initial and intermediate types differ. */
5261 if (! inside_float && ! inter_float && ! final_float
5262 && (inter_prec > inside_prec || inter_prec > final_prec)
5263 && ! (inside_int && inter_int
5264 && inter_unsignedp != inside_unsignedp
5265 && inter_prec < final_prec)
5266 && ((inter_unsignedp && inter_prec > inside_prec)
5267 == (final_unsignedp && final_prec > inter_prec))
5268 && ! (inside_ptr && inter_prec != final_prec)
5269 && ! (final_ptr && inside_prec != inter_prec)
5270 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (final_type))
5271 && TYPE_MODE (final_type) == TYPE_MODE (inter_type))
5272 && ! final_ptr)
5273 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5276 if (TREE_CODE (TREE_OPERAND (t, 0)) == MODIFY_EXPR
5277 && TREE_CONSTANT (TREE_OPERAND (TREE_OPERAND (t, 0), 1))
5278 /* Detect assigning a bitfield. */
5279 && !(TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 0)) == COMPONENT_REF
5280 && DECL_BIT_FIELD (TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 0), 0), 1))))
5282 /* Don't leave an assignment inside a conversion
5283 unless assigning a bitfield. */
5284 tree prev = TREE_OPERAND (t, 0);
5285 TREE_OPERAND (t, 0) = TREE_OPERAND (prev, 1);
5286 /* First do the assignment, then return converted constant. */
5287 t = build (COMPOUND_EXPR, TREE_TYPE (t), prev, fold (t));
5288 TREE_USED (t) = 1;
5289 return t;
5292 /* Convert (T)(x & c) into (T)x & (T)c, if c is an integer
5293 constants (if x has signed type, the sign bit cannot be set
5294 in c). This folds extension into the BIT_AND_EXPR. */
5295 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
5296 && TREE_CODE (TREE_TYPE (t)) != BOOLEAN_TYPE
5297 && TREE_CODE (TREE_OPERAND (t, 0)) == BIT_AND_EXPR
5298 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 1)) == INTEGER_CST)
5300 tree and = TREE_OPERAND (t, 0);
5301 tree and0 = TREE_OPERAND (and, 0), and1 = TREE_OPERAND (and, 1);
5302 int change = 0;
5304 if (TREE_UNSIGNED (TREE_TYPE (and))
5305 || (TYPE_PRECISION (TREE_TYPE (t))
5306 <= TYPE_PRECISION (TREE_TYPE (and))))
5307 change = 1;
5308 else if (TYPE_PRECISION (TREE_TYPE (and1))
5309 <= HOST_BITS_PER_WIDE_INT
5310 && host_integerp (and1, 1))
5312 unsigned HOST_WIDE_INT cst;
5314 cst = tree_low_cst (and1, 1);
5315 cst &= (HOST_WIDE_INT) -1
5316 << (TYPE_PRECISION (TREE_TYPE (and1)) - 1);
5317 change = (cst == 0);
5318 #ifdef LOAD_EXTEND_OP
5319 if (change
5320 && (LOAD_EXTEND_OP (TYPE_MODE (TREE_TYPE (and0)))
5321 == ZERO_EXTEND))
5323 tree uns = (*lang_hooks.types.unsigned_type) (TREE_TYPE (and0));
5324 and0 = convert (uns, and0);
5325 and1 = convert (uns, and1);
5327 #endif
5329 if (change)
5330 return fold (build (BIT_AND_EXPR, TREE_TYPE (t),
5331 convert (TREE_TYPE (t), and0),
5332 convert (TREE_TYPE (t), and1)));
5335 if (!wins)
5337 TREE_CONSTANT (t) = TREE_CONSTANT (arg0);
5338 return t;
5340 return fold_convert (t, arg0);
5342 case VIEW_CONVERT_EXPR:
5343 if (TREE_CODE (TREE_OPERAND (t, 0)) == VIEW_CONVERT_EXPR)
5344 return build1 (VIEW_CONVERT_EXPR, type,
5345 TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5346 return t;
5348 case COMPONENT_REF:
5349 if (TREE_CODE (arg0) == CONSTRUCTOR
5350 && ! type_contains_placeholder_p (TREE_TYPE (arg0)))
5352 tree m = purpose_member (arg1, CONSTRUCTOR_ELTS (arg0));
5353 if (m)
5354 t = TREE_VALUE (m);
5356 return t;
5358 case RANGE_EXPR:
5359 TREE_CONSTANT (t) = wins;
5360 return t;
5362 case NEGATE_EXPR:
5363 if (wins)
5365 if (TREE_CODE (arg0) == INTEGER_CST)
5367 unsigned HOST_WIDE_INT low;
5368 HOST_WIDE_INT high;
5369 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
5370 TREE_INT_CST_HIGH (arg0),
5371 &low, &high);
5372 t = build_int_2 (low, high);
5373 TREE_TYPE (t) = type;
5374 TREE_OVERFLOW (t)
5375 = (TREE_OVERFLOW (arg0)
5376 | force_fit_type (t, overflow && !TREE_UNSIGNED (type)));
5377 TREE_CONSTANT_OVERFLOW (t)
5378 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg0);
5380 else if (TREE_CODE (arg0) == REAL_CST)
5381 t = build_real (type, REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
5383 else if (TREE_CODE (arg0) == NEGATE_EXPR)
5384 return TREE_OPERAND (arg0, 0);
5385 /* Convert -((double)float) into (double)(-float). */
5386 else if (TREE_CODE (arg0) == NOP_EXPR
5387 && TREE_CODE (type) == REAL_TYPE)
5389 tree targ0 = strip_float_extensions (arg0);
5390 if (targ0 != arg0)
5391 return convert (type, build1 (NEGATE_EXPR, TREE_TYPE (targ0), targ0));
5395 /* Convert - (a - b) to (b - a) for non-floating-point. */
5396 else if (TREE_CODE (arg0) == MINUS_EXPR
5397 && (! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations))
5398 return build (MINUS_EXPR, type, TREE_OPERAND (arg0, 1),
5399 TREE_OPERAND (arg0, 0));
5401 /* Convert -f(x) into f(-x) where f is sin, tan or atan. */
5402 switch (builtin_mathfn_code (arg0))
5404 case BUILT_IN_SIN:
5405 case BUILT_IN_SINF:
5406 case BUILT_IN_SINL:
5407 case BUILT_IN_TAN:
5408 case BUILT_IN_TANF:
5409 case BUILT_IN_TANL:
5410 case BUILT_IN_ATAN:
5411 case BUILT_IN_ATANF:
5412 case BUILT_IN_ATANL:
5413 if (negate_expr_p (TREE_VALUE (TREE_OPERAND (arg0, 1))))
5415 tree fndecl, arg, arglist;
5417 fndecl = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
5418 arg = TREE_VALUE (TREE_OPERAND (arg0, 1));
5419 arg = fold (build1 (NEGATE_EXPR, type, arg));
5420 arglist = build_tree_list (NULL_TREE, arg);
5421 return build_function_call_expr (fndecl, arglist);
5423 break;
5425 default:
5426 break;
5428 return t;
5430 case ABS_EXPR:
5431 if (wins)
5433 if (TREE_CODE (arg0) == INTEGER_CST)
5435 /* If the value is unsigned, then the absolute value is
5436 the same as the ordinary value. */
5437 if (TREE_UNSIGNED (type))
5438 return arg0;
5439 /* Similarly, if the value is non-negative. */
5440 else if (INT_CST_LT (integer_minus_one_node, arg0))
5441 return arg0;
5442 /* If the value is negative, then the absolute value is
5443 its negation. */
5444 else
5446 unsigned HOST_WIDE_INT low;
5447 HOST_WIDE_INT high;
5448 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
5449 TREE_INT_CST_HIGH (arg0),
5450 &low, &high);
5451 t = build_int_2 (low, high);
5452 TREE_TYPE (t) = type;
5453 TREE_OVERFLOW (t)
5454 = (TREE_OVERFLOW (arg0)
5455 | force_fit_type (t, overflow));
5456 TREE_CONSTANT_OVERFLOW (t)
5457 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg0);
5460 else if (TREE_CODE (arg0) == REAL_CST)
5462 if (REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg0)))
5463 t = build_real (type,
5464 REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
5467 else if (TREE_CODE (arg0) == NEGATE_EXPR)
5468 return fold (build1 (ABS_EXPR, type, TREE_OPERAND (arg0, 0)));
5469 /* Convert fabs((double)float) into (double)fabsf(float). */
5470 else if (TREE_CODE (arg0) == NOP_EXPR
5471 && TREE_CODE (type) == REAL_TYPE)
5473 tree targ0 = strip_float_extensions (arg0);
5474 if (targ0 != arg0)
5475 return convert (type, fold (build1 (ABS_EXPR, TREE_TYPE (targ0),
5476 targ0)));
5478 else if (tree_expr_nonnegative_p (arg0))
5479 return arg0;
5480 return t;
5482 case CONJ_EXPR:
5483 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
5484 return convert (type, arg0);
5485 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
5486 return build (COMPLEX_EXPR, type,
5487 TREE_OPERAND (arg0, 0),
5488 negate_expr (TREE_OPERAND (arg0, 1)));
5489 else if (TREE_CODE (arg0) == COMPLEX_CST)
5490 return build_complex (type, TREE_REALPART (arg0),
5491 negate_expr (TREE_IMAGPART (arg0)));
5492 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
5493 return fold (build (TREE_CODE (arg0), type,
5494 fold (build1 (CONJ_EXPR, type,
5495 TREE_OPERAND (arg0, 0))),
5496 fold (build1 (CONJ_EXPR,
5497 type, TREE_OPERAND (arg0, 1)))));
5498 else if (TREE_CODE (arg0) == CONJ_EXPR)
5499 return TREE_OPERAND (arg0, 0);
5500 return t;
5502 case BIT_NOT_EXPR:
5503 if (wins)
5505 t = build_int_2 (~ TREE_INT_CST_LOW (arg0),
5506 ~ TREE_INT_CST_HIGH (arg0));
5507 TREE_TYPE (t) = type;
5508 force_fit_type (t, 0);
5509 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg0);
5510 TREE_CONSTANT_OVERFLOW (t) = TREE_CONSTANT_OVERFLOW (arg0);
5512 else if (TREE_CODE (arg0) == BIT_NOT_EXPR)
5513 return TREE_OPERAND (arg0, 0);
5514 return t;
5516 case PLUS_EXPR:
5517 /* A + (-B) -> A - B */
5518 if (TREE_CODE (arg1) == NEGATE_EXPR)
5519 return fold (build (MINUS_EXPR, type, arg0, TREE_OPERAND (arg1, 0)));
5520 /* (-A) + B -> B - A */
5521 if (TREE_CODE (arg0) == NEGATE_EXPR)
5522 return fold (build (MINUS_EXPR, type, arg1, TREE_OPERAND (arg0, 0)));
5523 else if (! FLOAT_TYPE_P (type))
5525 if (integer_zerop (arg1))
5526 return non_lvalue (convert (type, arg0));
5528 /* If we are adding two BIT_AND_EXPR's, both of which are and'ing
5529 with a constant, and the two constants have no bits in common,
5530 we should treat this as a BIT_IOR_EXPR since this may produce more
5531 simplifications. */
5532 if (TREE_CODE (arg0) == BIT_AND_EXPR
5533 && TREE_CODE (arg1) == BIT_AND_EXPR
5534 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
5535 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
5536 && integer_zerop (const_binop (BIT_AND_EXPR,
5537 TREE_OPERAND (arg0, 1),
5538 TREE_OPERAND (arg1, 1), 0)))
5540 code = BIT_IOR_EXPR;
5541 goto bit_ior;
5544 /* Reassociate (plus (plus (mult) (foo)) (mult)) as
5545 (plus (plus (mult) (mult)) (foo)) so that we can
5546 take advantage of the factoring cases below. */
5547 if ((TREE_CODE (arg0) == PLUS_EXPR
5548 && TREE_CODE (arg1) == MULT_EXPR)
5549 || (TREE_CODE (arg1) == PLUS_EXPR
5550 && TREE_CODE (arg0) == MULT_EXPR))
5552 tree parg0, parg1, parg, marg;
5554 if (TREE_CODE (arg0) == PLUS_EXPR)
5555 parg = arg0, marg = arg1;
5556 else
5557 parg = arg1, marg = arg0;
5558 parg0 = TREE_OPERAND (parg, 0);
5559 parg1 = TREE_OPERAND (parg, 1);
5560 STRIP_NOPS (parg0);
5561 STRIP_NOPS (parg1);
5563 if (TREE_CODE (parg0) == MULT_EXPR
5564 && TREE_CODE (parg1) != MULT_EXPR)
5565 return fold (build (PLUS_EXPR, type,
5566 fold (build (PLUS_EXPR, type,
5567 convert (type, parg0),
5568 convert (type, marg))),
5569 convert (type, parg1)));
5570 if (TREE_CODE (parg0) != MULT_EXPR
5571 && TREE_CODE (parg1) == MULT_EXPR)
5572 return fold (build (PLUS_EXPR, type,
5573 fold (build (PLUS_EXPR, type,
5574 convert (type, parg1),
5575 convert (type, marg))),
5576 convert (type, parg0)));
5579 if (TREE_CODE (arg0) == MULT_EXPR && TREE_CODE (arg1) == MULT_EXPR)
5581 tree arg00, arg01, arg10, arg11;
5582 tree alt0 = NULL_TREE, alt1 = NULL_TREE, same;
5584 /* (A * C) + (B * C) -> (A+B) * C.
5585 We are most concerned about the case where C is a constant,
5586 but other combinations show up during loop reduction. Since
5587 it is not difficult, try all four possibilities. */
5589 arg00 = TREE_OPERAND (arg0, 0);
5590 arg01 = TREE_OPERAND (arg0, 1);
5591 arg10 = TREE_OPERAND (arg1, 0);
5592 arg11 = TREE_OPERAND (arg1, 1);
5593 same = NULL_TREE;
5595 if (operand_equal_p (arg01, arg11, 0))
5596 same = arg01, alt0 = arg00, alt1 = arg10;
5597 else if (operand_equal_p (arg00, arg10, 0))
5598 same = arg00, alt0 = arg01, alt1 = arg11;
5599 else if (operand_equal_p (arg00, arg11, 0))
5600 same = arg00, alt0 = arg01, alt1 = arg10;
5601 else if (operand_equal_p (arg01, arg10, 0))
5602 same = arg01, alt0 = arg00, alt1 = arg11;
5604 /* No identical multiplicands; see if we can find a common
5605 power-of-two factor in non-power-of-two multiplies. This
5606 can help in multi-dimensional array access. */
5607 else if (TREE_CODE (arg01) == INTEGER_CST
5608 && TREE_CODE (arg11) == INTEGER_CST
5609 && TREE_INT_CST_HIGH (arg01) == 0
5610 && TREE_INT_CST_HIGH (arg11) == 0)
5612 HOST_WIDE_INT int01, int11, tmp;
5613 int01 = TREE_INT_CST_LOW (arg01);
5614 int11 = TREE_INT_CST_LOW (arg11);
5616 /* Move min of absolute values to int11. */
5617 if ((int01 >= 0 ? int01 : -int01)
5618 < (int11 >= 0 ? int11 : -int11))
5620 tmp = int01, int01 = int11, int11 = tmp;
5621 alt0 = arg00, arg00 = arg10, arg10 = alt0;
5622 alt0 = arg01, arg01 = arg11, arg11 = alt0;
5625 if (exact_log2 (int11) > 0 && int01 % int11 == 0)
5627 alt0 = fold (build (MULT_EXPR, type, arg00,
5628 build_int_2 (int01 / int11, 0)));
5629 alt1 = arg10;
5630 same = arg11;
5634 if (same)
5635 return fold (build (MULT_EXPR, type,
5636 fold (build (PLUS_EXPR, type, alt0, alt1)),
5637 same));
5641 /* See if ARG1 is zero and X + ARG1 reduces to X. */
5642 else if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 0))
5643 return non_lvalue (convert (type, arg0));
5645 /* Likewise if the operands are reversed. */
5646 else if (fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
5647 return non_lvalue (convert (type, arg1));
5649 bit_rotate:
5650 /* (A << C1) + (A >> C2) if A is unsigned and C1+C2 is the size of A
5651 is a rotate of A by C1 bits. */
5652 /* (A << B) + (A >> (Z - B)) if A is unsigned and Z is the size of A
5653 is a rotate of A by B bits. */
5655 enum tree_code code0, code1;
5656 code0 = TREE_CODE (arg0);
5657 code1 = TREE_CODE (arg1);
5658 if (((code0 == RSHIFT_EXPR && code1 == LSHIFT_EXPR)
5659 || (code1 == RSHIFT_EXPR && code0 == LSHIFT_EXPR))
5660 && operand_equal_p (TREE_OPERAND (arg0, 0),
5661 TREE_OPERAND (arg1, 0), 0)
5662 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
5664 tree tree01, tree11;
5665 enum tree_code code01, code11;
5667 tree01 = TREE_OPERAND (arg0, 1);
5668 tree11 = TREE_OPERAND (arg1, 1);
5669 STRIP_NOPS (tree01);
5670 STRIP_NOPS (tree11);
5671 code01 = TREE_CODE (tree01);
5672 code11 = TREE_CODE (tree11);
5673 if (code01 == INTEGER_CST
5674 && code11 == INTEGER_CST
5675 && TREE_INT_CST_HIGH (tree01) == 0
5676 && TREE_INT_CST_HIGH (tree11) == 0
5677 && ((TREE_INT_CST_LOW (tree01) + TREE_INT_CST_LOW (tree11))
5678 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)))))
5679 return build (LROTATE_EXPR, type, TREE_OPERAND (arg0, 0),
5680 code0 == LSHIFT_EXPR ? tree01 : tree11);
5681 else if (code11 == MINUS_EXPR)
5683 tree tree110, tree111;
5684 tree110 = TREE_OPERAND (tree11, 0);
5685 tree111 = TREE_OPERAND (tree11, 1);
5686 STRIP_NOPS (tree110);
5687 STRIP_NOPS (tree111);
5688 if (TREE_CODE (tree110) == INTEGER_CST
5689 && 0 == compare_tree_int (tree110,
5690 TYPE_PRECISION
5691 (TREE_TYPE (TREE_OPERAND
5692 (arg0, 0))))
5693 && operand_equal_p (tree01, tree111, 0))
5694 return build ((code0 == LSHIFT_EXPR
5695 ? LROTATE_EXPR
5696 : RROTATE_EXPR),
5697 type, TREE_OPERAND (arg0, 0), tree01);
5699 else if (code01 == MINUS_EXPR)
5701 tree tree010, tree011;
5702 tree010 = TREE_OPERAND (tree01, 0);
5703 tree011 = TREE_OPERAND (tree01, 1);
5704 STRIP_NOPS (tree010);
5705 STRIP_NOPS (tree011);
5706 if (TREE_CODE (tree010) == INTEGER_CST
5707 && 0 == compare_tree_int (tree010,
5708 TYPE_PRECISION
5709 (TREE_TYPE (TREE_OPERAND
5710 (arg0, 0))))
5711 && operand_equal_p (tree11, tree011, 0))
5712 return build ((code0 != LSHIFT_EXPR
5713 ? LROTATE_EXPR
5714 : RROTATE_EXPR),
5715 type, TREE_OPERAND (arg0, 0), tree11);
5720 associate:
5721 /* In most languages, can't associate operations on floats through
5722 parentheses. Rather than remember where the parentheses were, we
5723 don't associate floats at all. It shouldn't matter much. However,
5724 associating multiplications is only very slightly inaccurate, so do
5725 that if -funsafe-math-optimizations is specified. */
5727 if (! wins
5728 && (! FLOAT_TYPE_P (type)
5729 || (flag_unsafe_math_optimizations && code == MULT_EXPR)))
5731 tree var0, con0, lit0, minus_lit0;
5732 tree var1, con1, lit1, minus_lit1;
5734 /* Split both trees into variables, constants, and literals. Then
5735 associate each group together, the constants with literals,
5736 then the result with variables. This increases the chances of
5737 literals being recombined later and of generating relocatable
5738 expressions for the sum of a constant and literal. */
5739 var0 = split_tree (arg0, code, &con0, &lit0, &minus_lit0, 0);
5740 var1 = split_tree (arg1, code, &con1, &lit1, &minus_lit1,
5741 code == MINUS_EXPR);
5743 /* Only do something if we found more than two objects. Otherwise,
5744 nothing has changed and we risk infinite recursion. */
5745 if (2 < ((var0 != 0) + (var1 != 0)
5746 + (con0 != 0) + (con1 != 0)
5747 + (lit0 != 0) + (lit1 != 0)
5748 + (minus_lit0 != 0) + (minus_lit1 != 0)))
5750 /* Recombine MINUS_EXPR operands by using PLUS_EXPR. */
5751 if (code == MINUS_EXPR)
5752 code = PLUS_EXPR;
5754 var0 = associate_trees (var0, var1, code, type);
5755 con0 = associate_trees (con0, con1, code, type);
5756 lit0 = associate_trees (lit0, lit1, code, type);
5757 minus_lit0 = associate_trees (minus_lit0, minus_lit1, code, type);
5759 /* Preserve the MINUS_EXPR if the negative part of the literal is
5760 greater than the positive part. Otherwise, the multiplicative
5761 folding code (i.e extract_muldiv) may be fooled in case
5762 unsigned constants are subtracted, like in the following
5763 example: ((X*2 + 4) - 8U)/2. */
5764 if (minus_lit0 && lit0)
5766 if (tree_int_cst_lt (lit0, minus_lit0))
5768 minus_lit0 = associate_trees (minus_lit0, lit0,
5769 MINUS_EXPR, type);
5770 lit0 = 0;
5772 else
5774 lit0 = associate_trees (lit0, minus_lit0,
5775 MINUS_EXPR, type);
5776 minus_lit0 = 0;
5779 if (minus_lit0)
5781 if (con0 == 0)
5782 return convert (type, associate_trees (var0, minus_lit0,
5783 MINUS_EXPR, type));
5784 else
5786 con0 = associate_trees (con0, minus_lit0,
5787 MINUS_EXPR, type);
5788 return convert (type, associate_trees (var0, con0,
5789 PLUS_EXPR, type));
5793 con0 = associate_trees (con0, lit0, code, type);
5794 return convert (type, associate_trees (var0, con0, code, type));
5798 binary:
5799 if (wins)
5800 t1 = const_binop (code, arg0, arg1, 0);
5801 if (t1 != NULL_TREE)
5803 /* The return value should always have
5804 the same type as the original expression. */
5805 if (TREE_TYPE (t1) != TREE_TYPE (t))
5806 t1 = convert (TREE_TYPE (t), t1);
5808 return t1;
5810 return t;
5812 case MINUS_EXPR:
5813 /* A - (-B) -> A + B */
5814 if (TREE_CODE (arg1) == NEGATE_EXPR)
5815 return fold (build (PLUS_EXPR, type, arg0, TREE_OPERAND (arg1, 0)));
5816 /* (-A) - B -> (-B) - A where B is easily negated and we can swap. */
5817 if (TREE_CODE (arg0) == NEGATE_EXPR
5818 && (FLOAT_TYPE_P (type)
5819 || (INTEGRAL_TYPE_P (type) && flag_wrapv && !flag_trapv))
5820 && negate_expr_p (arg1)
5821 && (! TREE_SIDE_EFFECTS (arg0) || TREE_CONSTANT (arg1))
5822 && (! TREE_SIDE_EFFECTS (arg1) || TREE_CONSTANT (arg0)))
5823 return fold (build (MINUS_EXPR, type, negate_expr (arg1),
5824 TREE_OPERAND (arg0, 0)));
5826 if (! FLOAT_TYPE_P (type))
5828 if (! wins && integer_zerop (arg0))
5829 return negate_expr (convert (type, arg1));
5830 if (integer_zerop (arg1))
5831 return non_lvalue (convert (type, arg0));
5833 /* (A * C) - (B * C) -> (A-B) * C. Since we are most concerned
5834 about the case where C is a constant, just try one of the
5835 four possibilities. */
5837 if (TREE_CODE (arg0) == MULT_EXPR && TREE_CODE (arg1) == MULT_EXPR
5838 && operand_equal_p (TREE_OPERAND (arg0, 1),
5839 TREE_OPERAND (arg1, 1), 0))
5840 return fold (build (MULT_EXPR, type,
5841 fold (build (MINUS_EXPR, type,
5842 TREE_OPERAND (arg0, 0),
5843 TREE_OPERAND (arg1, 0))),
5844 TREE_OPERAND (arg0, 1)));
5846 /* Fold A - (A & B) into ~B & A. */
5847 if (!TREE_SIDE_EFFECTS (arg0)
5848 && TREE_CODE (arg1) == BIT_AND_EXPR)
5850 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0))
5851 return fold (build (BIT_AND_EXPR, type,
5852 fold (build1 (BIT_NOT_EXPR, type,
5853 TREE_OPERAND (arg1, 0))),
5854 arg0));
5855 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
5856 return fold (build (BIT_AND_EXPR, type,
5857 fold (build1 (BIT_NOT_EXPR, type,
5858 TREE_OPERAND (arg1, 1))),
5859 arg0));
5863 /* See if ARG1 is zero and X - ARG1 reduces to X. */
5864 else if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 1))
5865 return non_lvalue (convert (type, arg0));
5867 /* (ARG0 - ARG1) is the same as (-ARG1 + ARG0). So check whether
5868 ARG0 is zero and X + ARG0 reduces to X, since that would mean
5869 (-ARG1 + ARG0) reduces to -ARG1. */
5870 else if (!wins && fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
5871 return negate_expr (convert (type, arg1));
5873 /* Fold &x - &x. This can happen from &x.foo - &x.
5874 This is unsafe for certain floats even in non-IEEE formats.
5875 In IEEE, it is unsafe because it does wrong for NaNs.
5876 Also note that operand_equal_p is always false if an operand
5877 is volatile. */
5879 if ((! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
5880 && operand_equal_p (arg0, arg1, 0))
5881 return convert (type, integer_zero_node);
5883 goto associate;
5885 case MULT_EXPR:
5886 /* (-A) * (-B) -> A * B */
5887 if (TREE_CODE (arg0) == NEGATE_EXPR && TREE_CODE (arg1) == NEGATE_EXPR)
5888 return fold (build (MULT_EXPR, type, TREE_OPERAND (arg0, 0),
5889 TREE_OPERAND (arg1, 0)));
5891 if (! FLOAT_TYPE_P (type))
5893 if (integer_zerop (arg1))
5894 return omit_one_operand (type, arg1, arg0);
5895 if (integer_onep (arg1))
5896 return non_lvalue (convert (type, arg0));
5898 /* (a * (1 << b)) is (a << b) */
5899 if (TREE_CODE (arg1) == LSHIFT_EXPR
5900 && integer_onep (TREE_OPERAND (arg1, 0)))
5901 return fold (build (LSHIFT_EXPR, type, arg0,
5902 TREE_OPERAND (arg1, 1)));
5903 if (TREE_CODE (arg0) == LSHIFT_EXPR
5904 && integer_onep (TREE_OPERAND (arg0, 0)))
5905 return fold (build (LSHIFT_EXPR, type, arg1,
5906 TREE_OPERAND (arg0, 1)));
5908 if (TREE_CODE (arg1) == INTEGER_CST
5909 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0),
5910 convert (type, arg1),
5911 code, NULL_TREE)))
5912 return convert (type, tem);
5915 else
5917 /* Maybe fold x * 0 to 0. The expressions aren't the same
5918 when x is NaN, since x * 0 is also NaN. Nor are they the
5919 same in modes with signed zeros, since multiplying a
5920 negative value by 0 gives -0, not +0. */
5921 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
5922 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
5923 && real_zerop (arg1))
5924 return omit_one_operand (type, arg1, arg0);
5925 /* In IEEE floating point, x*1 is not equivalent to x for snans. */
5926 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
5927 && real_onep (arg1))
5928 return non_lvalue (convert (type, arg0));
5930 /* Transform x * -1.0 into -x. */
5931 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
5932 && real_minus_onep (arg1))
5933 return fold (build1 (NEGATE_EXPR, type, arg0));
5935 /* x*2 is x+x */
5936 if (! wins && real_twop (arg1)
5937 && (*lang_hooks.decls.global_bindings_p) () == 0
5938 && ! CONTAINS_PLACEHOLDER_P (arg0))
5940 tree arg = save_expr (arg0);
5941 return fold (build (PLUS_EXPR, type, arg, arg));
5944 if (flag_unsafe_math_optimizations)
5946 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
5947 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
5949 /* Optimizations of sqrt(...)*sqrt(...). */
5950 if ((fcode0 == BUILT_IN_SQRT && fcode1 == BUILT_IN_SQRT)
5951 || (fcode0 == BUILT_IN_SQRTF && fcode1 == BUILT_IN_SQRTF)
5952 || (fcode0 == BUILT_IN_SQRTL && fcode1 == BUILT_IN_SQRTL))
5954 tree sqrtfn, arg, arglist;
5955 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
5956 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
5958 /* Optimize sqrt(x)*sqrt(x) as x. */
5959 if (operand_equal_p (arg00, arg10, 0)
5960 && ! HONOR_SNANS (TYPE_MODE (type)))
5961 return arg00;
5963 /* Optimize sqrt(x)*sqrt(y) as sqrt(x*y). */
5964 sqrtfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
5965 arg = fold (build (MULT_EXPR, type, arg00, arg10));
5966 arglist = build_tree_list (NULL_TREE, arg);
5967 return build_function_call_expr (sqrtfn, arglist);
5970 /* Optimize exp(x)*exp(y) as exp(x+y). */
5971 if ((fcode0 == BUILT_IN_EXP && fcode1 == BUILT_IN_EXP)
5972 || (fcode0 == BUILT_IN_EXPF && fcode1 == BUILT_IN_EXPF)
5973 || (fcode0 == BUILT_IN_EXPL && fcode1 == BUILT_IN_EXPL))
5975 tree expfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
5976 tree arg = build (PLUS_EXPR, type,
5977 TREE_VALUE (TREE_OPERAND (arg0, 1)),
5978 TREE_VALUE (TREE_OPERAND (arg1, 1)));
5979 tree arglist = build_tree_list (NULL_TREE, fold (arg));
5980 return build_function_call_expr (expfn, arglist);
5983 /* Optimizations of pow(...)*pow(...). */
5984 if ((fcode0 == BUILT_IN_POW && fcode1 == BUILT_IN_POW)
5985 || (fcode0 == BUILT_IN_POWF && fcode1 == BUILT_IN_POWF)
5986 || (fcode0 == BUILT_IN_POWL && fcode1 == BUILT_IN_POWL))
5988 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
5989 tree arg01 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0,
5990 1)));
5991 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
5992 tree arg11 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg1,
5993 1)));
5995 /* Optimize pow(x,y)*pow(z,y) as pow(x*z,y). */
5996 if (operand_equal_p (arg01, arg11, 0))
5998 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
5999 tree arg = build (MULT_EXPR, type, arg00, arg10);
6000 tree arglist = tree_cons (NULL_TREE, fold (arg),
6001 build_tree_list (NULL_TREE,
6002 arg01));
6003 return build_function_call_expr (powfn, arglist);
6006 /* Optimize pow(x,y)*pow(x,z) as pow(x,y+z). */
6007 if (operand_equal_p (arg00, arg10, 0))
6009 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
6010 tree arg = fold (build (PLUS_EXPR, type, arg01, arg11));
6011 tree arglist = tree_cons (NULL_TREE, arg00,
6012 build_tree_list (NULL_TREE,
6013 arg));
6014 return build_function_call_expr (powfn, arglist);
6018 /* Optimize tan(x)*cos(x) as sin(x). */
6019 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_COS)
6020 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_COSF)
6021 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_COSL)
6022 || (fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_TAN)
6023 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_TANF)
6024 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_TANL))
6025 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
6026 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
6028 tree sinfn;
6030 switch (fcode0)
6032 case BUILT_IN_TAN:
6033 case BUILT_IN_COS:
6034 sinfn = implicit_built_in_decls[BUILT_IN_SIN];
6035 break;
6036 case BUILT_IN_TANF:
6037 case BUILT_IN_COSF:
6038 sinfn = implicit_built_in_decls[BUILT_IN_SINF];
6039 break;
6040 case BUILT_IN_TANL:
6041 case BUILT_IN_COSL:
6042 sinfn = implicit_built_in_decls[BUILT_IN_SINL];
6043 break;
6044 default:
6045 sinfn = NULL_TREE;
6048 if (sinfn != NULL_TREE)
6049 return build_function_call_expr (sinfn,
6050 TREE_OPERAND (arg0, 1));
6054 goto associate;
6056 case BIT_IOR_EXPR:
6057 bit_ior:
6058 if (integer_all_onesp (arg1))
6059 return omit_one_operand (type, arg1, arg0);
6060 if (integer_zerop (arg1))
6061 return non_lvalue (convert (type, arg0));
6062 t1 = distribute_bit_expr (code, type, arg0, arg1);
6063 if (t1 != NULL_TREE)
6064 return t1;
6066 /* Convert (or (not arg0) (not arg1)) to (not (and (arg0) (arg1))).
6068 This results in more efficient code for machines without a NAND
6069 instruction. Combine will canonicalize to the first form
6070 which will allow use of NAND instructions provided by the
6071 backend if they exist. */
6072 if (TREE_CODE (arg0) == BIT_NOT_EXPR
6073 && TREE_CODE (arg1) == BIT_NOT_EXPR)
6075 return fold (build1 (BIT_NOT_EXPR, type,
6076 build (BIT_AND_EXPR, type,
6077 TREE_OPERAND (arg0, 0),
6078 TREE_OPERAND (arg1, 0))));
6081 /* See if this can be simplified into a rotate first. If that
6082 is unsuccessful continue in the association code. */
6083 goto bit_rotate;
6085 case BIT_XOR_EXPR:
6086 if (integer_zerop (arg1))
6087 return non_lvalue (convert (type, arg0));
6088 if (integer_all_onesp (arg1))
6089 return fold (build1 (BIT_NOT_EXPR, type, arg0));
6091 /* If we are XORing two BIT_AND_EXPR's, both of which are and'ing
6092 with a constant, and the two constants have no bits in common,
6093 we should treat this as a BIT_IOR_EXPR since this may produce more
6094 simplifications. */
6095 if (TREE_CODE (arg0) == BIT_AND_EXPR
6096 && TREE_CODE (arg1) == BIT_AND_EXPR
6097 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
6098 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
6099 && integer_zerop (const_binop (BIT_AND_EXPR,
6100 TREE_OPERAND (arg0, 1),
6101 TREE_OPERAND (arg1, 1), 0)))
6103 code = BIT_IOR_EXPR;
6104 goto bit_ior;
6107 /* See if this can be simplified into a rotate first. If that
6108 is unsuccessful continue in the association code. */
6109 goto bit_rotate;
6111 case BIT_AND_EXPR:
6112 bit_and:
6113 if (integer_all_onesp (arg1))
6114 return non_lvalue (convert (type, arg0));
6115 if (integer_zerop (arg1))
6116 return omit_one_operand (type, arg1, arg0);
6117 t1 = distribute_bit_expr (code, type, arg0, arg1);
6118 if (t1 != NULL_TREE)
6119 return t1;
6120 /* Simplify ((int)c & 0377) into (int)c, if c is unsigned char. */
6121 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) == NOP_EXPR
6122 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
6124 unsigned int prec
6125 = TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)));
6127 if (prec < BITS_PER_WORD && prec < HOST_BITS_PER_WIDE_INT
6128 && (~TREE_INT_CST_LOW (arg1)
6129 & (((HOST_WIDE_INT) 1 << prec) - 1)) == 0)
6130 return build1 (NOP_EXPR, type, TREE_OPERAND (arg0, 0));
6133 /* Convert (and (not arg0) (not arg1)) to (not (or (arg0) (arg1))).
6135 This results in more efficient code for machines without a NOR
6136 instruction. Combine will canonicalize to the first form
6137 which will allow use of NOR instructions provided by the
6138 backend if they exist. */
6139 if (TREE_CODE (arg0) == BIT_NOT_EXPR
6140 && TREE_CODE (arg1) == BIT_NOT_EXPR)
6142 return fold (build1 (BIT_NOT_EXPR, type,
6143 build (BIT_IOR_EXPR, type,
6144 TREE_OPERAND (arg0, 0),
6145 TREE_OPERAND (arg1, 0))));
6148 goto associate;
6150 case BIT_ANDTC_EXPR:
6151 if (integer_all_onesp (arg0))
6152 return non_lvalue (convert (type, arg1));
6153 if (integer_zerop (arg0))
6154 return omit_one_operand (type, arg0, arg1);
6155 if (TREE_CODE (arg1) == INTEGER_CST)
6157 arg1 = fold (build1 (BIT_NOT_EXPR, type, arg1));
6158 code = BIT_AND_EXPR;
6159 goto bit_and;
6161 goto binary;
6163 case RDIV_EXPR:
6164 /* Don't touch a floating-point divide by zero unless the mode
6165 of the constant can represent infinity. */
6166 if (TREE_CODE (arg1) == REAL_CST
6167 && !MODE_HAS_INFINITIES (TYPE_MODE (TREE_TYPE (arg1)))
6168 && real_zerop (arg1))
6169 return t;
6171 /* (-A) / (-B) -> A / B */
6172 if (TREE_CODE (arg0) == NEGATE_EXPR && TREE_CODE (arg1) == NEGATE_EXPR)
6173 return fold (build (RDIV_EXPR, type, TREE_OPERAND (arg0, 0),
6174 TREE_OPERAND (arg1, 0)));
6176 /* In IEEE floating point, x/1 is not equivalent to x for snans. */
6177 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
6178 && real_onep (arg1))
6179 return non_lvalue (convert (type, arg0));
6181 /* If ARG1 is a constant, we can convert this to a multiply by the
6182 reciprocal. This does not have the same rounding properties,
6183 so only do this if -funsafe-math-optimizations. We can actually
6184 always safely do it if ARG1 is a power of two, but it's hard to
6185 tell if it is or not in a portable manner. */
6186 if (TREE_CODE (arg1) == REAL_CST)
6188 if (flag_unsafe_math_optimizations
6189 && 0 != (tem = const_binop (code, build_real (type, dconst1),
6190 arg1, 0)))
6191 return fold (build (MULT_EXPR, type, arg0, tem));
6192 /* Find the reciprocal if optimizing and the result is exact. */
6193 else if (optimize)
6195 REAL_VALUE_TYPE r;
6196 r = TREE_REAL_CST (arg1);
6197 if (exact_real_inverse (TYPE_MODE(TREE_TYPE(arg0)), &r))
6199 tem = build_real (type, r);
6200 return fold (build (MULT_EXPR, type, arg0, tem));
6204 /* Convert A/B/C to A/(B*C). */
6205 if (flag_unsafe_math_optimizations
6206 && TREE_CODE (arg0) == RDIV_EXPR)
6208 return fold (build (RDIV_EXPR, type, TREE_OPERAND (arg0, 0),
6209 build (MULT_EXPR, type, TREE_OPERAND (arg0, 1),
6210 arg1)));
6212 /* Convert A/(B/C) to (A/B)*C. */
6213 if (flag_unsafe_math_optimizations
6214 && TREE_CODE (arg1) == RDIV_EXPR)
6216 return fold (build (MULT_EXPR, type,
6217 build (RDIV_EXPR, type, arg0,
6218 TREE_OPERAND (arg1, 0)),
6219 TREE_OPERAND (arg1, 1)));
6222 if (flag_unsafe_math_optimizations)
6224 enum built_in_function fcode = builtin_mathfn_code (arg1);
6225 /* Optimize x/exp(y) into x*exp(-y). */
6226 if (fcode == BUILT_IN_EXP
6227 || fcode == BUILT_IN_EXPF
6228 || fcode == BUILT_IN_EXPL)
6230 tree expfn = TREE_OPERAND (TREE_OPERAND (arg1, 0), 0);
6231 tree arg = build1 (NEGATE_EXPR, type,
6232 TREE_VALUE (TREE_OPERAND (arg1, 1)));
6233 tree arglist = build_tree_list (NULL_TREE, fold (arg));
6234 arg1 = build_function_call_expr (expfn, arglist);
6235 return fold (build (MULT_EXPR, type, arg0, arg1));
6238 /* Optimize x/pow(y,z) into x*pow(y,-z). */
6239 if (fcode == BUILT_IN_POW
6240 || fcode == BUILT_IN_POWF
6241 || fcode == BUILT_IN_POWL)
6243 tree powfn = TREE_OPERAND (TREE_OPERAND (arg1, 0), 0);
6244 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
6245 tree arg11 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg1, 1)));
6246 tree neg11 = fold (build1 (NEGATE_EXPR, type, arg11));
6247 tree arglist = tree_cons(NULL_TREE, arg10,
6248 build_tree_list (NULL_TREE, neg11));
6249 arg1 = build_function_call_expr (powfn, arglist);
6250 return fold (build (MULT_EXPR, type, arg0, arg1));
6254 if (flag_unsafe_math_optimizations)
6256 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
6257 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
6259 /* Optimize sin(x)/cos(x) as tan(x). */
6260 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_COS)
6261 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_COSF)
6262 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_COSL))
6263 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
6264 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
6266 tree tanfn;
6268 if (fcode0 == BUILT_IN_SIN)
6269 tanfn = implicit_built_in_decls[BUILT_IN_TAN];
6270 else if (fcode0 == BUILT_IN_SINF)
6271 tanfn = implicit_built_in_decls[BUILT_IN_TANF];
6272 else if (fcode0 == BUILT_IN_SINL)
6273 tanfn = implicit_built_in_decls[BUILT_IN_TANL];
6274 else
6275 tanfn = NULL_TREE;
6277 if (tanfn != NULL_TREE)
6278 return build_function_call_expr (tanfn,
6279 TREE_OPERAND (arg0, 1));
6282 /* Optimize cos(x)/sin(x) as 1.0/tan(x). */
6283 if (((fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_SIN)
6284 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_SINF)
6285 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_SINL))
6286 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
6287 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
6289 tree tanfn;
6291 if (fcode0 == BUILT_IN_COS)
6292 tanfn = implicit_built_in_decls[BUILT_IN_TAN];
6293 else if (fcode0 == BUILT_IN_COSF)
6294 tanfn = implicit_built_in_decls[BUILT_IN_TANF];
6295 else if (fcode0 == BUILT_IN_COSL)
6296 tanfn = implicit_built_in_decls[BUILT_IN_TANL];
6297 else
6298 tanfn = NULL_TREE;
6300 if (tanfn != NULL_TREE)
6302 tree tmp = TREE_OPERAND (arg0, 1);
6303 tmp = build_function_call_expr (tanfn, tmp);
6304 return fold (build (RDIV_EXPR, type,
6305 build_real (type, dconst1),
6306 tmp));
6310 goto binary;
6312 case TRUNC_DIV_EXPR:
6313 case ROUND_DIV_EXPR:
6314 case FLOOR_DIV_EXPR:
6315 case CEIL_DIV_EXPR:
6316 case EXACT_DIV_EXPR:
6317 if (integer_onep (arg1))
6318 return non_lvalue (convert (type, arg0));
6319 if (integer_zerop (arg1))
6320 return t;
6322 /* If arg0 is a multiple of arg1, then rewrite to the fastest div
6323 operation, EXACT_DIV_EXPR.
6325 Note that only CEIL_DIV_EXPR and FLOOR_DIV_EXPR are rewritten now.
6326 At one time others generated faster code, it's not clear if they do
6327 after the last round to changes to the DIV code in expmed.c. */
6328 if ((code == CEIL_DIV_EXPR || code == FLOOR_DIV_EXPR)
6329 && multiple_of_p (type, arg0, arg1))
6330 return fold (build (EXACT_DIV_EXPR, type, arg0, arg1));
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 CEIL_MOD_EXPR:
6340 case FLOOR_MOD_EXPR:
6341 case ROUND_MOD_EXPR:
6342 case TRUNC_MOD_EXPR:
6343 if (integer_onep (arg1))
6344 return omit_one_operand (type, integer_zero_node, arg0);
6345 if (integer_zerop (arg1))
6346 return t;
6348 if (TREE_CODE (arg1) == INTEGER_CST
6349 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0), arg1,
6350 code, NULL_TREE)))
6351 return convert (type, tem);
6353 goto binary;
6355 case LROTATE_EXPR:
6356 case RROTATE_EXPR:
6357 if (integer_all_onesp (arg0))
6358 return omit_one_operand (type, arg0, arg1);
6359 goto shift;
6361 case RSHIFT_EXPR:
6362 /* Optimize -1 >> x for arithmetic right shifts. */
6363 if (integer_all_onesp (arg0) && ! TREE_UNSIGNED (type))
6364 return omit_one_operand (type, arg0, arg1);
6365 /* ... fall through ... */
6367 case LSHIFT_EXPR:
6368 shift:
6369 if (integer_zerop (arg1))
6370 return non_lvalue (convert (type, arg0));
6371 if (integer_zerop (arg0))
6372 return omit_one_operand (type, arg0, arg1);
6374 /* Since negative shift count is not well-defined,
6375 don't try to compute it in the compiler. */
6376 if (TREE_CODE (arg1) == INTEGER_CST && tree_int_cst_sgn (arg1) < 0)
6377 return t;
6378 /* Rewrite an LROTATE_EXPR by a constant into an
6379 RROTATE_EXPR by a new constant. */
6380 if (code == LROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST)
6382 TREE_SET_CODE (t, RROTATE_EXPR);
6383 code = RROTATE_EXPR;
6384 TREE_OPERAND (t, 1) = arg1
6385 = const_binop
6386 (MINUS_EXPR,
6387 convert (TREE_TYPE (arg1),
6388 build_int_2 (GET_MODE_BITSIZE (TYPE_MODE (type)), 0)),
6389 arg1, 0);
6390 if (tree_int_cst_sgn (arg1) < 0)
6391 return t;
6394 /* If we have a rotate of a bit operation with the rotate count and
6395 the second operand of the bit operation both constant,
6396 permute the two operations. */
6397 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
6398 && (TREE_CODE (arg0) == BIT_AND_EXPR
6399 || TREE_CODE (arg0) == BIT_ANDTC_EXPR
6400 || TREE_CODE (arg0) == BIT_IOR_EXPR
6401 || TREE_CODE (arg0) == BIT_XOR_EXPR)
6402 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
6403 return fold (build (TREE_CODE (arg0), type,
6404 fold (build (code, type,
6405 TREE_OPERAND (arg0, 0), arg1)),
6406 fold (build (code, type,
6407 TREE_OPERAND (arg0, 1), arg1))));
6409 /* Two consecutive rotates adding up to the width of the mode can
6410 be ignored. */
6411 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
6412 && TREE_CODE (arg0) == RROTATE_EXPR
6413 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
6414 && TREE_INT_CST_HIGH (arg1) == 0
6415 && TREE_INT_CST_HIGH (TREE_OPERAND (arg0, 1)) == 0
6416 && ((TREE_INT_CST_LOW (arg1)
6417 + TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)))
6418 == (unsigned int) GET_MODE_BITSIZE (TYPE_MODE (type))))
6419 return TREE_OPERAND (arg0, 0);
6421 goto binary;
6423 case MIN_EXPR:
6424 if (operand_equal_p (arg0, arg1, 0))
6425 return omit_one_operand (type, arg0, arg1);
6426 if (INTEGRAL_TYPE_P (type)
6427 && operand_equal_p (arg1, TYPE_MIN_VALUE (type), 1))
6428 return omit_one_operand (type, arg1, arg0);
6429 goto associate;
6431 case MAX_EXPR:
6432 if (operand_equal_p (arg0, arg1, 0))
6433 return omit_one_operand (type, arg0, arg1);
6434 if (INTEGRAL_TYPE_P (type)
6435 && TYPE_MAX_VALUE (type)
6436 && operand_equal_p (arg1, TYPE_MAX_VALUE (type), 1))
6437 return omit_one_operand (type, arg1, arg0);
6438 goto associate;
6440 case TRUTH_NOT_EXPR:
6441 /* Note that the operand of this must be an int
6442 and its values must be 0 or 1.
6443 ("true" is a fixed value perhaps depending on the language,
6444 but we don't handle values other than 1 correctly yet.) */
6445 tem = invert_truthvalue (arg0);
6446 /* Avoid infinite recursion. */
6447 if (TREE_CODE (tem) == TRUTH_NOT_EXPR)
6449 tem = fold_single_bit_test (code, arg0, arg1, type);
6450 if (tem)
6451 return tem;
6452 return t;
6454 return convert (type, tem);
6456 case TRUTH_ANDIF_EXPR:
6457 /* Note that the operands of this must be ints
6458 and their values must be 0 or 1.
6459 ("true" is a fixed value perhaps depending on the language.) */
6460 /* If first arg is constant zero, return it. */
6461 if (integer_zerop (arg0))
6462 return convert (type, arg0);
6463 case TRUTH_AND_EXPR:
6464 /* If either arg is constant true, drop it. */
6465 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
6466 return non_lvalue (convert (type, arg1));
6467 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1)
6468 /* Preserve sequence points. */
6469 && (code != TRUTH_ANDIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
6470 return non_lvalue (convert (type, arg0));
6471 /* If second arg is constant zero, result is zero, but first arg
6472 must be evaluated. */
6473 if (integer_zerop (arg1))
6474 return omit_one_operand (type, arg1, arg0);
6475 /* Likewise for first arg, but note that only the TRUTH_AND_EXPR
6476 case will be handled here. */
6477 if (integer_zerop (arg0))
6478 return omit_one_operand (type, arg0, arg1);
6480 truth_andor:
6481 /* We only do these simplifications if we are optimizing. */
6482 if (!optimize)
6483 return t;
6485 /* Check for things like (A || B) && (A || C). We can convert this
6486 to A || (B && C). Note that either operator can be any of the four
6487 truth and/or operations and the transformation will still be
6488 valid. Also note that we only care about order for the
6489 ANDIF and ORIF operators. If B contains side effects, this
6490 might change the truth-value of A. */
6491 if (TREE_CODE (arg0) == TREE_CODE (arg1)
6492 && (TREE_CODE (arg0) == TRUTH_ANDIF_EXPR
6493 || TREE_CODE (arg0) == TRUTH_ORIF_EXPR
6494 || TREE_CODE (arg0) == TRUTH_AND_EXPR
6495 || TREE_CODE (arg0) == TRUTH_OR_EXPR)
6496 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg0, 1)))
6498 tree a00 = TREE_OPERAND (arg0, 0);
6499 tree a01 = TREE_OPERAND (arg0, 1);
6500 tree a10 = TREE_OPERAND (arg1, 0);
6501 tree a11 = TREE_OPERAND (arg1, 1);
6502 int commutative = ((TREE_CODE (arg0) == TRUTH_OR_EXPR
6503 || TREE_CODE (arg0) == TRUTH_AND_EXPR)
6504 && (code == TRUTH_AND_EXPR
6505 || code == TRUTH_OR_EXPR));
6507 if (operand_equal_p (a00, a10, 0))
6508 return fold (build (TREE_CODE (arg0), type, a00,
6509 fold (build (code, type, a01, a11))));
6510 else if (commutative && operand_equal_p (a00, a11, 0))
6511 return fold (build (TREE_CODE (arg0), type, a00,
6512 fold (build (code, type, a01, a10))));
6513 else if (commutative && operand_equal_p (a01, a10, 0))
6514 return fold (build (TREE_CODE (arg0), type, a01,
6515 fold (build (code, type, a00, a11))));
6517 /* This case if tricky because we must either have commutative
6518 operators or else A10 must not have side-effects. */
6520 else if ((commutative || ! TREE_SIDE_EFFECTS (a10))
6521 && operand_equal_p (a01, a11, 0))
6522 return fold (build (TREE_CODE (arg0), type,
6523 fold (build (code, type, a00, a10)),
6524 a01));
6527 /* See if we can build a range comparison. */
6528 if (0 != (tem = fold_range_test (t)))
6529 return tem;
6531 /* Check for the possibility of merging component references. If our
6532 lhs is another similar operation, try to merge its rhs with our
6533 rhs. Then try to merge our lhs and rhs. */
6534 if (TREE_CODE (arg0) == code
6535 && 0 != (tem = fold_truthop (code, type,
6536 TREE_OPERAND (arg0, 1), arg1)))
6537 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
6539 if ((tem = fold_truthop (code, type, arg0, arg1)) != 0)
6540 return tem;
6542 return t;
6544 case TRUTH_ORIF_EXPR:
6545 /* Note that the operands of this must be ints
6546 and their values must be 0 or true.
6547 ("true" is a fixed value perhaps depending on the language.) */
6548 /* If first arg is constant true, return it. */
6549 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
6550 return convert (type, arg0);
6551 case TRUTH_OR_EXPR:
6552 /* If either arg is constant zero, drop it. */
6553 if (TREE_CODE (arg0) == INTEGER_CST && integer_zerop (arg0))
6554 return non_lvalue (convert (type, arg1));
6555 if (TREE_CODE (arg1) == INTEGER_CST && integer_zerop (arg1)
6556 /* Preserve sequence points. */
6557 && (code != TRUTH_ORIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
6558 return non_lvalue (convert (type, arg0));
6559 /* If second arg is constant true, result is true, but we must
6560 evaluate first arg. */
6561 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1))
6562 return omit_one_operand (type, arg1, arg0);
6563 /* Likewise for first arg, but note this only occurs here for
6564 TRUTH_OR_EXPR. */
6565 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
6566 return omit_one_operand (type, arg0, arg1);
6567 goto truth_andor;
6569 case TRUTH_XOR_EXPR:
6570 /* If either arg is constant zero, drop it. */
6571 if (integer_zerop (arg0))
6572 return non_lvalue (convert (type, arg1));
6573 if (integer_zerop (arg1))
6574 return non_lvalue (convert (type, arg0));
6575 /* If either arg is constant true, this is a logical inversion. */
6576 if (integer_onep (arg0))
6577 return non_lvalue (convert (type, invert_truthvalue (arg1)));
6578 if (integer_onep (arg1))
6579 return non_lvalue (convert (type, invert_truthvalue (arg0)));
6580 return t;
6582 case EQ_EXPR:
6583 case NE_EXPR:
6584 case LT_EXPR:
6585 case GT_EXPR:
6586 case LE_EXPR:
6587 case GE_EXPR:
6588 /* If one arg is a real or integer constant, put it last. */
6589 if ((TREE_CODE (arg0) == INTEGER_CST
6590 && TREE_CODE (arg1) != INTEGER_CST)
6591 || (TREE_CODE (arg0) == REAL_CST
6592 && TREE_CODE (arg0) != REAL_CST))
6594 TREE_OPERAND (t, 0) = arg1;
6595 TREE_OPERAND (t, 1) = arg0;
6596 arg0 = TREE_OPERAND (t, 0);
6597 arg1 = TREE_OPERAND (t, 1);
6598 code = swap_tree_comparison (code);
6599 TREE_SET_CODE (t, code);
6602 if (FLOAT_TYPE_P (TREE_TYPE (arg0)))
6604 tree targ0 = strip_float_extensions (arg0);
6605 tree targ1 = strip_float_extensions (arg1);
6606 tree newtype = TREE_TYPE (targ0);
6608 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
6609 newtype = TREE_TYPE (targ1);
6611 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
6612 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
6613 return fold (build (code, type, convert (newtype, targ0),
6614 convert (newtype, targ1)));
6616 /* (-a) CMP (-b) -> b CMP a */
6617 if (TREE_CODE (arg0) == NEGATE_EXPR
6618 && TREE_CODE (arg1) == NEGATE_EXPR)
6619 return fold (build (code, type, TREE_OPERAND (arg1, 0),
6620 TREE_OPERAND (arg0, 0)));
6622 if (TREE_CODE (arg1) == REAL_CST)
6624 REAL_VALUE_TYPE cst;
6625 cst = TREE_REAL_CST (arg1);
6627 /* (-a) CMP CST -> a swap(CMP) (-CST) */
6628 if (TREE_CODE (arg0) == NEGATE_EXPR)
6629 return
6630 fold (build (swap_tree_comparison (code), type,
6631 TREE_OPERAND (arg0, 0),
6632 build_real (TREE_TYPE (arg1),
6633 REAL_VALUE_NEGATE (cst))));
6635 /* IEEE doesn't distinguish +0 and -0 in comparisons. */
6636 /* a CMP (-0) -> a CMP 0 */
6637 if (REAL_VALUE_MINUS_ZERO (cst))
6638 return fold (build (code, type, arg0,
6639 build_real (TREE_TYPE (arg1), dconst0)));
6641 /* x != NaN is always true, other ops are always false. */
6642 if (REAL_VALUE_ISNAN (cst)
6643 && ! HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg1))))
6645 t = (code == NE_EXPR) ? integer_one_node : integer_zero_node;
6646 return omit_one_operand (type, convert (type, t), arg0);
6649 /* Fold comparisons against infinity. */
6650 if (REAL_VALUE_ISINF (cst))
6652 tem = fold_inf_compare (code, type, arg0, arg1);
6653 if (tem != NULL_TREE)
6654 return tem;
6658 /* If this is a comparison of a real constant with a PLUS_EXPR
6659 or a MINUS_EXPR of a real constant, we can convert it into a
6660 comparison with a revised real constant as long as no overflow
6661 occurs when unsafe_math_optimizations are enabled. */
6662 if (flag_unsafe_math_optimizations
6663 && TREE_CODE (arg1) == REAL_CST
6664 && (TREE_CODE (arg0) == PLUS_EXPR
6665 || TREE_CODE (arg0) == MINUS_EXPR)
6666 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
6667 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
6668 ? MINUS_EXPR : PLUS_EXPR,
6669 arg1, TREE_OPERAND (arg0, 1), 0))
6670 && ! TREE_CONSTANT_OVERFLOW (tem))
6671 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
6673 /* Likewise, we can simplify a comparison of a real constant with
6674 a MINUS_EXPR whose first operand is also a real constant, i.e.
6675 (c1 - x) < c2 becomes x > c1-c2. */
6676 if (flag_unsafe_math_optimizations
6677 && TREE_CODE (arg1) == REAL_CST
6678 && TREE_CODE (arg0) == MINUS_EXPR
6679 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST
6680 && 0 != (tem = const_binop (MINUS_EXPR, TREE_OPERAND (arg0, 0),
6681 arg1, 0))
6682 && ! TREE_CONSTANT_OVERFLOW (tem))
6683 return fold (build (swap_tree_comparison (code), type,
6684 TREE_OPERAND (arg0, 1), tem));
6686 /* Fold comparisons against built-in math functions. */
6687 if (TREE_CODE (arg1) == REAL_CST
6688 && flag_unsafe_math_optimizations
6689 && ! flag_errno_math)
6691 enum built_in_function fcode = builtin_mathfn_code (arg0);
6693 if (fcode != END_BUILTINS)
6695 tem = fold_mathfn_compare (fcode, code, type, arg0, arg1);
6696 if (tem != NULL_TREE)
6697 return tem;
6702 /* Convert foo++ == CONST into ++foo == CONST + INCR.
6703 First, see if one arg is constant; find the constant arg
6704 and the other one. */
6706 tree constop = 0, varop = NULL_TREE;
6707 int constopnum = -1;
6709 if (TREE_CONSTANT (arg1))
6710 constopnum = 1, constop = arg1, varop = arg0;
6711 if (TREE_CONSTANT (arg0))
6712 constopnum = 0, constop = arg0, varop = arg1;
6714 if (constop && TREE_CODE (varop) == POSTINCREMENT_EXPR)
6716 /* This optimization is invalid for ordered comparisons
6717 if CONST+INCR overflows or if foo+incr might overflow.
6718 This optimization is invalid for floating point due to rounding.
6719 For pointer types we assume overflow doesn't happen. */
6720 if (POINTER_TYPE_P (TREE_TYPE (varop))
6721 || (! FLOAT_TYPE_P (TREE_TYPE (varop))
6722 && (code == EQ_EXPR || code == NE_EXPR)))
6724 tree newconst
6725 = fold (build (PLUS_EXPR, TREE_TYPE (varop),
6726 constop, TREE_OPERAND (varop, 1)));
6728 /* Do not overwrite the current varop to be a preincrement,
6729 create a new node so that we won't confuse our caller who
6730 might create trees and throw them away, reusing the
6731 arguments that they passed to build. This shows up in
6732 the THEN or ELSE parts of ?: being postincrements. */
6733 varop = build (PREINCREMENT_EXPR, TREE_TYPE (varop),
6734 TREE_OPERAND (varop, 0),
6735 TREE_OPERAND (varop, 1));
6737 /* If VAROP is a reference to a bitfield, we must mask
6738 the constant by the width of the field. */
6739 if (TREE_CODE (TREE_OPERAND (varop, 0)) == COMPONENT_REF
6740 && DECL_BIT_FIELD(TREE_OPERAND
6741 (TREE_OPERAND (varop, 0), 1)))
6743 int size
6744 = TREE_INT_CST_LOW (DECL_SIZE
6745 (TREE_OPERAND
6746 (TREE_OPERAND (varop, 0), 1)));
6747 tree mask, unsigned_type;
6748 unsigned int precision;
6749 tree folded_compare;
6751 /* First check whether the comparison would come out
6752 always the same. If we don't do that we would
6753 change the meaning with the masking. */
6754 if (constopnum == 0)
6755 folded_compare = fold (build (code, type, constop,
6756 TREE_OPERAND (varop, 0)));
6757 else
6758 folded_compare = fold (build (code, type,
6759 TREE_OPERAND (varop, 0),
6760 constop));
6761 if (integer_zerop (folded_compare)
6762 || integer_onep (folded_compare))
6763 return omit_one_operand (type, folded_compare, varop);
6765 unsigned_type = (*lang_hooks.types.type_for_size)(size, 1);
6766 precision = TYPE_PRECISION (unsigned_type);
6767 mask = build_int_2 (~0, ~0);
6768 TREE_TYPE (mask) = unsigned_type;
6769 force_fit_type (mask, 0);
6770 mask = const_binop (RSHIFT_EXPR, mask,
6771 size_int (precision - size), 0);
6772 newconst = fold (build (BIT_AND_EXPR,
6773 TREE_TYPE (varop), newconst,
6774 convert (TREE_TYPE (varop),
6775 mask)));
6778 t = build (code, type,
6779 (constopnum == 0) ? newconst : varop,
6780 (constopnum == 1) ? newconst : varop);
6781 return t;
6784 else if (constop && TREE_CODE (varop) == POSTDECREMENT_EXPR)
6786 if (POINTER_TYPE_P (TREE_TYPE (varop))
6787 || (! FLOAT_TYPE_P (TREE_TYPE (varop))
6788 && (code == EQ_EXPR || code == NE_EXPR)))
6790 tree newconst
6791 = fold (build (MINUS_EXPR, TREE_TYPE (varop),
6792 constop, TREE_OPERAND (varop, 1)));
6794 /* Do not overwrite the current varop to be a predecrement,
6795 create a new node so that we won't confuse our caller who
6796 might create trees and throw them away, reusing the
6797 arguments that they passed to build. This shows up in
6798 the THEN or ELSE parts of ?: being postdecrements. */
6799 varop = build (PREDECREMENT_EXPR, TREE_TYPE (varop),
6800 TREE_OPERAND (varop, 0),
6801 TREE_OPERAND (varop, 1));
6803 if (TREE_CODE (TREE_OPERAND (varop, 0)) == COMPONENT_REF
6804 && DECL_BIT_FIELD(TREE_OPERAND
6805 (TREE_OPERAND (varop, 0), 1)))
6807 int size
6808 = TREE_INT_CST_LOW (DECL_SIZE
6809 (TREE_OPERAND
6810 (TREE_OPERAND (varop, 0), 1)));
6811 tree mask, unsigned_type;
6812 unsigned int precision;
6813 tree folded_compare;
6815 if (constopnum == 0)
6816 folded_compare = fold (build (code, type, constop,
6817 TREE_OPERAND (varop, 0)));
6818 else
6819 folded_compare = fold (build (code, type,
6820 TREE_OPERAND (varop, 0),
6821 constop));
6822 if (integer_zerop (folded_compare)
6823 || integer_onep (folded_compare))
6824 return omit_one_operand (type, folded_compare, varop);
6826 unsigned_type = (*lang_hooks.types.type_for_size)(size, 1);
6827 precision = TYPE_PRECISION (unsigned_type);
6828 mask = build_int_2 (~0, ~0);
6829 TREE_TYPE (mask) = TREE_TYPE (varop);
6830 force_fit_type (mask, 0);
6831 mask = const_binop (RSHIFT_EXPR, mask,
6832 size_int (precision - size), 0);
6833 newconst = fold (build (BIT_AND_EXPR,
6834 TREE_TYPE (varop), newconst,
6835 convert (TREE_TYPE (varop),
6836 mask)));
6839 t = build (code, type,
6840 (constopnum == 0) ? newconst : varop,
6841 (constopnum == 1) ? newconst : varop);
6842 return t;
6847 /* Change X >= C to X > (C - 1) and X < C to X <= (C - 1) if C > 0.
6848 This transformation affects the cases which are handled in later
6849 optimizations involving comparisons with non-negative constants. */
6850 if (TREE_CODE (arg1) == INTEGER_CST
6851 && TREE_CODE (arg0) != INTEGER_CST
6852 && tree_int_cst_sgn (arg1) > 0)
6854 switch (code)
6856 case GE_EXPR:
6857 code = GT_EXPR;
6858 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
6859 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6860 break;
6862 case LT_EXPR:
6863 code = LE_EXPR;
6864 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
6865 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6866 break;
6868 default:
6869 break;
6873 /* Comparisons with the highest or lowest possible integer of
6874 the specified size will have known values. */
6876 int width = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg1)));
6878 if (TREE_CODE (arg1) == INTEGER_CST
6879 && ! TREE_CONSTANT_OVERFLOW (arg1)
6880 && width <= HOST_BITS_PER_WIDE_INT
6881 && (INTEGRAL_TYPE_P (TREE_TYPE (arg1))
6882 || POINTER_TYPE_P (TREE_TYPE (arg1))))
6884 unsigned HOST_WIDE_INT signed_max;
6885 unsigned HOST_WIDE_INT max, min;
6887 signed_max = ((unsigned HOST_WIDE_INT) 1 << (width - 1)) - 1;
6889 if (TREE_UNSIGNED (TREE_TYPE (arg1)))
6891 max = ((unsigned HOST_WIDE_INT) 2 << (width - 1)) - 1;
6892 min = 0;
6894 else
6896 max = signed_max;
6897 min = ((unsigned HOST_WIDE_INT) -1 << (width - 1));
6900 if (TREE_INT_CST_HIGH (arg1) == 0
6901 && TREE_INT_CST_LOW (arg1) == max)
6902 switch (code)
6904 case GT_EXPR:
6905 return omit_one_operand (type,
6906 convert (type, integer_zero_node),
6907 arg0);
6908 case GE_EXPR:
6909 code = EQ_EXPR;
6910 TREE_SET_CODE (t, EQ_EXPR);
6911 break;
6912 case LE_EXPR:
6913 return omit_one_operand (type,
6914 convert (type, integer_one_node),
6915 arg0);
6916 case LT_EXPR:
6917 code = NE_EXPR;
6918 TREE_SET_CODE (t, NE_EXPR);
6919 break;
6921 /* The GE_EXPR and LT_EXPR cases above are not normally
6922 reached because of previous transformations. */
6924 default:
6925 break;
6927 else if (TREE_INT_CST_HIGH (arg1) == 0
6928 && TREE_INT_CST_LOW (arg1) == max - 1)
6929 switch (code)
6931 case GT_EXPR:
6932 code = EQ_EXPR;
6933 arg1 = const_binop (PLUS_EXPR, arg1, integer_one_node, 0);
6934 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6935 break;
6936 case LE_EXPR:
6937 code = NE_EXPR;
6938 arg1 = const_binop (PLUS_EXPR, arg1, integer_one_node, 0);
6939 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6940 break;
6941 default:
6942 break;
6944 else if (TREE_INT_CST_HIGH (arg1) == (min ? -1 : 0)
6945 && TREE_INT_CST_LOW (arg1) == min)
6946 switch (code)
6948 case LT_EXPR:
6949 return omit_one_operand (type,
6950 convert (type, integer_zero_node),
6951 arg0);
6952 case LE_EXPR:
6953 code = EQ_EXPR;
6954 TREE_SET_CODE (t, EQ_EXPR);
6955 break;
6957 case GE_EXPR:
6958 return omit_one_operand (type,
6959 convert (type, integer_one_node),
6960 arg0);
6961 case GT_EXPR:
6962 code = NE_EXPR;
6963 TREE_SET_CODE (t, NE_EXPR);
6964 break;
6966 default:
6967 break;
6969 else if (TREE_INT_CST_HIGH (arg1) == (min ? -1 : 0)
6970 && TREE_INT_CST_LOW (arg1) == min + 1)
6971 switch (code)
6973 case GE_EXPR:
6974 code = NE_EXPR;
6975 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
6976 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6977 break;
6978 case LT_EXPR:
6979 code = EQ_EXPR;
6980 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
6981 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6982 break;
6983 default:
6984 break;
6987 else if (TREE_INT_CST_HIGH (arg1) == 0
6988 && TREE_INT_CST_LOW (arg1) == signed_max
6989 && TREE_UNSIGNED (TREE_TYPE (arg1))
6990 /* signed_type does not work on pointer types. */
6991 && INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
6993 /* The following case also applies to X < signed_max+1
6994 and X >= signed_max+1 because previous transformations. */
6995 if (code == LE_EXPR || code == GT_EXPR)
6997 tree st0, st1;
6998 st0 = (*lang_hooks.types.signed_type) (TREE_TYPE (arg0));
6999 st1 = (*lang_hooks.types.signed_type) (TREE_TYPE (arg1));
7000 return fold
7001 (build (code == LE_EXPR ? GE_EXPR: LT_EXPR,
7002 type, convert (st0, arg0),
7003 convert (st1, integer_zero_node)));
7009 /* If this is an EQ or NE comparison of a constant with a PLUS_EXPR or
7010 a MINUS_EXPR of a constant, we can convert it into a comparison with
7011 a revised constant as long as no overflow occurs. */
7012 if ((code == EQ_EXPR || code == NE_EXPR)
7013 && TREE_CODE (arg1) == INTEGER_CST
7014 && (TREE_CODE (arg0) == PLUS_EXPR
7015 || TREE_CODE (arg0) == MINUS_EXPR)
7016 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
7017 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
7018 ? MINUS_EXPR : PLUS_EXPR,
7019 arg1, TREE_OPERAND (arg0, 1), 0))
7020 && ! TREE_CONSTANT_OVERFLOW (tem))
7021 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
7023 /* Similarly for a NEGATE_EXPR. */
7024 else if ((code == EQ_EXPR || code == NE_EXPR)
7025 && TREE_CODE (arg0) == NEGATE_EXPR
7026 && TREE_CODE (arg1) == INTEGER_CST
7027 && 0 != (tem = negate_expr (arg1))
7028 && TREE_CODE (tem) == INTEGER_CST
7029 && ! TREE_CONSTANT_OVERFLOW (tem))
7030 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
7032 /* If we have X - Y == 0, we can convert that to X == Y and similarly
7033 for !=. Don't do this for ordered comparisons due to overflow. */
7034 else if ((code == NE_EXPR || code == EQ_EXPR)
7035 && integer_zerop (arg1) && TREE_CODE (arg0) == MINUS_EXPR)
7036 return fold (build (code, type,
7037 TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1)));
7039 /* If we are widening one operand of an integer comparison,
7040 see if the other operand is similarly being widened. Perhaps we
7041 can do the comparison in the narrower type. */
7042 else if (TREE_CODE (TREE_TYPE (arg0)) == INTEGER_TYPE
7043 && TREE_CODE (arg0) == NOP_EXPR
7044 && (tem = get_unwidened (arg0, NULL_TREE)) != arg0
7045 && (t1 = get_unwidened (arg1, TREE_TYPE (tem))) != 0
7046 && (TREE_TYPE (t1) == TREE_TYPE (tem)
7047 || (TREE_CODE (t1) == INTEGER_CST
7048 && int_fits_type_p (t1, TREE_TYPE (tem)))))
7049 return fold (build (code, type, tem, convert (TREE_TYPE (tem), t1)));
7051 /* If this is comparing a constant with a MIN_EXPR or a MAX_EXPR of a
7052 constant, we can simplify it. */
7053 else if (TREE_CODE (arg1) == INTEGER_CST
7054 && (TREE_CODE (arg0) == MIN_EXPR
7055 || TREE_CODE (arg0) == MAX_EXPR)
7056 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
7057 return optimize_minmax_comparison (t);
7059 /* If we are comparing an ABS_EXPR with a constant, we can
7060 convert all the cases into explicit comparisons, but they may
7061 well not be faster than doing the ABS and one comparison.
7062 But ABS (X) <= C is a range comparison, which becomes a subtraction
7063 and a comparison, and is probably faster. */
7064 else if (code == LE_EXPR && TREE_CODE (arg1) == INTEGER_CST
7065 && TREE_CODE (arg0) == ABS_EXPR
7066 && ! TREE_SIDE_EFFECTS (arg0)
7067 && (0 != (tem = negate_expr (arg1)))
7068 && TREE_CODE (tem) == INTEGER_CST
7069 && ! TREE_CONSTANT_OVERFLOW (tem))
7070 return fold (build (TRUTH_ANDIF_EXPR, type,
7071 build (GE_EXPR, type, TREE_OPERAND (arg0, 0), tem),
7072 build (LE_EXPR, type,
7073 TREE_OPERAND (arg0, 0), arg1)));
7075 /* If this is an EQ or NE comparison with zero and ARG0 is
7076 (1 << foo) & bar, convert it to (bar >> foo) & 1. Both require
7077 two operations, but the latter can be done in one less insn
7078 on machines that have only two-operand insns or on which a
7079 constant cannot be the first operand. */
7080 if (integer_zerop (arg1) && (code == EQ_EXPR || code == NE_EXPR)
7081 && TREE_CODE (arg0) == BIT_AND_EXPR)
7083 if (TREE_CODE (TREE_OPERAND (arg0, 0)) == LSHIFT_EXPR
7084 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg0, 0), 0)))
7085 return
7086 fold (build (code, type,
7087 build (BIT_AND_EXPR, TREE_TYPE (arg0),
7088 build (RSHIFT_EXPR,
7089 TREE_TYPE (TREE_OPERAND (arg0, 0)),
7090 TREE_OPERAND (arg0, 1),
7091 TREE_OPERAND (TREE_OPERAND (arg0, 0), 1)),
7092 convert (TREE_TYPE (arg0),
7093 integer_one_node)),
7094 arg1));
7095 else if (TREE_CODE (TREE_OPERAND (arg0, 1)) == LSHIFT_EXPR
7096 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg0, 1), 0)))
7097 return
7098 fold (build (code, type,
7099 build (BIT_AND_EXPR, TREE_TYPE (arg0),
7100 build (RSHIFT_EXPR,
7101 TREE_TYPE (TREE_OPERAND (arg0, 1)),
7102 TREE_OPERAND (arg0, 0),
7103 TREE_OPERAND (TREE_OPERAND (arg0, 1), 1)),
7104 convert (TREE_TYPE (arg0),
7105 integer_one_node)),
7106 arg1));
7109 /* If this is an NE or EQ comparison of zero against the result of a
7110 signed MOD operation whose second operand is a power of 2, make
7111 the MOD operation unsigned since it is simpler and equivalent. */
7112 if ((code == NE_EXPR || code == EQ_EXPR)
7113 && integer_zerop (arg1)
7114 && ! TREE_UNSIGNED (TREE_TYPE (arg0))
7115 && (TREE_CODE (arg0) == TRUNC_MOD_EXPR
7116 || TREE_CODE (arg0) == CEIL_MOD_EXPR
7117 || TREE_CODE (arg0) == FLOOR_MOD_EXPR
7118 || TREE_CODE (arg0) == ROUND_MOD_EXPR)
7119 && integer_pow2p (TREE_OPERAND (arg0, 1)))
7121 tree newtype = (*lang_hooks.types.unsigned_type) (TREE_TYPE (arg0));
7122 tree newmod = build (TREE_CODE (arg0), newtype,
7123 convert (newtype, TREE_OPERAND (arg0, 0)),
7124 convert (newtype, TREE_OPERAND (arg0, 1)));
7126 return build (code, type, newmod, convert (newtype, arg1));
7129 /* If this is an NE comparison of zero with an AND of one, remove the
7130 comparison since the AND will give the correct value. */
7131 if (code == NE_EXPR && integer_zerop (arg1)
7132 && TREE_CODE (arg0) == BIT_AND_EXPR
7133 && integer_onep (TREE_OPERAND (arg0, 1)))
7134 return convert (type, arg0);
7136 /* If we have (A & C) == C where C is a power of 2, convert this into
7137 (A & C) != 0. Similarly for NE_EXPR. */
7138 if ((code == EQ_EXPR || code == NE_EXPR)
7139 && TREE_CODE (arg0) == BIT_AND_EXPR
7140 && integer_pow2p (TREE_OPERAND (arg0, 1))
7141 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
7142 return fold (build (code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
7143 arg0, integer_zero_node));
7145 /* If we have (A & C) != 0 or (A & C) == 0 and C is a power of
7146 2, then fold the expression into shifts and logical operations. */
7147 tem = fold_single_bit_test (code, arg0, arg1, type);
7148 if (tem)
7149 return tem;
7151 /* If X is unsigned, convert X < (1 << Y) into X >> Y == 0
7152 and similarly for >= into !=. */
7153 if ((code == LT_EXPR || code == GE_EXPR)
7154 && TREE_UNSIGNED (TREE_TYPE (arg0))
7155 && TREE_CODE (arg1) == LSHIFT_EXPR
7156 && integer_onep (TREE_OPERAND (arg1, 0)))
7157 return build (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
7158 build (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
7159 TREE_OPERAND (arg1, 1)),
7160 convert (TREE_TYPE (arg0), integer_zero_node));
7162 else if ((code == LT_EXPR || code == GE_EXPR)
7163 && TREE_UNSIGNED (TREE_TYPE (arg0))
7164 && (TREE_CODE (arg1) == NOP_EXPR
7165 || TREE_CODE (arg1) == CONVERT_EXPR)
7166 && TREE_CODE (TREE_OPERAND (arg1, 0)) == LSHIFT_EXPR
7167 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg1, 0), 0)))
7168 return
7169 build (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
7170 convert (TREE_TYPE (arg0),
7171 build (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
7172 TREE_OPERAND (TREE_OPERAND (arg1, 0), 1))),
7173 convert (TREE_TYPE (arg0), integer_zero_node));
7175 /* Simplify comparison of something with itself. (For IEEE
7176 floating-point, we can only do some of these simplifications.) */
7177 if (operand_equal_p (arg0, arg1, 0))
7179 switch (code)
7181 case EQ_EXPR:
7182 case GE_EXPR:
7183 case LE_EXPR:
7184 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
7185 || ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
7186 return constant_boolean_node (1, type);
7187 code = EQ_EXPR;
7188 TREE_SET_CODE (t, code);
7189 break;
7191 case NE_EXPR:
7192 /* For NE, we can only do this simplification if integer
7193 or we don't honor IEEE floating point NaNs. */
7194 if (FLOAT_TYPE_P (TREE_TYPE (arg0))
7195 && HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
7196 break;
7197 /* ... fall through ... */
7198 case GT_EXPR:
7199 case LT_EXPR:
7200 return constant_boolean_node (0, type);
7201 default:
7202 abort ();
7206 /* If we are comparing an expression that just has comparisons
7207 of two integer values, arithmetic expressions of those comparisons,
7208 and constants, we can simplify it. There are only three cases
7209 to check: the two values can either be equal, the first can be
7210 greater, or the second can be greater. Fold the expression for
7211 those three values. Since each value must be 0 or 1, we have
7212 eight possibilities, each of which corresponds to the constant 0
7213 or 1 or one of the six possible comparisons.
7215 This handles common cases like (a > b) == 0 but also handles
7216 expressions like ((x > y) - (y > x)) > 0, which supposedly
7217 occur in macroized code. */
7219 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) != INTEGER_CST)
7221 tree cval1 = 0, cval2 = 0;
7222 int save_p = 0;
7224 if (twoval_comparison_p (arg0, &cval1, &cval2, &save_p)
7225 /* Don't handle degenerate cases here; they should already
7226 have been handled anyway. */
7227 && cval1 != 0 && cval2 != 0
7228 && ! (TREE_CONSTANT (cval1) && TREE_CONSTANT (cval2))
7229 && TREE_TYPE (cval1) == TREE_TYPE (cval2)
7230 && INTEGRAL_TYPE_P (TREE_TYPE (cval1))
7231 && TYPE_MAX_VALUE (TREE_TYPE (cval1))
7232 && TYPE_MAX_VALUE (TREE_TYPE (cval2))
7233 && ! operand_equal_p (TYPE_MIN_VALUE (TREE_TYPE (cval1)),
7234 TYPE_MAX_VALUE (TREE_TYPE (cval2)), 0))
7236 tree maxval = TYPE_MAX_VALUE (TREE_TYPE (cval1));
7237 tree minval = TYPE_MIN_VALUE (TREE_TYPE (cval1));
7239 /* We can't just pass T to eval_subst in case cval1 or cval2
7240 was the same as ARG1. */
7242 tree high_result
7243 = fold (build (code, type,
7244 eval_subst (arg0, cval1, maxval, cval2, minval),
7245 arg1));
7246 tree equal_result
7247 = fold (build (code, type,
7248 eval_subst (arg0, cval1, maxval, cval2, maxval),
7249 arg1));
7250 tree low_result
7251 = fold (build (code, type,
7252 eval_subst (arg0, cval1, minval, cval2, maxval),
7253 arg1));
7255 /* All three of these results should be 0 or 1. Confirm they
7256 are. Then use those values to select the proper code
7257 to use. */
7259 if ((integer_zerop (high_result)
7260 || integer_onep (high_result))
7261 && (integer_zerop (equal_result)
7262 || integer_onep (equal_result))
7263 && (integer_zerop (low_result)
7264 || integer_onep (low_result)))
7266 /* Make a 3-bit mask with the high-order bit being the
7267 value for `>', the next for '=', and the low for '<'. */
7268 switch ((integer_onep (high_result) * 4)
7269 + (integer_onep (equal_result) * 2)
7270 + integer_onep (low_result))
7272 case 0:
7273 /* Always false. */
7274 return omit_one_operand (type, integer_zero_node, arg0);
7275 case 1:
7276 code = LT_EXPR;
7277 break;
7278 case 2:
7279 code = EQ_EXPR;
7280 break;
7281 case 3:
7282 code = LE_EXPR;
7283 break;
7284 case 4:
7285 code = GT_EXPR;
7286 break;
7287 case 5:
7288 code = NE_EXPR;
7289 break;
7290 case 6:
7291 code = GE_EXPR;
7292 break;
7293 case 7:
7294 /* Always true. */
7295 return omit_one_operand (type, integer_one_node, arg0);
7298 t = build (code, type, cval1, cval2);
7299 if (save_p)
7300 return save_expr (t);
7301 else
7302 return fold (t);
7307 /* If this is a comparison of a field, we may be able to simplify it. */
7308 if (((TREE_CODE (arg0) == COMPONENT_REF
7309 && (*lang_hooks.can_use_bit_fields_p) ())
7310 || TREE_CODE (arg0) == BIT_FIELD_REF)
7311 && (code == EQ_EXPR || code == NE_EXPR)
7312 /* Handle the constant case even without -O
7313 to make sure the warnings are given. */
7314 && (optimize || TREE_CODE (arg1) == INTEGER_CST))
7316 t1 = optimize_bit_field_compare (code, type, arg0, arg1);
7317 return t1 ? t1 : t;
7320 /* If this is a comparison of complex values and either or both sides
7321 are a COMPLEX_EXPR or COMPLEX_CST, it is best to split up the
7322 comparisons and join them with a TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR.
7323 This may prevent needless evaluations. */
7324 if ((code == EQ_EXPR || code == NE_EXPR)
7325 && TREE_CODE (TREE_TYPE (arg0)) == COMPLEX_TYPE
7326 && (TREE_CODE (arg0) == COMPLEX_EXPR
7327 || TREE_CODE (arg1) == COMPLEX_EXPR
7328 || TREE_CODE (arg0) == COMPLEX_CST
7329 || TREE_CODE (arg1) == COMPLEX_CST))
7331 tree subtype = TREE_TYPE (TREE_TYPE (arg0));
7332 tree real0, imag0, real1, imag1;
7334 arg0 = save_expr (arg0);
7335 arg1 = save_expr (arg1);
7336 real0 = fold (build1 (REALPART_EXPR, subtype, arg0));
7337 imag0 = fold (build1 (IMAGPART_EXPR, subtype, arg0));
7338 real1 = fold (build1 (REALPART_EXPR, subtype, arg1));
7339 imag1 = fold (build1 (IMAGPART_EXPR, subtype, arg1));
7341 return fold (build ((code == EQ_EXPR ? TRUTH_ANDIF_EXPR
7342 : TRUTH_ORIF_EXPR),
7343 type,
7344 fold (build (code, type, real0, real1)),
7345 fold (build (code, type, imag0, imag1))));
7348 /* Optimize comparisons of strlen vs zero to a compare of the
7349 first character of the string vs zero. To wit,
7350 strlen(ptr) == 0 => *ptr == 0
7351 strlen(ptr) != 0 => *ptr != 0
7352 Other cases should reduce to one of these two (or a constant)
7353 due to the return value of strlen being unsigned. */
7354 if ((code == EQ_EXPR || code == NE_EXPR)
7355 && integer_zerop (arg1)
7356 && TREE_CODE (arg0) == CALL_EXPR
7357 && TREE_CODE (TREE_OPERAND (arg0, 0)) == ADDR_EXPR)
7359 tree fndecl = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
7360 tree arglist;
7362 if (TREE_CODE (fndecl) == FUNCTION_DECL
7363 && DECL_BUILT_IN (fndecl)
7364 && DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_MD
7365 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STRLEN
7366 && (arglist = TREE_OPERAND (arg0, 1))
7367 && TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) == POINTER_TYPE
7368 && ! TREE_CHAIN (arglist))
7369 return fold (build (code, type,
7370 build1 (INDIRECT_REF, char_type_node,
7371 TREE_VALUE(arglist)),
7372 integer_zero_node));
7375 /* From here on, the only cases we handle are when the result is
7376 known to be a constant.
7378 To compute GT, swap the arguments and do LT.
7379 To compute GE, do LT and invert the result.
7380 To compute LE, swap the arguments, do LT and invert the result.
7381 To compute NE, do EQ and invert the result.
7383 Therefore, the code below must handle only EQ and LT. */
7385 if (code == LE_EXPR || code == GT_EXPR)
7387 tem = arg0, arg0 = arg1, arg1 = tem;
7388 code = swap_tree_comparison (code);
7391 /* Note that it is safe to invert for real values here because we
7392 will check below in the one case that it matters. */
7394 t1 = NULL_TREE;
7395 invert = 0;
7396 if (code == NE_EXPR || code == GE_EXPR)
7398 invert = 1;
7399 code = invert_tree_comparison (code);
7402 /* Compute a result for LT or EQ if args permit;
7403 otherwise return T. */
7404 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
7406 if (code == EQ_EXPR)
7407 t1 = build_int_2 (tree_int_cst_equal (arg0, arg1), 0);
7408 else
7409 t1 = build_int_2 ((TREE_UNSIGNED (TREE_TYPE (arg0))
7410 ? INT_CST_LT_UNSIGNED (arg0, arg1)
7411 : INT_CST_LT (arg0, arg1)),
7415 #if 0 /* This is no longer useful, but breaks some real code. */
7416 /* Assume a nonexplicit constant cannot equal an explicit one,
7417 since such code would be undefined anyway.
7418 Exception: on sysvr4, using #pragma weak,
7419 a label can come out as 0. */
7420 else if (TREE_CODE (arg1) == INTEGER_CST
7421 && !integer_zerop (arg1)
7422 && TREE_CONSTANT (arg0)
7423 && TREE_CODE (arg0) == ADDR_EXPR
7424 && code == EQ_EXPR)
7425 t1 = build_int_2 (0, 0);
7426 #endif
7427 /* Two real constants can be compared explicitly. */
7428 else if (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
7430 /* If either operand is a NaN, the result is false with two
7431 exceptions: First, an NE_EXPR is true on NaNs, but that case
7432 is already handled correctly since we will be inverting the
7433 result for NE_EXPR. Second, if we had inverted a LE_EXPR
7434 or a GE_EXPR into a LT_EXPR, we must return true so that it
7435 will be inverted into false. */
7437 if (REAL_VALUE_ISNAN (TREE_REAL_CST (arg0))
7438 || REAL_VALUE_ISNAN (TREE_REAL_CST (arg1)))
7439 t1 = build_int_2 (invert && code == LT_EXPR, 0);
7441 else if (code == EQ_EXPR)
7442 t1 = build_int_2 (REAL_VALUES_EQUAL (TREE_REAL_CST (arg0),
7443 TREE_REAL_CST (arg1)),
7445 else
7446 t1 = build_int_2 (REAL_VALUES_LESS (TREE_REAL_CST (arg0),
7447 TREE_REAL_CST (arg1)),
7451 if (t1 == NULL_TREE)
7452 return t;
7454 if (invert)
7455 TREE_INT_CST_LOW (t1) ^= 1;
7457 TREE_TYPE (t1) = type;
7458 if (TREE_CODE (type) == BOOLEAN_TYPE)
7459 return (*lang_hooks.truthvalue_conversion) (t1);
7460 return t1;
7462 case COND_EXPR:
7463 /* Pedantic ANSI C says that a conditional expression is never an lvalue,
7464 so all simple results must be passed through pedantic_non_lvalue. */
7465 if (TREE_CODE (arg0) == INTEGER_CST)
7466 return pedantic_non_lvalue
7467 (TREE_OPERAND (t, (integer_zerop (arg0) ? 2 : 1)));
7468 else if (operand_equal_p (arg1, TREE_OPERAND (expr, 2), 0))
7469 return pedantic_omit_one_operand (type, arg1, arg0);
7471 /* If the second operand is zero, invert the comparison and swap
7472 the second and third operands. Likewise if the second operand
7473 is constant and the third is not or if the third operand is
7474 equivalent to the first operand of the comparison. */
7476 if (integer_zerop (arg1)
7477 || (TREE_CONSTANT (arg1) && ! TREE_CONSTANT (TREE_OPERAND (t, 2)))
7478 || (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
7479 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
7480 TREE_OPERAND (t, 2),
7481 TREE_OPERAND (arg0, 1))))
7483 /* See if this can be inverted. If it can't, possibly because
7484 it was a floating-point inequality comparison, don't do
7485 anything. */
7486 tem = invert_truthvalue (arg0);
7488 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
7490 t = build (code, type, tem,
7491 TREE_OPERAND (t, 2), TREE_OPERAND (t, 1));
7492 arg0 = tem;
7493 /* arg1 should be the first argument of the new T. */
7494 arg1 = TREE_OPERAND (t, 1);
7495 STRIP_NOPS (arg1);
7499 /* If we have A op B ? A : C, we may be able to convert this to a
7500 simpler expression, depending on the operation and the values
7501 of B and C. Signed zeros prevent all of these transformations,
7502 for reasons given above each one. */
7504 if (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
7505 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
7506 arg1, TREE_OPERAND (arg0, 1))
7507 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg1))))
7509 tree arg2 = TREE_OPERAND (t, 2);
7510 enum tree_code comp_code = TREE_CODE (arg0);
7512 STRIP_NOPS (arg2);
7514 /* If we have A op 0 ? A : -A, consider applying the following
7515 transformations:
7517 A == 0? A : -A same as -A
7518 A != 0? A : -A same as A
7519 A >= 0? A : -A same as abs (A)
7520 A > 0? A : -A same as abs (A)
7521 A <= 0? A : -A same as -abs (A)
7522 A < 0? A : -A same as -abs (A)
7524 None of these transformations work for modes with signed
7525 zeros. If A is +/-0, the first two transformations will
7526 change the sign of the result (from +0 to -0, or vice
7527 versa). The last four will fix the sign of the result,
7528 even though the original expressions could be positive or
7529 negative, depending on the sign of A.
7531 Note that all these transformations are correct if A is
7532 NaN, since the two alternatives (A and -A) are also NaNs. */
7533 if ((FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (arg0, 1)))
7534 ? real_zerop (TREE_OPERAND (arg0, 1))
7535 : integer_zerop (TREE_OPERAND (arg0, 1)))
7536 && TREE_CODE (arg2) == NEGATE_EXPR
7537 && operand_equal_p (TREE_OPERAND (arg2, 0), arg1, 0))
7538 switch (comp_code)
7540 case EQ_EXPR:
7541 return
7542 pedantic_non_lvalue
7543 (convert (type,
7544 negate_expr
7545 (convert (TREE_TYPE (TREE_OPERAND (t, 1)),
7546 arg1))));
7547 case NE_EXPR:
7548 return pedantic_non_lvalue (convert (type, arg1));
7549 case GE_EXPR:
7550 case GT_EXPR:
7551 if (TREE_UNSIGNED (TREE_TYPE (arg1)))
7552 arg1 = convert ((*lang_hooks.types.signed_type)
7553 (TREE_TYPE (arg1)), arg1);
7554 return pedantic_non_lvalue
7555 (convert (type, fold (build1 (ABS_EXPR,
7556 TREE_TYPE (arg1), arg1))));
7557 case LE_EXPR:
7558 case LT_EXPR:
7559 if (TREE_UNSIGNED (TREE_TYPE (arg1)))
7560 arg1 = convert ((lang_hooks.types.signed_type)
7561 (TREE_TYPE (arg1)), arg1);
7562 return pedantic_non_lvalue
7563 (negate_expr (convert (type,
7564 fold (build1 (ABS_EXPR,
7565 TREE_TYPE (arg1),
7566 arg1)))));
7567 default:
7568 abort ();
7571 /* A != 0 ? A : 0 is simply A, unless A is -0. Likewise
7572 A == 0 ? A : 0 is always 0 unless A is -0. Note that
7573 both transformations are correct when A is NaN: A != 0
7574 is then true, and A == 0 is false. */
7576 if (integer_zerop (TREE_OPERAND (arg0, 1)) && integer_zerop (arg2))
7578 if (comp_code == NE_EXPR)
7579 return pedantic_non_lvalue (convert (type, arg1));
7580 else if (comp_code == EQ_EXPR)
7581 return pedantic_non_lvalue (convert (type, integer_zero_node));
7584 /* Try some transformations of A op B ? A : B.
7586 A == B? A : B same as B
7587 A != B? A : B same as A
7588 A >= B? A : B same as max (A, B)
7589 A > B? A : B same as max (B, A)
7590 A <= B? A : B same as min (A, B)
7591 A < B? A : B same as min (B, A)
7593 As above, these transformations don't work in the presence
7594 of signed zeros. For example, if A and B are zeros of
7595 opposite sign, the first two transformations will change
7596 the sign of the result. In the last four, the original
7597 expressions give different results for (A=+0, B=-0) and
7598 (A=-0, B=+0), but the transformed expressions do not.
7600 The first two transformations are correct if either A or B
7601 is a NaN. In the first transformation, the condition will
7602 be false, and B will indeed be chosen. In the case of the
7603 second transformation, the condition A != B will be true,
7604 and A will be chosen.
7606 The conversions to max() and min() are not correct if B is
7607 a number and A is not. The conditions in the original
7608 expressions will be false, so all four give B. The min()
7609 and max() versions would give a NaN instead. */
7610 if (operand_equal_for_comparison_p (TREE_OPERAND (arg0, 1),
7611 arg2, TREE_OPERAND (arg0, 0)))
7613 tree comp_op0 = TREE_OPERAND (arg0, 0);
7614 tree comp_op1 = TREE_OPERAND (arg0, 1);
7615 tree comp_type = TREE_TYPE (comp_op0);
7617 /* Avoid adding NOP_EXPRs in case this is an lvalue. */
7618 if (TYPE_MAIN_VARIANT (comp_type) == TYPE_MAIN_VARIANT (type))
7620 comp_type = type;
7621 comp_op0 = arg1;
7622 comp_op1 = arg2;
7625 switch (comp_code)
7627 case EQ_EXPR:
7628 return pedantic_non_lvalue (convert (type, arg2));
7629 case NE_EXPR:
7630 return pedantic_non_lvalue (convert (type, arg1));
7631 case LE_EXPR:
7632 case LT_EXPR:
7633 /* In C++ a ?: expression can be an lvalue, so put the
7634 operand which will be used if they are equal first
7635 so that we can convert this back to the
7636 corresponding COND_EXPR. */
7637 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
7638 return pedantic_non_lvalue
7639 (convert (type, fold (build (MIN_EXPR, comp_type,
7640 (comp_code == LE_EXPR
7641 ? comp_op0 : comp_op1),
7642 (comp_code == LE_EXPR
7643 ? comp_op1 : comp_op0)))));
7644 break;
7645 case GE_EXPR:
7646 case GT_EXPR:
7647 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
7648 return pedantic_non_lvalue
7649 (convert (type, fold (build (MAX_EXPR, comp_type,
7650 (comp_code == GE_EXPR
7651 ? comp_op0 : comp_op1),
7652 (comp_code == GE_EXPR
7653 ? comp_op1 : comp_op0)))));
7654 break;
7655 default:
7656 abort ();
7660 /* If this is A op C1 ? A : C2 with C1 and C2 constant integers,
7661 we might still be able to simplify this. For example,
7662 if C1 is one less or one more than C2, this might have started
7663 out as a MIN or MAX and been transformed by this function.
7664 Only good for INTEGER_TYPEs, because we need TYPE_MAX_VALUE. */
7666 if (INTEGRAL_TYPE_P (type)
7667 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
7668 && TREE_CODE (arg2) == INTEGER_CST)
7669 switch (comp_code)
7671 case EQ_EXPR:
7672 /* We can replace A with C1 in this case. */
7673 arg1 = convert (type, TREE_OPERAND (arg0, 1));
7674 t = build (code, type, TREE_OPERAND (t, 0), arg1,
7675 TREE_OPERAND (t, 2));
7676 break;
7678 case LT_EXPR:
7679 /* If C1 is C2 + 1, this is min(A, C2). */
7680 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type), 1)
7681 && operand_equal_p (TREE_OPERAND (arg0, 1),
7682 const_binop (PLUS_EXPR, arg2,
7683 integer_one_node, 0), 1))
7684 return pedantic_non_lvalue
7685 (fold (build (MIN_EXPR, type, arg1, arg2)));
7686 break;
7688 case LE_EXPR:
7689 /* If C1 is C2 - 1, this is min(A, C2). */
7690 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type), 1)
7691 && operand_equal_p (TREE_OPERAND (arg0, 1),
7692 const_binop (MINUS_EXPR, arg2,
7693 integer_one_node, 0), 1))
7694 return pedantic_non_lvalue
7695 (fold (build (MIN_EXPR, type, arg1, arg2)));
7696 break;
7698 case GT_EXPR:
7699 /* If C1 is C2 - 1, this is max(A, C2). */
7700 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type), 1)
7701 && operand_equal_p (TREE_OPERAND (arg0, 1),
7702 const_binop (MINUS_EXPR, arg2,
7703 integer_one_node, 0), 1))
7704 return pedantic_non_lvalue
7705 (fold (build (MAX_EXPR, type, arg1, arg2)));
7706 break;
7708 case GE_EXPR:
7709 /* If C1 is C2 + 1, this is max(A, C2). */
7710 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type), 1)
7711 && operand_equal_p (TREE_OPERAND (arg0, 1),
7712 const_binop (PLUS_EXPR, arg2,
7713 integer_one_node, 0), 1))
7714 return pedantic_non_lvalue
7715 (fold (build (MAX_EXPR, type, arg1, arg2)));
7716 break;
7717 case NE_EXPR:
7718 break;
7719 default:
7720 abort ();
7724 /* If the second operand is simpler than the third, swap them
7725 since that produces better jump optimization results. */
7726 if ((TREE_CONSTANT (arg1) || DECL_P (arg1)
7727 || TREE_CODE (arg1) == SAVE_EXPR)
7728 && ! (TREE_CONSTANT (TREE_OPERAND (t, 2))
7729 || DECL_P (TREE_OPERAND (t, 2))
7730 || TREE_CODE (TREE_OPERAND (t, 2)) == SAVE_EXPR))
7732 /* See if this can be inverted. If it can't, possibly because
7733 it was a floating-point inequality comparison, don't do
7734 anything. */
7735 tem = invert_truthvalue (arg0);
7737 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
7739 t = build (code, type, tem,
7740 TREE_OPERAND (t, 2), TREE_OPERAND (t, 1));
7741 arg0 = tem;
7742 /* arg1 should be the first argument of the new T. */
7743 arg1 = TREE_OPERAND (t, 1);
7744 STRIP_NOPS (arg1);
7748 /* Convert A ? 1 : 0 to simply A. */
7749 if (integer_onep (TREE_OPERAND (t, 1))
7750 && integer_zerop (TREE_OPERAND (t, 2))
7751 /* If we try to convert TREE_OPERAND (t, 0) to our type, the
7752 call to fold will try to move the conversion inside
7753 a COND, which will recurse. In that case, the COND_EXPR
7754 is probably the best choice, so leave it alone. */
7755 && type == TREE_TYPE (arg0))
7756 return pedantic_non_lvalue (arg0);
7758 /* Convert A ? 0 : 1 to !A. This prefers the use of NOT_EXPR
7759 over COND_EXPR in cases such as floating point comparisons. */
7760 if (integer_zerop (TREE_OPERAND (t, 1))
7761 && integer_onep (TREE_OPERAND (t, 2))
7762 && truth_value_p (TREE_CODE (arg0)))
7763 return pedantic_non_lvalue (convert (type,
7764 invert_truthvalue (arg0)));
7766 /* Look for expressions of the form A & 2 ? 2 : 0. The result of this
7767 operation is simply A & 2. */
7769 if (integer_zerop (TREE_OPERAND (t, 2))
7770 && TREE_CODE (arg0) == NE_EXPR
7771 && integer_zerop (TREE_OPERAND (arg0, 1))
7772 && integer_pow2p (arg1)
7773 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
7774 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
7775 arg1, 1))
7776 return pedantic_non_lvalue (convert (type, TREE_OPERAND (arg0, 0)));
7778 /* Convert A ? B : 0 into A && B if A and B are truth values. */
7779 if (integer_zerop (TREE_OPERAND (t, 2))
7780 && truth_value_p (TREE_CODE (arg0))
7781 && truth_value_p (TREE_CODE (arg1)))
7782 return pedantic_non_lvalue (fold (build (TRUTH_ANDIF_EXPR, type,
7783 arg0, arg1)));
7785 /* Convert A ? B : 1 into !A || B if A and B are truth values. */
7786 if (integer_onep (TREE_OPERAND (t, 2))
7787 && truth_value_p (TREE_CODE (arg0))
7788 && truth_value_p (TREE_CODE (arg1)))
7790 /* Only perform transformation if ARG0 is easily inverted. */
7791 tem = invert_truthvalue (arg0);
7792 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
7793 return pedantic_non_lvalue (fold (build (TRUTH_ORIF_EXPR, type,
7794 tem, arg1)));
7797 return t;
7799 case COMPOUND_EXPR:
7800 /* When pedantic, a compound expression can be neither an lvalue
7801 nor an integer constant expression. */
7802 if (TREE_SIDE_EFFECTS (arg0) || pedantic)
7803 return t;
7804 /* Don't let (0, 0) be null pointer constant. */
7805 if (integer_zerop (arg1))
7806 return build1 (NOP_EXPR, type, arg1);
7807 return convert (type, arg1);
7809 case COMPLEX_EXPR:
7810 if (wins)
7811 return build_complex (type, arg0, arg1);
7812 return t;
7814 case REALPART_EXPR:
7815 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
7816 return t;
7817 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
7818 return omit_one_operand (type, TREE_OPERAND (arg0, 0),
7819 TREE_OPERAND (arg0, 1));
7820 else if (TREE_CODE (arg0) == COMPLEX_CST)
7821 return TREE_REALPART (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 (REALPART_EXPR, type,
7825 TREE_OPERAND (arg0, 0))),
7826 fold (build1 (REALPART_EXPR,
7827 type, TREE_OPERAND (arg0, 1)))));
7828 return t;
7830 case IMAGPART_EXPR:
7831 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
7832 return convert (type, integer_zero_node);
7833 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
7834 return omit_one_operand (type, TREE_OPERAND (arg0, 1),
7835 TREE_OPERAND (arg0, 0));
7836 else if (TREE_CODE (arg0) == COMPLEX_CST)
7837 return TREE_IMAGPART (arg0);
7838 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
7839 return fold (build (TREE_CODE (arg0), type,
7840 fold (build1 (IMAGPART_EXPR, type,
7841 TREE_OPERAND (arg0, 0))),
7842 fold (build1 (IMAGPART_EXPR, type,
7843 TREE_OPERAND (arg0, 1)))));
7844 return t;
7846 /* Pull arithmetic ops out of the CLEANUP_POINT_EXPR where
7847 appropriate. */
7848 case CLEANUP_POINT_EXPR:
7849 if (! has_cleanups (arg0))
7850 return TREE_OPERAND (t, 0);
7853 enum tree_code code0 = TREE_CODE (arg0);
7854 int kind0 = TREE_CODE_CLASS (code0);
7855 tree arg00 = TREE_OPERAND (arg0, 0);
7856 tree arg01;
7858 if (kind0 == '1' || code0 == TRUTH_NOT_EXPR)
7859 return fold (build1 (code0, type,
7860 fold (build1 (CLEANUP_POINT_EXPR,
7861 TREE_TYPE (arg00), arg00))));
7863 if (kind0 == '<' || kind0 == '2'
7864 || code0 == TRUTH_ANDIF_EXPR || code0 == TRUTH_ORIF_EXPR
7865 || code0 == TRUTH_AND_EXPR || code0 == TRUTH_OR_EXPR
7866 || code0 == TRUTH_XOR_EXPR)
7868 arg01 = TREE_OPERAND (arg0, 1);
7870 if (TREE_CONSTANT (arg00)
7871 || ((code0 == TRUTH_ANDIF_EXPR || code0 == TRUTH_ORIF_EXPR)
7872 && ! has_cleanups (arg00)))
7873 return fold (build (code0, type, arg00,
7874 fold (build1 (CLEANUP_POINT_EXPR,
7875 TREE_TYPE (arg01), arg01))));
7877 if (TREE_CONSTANT (arg01))
7878 return fold (build (code0, type,
7879 fold (build1 (CLEANUP_POINT_EXPR,
7880 TREE_TYPE (arg00), arg00)),
7881 arg01));
7884 return t;
7887 case CALL_EXPR:
7888 /* Check for a built-in function. */
7889 if (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR
7890 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (expr, 0), 0))
7891 == FUNCTION_DECL)
7892 && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (expr, 0), 0)))
7894 tree tmp = fold_builtin (expr);
7895 if (tmp)
7896 return tmp;
7898 return t;
7900 default:
7901 return t;
7902 } /* switch (code) */
7905 /* Perform constant folding and related simplification of intializer
7906 expression EXPR. This behaves identically to "fold" but ignores
7907 potential run-time traps and exceptions that fold must preserve. */
7909 tree
7910 fold_initializer (tree expr)
7912 int saved_signaling_nans = flag_signaling_nans;
7913 int saved_trapping_math = flag_trapping_math;
7914 int saved_trapv = flag_trapv;
7915 tree result;
7917 flag_signaling_nans = 0;
7918 flag_trapping_math = 0;
7919 flag_trapv = 0;
7921 result = fold (expr);
7923 flag_signaling_nans = saved_signaling_nans;
7924 flag_trapping_math = saved_trapping_math;
7925 flag_trapv = saved_trapv;
7927 return result;
7930 /* Determine if first argument is a multiple of second argument. Return 0 if
7931 it is not, or we cannot easily determined it to be.
7933 An example of the sort of thing we care about (at this point; this routine
7934 could surely be made more general, and expanded to do what the *_DIV_EXPR's
7935 fold cases do now) is discovering that
7937 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
7939 is a multiple of
7941 SAVE_EXPR (J * 8)
7943 when we know that the two SAVE_EXPR (J * 8) nodes are the same node.
7945 This code also handles discovering that
7947 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
7949 is a multiple of 8 so we don't have to worry about dealing with a
7950 possible remainder.
7952 Note that we *look* inside a SAVE_EXPR only to determine how it was
7953 calculated; it is not safe for fold to do much of anything else with the
7954 internals of a SAVE_EXPR, since it cannot know when it will be evaluated
7955 at run time. For example, the latter example above *cannot* be implemented
7956 as SAVE_EXPR (I) * J or any variant thereof, since the value of J at
7957 evaluation time of the original SAVE_EXPR is not necessarily the same at
7958 the time the new expression is evaluated. The only optimization of this
7959 sort that would be valid is changing
7961 SAVE_EXPR (I) * SAVE_EXPR (SAVE_EXPR (J) * 8)
7963 divided by 8 to
7965 SAVE_EXPR (I) * SAVE_EXPR (J)
7967 (where the same SAVE_EXPR (J) is used in the original and the
7968 transformed version). */
7970 static int
7971 multiple_of_p (tree type, tree top, tree bottom)
7973 if (operand_equal_p (top, bottom, 0))
7974 return 1;
7976 if (TREE_CODE (type) != INTEGER_TYPE)
7977 return 0;
7979 switch (TREE_CODE (top))
7981 case MULT_EXPR:
7982 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
7983 || multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
7985 case PLUS_EXPR:
7986 case MINUS_EXPR:
7987 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
7988 && multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
7990 case LSHIFT_EXPR:
7991 if (TREE_CODE (TREE_OPERAND (top, 1)) == INTEGER_CST)
7993 tree op1, t1;
7995 op1 = TREE_OPERAND (top, 1);
7996 /* const_binop may not detect overflow correctly,
7997 so check for it explicitly here. */
7998 if (TYPE_PRECISION (TREE_TYPE (size_one_node))
7999 > TREE_INT_CST_LOW (op1)
8000 && TREE_INT_CST_HIGH (op1) == 0
8001 && 0 != (t1 = convert (type,
8002 const_binop (LSHIFT_EXPR, size_one_node,
8003 op1, 0)))
8004 && ! TREE_OVERFLOW (t1))
8005 return multiple_of_p (type, t1, bottom);
8007 return 0;
8009 case NOP_EXPR:
8010 /* Can't handle conversions from non-integral or wider integral type. */
8011 if ((TREE_CODE (TREE_TYPE (TREE_OPERAND (top, 0))) != INTEGER_TYPE)
8012 || (TYPE_PRECISION (type)
8013 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (top, 0)))))
8014 return 0;
8016 /* .. fall through ... */
8018 case SAVE_EXPR:
8019 return multiple_of_p (type, TREE_OPERAND (top, 0), bottom);
8021 case INTEGER_CST:
8022 if (TREE_CODE (bottom) != INTEGER_CST
8023 || (TREE_UNSIGNED (type)
8024 && (tree_int_cst_sgn (top) < 0
8025 || tree_int_cst_sgn (bottom) < 0)))
8026 return 0;
8027 return integer_zerop (const_binop (TRUNC_MOD_EXPR,
8028 top, bottom, 0));
8030 default:
8031 return 0;
8035 /* Return true if `t' is known to be non-negative. */
8038 tree_expr_nonnegative_p (tree t)
8040 switch (TREE_CODE (t))
8042 case ABS_EXPR:
8043 case FFS_EXPR:
8044 case POPCOUNT_EXPR:
8045 case PARITY_EXPR:
8046 return 1;
8048 case CLZ_EXPR:
8049 case CTZ_EXPR:
8050 /* These are undefined at zero. This is true even if
8051 C[LT]Z_DEFINED_VALUE_AT_ZERO is set, since what we're
8052 computing here is a user-visible property. */
8053 return 0;
8055 case INTEGER_CST:
8056 return tree_int_cst_sgn (t) >= 0;
8058 case REAL_CST:
8059 return ! REAL_VALUE_NEGATIVE (TREE_REAL_CST (t));
8061 case PLUS_EXPR:
8062 if (FLOAT_TYPE_P (TREE_TYPE (t)))
8063 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8064 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8066 /* zero_extend(x) + zero_extend(y) is non-negative if x and y are
8067 both unsigned and at least 2 bits shorter than the result. */
8068 if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
8069 && TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
8070 && TREE_CODE (TREE_OPERAND (t, 1)) == NOP_EXPR)
8072 tree inner1 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
8073 tree inner2 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0));
8074 if (TREE_CODE (inner1) == INTEGER_TYPE && TREE_UNSIGNED (inner1)
8075 && TREE_CODE (inner2) == INTEGER_TYPE && TREE_UNSIGNED (inner2))
8077 unsigned int prec = MAX (TYPE_PRECISION (inner1),
8078 TYPE_PRECISION (inner2)) + 1;
8079 return prec < TYPE_PRECISION (TREE_TYPE (t));
8082 break;
8084 case MULT_EXPR:
8085 if (FLOAT_TYPE_P (TREE_TYPE (t)))
8087 /* x * x for floating point x is always non-negative. */
8088 if (operand_equal_p (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1), 0))
8089 return 1;
8090 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8091 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8094 /* zero_extend(x) * zero_extend(y) is non-negative if x and y are
8095 both unsigned and their total bits is shorter than the result. */
8096 if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
8097 && TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
8098 && TREE_CODE (TREE_OPERAND (t, 1)) == NOP_EXPR)
8100 tree inner1 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
8101 tree inner2 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0));
8102 if (TREE_CODE (inner1) == INTEGER_TYPE && TREE_UNSIGNED (inner1)
8103 && TREE_CODE (inner2) == INTEGER_TYPE && TREE_UNSIGNED (inner2))
8104 return TYPE_PRECISION (inner1) + TYPE_PRECISION (inner2)
8105 < TYPE_PRECISION (TREE_TYPE (t));
8107 return 0;
8109 case TRUNC_DIV_EXPR:
8110 case CEIL_DIV_EXPR:
8111 case FLOOR_DIV_EXPR:
8112 case ROUND_DIV_EXPR:
8113 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8114 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8116 case TRUNC_MOD_EXPR:
8117 case CEIL_MOD_EXPR:
8118 case FLOOR_MOD_EXPR:
8119 case ROUND_MOD_EXPR:
8120 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8122 case RDIV_EXPR:
8123 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8124 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8126 case NOP_EXPR:
8128 tree inner_type = TREE_TYPE (TREE_OPERAND (t, 0));
8129 tree outer_type = TREE_TYPE (t);
8131 if (TREE_CODE (outer_type) == REAL_TYPE)
8133 if (TREE_CODE (inner_type) == REAL_TYPE)
8134 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8135 if (TREE_CODE (inner_type) == INTEGER_TYPE)
8137 if (TREE_UNSIGNED (inner_type))
8138 return 1;
8139 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8142 else if (TREE_CODE (outer_type) == INTEGER_TYPE)
8144 if (TREE_CODE (inner_type) == REAL_TYPE)
8145 return tree_expr_nonnegative_p (TREE_OPERAND (t,0));
8146 if (TREE_CODE (inner_type) == INTEGER_TYPE)
8147 return TYPE_PRECISION (inner_type) < TYPE_PRECISION (outer_type)
8148 && TREE_UNSIGNED (inner_type);
8151 break;
8153 case COND_EXPR:
8154 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1))
8155 && tree_expr_nonnegative_p (TREE_OPERAND (t, 2));
8156 case COMPOUND_EXPR:
8157 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8158 case MIN_EXPR:
8159 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8160 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8161 case MAX_EXPR:
8162 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
8163 || tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8164 case MODIFY_EXPR:
8165 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8166 case BIND_EXPR:
8167 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
8168 case SAVE_EXPR:
8169 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8170 case NON_LVALUE_EXPR:
8171 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8172 case FLOAT_EXPR:
8173 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
8174 case RTL_EXPR:
8175 return rtl_expr_nonnegative_p (RTL_EXPR_RTL (t));
8177 case CALL_EXPR:
8178 if (TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
8180 tree fndecl = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
8181 tree arglist = TREE_OPERAND (t, 1);
8182 if (TREE_CODE (fndecl) == FUNCTION_DECL
8183 && DECL_BUILT_IN (fndecl)
8184 && DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_MD)
8185 switch (DECL_FUNCTION_CODE (fndecl))
8187 case BUILT_IN_CABS:
8188 case BUILT_IN_CABSL:
8189 case BUILT_IN_CABSF:
8190 case BUILT_IN_EXP:
8191 case BUILT_IN_EXPF:
8192 case BUILT_IN_EXPL:
8193 case BUILT_IN_FABS:
8194 case BUILT_IN_FABSF:
8195 case BUILT_IN_FABSL:
8196 case BUILT_IN_SQRT:
8197 case BUILT_IN_SQRTF:
8198 case BUILT_IN_SQRTL:
8199 return 1;
8201 case BUILT_IN_ATAN:
8202 case BUILT_IN_ATANF:
8203 case BUILT_IN_ATANL:
8204 case BUILT_IN_CEIL:
8205 case BUILT_IN_CEILF:
8206 case BUILT_IN_CEILL:
8207 case BUILT_IN_FLOOR:
8208 case BUILT_IN_FLOORF:
8209 case BUILT_IN_FLOORL:
8210 case BUILT_IN_NEARBYINT:
8211 case BUILT_IN_NEARBYINTF:
8212 case BUILT_IN_NEARBYINTL:
8213 case BUILT_IN_ROUND:
8214 case BUILT_IN_ROUNDF:
8215 case BUILT_IN_ROUNDL:
8216 case BUILT_IN_TRUNC:
8217 case BUILT_IN_TRUNCF:
8218 case BUILT_IN_TRUNCL:
8219 return tree_expr_nonnegative_p (TREE_VALUE (arglist));
8221 case BUILT_IN_POW:
8222 case BUILT_IN_POWF:
8223 case BUILT_IN_POWL:
8224 return tree_expr_nonnegative_p (TREE_VALUE (arglist));
8226 default:
8227 break;
8231 /* ... fall through ... */
8233 default:
8234 if (truth_value_p (TREE_CODE (t)))
8235 /* Truth values evaluate to 0 or 1, which is nonnegative. */
8236 return 1;
8239 /* We don't know sign of `t', so be conservative and return false. */
8240 return 0;
8243 /* Return true if `r' is known to be non-negative.
8244 Only handles constants at the moment. */
8247 rtl_expr_nonnegative_p (rtx r)
8249 switch (GET_CODE (r))
8251 case CONST_INT:
8252 return INTVAL (r) >= 0;
8254 case CONST_DOUBLE:
8255 if (GET_MODE (r) == VOIDmode)
8256 return CONST_DOUBLE_HIGH (r) >= 0;
8257 return 0;
8259 case CONST_VECTOR:
8261 int units, i;
8262 rtx elt;
8264 units = CONST_VECTOR_NUNITS (r);
8266 for (i = 0; i < units; ++i)
8268 elt = CONST_VECTOR_ELT (r, i);
8269 if (!rtl_expr_nonnegative_p (elt))
8270 return 0;
8273 return 1;
8276 case SYMBOL_REF:
8277 case LABEL_REF:
8278 /* These are always nonnegative. */
8279 return 1;
8281 default:
8282 return 0;
8286 #include "gt-fold-const.h"