* optimize.c (initialize_inlined_parameters): Take FN to which the
[official-gcc.git] / gcc / fold-const.c
blobc13b907192bc555cd873ba3d1dad8cf8098d7bf2
1 /* Fold a constant sub-tree into a single node for C-compiler
2 Copyright (C) 1987, 88, 92-98, 1999 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /*@@ This file should be rewritten to use an arbitrary precision
22 @@ representation for "struct tree_int_cst" and "struct tree_real_cst".
23 @@ Perhaps the routines could also be used for bc/dc, and made a lib.
24 @@ The routines that translate from the ap rep should
25 @@ warn if precision et. al. is lost.
26 @@ This would also make life easier when this technology is used
27 @@ 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 <setjmp.h>
48 #include "flags.h"
49 #include "tree.h"
50 #include "rtl.h"
51 #include "tm_p.h"
52 #include "toplev.h"
53 #include "ggc.h"
55 static void encode PROTO((HOST_WIDE_INT *,
56 HOST_WIDE_INT, HOST_WIDE_INT));
57 static void decode PROTO((HOST_WIDE_INT *,
58 HOST_WIDE_INT *, HOST_WIDE_INT *));
59 int div_and_round_double PROTO((enum tree_code, int, HOST_WIDE_INT,
60 HOST_WIDE_INT, HOST_WIDE_INT,
61 HOST_WIDE_INT, HOST_WIDE_INT *,
62 HOST_WIDE_INT *, HOST_WIDE_INT *,
63 HOST_WIDE_INT *));
64 static tree negate_expr PROTO((tree));
65 static tree split_tree PROTO((tree, enum tree_code, tree *, tree *,
66 int));
67 static tree associate_trees PROTO((tree, tree, enum tree_code, tree));
68 static tree int_const_binop PROTO((enum tree_code, tree, tree, int, int));
69 static tree const_binop PROTO((enum tree_code, tree, tree, int));
70 static tree fold_convert PROTO((tree, tree));
71 static enum tree_code invert_tree_comparison PROTO((enum tree_code));
72 static enum tree_code swap_tree_comparison PROTO((enum tree_code));
73 static int truth_value_p PROTO((enum tree_code));
74 static int operand_equal_for_comparison_p PROTO((tree, tree, tree));
75 static int twoval_comparison_p PROTO((tree, tree *, tree *, int *));
76 static tree eval_subst PROTO((tree, tree, tree, tree, tree));
77 static tree omit_one_operand PROTO((tree, tree, tree));
78 static tree pedantic_omit_one_operand PROTO((tree, tree, tree));
79 static tree distribute_bit_expr PROTO((enum tree_code, tree, tree, tree));
80 static tree make_bit_field_ref PROTO((tree, tree, int, int, int));
81 static tree optimize_bit_field_compare PROTO((enum tree_code, tree,
82 tree, tree));
83 static tree decode_field_reference PROTO((tree, int *, int *,
84 enum machine_mode *, int *,
85 int *, tree *, tree *));
86 static int all_ones_mask_p PROTO((tree, int));
87 static int simple_operand_p PROTO((tree));
88 static tree range_binop PROTO((enum tree_code, tree, tree, int,
89 tree, int));
90 static tree make_range PROTO((tree, int *, tree *, tree *));
91 static tree build_range_check PROTO((tree, tree, int, tree, tree));
92 static int merge_ranges PROTO((int *, tree *, tree *, int, tree, tree,
93 int, tree, tree));
94 static tree fold_range_test PROTO((tree));
95 static tree unextend PROTO((tree, int, int, tree));
96 static tree fold_truthop PROTO((enum tree_code, tree, tree, tree));
97 static tree optimize_minmax_comparison PROTO((tree));
98 static tree extract_muldiv PROTO((tree, tree, enum tree_code, tree));
99 static tree strip_compound_expr PROTO((tree, tree));
100 static int multiple_of_p PROTO((tree, tree, tree));
101 static tree constant_boolean_node PROTO((int, tree));
102 static int count_cond PROTO((tree, int));
103 static void const_binop_1 PROTO((PTR));
104 static void fold_convert_1 PROTO((PTR));
106 #ifndef BRANCH_COST
107 #define BRANCH_COST 1
108 #endif
110 /* Suppose A1 + B1 = SUM1, using 2's complement arithmetic ignoring overflow.
111 Suppose A, B and SUM have the same respective signs as A1, B1, and SUM1.
112 Then this yields nonzero if overflow occurred during the addition.
113 Overflow occurs if A and B have the same sign, but A and SUM differ in sign.
114 Use `^' to test whether signs differ, and `< 0' to isolate the sign. */
115 #define overflow_sum_sign(a, b, sum) ((~((a) ^ (b)) & ((a) ^ (sum))) < 0)
117 /* To do constant folding on INTEGER_CST nodes requires two-word arithmetic.
118 We do that by representing the two-word integer in 4 words, with only
119 HOST_BITS_PER_WIDE_INT/2 bits stored in each word, as a positive number. */
121 #define LOWPART(x) \
122 ((x) & (((unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT/2)) - 1))
123 #define HIGHPART(x) \
124 ((unsigned HOST_WIDE_INT) (x) >> HOST_BITS_PER_WIDE_INT/2)
125 #define BASE ((unsigned HOST_WIDE_INT) 1 << HOST_BITS_PER_WIDE_INT/2)
127 /* Unpack a two-word integer into 4 words.
128 LOW and HI are the integer, as two `HOST_WIDE_INT' pieces.
129 WORDS points to the array of HOST_WIDE_INTs. */
131 static void
132 encode (words, low, hi)
133 HOST_WIDE_INT *words;
134 HOST_WIDE_INT low, hi;
136 words[0] = LOWPART (low);
137 words[1] = HIGHPART (low);
138 words[2] = LOWPART (hi);
139 words[3] = HIGHPART (hi);
142 /* Pack an array of 4 words into a two-word integer.
143 WORDS points to the array of words.
144 The integer is stored into *LOW and *HI as two `HOST_WIDE_INT' pieces. */
146 static void
147 decode (words, low, hi)
148 HOST_WIDE_INT *words;
149 HOST_WIDE_INT *low, *hi;
151 *low = words[0] | words[1] * BASE;
152 *hi = words[2] | words[3] * BASE;
155 /* Make the integer constant T valid for its type
156 by setting to 0 or 1 all the bits in the constant
157 that don't belong in the type.
158 Yield 1 if a signed overflow occurs, 0 otherwise.
159 If OVERFLOW is nonzero, a signed overflow has already occurred
160 in calculating T, so propagate it.
162 Make the real constant T valid for its type by calling CHECK_FLOAT_VALUE,
163 if it exists. */
166 force_fit_type (t, overflow)
167 tree t;
168 int overflow;
170 HOST_WIDE_INT low, high;
171 register int prec;
173 if (TREE_CODE (t) == REAL_CST)
175 #ifdef CHECK_FLOAT_VALUE
176 CHECK_FLOAT_VALUE (TYPE_MODE (TREE_TYPE (t)), TREE_REAL_CST (t),
177 overflow);
178 #endif
179 return overflow;
182 else if (TREE_CODE (t) != INTEGER_CST)
183 return overflow;
185 low = TREE_INT_CST_LOW (t);
186 high = TREE_INT_CST_HIGH (t);
188 if (POINTER_TYPE_P (TREE_TYPE (t)))
189 prec = POINTER_SIZE;
190 else
191 prec = TYPE_PRECISION (TREE_TYPE (t));
193 /* First clear all bits that are beyond the type's precision. */
195 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
197 else if (prec > HOST_BITS_PER_WIDE_INT)
199 TREE_INT_CST_HIGH (t)
200 &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
202 else
204 TREE_INT_CST_HIGH (t) = 0;
205 if (prec < HOST_BITS_PER_WIDE_INT)
206 TREE_INT_CST_LOW (t) &= ~((HOST_WIDE_INT) (-1) << prec);
209 /* Unsigned types do not suffer sign extension or overflow. */
210 if (TREE_UNSIGNED (TREE_TYPE (t)))
211 return overflow;
213 /* If the value's sign bit is set, extend the sign. */
214 if (prec != 2 * HOST_BITS_PER_WIDE_INT
215 && (prec > HOST_BITS_PER_WIDE_INT
216 ? (TREE_INT_CST_HIGH (t)
217 & ((HOST_WIDE_INT) 1 << (prec - HOST_BITS_PER_WIDE_INT - 1)))
218 : TREE_INT_CST_LOW (t) & ((HOST_WIDE_INT) 1 << (prec - 1))))
220 /* Value is negative:
221 set to 1 all the bits that are outside this type's precision. */
222 if (prec > HOST_BITS_PER_WIDE_INT)
224 TREE_INT_CST_HIGH (t)
225 |= ((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
227 else
229 TREE_INT_CST_HIGH (t) = -1;
230 if (prec < HOST_BITS_PER_WIDE_INT)
231 TREE_INT_CST_LOW (t) |= ((HOST_WIDE_INT) (-1) << prec);
235 /* Yield nonzero if signed overflow occurred. */
236 return
237 ((overflow | (low ^ TREE_INT_CST_LOW (t)) | (high ^ TREE_INT_CST_HIGH (t)))
238 != 0);
241 /* Add two doubleword integers with doubleword result.
242 Each argument is given as two `HOST_WIDE_INT' pieces.
243 One argument is L1 and H1; the other, L2 and H2.
244 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
247 add_double (l1, h1, l2, h2, lv, hv)
248 HOST_WIDE_INT l1, h1, l2, h2;
249 HOST_WIDE_INT *lv, *hv;
251 HOST_WIDE_INT l, h;
253 l = l1 + l2;
254 h = h1 + h2 + ((unsigned HOST_WIDE_INT) l < l1);
256 *lv = l;
257 *hv = h;
258 return overflow_sum_sign (h1, h2, h);
261 /* Negate a doubleword integer with doubleword result.
262 Return nonzero if the operation overflows, assuming it's signed.
263 The argument is given as two `HOST_WIDE_INT' pieces in L1 and H1.
264 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
267 neg_double (l1, h1, lv, hv)
268 HOST_WIDE_INT l1, h1;
269 HOST_WIDE_INT *lv, *hv;
271 if (l1 == 0)
273 *lv = 0;
274 *hv = - h1;
275 return (*hv & h1) < 0;
277 else
279 *lv = - l1;
280 *hv = ~ h1;
281 return 0;
285 /* Multiply two doubleword integers with doubleword result.
286 Return nonzero if the operation overflows, assuming it's signed.
287 Each argument is given as two `HOST_WIDE_INT' pieces.
288 One argument is L1 and H1; the other, L2 and H2.
289 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
292 mul_double (l1, h1, l2, h2, lv, hv)
293 HOST_WIDE_INT l1, h1, l2, h2;
294 HOST_WIDE_INT *lv, *hv;
296 HOST_WIDE_INT arg1[4];
297 HOST_WIDE_INT arg2[4];
298 HOST_WIDE_INT prod[4 * 2];
299 register unsigned HOST_WIDE_INT carry;
300 register int i, j, k;
301 HOST_WIDE_INT toplow, tophigh, neglow, neghigh;
303 encode (arg1, l1, h1);
304 encode (arg2, l2, h2);
306 bzero ((char *) prod, sizeof prod);
308 for (i = 0; i < 4; i++)
310 carry = 0;
311 for (j = 0; j < 4; j++)
313 k = i + j;
314 /* This product is <= 0xFFFE0001, the sum <= 0xFFFF0000. */
315 carry += arg1[i] * arg2[j];
316 /* Since prod[p] < 0xFFFF, this sum <= 0xFFFFFFFF. */
317 carry += prod[k];
318 prod[k] = LOWPART (carry);
319 carry = HIGHPART (carry);
321 prod[i + 4] = carry;
324 decode (prod, lv, hv); /* This ignores prod[4] through prod[4*2-1] */
326 /* Check for overflow by calculating the top half of the answer in full;
327 it should agree with the low half's sign bit. */
328 decode (prod+4, &toplow, &tophigh);
329 if (h1 < 0)
331 neg_double (l2, h2, &neglow, &neghigh);
332 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
334 if (h2 < 0)
336 neg_double (l1, h1, &neglow, &neghigh);
337 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
339 return (*hv < 0 ? ~(toplow & tophigh) : toplow | tophigh) != 0;
342 /* Shift the doubleword integer in L1, H1 left by COUNT places
343 keeping only PREC bits of result.
344 Shift right if COUNT is negative.
345 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
346 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
348 void
349 lshift_double (l1, h1, count, prec, lv, hv, arith)
350 HOST_WIDE_INT l1, h1, count;
351 int prec;
352 HOST_WIDE_INT *lv, *hv;
353 int arith;
355 if (count < 0)
357 rshift_double (l1, h1, - count, prec, lv, hv, arith);
358 return;
361 #ifdef SHIFT_COUNT_TRUNCATED
362 if (SHIFT_COUNT_TRUNCATED)
363 count %= prec;
364 #endif
366 if (count >= HOST_BITS_PER_WIDE_INT)
368 *hv = (unsigned HOST_WIDE_INT) l1 << (count - HOST_BITS_PER_WIDE_INT);
369 *lv = 0;
371 else
373 *hv = (((unsigned HOST_WIDE_INT) h1 << count)
374 | ((unsigned HOST_WIDE_INT) l1 >> (HOST_BITS_PER_WIDE_INT - count - 1) >> 1));
375 *lv = (unsigned HOST_WIDE_INT) l1 << count;
379 /* Shift the doubleword integer in L1, H1 right by COUNT places
380 keeping only PREC bits of result. COUNT must be positive.
381 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
382 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
384 void
385 rshift_double (l1, h1, count, prec, lv, hv, arith)
386 HOST_WIDE_INT l1, h1, count;
387 int prec ATTRIBUTE_UNUSED;
388 HOST_WIDE_INT *lv, *hv;
389 int arith;
391 unsigned HOST_WIDE_INT signmask;
392 signmask = (arith
393 ? -((unsigned HOST_WIDE_INT) h1 >> (HOST_BITS_PER_WIDE_INT - 1))
394 : 0);
396 #ifdef SHIFT_COUNT_TRUNCATED
397 if (SHIFT_COUNT_TRUNCATED)
398 count %= prec;
399 #endif
401 if (count >= HOST_BITS_PER_WIDE_INT)
403 *hv = signmask;
404 *lv = ((signmask << (2 * HOST_BITS_PER_WIDE_INT - count - 1) << 1)
405 | ((unsigned HOST_WIDE_INT) h1 >> (count - HOST_BITS_PER_WIDE_INT)));
407 else
409 *lv = (((unsigned HOST_WIDE_INT) l1 >> count)
410 | ((unsigned HOST_WIDE_INT) h1 << (HOST_BITS_PER_WIDE_INT - count - 1) << 1));
411 *hv = ((signmask << (HOST_BITS_PER_WIDE_INT - count))
412 | ((unsigned HOST_WIDE_INT) h1 >> count));
416 /* Rotate the doubleword integer in L1, H1 left by COUNT places
417 keeping only PREC bits of result.
418 Rotate right if COUNT is negative.
419 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
421 void
422 lrotate_double (l1, h1, count, prec, lv, hv)
423 HOST_WIDE_INT l1, h1, count;
424 int prec;
425 HOST_WIDE_INT *lv, *hv;
427 HOST_WIDE_INT s1l, s1h, s2l, s2h;
429 count %= prec;
430 if (count < 0)
431 count += prec;
433 lshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
434 rshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
435 *lv = s1l | s2l;
436 *hv = s1h | s2h;
439 /* Rotate the doubleword integer in L1, H1 left by COUNT places
440 keeping only PREC bits of result. COUNT must be positive.
441 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
443 void
444 rrotate_double (l1, h1, count, prec, lv, hv)
445 HOST_WIDE_INT l1, h1, count;
446 int prec;
447 HOST_WIDE_INT *lv, *hv;
449 HOST_WIDE_INT s1l, s1h, s2l, s2h;
451 count %= prec;
452 if (count < 0)
453 count += prec;
455 rshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
456 lshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
457 *lv = s1l | s2l;
458 *hv = s1h | s2h;
461 /* Divide doubleword integer LNUM, HNUM by doubleword integer LDEN, HDEN
462 for a quotient (stored in *LQUO, *HQUO) and remainder (in *LREM, *HREM).
463 CODE is a tree code for a kind of division, one of
464 TRUNC_DIV_EXPR, FLOOR_DIV_EXPR, CEIL_DIV_EXPR, ROUND_DIV_EXPR
465 or EXACT_DIV_EXPR
466 It controls how the quotient is rounded to a integer.
467 Return nonzero if the operation overflows.
468 UNS nonzero says do unsigned division. */
471 div_and_round_double (code, uns,
472 lnum_orig, hnum_orig, lden_orig, hden_orig,
473 lquo, hquo, lrem, hrem)
474 enum tree_code code;
475 int uns;
476 HOST_WIDE_INT lnum_orig, hnum_orig; /* num == numerator == dividend */
477 HOST_WIDE_INT lden_orig, hden_orig; /* den == denominator == divisor */
478 HOST_WIDE_INT *lquo, *hquo, *lrem, *hrem;
480 int quo_neg = 0;
481 HOST_WIDE_INT num[4 + 1]; /* extra element for scaling. */
482 HOST_WIDE_INT den[4], quo[4];
483 register int i, j;
484 unsigned HOST_WIDE_INT work;
485 register unsigned HOST_WIDE_INT carry = 0;
486 HOST_WIDE_INT lnum = lnum_orig;
487 HOST_WIDE_INT hnum = hnum_orig;
488 HOST_WIDE_INT lden = lden_orig;
489 HOST_WIDE_INT hden = hden_orig;
490 int overflow = 0;
492 if ((hden == 0) && (lden == 0))
493 overflow = 1, lden = 1;
495 /* calculate quotient sign and convert operands to unsigned. */
496 if (!uns)
498 if (hnum < 0)
500 quo_neg = ~ quo_neg;
501 /* (minimum integer) / (-1) is the only overflow case. */
502 if (neg_double (lnum, hnum, &lnum, &hnum) && (lden & hden) == -1)
503 overflow = 1;
505 if (hden < 0)
507 quo_neg = ~ quo_neg;
508 neg_double (lden, hden, &lden, &hden);
512 if (hnum == 0 && hden == 0)
513 { /* single precision */
514 *hquo = *hrem = 0;
515 /* This unsigned division rounds toward zero. */
516 *lquo = lnum / (unsigned HOST_WIDE_INT) lden;
517 goto finish_up;
520 if (hnum == 0)
521 { /* trivial case: dividend < divisor */
522 /* hden != 0 already checked. */
523 *hquo = *lquo = 0;
524 *hrem = hnum;
525 *lrem = lnum;
526 goto finish_up;
529 bzero ((char *) quo, sizeof quo);
531 bzero ((char *) num, sizeof num); /* to zero 9th element */
532 bzero ((char *) den, sizeof den);
534 encode (num, lnum, hnum);
535 encode (den, lden, hden);
537 /* Special code for when the divisor < BASE. */
538 if (hden == 0 && lden < (HOST_WIDE_INT) BASE)
540 /* hnum != 0 already checked. */
541 for (i = 4 - 1; i >= 0; i--)
543 work = num[i] + carry * BASE;
544 quo[i] = work / (unsigned HOST_WIDE_INT) lden;
545 carry = work % (unsigned HOST_WIDE_INT) lden;
548 else
550 /* Full double precision division,
551 with thanks to Don Knuth's "Seminumerical Algorithms". */
552 int num_hi_sig, den_hi_sig;
553 unsigned HOST_WIDE_INT quo_est, scale;
555 /* Find the highest non-zero divisor digit. */
556 for (i = 4 - 1; ; i--)
557 if (den[i] != 0) {
558 den_hi_sig = i;
559 break;
562 /* Insure that the first digit of the divisor is at least BASE/2.
563 This is required by the quotient digit estimation algorithm. */
565 scale = BASE / (den[den_hi_sig] + 1);
566 if (scale > 1) { /* scale divisor and dividend */
567 carry = 0;
568 for (i = 0; i <= 4 - 1; i++) {
569 work = (num[i] * scale) + carry;
570 num[i] = LOWPART (work);
571 carry = HIGHPART (work);
572 } num[4] = carry;
573 carry = 0;
574 for (i = 0; i <= 4 - 1; i++) {
575 work = (den[i] * scale) + carry;
576 den[i] = LOWPART (work);
577 carry = HIGHPART (work);
578 if (den[i] != 0) den_hi_sig = i;
582 num_hi_sig = 4;
584 /* Main loop */
585 for (i = num_hi_sig - den_hi_sig - 1; i >= 0; i--) {
586 /* guess the next quotient digit, quo_est, by dividing the first
587 two remaining dividend digits by the high order quotient digit.
588 quo_est is never low and is at most 2 high. */
589 unsigned HOST_WIDE_INT tmp;
591 num_hi_sig = i + den_hi_sig + 1;
592 work = num[num_hi_sig] * BASE + num[num_hi_sig - 1];
593 if (num[num_hi_sig] != den[den_hi_sig])
594 quo_est = work / den[den_hi_sig];
595 else
596 quo_est = BASE - 1;
598 /* refine quo_est so it's usually correct, and at most one high. */
599 tmp = work - quo_est * den[den_hi_sig];
600 if (tmp < BASE
601 && den[den_hi_sig - 1] * quo_est > (tmp * BASE + num[num_hi_sig - 2]))
602 quo_est--;
604 /* Try QUO_EST as the quotient digit, by multiplying the
605 divisor by QUO_EST and subtracting from the remaining dividend.
606 Keep in mind that QUO_EST is the I - 1st digit. */
608 carry = 0;
609 for (j = 0; j <= den_hi_sig; j++)
611 work = quo_est * den[j] + carry;
612 carry = HIGHPART (work);
613 work = num[i + j] - LOWPART (work);
614 num[i + j] = LOWPART (work);
615 carry += HIGHPART (work) != 0;
618 /* if quo_est was high by one, then num[i] went negative and
619 we need to correct things. */
621 if (num[num_hi_sig] < carry)
623 quo_est--;
624 carry = 0; /* add divisor back in */
625 for (j = 0; j <= den_hi_sig; j++)
627 work = num[i + j] + den[j] + carry;
628 carry = HIGHPART (work);
629 num[i + j] = LOWPART (work);
631 num [num_hi_sig] += carry;
634 /* store the quotient digit. */
635 quo[i] = quo_est;
639 decode (quo, lquo, hquo);
641 finish_up:
642 /* if result is negative, make it so. */
643 if (quo_neg)
644 neg_double (*lquo, *hquo, lquo, hquo);
646 /* compute trial remainder: rem = num - (quo * den) */
647 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
648 neg_double (*lrem, *hrem, lrem, hrem);
649 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
651 switch (code)
653 case TRUNC_DIV_EXPR:
654 case TRUNC_MOD_EXPR: /* round toward zero */
655 case EXACT_DIV_EXPR: /* for this one, it shouldn't matter */
656 return overflow;
658 case FLOOR_DIV_EXPR:
659 case FLOOR_MOD_EXPR: /* round toward negative infinity */
660 if (quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio < 0 && rem != 0 */
662 /* quo = quo - 1; */
663 add_double (*lquo, *hquo, (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1,
664 lquo, hquo);
666 else return overflow;
667 break;
669 case CEIL_DIV_EXPR:
670 case CEIL_MOD_EXPR: /* round toward positive infinity */
671 if (!quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio > 0 && rem != 0 */
673 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
674 lquo, hquo);
676 else return overflow;
677 break;
679 case ROUND_DIV_EXPR:
680 case ROUND_MOD_EXPR: /* round to closest integer */
682 HOST_WIDE_INT labs_rem = *lrem, habs_rem = *hrem;
683 HOST_WIDE_INT labs_den = lden, habs_den = hden, ltwice, htwice;
685 /* get absolute values */
686 if (*hrem < 0) neg_double (*lrem, *hrem, &labs_rem, &habs_rem);
687 if (hden < 0) neg_double (lden, hden, &labs_den, &habs_den);
689 /* if (2 * abs (lrem) >= abs (lden)) */
690 mul_double ((HOST_WIDE_INT) 2, (HOST_WIDE_INT) 0,
691 labs_rem, habs_rem, &ltwice, &htwice);
692 if (((unsigned HOST_WIDE_INT) habs_den
693 < (unsigned HOST_WIDE_INT) htwice)
694 || (((unsigned HOST_WIDE_INT) habs_den
695 == (unsigned HOST_WIDE_INT) htwice)
696 && ((HOST_WIDE_INT unsigned) labs_den
697 < (unsigned HOST_WIDE_INT) ltwice)))
699 if (*hquo < 0)
700 /* quo = quo - 1; */
701 add_double (*lquo, *hquo,
702 (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1, lquo, hquo);
703 else
704 /* quo = quo + 1; */
705 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
706 lquo, hquo);
708 else return overflow;
710 break;
712 default:
713 abort ();
716 /* compute true remainder: rem = num - (quo * den) */
717 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
718 neg_double (*lrem, *hrem, lrem, hrem);
719 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
720 return overflow;
723 #ifndef REAL_ARITHMETIC
724 /* Effectively truncate a real value to represent the nearest possible value
725 in a narrower mode. The result is actually represented in the same data
726 type as the argument, but its value is usually different.
728 A trap may occur during the FP operations and it is the responsibility
729 of the calling function to have a handler established. */
731 REAL_VALUE_TYPE
732 real_value_truncate (mode, arg)
733 enum machine_mode mode;
734 REAL_VALUE_TYPE arg;
736 return REAL_VALUE_TRUNCATE (mode, arg);
739 #if TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
741 /* Check for infinity in an IEEE double precision number. */
744 target_isinf (x)
745 REAL_VALUE_TYPE x;
747 /* The IEEE 64-bit double format. */
748 union {
749 REAL_VALUE_TYPE d;
750 struct {
751 unsigned sign : 1;
752 unsigned exponent : 11;
753 unsigned mantissa1 : 20;
754 unsigned mantissa2;
755 } little_endian;
756 struct {
757 unsigned mantissa2;
758 unsigned mantissa1 : 20;
759 unsigned exponent : 11;
760 unsigned sign : 1;
761 } big_endian;
762 } u;
764 u.d = dconstm1;
765 if (u.big_endian.sign == 1)
767 u.d = x;
768 return (u.big_endian.exponent == 2047
769 && u.big_endian.mantissa1 == 0
770 && u.big_endian.mantissa2 == 0);
772 else
774 u.d = x;
775 return (u.little_endian.exponent == 2047
776 && u.little_endian.mantissa1 == 0
777 && u.little_endian.mantissa2 == 0);
781 /* Check whether an IEEE double precision number is a NaN. */
784 target_isnan (x)
785 REAL_VALUE_TYPE x;
787 /* The IEEE 64-bit double format. */
788 union {
789 REAL_VALUE_TYPE d;
790 struct {
791 unsigned sign : 1;
792 unsigned exponent : 11;
793 unsigned mantissa1 : 20;
794 unsigned mantissa2;
795 } little_endian;
796 struct {
797 unsigned mantissa2;
798 unsigned mantissa1 : 20;
799 unsigned exponent : 11;
800 unsigned sign : 1;
801 } big_endian;
802 } u;
804 u.d = dconstm1;
805 if (u.big_endian.sign == 1)
807 u.d = x;
808 return (u.big_endian.exponent == 2047
809 && (u.big_endian.mantissa1 != 0
810 || u.big_endian.mantissa2 != 0));
812 else
814 u.d = x;
815 return (u.little_endian.exponent == 2047
816 && (u.little_endian.mantissa1 != 0
817 || u.little_endian.mantissa2 != 0));
821 /* Check for a negative IEEE double precision number. */
824 target_negative (x)
825 REAL_VALUE_TYPE x;
827 /* The IEEE 64-bit double format. */
828 union {
829 REAL_VALUE_TYPE d;
830 struct {
831 unsigned sign : 1;
832 unsigned exponent : 11;
833 unsigned mantissa1 : 20;
834 unsigned mantissa2;
835 } little_endian;
836 struct {
837 unsigned mantissa2;
838 unsigned mantissa1 : 20;
839 unsigned exponent : 11;
840 unsigned sign : 1;
841 } big_endian;
842 } u;
844 u.d = dconstm1;
845 if (u.big_endian.sign == 1)
847 u.d = x;
848 return u.big_endian.sign;
850 else
852 u.d = x;
853 return u.little_endian.sign;
856 #else /* Target not IEEE */
858 /* Let's assume other float formats don't have infinity.
859 (This can be overridden by redefining REAL_VALUE_ISINF.) */
862 target_isinf (x)
863 REAL_VALUE_TYPE x;
865 return 0;
868 /* Let's assume other float formats don't have NaNs.
869 (This can be overridden by redefining REAL_VALUE_ISNAN.) */
872 target_isnan (x)
873 REAL_VALUE_TYPE x;
875 return 0;
878 /* Let's assume other float formats don't have minus zero.
879 (This can be overridden by redefining REAL_VALUE_NEGATIVE.) */
882 target_negative (x)
883 REAL_VALUE_TYPE x;
885 return x < 0;
887 #endif /* Target not IEEE */
889 /* Try to change R into its exact multiplicative inverse in machine mode
890 MODE. Return nonzero function value if successful. */
893 exact_real_inverse (mode, r)
894 enum machine_mode mode;
895 REAL_VALUE_TYPE *r;
897 jmp_buf float_error;
898 union
900 double d;
901 unsigned short i[4];
902 }x, t, y;
903 int i;
905 /* Usually disable if bounds checks are not reliable. */
906 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT) && !flag_pretend_float)
907 return 0;
909 /* Set array index to the less significant bits in the unions, depending
910 on the endian-ness of the host doubles.
911 Disable if insufficient information on the data structure. */
912 #if HOST_FLOAT_FORMAT == UNKNOWN_FLOAT_FORMAT
913 return 0;
914 #else
915 #if HOST_FLOAT_FORMAT == VAX_FLOAT_FORMAT
916 #define K 2
917 #else
918 #if HOST_FLOAT_FORMAT == IBM_FLOAT_FORMAT
919 #define K 2
920 #else
921 #define K (2 * HOST_FLOAT_WORDS_BIG_ENDIAN)
922 #endif
923 #endif
924 #endif
926 if (setjmp (float_error))
928 /* Don't do the optimization if there was an arithmetic error. */
929 fail:
930 set_float_handler (NULL_PTR);
931 return 0;
933 set_float_handler (float_error);
935 /* Domain check the argument. */
936 x.d = *r;
937 if (x.d == 0.0)
938 goto fail;
940 #ifdef REAL_INFINITY
941 if (REAL_VALUE_ISINF (x.d) || REAL_VALUE_ISNAN (x.d))
942 goto fail;
943 #endif
945 /* Compute the reciprocal and check for numerical exactness.
946 It is unnecessary to check all the significand bits to determine
947 whether X is a power of 2. If X is not, then it is impossible for
948 the bottom half significand of both X and 1/X to be all zero bits.
949 Hence we ignore the data structure of the top half and examine only
950 the low order bits of the two significands. */
951 t.d = 1.0 / x.d;
952 if (x.i[K] != 0 || x.i[K + 1] != 0 || t.i[K] != 0 || t.i[K + 1] != 0)
953 goto fail;
955 /* Truncate to the required mode and range-check the result. */
956 y.d = REAL_VALUE_TRUNCATE (mode, t.d);
957 #ifdef CHECK_FLOAT_VALUE
958 i = 0;
959 if (CHECK_FLOAT_VALUE (mode, y.d, i))
960 goto fail;
961 #endif
963 /* Fail if truncation changed the value. */
964 if (y.d != t.d || y.d == 0.0)
965 goto fail;
967 #ifdef REAL_INFINITY
968 if (REAL_VALUE_ISINF (y.d) || REAL_VALUE_ISNAN (y.d))
969 goto fail;
970 #endif
972 /* Output the reciprocal and return success flag. */
973 set_float_handler (NULL_PTR);
974 *r = y.d;
975 return 1;
979 /* Convert C9X hexadecimal floating point string constant S. Return
980 real value type in mode MODE. This function uses the host computer's
981 fp arithmetic when there is no REAL_ARITHMETIC. */
983 REAL_VALUE_TYPE
984 real_hex_to_f (s, mode)
985 char *s;
986 enum machine_mode mode;
988 REAL_VALUE_TYPE ip;
989 char *p = s;
990 unsigned HOST_WIDE_INT low, high;
991 int frexpon, expon, shcount, nrmcount, k;
992 int sign, expsign, decpt, isfloat, isldouble, gotp, lost;
993 char c;
995 isldouble = 0;
996 isfloat = 0;
997 frexpon = 0;
998 expon = 0;
999 expsign = 1;
1000 ip = 0.0;
1002 while (*p == ' ' || *p == '\t')
1003 ++p;
1005 /* Sign, if any, comes first. */
1006 sign = 1;
1007 if (*p == '-')
1009 sign = -1;
1010 ++p;
1013 /* The string is supposed to start with 0x or 0X . */
1014 if (*p == '0')
1016 ++p;
1017 if (*p == 'x' || *p == 'X')
1018 ++p;
1019 else
1020 abort ();
1022 else
1023 abort ();
1025 while (*p == '0')
1026 ++p;
1028 high = 0;
1029 low = 0;
1030 lost = 0; /* Nonzero low order bits shifted out and discarded. */
1031 frexpon = 0; /* Bits after the decimal point. */
1032 expon = 0; /* Value of exponent. */
1033 decpt = 0; /* How many decimal points. */
1034 gotp = 0; /* How many P's. */
1035 shcount = 0;
1036 while ((c = *p) != '\0')
1038 if ((c >= '0' && c <= '9') || (c >= 'A' && c <= 'F')
1039 || (c >= 'a' && c <= 'f'))
1041 k = c & 0x7f;
1042 if (k >= 'a')
1043 k = k - 'a' + 10;
1044 else if (k >= 'A')
1045 k = k - 'A' + 10;
1046 else
1047 k = k - '0';
1049 if ((high & 0xf0000000) == 0)
1051 high = (high << 4) + ((low >> 28) & 15);
1052 low = (low << 4) + k;
1053 shcount += 4;
1054 if (decpt)
1055 frexpon += 4;
1057 else
1059 /* Record nonzero lost bits. */
1060 lost |= k;
1061 if (!decpt)
1062 frexpon -= 4;
1064 ++p;
1066 else if ( c == '.')
1068 ++decpt;
1069 ++p;
1071 else if (c == 'p' || c == 'P')
1073 ++gotp;
1074 ++p;
1075 /* Sign of exponent. */
1076 if (*p == '-')
1078 expsign = -1;
1079 ++p;
1081 /* Value of exponent.
1082 The exponent field is a decimal integer. */
1083 while (ISDIGIT(*p))
1085 k = (*p++ & 0x7f) - '0';
1086 expon = 10 * expon + k;
1088 expon *= expsign;
1089 /* F suffix is ambiguous in the significand part
1090 so it must appear after the decimal exponent field. */
1091 if (*p == 'f' || *p == 'F')
1093 isfloat = 1;
1094 ++p;
1095 break;
1098 else if (c == 'l' || c == 'L')
1100 isldouble = 1;
1101 ++p;
1102 break;
1104 else
1105 break;
1107 /* Abort if last character read was not legitimate. */
1108 c = *p;
1109 if ((c != '\0' && c != ' ' && c != '\n' && c != '\r') || (decpt > 1))
1110 abort ();
1111 /* There must be either one decimal point or one p. */
1112 if (decpt == 0 && gotp == 0)
1113 abort ();
1114 shcount -= 4;
1115 if ((high == 0) && (low == 0))
1117 return dconst0;
1120 /* Normalize. */
1121 nrmcount = 0;
1122 if (high == 0)
1124 high = low;
1125 low = 0;
1126 nrmcount += 32;
1128 /* Leave a high guard bit for carry-out. */
1129 if ((high & 0x80000000) != 0)
1131 lost |= low & 1;
1132 low = (low >> 1) | (high << 31);
1133 high = high >> 1;
1134 nrmcount -= 1;
1136 if ((high & 0xffff8000) == 0)
1138 high = (high << 16) + ((low >> 16) & 0xffff);
1139 low = low << 16;
1140 nrmcount += 16;
1142 while ((high & 0xc0000000) == 0)
1144 high = (high << 1) + ((low >> 31) & 1);
1145 low = low << 1;
1146 nrmcount += 1;
1148 if (isfloat || GET_MODE_SIZE(mode) == UNITS_PER_WORD)
1150 /* Keep 24 bits precision, bits 0x7fffff80.
1151 Rounding bit is 0x40. */
1152 lost = lost | low | (high & 0x3f);
1153 low = 0;
1154 if (high & 0x40)
1156 if ((high & 0x80) || lost)
1157 high += 0x40;
1159 high &= 0xffffff80;
1161 else
1163 /* We need real.c to do long double formats, so here default
1164 to double precision. */
1165 #if HOST_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
1166 /* IEEE double.
1167 Keep 53 bits precision, bits 0x7fffffff fffffc00.
1168 Rounding bit is low word 0x200. */
1169 lost = lost | (low & 0x1ff);
1170 if (low & 0x200)
1172 if ((low & 0x400) || lost)
1174 low = (low + 0x200) & 0xfffffc00;
1175 if (low == 0)
1176 high += 1;
1179 low &= 0xfffffc00;
1180 #else
1181 /* Assume it's a VAX with 56-bit significand,
1182 bits 0x7fffffff ffffff80. */
1183 lost = lost | (low & 0x7f);
1184 if (low & 0x40)
1186 if ((low & 0x80) || lost)
1188 low = (low + 0x40) & 0xffffff80;
1189 if (low == 0)
1190 high += 1;
1193 low &= 0xffffff80;
1194 #endif
1196 ip = (double) high;
1197 ip = REAL_VALUE_LDEXP (ip, 32) + (double) low;
1198 /* Apply shifts and exponent value as power of 2. */
1199 ip = REAL_VALUE_LDEXP (ip, expon - (nrmcount + frexpon));
1201 if (sign < 0)
1202 ip = -ip;
1203 return ip;
1206 #endif /* no REAL_ARITHMETIC */
1208 /* Given T, an expression, return the negation of T. Allow for T to be
1209 null, in which case return null. */
1211 static tree
1212 negate_expr (t)
1213 tree t;
1215 tree type;
1216 tree tem;
1218 if (t == 0)
1219 return 0;
1221 type = TREE_TYPE (t);
1222 STRIP_SIGN_NOPS (t);
1224 switch (TREE_CODE (t))
1226 case INTEGER_CST:
1227 case REAL_CST:
1228 if (! TREE_UNSIGNED (type)
1229 && 0 != (tem = fold (build1 (NEGATE_EXPR, type, t)))
1230 && ! TREE_OVERFLOW (tem))
1231 return tem;
1232 break;
1234 case NEGATE_EXPR:
1235 return convert (type, TREE_OPERAND (t, 0));
1237 case MINUS_EXPR:
1238 /* - (A - B) -> B - A */
1239 if (! FLOAT_TYPE_P (type) || flag_fast_math)
1240 return convert (type,
1241 fold (build (MINUS_EXPR, TREE_TYPE (t),
1242 TREE_OPERAND (t, 1),
1243 TREE_OPERAND (t, 0))));
1244 break;
1246 default:
1247 break;
1250 return convert (type, build1 (NEGATE_EXPR, TREE_TYPE (t), t));
1253 /* Split a tree IN into a constant, literal and variable parts that could be
1254 combined with CODE to make IN. "constant" means an expression with
1255 TREE_CONSTANT but that isn't an actual constant. CODE must be a
1256 commutative arithmetic operation. Store the constant part into *CONP,
1257 the literal in &LITP and return the variable part. If a part isn't
1258 present, set it to null. If the tree does not decompose in this way,
1259 return the entire tree as the variable part and the other parts as null.
1261 If CODE is PLUS_EXPR we also split trees that use MINUS_EXPR. In that
1262 case, we negate an operand that was subtracted. If NEGATE_P is true, we
1263 are negating all of IN.
1265 If IN is itself a literal or constant, return it as appropriate.
1267 Note that we do not guarantee that any of the three values will be the
1268 same type as IN, but they will have the same signedness and mode. */
1270 static tree
1271 split_tree (in, code, conp, litp, negate_p)
1272 tree in;
1273 enum tree_code code;
1274 tree *conp, *litp;
1275 int negate_p;
1277 tree var = 0;
1279 *conp = 0;
1280 *litp = 0;
1282 /* Strip any conversions that don't change the machine mode or signedness. */
1283 STRIP_SIGN_NOPS (in);
1285 if (TREE_CODE (in) == INTEGER_CST || TREE_CODE (in) == REAL_CST)
1286 *litp = in;
1287 else if (TREE_CONSTANT (in))
1288 *conp = in;
1290 else if (TREE_CODE (in) == code
1291 || (! FLOAT_TYPE_P (TREE_TYPE (in))
1292 /* We can associate addition and subtraction together (even
1293 though the C standard doesn't say so) for integers because
1294 the value is not affected. For reals, the value might be
1295 affected, so we can't. */
1296 && ((code == PLUS_EXPR && TREE_CODE (in) == MINUS_EXPR)
1297 || (code == MINUS_EXPR && TREE_CODE (in) == PLUS_EXPR))))
1299 tree op0 = TREE_OPERAND (in, 0);
1300 tree op1 = TREE_OPERAND (in, 1);
1301 int neg1_p = TREE_CODE (in) == MINUS_EXPR;
1302 int neg_litp_p = 0, neg_conp_p = 0, neg_var_p = 0;
1304 /* First see if either of the operands is a literal, then a constant. */
1305 if (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST)
1306 *litp = op0, op0 = 0;
1307 else if (TREE_CODE (op1) == INTEGER_CST || TREE_CODE (op1) == REAL_CST)
1308 *litp = op1, neg_litp_p = neg1_p, op1 = 0;
1310 if (op0 != 0 && TREE_CONSTANT (op0))
1311 *conp = op0, op0 = 0;
1312 else if (op1 != 0 && TREE_CONSTANT (op1))
1313 *conp = op1, neg_conp_p = neg1_p, op1 = 0;
1315 /* If we haven't dealt with either operand, this is not a case we can
1316 decompose. Otherwise, VAR is either of the ones remaining, if any. */
1317 if (op0 != 0 && op1 != 0)
1318 var = in;
1319 else if (op0 != 0)
1320 var = op0;
1321 else
1322 var = op1, neg_var_p = neg1_p;
1324 /* Now do any needed negations. */
1325 if (neg_litp_p) *litp = negate_expr (*litp);
1326 if (neg_conp_p) *conp = negate_expr (*conp);
1327 if (neg_var_p) var = negate_expr (var);
1329 else
1330 var = in;
1332 if (negate_p)
1334 var = negate_expr (var);
1335 *conp = negate_expr (*conp);
1336 *litp = negate_expr (*litp);
1339 return var;
1342 /* Re-associate trees split by the above function. T1 and T2 are either
1343 expressions to associate or null. Return the new expression, if any. If
1344 we build an operation, do it in TYPE and with CODE, except if CODE is a
1345 MINUS_EXPR, in which case we use PLUS_EXPR since split_tree will already
1346 have taken care of the negations. */
1348 static tree
1349 associate_trees (t1, t2, code, type)
1350 tree t1, t2;
1351 enum tree_code code;
1352 tree type;
1354 if (t1 == 0)
1355 return t2;
1356 else if (t2 == 0)
1357 return t1;
1359 if (code == MINUS_EXPR)
1360 code = PLUS_EXPR;
1362 /* If either input is CODE, a PLUS_EXPR, or a MINUS_EXPR, don't
1363 try to fold this since we will have infinite recursion. But do
1364 deal with any NEGATE_EXPRs. */
1365 if (TREE_CODE (t1) == code || TREE_CODE (t2) == code
1366 || TREE_CODE (t1) == MINUS_EXPR || TREE_CODE (t2) == MINUS_EXPR)
1368 if (TREE_CODE (t1) == NEGATE_EXPR)
1369 return build (MINUS_EXPR, type, convert (type, t2),
1370 convert (type, TREE_OPERAND (t1, 0)));
1371 else if (TREE_CODE (t2) == NEGATE_EXPR)
1372 return build (MINUS_EXPR, type, convert (type, t1),
1373 convert (type, TREE_OPERAND (t2, 0)));
1374 else
1375 return build (code, type, convert (type, t1), convert (type, t2));
1378 return fold (build (code, type, convert (type, t1), convert (type, t2)));
1381 /* Combine two integer constants ARG1 and ARG2 under operation CODE
1382 to produce a new constant.
1384 If NOTRUNC is nonzero, do not truncate the result to fit the data type.
1385 If FORSIZE is nonzero, compute overflow for unsigned types. */
1387 static tree
1388 int_const_binop (code, arg1, arg2, notrunc, forsize)
1389 enum tree_code code;
1390 register tree arg1, arg2;
1391 int notrunc, forsize;
1393 HOST_WIDE_INT int1l, int1h, int2l, int2h;
1394 HOST_WIDE_INT low, hi;
1395 HOST_WIDE_INT garbagel, garbageh;
1396 register tree t;
1397 int uns = TREE_UNSIGNED (TREE_TYPE (arg1));
1398 int overflow = 0;
1399 int no_overflow = 0;
1401 int1l = TREE_INT_CST_LOW (arg1);
1402 int1h = TREE_INT_CST_HIGH (arg1);
1403 int2l = TREE_INT_CST_LOW (arg2);
1404 int2h = TREE_INT_CST_HIGH (arg2);
1406 switch (code)
1408 case BIT_IOR_EXPR:
1409 low = int1l | int2l, hi = int1h | int2h;
1410 break;
1412 case BIT_XOR_EXPR:
1413 low = int1l ^ int2l, hi = int1h ^ int2h;
1414 break;
1416 case BIT_AND_EXPR:
1417 low = int1l & int2l, hi = int1h & int2h;
1418 break;
1420 case BIT_ANDTC_EXPR:
1421 low = int1l & ~int2l, hi = int1h & ~int2h;
1422 break;
1424 case RSHIFT_EXPR:
1425 int2l = - int2l;
1426 case LSHIFT_EXPR:
1427 /* It's unclear from the C standard whether shifts can overflow.
1428 The following code ignores overflow; perhaps a C standard
1429 interpretation ruling is needed. */
1430 lshift_double (int1l, int1h, int2l,
1431 TYPE_PRECISION (TREE_TYPE (arg1)),
1432 &low, &hi,
1433 !uns);
1434 no_overflow = 1;
1435 break;
1437 case RROTATE_EXPR:
1438 int2l = - int2l;
1439 case LROTATE_EXPR:
1440 lrotate_double (int1l, int1h, int2l,
1441 TYPE_PRECISION (TREE_TYPE (arg1)),
1442 &low, &hi);
1443 break;
1445 case PLUS_EXPR:
1446 overflow = add_double (int1l, int1h, int2l, int2h, &low, &hi);
1447 break;
1449 case MINUS_EXPR:
1450 neg_double (int2l, int2h, &low, &hi);
1451 add_double (int1l, int1h, low, hi, &low, &hi);
1452 overflow = overflow_sum_sign (hi, int2h, int1h);
1453 break;
1455 case MULT_EXPR:
1456 overflow = mul_double (int1l, int1h, int2l, int2h, &low, &hi);
1457 break;
1459 case TRUNC_DIV_EXPR:
1460 case FLOOR_DIV_EXPR: case CEIL_DIV_EXPR:
1461 case EXACT_DIV_EXPR:
1462 /* This is a shortcut for a common special case. */
1463 if (int2h == 0 && int2l > 0
1464 && ! TREE_CONSTANT_OVERFLOW (arg1)
1465 && ! TREE_CONSTANT_OVERFLOW (arg2)
1466 && int1h == 0 && int1l >= 0)
1468 if (code == CEIL_DIV_EXPR)
1469 int1l += int2l - 1;
1470 low = int1l / int2l, hi = 0;
1471 break;
1474 /* ... fall through ... */
1476 case ROUND_DIV_EXPR:
1477 if (int2h == 0 && int2l == 1)
1479 low = int1l, hi = int1h;
1480 break;
1482 if (int1l == int2l && int1h == int2h
1483 && ! (int1l == 0 && int1h == 0))
1485 low = 1, hi = 0;
1486 break;
1488 overflow = div_and_round_double (code, uns,
1489 int1l, int1h, int2l, int2h,
1490 &low, &hi, &garbagel, &garbageh);
1491 break;
1493 case TRUNC_MOD_EXPR:
1494 case FLOOR_MOD_EXPR: case CEIL_MOD_EXPR:
1495 /* This is a shortcut for a common special case. */
1496 if (int2h == 0 && int2l > 0
1497 && ! TREE_CONSTANT_OVERFLOW (arg1)
1498 && ! TREE_CONSTANT_OVERFLOW (arg2)
1499 && int1h == 0 && int1l >= 0)
1501 if (code == CEIL_MOD_EXPR)
1502 int1l += int2l - 1;
1503 low = int1l % int2l, hi = 0;
1504 break;
1507 /* ... fall through ... */
1509 case ROUND_MOD_EXPR:
1510 overflow = div_and_round_double (code, uns,
1511 int1l, int1h, int2l, int2h,
1512 &garbagel, &garbageh, &low, &hi);
1513 break;
1515 case MIN_EXPR:
1516 case MAX_EXPR:
1517 if (uns)
1519 low = (((unsigned HOST_WIDE_INT) int1h
1520 < (unsigned HOST_WIDE_INT) int2h)
1521 || (((unsigned HOST_WIDE_INT) int1h
1522 == (unsigned HOST_WIDE_INT) int2h)
1523 && ((unsigned HOST_WIDE_INT) int1l
1524 < (unsigned HOST_WIDE_INT) int2l)));
1526 else
1528 low = ((int1h < int2h)
1529 || ((int1h == int2h)
1530 && ((unsigned HOST_WIDE_INT) int1l
1531 < (unsigned HOST_WIDE_INT) int2l)));
1533 if (low == (code == MIN_EXPR))
1534 low = int1l, hi = int1h;
1535 else
1536 low = int2l, hi = int2h;
1537 break;
1539 default:
1540 abort ();
1543 if (TREE_TYPE (arg1) == sizetype && hi == 0
1544 && low >= 0
1545 && (TYPE_MAX_VALUE (sizetype) == NULL
1546 || low <= TREE_INT_CST_LOW (TYPE_MAX_VALUE (sizetype)))
1547 && ! overflow
1548 && ! TREE_OVERFLOW (arg1) && ! TREE_OVERFLOW (arg2))
1549 t = size_int (low);
1550 else
1552 t = build_int_2 (low, hi);
1553 TREE_TYPE (t) = TREE_TYPE (arg1);
1556 TREE_OVERFLOW (t)
1557 = ((notrunc ? (!uns || forsize) && overflow
1558 : force_fit_type (t, (!uns || forsize) && overflow) && ! no_overflow)
1559 | TREE_OVERFLOW (arg1)
1560 | TREE_OVERFLOW (arg2));
1561 /* If we're doing a size calculation, unsigned arithmetic does overflow.
1562 So check if force_fit_type truncated the value. */
1563 if (forsize
1564 && ! TREE_OVERFLOW (t)
1565 && (TREE_INT_CST_HIGH (t) != hi
1566 || TREE_INT_CST_LOW (t) != low))
1567 TREE_OVERFLOW (t) = 1;
1568 TREE_CONSTANT_OVERFLOW (t) = (TREE_OVERFLOW (t)
1569 | TREE_CONSTANT_OVERFLOW (arg1)
1570 | TREE_CONSTANT_OVERFLOW (arg2));
1571 return t;
1574 struct cb_args
1576 /* Input */
1577 tree arg1;
1578 REAL_VALUE_TYPE d1, d2;
1579 enum tree_code code;
1580 /* Output */
1581 tree t;
1584 static void
1585 const_binop_1 (data)
1586 PTR data;
1588 struct cb_args * args = (struct cb_args *) data;
1589 REAL_VALUE_TYPE value;
1591 #ifdef REAL_ARITHMETIC
1592 REAL_ARITHMETIC (value, args->code, args->d1, args->d2);
1593 #else
1594 switch (args->code)
1596 case PLUS_EXPR:
1597 value = args->d1 + args->d2;
1598 break;
1600 case MINUS_EXPR:
1601 value = args->d1 - args->d2;
1602 break;
1604 case MULT_EXPR:
1605 value = args->d1 * args->d2;
1606 break;
1608 case RDIV_EXPR:
1609 #ifndef REAL_INFINITY
1610 if (args->d2 == 0)
1611 abort ();
1612 #endif
1614 value = args->d1 / args->d2;
1615 break;
1617 case MIN_EXPR:
1618 value = MIN (args->d1, args->d2);
1619 break;
1621 case MAX_EXPR:
1622 value = MAX (args->d1, args->d2);
1623 break;
1625 default:
1626 abort ();
1628 #endif /* no REAL_ARITHMETIC */
1629 args->t =
1630 build_real (TREE_TYPE (args->arg1),
1631 real_value_truncate (TYPE_MODE (TREE_TYPE (args->arg1)),
1632 value));
1635 /* Combine two constants ARG1 and ARG2 under operation CODE
1636 to produce a new constant.
1637 We assume ARG1 and ARG2 have the same data type,
1638 or at least are the same kind of constant and the same machine mode.
1640 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1642 static tree
1643 const_binop (code, arg1, arg2, notrunc)
1644 enum tree_code code;
1645 register tree arg1, arg2;
1646 int notrunc;
1648 STRIP_NOPS (arg1); STRIP_NOPS (arg2);
1650 if (TREE_CODE (arg1) == INTEGER_CST)
1651 return int_const_binop (code, arg1, arg2, notrunc, 0);
1653 #if ! defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
1654 if (TREE_CODE (arg1) == REAL_CST)
1656 REAL_VALUE_TYPE d1;
1657 REAL_VALUE_TYPE d2;
1658 int overflow = 0;
1659 tree t;
1660 struct cb_args args;
1662 d1 = TREE_REAL_CST (arg1);
1663 d2 = TREE_REAL_CST (arg2);
1665 /* If either operand is a NaN, just return it. Otherwise, set up
1666 for floating-point trap; we return an overflow. */
1667 if (REAL_VALUE_ISNAN (d1))
1668 return arg1;
1669 else if (REAL_VALUE_ISNAN (d2))
1670 return arg2;
1672 /* Setup input for const_binop_1() */
1673 args.arg1 = arg1;
1674 args.d1 = d1;
1675 args.d2 = d2;
1676 args.code = code;
1678 if (do_float_handler (const_binop_1, (PTR) &args))
1680 /* Receive output from const_binop_1() */
1681 t = args.t;
1683 else
1685 /* We got an exception from const_binop_1() */
1686 t = copy_node (arg1);
1687 overflow = 1;
1690 TREE_OVERFLOW (t)
1691 = (force_fit_type (t, overflow)
1692 | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2));
1693 TREE_CONSTANT_OVERFLOW (t)
1694 = TREE_OVERFLOW (t)
1695 | TREE_CONSTANT_OVERFLOW (arg1)
1696 | TREE_CONSTANT_OVERFLOW (arg2);
1697 return t;
1699 #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
1700 if (TREE_CODE (arg1) == COMPLEX_CST)
1702 register tree type = TREE_TYPE (arg1);
1703 register tree r1 = TREE_REALPART (arg1);
1704 register tree i1 = TREE_IMAGPART (arg1);
1705 register tree r2 = TREE_REALPART (arg2);
1706 register tree i2 = TREE_IMAGPART (arg2);
1707 register tree t;
1709 switch (code)
1711 case PLUS_EXPR:
1712 t = build_complex (type,
1713 const_binop (PLUS_EXPR, r1, r2, notrunc),
1714 const_binop (PLUS_EXPR, i1, i2, notrunc));
1715 break;
1717 case MINUS_EXPR:
1718 t = build_complex (type,
1719 const_binop (MINUS_EXPR, r1, r2, notrunc),
1720 const_binop (MINUS_EXPR, i1, i2, notrunc));
1721 break;
1723 case MULT_EXPR:
1724 t = build_complex (type,
1725 const_binop (MINUS_EXPR,
1726 const_binop (MULT_EXPR,
1727 r1, r2, notrunc),
1728 const_binop (MULT_EXPR,
1729 i1, i2, notrunc),
1730 notrunc),
1731 const_binop (PLUS_EXPR,
1732 const_binop (MULT_EXPR,
1733 r1, i2, notrunc),
1734 const_binop (MULT_EXPR,
1735 i1, r2, notrunc),
1736 notrunc));
1737 break;
1739 case RDIV_EXPR:
1741 register tree magsquared
1742 = const_binop (PLUS_EXPR,
1743 const_binop (MULT_EXPR, r2, r2, notrunc),
1744 const_binop (MULT_EXPR, i2, i2, notrunc),
1745 notrunc);
1747 t = build_complex (type,
1748 const_binop
1749 (INTEGRAL_TYPE_P (TREE_TYPE (r1))
1750 ? TRUNC_DIV_EXPR : RDIV_EXPR,
1751 const_binop (PLUS_EXPR,
1752 const_binop (MULT_EXPR, r1, r2,
1753 notrunc),
1754 const_binop (MULT_EXPR, i1, i2,
1755 notrunc),
1756 notrunc),
1757 magsquared, notrunc),
1758 const_binop
1759 (INTEGRAL_TYPE_P (TREE_TYPE (r1))
1760 ? TRUNC_DIV_EXPR : RDIV_EXPR,
1761 const_binop (MINUS_EXPR,
1762 const_binop (MULT_EXPR, i1, r2,
1763 notrunc),
1764 const_binop (MULT_EXPR, r1, i2,
1765 notrunc),
1766 notrunc),
1767 magsquared, notrunc));
1769 break;
1771 default:
1772 abort ();
1774 return t;
1776 return 0;
1779 /* Return an INTEGER_CST with value V . The type is determined by bit_p:
1780 if it is zero, the type is taken from sizetype; if it is one, the type
1781 is taken from bitsizetype. */
1783 tree
1784 size_int_wide (number, high, bit_p)
1785 unsigned HOST_WIDE_INT number, high;
1786 int bit_p;
1788 tree t;
1790 if (!ggc_p)
1792 /* Type-size nodes already made for small sizes. */
1793 static tree size_table[2*HOST_BITS_PER_WIDE_INT + 1][2];
1795 if (number < 2*HOST_BITS_PER_WIDE_INT + 1 && ! high
1796 && size_table[number][bit_p] != 0)
1797 return size_table[number][bit_p];
1798 if (number < 2*HOST_BITS_PER_WIDE_INT + 1 && ! high)
1800 push_obstacks_nochange ();
1801 /* Make this a permanent node. */
1802 end_temporary_allocation ();
1803 t = build_int_2 (number, 0);
1804 TREE_TYPE (t) = bit_p ? bitsizetype : sizetype;
1805 size_table[number][bit_p] = t;
1806 pop_obstacks ();
1807 return t;
1811 t = build_int_2 (number, high);
1812 TREE_TYPE (t) = bit_p ? bitsizetype : sizetype;
1813 TREE_OVERFLOW (t) = TREE_CONSTANT_OVERFLOW (t) = force_fit_type (t, 0);
1814 return t;
1817 /* Combine operands OP1 and OP2 with arithmetic operation CODE.
1818 CODE is a tree code. Data type is taken from `sizetype',
1819 If the operands are constant, so is the result. */
1821 tree
1822 size_binop (code, arg0, arg1)
1823 enum tree_code code;
1824 tree arg0, arg1;
1826 /* Handle the special case of two integer constants faster. */
1827 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
1829 /* And some specific cases even faster than that. */
1830 if (code == PLUS_EXPR && integer_zerop (arg0))
1831 return arg1;
1832 else if ((code == MINUS_EXPR || code == PLUS_EXPR)
1833 && integer_zerop (arg1))
1834 return arg0;
1835 else if (code == MULT_EXPR && integer_onep (arg0))
1836 return arg1;
1838 /* Handle general case of two integer constants. */
1839 return int_const_binop (code, arg0, arg1, 0, 1);
1842 if (arg0 == error_mark_node || arg1 == error_mark_node)
1843 return error_mark_node;
1845 return fold (build (code, sizetype, arg0, arg1));
1848 /* Combine operands OP1 and OP2 with arithmetic operation CODE.
1849 CODE is a tree code. Data type is taken from `ssizetype',
1850 If the operands are constant, so is the result. */
1852 tree
1853 ssize_binop (code, arg0, arg1)
1854 enum tree_code code;
1855 tree arg0, arg1;
1857 /* Handle the special case of two integer constants faster. */
1858 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
1860 /* And some specific cases even faster than that. */
1861 if (code == PLUS_EXPR && integer_zerop (arg0))
1862 return arg1;
1863 else if ((code == MINUS_EXPR || code == PLUS_EXPR)
1864 && integer_zerop (arg1))
1865 return arg0;
1866 else if (code == MULT_EXPR && integer_onep (arg0))
1867 return arg1;
1869 /* Handle general case of two integer constants. We convert
1870 arg0 to ssizetype because int_const_binop uses its type for the
1871 return value. */
1872 arg0 = convert (ssizetype, arg0);
1873 return int_const_binop (code, arg0, arg1, 0, 0);
1876 if (arg0 == error_mark_node || arg1 == error_mark_node)
1877 return error_mark_node;
1879 return fold (build (code, ssizetype, arg0, arg1));
1882 struct fc_args
1884 /* Input */
1885 tree arg1, type;
1886 /* Output */
1887 tree t;
1890 static void
1891 fold_convert_1 (data)
1892 PTR data;
1894 struct fc_args * args = (struct fc_args *) data;
1896 args->t = build_real (args->type,
1897 real_value_truncate (TYPE_MODE (args->type),
1898 TREE_REAL_CST (args->arg1)));
1901 /* Given T, a tree representing type conversion of ARG1, a constant,
1902 return a constant tree representing the result of conversion. */
1904 static tree
1905 fold_convert (t, arg1)
1906 register tree t;
1907 register tree arg1;
1909 register tree type = TREE_TYPE (t);
1910 int overflow = 0;
1912 if (POINTER_TYPE_P (type) || INTEGRAL_TYPE_P (type))
1914 if (TREE_CODE (arg1) == INTEGER_CST)
1916 /* If we would build a constant wider than GCC supports,
1917 leave the conversion unfolded. */
1918 if (TYPE_PRECISION (type) > 2 * HOST_BITS_PER_WIDE_INT)
1919 return t;
1921 /* Given an integer constant, make new constant with new type,
1922 appropriately sign-extended or truncated. */
1923 t = build_int_2 (TREE_INT_CST_LOW (arg1),
1924 TREE_INT_CST_HIGH (arg1));
1925 TREE_TYPE (t) = type;
1926 /* Indicate an overflow if (1) ARG1 already overflowed,
1927 or (2) force_fit_type indicates an overflow.
1928 Tell force_fit_type that an overflow has already occurred
1929 if ARG1 is a too-large unsigned value and T is signed.
1930 But don't indicate an overflow if converting a pointer. */
1931 TREE_OVERFLOW (t)
1932 = ((force_fit_type (t,
1933 (TREE_INT_CST_HIGH (arg1) < 0
1934 && (TREE_UNSIGNED (type)
1935 < TREE_UNSIGNED (TREE_TYPE (arg1)))))
1936 && ! POINTER_TYPE_P (TREE_TYPE (arg1)))
1937 || TREE_OVERFLOW (arg1));
1938 TREE_CONSTANT_OVERFLOW (t)
1939 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1941 #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
1942 else if (TREE_CODE (arg1) == REAL_CST)
1944 /* Don't initialize these, use assignments.
1945 Initialized local aggregates don't work on old compilers. */
1946 REAL_VALUE_TYPE x;
1947 REAL_VALUE_TYPE l;
1948 REAL_VALUE_TYPE u;
1949 tree type1 = TREE_TYPE (arg1);
1950 int no_upper_bound;
1952 x = TREE_REAL_CST (arg1);
1953 l = real_value_from_int_cst (type1, TYPE_MIN_VALUE (type));
1955 no_upper_bound = (TYPE_MAX_VALUE (type) == NULL);
1956 if (!no_upper_bound)
1957 u = real_value_from_int_cst (type1, TYPE_MAX_VALUE (type));
1959 /* See if X will be in range after truncation towards 0.
1960 To compensate for truncation, move the bounds away from 0,
1961 but reject if X exactly equals the adjusted bounds. */
1962 #ifdef REAL_ARITHMETIC
1963 REAL_ARITHMETIC (l, MINUS_EXPR, l, dconst1);
1964 if (!no_upper_bound)
1965 REAL_ARITHMETIC (u, PLUS_EXPR, u, dconst1);
1966 #else
1967 l--;
1968 if (!no_upper_bound)
1969 u++;
1970 #endif
1971 /* If X is a NaN, use zero instead and show we have an overflow.
1972 Otherwise, range check. */
1973 if (REAL_VALUE_ISNAN (x))
1974 overflow = 1, x = dconst0;
1975 else if (! (REAL_VALUES_LESS (l, x)
1976 && !no_upper_bound
1977 && REAL_VALUES_LESS (x, u)))
1978 overflow = 1;
1980 #ifndef REAL_ARITHMETIC
1982 HOST_WIDE_INT low, high;
1983 HOST_WIDE_INT half_word
1984 = (HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2);
1986 if (x < 0)
1987 x = -x;
1989 high = (HOST_WIDE_INT) (x / half_word / half_word);
1990 x -= (REAL_VALUE_TYPE) high * half_word * half_word;
1991 if (x >= (REAL_VALUE_TYPE) half_word * half_word / 2)
1993 low = x - (REAL_VALUE_TYPE) half_word * half_word / 2;
1994 low |= (HOST_WIDE_INT) -1 << (HOST_BITS_PER_WIDE_INT - 1);
1996 else
1997 low = (HOST_WIDE_INT) x;
1998 if (TREE_REAL_CST (arg1) < 0)
1999 neg_double (low, high, &low, &high);
2000 t = build_int_2 (low, high);
2002 #else
2004 HOST_WIDE_INT low, high;
2005 REAL_VALUE_TO_INT (&low, &high, x);
2006 t = build_int_2 (low, high);
2008 #endif
2009 TREE_TYPE (t) = type;
2010 TREE_OVERFLOW (t)
2011 = TREE_OVERFLOW (arg1) | force_fit_type (t, overflow);
2012 TREE_CONSTANT_OVERFLOW (t)
2013 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
2015 #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
2016 TREE_TYPE (t) = type;
2018 else if (TREE_CODE (type) == REAL_TYPE)
2020 #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
2021 if (TREE_CODE (arg1) == INTEGER_CST)
2022 return build_real_from_int_cst (type, arg1);
2023 #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
2024 if (TREE_CODE (arg1) == REAL_CST)
2026 struct fc_args args;
2028 if (REAL_VALUE_ISNAN (TREE_REAL_CST (arg1)))
2030 t = arg1;
2031 TREE_TYPE (arg1) = type;
2032 return t;
2035 /* Setup input for fold_convert_1() */
2036 args.arg1 = arg1;
2037 args.type = type;
2039 if (do_float_handler (fold_convert_1, (PTR) &args))
2041 /* Receive output from fold_convert_1() */
2042 t = args.t;
2044 else
2046 /* We got an exception from fold_convert_1() */
2047 overflow = 1;
2048 t = copy_node (arg1);
2051 TREE_OVERFLOW (t)
2052 = TREE_OVERFLOW (arg1) | force_fit_type (t, overflow);
2053 TREE_CONSTANT_OVERFLOW (t)
2054 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
2055 return t;
2058 TREE_CONSTANT (t) = 1;
2059 return t;
2062 /* Return an expr equal to X but certainly not valid as an lvalue. */
2064 tree
2065 non_lvalue (x)
2066 tree x;
2068 tree result;
2070 /* These things are certainly not lvalues. */
2071 if (TREE_CODE (x) == NON_LVALUE_EXPR
2072 || TREE_CODE (x) == INTEGER_CST
2073 || TREE_CODE (x) == REAL_CST
2074 || TREE_CODE (x) == STRING_CST
2075 || TREE_CODE (x) == ADDR_EXPR)
2076 return x;
2078 result = build1 (NON_LVALUE_EXPR, TREE_TYPE (x), x);
2079 TREE_CONSTANT (result) = TREE_CONSTANT (x);
2080 return result;
2083 /* Nonzero means lvalues are limited to those valid in pedantic ANSI C.
2084 Zero means allow extended lvalues. */
2086 int pedantic_lvalues;
2088 /* When pedantic, return an expr equal to X but certainly not valid as a
2089 pedantic lvalue. Otherwise, return X. */
2091 tree
2092 pedantic_non_lvalue (x)
2093 tree x;
2095 if (pedantic_lvalues)
2096 return non_lvalue (x);
2097 else
2098 return x;
2101 /* Given a tree comparison code, return the code that is the logical inverse
2102 of the given code. It is not safe to do this for floating-point
2103 comparisons, except for NE_EXPR and EQ_EXPR. */
2105 static enum tree_code
2106 invert_tree_comparison (code)
2107 enum tree_code code;
2109 switch (code)
2111 case EQ_EXPR:
2112 return NE_EXPR;
2113 case NE_EXPR:
2114 return EQ_EXPR;
2115 case GT_EXPR:
2116 return LE_EXPR;
2117 case GE_EXPR:
2118 return LT_EXPR;
2119 case LT_EXPR:
2120 return GE_EXPR;
2121 case LE_EXPR:
2122 return GT_EXPR;
2123 default:
2124 abort ();
2128 /* Similar, but return the comparison that results if the operands are
2129 swapped. This is safe for floating-point. */
2131 static enum tree_code
2132 swap_tree_comparison (code)
2133 enum tree_code code;
2135 switch (code)
2137 case EQ_EXPR:
2138 case NE_EXPR:
2139 return code;
2140 case GT_EXPR:
2141 return LT_EXPR;
2142 case GE_EXPR:
2143 return LE_EXPR;
2144 case LT_EXPR:
2145 return GT_EXPR;
2146 case LE_EXPR:
2147 return GE_EXPR;
2148 default:
2149 abort ();
2153 /* Return nonzero if CODE is a tree code that represents a truth value. */
2155 static int
2156 truth_value_p (code)
2157 enum tree_code code;
2159 return (TREE_CODE_CLASS (code) == '<'
2160 || code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
2161 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
2162 || code == TRUTH_XOR_EXPR || code == TRUTH_NOT_EXPR);
2165 /* Return nonzero if two operands are necessarily equal.
2166 If ONLY_CONST is non-zero, only return non-zero for constants.
2167 This function tests whether the operands are indistinguishable;
2168 it does not test whether they are equal using C's == operation.
2169 The distinction is important for IEEE floating point, because
2170 (1) -0.0 and 0.0 are distinguishable, but -0.0==0.0, and
2171 (2) two NaNs may be indistinguishable, but NaN!=NaN. */
2174 operand_equal_p (arg0, arg1, only_const)
2175 tree arg0, arg1;
2176 int only_const;
2178 /* If both types don't have the same signedness, then we can't consider
2179 them equal. We must check this before the STRIP_NOPS calls
2180 because they may change the signedness of the arguments. */
2181 if (TREE_UNSIGNED (TREE_TYPE (arg0)) != TREE_UNSIGNED (TREE_TYPE (arg1)))
2182 return 0;
2184 STRIP_NOPS (arg0);
2185 STRIP_NOPS (arg1);
2187 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2188 /* This is needed for conversions and for COMPONENT_REF.
2189 Might as well play it safe and always test this. */
2190 || TREE_CODE (TREE_TYPE (arg0)) == ERROR_MARK
2191 || TREE_CODE (TREE_TYPE (arg1)) == ERROR_MARK
2192 || TYPE_MODE (TREE_TYPE (arg0)) != TYPE_MODE (TREE_TYPE (arg1)))
2193 return 0;
2195 /* If ARG0 and ARG1 are the same SAVE_EXPR, they are necessarily equal.
2196 We don't care about side effects in that case because the SAVE_EXPR
2197 takes care of that for us. In all other cases, two expressions are
2198 equal if they have no side effects. If we have two identical
2199 expressions with side effects that should be treated the same due
2200 to the only side effects being identical SAVE_EXPR's, that will
2201 be detected in the recursive calls below. */
2202 if (arg0 == arg1 && ! only_const
2203 && (TREE_CODE (arg0) == SAVE_EXPR
2204 || (! TREE_SIDE_EFFECTS (arg0) && ! TREE_SIDE_EFFECTS (arg1))))
2205 return 1;
2207 /* Next handle constant cases, those for which we can return 1 even
2208 if ONLY_CONST is set. */
2209 if (TREE_CONSTANT (arg0) && TREE_CONSTANT (arg1))
2210 switch (TREE_CODE (arg0))
2212 case INTEGER_CST:
2213 return (! TREE_CONSTANT_OVERFLOW (arg0)
2214 && ! TREE_CONSTANT_OVERFLOW (arg1)
2215 && TREE_INT_CST_LOW (arg0) == TREE_INT_CST_LOW (arg1)
2216 && TREE_INT_CST_HIGH (arg0) == TREE_INT_CST_HIGH (arg1));
2218 case REAL_CST:
2219 return (! TREE_CONSTANT_OVERFLOW (arg0)
2220 && ! TREE_CONSTANT_OVERFLOW (arg1)
2221 && REAL_VALUES_IDENTICAL (TREE_REAL_CST (arg0),
2222 TREE_REAL_CST (arg1)));
2224 case COMPLEX_CST:
2225 return (operand_equal_p (TREE_REALPART (arg0), TREE_REALPART (arg1),
2226 only_const)
2227 && operand_equal_p (TREE_IMAGPART (arg0), TREE_IMAGPART (arg1),
2228 only_const));
2230 case STRING_CST:
2231 return (TREE_STRING_LENGTH (arg0) == TREE_STRING_LENGTH (arg1)
2232 && ! strncmp (TREE_STRING_POINTER (arg0),
2233 TREE_STRING_POINTER (arg1),
2234 TREE_STRING_LENGTH (arg0)));
2236 case ADDR_EXPR:
2237 return operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0),
2239 default:
2240 break;
2243 if (only_const)
2244 return 0;
2246 switch (TREE_CODE_CLASS (TREE_CODE (arg0)))
2248 case '1':
2249 /* Two conversions are equal only if signedness and modes match. */
2250 if ((TREE_CODE (arg0) == NOP_EXPR || TREE_CODE (arg0) == CONVERT_EXPR)
2251 && (TREE_UNSIGNED (TREE_TYPE (arg0))
2252 != TREE_UNSIGNED (TREE_TYPE (arg1))))
2253 return 0;
2255 return operand_equal_p (TREE_OPERAND (arg0, 0),
2256 TREE_OPERAND (arg1, 0), 0);
2258 case '<':
2259 case '2':
2260 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0)
2261 && operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1),
2263 return 1;
2265 /* For commutative ops, allow the other order. */
2266 return ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MULT_EXPR
2267 || TREE_CODE (arg0) == MIN_EXPR || TREE_CODE (arg0) == MAX_EXPR
2268 || TREE_CODE (arg0) == BIT_IOR_EXPR
2269 || TREE_CODE (arg0) == BIT_XOR_EXPR
2270 || TREE_CODE (arg0) == BIT_AND_EXPR
2271 || TREE_CODE (arg0) == NE_EXPR || TREE_CODE (arg0) == EQ_EXPR)
2272 && operand_equal_p (TREE_OPERAND (arg0, 0),
2273 TREE_OPERAND (arg1, 1), 0)
2274 && operand_equal_p (TREE_OPERAND (arg0, 1),
2275 TREE_OPERAND (arg1, 0), 0));
2277 case 'r':
2278 /* If either of the pointer (or reference) expressions we are dereferencing
2279 contain a side effect, these cannot be equal. */
2280 if (TREE_SIDE_EFFECTS (arg0)
2281 || TREE_SIDE_EFFECTS (arg1))
2282 return 0;
2284 switch (TREE_CODE (arg0))
2286 case INDIRECT_REF:
2287 return operand_equal_p (TREE_OPERAND (arg0, 0),
2288 TREE_OPERAND (arg1, 0), 0);
2290 case COMPONENT_REF:
2291 case ARRAY_REF:
2292 return (operand_equal_p (TREE_OPERAND (arg0, 0),
2293 TREE_OPERAND (arg1, 0), 0)
2294 && operand_equal_p (TREE_OPERAND (arg0, 1),
2295 TREE_OPERAND (arg1, 1), 0));
2297 case BIT_FIELD_REF:
2298 return (operand_equal_p (TREE_OPERAND (arg0, 0),
2299 TREE_OPERAND (arg1, 0), 0)
2300 && operand_equal_p (TREE_OPERAND (arg0, 1),
2301 TREE_OPERAND (arg1, 1), 0)
2302 && operand_equal_p (TREE_OPERAND (arg0, 2),
2303 TREE_OPERAND (arg1, 2), 0));
2304 default:
2305 return 0;
2308 case 'e':
2309 if (TREE_CODE (arg0) == RTL_EXPR)
2310 return rtx_equal_p (RTL_EXPR_RTL (arg0), RTL_EXPR_RTL (arg1));
2311 return 0;
2313 default:
2314 return 0;
2318 /* Similar to operand_equal_p, but see if ARG0 might have been made by
2319 shorten_compare from ARG1 when ARG1 was being compared with OTHER.
2321 When in doubt, return 0. */
2323 static int
2324 operand_equal_for_comparison_p (arg0, arg1, other)
2325 tree arg0, arg1;
2326 tree other;
2328 int unsignedp1, unsignedpo;
2329 tree primarg0, primarg1, primother;
2330 unsigned correct_width;
2332 if (operand_equal_p (arg0, arg1, 0))
2333 return 1;
2335 if (! INTEGRAL_TYPE_P (TREE_TYPE (arg0))
2336 || ! INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
2337 return 0;
2339 /* Discard any conversions that don't change the modes of ARG0 and ARG1
2340 and see if the inner values are the same. This removes any
2341 signedness comparison, which doesn't matter here. */
2342 primarg0 = arg0, primarg1 = arg1;
2343 STRIP_NOPS (primarg0); STRIP_NOPS (primarg1);
2344 if (operand_equal_p (primarg0, primarg1, 0))
2345 return 1;
2347 /* Duplicate what shorten_compare does to ARG1 and see if that gives the
2348 actual comparison operand, ARG0.
2350 First throw away any conversions to wider types
2351 already present in the operands. */
2353 primarg1 = get_narrower (arg1, &unsignedp1);
2354 primother = get_narrower (other, &unsignedpo);
2356 correct_width = TYPE_PRECISION (TREE_TYPE (arg1));
2357 if (unsignedp1 == unsignedpo
2358 && TYPE_PRECISION (TREE_TYPE (primarg1)) < correct_width
2359 && TYPE_PRECISION (TREE_TYPE (primother)) < correct_width)
2361 tree type = TREE_TYPE (arg0);
2363 /* Make sure shorter operand is extended the right way
2364 to match the longer operand. */
2365 primarg1 = convert (signed_or_unsigned_type (unsignedp1,
2366 TREE_TYPE (primarg1)),
2367 primarg1);
2369 if (operand_equal_p (arg0, convert (type, primarg1), 0))
2370 return 1;
2373 return 0;
2376 /* See if ARG is an expression that is either a comparison or is performing
2377 arithmetic on comparisons. The comparisons must only be comparing
2378 two different values, which will be stored in *CVAL1 and *CVAL2; if
2379 they are non-zero it means that some operands have already been found.
2380 No variables may be used anywhere else in the expression except in the
2381 comparisons. If SAVE_P is true it means we removed a SAVE_EXPR around
2382 the expression and save_expr needs to be called with CVAL1 and CVAL2.
2384 If this is true, return 1. Otherwise, return zero. */
2386 static int
2387 twoval_comparison_p (arg, cval1, cval2, save_p)
2388 tree arg;
2389 tree *cval1, *cval2;
2390 int *save_p;
2392 enum tree_code code = TREE_CODE (arg);
2393 char class = TREE_CODE_CLASS (code);
2395 /* We can handle some of the 'e' cases here. */
2396 if (class == 'e' && code == TRUTH_NOT_EXPR)
2397 class = '1';
2398 else if (class == 'e'
2399 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR
2400 || code == COMPOUND_EXPR))
2401 class = '2';
2403 /* ??? Disable this since the SAVE_EXPR might already be in use outside
2404 the expression. There may be no way to make this work, but it needs
2405 to be looked at again for 2.6. */
2406 #if 0
2407 else if (class == 'e' && code == SAVE_EXPR && SAVE_EXPR_RTL (arg) == 0)
2409 /* If we've already found a CVAL1 or CVAL2, this expression is
2410 two complex to handle. */
2411 if (*cval1 || *cval2)
2412 return 0;
2414 class = '1';
2415 *save_p = 1;
2417 #endif
2419 switch (class)
2421 case '1':
2422 return twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p);
2424 case '2':
2425 return (twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p)
2426 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2427 cval1, cval2, save_p));
2429 case 'c':
2430 return 1;
2432 case 'e':
2433 if (code == COND_EXPR)
2434 return (twoval_comparison_p (TREE_OPERAND (arg, 0),
2435 cval1, cval2, save_p)
2436 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2437 cval1, cval2, save_p)
2438 && twoval_comparison_p (TREE_OPERAND (arg, 2),
2439 cval1, cval2, save_p));
2440 return 0;
2442 case '<':
2443 /* First see if we can handle the first operand, then the second. For
2444 the second operand, we know *CVAL1 can't be zero. It must be that
2445 one side of the comparison is each of the values; test for the
2446 case where this isn't true by failing if the two operands
2447 are the same. */
2449 if (operand_equal_p (TREE_OPERAND (arg, 0),
2450 TREE_OPERAND (arg, 1), 0))
2451 return 0;
2453 if (*cval1 == 0)
2454 *cval1 = TREE_OPERAND (arg, 0);
2455 else if (operand_equal_p (*cval1, TREE_OPERAND (arg, 0), 0))
2457 else if (*cval2 == 0)
2458 *cval2 = TREE_OPERAND (arg, 0);
2459 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 0), 0))
2461 else
2462 return 0;
2464 if (operand_equal_p (*cval1, TREE_OPERAND (arg, 1), 0))
2466 else if (*cval2 == 0)
2467 *cval2 = TREE_OPERAND (arg, 1);
2468 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 1), 0))
2470 else
2471 return 0;
2473 return 1;
2475 default:
2476 return 0;
2480 /* ARG is a tree that is known to contain just arithmetic operations and
2481 comparisons. Evaluate the operations in the tree substituting NEW0 for
2482 any occurrence of OLD0 as an operand of a comparison and likewise for
2483 NEW1 and OLD1. */
2485 static tree
2486 eval_subst (arg, old0, new0, old1, new1)
2487 tree arg;
2488 tree old0, new0, old1, new1;
2490 tree type = TREE_TYPE (arg);
2491 enum tree_code code = TREE_CODE (arg);
2492 char class = TREE_CODE_CLASS (code);
2494 /* We can handle some of the 'e' cases here. */
2495 if (class == 'e' && code == TRUTH_NOT_EXPR)
2496 class = '1';
2497 else if (class == 'e'
2498 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2499 class = '2';
2501 switch (class)
2503 case '1':
2504 return fold (build1 (code, type,
2505 eval_subst (TREE_OPERAND (arg, 0),
2506 old0, new0, old1, new1)));
2508 case '2':
2509 return fold (build (code, type,
2510 eval_subst (TREE_OPERAND (arg, 0),
2511 old0, new0, old1, new1),
2512 eval_subst (TREE_OPERAND (arg, 1),
2513 old0, new0, old1, new1)));
2515 case 'e':
2516 switch (code)
2518 case SAVE_EXPR:
2519 return eval_subst (TREE_OPERAND (arg, 0), old0, new0, old1, new1);
2521 case COMPOUND_EXPR:
2522 return eval_subst (TREE_OPERAND (arg, 1), old0, new0, old1, new1);
2524 case COND_EXPR:
2525 return fold (build (code, type,
2526 eval_subst (TREE_OPERAND (arg, 0),
2527 old0, new0, old1, new1),
2528 eval_subst (TREE_OPERAND (arg, 1),
2529 old0, new0, old1, new1),
2530 eval_subst (TREE_OPERAND (arg, 2),
2531 old0, new0, old1, new1)));
2532 default:
2533 break;
2535 /* fall through - ??? */
2537 case '<':
2539 tree arg0 = TREE_OPERAND (arg, 0);
2540 tree arg1 = TREE_OPERAND (arg, 1);
2542 /* We need to check both for exact equality and tree equality. The
2543 former will be true if the operand has a side-effect. In that
2544 case, we know the operand occurred exactly once. */
2546 if (arg0 == old0 || operand_equal_p (arg0, old0, 0))
2547 arg0 = new0;
2548 else if (arg0 == old1 || operand_equal_p (arg0, old1, 0))
2549 arg0 = new1;
2551 if (arg1 == old0 || operand_equal_p (arg1, old0, 0))
2552 arg1 = new0;
2553 else if (arg1 == old1 || operand_equal_p (arg1, old1, 0))
2554 arg1 = new1;
2556 return fold (build (code, type, arg0, arg1));
2559 default:
2560 return arg;
2564 /* Return a tree for the case when the result of an expression is RESULT
2565 converted to TYPE and OMITTED was previously an operand of the expression
2566 but is now not needed (e.g., we folded OMITTED * 0).
2568 If OMITTED has side effects, we must evaluate it. Otherwise, just do
2569 the conversion of RESULT to TYPE. */
2571 static tree
2572 omit_one_operand (type, result, omitted)
2573 tree type, result, omitted;
2575 tree t = convert (type, result);
2577 if (TREE_SIDE_EFFECTS (omitted))
2578 return build (COMPOUND_EXPR, type, omitted, t);
2580 return non_lvalue (t);
2583 /* Similar, but call pedantic_non_lvalue instead of non_lvalue. */
2585 static tree
2586 pedantic_omit_one_operand (type, result, omitted)
2587 tree type, result, omitted;
2589 tree t = convert (type, result);
2591 if (TREE_SIDE_EFFECTS (omitted))
2592 return build (COMPOUND_EXPR, type, omitted, t);
2594 return pedantic_non_lvalue (t);
2599 /* Return a simplified tree node for the truth-negation of ARG. This
2600 never alters ARG itself. We assume that ARG is an operation that
2601 returns a truth value (0 or 1). */
2603 tree
2604 invert_truthvalue (arg)
2605 tree arg;
2607 tree type = TREE_TYPE (arg);
2608 enum tree_code code = TREE_CODE (arg);
2610 if (code == ERROR_MARK)
2611 return arg;
2613 /* If this is a comparison, we can simply invert it, except for
2614 floating-point non-equality comparisons, in which case we just
2615 enclose a TRUTH_NOT_EXPR around what we have. */
2617 if (TREE_CODE_CLASS (code) == '<')
2619 if (FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
2620 && !flag_fast_math && code != NE_EXPR && code != EQ_EXPR)
2621 return build1 (TRUTH_NOT_EXPR, type, arg);
2622 else
2623 return build (invert_tree_comparison (code), type,
2624 TREE_OPERAND (arg, 0), TREE_OPERAND (arg, 1));
2627 switch (code)
2629 case INTEGER_CST:
2630 return convert (type, build_int_2 (TREE_INT_CST_LOW (arg) == 0
2631 && TREE_INT_CST_HIGH (arg) == 0, 0));
2633 case TRUTH_AND_EXPR:
2634 return build (TRUTH_OR_EXPR, type,
2635 invert_truthvalue (TREE_OPERAND (arg, 0)),
2636 invert_truthvalue (TREE_OPERAND (arg, 1)));
2638 case TRUTH_OR_EXPR:
2639 return build (TRUTH_AND_EXPR, type,
2640 invert_truthvalue (TREE_OPERAND (arg, 0)),
2641 invert_truthvalue (TREE_OPERAND (arg, 1)));
2643 case TRUTH_XOR_EXPR:
2644 /* Here we can invert either operand. We invert the first operand
2645 unless the second operand is a TRUTH_NOT_EXPR in which case our
2646 result is the XOR of the first operand with the inside of the
2647 negation of the second operand. */
2649 if (TREE_CODE (TREE_OPERAND (arg, 1)) == TRUTH_NOT_EXPR)
2650 return build (TRUTH_XOR_EXPR, type, TREE_OPERAND (arg, 0),
2651 TREE_OPERAND (TREE_OPERAND (arg, 1), 0));
2652 else
2653 return build (TRUTH_XOR_EXPR, type,
2654 invert_truthvalue (TREE_OPERAND (arg, 0)),
2655 TREE_OPERAND (arg, 1));
2657 case TRUTH_ANDIF_EXPR:
2658 return build (TRUTH_ORIF_EXPR, type,
2659 invert_truthvalue (TREE_OPERAND (arg, 0)),
2660 invert_truthvalue (TREE_OPERAND (arg, 1)));
2662 case TRUTH_ORIF_EXPR:
2663 return build (TRUTH_ANDIF_EXPR, type,
2664 invert_truthvalue (TREE_OPERAND (arg, 0)),
2665 invert_truthvalue (TREE_OPERAND (arg, 1)));
2667 case TRUTH_NOT_EXPR:
2668 return TREE_OPERAND (arg, 0);
2670 case COND_EXPR:
2671 return build (COND_EXPR, type, TREE_OPERAND (arg, 0),
2672 invert_truthvalue (TREE_OPERAND (arg, 1)),
2673 invert_truthvalue (TREE_OPERAND (arg, 2)));
2675 case COMPOUND_EXPR:
2676 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg, 0),
2677 invert_truthvalue (TREE_OPERAND (arg, 1)));
2679 case WITH_RECORD_EXPR:
2680 return build (WITH_RECORD_EXPR, type,
2681 invert_truthvalue (TREE_OPERAND (arg, 0)),
2682 TREE_OPERAND (arg, 1));
2684 case NON_LVALUE_EXPR:
2685 return invert_truthvalue (TREE_OPERAND (arg, 0));
2687 case NOP_EXPR:
2688 case CONVERT_EXPR:
2689 case FLOAT_EXPR:
2690 return build1 (TREE_CODE (arg), type,
2691 invert_truthvalue (TREE_OPERAND (arg, 0)));
2693 case BIT_AND_EXPR:
2694 if (!integer_onep (TREE_OPERAND (arg, 1)))
2695 break;
2696 return build (EQ_EXPR, type, arg, convert (type, integer_zero_node));
2698 case SAVE_EXPR:
2699 return build1 (TRUTH_NOT_EXPR, type, arg);
2701 case CLEANUP_POINT_EXPR:
2702 return build1 (CLEANUP_POINT_EXPR, type,
2703 invert_truthvalue (TREE_OPERAND (arg, 0)));
2705 default:
2706 break;
2708 if (TREE_CODE (TREE_TYPE (arg)) != BOOLEAN_TYPE)
2709 abort ();
2710 return build1 (TRUTH_NOT_EXPR, type, arg);
2713 /* Given a bit-wise operation CODE applied to ARG0 and ARG1, see if both
2714 operands are another bit-wise operation with a common input. If so,
2715 distribute the bit operations to save an operation and possibly two if
2716 constants are involved. For example, convert
2717 (A | B) & (A | C) into A | (B & C)
2718 Further simplification will occur if B and C are constants.
2720 If this optimization cannot be done, 0 will be returned. */
2722 static tree
2723 distribute_bit_expr (code, type, arg0, arg1)
2724 enum tree_code code;
2725 tree type;
2726 tree arg0, arg1;
2728 tree common;
2729 tree left, right;
2731 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2732 || TREE_CODE (arg0) == code
2733 || (TREE_CODE (arg0) != BIT_AND_EXPR
2734 && TREE_CODE (arg0) != BIT_IOR_EXPR))
2735 return 0;
2737 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0))
2739 common = TREE_OPERAND (arg0, 0);
2740 left = TREE_OPERAND (arg0, 1);
2741 right = TREE_OPERAND (arg1, 1);
2743 else if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 1), 0))
2745 common = TREE_OPERAND (arg0, 0);
2746 left = TREE_OPERAND (arg0, 1);
2747 right = TREE_OPERAND (arg1, 0);
2749 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 0), 0))
2751 common = TREE_OPERAND (arg0, 1);
2752 left = TREE_OPERAND (arg0, 0);
2753 right = TREE_OPERAND (arg1, 1);
2755 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1), 0))
2757 common = TREE_OPERAND (arg0, 1);
2758 left = TREE_OPERAND (arg0, 0);
2759 right = TREE_OPERAND (arg1, 0);
2761 else
2762 return 0;
2764 return fold (build (TREE_CODE (arg0), type, common,
2765 fold (build (code, type, left, right))));
2768 /* Return a BIT_FIELD_REF of type TYPE to refer to BITSIZE bits of INNER
2769 starting at BITPOS. The field is unsigned if UNSIGNEDP is non-zero. */
2771 static tree
2772 make_bit_field_ref (inner, type, bitsize, bitpos, unsignedp)
2773 tree inner;
2774 tree type;
2775 int bitsize, bitpos;
2776 int unsignedp;
2778 tree result = build (BIT_FIELD_REF, type, inner,
2779 size_int (bitsize), bitsize_int (bitpos, 0L));
2781 TREE_UNSIGNED (result) = unsignedp;
2783 return result;
2786 /* Optimize a bit-field compare.
2788 There are two cases: First is a compare against a constant and the
2789 second is a comparison of two items where the fields are at the same
2790 bit position relative to the start of a chunk (byte, halfword, word)
2791 large enough to contain it. In these cases we can avoid the shift
2792 implicit in bitfield extractions.
2794 For constants, we emit a compare of the shifted constant with the
2795 BIT_AND_EXPR of a mask and a byte, halfword, or word of the operand being
2796 compared. For two fields at the same position, we do the ANDs with the
2797 similar mask and compare the result of the ANDs.
2799 CODE is the comparison code, known to be either NE_EXPR or EQ_EXPR.
2800 COMPARE_TYPE is the type of the comparison, and LHS and RHS
2801 are the left and right operands of the comparison, respectively.
2803 If the optimization described above can be done, we return the resulting
2804 tree. Otherwise we return zero. */
2806 static tree
2807 optimize_bit_field_compare (code, compare_type, lhs, rhs)
2808 enum tree_code code;
2809 tree compare_type;
2810 tree lhs, rhs;
2812 int lbitpos, lbitsize, rbitpos, rbitsize, nbitpos, nbitsize;
2813 tree type = TREE_TYPE (lhs);
2814 tree signed_type, unsigned_type;
2815 int const_p = TREE_CODE (rhs) == INTEGER_CST;
2816 enum machine_mode lmode, rmode, nmode;
2817 int lunsignedp, runsignedp;
2818 int lvolatilep = 0, rvolatilep = 0;
2819 int alignment;
2820 tree linner, rinner = NULL_TREE;
2821 tree mask;
2822 tree offset;
2824 /* Get all the information about the extractions being done. If the bit size
2825 if the same as the size of the underlying object, we aren't doing an
2826 extraction at all and so can do nothing. We also don't want to
2827 do anything if the inner expression is a PLACEHOLDER_EXPR since we
2828 then will no longer be able to replace it. */
2829 linner = get_inner_reference (lhs, &lbitsize, &lbitpos, &offset, &lmode,
2830 &lunsignedp, &lvolatilep, &alignment);
2831 if (linner == lhs || lbitsize == GET_MODE_BITSIZE (lmode) || lbitsize < 0
2832 || offset != 0 || TREE_CODE (linner) == PLACEHOLDER_EXPR)
2833 return 0;
2835 if (!const_p)
2837 /* If this is not a constant, we can only do something if bit positions,
2838 sizes, and signedness are the same. */
2839 rinner = get_inner_reference (rhs, &rbitsize, &rbitpos, &offset, &rmode,
2840 &runsignedp, &rvolatilep, &alignment);
2842 if (rinner == rhs || lbitpos != rbitpos || lbitsize != rbitsize
2843 || lunsignedp != runsignedp || offset != 0
2844 || TREE_CODE (rinner) == PLACEHOLDER_EXPR)
2845 return 0;
2848 /* See if we can find a mode to refer to this field. We should be able to,
2849 but fail if we can't. */
2850 nmode = get_best_mode (lbitsize, lbitpos,
2851 const_p ? TYPE_ALIGN (TREE_TYPE (linner))
2852 : MIN (TYPE_ALIGN (TREE_TYPE (linner)),
2853 TYPE_ALIGN (TREE_TYPE (rinner))),
2854 word_mode, lvolatilep || rvolatilep);
2855 if (nmode == VOIDmode)
2856 return 0;
2858 /* Set signed and unsigned types of the precision of this mode for the
2859 shifts below. */
2860 signed_type = type_for_mode (nmode, 0);
2861 unsigned_type = type_for_mode (nmode, 1);
2863 /* Compute the bit position and size for the new reference and our offset
2864 within it. If the new reference is the same size as the original, we
2865 won't optimize anything, so return zero. */
2866 nbitsize = GET_MODE_BITSIZE (nmode);
2867 nbitpos = lbitpos & ~ (nbitsize - 1);
2868 lbitpos -= nbitpos;
2869 if (nbitsize == lbitsize)
2870 return 0;
2872 if (BYTES_BIG_ENDIAN)
2873 lbitpos = nbitsize - lbitsize - lbitpos;
2875 /* Make the mask to be used against the extracted field. */
2876 mask = build_int_2 (~0, ~0);
2877 TREE_TYPE (mask) = unsigned_type;
2878 force_fit_type (mask, 0);
2879 mask = convert (unsigned_type, mask);
2880 mask = const_binop (LSHIFT_EXPR, mask, size_int (nbitsize - lbitsize), 0);
2881 mask = const_binop (RSHIFT_EXPR, mask,
2882 size_int (nbitsize - lbitsize - lbitpos), 0);
2884 if (! const_p)
2885 /* If not comparing with constant, just rework the comparison
2886 and return. */
2887 return build (code, compare_type,
2888 build (BIT_AND_EXPR, unsigned_type,
2889 make_bit_field_ref (linner, unsigned_type,
2890 nbitsize, nbitpos, 1),
2891 mask),
2892 build (BIT_AND_EXPR, unsigned_type,
2893 make_bit_field_ref (rinner, unsigned_type,
2894 nbitsize, nbitpos, 1),
2895 mask));
2897 /* Otherwise, we are handling the constant case. See if the constant is too
2898 big for the field. Warn and return a tree of for 0 (false) if so. We do
2899 this not only for its own sake, but to avoid having to test for this
2900 error case below. If we didn't, we might generate wrong code.
2902 For unsigned fields, the constant shifted right by the field length should
2903 be all zero. For signed fields, the high-order bits should agree with
2904 the sign bit. */
2906 if (lunsignedp)
2908 if (! integer_zerop (const_binop (RSHIFT_EXPR,
2909 convert (unsigned_type, rhs),
2910 size_int (lbitsize), 0)))
2912 warning ("comparison is always %d due to width of bitfield",
2913 code == NE_EXPR);
2914 return convert (compare_type,
2915 (code == NE_EXPR
2916 ? integer_one_node : integer_zero_node));
2919 else
2921 tree tem = const_binop (RSHIFT_EXPR, convert (signed_type, rhs),
2922 size_int (lbitsize - 1), 0);
2923 if (! integer_zerop (tem) && ! integer_all_onesp (tem))
2925 warning ("comparison is always %d due to width of bitfield",
2926 code == NE_EXPR);
2927 return convert (compare_type,
2928 (code == NE_EXPR
2929 ? integer_one_node : integer_zero_node));
2933 /* Single-bit compares should always be against zero. */
2934 if (lbitsize == 1 && ! integer_zerop (rhs))
2936 code = code == EQ_EXPR ? NE_EXPR : EQ_EXPR;
2937 rhs = convert (type, integer_zero_node);
2940 /* Make a new bitfield reference, shift the constant over the
2941 appropriate number of bits and mask it with the computed mask
2942 (in case this was a signed field). If we changed it, make a new one. */
2943 lhs = make_bit_field_ref (linner, unsigned_type, nbitsize, nbitpos, 1);
2944 if (lvolatilep)
2946 TREE_SIDE_EFFECTS (lhs) = 1;
2947 TREE_THIS_VOLATILE (lhs) = 1;
2950 rhs = fold (const_binop (BIT_AND_EXPR,
2951 const_binop (LSHIFT_EXPR,
2952 convert (unsigned_type, rhs),
2953 size_int (lbitpos), 0),
2954 mask, 0));
2956 return build (code, compare_type,
2957 build (BIT_AND_EXPR, unsigned_type, lhs, mask),
2958 rhs);
2961 /* Subroutine for fold_truthop: decode a field reference.
2963 If EXP is a comparison reference, we return the innermost reference.
2965 *PBITSIZE is set to the number of bits in the reference, *PBITPOS is
2966 set to the starting bit number.
2968 If the innermost field can be completely contained in a mode-sized
2969 unit, *PMODE is set to that mode. Otherwise, it is set to VOIDmode.
2971 *PVOLATILEP is set to 1 if the any expression encountered is volatile;
2972 otherwise it is not changed.
2974 *PUNSIGNEDP is set to the signedness of the field.
2976 *PMASK is set to the mask used. This is either contained in a
2977 BIT_AND_EXPR or derived from the width of the field.
2979 *PAND_MASK is set to the mask found in a BIT_AND_EXPR, if any.
2981 Return 0 if this is not a component reference or is one that we can't
2982 do anything with. */
2984 static tree
2985 decode_field_reference (exp, pbitsize, pbitpos, pmode, punsignedp,
2986 pvolatilep, pmask, pand_mask)
2987 tree exp;
2988 int *pbitsize, *pbitpos;
2989 enum machine_mode *pmode;
2990 int *punsignedp, *pvolatilep;
2991 tree *pmask;
2992 tree *pand_mask;
2994 tree and_mask = 0;
2995 tree mask, inner, offset;
2996 tree unsigned_type;
2997 int precision;
2998 int alignment;
3000 /* All the optimizations using this function assume integer fields.
3001 There are problems with FP fields since the type_for_size call
3002 below can fail for, e.g., XFmode. */
3003 if (! INTEGRAL_TYPE_P (TREE_TYPE (exp)))
3004 return 0;
3006 STRIP_NOPS (exp);
3008 if (TREE_CODE (exp) == BIT_AND_EXPR)
3010 and_mask = TREE_OPERAND (exp, 1);
3011 exp = TREE_OPERAND (exp, 0);
3012 STRIP_NOPS (exp); STRIP_NOPS (and_mask);
3013 if (TREE_CODE (and_mask) != INTEGER_CST)
3014 return 0;
3018 inner = get_inner_reference (exp, pbitsize, pbitpos, &offset, pmode,
3019 punsignedp, pvolatilep, &alignment);
3020 if ((inner == exp && and_mask == 0)
3021 || *pbitsize < 0 || offset != 0
3022 || TREE_CODE (inner) == PLACEHOLDER_EXPR)
3023 return 0;
3025 /* Compute the mask to access the bitfield. */
3026 unsigned_type = type_for_size (*pbitsize, 1);
3027 precision = TYPE_PRECISION (unsigned_type);
3029 mask = build_int_2 (~0, ~0);
3030 TREE_TYPE (mask) = unsigned_type;
3031 force_fit_type (mask, 0);
3032 mask = const_binop (LSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
3033 mask = const_binop (RSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
3035 /* Merge it with the mask we found in the BIT_AND_EXPR, if any. */
3036 if (and_mask != 0)
3037 mask = fold (build (BIT_AND_EXPR, unsigned_type,
3038 convert (unsigned_type, and_mask), mask));
3040 *pmask = mask;
3041 *pand_mask = and_mask;
3042 return inner;
3045 /* Return non-zero if MASK represents a mask of SIZE ones in the low-order
3046 bit positions. */
3048 static int
3049 all_ones_mask_p (mask, size)
3050 tree mask;
3051 int size;
3053 tree type = TREE_TYPE (mask);
3054 int precision = TYPE_PRECISION (type);
3055 tree tmask;
3057 tmask = build_int_2 (~0, ~0);
3058 TREE_TYPE (tmask) = signed_type (type);
3059 force_fit_type (tmask, 0);
3060 return
3061 tree_int_cst_equal (mask,
3062 const_binop (RSHIFT_EXPR,
3063 const_binop (LSHIFT_EXPR, tmask,
3064 size_int (precision - size),
3066 size_int (precision - size), 0));
3069 /* Subroutine for fold_truthop: determine if an operand is simple enough
3070 to be evaluated unconditionally. */
3072 static int
3073 simple_operand_p (exp)
3074 tree exp;
3076 /* Strip any conversions that don't change the machine mode. */
3077 while ((TREE_CODE (exp) == NOP_EXPR
3078 || TREE_CODE (exp) == CONVERT_EXPR)
3079 && (TYPE_MODE (TREE_TYPE (exp))
3080 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)))))
3081 exp = TREE_OPERAND (exp, 0);
3083 return (TREE_CODE_CLASS (TREE_CODE (exp)) == 'c'
3084 || (TREE_CODE_CLASS (TREE_CODE (exp)) == 'd'
3085 && ! TREE_ADDRESSABLE (exp)
3086 && ! TREE_THIS_VOLATILE (exp)
3087 && ! DECL_NONLOCAL (exp)
3088 /* Don't regard global variables as simple. They may be
3089 allocated in ways unknown to the compiler (shared memory,
3090 #pragma weak, etc). */
3091 && ! TREE_PUBLIC (exp)
3092 && ! DECL_EXTERNAL (exp)
3093 /* Loading a static variable is unduly expensive, but global
3094 registers aren't expensive. */
3095 && (! TREE_STATIC (exp) || DECL_REGISTER (exp))));
3098 /* The following functions are subroutines to fold_range_test and allow it to
3099 try to change a logical combination of comparisons into a range test.
3101 For example, both
3102 X == 2 && X == 3 && X == 4 && X == 5
3104 X >= 2 && X <= 5
3105 are converted to
3106 (unsigned) (X - 2) <= 3
3108 We describe each set of comparisons as being either inside or outside
3109 a range, using a variable named like IN_P, and then describe the
3110 range with a lower and upper bound. If one of the bounds is omitted,
3111 it represents either the highest or lowest value of the type.
3113 In the comments below, we represent a range by two numbers in brackets
3114 preceded by a "+" to designate being inside that range, or a "-" to
3115 designate being outside that range, so the condition can be inverted by
3116 flipping the prefix. An omitted bound is represented by a "-". For
3117 example, "- [-, 10]" means being outside the range starting at the lowest
3118 possible value and ending at 10, in other words, being greater than 10.
3119 The range "+ [-, -]" is always true and hence the range "- [-, -]" is
3120 always false.
3122 We set up things so that the missing bounds are handled in a consistent
3123 manner so neither a missing bound nor "true" and "false" need to be
3124 handled using a special case. */
3126 /* Return the result of applying CODE to ARG0 and ARG1, but handle the case
3127 of ARG0 and/or ARG1 being omitted, meaning an unlimited range. UPPER0_P
3128 and UPPER1_P are nonzero if the respective argument is an upper bound
3129 and zero for a lower. TYPE, if nonzero, is the type of the result; it
3130 must be specified for a comparison. ARG1 will be converted to ARG0's
3131 type if both are specified. */
3133 static tree
3134 range_binop (code, type, arg0, upper0_p, arg1, upper1_p)
3135 enum tree_code code;
3136 tree type;
3137 tree arg0, arg1;
3138 int upper0_p, upper1_p;
3140 tree tem;
3141 int result;
3142 int sgn0, sgn1;
3144 /* If neither arg represents infinity, do the normal operation.
3145 Else, if not a comparison, return infinity. Else handle the special
3146 comparison rules. Note that most of the cases below won't occur, but
3147 are handled for consistency. */
3149 if (arg0 != 0 && arg1 != 0)
3151 tem = fold (build (code, type != 0 ? type : TREE_TYPE (arg0),
3152 arg0, convert (TREE_TYPE (arg0), arg1)));
3153 STRIP_NOPS (tem);
3154 return TREE_CODE (tem) == INTEGER_CST ? tem : 0;
3157 if (TREE_CODE_CLASS (code) != '<')
3158 return 0;
3160 /* Set SGN[01] to -1 if ARG[01] is a lower bound, 1 for upper, and 0
3161 for neither. In real maths, we cannot assume open ended ranges are
3162 the same. But, this is computer arithmetic, where numbers are finite.
3163 We can therefore make the transformation of any unbounded range with
3164 the value Z, Z being greater than any representable number. This permits
3165 us to treat unbounded ranges as equal. */
3166 sgn0 = arg0 != 0 ? 0 : (upper0_p ? 1 : -1);
3167 sgn1 = arg1 != 0 ? 0 : (upper1_p ? 1 : -1);
3168 switch (code)
3170 case EQ_EXPR:
3171 result = sgn0 == sgn1;
3172 break;
3173 case NE_EXPR:
3174 result = sgn0 != sgn1;
3175 break;
3176 case LT_EXPR:
3177 result = sgn0 < sgn1;
3178 break;
3179 case LE_EXPR:
3180 result = sgn0 <= sgn1;
3181 break;
3182 case GT_EXPR:
3183 result = sgn0 > sgn1;
3184 break;
3185 case GE_EXPR:
3186 result = sgn0 >= sgn1;
3187 break;
3188 default:
3189 abort ();
3192 return convert (type, result ? integer_one_node : integer_zero_node);
3195 /* Given EXP, a logical expression, set the range it is testing into
3196 variables denoted by PIN_P, PLOW, and PHIGH. Return the expression
3197 actually being tested. *PLOW and *PHIGH will have be made the same type
3198 as the returned expression. If EXP is not a comparison, we will most
3199 likely not be returning a useful value and range. */
3201 static tree
3202 make_range (exp, pin_p, plow, phigh)
3203 tree exp;
3204 int *pin_p;
3205 tree *plow, *phigh;
3207 enum tree_code code;
3208 tree arg0 = NULL_TREE, arg1 = NULL_TREE, type = NULL_TREE;
3209 tree orig_type = NULL_TREE;
3210 int in_p, n_in_p;
3211 tree low, high, n_low, n_high;
3213 /* Start with simply saying "EXP != 0" and then look at the code of EXP
3214 and see if we can refine the range. Some of the cases below may not
3215 happen, but it doesn't seem worth worrying about this. We "continue"
3216 the outer loop when we've changed something; otherwise we "break"
3217 the switch, which will "break" the while. */
3219 in_p = 0, low = high = convert (TREE_TYPE (exp), integer_zero_node);
3221 while (1)
3223 code = TREE_CODE (exp);
3225 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
3227 arg0 = TREE_OPERAND (exp, 0);
3228 if (TREE_CODE_CLASS (code) == '<'
3229 || TREE_CODE_CLASS (code) == '1'
3230 || TREE_CODE_CLASS (code) == '2')
3231 type = TREE_TYPE (arg0);
3232 if (TREE_CODE_CLASS (code) == '2'
3233 || TREE_CODE_CLASS (code) == '<'
3234 || (TREE_CODE_CLASS (code) == 'e'
3235 && tree_code_length[(int) code] > 1))
3236 arg1 = TREE_OPERAND (exp, 1);
3239 /* Set ORIG_TYPE as soon as TYPE is non-null so that we do not
3240 lose a cast by accident. */
3241 if (type != NULL_TREE && orig_type == NULL_TREE)
3242 orig_type = type;
3244 switch (code)
3246 case TRUTH_NOT_EXPR:
3247 in_p = ! in_p, exp = arg0;
3248 continue;
3250 case EQ_EXPR: case NE_EXPR:
3251 case LT_EXPR: case LE_EXPR: case GE_EXPR: case GT_EXPR:
3252 /* We can only do something if the range is testing for zero
3253 and if the second operand is an integer constant. Note that
3254 saying something is "in" the range we make is done by
3255 complementing IN_P since it will set in the initial case of
3256 being not equal to zero; "out" is leaving it alone. */
3257 if (low == 0 || high == 0
3258 || ! integer_zerop (low) || ! integer_zerop (high)
3259 || TREE_CODE (arg1) != INTEGER_CST)
3260 break;
3262 switch (code)
3264 case NE_EXPR: /* - [c, c] */
3265 low = high = arg1;
3266 break;
3267 case EQ_EXPR: /* + [c, c] */
3268 in_p = ! in_p, low = high = arg1;
3269 break;
3270 case GT_EXPR: /* - [-, c] */
3271 low = 0, high = arg1;
3272 break;
3273 case GE_EXPR: /* + [c, -] */
3274 in_p = ! in_p, low = arg1, high = 0;
3275 break;
3276 case LT_EXPR: /* - [c, -] */
3277 low = arg1, high = 0;
3278 break;
3279 case LE_EXPR: /* + [-, c] */
3280 in_p = ! in_p, low = 0, high = arg1;
3281 break;
3282 default:
3283 abort ();
3286 exp = arg0;
3288 /* If this is an unsigned comparison, we also know that EXP is
3289 greater than or equal to zero. We base the range tests we make
3290 on that fact, so we record it here so we can parse existing
3291 range tests. */
3292 if (TREE_UNSIGNED (type) && (low == 0 || high == 0))
3294 if (! merge_ranges (&n_in_p, &n_low, &n_high, in_p, low, high,
3295 1, convert (type, integer_zero_node),
3296 NULL_TREE))
3297 break;
3299 in_p = n_in_p, low = n_low, high = n_high;
3301 /* If the high bound is missing, reverse the range so it
3302 goes from zero to the low bound minus 1. */
3303 if (high == 0)
3305 in_p = ! in_p;
3306 high = range_binop (MINUS_EXPR, NULL_TREE, low, 0,
3307 integer_one_node, 0);
3308 low = convert (type, integer_zero_node);
3311 continue;
3313 case NEGATE_EXPR:
3314 /* (-x) IN [a,b] -> x in [-b, -a] */
3315 n_low = range_binop (MINUS_EXPR, type,
3316 convert (type, integer_zero_node), 0, high, 1);
3317 n_high = range_binop (MINUS_EXPR, type,
3318 convert (type, integer_zero_node), 0, low, 0);
3319 low = n_low, high = n_high;
3320 exp = arg0;
3321 continue;
3323 case BIT_NOT_EXPR:
3324 /* ~ X -> -X - 1 */
3325 exp = build (MINUS_EXPR, type, negate_expr (arg0),
3326 convert (type, integer_one_node));
3327 continue;
3329 case PLUS_EXPR: case MINUS_EXPR:
3330 if (TREE_CODE (arg1) != INTEGER_CST)
3331 break;
3333 /* If EXP is signed, any overflow in the computation is undefined,
3334 so we don't worry about it so long as our computations on
3335 the bounds don't overflow. For unsigned, overflow is defined
3336 and this is exactly the right thing. */
3337 n_low = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3338 type, low, 0, arg1, 0);
3339 n_high = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3340 type, high, 1, arg1, 0);
3341 if ((n_low != 0 && TREE_OVERFLOW (n_low))
3342 || (n_high != 0 && TREE_OVERFLOW (n_high)))
3343 break;
3345 /* Check for an unsigned range which has wrapped around the maximum
3346 value thus making n_high < n_low, and normalize it. */
3347 if (n_low && n_high && tree_int_cst_lt (n_high, n_low))
3349 low = range_binop (PLUS_EXPR, type, n_high, 0,
3350 integer_one_node, 0);
3351 high = range_binop (MINUS_EXPR, type, n_low, 0,
3352 integer_one_node, 0);
3353 in_p = ! in_p;
3355 else
3356 low = n_low, high = n_high;
3358 exp = arg0;
3359 continue;
3361 case NOP_EXPR: case NON_LVALUE_EXPR: case CONVERT_EXPR:
3362 if (TYPE_PRECISION (type) > TYPE_PRECISION (orig_type))
3363 break;
3365 if (! INTEGRAL_TYPE_P (type)
3366 || (low != 0 && ! int_fits_type_p (low, type))
3367 || (high != 0 && ! int_fits_type_p (high, type)))
3368 break;
3370 n_low = low, n_high = high;
3372 if (n_low != 0)
3373 n_low = convert (type, n_low);
3375 if (n_high != 0)
3376 n_high = convert (type, n_high);
3378 /* If we're converting from an unsigned to a signed type,
3379 we will be doing the comparison as unsigned. The tests above
3380 have already verified that LOW and HIGH are both positive.
3382 So we have to make sure that the original unsigned value will
3383 be interpreted as positive. */
3384 if (TREE_UNSIGNED (type) && ! TREE_UNSIGNED (TREE_TYPE (exp)))
3386 tree equiv_type = type_for_mode (TYPE_MODE (type), 1);
3387 tree high_positive;
3389 /* A range without an upper bound is, naturally, unbounded.
3390 Since convert would have cropped a very large value, use
3391 the max value for the destination type. */
3392 high_positive
3393 = TYPE_MAX_VALUE (equiv_type) ? TYPE_MAX_VALUE (equiv_type)
3394 : TYPE_MAX_VALUE (type);
3396 high_positive = fold (build (RSHIFT_EXPR, type,
3397 convert (type, high_positive),
3398 convert (type, integer_one_node)));
3400 /* If the low bound is specified, "and" the range with the
3401 range for which the original unsigned value will be
3402 positive. */
3403 if (low != 0)
3405 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3406 1, n_low, n_high,
3407 1, convert (type, integer_zero_node),
3408 high_positive))
3409 break;
3411 in_p = (n_in_p == in_p);
3413 else
3415 /* Otherwise, "or" the range with the range of the input
3416 that will be interpreted as negative. */
3417 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3418 0, n_low, n_high,
3419 1, convert (type, integer_zero_node),
3420 high_positive))
3421 break;
3423 in_p = (in_p != n_in_p);
3427 exp = arg0;
3428 low = n_low, high = n_high;
3429 continue;
3431 default:
3432 break;
3435 break;
3438 /* If EXP is a constant, we can evaluate whether this is true or false. */
3439 if (TREE_CODE (exp) == INTEGER_CST)
3441 in_p = in_p == (integer_onep (range_binop (GE_EXPR, integer_type_node,
3442 exp, 0, low, 0))
3443 && integer_onep (range_binop (LE_EXPR, integer_type_node,
3444 exp, 1, high, 1)));
3445 low = high = 0;
3446 exp = 0;
3449 *pin_p = in_p, *plow = low, *phigh = high;
3450 return exp;
3453 /* Given a range, LOW, HIGH, and IN_P, an expression, EXP, and a result
3454 type, TYPE, return an expression to test if EXP is in (or out of, depending
3455 on IN_P) the range. */
3457 static tree
3458 build_range_check (type, exp, in_p, low, high)
3459 tree type;
3460 tree exp;
3461 int in_p;
3462 tree low, high;
3464 tree etype = TREE_TYPE (exp);
3465 tree utype, value;
3467 if (! in_p
3468 && (0 != (value = build_range_check (type, exp, 1, low, high))))
3469 return invert_truthvalue (value);
3471 else if (low == 0 && high == 0)
3472 return convert (type, integer_one_node);
3474 else if (low == 0)
3475 return fold (build (LE_EXPR, type, exp, high));
3477 else if (high == 0)
3478 return fold (build (GE_EXPR, type, exp, low));
3480 else if (operand_equal_p (low, high, 0))
3481 return fold (build (EQ_EXPR, type, exp, low));
3483 else if (TREE_UNSIGNED (etype) && integer_zerop (low))
3484 return build_range_check (type, exp, 1, 0, high);
3486 else if (integer_zerop (low))
3488 utype = unsigned_type (etype);
3489 return build_range_check (type, convert (utype, exp), 1, 0,
3490 convert (utype, high));
3493 else if (0 != (value = const_binop (MINUS_EXPR, high, low, 0))
3494 && ! TREE_OVERFLOW (value))
3495 return build_range_check (type,
3496 fold (build (MINUS_EXPR, etype, exp, low)),
3497 1, convert (etype, integer_zero_node), value);
3498 else
3499 return 0;
3502 /* Given two ranges, see if we can merge them into one. Return 1 if we
3503 can, 0 if we can't. Set the output range into the specified parameters. */
3505 static int
3506 merge_ranges (pin_p, plow, phigh, in0_p, low0, high0, in1_p, low1, high1)
3507 int *pin_p;
3508 tree *plow, *phigh;
3509 int in0_p, in1_p;
3510 tree low0, high0, low1, high1;
3512 int no_overlap;
3513 int subset;
3514 int temp;
3515 tree tem;
3516 int in_p;
3517 tree low, high;
3518 int lowequal = ((low0 == 0 && low1 == 0)
3519 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
3520 low0, 0, low1, 0)));
3521 int highequal = ((high0 == 0 && high1 == 0)
3522 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
3523 high0, 1, high1, 1)));
3525 /* Make range 0 be the range that starts first, or ends last if they
3526 start at the same value. Swap them if it isn't. */
3527 if (integer_onep (range_binop (GT_EXPR, integer_type_node,
3528 low0, 0, low1, 0))
3529 || (lowequal
3530 && integer_onep (range_binop (GT_EXPR, integer_type_node,
3531 high1, 1, high0, 1))))
3533 temp = in0_p, in0_p = in1_p, in1_p = temp;
3534 tem = low0, low0 = low1, low1 = tem;
3535 tem = high0, high0 = high1, high1 = tem;
3538 /* Now flag two cases, whether the ranges are disjoint or whether the
3539 second range is totally subsumed in the first. Note that the tests
3540 below are simplified by the ones above. */
3541 no_overlap = integer_onep (range_binop (LT_EXPR, integer_type_node,
3542 high0, 1, low1, 0));
3543 subset = integer_onep (range_binop (LE_EXPR, integer_type_node,
3544 high1, 1, high0, 1));
3546 /* We now have four cases, depending on whether we are including or
3547 excluding the two ranges. */
3548 if (in0_p && in1_p)
3550 /* If they don't overlap, the result is false. If the second range
3551 is a subset it is the result. Otherwise, the range is from the start
3552 of the second to the end of the first. */
3553 if (no_overlap)
3554 in_p = 0, low = high = 0;
3555 else if (subset)
3556 in_p = 1, low = low1, high = high1;
3557 else
3558 in_p = 1, low = low1, high = high0;
3561 else if (in0_p && ! in1_p)
3563 /* If they don't overlap, the result is the first range. If they are
3564 equal, the result is false. If the second range is a subset of the
3565 first, and the ranges begin at the same place, we go from just after
3566 the end of the first range to the end of the second. If the second
3567 range is not a subset of the first, or if it is a subset and both
3568 ranges end at the same place, the range starts at the start of the
3569 first range and ends just before the second range.
3570 Otherwise, we can't describe this as a single range. */
3571 if (no_overlap)
3572 in_p = 1, low = low0, high = high0;
3573 else if (lowequal && highequal)
3574 in_p = 0, low = high = 0;
3575 else if (subset && lowequal)
3577 in_p = 1, high = high0;
3578 low = range_binop (PLUS_EXPR, NULL_TREE, high1, 0,
3579 integer_one_node, 0);
3581 else if (! subset || highequal)
3583 in_p = 1, low = low0;
3584 high = range_binop (MINUS_EXPR, NULL_TREE, low1, 0,
3585 integer_one_node, 0);
3587 else
3588 return 0;
3591 else if (! in0_p && in1_p)
3593 /* If they don't overlap, the result is the second range. If the second
3594 is a subset of the first, the result is false. Otherwise,
3595 the range starts just after the first range and ends at the
3596 end of the second. */
3597 if (no_overlap)
3598 in_p = 1, low = low1, high = high1;
3599 else if (subset || highequal)
3600 in_p = 0, low = high = 0;
3601 else
3603 in_p = 1, high = high1;
3604 low = range_binop (PLUS_EXPR, NULL_TREE, high0, 1,
3605 integer_one_node, 0);
3609 else
3611 /* The case where we are excluding both ranges. Here the complex case
3612 is if they don't overlap. In that case, the only time we have a
3613 range is if they are adjacent. If the second is a subset of the
3614 first, the result is the first. Otherwise, the range to exclude
3615 starts at the beginning of the first range and ends at the end of the
3616 second. */
3617 if (no_overlap)
3619 if (integer_onep (range_binop (EQ_EXPR, integer_type_node,
3620 range_binop (PLUS_EXPR, NULL_TREE,
3621 high0, 1,
3622 integer_one_node, 1),
3623 1, low1, 0)))
3624 in_p = 0, low = low0, high = high1;
3625 else
3626 return 0;
3628 else if (subset)
3629 in_p = 0, low = low0, high = high0;
3630 else
3631 in_p = 0, low = low0, high = high1;
3634 *pin_p = in_p, *plow = low, *phigh = high;
3635 return 1;
3638 /* EXP is some logical combination of boolean tests. See if we can
3639 merge it into some range test. Return the new tree if so. */
3641 static tree
3642 fold_range_test (exp)
3643 tree exp;
3645 int or_op = (TREE_CODE (exp) == TRUTH_ORIF_EXPR
3646 || TREE_CODE (exp) == TRUTH_OR_EXPR);
3647 int in0_p, in1_p, in_p;
3648 tree low0, low1, low, high0, high1, high;
3649 tree lhs = make_range (TREE_OPERAND (exp, 0), &in0_p, &low0, &high0);
3650 tree rhs = make_range (TREE_OPERAND (exp, 1), &in1_p, &low1, &high1);
3651 tree tem;
3653 /* If this is an OR operation, invert both sides; we will invert
3654 again at the end. */
3655 if (or_op)
3656 in0_p = ! in0_p, in1_p = ! in1_p;
3658 /* If both expressions are the same, if we can merge the ranges, and we
3659 can build the range test, return it or it inverted. If one of the
3660 ranges is always true or always false, consider it to be the same
3661 expression as the other. */
3662 if ((lhs == 0 || rhs == 0 || operand_equal_p (lhs, rhs, 0))
3663 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
3664 in1_p, low1, high1)
3665 && 0 != (tem = (build_range_check (TREE_TYPE (exp),
3666 lhs != 0 ? lhs
3667 : rhs != 0 ? rhs : integer_zero_node,
3668 in_p, low, high))))
3669 return or_op ? invert_truthvalue (tem) : tem;
3671 /* On machines where the branch cost is expensive, if this is a
3672 short-circuited branch and the underlying object on both sides
3673 is the same, make a non-short-circuit operation. */
3674 else if (BRANCH_COST >= 2
3675 && (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
3676 || TREE_CODE (exp) == TRUTH_ORIF_EXPR)
3677 && operand_equal_p (lhs, rhs, 0))
3679 /* If simple enough, just rewrite. Otherwise, make a SAVE_EXPR
3680 unless we are at top level or LHS contains a PLACEHOLDER_EXPR, in
3681 which cases we can't do this. */
3682 if (simple_operand_p (lhs))
3683 return build (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
3684 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
3685 TREE_TYPE (exp), TREE_OPERAND (exp, 0),
3686 TREE_OPERAND (exp, 1));
3688 else if (global_bindings_p () == 0
3689 && ! contains_placeholder_p (lhs))
3691 tree common = save_expr (lhs);
3693 if (0 != (lhs = build_range_check (TREE_TYPE (exp), common,
3694 or_op ? ! in0_p : in0_p,
3695 low0, high0))
3696 && (0 != (rhs = build_range_check (TREE_TYPE (exp), common,
3697 or_op ? ! in1_p : in1_p,
3698 low1, high1))))
3699 return build (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
3700 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
3701 TREE_TYPE (exp), lhs, rhs);
3705 return 0;
3708 /* Subroutine for fold_truthop: C is an INTEGER_CST interpreted as a P
3709 bit value. Arrange things so the extra bits will be set to zero if and
3710 only if C is signed-extended to its full width. If MASK is nonzero,
3711 it is an INTEGER_CST that should be AND'ed with the extra bits. */
3713 static tree
3714 unextend (c, p, unsignedp, mask)
3715 tree c;
3716 int p;
3717 int unsignedp;
3718 tree mask;
3720 tree type = TREE_TYPE (c);
3721 int modesize = GET_MODE_BITSIZE (TYPE_MODE (type));
3722 tree temp;
3724 if (p == modesize || unsignedp)
3725 return c;
3727 /* We work by getting just the sign bit into the low-order bit, then
3728 into the high-order bit, then sign-extend. We then XOR that value
3729 with C. */
3730 temp = const_binop (RSHIFT_EXPR, c, size_int (p - 1), 0);
3731 temp = const_binop (BIT_AND_EXPR, temp, size_int (1), 0);
3733 /* We must use a signed type in order to get an arithmetic right shift.
3734 However, we must also avoid introducing accidental overflows, so that
3735 a subsequent call to integer_zerop will work. Hence we must
3736 do the type conversion here. At this point, the constant is either
3737 zero or one, and the conversion to a signed type can never overflow.
3738 We could get an overflow if this conversion is done anywhere else. */
3739 if (TREE_UNSIGNED (type))
3740 temp = convert (signed_type (type), temp);
3742 temp = const_binop (LSHIFT_EXPR, temp, size_int (modesize - 1), 0);
3743 temp = const_binop (RSHIFT_EXPR, temp, size_int (modesize - p - 1), 0);
3744 if (mask != 0)
3745 temp = const_binop (BIT_AND_EXPR, temp, convert (TREE_TYPE (c), mask), 0);
3746 /* If necessary, convert the type back to match the type of C. */
3747 if (TREE_UNSIGNED (type))
3748 temp = convert (type, temp);
3750 return convert (type, const_binop (BIT_XOR_EXPR, c, temp, 0));
3753 /* Find ways of folding logical expressions of LHS and RHS:
3754 Try to merge two comparisons to the same innermost item.
3755 Look for range tests like "ch >= '0' && ch <= '9'".
3756 Look for combinations of simple terms on machines with expensive branches
3757 and evaluate the RHS unconditionally.
3759 For example, if we have p->a == 2 && p->b == 4 and we can make an
3760 object large enough to span both A and B, we can do this with a comparison
3761 against the object ANDed with the a mask.
3763 If we have p->a == q->a && p->b == q->b, we may be able to use bit masking
3764 operations to do this with one comparison.
3766 We check for both normal comparisons and the BIT_AND_EXPRs made this by
3767 function and the one above.
3769 CODE is the logical operation being done. It can be TRUTH_ANDIF_EXPR,
3770 TRUTH_AND_EXPR, TRUTH_ORIF_EXPR, or TRUTH_OR_EXPR.
3772 TRUTH_TYPE is the type of the logical operand and LHS and RHS are its
3773 two operands.
3775 We return the simplified tree or 0 if no optimization is possible. */
3777 static tree
3778 fold_truthop (code, truth_type, lhs, rhs)
3779 enum tree_code code;
3780 tree truth_type, lhs, rhs;
3782 /* If this is the "or" of two comparisons, we can do something if we
3783 the comparisons are NE_EXPR. If this is the "and", we can do something
3784 if the comparisons are EQ_EXPR. I.e.,
3785 (a->b == 2 && a->c == 4) can become (a->new == NEW).
3787 WANTED_CODE is this operation code. For single bit fields, we can
3788 convert EQ_EXPR to NE_EXPR so we need not reject the "wrong"
3789 comparison for one-bit fields. */
3791 enum tree_code wanted_code;
3792 enum tree_code lcode, rcode;
3793 tree ll_arg, lr_arg, rl_arg, rr_arg;
3794 tree ll_inner, lr_inner, rl_inner, rr_inner;
3795 int ll_bitsize, ll_bitpos, lr_bitsize, lr_bitpos;
3796 int rl_bitsize, rl_bitpos, rr_bitsize, rr_bitpos;
3797 int xll_bitpos, xlr_bitpos, xrl_bitpos, xrr_bitpos;
3798 int lnbitsize, lnbitpos, rnbitsize, rnbitpos;
3799 int ll_unsignedp, lr_unsignedp, rl_unsignedp, rr_unsignedp;
3800 enum machine_mode ll_mode, lr_mode, rl_mode, rr_mode;
3801 enum machine_mode lnmode, rnmode;
3802 tree ll_mask, lr_mask, rl_mask, rr_mask;
3803 tree ll_and_mask, lr_and_mask, rl_and_mask, rr_and_mask;
3804 tree l_const, r_const;
3805 tree lntype, rntype, result;
3806 int first_bit, end_bit;
3807 int volatilep;
3809 /* Start by getting the comparison codes. Fail if anything is volatile.
3810 If one operand is a BIT_AND_EXPR with the constant one, treat it as if
3811 it were surrounded with a NE_EXPR. */
3813 if (TREE_SIDE_EFFECTS (lhs) || TREE_SIDE_EFFECTS (rhs))
3814 return 0;
3816 lcode = TREE_CODE (lhs);
3817 rcode = TREE_CODE (rhs);
3819 if (lcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (lhs, 1)))
3820 lcode = NE_EXPR, lhs = build (NE_EXPR, truth_type, lhs, integer_zero_node);
3822 if (rcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (rhs, 1)))
3823 rcode = NE_EXPR, rhs = build (NE_EXPR, truth_type, rhs, integer_zero_node);
3825 if (TREE_CODE_CLASS (lcode) != '<' || TREE_CODE_CLASS (rcode) != '<')
3826 return 0;
3828 code = ((code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR)
3829 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR);
3831 ll_arg = TREE_OPERAND (lhs, 0);
3832 lr_arg = TREE_OPERAND (lhs, 1);
3833 rl_arg = TREE_OPERAND (rhs, 0);
3834 rr_arg = TREE_OPERAND (rhs, 1);
3836 /* If the RHS can be evaluated unconditionally and its operands are
3837 simple, it wins to evaluate the RHS unconditionally on machines
3838 with expensive branches. In this case, this isn't a comparison
3839 that can be merged. */
3841 /* @@ I'm not sure it wins on the m88110 to do this if the comparisons
3842 are with zero (tmw). */
3844 if (BRANCH_COST >= 2
3845 && INTEGRAL_TYPE_P (TREE_TYPE (rhs))
3846 && simple_operand_p (rl_arg)
3847 && simple_operand_p (rr_arg))
3848 return build (code, truth_type, lhs, rhs);
3850 /* See if the comparisons can be merged. Then get all the parameters for
3851 each side. */
3853 if ((lcode != EQ_EXPR && lcode != NE_EXPR)
3854 || (rcode != EQ_EXPR && rcode != NE_EXPR))
3855 return 0;
3857 volatilep = 0;
3858 ll_inner = decode_field_reference (ll_arg,
3859 &ll_bitsize, &ll_bitpos, &ll_mode,
3860 &ll_unsignedp, &volatilep, &ll_mask,
3861 &ll_and_mask);
3862 lr_inner = decode_field_reference (lr_arg,
3863 &lr_bitsize, &lr_bitpos, &lr_mode,
3864 &lr_unsignedp, &volatilep, &lr_mask,
3865 &lr_and_mask);
3866 rl_inner = decode_field_reference (rl_arg,
3867 &rl_bitsize, &rl_bitpos, &rl_mode,
3868 &rl_unsignedp, &volatilep, &rl_mask,
3869 &rl_and_mask);
3870 rr_inner = decode_field_reference (rr_arg,
3871 &rr_bitsize, &rr_bitpos, &rr_mode,
3872 &rr_unsignedp, &volatilep, &rr_mask,
3873 &rr_and_mask);
3875 /* It must be true that the inner operation on the lhs of each
3876 comparison must be the same if we are to be able to do anything.
3877 Then see if we have constants. If not, the same must be true for
3878 the rhs's. */
3879 if (volatilep || ll_inner == 0 || rl_inner == 0
3880 || ! operand_equal_p (ll_inner, rl_inner, 0))
3881 return 0;
3883 if (TREE_CODE (lr_arg) == INTEGER_CST
3884 && TREE_CODE (rr_arg) == INTEGER_CST)
3885 l_const = lr_arg, r_const = rr_arg;
3886 else if (lr_inner == 0 || rr_inner == 0
3887 || ! operand_equal_p (lr_inner, rr_inner, 0))
3888 return 0;
3889 else
3890 l_const = r_const = 0;
3892 /* If either comparison code is not correct for our logical operation,
3893 fail. However, we can convert a one-bit comparison against zero into
3894 the opposite comparison against that bit being set in the field. */
3896 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR);
3897 if (lcode != wanted_code)
3899 if (l_const && integer_zerop (l_const) && integer_pow2p (ll_mask))
3901 /* Make the left operand unsigned, since we are only interested
3902 in the value of one bit. Otherwise we are doing the wrong
3903 thing below. */
3904 ll_unsignedp = 1;
3905 l_const = ll_mask;
3907 else
3908 return 0;
3911 /* This is analogous to the code for l_const above. */
3912 if (rcode != wanted_code)
3914 if (r_const && integer_zerop (r_const) && integer_pow2p (rl_mask))
3916 rl_unsignedp = 1;
3917 r_const = rl_mask;
3919 else
3920 return 0;
3923 /* See if we can find a mode that contains both fields being compared on
3924 the left. If we can't, fail. Otherwise, update all constants and masks
3925 to be relative to a field of that size. */
3926 first_bit = MIN (ll_bitpos, rl_bitpos);
3927 end_bit = MAX (ll_bitpos + ll_bitsize, rl_bitpos + rl_bitsize);
3928 lnmode = get_best_mode (end_bit - first_bit, first_bit,
3929 TYPE_ALIGN (TREE_TYPE (ll_inner)), word_mode,
3930 volatilep);
3931 if (lnmode == VOIDmode)
3932 return 0;
3934 lnbitsize = GET_MODE_BITSIZE (lnmode);
3935 lnbitpos = first_bit & ~ (lnbitsize - 1);
3936 lntype = type_for_size (lnbitsize, 1);
3937 xll_bitpos = ll_bitpos - lnbitpos, xrl_bitpos = rl_bitpos - lnbitpos;
3939 if (BYTES_BIG_ENDIAN)
3941 xll_bitpos = lnbitsize - xll_bitpos - ll_bitsize;
3942 xrl_bitpos = lnbitsize - xrl_bitpos - rl_bitsize;
3945 ll_mask = const_binop (LSHIFT_EXPR, convert (lntype, ll_mask),
3946 size_int (xll_bitpos), 0);
3947 rl_mask = const_binop (LSHIFT_EXPR, convert (lntype, rl_mask),
3948 size_int (xrl_bitpos), 0);
3950 if (l_const)
3952 l_const = convert (lntype, l_const);
3953 l_const = unextend (l_const, ll_bitsize, ll_unsignedp, ll_and_mask);
3954 l_const = const_binop (LSHIFT_EXPR, l_const, size_int (xll_bitpos), 0);
3955 if (! integer_zerop (const_binop (BIT_AND_EXPR, l_const,
3956 fold (build1 (BIT_NOT_EXPR,
3957 lntype, ll_mask)),
3958 0)))
3960 warning ("comparison is always %d", wanted_code == NE_EXPR);
3962 return convert (truth_type,
3963 wanted_code == NE_EXPR
3964 ? integer_one_node : integer_zero_node);
3967 if (r_const)
3969 r_const = convert (lntype, r_const);
3970 r_const = unextend (r_const, rl_bitsize, rl_unsignedp, rl_and_mask);
3971 r_const = const_binop (LSHIFT_EXPR, r_const, size_int (xrl_bitpos), 0);
3972 if (! integer_zerop (const_binop (BIT_AND_EXPR, r_const,
3973 fold (build1 (BIT_NOT_EXPR,
3974 lntype, rl_mask)),
3975 0)))
3977 warning ("comparison is always %d", wanted_code == NE_EXPR);
3979 return convert (truth_type,
3980 wanted_code == NE_EXPR
3981 ? integer_one_node : integer_zero_node);
3985 /* If the right sides are not constant, do the same for it. Also,
3986 disallow this optimization if a size or signedness mismatch occurs
3987 between the left and right sides. */
3988 if (l_const == 0)
3990 if (ll_bitsize != lr_bitsize || rl_bitsize != rr_bitsize
3991 || ll_unsignedp != lr_unsignedp || rl_unsignedp != rr_unsignedp
3992 /* Make sure the two fields on the right
3993 correspond to the left without being swapped. */
3994 || ll_bitpos - rl_bitpos != lr_bitpos - rr_bitpos)
3995 return 0;
3997 first_bit = MIN (lr_bitpos, rr_bitpos);
3998 end_bit = MAX (lr_bitpos + lr_bitsize, rr_bitpos + rr_bitsize);
3999 rnmode = get_best_mode (end_bit - first_bit, first_bit,
4000 TYPE_ALIGN (TREE_TYPE (lr_inner)), word_mode,
4001 volatilep);
4002 if (rnmode == VOIDmode)
4003 return 0;
4005 rnbitsize = GET_MODE_BITSIZE (rnmode);
4006 rnbitpos = first_bit & ~ (rnbitsize - 1);
4007 rntype = type_for_size (rnbitsize, 1);
4008 xlr_bitpos = lr_bitpos - rnbitpos, xrr_bitpos = rr_bitpos - rnbitpos;
4010 if (BYTES_BIG_ENDIAN)
4012 xlr_bitpos = rnbitsize - xlr_bitpos - lr_bitsize;
4013 xrr_bitpos = rnbitsize - xrr_bitpos - rr_bitsize;
4016 lr_mask = const_binop (LSHIFT_EXPR, convert (rntype, lr_mask),
4017 size_int (xlr_bitpos), 0);
4018 rr_mask = const_binop (LSHIFT_EXPR, convert (rntype, rr_mask),
4019 size_int (xrr_bitpos), 0);
4021 /* Make a mask that corresponds to both fields being compared.
4022 Do this for both items being compared. If the operands are the
4023 same size and the bits being compared are in the same position
4024 then we can do this by masking both and comparing the masked
4025 results. */
4026 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask, 0);
4027 lr_mask = const_binop (BIT_IOR_EXPR, lr_mask, rr_mask, 0);
4028 if (lnbitsize == rnbitsize && xll_bitpos == xlr_bitpos)
4030 lhs = make_bit_field_ref (ll_inner, lntype, lnbitsize, lnbitpos,
4031 ll_unsignedp || rl_unsignedp);
4032 if (! all_ones_mask_p (ll_mask, lnbitsize))
4033 lhs = build (BIT_AND_EXPR, lntype, lhs, ll_mask);
4035 rhs = make_bit_field_ref (lr_inner, rntype, rnbitsize, rnbitpos,
4036 lr_unsignedp || rr_unsignedp);
4037 if (! all_ones_mask_p (lr_mask, rnbitsize))
4038 rhs = build (BIT_AND_EXPR, rntype, rhs, lr_mask);
4040 return build (wanted_code, truth_type, lhs, rhs);
4043 /* There is still another way we can do something: If both pairs of
4044 fields being compared are adjacent, we may be able to make a wider
4045 field containing them both.
4047 Note that we still must mask the lhs/rhs expressions. Furthermore,
4048 the mask must be shifted to account for the shift done by
4049 make_bit_field_ref. */
4050 if ((ll_bitsize + ll_bitpos == rl_bitpos
4051 && lr_bitsize + lr_bitpos == rr_bitpos)
4052 || (ll_bitpos == rl_bitpos + rl_bitsize
4053 && lr_bitpos == rr_bitpos + rr_bitsize))
4055 tree type;
4057 lhs = make_bit_field_ref (ll_inner, lntype, ll_bitsize + rl_bitsize,
4058 MIN (ll_bitpos, rl_bitpos), ll_unsignedp);
4059 rhs = make_bit_field_ref (lr_inner, rntype, lr_bitsize + rr_bitsize,
4060 MIN (lr_bitpos, rr_bitpos), lr_unsignedp);
4062 ll_mask = const_binop (RSHIFT_EXPR, ll_mask,
4063 size_int (MIN (xll_bitpos, xrl_bitpos)), 0);
4064 lr_mask = const_binop (RSHIFT_EXPR, lr_mask,
4065 size_int (MIN (xlr_bitpos, xrr_bitpos)), 0);
4067 /* Convert to the smaller type before masking out unwanted bits. */
4068 type = lntype;
4069 if (lntype != rntype)
4071 if (lnbitsize > rnbitsize)
4073 lhs = convert (rntype, lhs);
4074 ll_mask = convert (rntype, ll_mask);
4075 type = rntype;
4077 else if (lnbitsize < rnbitsize)
4079 rhs = convert (lntype, rhs);
4080 lr_mask = convert (lntype, lr_mask);
4081 type = lntype;
4085 if (! all_ones_mask_p (ll_mask, ll_bitsize + rl_bitsize))
4086 lhs = build (BIT_AND_EXPR, type, lhs, ll_mask);
4088 if (! all_ones_mask_p (lr_mask, lr_bitsize + rr_bitsize))
4089 rhs = build (BIT_AND_EXPR, type, rhs, lr_mask);
4091 return build (wanted_code, truth_type, lhs, rhs);
4094 return 0;
4097 /* Handle the case of comparisons with constants. If there is something in
4098 common between the masks, those bits of the constants must be the same.
4099 If not, the condition is always false. Test for this to avoid generating
4100 incorrect code below. */
4101 result = const_binop (BIT_AND_EXPR, ll_mask, rl_mask, 0);
4102 if (! integer_zerop (result)
4103 && simple_cst_equal (const_binop (BIT_AND_EXPR, result, l_const, 0),
4104 const_binop (BIT_AND_EXPR, result, r_const, 0)) != 1)
4106 if (wanted_code == NE_EXPR)
4108 warning ("`or' of unmatched not-equal tests is always 1");
4109 return convert (truth_type, integer_one_node);
4111 else
4113 warning ("`and' of mutually exclusive equal-tests is always 0");
4114 return convert (truth_type, integer_zero_node);
4118 /* Construct the expression we will return. First get the component
4119 reference we will make. Unless the mask is all ones the width of
4120 that field, perform the mask operation. Then compare with the
4121 merged constant. */
4122 result = make_bit_field_ref (ll_inner, lntype, lnbitsize, lnbitpos,
4123 ll_unsignedp || rl_unsignedp);
4125 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask, 0);
4126 if (! all_ones_mask_p (ll_mask, lnbitsize))
4127 result = build (BIT_AND_EXPR, lntype, result, ll_mask);
4129 return build (wanted_code, truth_type, result,
4130 const_binop (BIT_IOR_EXPR, l_const, r_const, 0));
4133 /* Optimize T, which is a comparison of a MIN_EXPR or MAX_EXPR with a
4134 constant. */
4136 static tree
4137 optimize_minmax_comparison (t)
4138 tree t;
4140 tree type = TREE_TYPE (t);
4141 tree arg0 = TREE_OPERAND (t, 0);
4142 enum tree_code op_code;
4143 tree comp_const = TREE_OPERAND (t, 1);
4144 tree minmax_const;
4145 int consts_equal, consts_lt;
4146 tree inner;
4148 STRIP_SIGN_NOPS (arg0);
4150 op_code = TREE_CODE (arg0);
4151 minmax_const = TREE_OPERAND (arg0, 1);
4152 consts_equal = tree_int_cst_equal (minmax_const, comp_const);
4153 consts_lt = tree_int_cst_lt (minmax_const, comp_const);
4154 inner = TREE_OPERAND (arg0, 0);
4156 /* If something does not permit us to optimize, return the original tree. */
4157 if ((op_code != MIN_EXPR && op_code != MAX_EXPR)
4158 || TREE_CODE (comp_const) != INTEGER_CST
4159 || TREE_CONSTANT_OVERFLOW (comp_const)
4160 || TREE_CODE (minmax_const) != INTEGER_CST
4161 || TREE_CONSTANT_OVERFLOW (minmax_const))
4162 return t;
4164 /* Now handle all the various comparison codes. We only handle EQ_EXPR
4165 and GT_EXPR, doing the rest with recursive calls using logical
4166 simplifications. */
4167 switch (TREE_CODE (t))
4169 case NE_EXPR: case LT_EXPR: case LE_EXPR:
4170 return
4171 invert_truthvalue (optimize_minmax_comparison (invert_truthvalue (t)));
4173 case GE_EXPR:
4174 return
4175 fold (build (TRUTH_ORIF_EXPR, type,
4176 optimize_minmax_comparison
4177 (build (EQ_EXPR, type, arg0, comp_const)),
4178 optimize_minmax_comparison
4179 (build (GT_EXPR, type, arg0, comp_const))));
4181 case EQ_EXPR:
4182 if (op_code == MAX_EXPR && consts_equal)
4183 /* MAX (X, 0) == 0 -> X <= 0 */
4184 return fold (build (LE_EXPR, type, inner, comp_const));
4186 else if (op_code == MAX_EXPR && consts_lt)
4187 /* MAX (X, 0) == 5 -> X == 5 */
4188 return fold (build (EQ_EXPR, type, inner, comp_const));
4190 else if (op_code == MAX_EXPR)
4191 /* MAX (X, 0) == -1 -> false */
4192 return omit_one_operand (type, integer_zero_node, inner);
4194 else if (consts_equal)
4195 /* MIN (X, 0) == 0 -> X >= 0 */
4196 return fold (build (GE_EXPR, type, inner, comp_const));
4198 else if (consts_lt)
4199 /* MIN (X, 0) == 5 -> false */
4200 return omit_one_operand (type, integer_zero_node, inner);
4202 else
4203 /* MIN (X, 0) == -1 -> X == -1 */
4204 return fold (build (EQ_EXPR, type, inner, comp_const));
4206 case GT_EXPR:
4207 if (op_code == MAX_EXPR && (consts_equal || consts_lt))
4208 /* MAX (X, 0) > 0 -> X > 0
4209 MAX (X, 0) > 5 -> X > 5 */
4210 return fold (build (GT_EXPR, type, inner, comp_const));
4212 else if (op_code == MAX_EXPR)
4213 /* MAX (X, 0) > -1 -> true */
4214 return omit_one_operand (type, integer_one_node, inner);
4216 else if (op_code == MIN_EXPR && (consts_equal || consts_lt))
4217 /* MIN (X, 0) > 0 -> false
4218 MIN (X, 0) > 5 -> false */
4219 return omit_one_operand (type, integer_zero_node, inner);
4221 else
4222 /* MIN (X, 0) > -1 -> X > -1 */
4223 return fold (build (GT_EXPR, type, inner, comp_const));
4225 default:
4226 return t;
4230 /* T is an integer expression that is being multiplied, divided, or taken a
4231 modulus (CODE says which and what kind of divide or modulus) by a
4232 constant C. See if we can eliminate that operation by folding it with
4233 other operations already in T. WIDE_TYPE, if non-null, is a type that
4234 should be used for the computation if wider than our type.
4236 For example, if we are dividing (X * 8) + (Y + 16) by 4, we can return
4237 (X * 2) + (Y + 4). We also canonicalize (X + 7) * 4 into X * 4 + 28
4238 in the hope that either the machine has a multiply-accumulate insn
4239 or that this is part of an addressing calculation.
4241 If we return a non-null expression, it is an equivalent form of the
4242 original computation, but need not be in the original type. */
4244 static tree
4245 extract_muldiv (t, c, code, wide_type)
4246 tree t;
4247 tree c;
4248 enum tree_code code;
4249 tree wide_type;
4251 tree type = TREE_TYPE (t);
4252 enum tree_code tcode = TREE_CODE (t);
4253 tree ctype = (wide_type != 0 && (GET_MODE_SIZE (TYPE_MODE (wide_type))
4254 > GET_MODE_SIZE (TYPE_MODE (type)))
4255 ? wide_type : type);
4256 tree t1, t2;
4257 int same_p = tcode == code;
4258 tree op0, op1;
4260 /* Don't deal with constants of zero here; they confuse the code below. */
4261 if (integer_zerop (c))
4262 return 0;
4264 if (TREE_CODE_CLASS (tcode) == '1')
4265 op0 = TREE_OPERAND (t, 0);
4267 if (TREE_CODE_CLASS (tcode) == '2')
4268 op0 = TREE_OPERAND (t, 0), op1 = TREE_OPERAND (t, 1);
4270 /* Note that we need not handle conditional operations here since fold
4271 already handles those cases. So just do arithmetic here. */
4272 switch (tcode)
4274 case INTEGER_CST:
4275 /* For a constant, we can always simplify if we are a multiply
4276 or (for divide and modulus) if it is a multiple of our constant. */
4277 if (code == MULT_EXPR
4278 || integer_zerop (const_binop (TRUNC_MOD_EXPR, t, c, 0)))
4279 return const_binop (code, convert (ctype, t), convert (ctype, c), 0);
4280 break;
4282 case CONVERT_EXPR: case NON_LVALUE_EXPR: case NOP_EXPR:
4284 /* Pass the constant down and see if we can make a simplification. If
4285 we can, replace this expression with the inner simplification for
4286 possible later conversion to our or some other type. */
4287 if (0 != (t1 = extract_muldiv (op0, convert (TREE_TYPE (op0), c), code,
4288 code == MULT_EXPR ? ctype : NULL_TREE)))
4289 return t1;
4290 break;
4292 case NEGATE_EXPR: case ABS_EXPR:
4293 if ((t1 = extract_muldiv (op0, c, code, wide_type)) != 0)
4294 return fold (build1 (tcode, ctype, convert (ctype, t1)));
4295 break;
4297 case MIN_EXPR: case MAX_EXPR:
4298 /* MIN (a, b) / 5 -> MIN (a / 5, b / 5) */
4299 if ((t1 = extract_muldiv (op0, c, code, wide_type)) != 0
4300 && (t2 = extract_muldiv (op1, c, code, wide_type)) != 0)
4302 if (tree_int_cst_sgn (c) < 0)
4303 tcode = (tcode == MIN_EXPR ? MAX_EXPR : MIN_EXPR);
4305 return fold (build (tcode, ctype, convert (ctype, t1),
4306 convert (ctype, t2)));
4308 break;
4310 case WITH_RECORD_EXPR:
4311 if ((t1 = extract_muldiv (TREE_OPERAND (t, 0), c, code, wide_type)) != 0)
4312 return build (WITH_RECORD_EXPR, TREE_TYPE (t1), t1,
4313 TREE_OPERAND (t, 1));
4314 break;
4316 case SAVE_EXPR:
4317 /* If this has not been evaluated and the operand has no side effects,
4318 we can see if we can do something inside it and make a new one.
4319 Note that this test is overly conservative since we can do this
4320 if the only reason it had side effects is that it was another
4321 similar SAVE_EXPR, but that isn't worth bothering with. */
4322 if (SAVE_EXPR_RTL (t) == 0 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (t, 0))
4323 && 0 != (t1 = extract_muldiv (TREE_OPERAND (t, 0), c, code,
4324 wide_type)))
4325 return save_expr (t1);
4326 break;
4328 case LSHIFT_EXPR: case RSHIFT_EXPR:
4329 /* If the second operand is constant, this is a multiplication
4330 or floor division, by a power of two, so we can treat it that
4331 way unless the multiplier or divisor overflows. */
4332 if (TREE_CODE (op1) == INTEGER_CST
4333 && 0 != (t1 = convert (ctype,
4334 const_binop (LSHIFT_EXPR, size_one_node,
4335 op1, 0)))
4336 && ! TREE_OVERFLOW (t1))
4337 return extract_muldiv (build (tcode == LSHIFT_EXPR
4338 ? MULT_EXPR : FLOOR_DIV_EXPR,
4339 ctype, convert (ctype, op0), t1),
4340 c, code, wide_type);
4341 break;
4343 case PLUS_EXPR: case MINUS_EXPR:
4344 /* See if we can eliminate the operation on both sides. If we can, we
4345 can return a new PLUS or MINUS. If we can't, the only remaining
4346 cases where we can do anything are if the second operand is a
4347 constant. */
4348 t1 = extract_muldiv (op0, c, code, wide_type);
4349 t2 = extract_muldiv (op1, c, code, wide_type);
4350 if (t1 != 0 && t2 != 0)
4351 return fold (build (tcode, ctype, convert (ctype, t1),
4352 convert (ctype, t2)));
4354 /* If this was a subtraction, negate OP1 and set it to be an addition.
4355 This simplifies the logic below. */
4356 if (tcode == MINUS_EXPR)
4357 tcode = PLUS_EXPR, op1 = negate_expr (op1);
4359 if (TREE_CODE (op1) != INTEGER_CST)
4360 break;
4362 /* If either OP1 or C are negative, this optimization is not safe for
4363 some of the division and remainder types while for others we need
4364 to change the code. */
4365 if (tree_int_cst_sgn (op1) < 0 || tree_int_cst_sgn (c) < 0)
4367 if (code == CEIL_DIV_EXPR)
4368 code = FLOOR_DIV_EXPR;
4369 else if (code == CEIL_MOD_EXPR)
4370 code = FLOOR_MOD_EXPR;
4371 else if (code == FLOOR_DIV_EXPR)
4372 code = CEIL_DIV_EXPR;
4373 else if (code == FLOOR_MOD_EXPR)
4374 code = CEIL_MOD_EXPR;
4375 else if (code != MULT_EXPR)
4376 break;
4379 /* Now do the operation and verify it doesn't overflow. */
4380 op1 = const_binop (code, convert (ctype, op1), convert (ctype, c), 0);
4381 if (op1 == 0 || TREE_OVERFLOW (op1))
4382 break;
4384 /* If we were able to eliminate our operation from the first side,
4385 apply our operation to the second side and reform the PLUS. */
4386 if (t1 != 0 && (TREE_CODE (t1) != code || code == MULT_EXPR))
4387 return fold (build (tcode, ctype, convert (ctype, t1), op1));
4389 /* The last case is if we are a multiply. In that case, we can
4390 apply the distributive law to commute the multiply and addition
4391 if the multiplication of the constants doesn't overflow. */
4392 if (code == MULT_EXPR)
4393 return fold (build (tcode, ctype, fold (build (code, ctype,
4394 convert (ctype, op0),
4395 convert (ctype, c))),
4396 op1));
4398 break;
4400 case MULT_EXPR:
4401 /* We have a special case here if we are doing something like
4402 (C * 8) % 4 since we know that's zero. */
4403 if ((code == TRUNC_MOD_EXPR || code == CEIL_MOD_EXPR
4404 || code == FLOOR_MOD_EXPR || code == ROUND_MOD_EXPR)
4405 && TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST
4406 && integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
4407 return omit_one_operand (type, integer_zero_node, op0);
4409 /* ... fall through ... */
4411 case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR:
4412 case ROUND_DIV_EXPR: case EXACT_DIV_EXPR:
4413 /* If we can extract our operation from the LHS, do so and return a
4414 new operation. Likewise for the RHS from a MULT_EXPR. Otherwise,
4415 do something only if the second operand is a constant. */
4416 if (same_p
4417 && (t1 = extract_muldiv (op0, c, code, wide_type)) != 0)
4418 return fold (build (tcode, ctype, convert (ctype, t1),
4419 convert (ctype, op1)));
4420 else if (tcode == MULT_EXPR && code == MULT_EXPR
4421 && (t1 = extract_muldiv (op1, c, code, wide_type)) != 0)
4422 return fold (build (tcode, ctype, convert (ctype, op0),
4423 convert (ctype, t1)));
4424 else if (TREE_CODE (op1) != INTEGER_CST)
4425 return 0;
4427 /* If these are the same operation types, we can associate them
4428 assuming no overflow. */
4429 if (tcode == code
4430 && 0 != (t1 = const_binop (MULT_EXPR, convert (ctype, op1),
4431 convert (ctype, c), 0))
4432 && ! TREE_OVERFLOW (t1))
4433 return fold (build (tcode, ctype, convert (ctype, op0), t1));
4435 /* If these operations "cancel" each other, we have the main
4436 optimizations of this pass, which occur when either constant is a
4437 multiple of the other, in which case we replace this with either an
4438 operation or CODE or TCODE. */
4439 if ((code == MULT_EXPR && tcode == EXACT_DIV_EXPR)
4440 || (tcode == MULT_EXPR
4441 && code != TRUNC_MOD_EXPR && code != CEIL_MOD_EXPR
4442 && code != FLOOR_MOD_EXPR && code != ROUND_MOD_EXPR))
4444 if (integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
4445 return fold (build (tcode, ctype, convert (ctype, op0),
4446 convert (ctype,
4447 const_binop (TRUNC_DIV_EXPR,
4448 op1, c, 0))));
4449 else if (integer_zerop (const_binop (TRUNC_MOD_EXPR, c, op1, 0)))
4450 return fold (build (code, ctype, convert (ctype, op0),
4451 convert (ctype,
4452 const_binop (TRUNC_DIV_EXPR,
4453 c, op1, 0))));
4455 break;
4457 default:
4458 break;
4461 return 0;
4464 /* If T contains a COMPOUND_EXPR which was inserted merely to evaluate
4465 S, a SAVE_EXPR, return the expression actually being evaluated. Note
4466 that we may sometimes modify the tree. */
4468 static tree
4469 strip_compound_expr (t, s)
4470 tree t;
4471 tree s;
4473 enum tree_code code = TREE_CODE (t);
4475 /* See if this is the COMPOUND_EXPR we want to eliminate. */
4476 if (code == COMPOUND_EXPR && TREE_CODE (TREE_OPERAND (t, 0)) == CONVERT_EXPR
4477 && TREE_OPERAND (TREE_OPERAND (t, 0), 0) == s)
4478 return TREE_OPERAND (t, 1);
4480 /* See if this is a COND_EXPR or a simple arithmetic operator. We
4481 don't bother handling any other types. */
4482 else if (code == COND_EXPR)
4484 TREE_OPERAND (t, 0) = strip_compound_expr (TREE_OPERAND (t, 0), s);
4485 TREE_OPERAND (t, 1) = strip_compound_expr (TREE_OPERAND (t, 1), s);
4486 TREE_OPERAND (t, 2) = strip_compound_expr (TREE_OPERAND (t, 2), s);
4488 else if (TREE_CODE_CLASS (code) == '1')
4489 TREE_OPERAND (t, 0) = strip_compound_expr (TREE_OPERAND (t, 0), s);
4490 else if (TREE_CODE_CLASS (code) == '<'
4491 || TREE_CODE_CLASS (code) == '2')
4493 TREE_OPERAND (t, 0) = strip_compound_expr (TREE_OPERAND (t, 0), s);
4494 TREE_OPERAND (t, 1) = strip_compound_expr (TREE_OPERAND (t, 1), s);
4497 return t;
4500 /* Return a node which has the indicated constant VALUE (either 0 or
4501 1), and is of the indicated TYPE. */
4503 static tree
4504 constant_boolean_node (value, type)
4505 int value;
4506 tree type;
4508 if (type == integer_type_node)
4509 return value ? integer_one_node : integer_zero_node;
4510 else if (TREE_CODE (type) == BOOLEAN_TYPE)
4511 return truthvalue_conversion (value ? integer_one_node :
4512 integer_zero_node);
4513 else
4515 tree t = build_int_2 (value, 0);
4516 TREE_TYPE (t) = type;
4517 return t;
4521 /* Utility function for the following routine, to see how complex a nesting of
4522 COND_EXPRs can be. EXPR is the expression and LIMIT is a count beyond which
4523 we don't care (to avoid spending too much time on complex expressions.). */
4525 static int
4526 count_cond (expr, lim)
4527 tree expr;
4528 int lim;
4530 int true, false;
4532 if (TREE_CODE (expr) != COND_EXPR)
4533 return 0;
4534 else if (lim <= 0)
4535 return 0;
4537 true = count_cond (TREE_OPERAND (expr, 1), lim - 1);
4538 false = count_cond (TREE_OPERAND (expr, 2), lim - 1 - true);
4539 return MIN (lim, 1 + true + false);
4542 /* Perform constant folding and related simplification of EXPR.
4543 The related simplifications include x*1 => x, x*0 => 0, etc.,
4544 and application of the associative law.
4545 NOP_EXPR conversions may be removed freely (as long as we
4546 are careful not to change the C type of the overall expression)
4547 We cannot simplify through a CONVERT_EXPR, FIX_EXPR or FLOAT_EXPR,
4548 but we can constant-fold them if they have constant operands. */
4550 tree
4551 fold (expr)
4552 tree expr;
4554 register tree t = expr;
4555 tree t1 = NULL_TREE;
4556 tree tem;
4557 tree type = TREE_TYPE (expr);
4558 register tree arg0 = NULL_TREE, arg1 = NULL_TREE;
4559 register enum tree_code code = TREE_CODE (t);
4560 register int kind;
4561 int invert;
4563 /* WINS will be nonzero when the switch is done
4564 if all operands are constant. */
4566 int wins = 1;
4568 /* Don't try to process an RTL_EXPR since its operands aren't trees.
4569 Likewise for a SAVE_EXPR that's already been evaluated. */
4570 if (code == RTL_EXPR || (code == SAVE_EXPR && SAVE_EXPR_RTL (t)) != 0)
4571 return t;
4573 /* Return right away if already constant. */
4574 if (TREE_CONSTANT (t))
4576 if (code == CONST_DECL)
4577 return DECL_INITIAL (t);
4578 return t;
4581 #ifdef MAX_INTEGER_COMPUTATION_MODE
4582 check_max_integer_computation_mode (expr);
4583 #endif
4585 kind = TREE_CODE_CLASS (code);
4586 if (code == NOP_EXPR || code == FLOAT_EXPR || code == CONVERT_EXPR)
4588 tree subop;
4590 /* Special case for conversion ops that can have fixed point args. */
4591 arg0 = TREE_OPERAND (t, 0);
4593 /* Don't use STRIP_NOPS, because signedness of argument type matters. */
4594 if (arg0 != 0)
4595 STRIP_SIGN_NOPS (arg0);
4597 if (arg0 != 0 && TREE_CODE (arg0) == COMPLEX_CST)
4598 subop = TREE_REALPART (arg0);
4599 else
4600 subop = arg0;
4602 if (subop != 0 && TREE_CODE (subop) != INTEGER_CST
4603 #if ! defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
4604 && TREE_CODE (subop) != REAL_CST
4605 #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
4607 /* Note that TREE_CONSTANT isn't enough:
4608 static var addresses are constant but we can't
4609 do arithmetic on them. */
4610 wins = 0;
4612 else if (kind == 'e' || kind == '<'
4613 || kind == '1' || kind == '2' || kind == 'r')
4615 register int len = tree_code_length[(int) code];
4616 register int i;
4617 for (i = 0; i < len; i++)
4619 tree op = TREE_OPERAND (t, i);
4620 tree subop;
4622 if (op == 0)
4623 continue; /* Valid for CALL_EXPR, at least. */
4625 if (kind == '<' || code == RSHIFT_EXPR)
4627 /* Signedness matters here. Perhaps we can refine this
4628 later. */
4629 STRIP_SIGN_NOPS (op);
4631 else
4633 /* Strip any conversions that don't change the mode. */
4634 STRIP_NOPS (op);
4637 if (TREE_CODE (op) == COMPLEX_CST)
4638 subop = TREE_REALPART (op);
4639 else
4640 subop = op;
4642 if (TREE_CODE (subop) != INTEGER_CST
4643 #if ! defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
4644 && TREE_CODE (subop) != REAL_CST
4645 #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
4647 /* Note that TREE_CONSTANT isn't enough:
4648 static var addresses are constant but we can't
4649 do arithmetic on them. */
4650 wins = 0;
4652 if (i == 0)
4653 arg0 = op;
4654 else if (i == 1)
4655 arg1 = op;
4659 /* If this is a commutative operation, and ARG0 is a constant, move it
4660 to ARG1 to reduce the number of tests below. */
4661 if ((code == PLUS_EXPR || code == MULT_EXPR || code == MIN_EXPR
4662 || code == MAX_EXPR || code == BIT_IOR_EXPR || code == BIT_XOR_EXPR
4663 || code == BIT_AND_EXPR)
4664 && (TREE_CODE (arg0) == INTEGER_CST || TREE_CODE (arg0) == REAL_CST))
4666 tem = arg0; arg0 = arg1; arg1 = tem;
4668 tem = TREE_OPERAND (t, 0); TREE_OPERAND (t, 0) = TREE_OPERAND (t, 1);
4669 TREE_OPERAND (t, 1) = tem;
4672 /* Now WINS is set as described above,
4673 ARG0 is the first operand of EXPR,
4674 and ARG1 is the second operand (if it has more than one operand).
4676 First check for cases where an arithmetic operation is applied to a
4677 compound, conditional, or comparison operation. Push the arithmetic
4678 operation inside the compound or conditional to see if any folding
4679 can then be done. Convert comparison to conditional for this purpose.
4680 The also optimizes non-constant cases that used to be done in
4681 expand_expr.
4683 Before we do that, see if this is a BIT_AND_EXPR or a BIT_OR_EXPR,
4684 one of the operands is a comparison and the other is a comparison, a
4685 BIT_AND_EXPR with the constant 1, or a truth value. In that case, the
4686 code below would make the expression more complex. Change it to a
4687 TRUTH_{AND,OR}_EXPR. Likewise, convert a similar NE_EXPR to
4688 TRUTH_XOR_EXPR and an EQ_EXPR to the inversion of a TRUTH_XOR_EXPR. */
4690 if ((code == BIT_AND_EXPR || code == BIT_IOR_EXPR
4691 || code == EQ_EXPR || code == NE_EXPR)
4692 && ((truth_value_p (TREE_CODE (arg0))
4693 && (truth_value_p (TREE_CODE (arg1))
4694 || (TREE_CODE (arg1) == BIT_AND_EXPR
4695 && integer_onep (TREE_OPERAND (arg1, 1)))))
4696 || (truth_value_p (TREE_CODE (arg1))
4697 && (truth_value_p (TREE_CODE (arg0))
4698 || (TREE_CODE (arg0) == BIT_AND_EXPR
4699 && integer_onep (TREE_OPERAND (arg0, 1)))))))
4701 t = fold (build (code == BIT_AND_EXPR ? TRUTH_AND_EXPR
4702 : code == BIT_IOR_EXPR ? TRUTH_OR_EXPR
4703 : TRUTH_XOR_EXPR,
4704 type, arg0, arg1));
4706 if (code == EQ_EXPR)
4707 t = invert_truthvalue (t);
4709 return t;
4712 if (TREE_CODE_CLASS (code) == '1')
4714 if (TREE_CODE (arg0) == COMPOUND_EXPR)
4715 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
4716 fold (build1 (code, type, TREE_OPERAND (arg0, 1))));
4717 else if (TREE_CODE (arg0) == COND_EXPR)
4719 t = fold (build (COND_EXPR, type, TREE_OPERAND (arg0, 0),
4720 fold (build1 (code, type, TREE_OPERAND (arg0, 1))),
4721 fold (build1 (code, type, TREE_OPERAND (arg0, 2)))));
4723 /* If this was a conversion, and all we did was to move into
4724 inside the COND_EXPR, bring it back out. But leave it if
4725 it is a conversion from integer to integer and the
4726 result precision is no wider than a word since such a
4727 conversion is cheap and may be optimized away by combine,
4728 while it couldn't if it were outside the COND_EXPR. Then return
4729 so we don't get into an infinite recursion loop taking the
4730 conversion out and then back in. */
4732 if ((code == NOP_EXPR || code == CONVERT_EXPR
4733 || code == NON_LVALUE_EXPR)
4734 && TREE_CODE (t) == COND_EXPR
4735 && TREE_CODE (TREE_OPERAND (t, 1)) == code
4736 && TREE_CODE (TREE_OPERAND (t, 2)) == code
4737 && (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0))
4738 == TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 2), 0)))
4739 && ! (INTEGRAL_TYPE_P (TREE_TYPE (t))
4740 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0)))
4741 && TYPE_PRECISION (TREE_TYPE (t)) <= BITS_PER_WORD))
4742 t = build1 (code, type,
4743 build (COND_EXPR,
4744 TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0)),
4745 TREE_OPERAND (t, 0),
4746 TREE_OPERAND (TREE_OPERAND (t, 1), 0),
4747 TREE_OPERAND (TREE_OPERAND (t, 2), 0)));
4748 return t;
4750 else if (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<')
4751 return fold (build (COND_EXPR, type, arg0,
4752 fold (build1 (code, type, integer_one_node)),
4753 fold (build1 (code, type, integer_zero_node))));
4755 else if (TREE_CODE_CLASS (code) == '2'
4756 || TREE_CODE_CLASS (code) == '<')
4758 if (TREE_CODE (arg1) == COMPOUND_EXPR)
4759 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
4760 fold (build (code, type,
4761 arg0, TREE_OPERAND (arg1, 1))));
4762 else if ((TREE_CODE (arg1) == COND_EXPR
4763 || (TREE_CODE_CLASS (TREE_CODE (arg1)) == '<'
4764 && TREE_CODE_CLASS (code) != '<'))
4765 && (TREE_CODE (arg0) != COND_EXPR
4766 || count_cond (arg0, 25) + count_cond (arg1, 25) <= 25)
4767 && (! TREE_SIDE_EFFECTS (arg0)
4768 || (global_bindings_p () == 0
4769 && ! contains_placeholder_p (arg0))))
4771 tree test, true_value, false_value;
4772 tree lhs = 0, rhs = 0;
4774 if (TREE_CODE (arg1) == COND_EXPR)
4776 test = TREE_OPERAND (arg1, 0);
4777 true_value = TREE_OPERAND (arg1, 1);
4778 false_value = TREE_OPERAND (arg1, 2);
4780 else
4782 tree testtype = TREE_TYPE (arg1);
4783 test = arg1;
4784 true_value = convert (testtype, integer_one_node);
4785 false_value = convert (testtype, integer_zero_node);
4788 /* If ARG0 is complex we want to make sure we only evaluate
4789 it once. Though this is only required if it is volatile, it
4790 might be more efficient even if it is not. However, if we
4791 succeed in folding one part to a constant, we do not need
4792 to make this SAVE_EXPR. Since we do this optimization
4793 primarily to see if we do end up with constant and this
4794 SAVE_EXPR interferes with later optimizations, suppressing
4795 it when we can is important.
4797 If we are not in a function, we can't make a SAVE_EXPR, so don't
4798 try to do so. Don't try to see if the result is a constant
4799 if an arm is a COND_EXPR since we get exponential behavior
4800 in that case. */
4802 if (TREE_CODE (arg0) != SAVE_EXPR && ! TREE_CONSTANT (arg0)
4803 && global_bindings_p () == 0
4804 && ((TREE_CODE (arg0) != VAR_DECL
4805 && TREE_CODE (arg0) != PARM_DECL)
4806 || TREE_SIDE_EFFECTS (arg0)))
4808 if (TREE_CODE (true_value) != COND_EXPR)
4809 lhs = fold (build (code, type, arg0, true_value));
4811 if (TREE_CODE (false_value) != COND_EXPR)
4812 rhs = fold (build (code, type, arg0, false_value));
4814 if ((lhs == 0 || ! TREE_CONSTANT (lhs))
4815 && (rhs == 0 || !TREE_CONSTANT (rhs)))
4816 arg0 = save_expr (arg0), lhs = rhs = 0;
4819 if (lhs == 0)
4820 lhs = fold (build (code, type, arg0, true_value));
4821 if (rhs == 0)
4822 rhs = fold (build (code, type, arg0, false_value));
4824 test = fold (build (COND_EXPR, type, test, lhs, rhs));
4826 if (TREE_CODE (arg0) == SAVE_EXPR)
4827 return build (COMPOUND_EXPR, type,
4828 convert (void_type_node, arg0),
4829 strip_compound_expr (test, arg0));
4830 else
4831 return convert (type, test);
4834 else if (TREE_CODE (arg0) == COMPOUND_EXPR)
4835 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
4836 fold (build (code, type, TREE_OPERAND (arg0, 1), arg1)));
4837 else if ((TREE_CODE (arg0) == COND_EXPR
4838 || (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
4839 && TREE_CODE_CLASS (code) != '<'))
4840 && (TREE_CODE (arg1) != COND_EXPR
4841 || count_cond (arg0, 25) + count_cond (arg1, 25) <= 25)
4842 && (! TREE_SIDE_EFFECTS (arg1)
4843 || (global_bindings_p () == 0
4844 && ! contains_placeholder_p (arg1))))
4846 tree test, true_value, false_value;
4847 tree lhs = 0, rhs = 0;
4849 if (TREE_CODE (arg0) == COND_EXPR)
4851 test = TREE_OPERAND (arg0, 0);
4852 true_value = TREE_OPERAND (arg0, 1);
4853 false_value = TREE_OPERAND (arg0, 2);
4855 else
4857 tree testtype = TREE_TYPE (arg0);
4858 test = arg0;
4859 true_value = convert (testtype, integer_one_node);
4860 false_value = convert (testtype, integer_zero_node);
4863 if (TREE_CODE (arg1) != SAVE_EXPR && ! TREE_CONSTANT (arg0)
4864 && global_bindings_p () == 0
4865 && ((TREE_CODE (arg1) != VAR_DECL
4866 && TREE_CODE (arg1) != PARM_DECL)
4867 || TREE_SIDE_EFFECTS (arg1)))
4869 if (TREE_CODE (true_value) != COND_EXPR)
4870 lhs = fold (build (code, type, true_value, arg1));
4872 if (TREE_CODE (false_value) != COND_EXPR)
4873 rhs = fold (build (code, type, false_value, arg1));
4875 if ((lhs == 0 || ! TREE_CONSTANT (lhs))
4876 && (rhs == 0 || !TREE_CONSTANT (rhs)))
4877 arg1 = save_expr (arg1), lhs = rhs = 0;
4880 if (lhs == 0)
4881 lhs = fold (build (code, type, true_value, arg1));
4883 if (rhs == 0)
4884 rhs = fold (build (code, type, false_value, arg1));
4886 test = fold (build (COND_EXPR, type, test, lhs, rhs));
4887 if (TREE_CODE (arg1) == SAVE_EXPR)
4888 return build (COMPOUND_EXPR, type,
4889 convert (void_type_node, arg1),
4890 strip_compound_expr (test, arg1));
4891 else
4892 return convert (type, test);
4895 else if (TREE_CODE_CLASS (code) == '<'
4896 && TREE_CODE (arg0) == COMPOUND_EXPR)
4897 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
4898 fold (build (code, type, TREE_OPERAND (arg0, 1), arg1)));
4899 else if (TREE_CODE_CLASS (code) == '<'
4900 && TREE_CODE (arg1) == COMPOUND_EXPR)
4901 return build (COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
4902 fold (build (code, type, arg0, TREE_OPERAND (arg1, 1))));
4904 switch (code)
4906 case INTEGER_CST:
4907 case REAL_CST:
4908 case STRING_CST:
4909 case COMPLEX_CST:
4910 case CONSTRUCTOR:
4911 return t;
4913 case CONST_DECL:
4914 return fold (DECL_INITIAL (t));
4916 case NOP_EXPR:
4917 case FLOAT_EXPR:
4918 case CONVERT_EXPR:
4919 case FIX_TRUNC_EXPR:
4920 /* Other kinds of FIX are not handled properly by fold_convert. */
4922 if (TREE_TYPE (TREE_OPERAND (t, 0)) == TREE_TYPE (t))
4923 return TREE_OPERAND (t, 0);
4925 /* Handle cases of two conversions in a row. */
4926 if (TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
4927 || TREE_CODE (TREE_OPERAND (t, 0)) == CONVERT_EXPR)
4929 tree inside_type = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
4930 tree inter_type = TREE_TYPE (TREE_OPERAND (t, 0));
4931 tree final_type = TREE_TYPE (t);
4932 int inside_int = INTEGRAL_TYPE_P (inside_type);
4933 int inside_ptr = POINTER_TYPE_P (inside_type);
4934 int inside_float = FLOAT_TYPE_P (inside_type);
4935 int inside_prec = TYPE_PRECISION (inside_type);
4936 int inside_unsignedp = TREE_UNSIGNED (inside_type);
4937 int inter_int = INTEGRAL_TYPE_P (inter_type);
4938 int inter_ptr = POINTER_TYPE_P (inter_type);
4939 int inter_float = FLOAT_TYPE_P (inter_type);
4940 int inter_prec = TYPE_PRECISION (inter_type);
4941 int inter_unsignedp = TREE_UNSIGNED (inter_type);
4942 int final_int = INTEGRAL_TYPE_P (final_type);
4943 int final_ptr = POINTER_TYPE_P (final_type);
4944 int final_float = FLOAT_TYPE_P (final_type);
4945 int final_prec = TYPE_PRECISION (final_type);
4946 int final_unsignedp = TREE_UNSIGNED (final_type);
4948 /* In addition to the cases of two conversions in a row
4949 handled below, if we are converting something to its own
4950 type via an object of identical or wider precision, neither
4951 conversion is needed. */
4952 if (inside_type == final_type
4953 && ((inter_int && final_int) || (inter_float && final_float))
4954 && inter_prec >= final_prec)
4955 return TREE_OPERAND (TREE_OPERAND (t, 0), 0);
4957 /* Likewise, if the intermediate and final types are either both
4958 float or both integer, we don't need the middle conversion if
4959 it is wider than the final type and doesn't change the signedness
4960 (for integers). Avoid this if the final type is a pointer
4961 since then we sometimes need the inner conversion. Likewise if
4962 the outer has a precision not equal to the size of its mode. */
4963 if ((((inter_int || inter_ptr) && (inside_int || inside_ptr))
4964 || (inter_float && inside_float))
4965 && inter_prec >= inside_prec
4966 && (inter_float || inter_unsignedp == inside_unsignedp)
4967 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (final_type))
4968 && TYPE_MODE (final_type) == TYPE_MODE (inter_type))
4969 && ! final_ptr)
4970 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
4972 /* If we have a sign-extension of a zero-extended value, we can
4973 replace that by a single zero-extension. */
4974 if (inside_int && inter_int && final_int
4975 && inside_prec < inter_prec && inter_prec < final_prec
4976 && inside_unsignedp && !inter_unsignedp)
4977 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
4979 /* Two conversions in a row are not needed unless:
4980 - some conversion is floating-point (overstrict for now), or
4981 - the intermediate type is narrower than both initial and
4982 final, or
4983 - the intermediate type and innermost type differ in signedness,
4984 and the outermost type is wider than the intermediate, or
4985 - the initial type is a pointer type and the precisions of the
4986 intermediate and final types differ, or
4987 - the final type is a pointer type and the precisions of the
4988 initial and intermediate types differ. */
4989 if (! inside_float && ! inter_float && ! final_float
4990 && (inter_prec > inside_prec || inter_prec > final_prec)
4991 && ! (inside_int && inter_int
4992 && inter_unsignedp != inside_unsignedp
4993 && inter_prec < final_prec)
4994 && ((inter_unsignedp && inter_prec > inside_prec)
4995 == (final_unsignedp && final_prec > inter_prec))
4996 && ! (inside_ptr && inter_prec != final_prec)
4997 && ! (final_ptr && inside_prec != inter_prec)
4998 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (final_type))
4999 && TYPE_MODE (final_type) == TYPE_MODE (inter_type))
5000 && ! final_ptr)
5001 return convert (final_type, TREE_OPERAND (TREE_OPERAND (t, 0), 0));
5004 if (TREE_CODE (TREE_OPERAND (t, 0)) == MODIFY_EXPR
5005 && TREE_CONSTANT (TREE_OPERAND (TREE_OPERAND (t, 0), 1))
5006 /* Detect assigning a bitfield. */
5007 && !(TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 0)) == COMPONENT_REF
5008 && DECL_BIT_FIELD (TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 0), 0), 1))))
5010 /* Don't leave an assignment inside a conversion
5011 unless assigning a bitfield. */
5012 tree prev = TREE_OPERAND (t, 0);
5013 TREE_OPERAND (t, 0) = TREE_OPERAND (prev, 1);
5014 /* First do the assignment, then return converted constant. */
5015 t = build (COMPOUND_EXPR, TREE_TYPE (t), prev, fold (t));
5016 TREE_USED (t) = 1;
5017 return t;
5019 if (!wins)
5021 TREE_CONSTANT (t) = TREE_CONSTANT (arg0);
5022 return t;
5024 return fold_convert (t, arg0);
5026 #if 0 /* This loses on &"foo"[0]. */
5027 case ARRAY_REF:
5029 int i;
5031 /* Fold an expression like: "foo"[2] */
5032 if (TREE_CODE (arg0) == STRING_CST
5033 && TREE_CODE (arg1) == INTEGER_CST
5034 && !TREE_INT_CST_HIGH (arg1)
5035 && (i = TREE_INT_CST_LOW (arg1)) < TREE_STRING_LENGTH (arg0))
5037 t = build_int_2 (TREE_STRING_POINTER (arg0)[i], 0);
5038 TREE_TYPE (t) = TREE_TYPE (TREE_TYPE (arg0));
5039 force_fit_type (t, 0);
5042 return t;
5043 #endif /* 0 */
5045 case COMPONENT_REF:
5046 if (TREE_CODE (arg0) == CONSTRUCTOR)
5048 tree m = purpose_member (arg1, CONSTRUCTOR_ELTS (arg0));
5049 if (m)
5050 t = TREE_VALUE (m);
5052 return t;
5054 case RANGE_EXPR:
5055 TREE_CONSTANT (t) = wins;
5056 return t;
5058 case NEGATE_EXPR:
5059 if (wins)
5061 if (TREE_CODE (arg0) == INTEGER_CST)
5063 HOST_WIDE_INT low, high;
5064 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
5065 TREE_INT_CST_HIGH (arg0),
5066 &low, &high);
5067 t = build_int_2 (low, high);
5068 TREE_TYPE (t) = type;
5069 TREE_OVERFLOW (t)
5070 = (TREE_OVERFLOW (arg0)
5071 | force_fit_type (t, overflow && !TREE_UNSIGNED (type)));
5072 TREE_CONSTANT_OVERFLOW (t)
5073 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg0);
5075 else if (TREE_CODE (arg0) == REAL_CST)
5076 t = build_real (type, REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
5078 else if (TREE_CODE (arg0) == NEGATE_EXPR)
5079 return TREE_OPERAND (arg0, 0);
5081 /* Convert - (a - b) to (b - a) for non-floating-point. */
5082 else if (TREE_CODE (arg0) == MINUS_EXPR
5083 && (! FLOAT_TYPE_P (type) || flag_fast_math))
5084 return build (MINUS_EXPR, type, TREE_OPERAND (arg0, 1),
5085 TREE_OPERAND (arg0, 0));
5087 return t;
5089 case ABS_EXPR:
5090 if (wins)
5092 if (TREE_CODE (arg0) == INTEGER_CST)
5094 if (! TREE_UNSIGNED (type)
5095 && TREE_INT_CST_HIGH (arg0) < 0)
5097 HOST_WIDE_INT low, high;
5098 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
5099 TREE_INT_CST_HIGH (arg0),
5100 &low, &high);
5101 t = build_int_2 (low, high);
5102 TREE_TYPE (t) = type;
5103 TREE_OVERFLOW (t)
5104 = (TREE_OVERFLOW (arg0)
5105 | force_fit_type (t, overflow));
5106 TREE_CONSTANT_OVERFLOW (t)
5107 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg0);
5110 else if (TREE_CODE (arg0) == REAL_CST)
5112 if (REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg0)))
5113 t = build_real (type,
5114 REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
5117 else if (TREE_CODE (arg0) == ABS_EXPR || TREE_CODE (arg0) == NEGATE_EXPR)
5118 return build1 (ABS_EXPR, type, TREE_OPERAND (arg0, 0));
5119 return t;
5121 case CONJ_EXPR:
5122 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
5123 return arg0;
5124 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
5125 return build (COMPLEX_EXPR, TREE_TYPE (arg0),
5126 TREE_OPERAND (arg0, 0),
5127 negate_expr (TREE_OPERAND (arg0, 1)));
5128 else if (TREE_CODE (arg0) == COMPLEX_CST)
5129 return build_complex (type, TREE_OPERAND (arg0, 0),
5130 negate_expr (TREE_OPERAND (arg0, 1)));
5131 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
5132 return fold (build (TREE_CODE (arg0), type,
5133 fold (build1 (CONJ_EXPR, type,
5134 TREE_OPERAND (arg0, 0))),
5135 fold (build1 (CONJ_EXPR,
5136 type, TREE_OPERAND (arg0, 1)))));
5137 else if (TREE_CODE (arg0) == CONJ_EXPR)
5138 return TREE_OPERAND (arg0, 0);
5139 return t;
5141 case BIT_NOT_EXPR:
5142 if (wins)
5144 t = build_int_2 (~ TREE_INT_CST_LOW (arg0),
5145 ~ TREE_INT_CST_HIGH (arg0));
5146 TREE_TYPE (t) = type;
5147 force_fit_type (t, 0);
5148 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg0);
5149 TREE_CONSTANT_OVERFLOW (t) = TREE_CONSTANT_OVERFLOW (arg0);
5151 else if (TREE_CODE (arg0) == BIT_NOT_EXPR)
5152 return TREE_OPERAND (arg0, 0);
5153 return t;
5155 case PLUS_EXPR:
5156 /* A + (-B) -> A - B */
5157 if (TREE_CODE (arg1) == NEGATE_EXPR)
5158 return fold (build (MINUS_EXPR, type, arg0, TREE_OPERAND (arg1, 0)));
5159 /* (-A) + B -> B - A */
5160 if (TREE_CODE (arg0) == NEGATE_EXPR)
5161 return fold (build (MINUS_EXPR, type, arg1, TREE_OPERAND (arg0, 0)));
5162 else if (! FLOAT_TYPE_P (type))
5164 if (integer_zerop (arg1))
5165 return non_lvalue (convert (type, arg0));
5167 /* If we are adding two BIT_AND_EXPR's, both of which are and'ing
5168 with a constant, and the two constants have no bits in common,
5169 we should treat this as a BIT_IOR_EXPR since this may produce more
5170 simplifications. */
5171 if (TREE_CODE (arg0) == BIT_AND_EXPR
5172 && TREE_CODE (arg1) == BIT_AND_EXPR
5173 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
5174 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
5175 && integer_zerop (const_binop (BIT_AND_EXPR,
5176 TREE_OPERAND (arg0, 1),
5177 TREE_OPERAND (arg1, 1), 0)))
5179 code = BIT_IOR_EXPR;
5180 goto bit_ior;
5183 /* Reassociate (plus (plus (mult) (foo)) (mult)) as
5184 (plus (plus (mult) (mult)) (foo)) so that we can
5185 take advantage of the factoring cases below. */
5186 if ((TREE_CODE (arg0) == PLUS_EXPR
5187 && TREE_CODE (arg1) == MULT_EXPR)
5188 || (TREE_CODE (arg1) == PLUS_EXPR
5189 && TREE_CODE (arg0) == MULT_EXPR))
5191 tree parg0, parg1, parg, marg;
5193 if (TREE_CODE (arg0) == PLUS_EXPR)
5194 parg = arg0, marg = arg1;
5195 else
5196 parg = arg1, marg = arg0;
5197 parg0 = TREE_OPERAND (parg, 0);
5198 parg1 = TREE_OPERAND (parg, 1);
5199 STRIP_NOPS (parg0);
5200 STRIP_NOPS (parg1);
5202 if (TREE_CODE (parg0) == MULT_EXPR
5203 && TREE_CODE (parg1) != MULT_EXPR)
5204 return fold (build (PLUS_EXPR, type,
5205 fold (build (PLUS_EXPR, type, parg0, marg)),
5206 parg1));
5207 if (TREE_CODE (parg0) != MULT_EXPR
5208 && TREE_CODE (parg1) == MULT_EXPR)
5209 return fold (build (PLUS_EXPR, type,
5210 fold (build (PLUS_EXPR, type, parg1, marg)),
5211 parg0));
5214 if (TREE_CODE (arg0) == MULT_EXPR && TREE_CODE (arg1) == MULT_EXPR)
5216 tree arg00, arg01, arg10, arg11;
5217 tree alt0 = NULL_TREE, alt1 = NULL_TREE, same;
5219 /* (A * C) + (B * C) -> (A+B) * C.
5220 We are most concerned about the case where C is a constant,
5221 but other combinations show up during loop reduction. Since
5222 it is not difficult, try all four possibilities. */
5224 arg00 = TREE_OPERAND (arg0, 0);
5225 arg01 = TREE_OPERAND (arg0, 1);
5226 arg10 = TREE_OPERAND (arg1, 0);
5227 arg11 = TREE_OPERAND (arg1, 1);
5228 same = NULL_TREE;
5230 if (operand_equal_p (arg01, arg11, 0))
5231 same = arg01, alt0 = arg00, alt1 = arg10;
5232 else if (operand_equal_p (arg00, arg10, 0))
5233 same = arg00, alt0 = arg01, alt1 = arg11;
5234 else if (operand_equal_p (arg00, arg11, 0))
5235 same = arg00, alt0 = arg01, alt1 = arg10;
5236 else if (operand_equal_p (arg01, arg10, 0))
5237 same = arg01, alt0 = arg00, alt1 = arg11;
5239 /* No identical multiplicands; see if we can find a common
5240 power-of-two factor in non-power-of-two multiplies. This
5241 can help in multi-dimensional array access. */
5242 else if (TREE_CODE (arg01) == INTEGER_CST
5243 && TREE_CODE (arg11) == INTEGER_CST
5244 && TREE_INT_CST_HIGH (arg01) == 0
5245 && TREE_INT_CST_HIGH (arg11) == 0)
5247 HOST_WIDE_INT int01, int11, tmp;
5248 int01 = TREE_INT_CST_LOW (arg01);
5249 int11 = TREE_INT_CST_LOW (arg11);
5251 /* Move min of absolute values to int11. */
5252 if ((int01 >= 0 ? int01 : -int01)
5253 < (int11 >= 0 ? int11 : -int11))
5255 tmp = int01, int01 = int11, int11 = tmp;
5256 alt0 = arg00, arg00 = arg10, arg10 = alt0;
5257 alt0 = arg01, arg01 = arg11, arg11 = alt0;
5260 if (exact_log2 (int11) > 0 && int01 % int11 == 0)
5262 alt0 = fold (build (MULT_EXPR, type, arg00,
5263 build_int_2 (int01 / int11, 0)));
5264 alt1 = arg10;
5265 same = arg11;
5269 if (same)
5270 return fold (build (MULT_EXPR, type,
5271 fold (build (PLUS_EXPR, type, alt0, alt1)),
5272 same));
5275 /* In IEEE floating point, x+0 may not equal x. */
5276 else if ((TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
5277 || flag_fast_math)
5278 && real_zerop (arg1))
5279 return non_lvalue (convert (type, arg0));
5280 /* x+(-0) equals x, even for IEEE. */
5281 else if (TREE_CODE (arg1) == REAL_CST
5282 && REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (arg1)))
5283 return non_lvalue (convert (type, arg0));
5285 bit_rotate:
5286 /* (A << C1) + (A >> C2) if A is unsigned and C1+C2 is the size of A
5287 is a rotate of A by C1 bits. */
5288 /* (A << B) + (A >> (Z - B)) if A is unsigned and Z is the size of A
5289 is a rotate of A by B bits. */
5291 register enum tree_code code0, code1;
5292 code0 = TREE_CODE (arg0);
5293 code1 = TREE_CODE (arg1);
5294 if (((code0 == RSHIFT_EXPR && code1 == LSHIFT_EXPR)
5295 || (code1 == RSHIFT_EXPR && code0 == LSHIFT_EXPR))
5296 && operand_equal_p (TREE_OPERAND (arg0, 0),
5297 TREE_OPERAND (arg1,0), 0)
5298 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
5300 register tree tree01, tree11;
5301 register enum tree_code code01, code11;
5303 tree01 = TREE_OPERAND (arg0, 1);
5304 tree11 = TREE_OPERAND (arg1, 1);
5305 STRIP_NOPS (tree01);
5306 STRIP_NOPS (tree11);
5307 code01 = TREE_CODE (tree01);
5308 code11 = TREE_CODE (tree11);
5309 if (code01 == INTEGER_CST
5310 && code11 == INTEGER_CST
5311 && TREE_INT_CST_HIGH (tree01) == 0
5312 && TREE_INT_CST_HIGH (tree11) == 0
5313 && ((TREE_INT_CST_LOW (tree01) + TREE_INT_CST_LOW (tree11))
5314 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)))))
5315 return build (LROTATE_EXPR, type, TREE_OPERAND (arg0, 0),
5316 code0 == LSHIFT_EXPR ? tree01 : tree11);
5317 else if (code11 == MINUS_EXPR)
5319 tree tree110, tree111;
5320 tree110 = TREE_OPERAND (tree11, 0);
5321 tree111 = TREE_OPERAND (tree11, 1);
5322 STRIP_NOPS (tree110);
5323 STRIP_NOPS (tree111);
5324 if (TREE_CODE (tree110) == INTEGER_CST
5325 && TREE_INT_CST_HIGH (tree110) == 0
5326 && (TREE_INT_CST_LOW (tree110)
5327 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0))))
5328 && operand_equal_p (tree01, tree111, 0))
5329 return build ((code0 == LSHIFT_EXPR
5330 ? LROTATE_EXPR
5331 : RROTATE_EXPR),
5332 type, TREE_OPERAND (arg0, 0), tree01);
5334 else if (code01 == MINUS_EXPR)
5336 tree tree010, tree011;
5337 tree010 = TREE_OPERAND (tree01, 0);
5338 tree011 = TREE_OPERAND (tree01, 1);
5339 STRIP_NOPS (tree010);
5340 STRIP_NOPS (tree011);
5341 if (TREE_CODE (tree010) == INTEGER_CST
5342 && TREE_INT_CST_HIGH (tree010) == 0
5343 && (TREE_INT_CST_LOW (tree010)
5344 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0))))
5345 && operand_equal_p (tree11, tree011, 0))
5346 return build ((code0 != LSHIFT_EXPR
5347 ? LROTATE_EXPR
5348 : RROTATE_EXPR),
5349 type, TREE_OPERAND (arg0, 0), tree11);
5355 associate:
5356 /* In most languages, can't associate operations on floats through
5357 parentheses. Rather than remember where the parentheses were, we
5358 don't associate floats at all. It shouldn't matter much. However,
5359 associating multiplications is only very slightly inaccurate, so do
5360 that if -ffast-math is specified. */
5362 if (! wins
5363 && (! FLOAT_TYPE_P (type)
5364 || (flag_fast_math && code != MULT_EXPR)))
5366 tree var0, con0, lit0, var1, con1, lit1;
5368 /* Split both trees into variables, constants, and literals. Then
5369 associate each group together, the constants with literals,
5370 then the result with variables. This increases the chances of
5371 literals being recombined later and of generating relocatable
5372 expressions for the sum of a constant and literal. */
5373 var0 = split_tree (arg0, code, &con0, &lit0, 0);
5374 var1 = split_tree (arg1, code, &con1, &lit1, code == MINUS_EXPR);
5376 /* Only do something if we found more than two objects. Otherwise,
5377 nothing has changed and we risk infinite recursion. */
5378 if (2 < ((var0 != 0) + (var1 != 0) + (con0 != 0) + (con1 != 0)
5379 + (lit0 != 0) + (lit1 != 0)))
5381 var0 = associate_trees (var0, var1, code, type);
5382 con0 = associate_trees (con0, con1, code, type);
5383 lit0 = associate_trees (lit0, lit1, code, type);
5384 con0 = associate_trees (con0, lit0, code, type);
5385 return convert (type, associate_trees (var0, con0, code, type));
5389 binary:
5390 #if defined (REAL_IS_NOT_DOUBLE) && ! defined (REAL_ARITHMETIC)
5391 if (TREE_CODE (arg1) == REAL_CST)
5392 return t;
5393 #endif /* REAL_IS_NOT_DOUBLE, and no REAL_ARITHMETIC */
5394 if (wins)
5395 t1 = const_binop (code, arg0, arg1, 0);
5396 if (t1 != NULL_TREE)
5398 /* The return value should always have
5399 the same type as the original expression. */
5400 if (TREE_TYPE (t1) != TREE_TYPE (t))
5401 t1 = convert (TREE_TYPE (t), t1);
5403 return t1;
5405 return t;
5407 case MINUS_EXPR:
5408 /* A - (-B) -> A + B */
5409 if (TREE_CODE (arg1) == NEGATE_EXPR)
5410 return fold (build (PLUS_EXPR, type, arg0, TREE_OPERAND (arg1, 0)));
5411 /* (-A) - CST -> (-CST) - A for floating point (what about ints ?) */
5412 if (TREE_CODE (arg0) == NEGATE_EXPR && TREE_CODE (arg1) == REAL_CST)
5413 return
5414 fold (build (MINUS_EXPR, type,
5415 build_real (TREE_TYPE (arg1),
5416 REAL_VALUE_NEGATE (TREE_REAL_CST (arg1))),
5417 TREE_OPERAND (arg0, 0)));
5419 if (! FLOAT_TYPE_P (type))
5421 if (! wins && integer_zerop (arg0))
5422 return negate_expr (arg1);
5423 if (integer_zerop (arg1))
5424 return non_lvalue (convert (type, arg0));
5426 /* (A * C) - (B * C) -> (A-B) * C. Since we are most concerned
5427 about the case where C is a constant, just try one of the
5428 four possibilities. */
5430 if (TREE_CODE (arg0) == MULT_EXPR && TREE_CODE (arg1) == MULT_EXPR
5431 && operand_equal_p (TREE_OPERAND (arg0, 1),
5432 TREE_OPERAND (arg1, 1), 0))
5433 return fold (build (MULT_EXPR, type,
5434 fold (build (MINUS_EXPR, type,
5435 TREE_OPERAND (arg0, 0),
5436 TREE_OPERAND (arg1, 0))),
5437 TREE_OPERAND (arg0, 1)));
5440 else if (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
5441 || flag_fast_math)
5443 /* Except with IEEE floating point, 0-x equals -x. */
5444 if (! wins && real_zerop (arg0))
5445 return negate_expr (arg1);
5446 /* Except with IEEE floating point, x-0 equals x. */
5447 if (real_zerop (arg1))
5448 return non_lvalue (convert (type, arg0));
5451 /* Fold &x - &x. This can happen from &x.foo - &x.
5452 This is unsafe for certain floats even in non-IEEE formats.
5453 In IEEE, it is unsafe because it does wrong for NaNs.
5454 Also note that operand_equal_p is always false if an operand
5455 is volatile. */
5457 if ((! FLOAT_TYPE_P (type) || flag_fast_math)
5458 && operand_equal_p (arg0, arg1, 0))
5459 return convert (type, integer_zero_node);
5461 goto associate;
5463 case MULT_EXPR:
5464 /* (-A) * (-B) -> A * B */
5465 if (TREE_CODE (arg0) == NEGATE_EXPR && TREE_CODE (arg1) == NEGATE_EXPR)
5466 return fold (build (MULT_EXPR, type, TREE_OPERAND (arg0, 0),
5467 TREE_OPERAND (arg1, 0)));
5469 if (! FLOAT_TYPE_P (type))
5471 if (integer_zerop (arg1))
5472 return omit_one_operand (type, arg1, arg0);
5473 if (integer_onep (arg1))
5474 return non_lvalue (convert (type, arg0));
5476 /* (a * (1 << b)) is (a << b) */
5477 if (TREE_CODE (arg1) == LSHIFT_EXPR
5478 && integer_onep (TREE_OPERAND (arg1, 0)))
5479 return fold (build (LSHIFT_EXPR, type, arg0,
5480 TREE_OPERAND (arg1, 1)));
5481 if (TREE_CODE (arg0) == LSHIFT_EXPR
5482 && integer_onep (TREE_OPERAND (arg0, 0)))
5483 return fold (build (LSHIFT_EXPR, type, arg1,
5484 TREE_OPERAND (arg0, 1)));
5486 if (TREE_CODE (arg1) == INTEGER_CST
5487 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0), arg1,
5488 code, NULL_TREE)))
5489 return convert (type, tem);
5492 else
5494 /* x*0 is 0, except for IEEE floating point. */
5495 if ((TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
5496 || flag_fast_math)
5497 && real_zerop (arg1))
5498 return omit_one_operand (type, arg1, arg0);
5499 /* In IEEE floating point, x*1 is not equivalent to x for snans.
5500 However, ANSI says we can drop signals,
5501 so we can do this anyway. */
5502 if (real_onep (arg1))
5503 return non_lvalue (convert (type, arg0));
5504 /* x*2 is x+x */
5505 if (! wins && real_twop (arg1) && global_bindings_p () == 0
5506 && ! contains_placeholder_p (arg0))
5508 tree arg = save_expr (arg0);
5509 return build (PLUS_EXPR, type, arg, arg);
5512 goto associate;
5514 case BIT_IOR_EXPR:
5515 bit_ior:
5516 if (integer_all_onesp (arg1))
5517 return omit_one_operand (type, arg1, arg0);
5518 if (integer_zerop (arg1))
5519 return non_lvalue (convert (type, arg0));
5520 t1 = distribute_bit_expr (code, type, arg0, arg1);
5521 if (t1 != NULL_TREE)
5522 return t1;
5524 /* Convert (or (not arg0) (not arg1)) to (not (and (arg0) (arg1))).
5526 This results in more efficient code for machines without a NAND
5527 instruction. Combine will canonicalize to the first form
5528 which will allow use of NAND instructions provided by the
5529 backend if they exist. */
5530 if (TREE_CODE (arg0) == BIT_NOT_EXPR
5531 && TREE_CODE (arg1) == BIT_NOT_EXPR)
5533 return fold (build1 (BIT_NOT_EXPR, type,
5534 build (BIT_AND_EXPR, type,
5535 TREE_OPERAND (arg0, 0),
5536 TREE_OPERAND (arg1, 0))));
5539 /* See if this can be simplified into a rotate first. If that
5540 is unsuccessful continue in the association code. */
5541 goto bit_rotate;
5543 case BIT_XOR_EXPR:
5544 if (integer_zerop (arg1))
5545 return non_lvalue (convert (type, arg0));
5546 if (integer_all_onesp (arg1))
5547 return fold (build1 (BIT_NOT_EXPR, type, arg0));
5549 /* If we are XORing two BIT_AND_EXPR's, both of which are and'ing
5550 with a constant, and the two constants have no bits in common,
5551 we should treat this as a BIT_IOR_EXPR since this may produce more
5552 simplifications. */
5553 if (TREE_CODE (arg0) == BIT_AND_EXPR
5554 && TREE_CODE (arg1) == BIT_AND_EXPR
5555 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
5556 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
5557 && integer_zerop (const_binop (BIT_AND_EXPR,
5558 TREE_OPERAND (arg0, 1),
5559 TREE_OPERAND (arg1, 1), 0)))
5561 code = BIT_IOR_EXPR;
5562 goto bit_ior;
5565 /* See if this can be simplified into a rotate first. If that
5566 is unsuccessful continue in the association code. */
5567 goto bit_rotate;
5569 case BIT_AND_EXPR:
5570 bit_and:
5571 if (integer_all_onesp (arg1))
5572 return non_lvalue (convert (type, arg0));
5573 if (integer_zerop (arg1))
5574 return omit_one_operand (type, arg1, arg0);
5575 t1 = distribute_bit_expr (code, type, arg0, arg1);
5576 if (t1 != NULL_TREE)
5577 return t1;
5578 /* Simplify ((int)c & 0x377) into (int)c, if c is unsigned char. */
5579 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == NOP_EXPR
5580 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg1, 0))))
5582 int prec = TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg1, 0)));
5583 if (prec < BITS_PER_WORD && prec < HOST_BITS_PER_WIDE_INT
5584 && (~TREE_INT_CST_LOW (arg0)
5585 & (((HOST_WIDE_INT) 1 << prec) - 1)) == 0)
5586 return build1 (NOP_EXPR, type, TREE_OPERAND (arg1, 0));
5588 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) == NOP_EXPR
5589 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
5591 int prec = TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)));
5592 if (prec < BITS_PER_WORD && prec < HOST_BITS_PER_WIDE_INT
5593 && (~TREE_INT_CST_LOW (arg1)
5594 & (((HOST_WIDE_INT) 1 << prec) - 1)) == 0)
5595 return build1 (NOP_EXPR, type, TREE_OPERAND (arg0, 0));
5598 /* Convert (and (not arg0) (not arg1)) to (not (or (arg0) (arg1))).
5600 This results in more efficient code for machines without a NOR
5601 instruction. Combine will canonicalize to the first form
5602 which will allow use of NOR instructions provided by the
5603 backend if they exist. */
5604 if (TREE_CODE (arg0) == BIT_NOT_EXPR
5605 && TREE_CODE (arg1) == BIT_NOT_EXPR)
5607 return fold (build1 (BIT_NOT_EXPR, type,
5608 build (BIT_IOR_EXPR, type,
5609 TREE_OPERAND (arg0, 0),
5610 TREE_OPERAND (arg1, 0))));
5613 goto associate;
5615 case BIT_ANDTC_EXPR:
5616 if (integer_all_onesp (arg0))
5617 return non_lvalue (convert (type, arg1));
5618 if (integer_zerop (arg0))
5619 return omit_one_operand (type, arg0, arg1);
5620 if (TREE_CODE (arg1) == INTEGER_CST)
5622 arg1 = fold (build1 (BIT_NOT_EXPR, type, arg1));
5623 code = BIT_AND_EXPR;
5624 goto bit_and;
5626 goto binary;
5628 case RDIV_EXPR:
5629 /* In most cases, do nothing with a divide by zero. */
5630 #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
5631 #ifndef REAL_INFINITY
5632 if (TREE_CODE (arg1) == REAL_CST && real_zerop (arg1))
5633 return t;
5634 #endif
5635 #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
5637 /* (-A) / (-B) -> A / B */
5638 if (TREE_CODE (arg0) == NEGATE_EXPR && TREE_CODE (arg1) == NEGATE_EXPR)
5639 return fold (build (RDIV_EXPR, type, TREE_OPERAND (arg0, 0),
5640 TREE_OPERAND (arg1, 0)));
5642 /* In IEEE floating point, x/1 is not equivalent to x for snans.
5643 However, ANSI says we can drop signals, so we can do this anyway. */
5644 if (real_onep (arg1))
5645 return non_lvalue (convert (type, arg0));
5647 /* If ARG1 is a constant, we can convert this to a multiply by the
5648 reciprocal. This does not have the same rounding properties,
5649 so only do this if -ffast-math. We can actually always safely
5650 do it if ARG1 is a power of two, but it's hard to tell if it is
5651 or not in a portable manner. */
5652 if (TREE_CODE (arg1) == REAL_CST)
5654 if (flag_fast_math
5655 && 0 != (tem = const_binop (code, build_real (type, dconst1),
5656 arg1, 0)))
5657 return fold (build (MULT_EXPR, type, arg0, tem));
5658 /* Find the reciprocal if optimizing and the result is exact. */
5659 else if (optimize)
5661 REAL_VALUE_TYPE r;
5662 r = TREE_REAL_CST (arg1);
5663 if (exact_real_inverse (TYPE_MODE(TREE_TYPE(arg0)), &r))
5665 tem = build_real (type, r);
5666 return fold (build (MULT_EXPR, type, arg0, tem));
5670 goto binary;
5672 case TRUNC_DIV_EXPR:
5673 case ROUND_DIV_EXPR:
5674 case FLOOR_DIV_EXPR:
5675 case CEIL_DIV_EXPR:
5676 case EXACT_DIV_EXPR:
5677 if (integer_onep (arg1))
5678 return non_lvalue (convert (type, arg0));
5679 if (integer_zerop (arg1))
5680 return t;
5682 /* If arg0 is a multiple of arg1, then rewrite to the fastest div
5683 operation, EXACT_DIV_EXPR.
5685 Note that only CEIL_DIV_EXPR and FLOOR_DIV_EXPR are rewritten now.
5686 At one time others generated faster code, it's not clear if they do
5687 after the last round to changes to the DIV code in expmed.c. */
5688 if ((code == CEIL_DIV_EXPR || code == FLOOR_DIV_EXPR)
5689 && multiple_of_p (type, arg0, arg1))
5690 return fold (build (EXACT_DIV_EXPR, type, arg0, arg1));
5692 if (TREE_CODE (arg1) == INTEGER_CST
5693 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0), arg1,
5694 code, NULL_TREE)))
5695 return convert (type, tem);
5697 goto binary;
5699 case CEIL_MOD_EXPR:
5700 case FLOOR_MOD_EXPR:
5701 case ROUND_MOD_EXPR:
5702 case TRUNC_MOD_EXPR:
5703 if (integer_onep (arg1))
5704 return omit_one_operand (type, integer_zero_node, arg0);
5705 if (integer_zerop (arg1))
5706 return t;
5708 if (TREE_CODE (arg1) == INTEGER_CST
5709 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0), arg1,
5710 code, NULL_TREE)))
5711 return convert (type, tem);
5713 goto binary;
5715 case LSHIFT_EXPR:
5716 case RSHIFT_EXPR:
5717 case LROTATE_EXPR:
5718 case RROTATE_EXPR:
5719 if (integer_zerop (arg1))
5720 return non_lvalue (convert (type, arg0));
5721 /* Since negative shift count is not well-defined,
5722 don't try to compute it in the compiler. */
5723 if (TREE_CODE (arg1) == INTEGER_CST && tree_int_cst_sgn (arg1) < 0)
5724 return t;
5725 /* Rewrite an LROTATE_EXPR by a constant into an
5726 RROTATE_EXPR by a new constant. */
5727 if (code == LROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST)
5729 TREE_SET_CODE (t, RROTATE_EXPR);
5730 code = RROTATE_EXPR;
5731 TREE_OPERAND (t, 1) = arg1
5732 = const_binop
5733 (MINUS_EXPR,
5734 convert (TREE_TYPE (arg1),
5735 build_int_2 (GET_MODE_BITSIZE (TYPE_MODE (type)), 0)),
5736 arg1, 0);
5737 if (tree_int_cst_sgn (arg1) < 0)
5738 return t;
5741 /* If we have a rotate of a bit operation with the rotate count and
5742 the second operand of the bit operation both constant,
5743 permute the two operations. */
5744 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
5745 && (TREE_CODE (arg0) == BIT_AND_EXPR
5746 || TREE_CODE (arg0) == BIT_ANDTC_EXPR
5747 || TREE_CODE (arg0) == BIT_IOR_EXPR
5748 || TREE_CODE (arg0) == BIT_XOR_EXPR)
5749 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
5750 return fold (build (TREE_CODE (arg0), type,
5751 fold (build (code, type,
5752 TREE_OPERAND (arg0, 0), arg1)),
5753 fold (build (code, type,
5754 TREE_OPERAND (arg0, 1), arg1))));
5756 /* Two consecutive rotates adding up to the width of the mode can
5757 be ignored. */
5758 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
5759 && TREE_CODE (arg0) == RROTATE_EXPR
5760 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
5761 && TREE_INT_CST_HIGH (arg1) == 0
5762 && TREE_INT_CST_HIGH (TREE_OPERAND (arg0, 1)) == 0
5763 && ((TREE_INT_CST_LOW (arg1)
5764 + TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)))
5765 == GET_MODE_BITSIZE (TYPE_MODE (type))))
5766 return TREE_OPERAND (arg0, 0);
5768 goto binary;
5770 case MIN_EXPR:
5771 if (operand_equal_p (arg0, arg1, 0))
5772 return arg0;
5773 if (INTEGRAL_TYPE_P (type)
5774 && operand_equal_p (arg1, TYPE_MIN_VALUE (type), 1))
5775 return omit_one_operand (type, arg1, arg0);
5776 goto associate;
5778 case MAX_EXPR:
5779 if (operand_equal_p (arg0, arg1, 0))
5780 return arg0;
5781 if (INTEGRAL_TYPE_P (type)
5782 && TYPE_MAX_VALUE (type)
5783 && operand_equal_p (arg1, TYPE_MAX_VALUE (type), 1))
5784 return omit_one_operand (type, arg1, arg0);
5785 goto associate;
5787 case TRUTH_NOT_EXPR:
5788 /* Note that the operand of this must be an int
5789 and its values must be 0 or 1.
5790 ("true" is a fixed value perhaps depending on the language,
5791 but we don't handle values other than 1 correctly yet.) */
5792 tem = invert_truthvalue (arg0);
5793 /* Avoid infinite recursion. */
5794 if (TREE_CODE (tem) == TRUTH_NOT_EXPR)
5795 return t;
5796 return convert (type, tem);
5798 case TRUTH_ANDIF_EXPR:
5799 /* Note that the operands of this must be ints
5800 and their values must be 0 or 1.
5801 ("true" is a fixed value perhaps depending on the language.) */
5802 /* If first arg is constant zero, return it. */
5803 if (integer_zerop (arg0))
5804 return arg0;
5805 case TRUTH_AND_EXPR:
5806 /* If either arg is constant true, drop it. */
5807 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
5808 return non_lvalue (arg1);
5809 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1))
5810 return non_lvalue (arg0);
5811 /* If second arg is constant zero, result is zero, but first arg
5812 must be evaluated. */
5813 if (integer_zerop (arg1))
5814 return omit_one_operand (type, arg1, arg0);
5815 /* Likewise for first arg, but note that only the TRUTH_AND_EXPR
5816 case will be handled here. */
5817 if (integer_zerop (arg0))
5818 return omit_one_operand (type, arg0, arg1);
5820 truth_andor:
5821 /* We only do these simplifications if we are optimizing. */
5822 if (!optimize)
5823 return t;
5825 /* Check for things like (A || B) && (A || C). We can convert this
5826 to A || (B && C). Note that either operator can be any of the four
5827 truth and/or operations and the transformation will still be
5828 valid. Also note that we only care about order for the
5829 ANDIF and ORIF operators. If B contains side effects, this
5830 might change the truth-value of A. */
5831 if (TREE_CODE (arg0) == TREE_CODE (arg1)
5832 && (TREE_CODE (arg0) == TRUTH_ANDIF_EXPR
5833 || TREE_CODE (arg0) == TRUTH_ORIF_EXPR
5834 || TREE_CODE (arg0) == TRUTH_AND_EXPR
5835 || TREE_CODE (arg0) == TRUTH_OR_EXPR)
5836 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg0, 1)))
5838 tree a00 = TREE_OPERAND (arg0, 0);
5839 tree a01 = TREE_OPERAND (arg0, 1);
5840 tree a10 = TREE_OPERAND (arg1, 0);
5841 tree a11 = TREE_OPERAND (arg1, 1);
5842 int commutative = ((TREE_CODE (arg0) == TRUTH_OR_EXPR
5843 || TREE_CODE (arg0) == TRUTH_AND_EXPR)
5844 && (code == TRUTH_AND_EXPR
5845 || code == TRUTH_OR_EXPR));
5847 if (operand_equal_p (a00, a10, 0))
5848 return fold (build (TREE_CODE (arg0), type, a00,
5849 fold (build (code, type, a01, a11))));
5850 else if (commutative && operand_equal_p (a00, a11, 0))
5851 return fold (build (TREE_CODE (arg0), type, a00,
5852 fold (build (code, type, a01, a10))));
5853 else if (commutative && operand_equal_p (a01, a10, 0))
5854 return fold (build (TREE_CODE (arg0), type, a01,
5855 fold (build (code, type, a00, a11))));
5857 /* This case if tricky because we must either have commutative
5858 operators or else A10 must not have side-effects. */
5860 else if ((commutative || ! TREE_SIDE_EFFECTS (a10))
5861 && operand_equal_p (a01, a11, 0))
5862 return fold (build (TREE_CODE (arg0), type,
5863 fold (build (code, type, a00, a10)),
5864 a01));
5867 /* See if we can build a range comparison. */
5868 if (0 != (tem = fold_range_test (t)))
5869 return tem;
5871 /* Check for the possibility of merging component references. If our
5872 lhs is another similar operation, try to merge its rhs with our
5873 rhs. Then try to merge our lhs and rhs. */
5874 if (TREE_CODE (arg0) == code
5875 && 0 != (tem = fold_truthop (code, type,
5876 TREE_OPERAND (arg0, 1), arg1)))
5877 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
5879 if ((tem = fold_truthop (code, type, arg0, arg1)) != 0)
5880 return tem;
5882 return t;
5884 case TRUTH_ORIF_EXPR:
5885 /* Note that the operands of this must be ints
5886 and their values must be 0 or true.
5887 ("true" is a fixed value perhaps depending on the language.) */
5888 /* If first arg is constant true, return it. */
5889 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
5890 return arg0;
5891 case TRUTH_OR_EXPR:
5892 /* If either arg is constant zero, drop it. */
5893 if (TREE_CODE (arg0) == INTEGER_CST && integer_zerop (arg0))
5894 return non_lvalue (arg1);
5895 if (TREE_CODE (arg1) == INTEGER_CST && integer_zerop (arg1))
5896 return non_lvalue (arg0);
5897 /* If second arg is constant true, result is true, but we must
5898 evaluate first arg. */
5899 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1))
5900 return omit_one_operand (type, arg1, arg0);
5901 /* Likewise for first arg, but note this only occurs here for
5902 TRUTH_OR_EXPR. */
5903 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
5904 return omit_one_operand (type, arg0, arg1);
5905 goto truth_andor;
5907 case TRUTH_XOR_EXPR:
5908 /* If either arg is constant zero, drop it. */
5909 if (integer_zerop (arg0))
5910 return non_lvalue (arg1);
5911 if (integer_zerop (arg1))
5912 return non_lvalue (arg0);
5913 /* If either arg is constant true, this is a logical inversion. */
5914 if (integer_onep (arg0))
5915 return non_lvalue (invert_truthvalue (arg1));
5916 if (integer_onep (arg1))
5917 return non_lvalue (invert_truthvalue (arg0));
5918 return t;
5920 case EQ_EXPR:
5921 case NE_EXPR:
5922 case LT_EXPR:
5923 case GT_EXPR:
5924 case LE_EXPR:
5925 case GE_EXPR:
5926 if (FLOAT_TYPE_P (TREE_TYPE (arg0)))
5928 /* (-a) CMP (-b) -> b CMP a */
5929 if (TREE_CODE (arg0) == NEGATE_EXPR
5930 && TREE_CODE (arg1) == NEGATE_EXPR)
5931 return fold (build (code, type, TREE_OPERAND (arg1, 0),
5932 TREE_OPERAND (arg0, 0)));
5933 /* (-a) CMP CST -> a swap(CMP) (-CST) */
5934 if (TREE_CODE (arg0) == NEGATE_EXPR && TREE_CODE (arg1) == REAL_CST)
5935 return
5936 fold (build
5937 (swap_tree_comparison (code), type,
5938 TREE_OPERAND (arg0, 0),
5939 build_real (TREE_TYPE (arg1),
5940 REAL_VALUE_NEGATE (TREE_REAL_CST (arg1)))));
5941 /* IEEE doesn't distinguish +0 and -0 in comparisons. */
5942 /* a CMP (-0) -> a CMP 0 */
5943 if (TREE_CODE (arg1) == REAL_CST
5944 && REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (arg1)))
5945 return fold (build (code, type, arg0,
5946 build_real (TREE_TYPE (arg1), dconst0)));
5950 /* If one arg is a constant integer, put it last. */
5951 if (TREE_CODE (arg0) == INTEGER_CST
5952 && TREE_CODE (arg1) != INTEGER_CST)
5954 TREE_OPERAND (t, 0) = arg1;
5955 TREE_OPERAND (t, 1) = arg0;
5956 arg0 = TREE_OPERAND (t, 0);
5957 arg1 = TREE_OPERAND (t, 1);
5958 code = swap_tree_comparison (code);
5959 TREE_SET_CODE (t, code);
5962 /* Convert foo++ == CONST into ++foo == CONST + INCR.
5963 First, see if one arg is constant; find the constant arg
5964 and the other one. */
5966 tree constop = 0, varop = NULL_TREE;
5967 int constopnum = -1;
5969 if (TREE_CONSTANT (arg1))
5970 constopnum = 1, constop = arg1, varop = arg0;
5971 if (TREE_CONSTANT (arg0))
5972 constopnum = 0, constop = arg0, varop = arg1;
5974 if (constop && TREE_CODE (varop) == POSTINCREMENT_EXPR)
5976 /* This optimization is invalid for ordered comparisons
5977 if CONST+INCR overflows or if foo+incr might overflow.
5978 This optimization is invalid for floating point due to rounding.
5979 For pointer types we assume overflow doesn't happen. */
5980 if (POINTER_TYPE_P (TREE_TYPE (varop))
5981 || (! FLOAT_TYPE_P (TREE_TYPE (varop))
5982 && (code == EQ_EXPR || code == NE_EXPR)))
5984 tree newconst
5985 = fold (build (PLUS_EXPR, TREE_TYPE (varop),
5986 constop, TREE_OPERAND (varop, 1)));
5987 TREE_SET_CODE (varop, PREINCREMENT_EXPR);
5989 /* If VAROP is a reference to a bitfield, we must mask
5990 the constant by the width of the field. */
5991 if (TREE_CODE (TREE_OPERAND (varop, 0)) == COMPONENT_REF
5992 && DECL_BIT_FIELD(TREE_OPERAND
5993 (TREE_OPERAND (varop, 0), 1)))
5995 int size
5996 = TREE_INT_CST_LOW (DECL_SIZE
5997 (TREE_OPERAND
5998 (TREE_OPERAND (varop, 0), 1)));
5999 tree mask, unsigned_type;
6000 int precision;
6001 tree folded_compare;
6003 /* First check whether the comparison would come out
6004 always the same. If we don't do that we would
6005 change the meaning with the masking. */
6006 if (constopnum == 0)
6007 folded_compare = fold (build (code, type, constop,
6008 TREE_OPERAND (varop, 0)));
6009 else
6010 folded_compare = fold (build (code, type,
6011 TREE_OPERAND (varop, 0),
6012 constop));
6013 if (integer_zerop (folded_compare)
6014 || integer_onep (folded_compare))
6015 return omit_one_operand (type, folded_compare, varop);
6017 unsigned_type = type_for_size (size, 1);
6018 precision = TYPE_PRECISION (unsigned_type);
6019 mask = build_int_2 (~0, ~0);
6020 TREE_TYPE (mask) = unsigned_type;
6021 force_fit_type (mask, 0);
6022 mask = const_binop (RSHIFT_EXPR, mask,
6023 size_int (precision - size), 0);
6024 newconst = fold (build (BIT_AND_EXPR,
6025 TREE_TYPE (varop), newconst,
6026 convert (TREE_TYPE (varop),
6027 mask)));
6031 t = build (code, type, TREE_OPERAND (t, 0),
6032 TREE_OPERAND (t, 1));
6033 TREE_OPERAND (t, constopnum) = newconst;
6034 return t;
6037 else if (constop && TREE_CODE (varop) == POSTDECREMENT_EXPR)
6039 if (POINTER_TYPE_P (TREE_TYPE (varop))
6040 || (! FLOAT_TYPE_P (TREE_TYPE (varop))
6041 && (code == EQ_EXPR || code == NE_EXPR)))
6043 tree newconst
6044 = fold (build (MINUS_EXPR, TREE_TYPE (varop),
6045 constop, TREE_OPERAND (varop, 1)));
6046 TREE_SET_CODE (varop, PREDECREMENT_EXPR);
6048 if (TREE_CODE (TREE_OPERAND (varop, 0)) == COMPONENT_REF
6049 && DECL_BIT_FIELD(TREE_OPERAND
6050 (TREE_OPERAND (varop, 0), 1)))
6052 int size
6053 = TREE_INT_CST_LOW (DECL_SIZE
6054 (TREE_OPERAND
6055 (TREE_OPERAND (varop, 0), 1)));
6056 tree mask, unsigned_type;
6057 int precision;
6058 tree folded_compare;
6060 if (constopnum == 0)
6061 folded_compare = fold (build (code, type, constop,
6062 TREE_OPERAND (varop, 0)));
6063 else
6064 folded_compare = fold (build (code, type,
6065 TREE_OPERAND (varop, 0),
6066 constop));
6067 if (integer_zerop (folded_compare)
6068 || integer_onep (folded_compare))
6069 return omit_one_operand (type, folded_compare, varop);
6071 unsigned_type = type_for_size (size, 1);
6072 precision = TYPE_PRECISION (unsigned_type);
6073 mask = build_int_2 (~0, ~0);
6074 TREE_TYPE (mask) = TREE_TYPE (varop);
6075 force_fit_type (mask, 0);
6076 mask = const_binop (RSHIFT_EXPR, mask,
6077 size_int (precision - size), 0);
6078 newconst = fold (build (BIT_AND_EXPR,
6079 TREE_TYPE (varop), newconst,
6080 convert (TREE_TYPE (varop),
6081 mask)));
6085 t = build (code, type, TREE_OPERAND (t, 0),
6086 TREE_OPERAND (t, 1));
6087 TREE_OPERAND (t, constopnum) = newconst;
6088 return t;
6093 /* Change X >= CST to X > (CST - 1) if CST is positive. */
6094 if (TREE_CODE (arg1) == INTEGER_CST
6095 && TREE_CODE (arg0) != INTEGER_CST
6096 && tree_int_cst_sgn (arg1) > 0)
6098 switch (TREE_CODE (t))
6100 case GE_EXPR:
6101 code = GT_EXPR;
6102 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
6103 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6104 break;
6106 case LT_EXPR:
6107 code = LE_EXPR;
6108 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
6109 t = build (code, type, TREE_OPERAND (t, 0), arg1);
6110 break;
6112 default:
6113 break;
6117 /* If this is an EQ or NE comparison of a constant with a PLUS_EXPR or
6118 a MINUS_EXPR of a constant, we can convert it into a comparison with
6119 a revised constant as long as no overflow occurs. */
6120 if ((code == EQ_EXPR || code == NE_EXPR)
6121 && TREE_CODE (arg1) == INTEGER_CST
6122 && (TREE_CODE (arg0) == PLUS_EXPR
6123 || TREE_CODE (arg0) == MINUS_EXPR)
6124 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
6125 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
6126 ? MINUS_EXPR : PLUS_EXPR,
6127 arg1, TREE_OPERAND (arg0, 1), 0))
6128 && ! TREE_CONSTANT_OVERFLOW (tem))
6129 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
6131 /* Similarly for a NEGATE_EXPR. */
6132 else if ((code == EQ_EXPR || code == NE_EXPR)
6133 && TREE_CODE (arg0) == NEGATE_EXPR
6134 && TREE_CODE (arg1) == INTEGER_CST
6135 && 0 != (tem = negate_expr (arg1))
6136 && TREE_CODE (tem) == INTEGER_CST
6137 && ! TREE_CONSTANT_OVERFLOW (tem))
6138 return fold (build (code, type, TREE_OPERAND (arg0, 0), tem));
6140 /* If we have X - Y == 0, we can convert that to X == Y and similarly
6141 for !=. Don't do this for ordered comparisons due to overflow. */
6142 else if ((code == NE_EXPR || code == EQ_EXPR)
6143 && integer_zerop (arg1) && TREE_CODE (arg0) == MINUS_EXPR)
6144 return fold (build (code, type,
6145 TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1)));
6147 /* If we are widening one operand of an integer comparison,
6148 see if the other operand is similarly being widened. Perhaps we
6149 can do the comparison in the narrower type. */
6150 else if (TREE_CODE (TREE_TYPE (arg0)) == INTEGER_TYPE
6151 && TREE_CODE (arg0) == NOP_EXPR
6152 && (tem = get_unwidened (arg0, NULL_TREE)) != arg0
6153 && (t1 = get_unwidened (arg1, TREE_TYPE (tem))) != 0
6154 && (TREE_TYPE (t1) == TREE_TYPE (tem)
6155 || (TREE_CODE (t1) == INTEGER_CST
6156 && int_fits_type_p (t1, TREE_TYPE (tem)))))
6157 return fold (build (code, type, tem, convert (TREE_TYPE (tem), t1)));
6159 /* If this is comparing a constant with a MIN_EXPR or a MAX_EXPR of a
6160 constant, we can simplify it. */
6161 else if (TREE_CODE (arg1) == INTEGER_CST
6162 && (TREE_CODE (arg0) == MIN_EXPR
6163 || TREE_CODE (arg0) == MAX_EXPR)
6164 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
6165 return optimize_minmax_comparison (t);
6167 /* If we are comparing an ABS_EXPR with a constant, we can
6168 convert all the cases into explicit comparisons, but they may
6169 well not be faster than doing the ABS and one comparison.
6170 But ABS (X) <= C is a range comparison, which becomes a subtraction
6171 and a comparison, and is probably faster. */
6172 else if (code == LE_EXPR && TREE_CODE (arg1) == INTEGER_CST
6173 && TREE_CODE (arg0) == ABS_EXPR
6174 && ! TREE_SIDE_EFFECTS (arg0)
6175 && (0 != (tem = negate_expr (arg1)))
6176 && TREE_CODE (tem) == INTEGER_CST
6177 && ! TREE_CONSTANT_OVERFLOW (tem))
6178 return fold (build (TRUTH_ANDIF_EXPR, type,
6179 build (GE_EXPR, type, TREE_OPERAND (arg0, 0), tem),
6180 build (LE_EXPR, type,
6181 TREE_OPERAND (arg0, 0), arg1)));
6183 /* If this is an EQ or NE comparison with zero and ARG0 is
6184 (1 << foo) & bar, convert it to (bar >> foo) & 1. Both require
6185 two operations, but the latter can be done in one less insn
6186 on machines that have only two-operand insns or on which a
6187 constant cannot be the first operand. */
6188 if (integer_zerop (arg1) && (code == EQ_EXPR || code == NE_EXPR)
6189 && TREE_CODE (arg0) == BIT_AND_EXPR)
6191 if (TREE_CODE (TREE_OPERAND (arg0, 0)) == LSHIFT_EXPR
6192 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg0, 0), 0)))
6193 return
6194 fold (build (code, type,
6195 build (BIT_AND_EXPR, TREE_TYPE (arg0),
6196 build (RSHIFT_EXPR,
6197 TREE_TYPE (TREE_OPERAND (arg0, 0)),
6198 TREE_OPERAND (arg0, 1),
6199 TREE_OPERAND (TREE_OPERAND (arg0, 0), 1)),
6200 convert (TREE_TYPE (arg0),
6201 integer_one_node)),
6202 arg1));
6203 else if (TREE_CODE (TREE_OPERAND (arg0, 1)) == LSHIFT_EXPR
6204 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg0, 1), 0)))
6205 return
6206 fold (build (code, type,
6207 build (BIT_AND_EXPR, TREE_TYPE (arg0),
6208 build (RSHIFT_EXPR,
6209 TREE_TYPE (TREE_OPERAND (arg0, 1)),
6210 TREE_OPERAND (arg0, 0),
6211 TREE_OPERAND (TREE_OPERAND (arg0, 1), 1)),
6212 convert (TREE_TYPE (arg0),
6213 integer_one_node)),
6214 arg1));
6217 /* If this is an NE or EQ comparison of zero against the result of a
6218 signed MOD operation whose second operand is a power of 2, make
6219 the MOD operation unsigned since it is simpler and equivalent. */
6220 if ((code == NE_EXPR || code == EQ_EXPR)
6221 && integer_zerop (arg1)
6222 && ! TREE_UNSIGNED (TREE_TYPE (arg0))
6223 && (TREE_CODE (arg0) == TRUNC_MOD_EXPR
6224 || TREE_CODE (arg0) == CEIL_MOD_EXPR
6225 || TREE_CODE (arg0) == FLOOR_MOD_EXPR
6226 || TREE_CODE (arg0) == ROUND_MOD_EXPR)
6227 && integer_pow2p (TREE_OPERAND (arg0, 1)))
6229 tree newtype = unsigned_type (TREE_TYPE (arg0));
6230 tree newmod = build (TREE_CODE (arg0), newtype,
6231 convert (newtype, TREE_OPERAND (arg0, 0)),
6232 convert (newtype, TREE_OPERAND (arg0, 1)));
6234 return build (code, type, newmod, convert (newtype, arg1));
6237 /* If this is an NE comparison of zero with an AND of one, remove the
6238 comparison since the AND will give the correct value. */
6239 if (code == NE_EXPR && integer_zerop (arg1)
6240 && TREE_CODE (arg0) == BIT_AND_EXPR
6241 && integer_onep (TREE_OPERAND (arg0, 1)))
6242 return convert (type, arg0);
6244 /* If we have (A & C) == C where C is a power of 2, convert this into
6245 (A & C) != 0. Similarly for NE_EXPR. */
6246 if ((code == EQ_EXPR || code == NE_EXPR)
6247 && TREE_CODE (arg0) == BIT_AND_EXPR
6248 && integer_pow2p (TREE_OPERAND (arg0, 1))
6249 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
6250 return build (code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
6251 arg0, integer_zero_node);
6253 /* If X is unsigned, convert X < (1 << Y) into X >> Y == 0
6254 and similarly for >= into !=. */
6255 if ((code == LT_EXPR || code == GE_EXPR)
6256 && TREE_UNSIGNED (TREE_TYPE (arg0))
6257 && TREE_CODE (arg1) == LSHIFT_EXPR
6258 && integer_onep (TREE_OPERAND (arg1, 0)))
6259 return build (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
6260 build (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
6261 TREE_OPERAND (arg1, 1)),
6262 convert (TREE_TYPE (arg0), integer_zero_node));
6264 else if ((code == LT_EXPR || code == GE_EXPR)
6265 && TREE_UNSIGNED (TREE_TYPE (arg0))
6266 && (TREE_CODE (arg1) == NOP_EXPR
6267 || TREE_CODE (arg1) == CONVERT_EXPR)
6268 && TREE_CODE (TREE_OPERAND (arg1, 0)) == LSHIFT_EXPR
6269 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg1, 0), 0)))
6270 return
6271 build (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
6272 convert (TREE_TYPE (arg0),
6273 build (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
6274 TREE_OPERAND (TREE_OPERAND (arg1, 0), 1))),
6275 convert (TREE_TYPE (arg0), integer_zero_node));
6277 /* Simplify comparison of something with itself. (For IEEE
6278 floating-point, we can only do some of these simplifications.) */
6279 if (operand_equal_p (arg0, arg1, 0))
6281 switch (code)
6283 case EQ_EXPR:
6284 case GE_EXPR:
6285 case LE_EXPR:
6286 if (INTEGRAL_TYPE_P (TREE_TYPE (arg0)))
6287 return constant_boolean_node (1, type);
6288 code = EQ_EXPR;
6289 TREE_SET_CODE (t, code);
6290 break;
6292 case NE_EXPR:
6293 /* For NE, we can only do this simplification if integer. */
6294 if (! INTEGRAL_TYPE_P (TREE_TYPE (arg0)))
6295 break;
6296 /* ... fall through ... */
6297 case GT_EXPR:
6298 case LT_EXPR:
6299 return constant_boolean_node (0, type);
6300 default:
6301 abort ();
6305 /* An unsigned comparison against 0 can be simplified. */
6306 if (integer_zerop (arg1)
6307 && (INTEGRAL_TYPE_P (TREE_TYPE (arg1))
6308 || POINTER_TYPE_P (TREE_TYPE (arg1)))
6309 && TREE_UNSIGNED (TREE_TYPE (arg1)))
6311 switch (TREE_CODE (t))
6313 case GT_EXPR:
6314 code = NE_EXPR;
6315 TREE_SET_CODE (t, NE_EXPR);
6316 break;
6317 case LE_EXPR:
6318 code = EQ_EXPR;
6319 TREE_SET_CODE (t, EQ_EXPR);
6320 break;
6321 case GE_EXPR:
6322 return omit_one_operand (type,
6323 convert (type, integer_one_node),
6324 arg0);
6325 case LT_EXPR:
6326 return omit_one_operand (type,
6327 convert (type, integer_zero_node),
6328 arg0);
6329 default:
6330 break;
6334 /* Comparisons with the highest or lowest possible integer of
6335 the specified size will have known values and an unsigned
6336 <= 0x7fffffff can be simplified. */
6338 int width = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg1)));
6340 if (TREE_CODE (arg1) == INTEGER_CST
6341 && ! TREE_CONSTANT_OVERFLOW (arg1)
6342 && width <= HOST_BITS_PER_WIDE_INT
6343 && (INTEGRAL_TYPE_P (TREE_TYPE (arg1))
6344 || POINTER_TYPE_P (TREE_TYPE (arg1))))
6346 if (TREE_INT_CST_HIGH (arg1) == 0
6347 && (TREE_INT_CST_LOW (arg1)
6348 == ((HOST_WIDE_INT) 1 << (width - 1)) - 1)
6349 && ! TREE_UNSIGNED (TREE_TYPE (arg1)))
6350 switch (TREE_CODE (t))
6352 case GT_EXPR:
6353 return omit_one_operand (type,
6354 convert (type, integer_zero_node),
6355 arg0);
6356 case GE_EXPR:
6357 TREE_SET_CODE (t, EQ_EXPR);
6358 break;
6360 case LE_EXPR:
6361 return omit_one_operand (type,
6362 convert (type, integer_one_node),
6363 arg0);
6364 case LT_EXPR:
6365 TREE_SET_CODE (t, NE_EXPR);
6366 break;
6368 default:
6369 break;
6372 else if (TREE_INT_CST_HIGH (arg1) == -1
6373 && (- TREE_INT_CST_LOW (arg1)
6374 == ((HOST_WIDE_INT) 1 << (width - 1)))
6375 && ! TREE_UNSIGNED (TREE_TYPE (arg1)))
6376 switch (TREE_CODE (t))
6378 case LT_EXPR:
6379 return omit_one_operand (type,
6380 convert (type, integer_zero_node),
6381 arg0);
6382 case LE_EXPR:
6383 TREE_SET_CODE (t, EQ_EXPR);
6384 break;
6386 case GE_EXPR:
6387 return omit_one_operand (type,
6388 convert (type, integer_one_node),
6389 arg0);
6390 case GT_EXPR:
6391 TREE_SET_CODE (t, NE_EXPR);
6392 break;
6394 default:
6395 break;
6398 else if (TREE_INT_CST_HIGH (arg1) == 0
6399 && (TREE_INT_CST_LOW (arg1)
6400 == ((HOST_WIDE_INT) 1 << (width - 1)) - 1)
6401 && TREE_UNSIGNED (TREE_TYPE (arg1)))
6403 switch (TREE_CODE (t))
6405 case LE_EXPR:
6406 return fold (build (GE_EXPR, type,
6407 convert (signed_type (TREE_TYPE (arg0)),
6408 arg0),
6409 convert (signed_type (TREE_TYPE (arg1)),
6410 integer_zero_node)));
6411 case GT_EXPR:
6412 return fold (build (LT_EXPR, type,
6413 convert (signed_type (TREE_TYPE (arg0)),
6414 arg0),
6415 convert (signed_type (TREE_TYPE (arg1)),
6416 integer_zero_node)));
6418 default:
6419 break;
6424 /* If we are comparing an expression that just has comparisons
6425 of two integer values, arithmetic expressions of those comparisons,
6426 and constants, we can simplify it. There are only three cases
6427 to check: the two values can either be equal, the first can be
6428 greater, or the second can be greater. Fold the expression for
6429 those three values. Since each value must be 0 or 1, we have
6430 eight possibilities, each of which corresponds to the constant 0
6431 or 1 or one of the six possible comparisons.
6433 This handles common cases like (a > b) == 0 but also handles
6434 expressions like ((x > y) - (y > x)) > 0, which supposedly
6435 occur in macroized code. */
6437 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) != INTEGER_CST)
6439 tree cval1 = 0, cval2 = 0;
6440 int save_p = 0;
6442 if (twoval_comparison_p (arg0, &cval1, &cval2, &save_p)
6443 /* Don't handle degenerate cases here; they should already
6444 have been handled anyway. */
6445 && cval1 != 0 && cval2 != 0
6446 && ! (TREE_CONSTANT (cval1) && TREE_CONSTANT (cval2))
6447 && TREE_TYPE (cval1) == TREE_TYPE (cval2)
6448 && INTEGRAL_TYPE_P (TREE_TYPE (cval1))
6449 && TYPE_MAX_VALUE (TREE_TYPE (cval1))
6450 && TYPE_MAX_VALUE (TREE_TYPE (cval2))
6451 && ! operand_equal_p (TYPE_MIN_VALUE (TREE_TYPE (cval1)),
6452 TYPE_MAX_VALUE (TREE_TYPE (cval2)), 0))
6454 tree maxval = TYPE_MAX_VALUE (TREE_TYPE (cval1));
6455 tree minval = TYPE_MIN_VALUE (TREE_TYPE (cval1));
6457 /* We can't just pass T to eval_subst in case cval1 or cval2
6458 was the same as ARG1. */
6460 tree high_result
6461 = fold (build (code, type,
6462 eval_subst (arg0, cval1, maxval, cval2, minval),
6463 arg1));
6464 tree equal_result
6465 = fold (build (code, type,
6466 eval_subst (arg0, cval1, maxval, cval2, maxval),
6467 arg1));
6468 tree low_result
6469 = fold (build (code, type,
6470 eval_subst (arg0, cval1, minval, cval2, maxval),
6471 arg1));
6473 /* All three of these results should be 0 or 1. Confirm they
6474 are. Then use those values to select the proper code
6475 to use. */
6477 if ((integer_zerop (high_result)
6478 || integer_onep (high_result))
6479 && (integer_zerop (equal_result)
6480 || integer_onep (equal_result))
6481 && (integer_zerop (low_result)
6482 || integer_onep (low_result)))
6484 /* Make a 3-bit mask with the high-order bit being the
6485 value for `>', the next for '=', and the low for '<'. */
6486 switch ((integer_onep (high_result) * 4)
6487 + (integer_onep (equal_result) * 2)
6488 + integer_onep (low_result))
6490 case 0:
6491 /* Always false. */
6492 return omit_one_operand (type, integer_zero_node, arg0);
6493 case 1:
6494 code = LT_EXPR;
6495 break;
6496 case 2:
6497 code = EQ_EXPR;
6498 break;
6499 case 3:
6500 code = LE_EXPR;
6501 break;
6502 case 4:
6503 code = GT_EXPR;
6504 break;
6505 case 5:
6506 code = NE_EXPR;
6507 break;
6508 case 6:
6509 code = GE_EXPR;
6510 break;
6511 case 7:
6512 /* Always true. */
6513 return omit_one_operand (type, integer_one_node, arg0);
6516 t = build (code, type, cval1, cval2);
6517 if (save_p)
6518 return save_expr (t);
6519 else
6520 return fold (t);
6525 /* If this is a comparison of a field, we may be able to simplify it. */
6526 if ((TREE_CODE (arg0) == COMPONENT_REF
6527 || TREE_CODE (arg0) == BIT_FIELD_REF)
6528 && (code == EQ_EXPR || code == NE_EXPR)
6529 /* Handle the constant case even without -O
6530 to make sure the warnings are given. */
6531 && (optimize || TREE_CODE (arg1) == INTEGER_CST))
6533 t1 = optimize_bit_field_compare (code, type, arg0, arg1);
6534 return t1 ? t1 : t;
6537 /* If this is a comparison of complex values and either or both sides
6538 are a COMPLEX_EXPR or COMPLEX_CST, it is best to split up the
6539 comparisons and join them with a TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR.
6540 This may prevent needless evaluations. */
6541 if ((code == EQ_EXPR || code == NE_EXPR)
6542 && TREE_CODE (TREE_TYPE (arg0)) == COMPLEX_TYPE
6543 && (TREE_CODE (arg0) == COMPLEX_EXPR
6544 || TREE_CODE (arg1) == COMPLEX_EXPR
6545 || TREE_CODE (arg0) == COMPLEX_CST
6546 || TREE_CODE (arg1) == COMPLEX_CST))
6548 tree subtype = TREE_TYPE (TREE_TYPE (arg0));
6549 tree real0, imag0, real1, imag1;
6551 arg0 = save_expr (arg0);
6552 arg1 = save_expr (arg1);
6553 real0 = fold (build1 (REALPART_EXPR, subtype, arg0));
6554 imag0 = fold (build1 (IMAGPART_EXPR, subtype, arg0));
6555 real1 = fold (build1 (REALPART_EXPR, subtype, arg1));
6556 imag1 = fold (build1 (IMAGPART_EXPR, subtype, arg1));
6558 return fold (build ((code == EQ_EXPR ? TRUTH_ANDIF_EXPR
6559 : TRUTH_ORIF_EXPR),
6560 type,
6561 fold (build (code, type, real0, real1)),
6562 fold (build (code, type, imag0, imag1))));
6565 /* From here on, the only cases we handle are when the result is
6566 known to be a constant.
6568 To compute GT, swap the arguments and do LT.
6569 To compute GE, do LT and invert the result.
6570 To compute LE, swap the arguments, do LT and invert the result.
6571 To compute NE, do EQ and invert the result.
6573 Therefore, the code below must handle only EQ and LT. */
6575 if (code == LE_EXPR || code == GT_EXPR)
6577 tem = arg0, arg0 = arg1, arg1 = tem;
6578 code = swap_tree_comparison (code);
6581 /* Note that it is safe to invert for real values here because we
6582 will check below in the one case that it matters. */
6584 t1 = NULL_TREE;
6585 invert = 0;
6586 if (code == NE_EXPR || code == GE_EXPR)
6588 invert = 1;
6589 code = invert_tree_comparison (code);
6592 /* Compute a result for LT or EQ if args permit;
6593 otherwise return T. */
6594 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
6596 if (code == EQ_EXPR)
6597 t1 = build_int_2 ((TREE_INT_CST_LOW (arg0)
6598 == TREE_INT_CST_LOW (arg1))
6599 && (TREE_INT_CST_HIGH (arg0)
6600 == TREE_INT_CST_HIGH (arg1)),
6602 else
6603 t1 = build_int_2 ((TREE_UNSIGNED (TREE_TYPE (arg0))
6604 ? INT_CST_LT_UNSIGNED (arg0, arg1)
6605 : INT_CST_LT (arg0, arg1)),
6609 #if 0 /* This is no longer useful, but breaks some real code. */
6610 /* Assume a nonexplicit constant cannot equal an explicit one,
6611 since such code would be undefined anyway.
6612 Exception: on sysvr4, using #pragma weak,
6613 a label can come out as 0. */
6614 else if (TREE_CODE (arg1) == INTEGER_CST
6615 && !integer_zerop (arg1)
6616 && TREE_CONSTANT (arg0)
6617 && TREE_CODE (arg0) == ADDR_EXPR
6618 && code == EQ_EXPR)
6619 t1 = build_int_2 (0, 0);
6620 #endif
6621 /* Two real constants can be compared explicitly. */
6622 else if (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
6624 /* If either operand is a NaN, the result is false with two
6625 exceptions: First, an NE_EXPR is true on NaNs, but that case
6626 is already handled correctly since we will be inverting the
6627 result for NE_EXPR. Second, if we had inverted a LE_EXPR
6628 or a GE_EXPR into a LT_EXPR, we must return true so that it
6629 will be inverted into false. */
6631 if (REAL_VALUE_ISNAN (TREE_REAL_CST (arg0))
6632 || REAL_VALUE_ISNAN (TREE_REAL_CST (arg1)))
6633 t1 = build_int_2 (invert && code == LT_EXPR, 0);
6635 else if (code == EQ_EXPR)
6636 t1 = build_int_2 (REAL_VALUES_EQUAL (TREE_REAL_CST (arg0),
6637 TREE_REAL_CST (arg1)),
6639 else
6640 t1 = build_int_2 (REAL_VALUES_LESS (TREE_REAL_CST (arg0),
6641 TREE_REAL_CST (arg1)),
6645 if (t1 == NULL_TREE)
6646 return t;
6648 if (invert)
6649 TREE_INT_CST_LOW (t1) ^= 1;
6651 TREE_TYPE (t1) = type;
6652 if (TREE_CODE (type) == BOOLEAN_TYPE)
6653 return truthvalue_conversion (t1);
6654 return t1;
6656 case COND_EXPR:
6657 /* Pedantic ANSI C says that a conditional expression is never an lvalue,
6658 so all simple results must be passed through pedantic_non_lvalue. */
6659 if (TREE_CODE (arg0) == INTEGER_CST)
6660 return pedantic_non_lvalue
6661 (TREE_OPERAND (t, (integer_zerop (arg0) ? 2 : 1)));
6662 else if (operand_equal_p (arg1, TREE_OPERAND (expr, 2), 0))
6663 return pedantic_omit_one_operand (type, arg1, arg0);
6665 /* If the second operand is zero, invert the comparison and swap
6666 the second and third operands. Likewise if the second operand
6667 is constant and the third is not or if the third operand is
6668 equivalent to the first operand of the comparison. */
6670 if (integer_zerop (arg1)
6671 || (TREE_CONSTANT (arg1) && ! TREE_CONSTANT (TREE_OPERAND (t, 2)))
6672 || (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
6673 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
6674 TREE_OPERAND (t, 2),
6675 TREE_OPERAND (arg0, 1))))
6677 /* See if this can be inverted. If it can't, possibly because
6678 it was a floating-point inequality comparison, don't do
6679 anything. */
6680 tem = invert_truthvalue (arg0);
6682 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
6684 t = build (code, type, tem,
6685 TREE_OPERAND (t, 2), TREE_OPERAND (t, 1));
6686 arg0 = tem;
6687 /* arg1 should be the first argument of the new T. */
6688 arg1 = TREE_OPERAND (t, 1);
6689 STRIP_NOPS (arg1);
6693 /* If we have A op B ? A : C, we may be able to convert this to a
6694 simpler expression, depending on the operation and the values
6695 of B and C. IEEE floating point prevents this though,
6696 because A or B might be -0.0 or a NaN. */
6698 if (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
6699 && (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
6700 || ! FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (arg0, 0)))
6701 || flag_fast_math)
6702 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
6703 arg1, TREE_OPERAND (arg0, 1)))
6705 tree arg2 = TREE_OPERAND (t, 2);
6706 enum tree_code comp_code = TREE_CODE (arg0);
6708 STRIP_NOPS (arg2);
6710 /* If we have A op 0 ? A : -A, this is A, -A, abs (A), or abs (-A),
6711 depending on the comparison operation. */
6712 if ((FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (arg0, 1)))
6713 ? real_zerop (TREE_OPERAND (arg0, 1))
6714 : integer_zerop (TREE_OPERAND (arg0, 1)))
6715 && TREE_CODE (arg2) == NEGATE_EXPR
6716 && operand_equal_p (TREE_OPERAND (arg2, 0), arg1, 0))
6717 switch (comp_code)
6719 case EQ_EXPR:
6720 return pedantic_non_lvalue (negate_expr (arg1));
6721 case NE_EXPR:
6722 return pedantic_non_lvalue (convert (type, arg1));
6723 case GE_EXPR:
6724 case GT_EXPR:
6725 if (TREE_UNSIGNED (TREE_TYPE (arg1)))
6726 arg1 = convert (signed_type (TREE_TYPE (arg1)), arg1);
6727 return pedantic_non_lvalue
6728 (convert (type, fold (build1 (ABS_EXPR,
6729 TREE_TYPE (arg1), arg1))));
6730 case LE_EXPR:
6731 case LT_EXPR:
6732 if (TREE_UNSIGNED (TREE_TYPE (arg1)))
6733 arg1 = convert (signed_type (TREE_TYPE (arg1)), arg1);
6734 return pedantic_non_lvalue
6735 (negate_expr (convert (type,
6736 fold (build1 (ABS_EXPR,
6737 TREE_TYPE (arg1),
6738 arg1)))));
6739 default:
6740 abort ();
6743 /* If this is A != 0 ? A : 0, this is simply A. For ==, it is
6744 always zero. */
6746 if (integer_zerop (TREE_OPERAND (arg0, 1)) && integer_zerop (arg2))
6748 if (comp_code == NE_EXPR)
6749 return pedantic_non_lvalue (convert (type, arg1));
6750 else if (comp_code == EQ_EXPR)
6751 return pedantic_non_lvalue (convert (type, integer_zero_node));
6754 /* If this is A op B ? A : B, this is either A, B, min (A, B),
6755 or max (A, B), depending on the operation. */
6757 if (operand_equal_for_comparison_p (TREE_OPERAND (arg0, 1),
6758 arg2, TREE_OPERAND (arg0, 0)))
6760 tree comp_op0 = TREE_OPERAND (arg0, 0);
6761 tree comp_op1 = TREE_OPERAND (arg0, 1);
6762 tree comp_type = TREE_TYPE (comp_op0);
6764 switch (comp_code)
6766 case EQ_EXPR:
6767 return pedantic_non_lvalue (convert (type, arg2));
6768 case NE_EXPR:
6769 return pedantic_non_lvalue (convert (type, arg1));
6770 case LE_EXPR:
6771 case LT_EXPR:
6772 /* In C++ a ?: expression can be an lvalue, so put the
6773 operand which will be used if they are equal first
6774 so that we can convert this back to the
6775 corresponding COND_EXPR. */
6776 return pedantic_non_lvalue
6777 (convert (type, (fold (build (MIN_EXPR, comp_type,
6778 (comp_code == LE_EXPR
6779 ? comp_op0 : comp_op1),
6780 (comp_code == LE_EXPR
6781 ? comp_op1 : comp_op0))))));
6782 break;
6783 case GE_EXPR:
6784 case GT_EXPR:
6785 return pedantic_non_lvalue
6786 (convert (type, fold (build (MAX_EXPR, comp_type,
6787 (comp_code == GE_EXPR
6788 ? comp_op0 : comp_op1),
6789 (comp_code == GE_EXPR
6790 ? comp_op1 : comp_op0)))));
6791 break;
6792 default:
6793 abort ();
6797 /* If this is A op C1 ? A : C2 with C1 and C2 constant integers,
6798 we might still be able to simplify this. For example,
6799 if C1 is one less or one more than C2, this might have started
6800 out as a MIN or MAX and been transformed by this function.
6801 Only good for INTEGER_TYPEs, because we need TYPE_MAX_VALUE. */
6803 if (INTEGRAL_TYPE_P (type)
6804 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
6805 && TREE_CODE (arg2) == INTEGER_CST)
6806 switch (comp_code)
6808 case EQ_EXPR:
6809 /* We can replace A with C1 in this case. */
6810 arg1 = convert (type, TREE_OPERAND (arg0, 1));
6811 t = build (code, type, TREE_OPERAND (t, 0), arg1,
6812 TREE_OPERAND (t, 2));
6813 break;
6815 case LT_EXPR:
6816 /* If C1 is C2 + 1, this is min(A, C2). */
6817 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type), 1)
6818 && operand_equal_p (TREE_OPERAND (arg0, 1),
6819 const_binop (PLUS_EXPR, arg2,
6820 integer_one_node, 0), 1))
6821 return pedantic_non_lvalue
6822 (fold (build (MIN_EXPR, type, arg1, arg2)));
6823 break;
6825 case LE_EXPR:
6826 /* If C1 is C2 - 1, this is min(A, C2). */
6827 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type), 1)
6828 && operand_equal_p (TREE_OPERAND (arg0, 1),
6829 const_binop (MINUS_EXPR, arg2,
6830 integer_one_node, 0), 1))
6831 return pedantic_non_lvalue
6832 (fold (build (MIN_EXPR, type, arg1, arg2)));
6833 break;
6835 case GT_EXPR:
6836 /* If C1 is C2 - 1, this is max(A, C2). */
6837 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type), 1)
6838 && operand_equal_p (TREE_OPERAND (arg0, 1),
6839 const_binop (MINUS_EXPR, arg2,
6840 integer_one_node, 0), 1))
6841 return pedantic_non_lvalue
6842 (fold (build (MAX_EXPR, type, arg1, arg2)));
6843 break;
6845 case GE_EXPR:
6846 /* If C1 is C2 + 1, this is max(A, C2). */
6847 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type), 1)
6848 && operand_equal_p (TREE_OPERAND (arg0, 1),
6849 const_binop (PLUS_EXPR, arg2,
6850 integer_one_node, 0), 1))
6851 return pedantic_non_lvalue
6852 (fold (build (MAX_EXPR, type, arg1, arg2)));
6853 break;
6854 case NE_EXPR:
6855 break;
6856 default:
6857 abort ();
6861 /* If the second operand is simpler than the third, swap them
6862 since that produces better jump optimization results. */
6863 if ((TREE_CONSTANT (arg1) || TREE_CODE_CLASS (TREE_CODE (arg1)) == 'd'
6864 || TREE_CODE (arg1) == SAVE_EXPR)
6865 && ! (TREE_CONSTANT (TREE_OPERAND (t, 2))
6866 || TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (t, 2))) == 'd'
6867 || TREE_CODE (TREE_OPERAND (t, 2)) == SAVE_EXPR))
6869 /* See if this can be inverted. If it can't, possibly because
6870 it was a floating-point inequality comparison, don't do
6871 anything. */
6872 tem = invert_truthvalue (arg0);
6874 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
6876 t = build (code, type, tem,
6877 TREE_OPERAND (t, 2), TREE_OPERAND (t, 1));
6878 arg0 = tem;
6879 /* arg1 should be the first argument of the new T. */
6880 arg1 = TREE_OPERAND (t, 1);
6881 STRIP_NOPS (arg1);
6885 /* Convert A ? 1 : 0 to simply A. */
6886 if (integer_onep (TREE_OPERAND (t, 1))
6887 && integer_zerop (TREE_OPERAND (t, 2))
6888 /* If we try to convert TREE_OPERAND (t, 0) to our type, the
6889 call to fold will try to move the conversion inside
6890 a COND, which will recurse. In that case, the COND_EXPR
6891 is probably the best choice, so leave it alone. */
6892 && type == TREE_TYPE (arg0))
6893 return pedantic_non_lvalue (arg0);
6895 /* Look for expressions of the form A & 2 ? 2 : 0. The result of this
6896 operation is simply A & 2. */
6898 if (integer_zerop (TREE_OPERAND (t, 2))
6899 && TREE_CODE (arg0) == NE_EXPR
6900 && integer_zerop (TREE_OPERAND (arg0, 1))
6901 && integer_pow2p (arg1)
6902 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
6903 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
6904 arg1, 1))
6905 return pedantic_non_lvalue (convert (type, TREE_OPERAND (arg0, 0)));
6907 return t;
6909 case COMPOUND_EXPR:
6910 /* When pedantic, a compound expression can be neither an lvalue
6911 nor an integer constant expression. */
6912 if (TREE_SIDE_EFFECTS (arg0) || pedantic)
6913 return t;
6914 /* Don't let (0, 0) be null pointer constant. */
6915 if (integer_zerop (arg1))
6916 return build1 (NOP_EXPR, TREE_TYPE (arg1), arg1);
6917 return arg1;
6919 case COMPLEX_EXPR:
6920 if (wins)
6921 return build_complex (type, arg0, arg1);
6922 return t;
6924 case REALPART_EXPR:
6925 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
6926 return t;
6927 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
6928 return omit_one_operand (type, TREE_OPERAND (arg0, 0),
6929 TREE_OPERAND (arg0, 1));
6930 else if (TREE_CODE (arg0) == COMPLEX_CST)
6931 return TREE_REALPART (arg0);
6932 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
6933 return fold (build (TREE_CODE (arg0), type,
6934 fold (build1 (REALPART_EXPR, type,
6935 TREE_OPERAND (arg0, 0))),
6936 fold (build1 (REALPART_EXPR,
6937 type, TREE_OPERAND (arg0, 1)))));
6938 return t;
6940 case IMAGPART_EXPR:
6941 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
6942 return convert (type, integer_zero_node);
6943 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
6944 return omit_one_operand (type, TREE_OPERAND (arg0, 1),
6945 TREE_OPERAND (arg0, 0));
6946 else if (TREE_CODE (arg0) == COMPLEX_CST)
6947 return TREE_IMAGPART (arg0);
6948 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
6949 return fold (build (TREE_CODE (arg0), type,
6950 fold (build1 (IMAGPART_EXPR, type,
6951 TREE_OPERAND (arg0, 0))),
6952 fold (build1 (IMAGPART_EXPR, type,
6953 TREE_OPERAND (arg0, 1)))));
6954 return t;
6956 /* Pull arithmetic ops out of the CLEANUP_POINT_EXPR where
6957 appropriate. */
6958 case CLEANUP_POINT_EXPR:
6959 if (! has_cleanups (arg0))
6960 return TREE_OPERAND (t, 0);
6963 enum tree_code code0 = TREE_CODE (arg0);
6964 int kind0 = TREE_CODE_CLASS (code0);
6965 tree arg00 = TREE_OPERAND (arg0, 0);
6966 tree arg01;
6968 if (kind0 == '1' || code0 == TRUTH_NOT_EXPR)
6969 return fold (build1 (code0, type,
6970 fold (build1 (CLEANUP_POINT_EXPR,
6971 TREE_TYPE (arg00), arg00))));
6973 if (kind0 == '<' || kind0 == '2'
6974 || code0 == TRUTH_ANDIF_EXPR || code0 == TRUTH_ORIF_EXPR
6975 || code0 == TRUTH_AND_EXPR || code0 == TRUTH_OR_EXPR
6976 || code0 == TRUTH_XOR_EXPR)
6978 arg01 = TREE_OPERAND (arg0, 1);
6980 if (TREE_CONSTANT (arg00)
6981 || ((code0 == TRUTH_ANDIF_EXPR || code0 == TRUTH_ORIF_EXPR)
6982 && ! has_cleanups (arg00)))
6983 return fold (build (code0, type, arg00,
6984 fold (build1 (CLEANUP_POINT_EXPR,
6985 TREE_TYPE (arg01), arg01))));
6987 if (TREE_CONSTANT (arg01))
6988 return fold (build (code0, type,
6989 fold (build1 (CLEANUP_POINT_EXPR,
6990 TREE_TYPE (arg00), arg00)),
6991 arg01));
6994 return t;
6997 default:
6998 return t;
6999 } /* switch (code) */
7002 /* Determine if first argument is a multiple of second argument. Return 0 if
7003 it is not, or we cannot easily determined it to be.
7005 An example of the sort of thing we care about (at this point; this routine
7006 could surely be made more general, and expanded to do what the *_DIV_EXPR's
7007 fold cases do now) is discovering that
7009 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
7011 is a multiple of
7013 SAVE_EXPR (J * 8)
7015 when we know that the two SAVE_EXPR (J * 8) nodes are the same node.
7017 This code also handles discovering that
7019 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
7021 is a multiple of 8 so we don't have to worry about dealing with a
7022 possible remainder.
7024 Note that we *look* inside a SAVE_EXPR only to determine how it was
7025 calculated; it is not safe for fold to do much of anything else with the
7026 internals of a SAVE_EXPR, since it cannot know when it will be evaluated
7027 at run time. For example, the latter example above *cannot* be implemented
7028 as SAVE_EXPR (I) * J or any variant thereof, since the value of J at
7029 evaluation time of the original SAVE_EXPR is not necessarily the same at
7030 the time the new expression is evaluated. The only optimization of this
7031 sort that would be valid is changing
7033 SAVE_EXPR (I) * SAVE_EXPR (SAVE_EXPR (J) * 8)
7035 divided by 8 to
7037 SAVE_EXPR (I) * SAVE_EXPR (J)
7039 (where the same SAVE_EXPR (J) is used in the original and the
7040 transformed version). */
7042 static int
7043 multiple_of_p (type, top, bottom)
7044 tree type;
7045 tree top;
7046 tree bottom;
7048 if (operand_equal_p (top, bottom, 0))
7049 return 1;
7051 if (TREE_CODE (type) != INTEGER_TYPE)
7052 return 0;
7054 switch (TREE_CODE (top))
7056 case MULT_EXPR:
7057 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
7058 || multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
7060 case PLUS_EXPR:
7061 case MINUS_EXPR:
7062 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
7063 && multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
7065 case NOP_EXPR:
7066 /* Can't handle conversions from non-integral or wider integral type. */
7067 if ((TREE_CODE (TREE_TYPE (TREE_OPERAND (top, 0))) != INTEGER_TYPE)
7068 || (TYPE_PRECISION (type)
7069 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (top, 0)))))
7070 return 0;
7072 /* .. fall through ... */
7074 case SAVE_EXPR:
7075 return multiple_of_p (type, TREE_OPERAND (top, 0), bottom);
7077 case INTEGER_CST:
7078 if ((TREE_CODE (bottom) != INTEGER_CST)
7079 || (tree_int_cst_sgn (top) < 0)
7080 || (tree_int_cst_sgn (bottom) < 0))
7081 return 0;
7082 return integer_zerop (const_binop (TRUNC_MOD_EXPR,
7083 top, bottom, 0));
7085 default:
7086 return 0;