* arm.c (arm_cpp_interwork): New variable.
[official-gcc.git] / gcc / fold-const.c
bloba1efab1184bffca760f1c2b261a501570acd5732
1 /* Fold a constant sub-tree into a single node for C-compiler
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 /*@@ This file should be rewritten to use an arbitrary precision
23 @@ representation for "struct tree_int_cst" and "struct tree_real_cst".
24 @@ Perhaps the routines could also be used for bc/dc, and made a lib.
25 @@ The routines that translate from the ap rep should
26 @@ warn if precision et. al. is lost.
27 @@ This would also make life easier when this technology is used
28 @@ for cross-compilers. */
30 /* The entry points in this file are fold, size_int_wide, size_binop
31 and force_fit_type.
33 fold takes a tree as argument and returns a simplified tree.
35 size_binop takes a tree code for an arithmetic operation
36 and two operands that are trees, and produces a tree for the
37 result, assuming the type comes from `sizetype'.
39 size_int takes an integer value, and creates a tree constant
40 with type from `sizetype'.
42 force_fit_type takes a constant and prior overflow indicator, and
43 forces the value to fit the type. It returns an overflow indicator. */
45 #include "config.h"
46 #include "system.h"
47 #include "coretypes.h"
48 #include "tm.h"
49 #include "flags.h"
50 #include "tree.h"
51 #include "real.h"
52 #include "rtl.h"
53 #include "expr.h"
54 #include "tm_p.h"
55 #include "toplev.h"
56 #include "ggc.h"
57 #include "hashtab.h"
58 #include "langhooks.h"
59 #include "md5.h"
61 /* The following constants represent a bit based encoding of GCC's
62 comparison operators. This encoding simplifies transformations
63 on relational comparison operators, such as AND and OR. */
64 enum comparison_code {
65 COMPCODE_FALSE = 0,
66 COMPCODE_LT = 1,
67 COMPCODE_EQ = 2,
68 COMPCODE_LE = 3,
69 COMPCODE_GT = 4,
70 COMPCODE_LTGT = 5,
71 COMPCODE_GE = 6,
72 COMPCODE_ORD = 7,
73 COMPCODE_UNORD = 8,
74 COMPCODE_UNLT = 9,
75 COMPCODE_UNEQ = 10,
76 COMPCODE_UNLE = 11,
77 COMPCODE_UNGT = 12,
78 COMPCODE_NE = 13,
79 COMPCODE_UNGE = 14,
80 COMPCODE_TRUE = 15
83 static void encode (HOST_WIDE_INT *, unsigned HOST_WIDE_INT, HOST_WIDE_INT);
84 static void decode (HOST_WIDE_INT *, unsigned HOST_WIDE_INT *, HOST_WIDE_INT *);
85 static bool negate_mathfn_p (enum built_in_function);
86 static bool negate_expr_p (tree);
87 static tree negate_expr (tree);
88 static tree split_tree (tree, enum tree_code, tree *, tree *, tree *, int);
89 static tree associate_trees (tree, tree, enum tree_code, tree);
90 static tree const_binop (enum tree_code, tree, tree, int);
91 static hashval_t size_htab_hash (const void *);
92 static int size_htab_eq (const void *, const void *);
93 static tree fold_convert_const (enum tree_code, tree, tree);
94 static enum tree_code invert_tree_comparison (enum tree_code, bool);
95 static enum comparison_code comparison_to_compcode (enum tree_code);
96 static enum tree_code compcode_to_comparison (enum comparison_code);
97 static tree combine_comparisons (enum tree_code, enum tree_code,
98 enum tree_code, tree, tree, tree);
99 static int truth_value_p (enum tree_code);
100 static int operand_equal_for_comparison_p (tree, tree, tree);
101 static int twoval_comparison_p (tree, tree *, tree *, int *);
102 static tree eval_subst (tree, tree, tree, tree, tree);
103 static tree pedantic_omit_one_operand (tree, tree, tree);
104 static tree distribute_bit_expr (enum tree_code, tree, tree, tree);
105 static tree make_bit_field_ref (tree, tree, int, int, int);
106 static tree optimize_bit_field_compare (enum tree_code, tree, tree, tree);
107 static tree decode_field_reference (tree, HOST_WIDE_INT *, HOST_WIDE_INT *,
108 enum machine_mode *, int *, int *,
109 tree *, tree *);
110 static int all_ones_mask_p (tree, int);
111 static tree sign_bit_p (tree, tree);
112 static int simple_operand_p (tree);
113 static tree range_binop (enum tree_code, tree, tree, int, tree, int);
114 static tree make_range (tree, int *, tree *, tree *);
115 static tree build_range_check (tree, tree, int, tree, tree);
116 static int merge_ranges (int *, tree *, tree *, int, tree, tree, int, tree,
117 tree);
118 static tree fold_range_test (tree);
119 static tree fold_cond_expr_with_comparison (tree, tree, tree, tree);
120 static tree unextend (tree, int, int, tree);
121 static tree fold_truthop (enum tree_code, tree, tree, tree);
122 static tree optimize_minmax_comparison (tree);
123 static tree extract_muldiv (tree, tree, enum tree_code, tree);
124 static tree extract_muldiv_1 (tree, tree, enum tree_code, tree);
125 static int multiple_of_p (tree, tree, tree);
126 static tree constant_boolean_node (int, tree);
127 static tree fold_binary_op_with_conditional_arg (enum tree_code, tree, tree,
128 tree, int);
129 static bool fold_real_zero_addition_p (tree, tree, int);
130 static tree fold_mathfn_compare (enum built_in_function, enum tree_code,
131 tree, tree, tree);
132 static tree fold_inf_compare (enum tree_code, tree, tree, tree);
133 static tree fold_div_compare (enum tree_code, tree, tree, tree);
134 static bool reorder_operands_p (tree, tree);
135 static tree fold_negate_const (tree, tree);
136 static tree fold_not_const (tree, tree);
137 static tree fold_relational_const (enum tree_code, tree, tree, tree);
138 static tree fold_relational_hi_lo (enum tree_code *, const tree,
139 tree *, tree *);
141 /* We know that A1 + B1 = SUM1, using 2's complement arithmetic and ignoring
142 overflow. Suppose A, B and SUM have the same respective signs as A1, B1,
143 and SUM1. Then this yields nonzero if overflow occurred during the
144 addition.
146 Overflow occurs if A and B have the same sign, but A and SUM differ in
147 sign. Use `^' to test whether signs differ, and `< 0' to isolate the
148 sign. */
149 #define OVERFLOW_SUM_SIGN(a, b, sum) ((~((a) ^ (b)) & ((a) ^ (sum))) < 0)
151 /* To do constant folding on INTEGER_CST nodes requires two-word arithmetic.
152 We do that by representing the two-word integer in 4 words, with only
153 HOST_BITS_PER_WIDE_INT / 2 bits stored in each word, as a positive
154 number. The value of the word is LOWPART + HIGHPART * BASE. */
156 #define LOWPART(x) \
157 ((x) & (((unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)) - 1))
158 #define HIGHPART(x) \
159 ((unsigned HOST_WIDE_INT) (x) >> HOST_BITS_PER_WIDE_INT / 2)
160 #define BASE ((unsigned HOST_WIDE_INT) 1 << HOST_BITS_PER_WIDE_INT / 2)
162 /* Unpack a two-word integer into 4 words.
163 LOW and HI are the integer, as two `HOST_WIDE_INT' pieces.
164 WORDS points to the array of HOST_WIDE_INTs. */
166 static void
167 encode (HOST_WIDE_INT *words, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
169 words[0] = LOWPART (low);
170 words[1] = HIGHPART (low);
171 words[2] = LOWPART (hi);
172 words[3] = HIGHPART (hi);
175 /* Pack an array of 4 words into a two-word integer.
176 WORDS points to the array of words.
177 The integer is stored into *LOW and *HI as two `HOST_WIDE_INT' pieces. */
179 static void
180 decode (HOST_WIDE_INT *words, unsigned HOST_WIDE_INT *low,
181 HOST_WIDE_INT *hi)
183 *low = words[0] + words[1] * BASE;
184 *hi = words[2] + words[3] * BASE;
187 /* Make the integer constant T valid for its type by setting to 0 or 1 all
188 the bits in the constant that don't belong in the type.
190 Return 1 if a signed overflow occurs, 0 otherwise. If OVERFLOW is
191 nonzero, a signed overflow has already occurred in calculating T, so
192 propagate it. */
195 force_fit_type (tree t, int overflow)
197 unsigned HOST_WIDE_INT low;
198 HOST_WIDE_INT high;
199 unsigned int prec;
201 if (TREE_CODE (t) == REAL_CST)
203 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
204 Consider doing it via real_convert now. */
205 return overflow;
208 else if (TREE_CODE (t) != INTEGER_CST)
209 return overflow;
211 low = TREE_INT_CST_LOW (t);
212 high = TREE_INT_CST_HIGH (t);
214 if (POINTER_TYPE_P (TREE_TYPE (t))
215 || TREE_CODE (TREE_TYPE (t)) == OFFSET_TYPE)
216 prec = POINTER_SIZE;
217 else
218 prec = TYPE_PRECISION (TREE_TYPE (t));
220 /* First clear all bits that are beyond the type's precision. */
222 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
224 else if (prec > HOST_BITS_PER_WIDE_INT)
225 TREE_INT_CST_HIGH (t)
226 &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
227 else
229 TREE_INT_CST_HIGH (t) = 0;
230 if (prec < HOST_BITS_PER_WIDE_INT)
231 TREE_INT_CST_LOW (t) &= ~((unsigned HOST_WIDE_INT) (-1) << prec);
234 /* Unsigned types do not suffer sign extension or overflow unless they
235 are a sizetype. */
236 if (TYPE_UNSIGNED (TREE_TYPE (t))
237 && ! (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
238 && TYPE_IS_SIZETYPE (TREE_TYPE (t))))
239 return overflow;
241 /* If the value's sign bit is set, extend the sign. */
242 if (prec != 2 * HOST_BITS_PER_WIDE_INT
243 && (prec > HOST_BITS_PER_WIDE_INT
244 ? 0 != (TREE_INT_CST_HIGH (t)
245 & ((HOST_WIDE_INT) 1
246 << (prec - HOST_BITS_PER_WIDE_INT - 1)))
247 : 0 != (TREE_INT_CST_LOW (t)
248 & ((unsigned HOST_WIDE_INT) 1 << (prec - 1)))))
250 /* Value is negative:
251 set to 1 all the bits that are outside this type's precision. */
252 if (prec > HOST_BITS_PER_WIDE_INT)
253 TREE_INT_CST_HIGH (t)
254 |= ((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
255 else
257 TREE_INT_CST_HIGH (t) = -1;
258 if (prec < HOST_BITS_PER_WIDE_INT)
259 TREE_INT_CST_LOW (t) |= ((unsigned HOST_WIDE_INT) (-1) << prec);
263 /* Return nonzero if signed overflow occurred. */
264 return
265 ((overflow | (low ^ TREE_INT_CST_LOW (t)) | (high ^ TREE_INT_CST_HIGH (t)))
266 != 0);
269 /* Add two doubleword integers with doubleword result.
270 Each argument is given as two `HOST_WIDE_INT' pieces.
271 One argument is L1 and H1; the other, L2 and H2.
272 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
275 add_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
276 unsigned HOST_WIDE_INT l2, HOST_WIDE_INT h2,
277 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
279 unsigned HOST_WIDE_INT l;
280 HOST_WIDE_INT h;
282 l = l1 + l2;
283 h = h1 + h2 + (l < l1);
285 *lv = l;
286 *hv = h;
287 return OVERFLOW_SUM_SIGN (h1, h2, h);
290 /* Negate a doubleword integer with doubleword result.
291 Return nonzero if the operation overflows, assuming it's signed.
292 The argument is given as two `HOST_WIDE_INT' pieces in L1 and H1.
293 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
296 neg_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
297 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
299 if (l1 == 0)
301 *lv = 0;
302 *hv = - h1;
303 return (*hv & h1) < 0;
305 else
307 *lv = -l1;
308 *hv = ~h1;
309 return 0;
313 /* Multiply two doubleword integers with doubleword result.
314 Return nonzero if the operation overflows, assuming it's signed.
315 Each argument is given as two `HOST_WIDE_INT' pieces.
316 One argument is L1 and H1; the other, L2 and H2.
317 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
320 mul_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
321 unsigned HOST_WIDE_INT l2, HOST_WIDE_INT h2,
322 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
324 HOST_WIDE_INT arg1[4];
325 HOST_WIDE_INT arg2[4];
326 HOST_WIDE_INT prod[4 * 2];
327 unsigned HOST_WIDE_INT carry;
328 int i, j, k;
329 unsigned HOST_WIDE_INT toplow, neglow;
330 HOST_WIDE_INT tophigh, neghigh;
332 encode (arg1, l1, h1);
333 encode (arg2, l2, h2);
335 memset (prod, 0, sizeof prod);
337 for (i = 0; i < 4; i++)
339 carry = 0;
340 for (j = 0; j < 4; j++)
342 k = i + j;
343 /* This product is <= 0xFFFE0001, the sum <= 0xFFFF0000. */
344 carry += arg1[i] * arg2[j];
345 /* Since prod[p] < 0xFFFF, this sum <= 0xFFFFFFFF. */
346 carry += prod[k];
347 prod[k] = LOWPART (carry);
348 carry = HIGHPART (carry);
350 prod[i + 4] = carry;
353 decode (prod, lv, hv); /* This ignores prod[4] through prod[4*2-1] */
355 /* Check for overflow by calculating the top half of the answer in full;
356 it should agree with the low half's sign bit. */
357 decode (prod + 4, &toplow, &tophigh);
358 if (h1 < 0)
360 neg_double (l2, h2, &neglow, &neghigh);
361 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
363 if (h2 < 0)
365 neg_double (l1, h1, &neglow, &neghigh);
366 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
368 return (*hv < 0 ? ~(toplow & tophigh) : toplow | tophigh) != 0;
371 /* Shift the doubleword integer in L1, H1 left by COUNT places
372 keeping only PREC bits of result.
373 Shift right if COUNT is negative.
374 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
375 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
377 void
378 lshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
379 HOST_WIDE_INT count, unsigned int prec,
380 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv, int arith)
382 unsigned HOST_WIDE_INT signmask;
384 if (count < 0)
386 rshift_double (l1, h1, -count, prec, lv, hv, arith);
387 return;
390 if (SHIFT_COUNT_TRUNCATED)
391 count %= prec;
393 if (count >= 2 * HOST_BITS_PER_WIDE_INT)
395 /* Shifting by the host word size is undefined according to the
396 ANSI standard, so we must handle this as a special case. */
397 *hv = 0;
398 *lv = 0;
400 else if (count >= HOST_BITS_PER_WIDE_INT)
402 *hv = l1 << (count - HOST_BITS_PER_WIDE_INT);
403 *lv = 0;
405 else
407 *hv = (((unsigned HOST_WIDE_INT) h1 << count)
408 | (l1 >> (HOST_BITS_PER_WIDE_INT - count - 1) >> 1));
409 *lv = l1 << count;
412 /* Sign extend all bits that are beyond the precision. */
414 signmask = -((prec > HOST_BITS_PER_WIDE_INT
415 ? ((unsigned HOST_WIDE_INT) *hv
416 >> (prec - HOST_BITS_PER_WIDE_INT - 1))
417 : (*lv >> (prec - 1))) & 1);
419 if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
421 else if (prec >= HOST_BITS_PER_WIDE_INT)
423 *hv &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
424 *hv |= signmask << (prec - HOST_BITS_PER_WIDE_INT);
426 else
428 *hv = signmask;
429 *lv &= ~((unsigned HOST_WIDE_INT) (-1) << prec);
430 *lv |= signmask << prec;
434 /* Shift the doubleword integer in L1, H1 right by COUNT places
435 keeping only PREC bits of result. COUNT must be positive.
436 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
437 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
439 void
440 rshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
441 HOST_WIDE_INT count, unsigned int prec,
442 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv,
443 int arith)
445 unsigned HOST_WIDE_INT signmask;
447 signmask = (arith
448 ? -((unsigned HOST_WIDE_INT) h1 >> (HOST_BITS_PER_WIDE_INT - 1))
449 : 0);
451 if (SHIFT_COUNT_TRUNCATED)
452 count %= prec;
454 if (count >= 2 * HOST_BITS_PER_WIDE_INT)
456 /* Shifting by the host word size is undefined according to the
457 ANSI standard, so we must handle this as a special case. */
458 *hv = 0;
459 *lv = 0;
461 else if (count >= HOST_BITS_PER_WIDE_INT)
463 *hv = 0;
464 *lv = (unsigned HOST_WIDE_INT) h1 >> (count - HOST_BITS_PER_WIDE_INT);
466 else
468 *hv = (unsigned HOST_WIDE_INT) h1 >> count;
469 *lv = ((l1 >> count)
470 | ((unsigned HOST_WIDE_INT) h1 << (HOST_BITS_PER_WIDE_INT - count - 1) << 1));
473 /* Zero / sign extend all bits that are beyond the precision. */
475 if (count >= (HOST_WIDE_INT)prec)
477 *hv = signmask;
478 *lv = signmask;
480 else if ((prec - count) >= 2 * HOST_BITS_PER_WIDE_INT)
482 else if ((prec - count) >= HOST_BITS_PER_WIDE_INT)
484 *hv &= ~((HOST_WIDE_INT) (-1) << (prec - count - HOST_BITS_PER_WIDE_INT));
485 *hv |= signmask << (prec - count - HOST_BITS_PER_WIDE_INT);
487 else
489 *hv = signmask;
490 *lv &= ~((unsigned HOST_WIDE_INT) (-1) << (prec - count));
491 *lv |= signmask << (prec - count);
495 /* Rotate the doubleword integer in L1, H1 left by COUNT places
496 keeping only PREC bits of result.
497 Rotate right if COUNT is negative.
498 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
500 void
501 lrotate_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
502 HOST_WIDE_INT count, unsigned int prec,
503 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
505 unsigned HOST_WIDE_INT s1l, s2l;
506 HOST_WIDE_INT s1h, s2h;
508 count %= prec;
509 if (count < 0)
510 count += prec;
512 lshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
513 rshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
514 *lv = s1l | s2l;
515 *hv = s1h | s2h;
518 /* Rotate the doubleword integer in L1, H1 left by COUNT places
519 keeping only PREC bits of result. COUNT must be positive.
520 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
522 void
523 rrotate_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
524 HOST_WIDE_INT count, unsigned int prec,
525 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
527 unsigned HOST_WIDE_INT s1l, s2l;
528 HOST_WIDE_INT s1h, s2h;
530 count %= prec;
531 if (count < 0)
532 count += prec;
534 rshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
535 lshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
536 *lv = s1l | s2l;
537 *hv = s1h | s2h;
540 /* Divide doubleword integer LNUM, HNUM by doubleword integer LDEN, HDEN
541 for a quotient (stored in *LQUO, *HQUO) and remainder (in *LREM, *HREM).
542 CODE is a tree code for a kind of division, one of
543 TRUNC_DIV_EXPR, FLOOR_DIV_EXPR, CEIL_DIV_EXPR, ROUND_DIV_EXPR
544 or EXACT_DIV_EXPR
545 It controls how the quotient is rounded to an integer.
546 Return nonzero if the operation overflows.
547 UNS nonzero says do unsigned division. */
550 div_and_round_double (enum tree_code code, int uns,
551 unsigned HOST_WIDE_INT lnum_orig, /* num == numerator == dividend */
552 HOST_WIDE_INT hnum_orig,
553 unsigned HOST_WIDE_INT lden_orig, /* den == denominator == divisor */
554 HOST_WIDE_INT hden_orig,
555 unsigned HOST_WIDE_INT *lquo,
556 HOST_WIDE_INT *hquo, unsigned HOST_WIDE_INT *lrem,
557 HOST_WIDE_INT *hrem)
559 int quo_neg = 0;
560 HOST_WIDE_INT num[4 + 1]; /* extra element for scaling. */
561 HOST_WIDE_INT den[4], quo[4];
562 int i, j;
563 unsigned HOST_WIDE_INT work;
564 unsigned HOST_WIDE_INT carry = 0;
565 unsigned HOST_WIDE_INT lnum = lnum_orig;
566 HOST_WIDE_INT hnum = hnum_orig;
567 unsigned HOST_WIDE_INT lden = lden_orig;
568 HOST_WIDE_INT hden = hden_orig;
569 int overflow = 0;
571 if (hden == 0 && lden == 0)
572 overflow = 1, lden = 1;
574 /* Calculate quotient sign and convert operands to unsigned. */
575 if (!uns)
577 if (hnum < 0)
579 quo_neg = ~ quo_neg;
580 /* (minimum integer) / (-1) is the only overflow case. */
581 if (neg_double (lnum, hnum, &lnum, &hnum)
582 && ((HOST_WIDE_INT) lden & hden) == -1)
583 overflow = 1;
585 if (hden < 0)
587 quo_neg = ~ quo_neg;
588 neg_double (lden, hden, &lden, &hden);
592 if (hnum == 0 && hden == 0)
593 { /* single precision */
594 *hquo = *hrem = 0;
595 /* This unsigned division rounds toward zero. */
596 *lquo = lnum / lden;
597 goto finish_up;
600 if (hnum == 0)
601 { /* trivial case: dividend < divisor */
602 /* hden != 0 already checked. */
603 *hquo = *lquo = 0;
604 *hrem = hnum;
605 *lrem = lnum;
606 goto finish_up;
609 memset (quo, 0, sizeof quo);
611 memset (num, 0, sizeof num); /* to zero 9th element */
612 memset (den, 0, sizeof den);
614 encode (num, lnum, hnum);
615 encode (den, lden, hden);
617 /* Special code for when the divisor < BASE. */
618 if (hden == 0 && lden < (unsigned HOST_WIDE_INT) BASE)
620 /* hnum != 0 already checked. */
621 for (i = 4 - 1; i >= 0; i--)
623 work = num[i] + carry * BASE;
624 quo[i] = work / lden;
625 carry = work % lden;
628 else
630 /* Full double precision division,
631 with thanks to Don Knuth's "Seminumerical Algorithms". */
632 int num_hi_sig, den_hi_sig;
633 unsigned HOST_WIDE_INT quo_est, scale;
635 /* Find the highest nonzero divisor digit. */
636 for (i = 4 - 1;; i--)
637 if (den[i] != 0)
639 den_hi_sig = i;
640 break;
643 /* Insure that the first digit of the divisor is at least BASE/2.
644 This is required by the quotient digit estimation algorithm. */
646 scale = BASE / (den[den_hi_sig] + 1);
647 if (scale > 1)
648 { /* scale divisor and dividend */
649 carry = 0;
650 for (i = 0; i <= 4 - 1; i++)
652 work = (num[i] * scale) + carry;
653 num[i] = LOWPART (work);
654 carry = HIGHPART (work);
657 num[4] = carry;
658 carry = 0;
659 for (i = 0; i <= 4 - 1; i++)
661 work = (den[i] * scale) + carry;
662 den[i] = LOWPART (work);
663 carry = HIGHPART (work);
664 if (den[i] != 0) den_hi_sig = i;
668 num_hi_sig = 4;
670 /* Main loop */
671 for (i = num_hi_sig - den_hi_sig - 1; i >= 0; i--)
673 /* Guess the next quotient digit, quo_est, by dividing the first
674 two remaining dividend digits by the high order quotient digit.
675 quo_est is never low and is at most 2 high. */
676 unsigned HOST_WIDE_INT tmp;
678 num_hi_sig = i + den_hi_sig + 1;
679 work = num[num_hi_sig] * BASE + num[num_hi_sig - 1];
680 if (num[num_hi_sig] != den[den_hi_sig])
681 quo_est = work / den[den_hi_sig];
682 else
683 quo_est = BASE - 1;
685 /* Refine quo_est so it's usually correct, and at most one high. */
686 tmp = work - quo_est * den[den_hi_sig];
687 if (tmp < BASE
688 && (den[den_hi_sig - 1] * quo_est
689 > (tmp * BASE + num[num_hi_sig - 2])))
690 quo_est--;
692 /* Try QUO_EST as the quotient digit, by multiplying the
693 divisor by QUO_EST and subtracting from the remaining dividend.
694 Keep in mind that QUO_EST is the I - 1st digit. */
696 carry = 0;
697 for (j = 0; j <= den_hi_sig; j++)
699 work = quo_est * den[j] + carry;
700 carry = HIGHPART (work);
701 work = num[i + j] - LOWPART (work);
702 num[i + j] = LOWPART (work);
703 carry += HIGHPART (work) != 0;
706 /* If quo_est was high by one, then num[i] went negative and
707 we need to correct things. */
708 if (num[num_hi_sig] < (HOST_WIDE_INT) carry)
710 quo_est--;
711 carry = 0; /* add divisor back in */
712 for (j = 0; j <= den_hi_sig; j++)
714 work = num[i + j] + den[j] + carry;
715 carry = HIGHPART (work);
716 num[i + j] = LOWPART (work);
719 num [num_hi_sig] += carry;
722 /* Store the quotient digit. */
723 quo[i] = quo_est;
727 decode (quo, lquo, hquo);
729 finish_up:
730 /* If result is negative, make it so. */
731 if (quo_neg)
732 neg_double (*lquo, *hquo, lquo, hquo);
734 /* Compute trial remainder: rem = num - (quo * den) */
735 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
736 neg_double (*lrem, *hrem, lrem, hrem);
737 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
739 switch (code)
741 case TRUNC_DIV_EXPR:
742 case TRUNC_MOD_EXPR: /* round toward zero */
743 case EXACT_DIV_EXPR: /* for this one, it shouldn't matter */
744 return overflow;
746 case FLOOR_DIV_EXPR:
747 case FLOOR_MOD_EXPR: /* round toward negative infinity */
748 if (quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio < 0 && rem != 0 */
750 /* quo = quo - 1; */
751 add_double (*lquo, *hquo, (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1,
752 lquo, hquo);
754 else
755 return overflow;
756 break;
758 case CEIL_DIV_EXPR:
759 case CEIL_MOD_EXPR: /* round toward positive infinity */
760 if (!quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio > 0 && rem != 0 */
762 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
763 lquo, hquo);
765 else
766 return overflow;
767 break;
769 case ROUND_DIV_EXPR:
770 case ROUND_MOD_EXPR: /* round to closest integer */
772 unsigned HOST_WIDE_INT labs_rem = *lrem;
773 HOST_WIDE_INT habs_rem = *hrem;
774 unsigned HOST_WIDE_INT labs_den = lden, ltwice;
775 HOST_WIDE_INT habs_den = hden, htwice;
777 /* Get absolute values. */
778 if (*hrem < 0)
779 neg_double (*lrem, *hrem, &labs_rem, &habs_rem);
780 if (hden < 0)
781 neg_double (lden, hden, &labs_den, &habs_den);
783 /* If (2 * abs (lrem) >= abs (lden)) */
784 mul_double ((HOST_WIDE_INT) 2, (HOST_WIDE_INT) 0,
785 labs_rem, habs_rem, &ltwice, &htwice);
787 if (((unsigned HOST_WIDE_INT) habs_den
788 < (unsigned HOST_WIDE_INT) htwice)
789 || (((unsigned HOST_WIDE_INT) habs_den
790 == (unsigned HOST_WIDE_INT) htwice)
791 && (labs_den < ltwice)))
793 if (*hquo < 0)
794 /* quo = quo - 1; */
795 add_double (*lquo, *hquo,
796 (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1, lquo, hquo);
797 else
798 /* quo = quo + 1; */
799 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
800 lquo, hquo);
802 else
803 return overflow;
805 break;
807 default:
808 abort ();
811 /* Compute true remainder: rem = num - (quo * den) */
812 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
813 neg_double (*lrem, *hrem, lrem, hrem);
814 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
815 return overflow;
818 /* Return true if built-in mathematical function specified by CODE
819 preserves the sign of it argument, i.e. -f(x) == f(-x). */
821 static bool
822 negate_mathfn_p (enum built_in_function code)
824 switch (code)
826 case BUILT_IN_ASIN:
827 case BUILT_IN_ASINF:
828 case BUILT_IN_ASINL:
829 case BUILT_IN_ATAN:
830 case BUILT_IN_ATANF:
831 case BUILT_IN_ATANL:
832 case BUILT_IN_SIN:
833 case BUILT_IN_SINF:
834 case BUILT_IN_SINL:
835 case BUILT_IN_TAN:
836 case BUILT_IN_TANF:
837 case BUILT_IN_TANL:
838 return true;
840 default:
841 break;
843 return false;
846 /* Determine whether an expression T can be cheaply negated using
847 the function negate_expr. */
849 static bool
850 negate_expr_p (tree t)
852 unsigned HOST_WIDE_INT val;
853 unsigned int prec;
854 tree type;
856 if (t == 0)
857 return false;
859 type = TREE_TYPE (t);
861 STRIP_SIGN_NOPS (t);
862 switch (TREE_CODE (t))
864 case INTEGER_CST:
865 if (TYPE_UNSIGNED (type) || ! flag_trapv)
866 return true;
868 /* Check that -CST will not overflow type. */
869 prec = TYPE_PRECISION (type);
870 if (prec > HOST_BITS_PER_WIDE_INT)
872 if (TREE_INT_CST_LOW (t) != 0)
873 return true;
874 prec -= HOST_BITS_PER_WIDE_INT;
875 val = TREE_INT_CST_HIGH (t);
877 else
878 val = TREE_INT_CST_LOW (t);
879 if (prec < HOST_BITS_PER_WIDE_INT)
880 val &= ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
881 return val != ((unsigned HOST_WIDE_INT) 1 << (prec - 1));
883 case REAL_CST:
884 case NEGATE_EXPR:
885 return true;
887 case COMPLEX_CST:
888 return negate_expr_p (TREE_REALPART (t))
889 && negate_expr_p (TREE_IMAGPART (t));
891 case PLUS_EXPR:
892 if (FLOAT_TYPE_P (type) && !flag_unsafe_math_optimizations)
893 return false;
894 /* -(A + B) -> (-B) - A. */
895 if (negate_expr_p (TREE_OPERAND (t, 1))
896 && reorder_operands_p (TREE_OPERAND (t, 0),
897 TREE_OPERAND (t, 1)))
898 return true;
899 /* -(A + B) -> (-A) - B. */
900 return negate_expr_p (TREE_OPERAND (t, 0));
902 case MINUS_EXPR:
903 /* We can't turn -(A-B) into B-A when we honor signed zeros. */
904 return (! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
905 && reorder_operands_p (TREE_OPERAND (t, 0),
906 TREE_OPERAND (t, 1));
908 case MULT_EXPR:
909 if (TYPE_UNSIGNED (TREE_TYPE (t)))
910 break;
912 /* Fall through. */
914 case RDIV_EXPR:
915 if (! HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (TREE_TYPE (t))))
916 return negate_expr_p (TREE_OPERAND (t, 1))
917 || negate_expr_p (TREE_OPERAND (t, 0));
918 break;
920 case NOP_EXPR:
921 /* Negate -((double)float) as (double)(-float). */
922 if (TREE_CODE (type) == REAL_TYPE)
924 tree tem = strip_float_extensions (t);
925 if (tem != t)
926 return negate_expr_p (tem);
928 break;
930 case CALL_EXPR:
931 /* Negate -f(x) as f(-x). */
932 if (negate_mathfn_p (builtin_mathfn_code (t)))
933 return negate_expr_p (TREE_VALUE (TREE_OPERAND (t, 1)));
934 break;
936 case RSHIFT_EXPR:
937 /* Optimize -((int)x >> 31) into (unsigned)x >> 31. */
938 if (TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST)
940 tree op1 = TREE_OPERAND (t, 1);
941 if (TREE_INT_CST_HIGH (op1) == 0
942 && (unsigned HOST_WIDE_INT) (TYPE_PRECISION (type) - 1)
943 == TREE_INT_CST_LOW (op1))
944 return true;
946 break;
948 default:
949 break;
951 return false;
954 /* Given T, an expression, return the negation of T. Allow for T to be
955 null, in which case return null. */
957 static tree
958 negate_expr (tree t)
960 tree type;
961 tree tem;
963 if (t == 0)
964 return 0;
966 type = TREE_TYPE (t);
967 STRIP_SIGN_NOPS (t);
969 switch (TREE_CODE (t))
971 case INTEGER_CST:
972 tem = fold_negate_const (t, type);
973 if (! TREE_OVERFLOW (tem)
974 || TYPE_UNSIGNED (type)
975 || ! flag_trapv)
976 return tem;
977 break;
979 case REAL_CST:
980 tem = fold_negate_const (t, type);
981 /* Two's complement FP formats, such as c4x, may overflow. */
982 if (! TREE_OVERFLOW (tem) || ! flag_trapping_math)
983 return fold_convert (type, tem);
984 break;
986 case COMPLEX_CST:
988 tree rpart = negate_expr (TREE_REALPART (t));
989 tree ipart = negate_expr (TREE_IMAGPART (t));
991 if ((TREE_CODE (rpart) == REAL_CST
992 && TREE_CODE (ipart) == REAL_CST)
993 || (TREE_CODE (rpart) == INTEGER_CST
994 && TREE_CODE (ipart) == INTEGER_CST))
995 return build_complex (type, rpart, ipart);
997 break;
999 case NEGATE_EXPR:
1000 return fold_convert (type, TREE_OPERAND (t, 0));
1002 case PLUS_EXPR:
1003 if (! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
1005 /* -(A + B) -> (-B) - A. */
1006 if (negate_expr_p (TREE_OPERAND (t, 1))
1007 && reorder_operands_p (TREE_OPERAND (t, 0),
1008 TREE_OPERAND (t, 1)))
1010 tem = negate_expr (TREE_OPERAND (t, 1));
1011 tem = fold (build2 (MINUS_EXPR, TREE_TYPE (t),
1012 tem, TREE_OPERAND (t, 0)));
1013 return fold_convert (type, tem);
1016 /* -(A + B) -> (-A) - B. */
1017 if (negate_expr_p (TREE_OPERAND (t, 0)))
1019 tem = negate_expr (TREE_OPERAND (t, 0));
1020 tem = fold (build2 (MINUS_EXPR, TREE_TYPE (t),
1021 tem, TREE_OPERAND (t, 1)));
1022 return fold_convert (type, tem);
1025 break;
1027 case MINUS_EXPR:
1028 /* - (A - B) -> B - A */
1029 if ((! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
1030 && reorder_operands_p (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1)))
1031 return fold_convert (type,
1032 fold (build2 (MINUS_EXPR, TREE_TYPE (t),
1033 TREE_OPERAND (t, 1),
1034 TREE_OPERAND (t, 0))));
1035 break;
1037 case MULT_EXPR:
1038 if (TYPE_UNSIGNED (TREE_TYPE (t)))
1039 break;
1041 /* Fall through. */
1043 case RDIV_EXPR:
1044 if (! HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (TREE_TYPE (t))))
1046 tem = TREE_OPERAND (t, 1);
1047 if (negate_expr_p (tem))
1048 return fold_convert (type,
1049 fold (build2 (TREE_CODE (t), TREE_TYPE (t),
1050 TREE_OPERAND (t, 0),
1051 negate_expr (tem))));
1052 tem = TREE_OPERAND (t, 0);
1053 if (negate_expr_p (tem))
1054 return fold_convert (type,
1055 fold (build2 (TREE_CODE (t), TREE_TYPE (t),
1056 negate_expr (tem),
1057 TREE_OPERAND (t, 1))));
1059 break;
1061 case NOP_EXPR:
1062 /* Convert -((double)float) into (double)(-float). */
1063 if (TREE_CODE (type) == REAL_TYPE)
1065 tem = strip_float_extensions (t);
1066 if (tem != t && negate_expr_p (tem))
1067 return fold_convert (type, negate_expr (tem));
1069 break;
1071 case CALL_EXPR:
1072 /* Negate -f(x) as f(-x). */
1073 if (negate_mathfn_p (builtin_mathfn_code (t))
1074 && negate_expr_p (TREE_VALUE (TREE_OPERAND (t, 1))))
1076 tree fndecl, arg, arglist;
1078 fndecl = get_callee_fndecl (t);
1079 arg = negate_expr (TREE_VALUE (TREE_OPERAND (t, 1)));
1080 arglist = build_tree_list (NULL_TREE, arg);
1081 return build_function_call_expr (fndecl, arglist);
1083 break;
1085 case RSHIFT_EXPR:
1086 /* Optimize -((int)x >> 31) into (unsigned)x >> 31. */
1087 if (TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST)
1089 tree op1 = TREE_OPERAND (t, 1);
1090 if (TREE_INT_CST_HIGH (op1) == 0
1091 && (unsigned HOST_WIDE_INT) (TYPE_PRECISION (type) - 1)
1092 == TREE_INT_CST_LOW (op1))
1094 tree ntype = TYPE_UNSIGNED (type)
1095 ? lang_hooks.types.signed_type (type)
1096 : lang_hooks.types.unsigned_type (type);
1097 tree temp = fold_convert (ntype, TREE_OPERAND (t, 0));
1098 temp = fold (build2 (RSHIFT_EXPR, ntype, temp, op1));
1099 return fold_convert (type, temp);
1102 break;
1104 default:
1105 break;
1108 tem = fold (build1 (NEGATE_EXPR, TREE_TYPE (t), t));
1109 return fold_convert (type, tem);
1112 /* Split a tree IN into a constant, literal and variable parts that could be
1113 combined with CODE to make IN. "constant" means an expression with
1114 TREE_CONSTANT but that isn't an actual constant. CODE must be a
1115 commutative arithmetic operation. Store the constant part into *CONP,
1116 the literal in *LITP and return the variable part. If a part isn't
1117 present, set it to null. If the tree does not decompose in this way,
1118 return the entire tree as the variable part and the other parts as null.
1120 If CODE is PLUS_EXPR we also split trees that use MINUS_EXPR. In that
1121 case, we negate an operand that was subtracted. Except if it is a
1122 literal for which we use *MINUS_LITP instead.
1124 If NEGATE_P is true, we are negating all of IN, again except a literal
1125 for which we use *MINUS_LITP instead.
1127 If IN is itself a literal or constant, return it as appropriate.
1129 Note that we do not guarantee that any of the three values will be the
1130 same type as IN, but they will have the same signedness and mode. */
1132 static tree
1133 split_tree (tree in, enum tree_code code, tree *conp, tree *litp,
1134 tree *minus_litp, int negate_p)
1136 tree var = 0;
1138 *conp = 0;
1139 *litp = 0;
1140 *minus_litp = 0;
1142 /* Strip any conversions that don't change the machine mode or signedness. */
1143 STRIP_SIGN_NOPS (in);
1145 if (TREE_CODE (in) == INTEGER_CST || TREE_CODE (in) == REAL_CST)
1146 *litp = in;
1147 else if (TREE_CODE (in) == code
1148 || (! FLOAT_TYPE_P (TREE_TYPE (in))
1149 /* We can associate addition and subtraction together (even
1150 though the C standard doesn't say so) for integers because
1151 the value is not affected. For reals, the value might be
1152 affected, so we can't. */
1153 && ((code == PLUS_EXPR && TREE_CODE (in) == MINUS_EXPR)
1154 || (code == MINUS_EXPR && TREE_CODE (in) == PLUS_EXPR))))
1156 tree op0 = TREE_OPERAND (in, 0);
1157 tree op1 = TREE_OPERAND (in, 1);
1158 int neg1_p = TREE_CODE (in) == MINUS_EXPR;
1159 int neg_litp_p = 0, neg_conp_p = 0, neg_var_p = 0;
1161 /* First see if either of the operands is a literal, then a constant. */
1162 if (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST)
1163 *litp = op0, op0 = 0;
1164 else if (TREE_CODE (op1) == INTEGER_CST || TREE_CODE (op1) == REAL_CST)
1165 *litp = op1, neg_litp_p = neg1_p, op1 = 0;
1167 if (op0 != 0 && TREE_CONSTANT (op0))
1168 *conp = op0, op0 = 0;
1169 else if (op1 != 0 && TREE_CONSTANT (op1))
1170 *conp = op1, neg_conp_p = neg1_p, op1 = 0;
1172 /* If we haven't dealt with either operand, this is not a case we can
1173 decompose. Otherwise, VAR is either of the ones remaining, if any. */
1174 if (op0 != 0 && op1 != 0)
1175 var = in;
1176 else if (op0 != 0)
1177 var = op0;
1178 else
1179 var = op1, neg_var_p = neg1_p;
1181 /* Now do any needed negations. */
1182 if (neg_litp_p)
1183 *minus_litp = *litp, *litp = 0;
1184 if (neg_conp_p)
1185 *conp = negate_expr (*conp);
1186 if (neg_var_p)
1187 var = negate_expr (var);
1189 else if (TREE_CONSTANT (in))
1190 *conp = in;
1191 else
1192 var = in;
1194 if (negate_p)
1196 if (*litp)
1197 *minus_litp = *litp, *litp = 0;
1198 else if (*minus_litp)
1199 *litp = *minus_litp, *minus_litp = 0;
1200 *conp = negate_expr (*conp);
1201 var = negate_expr (var);
1204 return var;
1207 /* Re-associate trees split by the above function. T1 and T2 are either
1208 expressions to associate or null. Return the new expression, if any. If
1209 we build an operation, do it in TYPE and with CODE. */
1211 static tree
1212 associate_trees (tree t1, tree t2, enum tree_code code, tree type)
1214 if (t1 == 0)
1215 return t2;
1216 else if (t2 == 0)
1217 return t1;
1219 /* If either input is CODE, a PLUS_EXPR, or a MINUS_EXPR, don't
1220 try to fold this since we will have infinite recursion. But do
1221 deal with any NEGATE_EXPRs. */
1222 if (TREE_CODE (t1) == code || TREE_CODE (t2) == code
1223 || TREE_CODE (t1) == MINUS_EXPR || TREE_CODE (t2) == MINUS_EXPR)
1225 if (code == PLUS_EXPR)
1227 if (TREE_CODE (t1) == NEGATE_EXPR)
1228 return build2 (MINUS_EXPR, type, fold_convert (type, t2),
1229 fold_convert (type, TREE_OPERAND (t1, 0)));
1230 else if (TREE_CODE (t2) == NEGATE_EXPR)
1231 return build2 (MINUS_EXPR, type, fold_convert (type, t1),
1232 fold_convert (type, TREE_OPERAND (t2, 0)));
1234 return build2 (code, type, fold_convert (type, t1),
1235 fold_convert (type, t2));
1238 return fold (build2 (code, type, fold_convert (type, t1),
1239 fold_convert (type, t2)));
1242 /* Combine two integer constants ARG1 and ARG2 under operation CODE
1243 to produce a new constant.
1245 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1247 tree
1248 int_const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
1250 unsigned HOST_WIDE_INT int1l, int2l;
1251 HOST_WIDE_INT int1h, int2h;
1252 unsigned HOST_WIDE_INT low;
1253 HOST_WIDE_INT hi;
1254 unsigned HOST_WIDE_INT garbagel;
1255 HOST_WIDE_INT garbageh;
1256 tree t;
1257 tree type = TREE_TYPE (arg1);
1258 int uns = TYPE_UNSIGNED (type);
1259 int is_sizetype
1260 = (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type));
1261 int overflow = 0;
1262 int no_overflow = 0;
1264 int1l = TREE_INT_CST_LOW (arg1);
1265 int1h = TREE_INT_CST_HIGH (arg1);
1266 int2l = TREE_INT_CST_LOW (arg2);
1267 int2h = TREE_INT_CST_HIGH (arg2);
1269 switch (code)
1271 case BIT_IOR_EXPR:
1272 low = int1l | int2l, hi = int1h | int2h;
1273 break;
1275 case BIT_XOR_EXPR:
1276 low = int1l ^ int2l, hi = int1h ^ int2h;
1277 break;
1279 case BIT_AND_EXPR:
1280 low = int1l & int2l, hi = int1h & int2h;
1281 break;
1283 case RSHIFT_EXPR:
1284 int2l = -int2l;
1285 case LSHIFT_EXPR:
1286 /* It's unclear from the C standard whether shifts can overflow.
1287 The following code ignores overflow; perhaps a C standard
1288 interpretation ruling is needed. */
1289 lshift_double (int1l, int1h, int2l, TYPE_PRECISION (type),
1290 &low, &hi, !uns);
1291 no_overflow = 1;
1292 break;
1294 case RROTATE_EXPR:
1295 int2l = - int2l;
1296 case LROTATE_EXPR:
1297 lrotate_double (int1l, int1h, int2l, TYPE_PRECISION (type),
1298 &low, &hi);
1299 break;
1301 case PLUS_EXPR:
1302 overflow = add_double (int1l, int1h, int2l, int2h, &low, &hi);
1303 break;
1305 case MINUS_EXPR:
1306 neg_double (int2l, int2h, &low, &hi);
1307 add_double (int1l, int1h, low, hi, &low, &hi);
1308 overflow = OVERFLOW_SUM_SIGN (hi, int2h, int1h);
1309 break;
1311 case MULT_EXPR:
1312 overflow = mul_double (int1l, int1h, int2l, int2h, &low, &hi);
1313 break;
1315 case TRUNC_DIV_EXPR:
1316 case FLOOR_DIV_EXPR: case CEIL_DIV_EXPR:
1317 case EXACT_DIV_EXPR:
1318 /* This is a shortcut for a common special case. */
1319 if (int2h == 0 && (HOST_WIDE_INT) int2l > 0
1320 && ! TREE_CONSTANT_OVERFLOW (arg1)
1321 && ! TREE_CONSTANT_OVERFLOW (arg2)
1322 && int1h == 0 && (HOST_WIDE_INT) int1l >= 0)
1324 if (code == CEIL_DIV_EXPR)
1325 int1l += int2l - 1;
1327 low = int1l / int2l, hi = 0;
1328 break;
1331 /* ... fall through ... */
1333 case ROUND_DIV_EXPR:
1334 if (int2h == 0 && int2l == 1)
1336 low = int1l, hi = int1h;
1337 break;
1339 if (int1l == int2l && int1h == int2h
1340 && ! (int1l == 0 && int1h == 0))
1342 low = 1, hi = 0;
1343 break;
1345 overflow = div_and_round_double (code, uns, int1l, int1h, int2l, int2h,
1346 &low, &hi, &garbagel, &garbageh);
1347 break;
1349 case TRUNC_MOD_EXPR:
1350 case FLOOR_MOD_EXPR: case CEIL_MOD_EXPR:
1351 /* This is a shortcut for a common special case. */
1352 if (int2h == 0 && (HOST_WIDE_INT) int2l > 0
1353 && ! TREE_CONSTANT_OVERFLOW (arg1)
1354 && ! TREE_CONSTANT_OVERFLOW (arg2)
1355 && int1h == 0 && (HOST_WIDE_INT) int1l >= 0)
1357 if (code == CEIL_MOD_EXPR)
1358 int1l += int2l - 1;
1359 low = int1l % int2l, hi = 0;
1360 break;
1363 /* ... fall through ... */
1365 case ROUND_MOD_EXPR:
1366 overflow = div_and_round_double (code, uns,
1367 int1l, int1h, int2l, int2h,
1368 &garbagel, &garbageh, &low, &hi);
1369 break;
1371 case MIN_EXPR:
1372 case MAX_EXPR:
1373 if (uns)
1374 low = (((unsigned HOST_WIDE_INT) int1h
1375 < (unsigned HOST_WIDE_INT) int2h)
1376 || (((unsigned HOST_WIDE_INT) int1h
1377 == (unsigned HOST_WIDE_INT) int2h)
1378 && int1l < int2l));
1379 else
1380 low = (int1h < int2h
1381 || (int1h == int2h && int1l < int2l));
1383 if (low == (code == MIN_EXPR))
1384 low = int1l, hi = int1h;
1385 else
1386 low = int2l, hi = int2h;
1387 break;
1389 default:
1390 abort ();
1393 /* If this is for a sizetype, can be represented as one (signed)
1394 HOST_WIDE_INT word, and doesn't overflow, use size_int since it caches
1395 constants. */
1396 if (is_sizetype
1397 && ((hi == 0 && (HOST_WIDE_INT) low >= 0)
1398 || (hi == -1 && (HOST_WIDE_INT) low < 0))
1399 && overflow == 0 && ! TREE_OVERFLOW (arg1) && ! TREE_OVERFLOW (arg2))
1400 return size_int_type_wide (low, type);
1401 else
1403 t = build_int_2 (low, hi);
1404 TREE_TYPE (t) = TREE_TYPE (arg1);
1407 TREE_OVERFLOW (t)
1408 = ((notrunc
1409 ? (!uns || is_sizetype) && overflow
1410 : (force_fit_type (t, (!uns || is_sizetype) && overflow)
1411 && ! no_overflow))
1412 | TREE_OVERFLOW (arg1)
1413 | TREE_OVERFLOW (arg2));
1415 /* If we're doing a size calculation, unsigned arithmetic does overflow.
1416 So check if force_fit_type truncated the value. */
1417 if (is_sizetype
1418 && ! TREE_OVERFLOW (t)
1419 && (TREE_INT_CST_HIGH (t) != hi
1420 || TREE_INT_CST_LOW (t) != low))
1421 TREE_OVERFLOW (t) = 1;
1423 TREE_CONSTANT_OVERFLOW (t) = (TREE_OVERFLOW (t)
1424 | TREE_CONSTANT_OVERFLOW (arg1)
1425 | TREE_CONSTANT_OVERFLOW (arg2));
1426 return t;
1429 /* Combine two constants ARG1 and ARG2 under operation CODE to produce a new
1430 constant. We assume ARG1 and ARG2 have the same data type, or at least
1431 are the same kind of constant and the same machine mode.
1433 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1435 static tree
1436 const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
1438 STRIP_NOPS (arg1);
1439 STRIP_NOPS (arg2);
1441 if (TREE_CODE (arg1) == INTEGER_CST)
1442 return int_const_binop (code, arg1, arg2, notrunc);
1444 if (TREE_CODE (arg1) == REAL_CST)
1446 enum machine_mode mode;
1447 REAL_VALUE_TYPE d1;
1448 REAL_VALUE_TYPE d2;
1449 REAL_VALUE_TYPE value;
1450 tree t, type;
1452 d1 = TREE_REAL_CST (arg1);
1453 d2 = TREE_REAL_CST (arg2);
1455 type = TREE_TYPE (arg1);
1456 mode = TYPE_MODE (type);
1458 /* Don't perform operation if we honor signaling NaNs and
1459 either operand is a NaN. */
1460 if (HONOR_SNANS (mode)
1461 && (REAL_VALUE_ISNAN (d1) || REAL_VALUE_ISNAN (d2)))
1462 return NULL_TREE;
1464 /* Don't perform operation if it would raise a division
1465 by zero exception. */
1466 if (code == RDIV_EXPR
1467 && REAL_VALUES_EQUAL (d2, dconst0)
1468 && (flag_trapping_math || ! MODE_HAS_INFINITIES (mode)))
1469 return NULL_TREE;
1471 /* If either operand is a NaN, just return it. Otherwise, set up
1472 for floating-point trap; we return an overflow. */
1473 if (REAL_VALUE_ISNAN (d1))
1474 return arg1;
1475 else if (REAL_VALUE_ISNAN (d2))
1476 return arg2;
1478 REAL_ARITHMETIC (value, code, d1, d2);
1480 t = build_real (type, real_value_truncate (mode, value));
1482 TREE_OVERFLOW (t)
1483 = (force_fit_type (t, 0)
1484 | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2));
1485 TREE_CONSTANT_OVERFLOW (t)
1486 = TREE_OVERFLOW (t)
1487 | TREE_CONSTANT_OVERFLOW (arg1)
1488 | TREE_CONSTANT_OVERFLOW (arg2);
1489 return t;
1491 if (TREE_CODE (arg1) == COMPLEX_CST)
1493 tree type = TREE_TYPE (arg1);
1494 tree r1 = TREE_REALPART (arg1);
1495 tree i1 = TREE_IMAGPART (arg1);
1496 tree r2 = TREE_REALPART (arg2);
1497 tree i2 = TREE_IMAGPART (arg2);
1498 tree t;
1500 switch (code)
1502 case PLUS_EXPR:
1503 t = build_complex (type,
1504 const_binop (PLUS_EXPR, r1, r2, notrunc),
1505 const_binop (PLUS_EXPR, i1, i2, notrunc));
1506 break;
1508 case MINUS_EXPR:
1509 t = build_complex (type,
1510 const_binop (MINUS_EXPR, r1, r2, notrunc),
1511 const_binop (MINUS_EXPR, i1, i2, notrunc));
1512 break;
1514 case MULT_EXPR:
1515 t = build_complex (type,
1516 const_binop (MINUS_EXPR,
1517 const_binop (MULT_EXPR,
1518 r1, r2, notrunc),
1519 const_binop (MULT_EXPR,
1520 i1, i2, notrunc),
1521 notrunc),
1522 const_binop (PLUS_EXPR,
1523 const_binop (MULT_EXPR,
1524 r1, i2, notrunc),
1525 const_binop (MULT_EXPR,
1526 i1, r2, notrunc),
1527 notrunc));
1528 break;
1530 case RDIV_EXPR:
1532 tree magsquared
1533 = const_binop (PLUS_EXPR,
1534 const_binop (MULT_EXPR, r2, r2, notrunc),
1535 const_binop (MULT_EXPR, i2, i2, notrunc),
1536 notrunc);
1538 t = build_complex (type,
1539 const_binop
1540 (INTEGRAL_TYPE_P (TREE_TYPE (r1))
1541 ? TRUNC_DIV_EXPR : RDIV_EXPR,
1542 const_binop (PLUS_EXPR,
1543 const_binop (MULT_EXPR, r1, r2,
1544 notrunc),
1545 const_binop (MULT_EXPR, i1, i2,
1546 notrunc),
1547 notrunc),
1548 magsquared, notrunc),
1549 const_binop
1550 (INTEGRAL_TYPE_P (TREE_TYPE (r1))
1551 ? TRUNC_DIV_EXPR : RDIV_EXPR,
1552 const_binop (MINUS_EXPR,
1553 const_binop (MULT_EXPR, i1, r2,
1554 notrunc),
1555 const_binop (MULT_EXPR, r1, i2,
1556 notrunc),
1557 notrunc),
1558 magsquared, notrunc));
1560 break;
1562 default:
1563 abort ();
1565 return t;
1567 return 0;
1570 /* These are the hash table functions for the hash table of INTEGER_CST
1571 nodes of a sizetype. */
1573 /* Return the hash code code X, an INTEGER_CST. */
1575 static hashval_t
1576 size_htab_hash (const void *x)
1578 tree t = (tree) x;
1580 return (TREE_INT_CST_HIGH (t) ^ TREE_INT_CST_LOW (t)
1581 ^ htab_hash_pointer (TREE_TYPE (t))
1582 ^ (TREE_OVERFLOW (t) << 20));
1585 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1586 is the same as that given by *Y, which is the same. */
1588 static int
1589 size_htab_eq (const void *x, const void *y)
1591 tree xt = (tree) x;
1592 tree yt = (tree) y;
1594 return (TREE_INT_CST_HIGH (xt) == TREE_INT_CST_HIGH (yt)
1595 && TREE_INT_CST_LOW (xt) == TREE_INT_CST_LOW (yt)
1596 && TREE_TYPE (xt) == TREE_TYPE (yt)
1597 && TREE_OVERFLOW (xt) == TREE_OVERFLOW (yt));
1600 /* Return an INTEGER_CST with value whose low-order HOST_BITS_PER_WIDE_INT
1601 bits are given by NUMBER and of the sizetype represented by KIND. */
1603 tree
1604 size_int_wide (HOST_WIDE_INT number, enum size_type_kind kind)
1606 return size_int_type_wide (number, sizetype_tab[(int) kind]);
1609 /* Likewise, but the desired type is specified explicitly. */
1611 static GTY (()) tree new_const;
1612 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
1613 htab_t size_htab;
1615 tree
1616 size_int_type_wide (HOST_WIDE_INT number, tree type)
1618 void **slot;
1620 if (size_htab == 0)
1622 size_htab = htab_create_ggc (1024, size_htab_hash, size_htab_eq, NULL);
1623 new_const = make_node (INTEGER_CST);
1626 /* Adjust NEW_CONST to be the constant we want. If it's already in the
1627 hash table, we return the value from the hash table. Otherwise, we
1628 place that in the hash table and make a new node for the next time. */
1629 TREE_INT_CST_LOW (new_const) = number;
1630 TREE_INT_CST_HIGH (new_const) = number < 0 ? -1 : 0;
1631 TREE_TYPE (new_const) = type;
1632 TREE_OVERFLOW (new_const) = TREE_CONSTANT_OVERFLOW (new_const)
1633 = force_fit_type (new_const, 0);
1635 slot = htab_find_slot (size_htab, new_const, INSERT);
1636 if (*slot == 0)
1638 tree t = new_const;
1640 *slot = new_const;
1641 new_const = make_node (INTEGER_CST);
1642 return t;
1644 else
1645 return (tree) *slot;
1648 /* Combine operands OP1 and OP2 with arithmetic operation CODE. CODE
1649 is a tree code. The type of the result is taken from the operands.
1650 Both must be the same type integer type and it must be a size type.
1651 If the operands are constant, so is the result. */
1653 tree
1654 size_binop (enum tree_code code, tree arg0, tree arg1)
1656 tree type = TREE_TYPE (arg0);
1658 if (TREE_CODE (type) != INTEGER_TYPE || ! TYPE_IS_SIZETYPE (type)
1659 || type != TREE_TYPE (arg1))
1660 abort ();
1662 /* Handle the special case of two integer constants faster. */
1663 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
1665 /* And some specific cases even faster than that. */
1666 if (code == PLUS_EXPR && integer_zerop (arg0))
1667 return arg1;
1668 else if ((code == MINUS_EXPR || code == PLUS_EXPR)
1669 && integer_zerop (arg1))
1670 return arg0;
1671 else if (code == MULT_EXPR && integer_onep (arg0))
1672 return arg1;
1674 /* Handle general case of two integer constants. */
1675 return int_const_binop (code, arg0, arg1, 0);
1678 if (arg0 == error_mark_node || arg1 == error_mark_node)
1679 return error_mark_node;
1681 return fold (build2 (code, type, arg0, arg1));
1684 /* Given two values, either both of sizetype or both of bitsizetype,
1685 compute the difference between the two values. Return the value
1686 in signed type corresponding to the type of the operands. */
1688 tree
1689 size_diffop (tree arg0, tree arg1)
1691 tree type = TREE_TYPE (arg0);
1692 tree ctype;
1694 if (TREE_CODE (type) != INTEGER_TYPE || ! TYPE_IS_SIZETYPE (type)
1695 || type != TREE_TYPE (arg1))
1696 abort ();
1698 /* If the type is already signed, just do the simple thing. */
1699 if (!TYPE_UNSIGNED (type))
1700 return size_binop (MINUS_EXPR, arg0, arg1);
1702 ctype = (type == bitsizetype || type == ubitsizetype
1703 ? sbitsizetype : ssizetype);
1705 /* If either operand is not a constant, do the conversions to the signed
1706 type and subtract. The hardware will do the right thing with any
1707 overflow in the subtraction. */
1708 if (TREE_CODE (arg0) != INTEGER_CST || TREE_CODE (arg1) != INTEGER_CST)
1709 return size_binop (MINUS_EXPR, fold_convert (ctype, arg0),
1710 fold_convert (ctype, arg1));
1712 /* If ARG0 is larger than ARG1, subtract and return the result in CTYPE.
1713 Otherwise, subtract the other way, convert to CTYPE (we know that can't
1714 overflow) and negate (which can't either). Special-case a result
1715 of zero while we're here. */
1716 if (tree_int_cst_equal (arg0, arg1))
1717 return fold_convert (ctype, integer_zero_node);
1718 else if (tree_int_cst_lt (arg1, arg0))
1719 return fold_convert (ctype, size_binop (MINUS_EXPR, arg0, arg1));
1720 else
1721 return size_binop (MINUS_EXPR, fold_convert (ctype, integer_zero_node),
1722 fold_convert (ctype, size_binop (MINUS_EXPR,
1723 arg1, arg0)));
1727 /* Attempt to fold type conversion operation CODE of expression ARG1 to
1728 type TYPE. If no simplification can be done return NULL_TREE. */
1730 static tree
1731 fold_convert_const (enum tree_code code, tree type, tree arg1)
1733 int overflow = 0;
1734 tree t;
1736 if (TREE_TYPE (arg1) == type)
1737 return arg1;
1739 if (POINTER_TYPE_P (type) || INTEGRAL_TYPE_P (type))
1741 if (TREE_CODE (arg1) == INTEGER_CST)
1743 /* If we would build a constant wider than GCC supports,
1744 leave the conversion unfolded. */
1745 if (TYPE_PRECISION (type) > 2 * HOST_BITS_PER_WIDE_INT)
1746 return NULL_TREE;
1748 /* If we are trying to make a sizetype for a small integer, use
1749 size_int to pick up cached types to reduce duplicate nodes. */
1750 if (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type)
1751 && !TREE_CONSTANT_OVERFLOW (arg1)
1752 && compare_tree_int (arg1, 10000) < 0)
1753 return size_int_type_wide (TREE_INT_CST_LOW (arg1), type);
1755 /* Given an integer constant, make new constant with new type,
1756 appropriately sign-extended or truncated. */
1757 t = build_int_2 (TREE_INT_CST_LOW (arg1),
1758 TREE_INT_CST_HIGH (arg1));
1759 TREE_TYPE (t) = type;
1760 /* Indicate an overflow if (1) ARG1 already overflowed,
1761 or (2) force_fit_type indicates an overflow.
1762 Tell force_fit_type that an overflow has already occurred
1763 if ARG1 is a too-large unsigned value and T is signed.
1764 But don't indicate an overflow if converting a pointer. */
1765 TREE_OVERFLOW (t)
1766 = ((force_fit_type (t,
1767 (TREE_INT_CST_HIGH (arg1) < 0
1768 && (TYPE_UNSIGNED (type)
1769 < TYPE_UNSIGNED (TREE_TYPE (arg1)))))
1770 && ! POINTER_TYPE_P (TREE_TYPE (arg1)))
1771 || TREE_OVERFLOW (arg1));
1772 TREE_CONSTANT_OVERFLOW (t)
1773 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1774 return t;
1776 else if (TREE_CODE (arg1) == REAL_CST)
1778 /* The following code implements the floating point to integer
1779 conversion rules required by the Java Language Specification,
1780 that IEEE NaNs are mapped to zero and values that overflow
1781 the target precision saturate, i.e. values greater than
1782 INT_MAX are mapped to INT_MAX, and values less than INT_MIN
1783 are mapped to INT_MIN. These semantics are allowed by the
1784 C and C++ standards that simply state that the behavior of
1785 FP-to-integer conversion is unspecified upon overflow. */
1787 HOST_WIDE_INT high, low;
1789 REAL_VALUE_TYPE r;
1790 REAL_VALUE_TYPE x = TREE_REAL_CST (arg1);
1792 switch (code)
1794 case FIX_TRUNC_EXPR:
1795 real_trunc (&r, VOIDmode, &x);
1796 break;
1798 case FIX_CEIL_EXPR:
1799 real_ceil (&r, VOIDmode, &x);
1800 break;
1802 case FIX_FLOOR_EXPR:
1803 real_floor (&r, VOIDmode, &x);
1804 break;
1806 case FIX_ROUND_EXPR:
1807 real_round (&r, VOIDmode, &x);
1808 break;
1810 default:
1811 abort ();
1814 /* If R is NaN, return zero and show we have an overflow. */
1815 if (REAL_VALUE_ISNAN (r))
1817 overflow = 1;
1818 high = 0;
1819 low = 0;
1822 /* See if R is less than the lower bound or greater than the
1823 upper bound. */
1825 if (! overflow)
1827 tree lt = TYPE_MIN_VALUE (type);
1828 REAL_VALUE_TYPE l = real_value_from_int_cst (NULL_TREE, lt);
1829 if (REAL_VALUES_LESS (r, l))
1831 overflow = 1;
1832 high = TREE_INT_CST_HIGH (lt);
1833 low = TREE_INT_CST_LOW (lt);
1837 if (! overflow)
1839 tree ut = TYPE_MAX_VALUE (type);
1840 if (ut)
1842 REAL_VALUE_TYPE u = real_value_from_int_cst (NULL_TREE, ut);
1843 if (REAL_VALUES_LESS (u, r))
1845 overflow = 1;
1846 high = TREE_INT_CST_HIGH (ut);
1847 low = TREE_INT_CST_LOW (ut);
1852 if (! overflow)
1853 REAL_VALUE_TO_INT (&low, &high, r);
1855 t = build_int_2 (low, high);
1856 TREE_TYPE (t) = type;
1857 TREE_OVERFLOW (t)
1858 = TREE_OVERFLOW (arg1) | force_fit_type (t, overflow);
1859 TREE_CONSTANT_OVERFLOW (t)
1860 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1861 return t;
1864 else if (TREE_CODE (type) == REAL_TYPE)
1866 if (TREE_CODE (arg1) == INTEGER_CST)
1867 return build_real_from_int_cst (type, arg1);
1868 if (TREE_CODE (arg1) == REAL_CST)
1870 if (REAL_VALUE_ISNAN (TREE_REAL_CST (arg1)))
1872 /* We make a copy of ARG1 so that we don't modify an
1873 existing constant tree. */
1874 t = copy_node (arg1);
1875 TREE_TYPE (t) = type;
1876 return t;
1879 t = build_real (type,
1880 real_value_truncate (TYPE_MODE (type),
1881 TREE_REAL_CST (arg1)));
1883 TREE_OVERFLOW (t)
1884 = TREE_OVERFLOW (arg1) | force_fit_type (t, 0);
1885 TREE_CONSTANT_OVERFLOW (t)
1886 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1887 return t;
1890 return NULL_TREE;
1893 /* Convert expression ARG to type TYPE. Used by the middle-end for
1894 simple conversions in preference to calling the front-end's convert. */
1896 tree
1897 fold_convert (tree type, tree arg)
1899 tree orig = TREE_TYPE (arg);
1900 tree tem;
1902 if (type == orig)
1903 return arg;
1905 if (TREE_CODE (arg) == ERROR_MARK
1906 || TREE_CODE (type) == ERROR_MARK
1907 || TREE_CODE (orig) == ERROR_MARK)
1908 return error_mark_node;
1910 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (orig)
1911 || lang_hooks.types_compatible_p (TYPE_MAIN_VARIANT (type),
1912 TYPE_MAIN_VARIANT (orig)))
1913 return fold (build1 (NOP_EXPR, type, arg));
1915 if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type)
1916 || TREE_CODE (type) == OFFSET_TYPE)
1918 if (TREE_CODE (arg) == INTEGER_CST)
1920 tem = fold_convert_const (NOP_EXPR, type, arg);
1921 if (tem != NULL_TREE)
1922 return tem;
1924 if (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
1925 || TREE_CODE (orig) == OFFSET_TYPE)
1926 return fold (build1 (NOP_EXPR, type, arg));
1927 if (TREE_CODE (orig) == COMPLEX_TYPE)
1929 tem = fold (build1 (REALPART_EXPR, TREE_TYPE (orig), arg));
1930 return fold_convert (type, tem);
1932 if (TREE_CODE (orig) == VECTOR_TYPE
1933 && GET_MODE_SIZE (TYPE_MODE (type))
1934 == GET_MODE_SIZE (TYPE_MODE (orig)))
1935 return fold (build1 (NOP_EXPR, type, arg));
1937 else if (TREE_CODE (type) == REAL_TYPE)
1939 if (TREE_CODE (arg) == INTEGER_CST)
1941 tem = fold_convert_const (FLOAT_EXPR, type, arg);
1942 if (tem != NULL_TREE)
1943 return tem;
1945 else if (TREE_CODE (arg) == REAL_CST)
1947 tem = fold_convert_const (NOP_EXPR, type, arg);
1948 if (tem != NULL_TREE)
1949 return tem;
1952 if (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig))
1953 return fold (build1 (FLOAT_EXPR, type, arg));
1954 if (TREE_CODE (orig) == REAL_TYPE)
1955 return fold (build1 (flag_float_store ? CONVERT_EXPR : NOP_EXPR,
1956 type, arg));
1957 if (TREE_CODE (orig) == COMPLEX_TYPE)
1959 tem = fold (build1 (REALPART_EXPR, TREE_TYPE (orig), arg));
1960 return fold_convert (type, tem);
1963 else if (TREE_CODE (type) == COMPLEX_TYPE)
1965 if (INTEGRAL_TYPE_P (orig)
1966 || POINTER_TYPE_P (orig)
1967 || TREE_CODE (orig) == REAL_TYPE)
1968 return build2 (COMPLEX_EXPR, type,
1969 fold_convert (TREE_TYPE (type), arg),
1970 fold_convert (TREE_TYPE (type), integer_zero_node));
1971 if (TREE_CODE (orig) == COMPLEX_TYPE)
1973 tree rpart, ipart;
1975 if (TREE_CODE (arg) == COMPLEX_EXPR)
1977 rpart = fold_convert (TREE_TYPE (type), TREE_OPERAND (arg, 0));
1978 ipart = fold_convert (TREE_TYPE (type), TREE_OPERAND (arg, 1));
1979 return fold (build2 (COMPLEX_EXPR, type, rpart, ipart));
1982 arg = save_expr (arg);
1983 rpart = fold (build1 (REALPART_EXPR, TREE_TYPE (orig), arg));
1984 ipart = fold (build1 (IMAGPART_EXPR, TREE_TYPE (orig), arg));
1985 rpart = fold_convert (TREE_TYPE (type), rpart);
1986 ipart = fold_convert (TREE_TYPE (type), ipart);
1987 return fold (build2 (COMPLEX_EXPR, type, rpart, ipart));
1990 else if (TREE_CODE (type) == VECTOR_TYPE)
1992 if ((INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig))
1993 && GET_MODE_SIZE (TYPE_MODE (type))
1994 == GET_MODE_SIZE (TYPE_MODE (orig)))
1995 return fold (build1 (NOP_EXPR, type, arg));
1996 if (TREE_CODE (orig) == VECTOR_TYPE
1997 && GET_MODE_SIZE (TYPE_MODE (type))
1998 == GET_MODE_SIZE (TYPE_MODE (orig)))
1999 return fold (build1 (NOP_EXPR, type, arg));
2001 else if (VOID_TYPE_P (type))
2002 return fold (build1 (CONVERT_EXPR, type, arg));
2003 abort ();
2006 /* Return an expr equal to X but certainly not valid as an lvalue. */
2008 tree
2009 non_lvalue (tree x)
2011 /* We only need to wrap lvalue tree codes. */
2012 switch (TREE_CODE (x))
2014 case VAR_DECL:
2015 case PARM_DECL:
2016 case RESULT_DECL:
2017 case LABEL_DECL:
2018 case FUNCTION_DECL:
2019 case SSA_NAME:
2021 case COMPONENT_REF:
2022 case INDIRECT_REF:
2023 case ARRAY_REF:
2024 case ARRAY_RANGE_REF:
2025 case BIT_FIELD_REF:
2026 case OBJ_TYPE_REF:
2028 case REALPART_EXPR:
2029 case IMAGPART_EXPR:
2030 case PREINCREMENT_EXPR:
2031 case PREDECREMENT_EXPR:
2032 case SAVE_EXPR:
2033 case UNSAVE_EXPR:
2034 case TRY_CATCH_EXPR:
2035 case WITH_CLEANUP_EXPR:
2036 case COMPOUND_EXPR:
2037 case MODIFY_EXPR:
2038 case TARGET_EXPR:
2039 case COND_EXPR:
2040 case BIND_EXPR:
2041 case MIN_EXPR:
2042 case MAX_EXPR:
2043 break;
2045 default:
2046 /* Assume the worst for front-end tree codes. */
2047 if ((int)TREE_CODE (x) >= NUM_TREE_CODES)
2048 break;
2049 return x;
2051 return build1 (NON_LVALUE_EXPR, TREE_TYPE (x), x);
2054 /* Nonzero means lvalues are limited to those valid in pedantic ANSI C.
2055 Zero means allow extended lvalues. */
2057 int pedantic_lvalues;
2059 /* When pedantic, return an expr equal to X but certainly not valid as a
2060 pedantic lvalue. Otherwise, return X. */
2062 tree
2063 pedantic_non_lvalue (tree x)
2065 if (pedantic_lvalues)
2066 return non_lvalue (x);
2067 else
2068 return x;
2071 /* Given a tree comparison code, return the code that is the logical inverse
2072 of the given code. It is not safe to do this for floating-point
2073 comparisons, except for NE_EXPR and EQ_EXPR, so we receive a machine mode
2074 as well: if reversing the comparison is unsafe, return ERROR_MARK. */
2076 static enum tree_code
2077 invert_tree_comparison (enum tree_code code, bool honor_nans)
2079 if (honor_nans && flag_trapping_math)
2080 return ERROR_MARK;
2082 switch (code)
2084 case EQ_EXPR:
2085 return NE_EXPR;
2086 case NE_EXPR:
2087 return EQ_EXPR;
2088 case GT_EXPR:
2089 return honor_nans ? UNLE_EXPR : LE_EXPR;
2090 case GE_EXPR:
2091 return honor_nans ? UNLT_EXPR : LT_EXPR;
2092 case LT_EXPR:
2093 return honor_nans ? UNGE_EXPR : GE_EXPR;
2094 case LE_EXPR:
2095 return honor_nans ? UNGT_EXPR : GT_EXPR;
2096 case LTGT_EXPR:
2097 return UNEQ_EXPR;
2098 case UNEQ_EXPR:
2099 return LTGT_EXPR;
2100 case UNGT_EXPR:
2101 return LE_EXPR;
2102 case UNGE_EXPR:
2103 return LT_EXPR;
2104 case UNLT_EXPR:
2105 return GE_EXPR;
2106 case UNLE_EXPR:
2107 return GT_EXPR;
2108 case ORDERED_EXPR:
2109 return UNORDERED_EXPR;
2110 case UNORDERED_EXPR:
2111 return ORDERED_EXPR;
2112 default:
2113 abort ();
2117 /* Similar, but return the comparison that results if the operands are
2118 swapped. This is safe for floating-point. */
2120 enum tree_code
2121 swap_tree_comparison (enum tree_code code)
2123 switch (code)
2125 case EQ_EXPR:
2126 case NE_EXPR:
2127 return code;
2128 case GT_EXPR:
2129 return LT_EXPR;
2130 case GE_EXPR:
2131 return LE_EXPR;
2132 case LT_EXPR:
2133 return GT_EXPR;
2134 case LE_EXPR:
2135 return GE_EXPR;
2136 default:
2137 abort ();
2142 /* Convert a comparison tree code from an enum tree_code representation
2143 into a compcode bit-based encoding. This function is the inverse of
2144 compcode_to_comparison. */
2146 static enum comparison_code
2147 comparison_to_compcode (enum tree_code code)
2149 switch (code)
2151 case LT_EXPR:
2152 return COMPCODE_LT;
2153 case EQ_EXPR:
2154 return COMPCODE_EQ;
2155 case LE_EXPR:
2156 return COMPCODE_LE;
2157 case GT_EXPR:
2158 return COMPCODE_GT;
2159 case NE_EXPR:
2160 return COMPCODE_NE;
2161 case GE_EXPR:
2162 return COMPCODE_GE;
2163 case ORDERED_EXPR:
2164 return COMPCODE_ORD;
2165 case UNORDERED_EXPR:
2166 return COMPCODE_UNORD;
2167 case UNLT_EXPR:
2168 return COMPCODE_UNLT;
2169 case UNEQ_EXPR:
2170 return COMPCODE_UNEQ;
2171 case UNLE_EXPR:
2172 return COMPCODE_UNLE;
2173 case UNGT_EXPR:
2174 return COMPCODE_UNGT;
2175 case LTGT_EXPR:
2176 return COMPCODE_LTGT;
2177 case UNGE_EXPR:
2178 return COMPCODE_UNGE;
2179 default:
2180 abort ();
2184 /* Convert a compcode bit-based encoding of a comparison operator back
2185 to GCC's enum tree_code representation. This function is the
2186 inverse of comparison_to_compcode. */
2188 static enum tree_code
2189 compcode_to_comparison (enum comparison_code code)
2191 switch (code)
2193 case COMPCODE_LT:
2194 return LT_EXPR;
2195 case COMPCODE_EQ:
2196 return EQ_EXPR;
2197 case COMPCODE_LE:
2198 return LE_EXPR;
2199 case COMPCODE_GT:
2200 return GT_EXPR;
2201 case COMPCODE_NE:
2202 return NE_EXPR;
2203 case COMPCODE_GE:
2204 return GE_EXPR;
2205 case COMPCODE_ORD:
2206 return ORDERED_EXPR;
2207 case COMPCODE_UNORD:
2208 return UNORDERED_EXPR;
2209 case COMPCODE_UNLT:
2210 return UNLT_EXPR;
2211 case COMPCODE_UNEQ:
2212 return UNEQ_EXPR;
2213 case COMPCODE_UNLE:
2214 return UNLE_EXPR;
2215 case COMPCODE_UNGT:
2216 return UNGT_EXPR;
2217 case COMPCODE_LTGT:
2218 return LTGT_EXPR;
2219 case COMPCODE_UNGE:
2220 return UNGE_EXPR;
2221 default:
2222 abort ();
2226 /* Return a tree for the comparison which is the combination of
2227 doing the AND or OR (depending on CODE) of the two operations LCODE
2228 and RCODE on the identical operands LL_ARG and LR_ARG. Take into account
2229 the possibility of trapping if the mode has NaNs, and return NULL_TREE
2230 if this makes the transformation invalid. */
2232 tree
2233 combine_comparisons (enum tree_code code, enum tree_code lcode,
2234 enum tree_code rcode, tree truth_type,
2235 tree ll_arg, tree lr_arg)
2237 bool honor_nans = HONOR_NANS (TYPE_MODE (TREE_TYPE (ll_arg)));
2238 enum comparison_code lcompcode = comparison_to_compcode (lcode);
2239 enum comparison_code rcompcode = comparison_to_compcode (rcode);
2240 enum comparison_code compcode;
2242 switch (code)
2244 case TRUTH_AND_EXPR: case TRUTH_ANDIF_EXPR:
2245 compcode = lcompcode & rcompcode;
2246 break;
2248 case TRUTH_OR_EXPR: case TRUTH_ORIF_EXPR:
2249 compcode = lcompcode | rcompcode;
2250 break;
2252 default:
2253 return NULL_TREE;
2256 if (!honor_nans)
2258 /* Eliminate unordered comparisons, as well as LTGT and ORD
2259 which are not used unless the mode has NaNs. */
2260 compcode &= ~COMPCODE_UNORD;
2261 if (compcode == COMPCODE_LTGT)
2262 compcode = COMPCODE_NE;
2263 else if (compcode == COMPCODE_ORD)
2264 compcode = COMPCODE_TRUE;
2266 else if (flag_trapping_math)
2268 /* Check that the original operation and the optimized ones will trap
2269 under the same condition. */
2270 bool ltrap = (lcompcode & COMPCODE_UNORD) == 0
2271 && (lcompcode != COMPCODE_EQ)
2272 && (lcompcode != COMPCODE_ORD);
2273 bool rtrap = (rcompcode & COMPCODE_UNORD) == 0
2274 && (rcompcode != COMPCODE_EQ)
2275 && (rcompcode != COMPCODE_ORD);
2276 bool trap = (compcode & COMPCODE_UNORD) == 0
2277 && (compcode != COMPCODE_EQ)
2278 && (compcode != COMPCODE_ORD);
2280 /* In a short-circuited boolean expression the LHS might be
2281 such that the RHS, if evaluated, will never trap. For
2282 example, in ORD (x, y) && (x < y), we evaluate the RHS only
2283 if neither x nor y is NaN. (This is a mixed blessing: for
2284 example, the expression above will never trap, hence
2285 optimizing it to x < y would be invalid). */
2286 if ((code == TRUTH_ORIF_EXPR && (lcompcode & COMPCODE_UNORD))
2287 || (code == TRUTH_ANDIF_EXPR && !(lcompcode & COMPCODE_UNORD)))
2288 rtrap = false;
2290 /* If the comparison was short-circuited, and only the RHS
2291 trapped, we may now generate a spurious trap. */
2292 if (rtrap && !ltrap
2293 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2294 return NULL_TREE;
2296 /* If we changed the conditions that cause a trap, we lose. */
2297 if ((ltrap || rtrap) != trap)
2298 return NULL_TREE;
2301 if (compcode == COMPCODE_TRUE)
2302 return constant_boolean_node (true, truth_type);
2303 else if (compcode == COMPCODE_FALSE)
2304 return constant_boolean_node (false, truth_type);
2305 else
2306 return fold (build2 (compcode_to_comparison (compcode),
2307 truth_type, ll_arg, lr_arg));
2310 /* Return nonzero if CODE is a tree code that represents a truth value. */
2312 static int
2313 truth_value_p (enum tree_code code)
2315 return (TREE_CODE_CLASS (code) == '<'
2316 || code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
2317 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
2318 || code == TRUTH_XOR_EXPR || code == TRUTH_NOT_EXPR);
2321 /* Return nonzero if two operands (typically of the same tree node)
2322 are necessarily equal. If either argument has side-effects this
2323 function returns zero. FLAGS modifies behavior as follows:
2325 If OEP_ONLY_CONST is set, only return nonzero for constants.
2326 This function tests whether the operands are indistinguishable;
2327 it does not test whether they are equal using C's == operation.
2328 The distinction is important for IEEE floating point, because
2329 (1) -0.0 and 0.0 are distinguishable, but -0.0==0.0, and
2330 (2) two NaNs may be indistinguishable, but NaN!=NaN.
2332 If OEP_ONLY_CONST is unset, a VAR_DECL is considered equal to itself
2333 even though it may hold multiple values during a function.
2334 This is because a GCC tree node guarantees that nothing else is
2335 executed between the evaluation of its "operands" (which may often
2336 be evaluated in arbitrary order). Hence if the operands themselves
2337 don't side-effect, the VAR_DECLs, PARM_DECLs etc... must hold the
2338 same value in each operand/subexpression. Hence leaving OEP_ONLY_CONST
2339 unset means assuming isochronic (or instantaneous) tree equivalence.
2340 Unless comparing arbitrary expression trees, such as from different
2341 statements, this flag can usually be left unset.
2343 If OEP_PURE_SAME is set, then pure functions with identical arguments
2344 are considered the same. It is used when the caller has other ways
2345 to ensure that global memory is unchanged in between. */
2348 operand_equal_p (tree arg0, tree arg1, unsigned int flags)
2350 /* If either is ERROR_MARK, they aren't equal. */
2351 if (TREE_CODE (arg0) == ERROR_MARK || TREE_CODE (arg1) == ERROR_MARK)
2352 return 0;
2354 /* If both types don't have the same signedness, then we can't consider
2355 them equal. We must check this before the STRIP_NOPS calls
2356 because they may change the signedness of the arguments. */
2357 if (TYPE_UNSIGNED (TREE_TYPE (arg0)) != TYPE_UNSIGNED (TREE_TYPE (arg1)))
2358 return 0;
2360 STRIP_NOPS (arg0);
2361 STRIP_NOPS (arg1);
2363 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2364 /* This is needed for conversions and for COMPONENT_REF.
2365 Might as well play it safe and always test this. */
2366 || TREE_CODE (TREE_TYPE (arg0)) == ERROR_MARK
2367 || TREE_CODE (TREE_TYPE (arg1)) == ERROR_MARK
2368 || TYPE_MODE (TREE_TYPE (arg0)) != TYPE_MODE (TREE_TYPE (arg1)))
2369 return 0;
2371 /* If ARG0 and ARG1 are the same SAVE_EXPR, they are necessarily equal.
2372 We don't care about side effects in that case because the SAVE_EXPR
2373 takes care of that for us. In all other cases, two expressions are
2374 equal if they have no side effects. If we have two identical
2375 expressions with side effects that should be treated the same due
2376 to the only side effects being identical SAVE_EXPR's, that will
2377 be detected in the recursive calls below. */
2378 if (arg0 == arg1 && ! (flags & OEP_ONLY_CONST)
2379 && (TREE_CODE (arg0) == SAVE_EXPR
2380 || (! TREE_SIDE_EFFECTS (arg0) && ! TREE_SIDE_EFFECTS (arg1))))
2381 return 1;
2383 /* Next handle constant cases, those for which we can return 1 even
2384 if ONLY_CONST is set. */
2385 if (TREE_CONSTANT (arg0) && TREE_CONSTANT (arg1))
2386 switch (TREE_CODE (arg0))
2388 case INTEGER_CST:
2389 return (! TREE_CONSTANT_OVERFLOW (arg0)
2390 && ! TREE_CONSTANT_OVERFLOW (arg1)
2391 && tree_int_cst_equal (arg0, arg1));
2393 case REAL_CST:
2394 return (! TREE_CONSTANT_OVERFLOW (arg0)
2395 && ! TREE_CONSTANT_OVERFLOW (arg1)
2396 && REAL_VALUES_IDENTICAL (TREE_REAL_CST (arg0),
2397 TREE_REAL_CST (arg1)));
2399 case VECTOR_CST:
2401 tree v1, v2;
2403 if (TREE_CONSTANT_OVERFLOW (arg0)
2404 || TREE_CONSTANT_OVERFLOW (arg1))
2405 return 0;
2407 v1 = TREE_VECTOR_CST_ELTS (arg0);
2408 v2 = TREE_VECTOR_CST_ELTS (arg1);
2409 while (v1 && v2)
2411 if (!operand_equal_p (TREE_VALUE (v1), TREE_VALUE (v2),
2412 flags))
2413 return 0;
2414 v1 = TREE_CHAIN (v1);
2415 v2 = TREE_CHAIN (v2);
2418 return 1;
2421 case COMPLEX_CST:
2422 return (operand_equal_p (TREE_REALPART (arg0), TREE_REALPART (arg1),
2423 flags)
2424 && operand_equal_p (TREE_IMAGPART (arg0), TREE_IMAGPART (arg1),
2425 flags));
2427 case STRING_CST:
2428 return (TREE_STRING_LENGTH (arg0) == TREE_STRING_LENGTH (arg1)
2429 && ! memcmp (TREE_STRING_POINTER (arg0),
2430 TREE_STRING_POINTER (arg1),
2431 TREE_STRING_LENGTH (arg0)));
2433 case ADDR_EXPR:
2434 return operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0),
2436 default:
2437 break;
2440 if (flags & OEP_ONLY_CONST)
2441 return 0;
2443 switch (TREE_CODE_CLASS (TREE_CODE (arg0)))
2445 case '1':
2446 /* Two conversions are equal only if signedness and modes match. */
2447 if ((TREE_CODE (arg0) == NOP_EXPR || TREE_CODE (arg0) == CONVERT_EXPR)
2448 && (TYPE_UNSIGNED (TREE_TYPE (arg0))
2449 != TYPE_UNSIGNED (TREE_TYPE (arg1))))
2450 return 0;
2452 return operand_equal_p (TREE_OPERAND (arg0, 0),
2453 TREE_OPERAND (arg1, 0), flags);
2455 case '<':
2456 case '2':
2457 if (operand_equal_p (TREE_OPERAND (arg0, 0),
2458 TREE_OPERAND (arg1, 0), flags)
2459 && operand_equal_p (TREE_OPERAND (arg0, 1),
2460 TREE_OPERAND (arg1, 1), flags))
2461 return 1;
2463 /* For commutative ops, allow the other order. */
2464 return (commutative_tree_code (TREE_CODE (arg0))
2465 && operand_equal_p (TREE_OPERAND (arg0, 0),
2466 TREE_OPERAND (arg1, 1), flags)
2467 && operand_equal_p (TREE_OPERAND (arg0, 1),
2468 TREE_OPERAND (arg1, 0), flags));
2470 case 'r':
2471 /* If either of the pointer (or reference) expressions we are
2472 dereferencing contain a side effect, these cannot be equal. */
2473 if (TREE_SIDE_EFFECTS (arg0)
2474 || TREE_SIDE_EFFECTS (arg1))
2475 return 0;
2477 switch (TREE_CODE (arg0))
2479 case INDIRECT_REF:
2480 case REALPART_EXPR:
2481 case IMAGPART_EXPR:
2482 return operand_equal_p (TREE_OPERAND (arg0, 0),
2483 TREE_OPERAND (arg1, 0), flags);
2485 case COMPONENT_REF:
2486 case ARRAY_REF:
2487 case ARRAY_RANGE_REF:
2488 return (operand_equal_p (TREE_OPERAND (arg0, 0),
2489 TREE_OPERAND (arg1, 0), flags)
2490 && operand_equal_p (TREE_OPERAND (arg0, 1),
2491 TREE_OPERAND (arg1, 1), flags));
2493 case BIT_FIELD_REF:
2494 return (operand_equal_p (TREE_OPERAND (arg0, 0),
2495 TREE_OPERAND (arg1, 0), flags)
2496 && operand_equal_p (TREE_OPERAND (arg0, 1),
2497 TREE_OPERAND (arg1, 1), flags)
2498 && operand_equal_p (TREE_OPERAND (arg0, 2),
2499 TREE_OPERAND (arg1, 2), flags));
2500 default:
2501 return 0;
2504 case 'e':
2505 switch (TREE_CODE (arg0))
2507 case ADDR_EXPR:
2508 case TRUTH_NOT_EXPR:
2509 return operand_equal_p (TREE_OPERAND (arg0, 0),
2510 TREE_OPERAND (arg1, 0), flags);
2512 case TRUTH_ANDIF_EXPR:
2513 case TRUTH_ORIF_EXPR:
2514 return operand_equal_p (TREE_OPERAND (arg0, 0),
2515 TREE_OPERAND (arg1, 0), flags)
2516 && operand_equal_p (TREE_OPERAND (arg0, 1),
2517 TREE_OPERAND (arg1, 1), flags);
2519 case TRUTH_AND_EXPR:
2520 case TRUTH_OR_EXPR:
2521 case TRUTH_XOR_EXPR:
2522 return (operand_equal_p (TREE_OPERAND (arg0, 0),
2523 TREE_OPERAND (arg1, 0), flags)
2524 && operand_equal_p (TREE_OPERAND (arg0, 1),
2525 TREE_OPERAND (arg1, 1), flags))
2526 || (operand_equal_p (TREE_OPERAND (arg0, 0),
2527 TREE_OPERAND (arg1, 1), flags)
2528 && operand_equal_p (TREE_OPERAND (arg0, 1),
2529 TREE_OPERAND (arg1, 0), flags));
2531 case CALL_EXPR:
2532 /* If the CALL_EXPRs call different functions, then they
2533 clearly can not be equal. */
2534 if (! operand_equal_p (TREE_OPERAND (arg0, 0),
2535 TREE_OPERAND (arg1, 0), flags))
2536 return 0;
2539 unsigned int cef = call_expr_flags (arg0);
2540 if (flags & OEP_PURE_SAME)
2541 cef &= ECF_CONST | ECF_PURE;
2542 else
2543 cef &= ECF_CONST;
2544 if (!cef)
2545 return 0;
2548 /* Now see if all the arguments are the same. operand_equal_p
2549 does not handle TREE_LIST, so we walk the operands here
2550 feeding them to operand_equal_p. */
2551 arg0 = TREE_OPERAND (arg0, 1);
2552 arg1 = TREE_OPERAND (arg1, 1);
2553 while (arg0 && arg1)
2555 if (! operand_equal_p (TREE_VALUE (arg0), TREE_VALUE (arg1),
2556 flags))
2557 return 0;
2559 arg0 = TREE_CHAIN (arg0);
2560 arg1 = TREE_CHAIN (arg1);
2563 /* If we get here and both argument lists are exhausted
2564 then the CALL_EXPRs are equal. */
2565 return ! (arg0 || arg1);
2567 default:
2568 return 0;
2571 case 'd':
2572 /* Consider __builtin_sqrt equal to sqrt. */
2573 return (TREE_CODE (arg0) == FUNCTION_DECL
2574 && DECL_BUILT_IN (arg0) && DECL_BUILT_IN (arg1)
2575 && DECL_BUILT_IN_CLASS (arg0) == DECL_BUILT_IN_CLASS (arg1)
2576 && DECL_FUNCTION_CODE (arg0) == DECL_FUNCTION_CODE (arg1));
2578 default:
2579 return 0;
2583 /* Similar to operand_equal_p, but see if ARG0 might have been made by
2584 shorten_compare from ARG1 when ARG1 was being compared with OTHER.
2586 When in doubt, return 0. */
2588 static int
2589 operand_equal_for_comparison_p (tree arg0, tree arg1, tree other)
2591 int unsignedp1, unsignedpo;
2592 tree primarg0, primarg1, primother;
2593 unsigned int correct_width;
2595 if (operand_equal_p (arg0, arg1, 0))
2596 return 1;
2598 if (! INTEGRAL_TYPE_P (TREE_TYPE (arg0))
2599 || ! INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
2600 return 0;
2602 /* Discard any conversions that don't change the modes of ARG0 and ARG1
2603 and see if the inner values are the same. This removes any
2604 signedness comparison, which doesn't matter here. */
2605 primarg0 = arg0, primarg1 = arg1;
2606 STRIP_NOPS (primarg0);
2607 STRIP_NOPS (primarg1);
2608 if (operand_equal_p (primarg0, primarg1, 0))
2609 return 1;
2611 /* Duplicate what shorten_compare does to ARG1 and see if that gives the
2612 actual comparison operand, ARG0.
2614 First throw away any conversions to wider types
2615 already present in the operands. */
2617 primarg1 = get_narrower (arg1, &unsignedp1);
2618 primother = get_narrower (other, &unsignedpo);
2620 correct_width = TYPE_PRECISION (TREE_TYPE (arg1));
2621 if (unsignedp1 == unsignedpo
2622 && TYPE_PRECISION (TREE_TYPE (primarg1)) < correct_width
2623 && TYPE_PRECISION (TREE_TYPE (primother)) < correct_width)
2625 tree type = TREE_TYPE (arg0);
2627 /* Make sure shorter operand is extended the right way
2628 to match the longer operand. */
2629 primarg1 = fold_convert (lang_hooks.types.signed_or_unsigned_type
2630 (unsignedp1, TREE_TYPE (primarg1)), primarg1);
2632 if (operand_equal_p (arg0, fold_convert (type, primarg1), 0))
2633 return 1;
2636 return 0;
2639 /* See if ARG is an expression that is either a comparison or is performing
2640 arithmetic on comparisons. The comparisons must only be comparing
2641 two different values, which will be stored in *CVAL1 and *CVAL2; if
2642 they are nonzero it means that some operands have already been found.
2643 No variables may be used anywhere else in the expression except in the
2644 comparisons. If SAVE_P is true it means we removed a SAVE_EXPR around
2645 the expression and save_expr needs to be called with CVAL1 and CVAL2.
2647 If this is true, return 1. Otherwise, return zero. */
2649 static int
2650 twoval_comparison_p (tree arg, tree *cval1, tree *cval2, int *save_p)
2652 enum tree_code code = TREE_CODE (arg);
2653 char class = TREE_CODE_CLASS (code);
2655 /* We can handle some of the 'e' cases here. */
2656 if (class == 'e' && code == TRUTH_NOT_EXPR)
2657 class = '1';
2658 else if (class == 'e'
2659 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR
2660 || code == COMPOUND_EXPR))
2661 class = '2';
2663 else if (class == 'e' && code == SAVE_EXPR
2664 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
2666 /* If we've already found a CVAL1 or CVAL2, this expression is
2667 two complex to handle. */
2668 if (*cval1 || *cval2)
2669 return 0;
2671 class = '1';
2672 *save_p = 1;
2675 switch (class)
2677 case '1':
2678 return twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p);
2680 case '2':
2681 return (twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p)
2682 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2683 cval1, cval2, save_p));
2685 case 'c':
2686 return 1;
2688 case 'e':
2689 if (code == COND_EXPR)
2690 return (twoval_comparison_p (TREE_OPERAND (arg, 0),
2691 cval1, cval2, save_p)
2692 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2693 cval1, cval2, save_p)
2694 && twoval_comparison_p (TREE_OPERAND (arg, 2),
2695 cval1, cval2, save_p));
2696 return 0;
2698 case '<':
2699 /* First see if we can handle the first operand, then the second. For
2700 the second operand, we know *CVAL1 can't be zero. It must be that
2701 one side of the comparison is each of the values; test for the
2702 case where this isn't true by failing if the two operands
2703 are the same. */
2705 if (operand_equal_p (TREE_OPERAND (arg, 0),
2706 TREE_OPERAND (arg, 1), 0))
2707 return 0;
2709 if (*cval1 == 0)
2710 *cval1 = TREE_OPERAND (arg, 0);
2711 else if (operand_equal_p (*cval1, TREE_OPERAND (arg, 0), 0))
2713 else if (*cval2 == 0)
2714 *cval2 = TREE_OPERAND (arg, 0);
2715 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 0), 0))
2717 else
2718 return 0;
2720 if (operand_equal_p (*cval1, TREE_OPERAND (arg, 1), 0))
2722 else if (*cval2 == 0)
2723 *cval2 = TREE_OPERAND (arg, 1);
2724 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 1), 0))
2726 else
2727 return 0;
2729 return 1;
2731 default:
2732 return 0;
2736 /* ARG is a tree that is known to contain just arithmetic operations and
2737 comparisons. Evaluate the operations in the tree substituting NEW0 for
2738 any occurrence of OLD0 as an operand of a comparison and likewise for
2739 NEW1 and OLD1. */
2741 static tree
2742 eval_subst (tree arg, tree old0, tree new0, tree old1, tree new1)
2744 tree type = TREE_TYPE (arg);
2745 enum tree_code code = TREE_CODE (arg);
2746 char class = TREE_CODE_CLASS (code);
2748 /* We can handle some of the 'e' cases here. */
2749 if (class == 'e' && code == TRUTH_NOT_EXPR)
2750 class = '1';
2751 else if (class == 'e'
2752 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2753 class = '2';
2755 switch (class)
2757 case '1':
2758 return fold (build1 (code, type,
2759 eval_subst (TREE_OPERAND (arg, 0),
2760 old0, new0, old1, new1)));
2762 case '2':
2763 return fold (build2 (code, type,
2764 eval_subst (TREE_OPERAND (arg, 0),
2765 old0, new0, old1, new1),
2766 eval_subst (TREE_OPERAND (arg, 1),
2767 old0, new0, old1, new1)));
2769 case 'e':
2770 switch (code)
2772 case SAVE_EXPR:
2773 return eval_subst (TREE_OPERAND (arg, 0), old0, new0, old1, new1);
2775 case COMPOUND_EXPR:
2776 return eval_subst (TREE_OPERAND (arg, 1), old0, new0, old1, new1);
2778 case COND_EXPR:
2779 return fold (build3 (code, type,
2780 eval_subst (TREE_OPERAND (arg, 0),
2781 old0, new0, old1, new1),
2782 eval_subst (TREE_OPERAND (arg, 1),
2783 old0, new0, old1, new1),
2784 eval_subst (TREE_OPERAND (arg, 2),
2785 old0, new0, old1, new1)));
2786 default:
2787 break;
2789 /* Fall through - ??? */
2791 case '<':
2793 tree arg0 = TREE_OPERAND (arg, 0);
2794 tree arg1 = TREE_OPERAND (arg, 1);
2796 /* We need to check both for exact equality and tree equality. The
2797 former will be true if the operand has a side-effect. In that
2798 case, we know the operand occurred exactly once. */
2800 if (arg0 == old0 || operand_equal_p (arg0, old0, 0))
2801 arg0 = new0;
2802 else if (arg0 == old1 || operand_equal_p (arg0, old1, 0))
2803 arg0 = new1;
2805 if (arg1 == old0 || operand_equal_p (arg1, old0, 0))
2806 arg1 = new0;
2807 else if (arg1 == old1 || operand_equal_p (arg1, old1, 0))
2808 arg1 = new1;
2810 return fold (build2 (code, type, arg0, arg1));
2813 default:
2814 return arg;
2818 /* Return a tree for the case when the result of an expression is RESULT
2819 converted to TYPE and OMITTED was previously an operand of the expression
2820 but is now not needed (e.g., we folded OMITTED * 0).
2822 If OMITTED has side effects, we must evaluate it. Otherwise, just do
2823 the conversion of RESULT to TYPE. */
2825 tree
2826 omit_one_operand (tree type, tree result, tree omitted)
2828 tree t = fold_convert (type, result);
2830 if (TREE_SIDE_EFFECTS (omitted))
2831 return build2 (COMPOUND_EXPR, type, omitted, t);
2833 return non_lvalue (t);
2836 /* Similar, but call pedantic_non_lvalue instead of non_lvalue. */
2838 static tree
2839 pedantic_omit_one_operand (tree type, tree result, tree omitted)
2841 tree t = fold_convert (type, result);
2843 if (TREE_SIDE_EFFECTS (omitted))
2844 return build2 (COMPOUND_EXPR, type, omitted, t);
2846 return pedantic_non_lvalue (t);
2849 /* Return a tree for the case when the result of an expression is RESULT
2850 converted to TYPE and OMITTED1 and OMITTED2 were previously operands
2851 of the expression but are now not needed.
2853 If OMITTED1 or OMITTED2 has side effects, they must be evaluated.
2854 If both OMITTED1 and OMITTED2 have side effects, OMITTED1 is
2855 evaluated before OMITTED2. Otherwise, if neither has side effects,
2856 just do the conversion of RESULT to TYPE. */
2858 tree
2859 omit_two_operands (tree type, tree result, tree omitted1, tree omitted2)
2861 tree t = fold_convert (type, result);
2863 if (TREE_SIDE_EFFECTS (omitted2))
2864 t = build2 (COMPOUND_EXPR, type, omitted2, t);
2865 if (TREE_SIDE_EFFECTS (omitted1))
2866 t = build2 (COMPOUND_EXPR, type, omitted1, t);
2868 return TREE_CODE (t) != COMPOUND_EXPR ? non_lvalue (t) : t;
2872 /* Return a simplified tree node for the truth-negation of ARG. This
2873 never alters ARG itself. We assume that ARG is an operation that
2874 returns a truth value (0 or 1).
2876 FIXME: one would think we would fold the result, but it causes
2877 problems with the dominator optimizer. */
2878 tree
2879 invert_truthvalue (tree arg)
2881 tree type = TREE_TYPE (arg);
2882 enum tree_code code = TREE_CODE (arg);
2884 if (code == ERROR_MARK)
2885 return arg;
2887 /* If this is a comparison, we can simply invert it, except for
2888 floating-point non-equality comparisons, in which case we just
2889 enclose a TRUTH_NOT_EXPR around what we have. */
2891 if (TREE_CODE_CLASS (code) == '<')
2893 tree op_type = TREE_TYPE (TREE_OPERAND (arg, 0));
2894 if (FLOAT_TYPE_P (op_type)
2895 && flag_trapping_math
2896 && code != ORDERED_EXPR && code != UNORDERED_EXPR
2897 && code != NE_EXPR && code != EQ_EXPR)
2898 return build1 (TRUTH_NOT_EXPR, type, arg);
2899 else
2901 code = invert_tree_comparison (code,
2902 HONOR_NANS (TYPE_MODE (op_type)));
2903 if (code == ERROR_MARK)
2904 return build1 (TRUTH_NOT_EXPR, type, arg);
2905 else
2906 return build2 (code, type,
2907 TREE_OPERAND (arg, 0), TREE_OPERAND (arg, 1));
2911 switch (code)
2913 case INTEGER_CST:
2914 return fold_convert (type, build_int_2 (integer_zerop (arg), 0));
2916 case TRUTH_AND_EXPR:
2917 return build2 (TRUTH_OR_EXPR, type,
2918 invert_truthvalue (TREE_OPERAND (arg, 0)),
2919 invert_truthvalue (TREE_OPERAND (arg, 1)));
2921 case TRUTH_OR_EXPR:
2922 return build2 (TRUTH_AND_EXPR, type,
2923 invert_truthvalue (TREE_OPERAND (arg, 0)),
2924 invert_truthvalue (TREE_OPERAND (arg, 1)));
2926 case TRUTH_XOR_EXPR:
2927 /* Here we can invert either operand. We invert the first operand
2928 unless the second operand is a TRUTH_NOT_EXPR in which case our
2929 result is the XOR of the first operand with the inside of the
2930 negation of the second operand. */
2932 if (TREE_CODE (TREE_OPERAND (arg, 1)) == TRUTH_NOT_EXPR)
2933 return build2 (TRUTH_XOR_EXPR, type, TREE_OPERAND (arg, 0),
2934 TREE_OPERAND (TREE_OPERAND (arg, 1), 0));
2935 else
2936 return build2 (TRUTH_XOR_EXPR, type,
2937 invert_truthvalue (TREE_OPERAND (arg, 0)),
2938 TREE_OPERAND (arg, 1));
2940 case TRUTH_ANDIF_EXPR:
2941 return build2 (TRUTH_ORIF_EXPR, type,
2942 invert_truthvalue (TREE_OPERAND (arg, 0)),
2943 invert_truthvalue (TREE_OPERAND (arg, 1)));
2945 case TRUTH_ORIF_EXPR:
2946 return build2 (TRUTH_ANDIF_EXPR, type,
2947 invert_truthvalue (TREE_OPERAND (arg, 0)),
2948 invert_truthvalue (TREE_OPERAND (arg, 1)));
2950 case TRUTH_NOT_EXPR:
2951 return TREE_OPERAND (arg, 0);
2953 case COND_EXPR:
2954 return build3 (COND_EXPR, type, TREE_OPERAND (arg, 0),
2955 invert_truthvalue (TREE_OPERAND (arg, 1)),
2956 invert_truthvalue (TREE_OPERAND (arg, 2)));
2958 case COMPOUND_EXPR:
2959 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg, 0),
2960 invert_truthvalue (TREE_OPERAND (arg, 1)));
2962 case NON_LVALUE_EXPR:
2963 return invert_truthvalue (TREE_OPERAND (arg, 0));
2965 case NOP_EXPR:
2966 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
2967 break;
2969 case CONVERT_EXPR:
2970 case FLOAT_EXPR:
2971 return build1 (TREE_CODE (arg), type,
2972 invert_truthvalue (TREE_OPERAND (arg, 0)));
2974 case BIT_AND_EXPR:
2975 if (!integer_onep (TREE_OPERAND (arg, 1)))
2976 break;
2977 return build2 (EQ_EXPR, type, arg,
2978 fold_convert (type, integer_zero_node));
2980 case SAVE_EXPR:
2981 return build1 (TRUTH_NOT_EXPR, type, arg);
2983 case CLEANUP_POINT_EXPR:
2984 return build1 (CLEANUP_POINT_EXPR, type,
2985 invert_truthvalue (TREE_OPERAND (arg, 0)));
2987 default:
2988 break;
2990 if (TREE_CODE (TREE_TYPE (arg)) != BOOLEAN_TYPE)
2991 abort ();
2992 return build1 (TRUTH_NOT_EXPR, type, arg);
2995 /* Given a bit-wise operation CODE applied to ARG0 and ARG1, see if both
2996 operands are another bit-wise operation with a common input. If so,
2997 distribute the bit operations to save an operation and possibly two if
2998 constants are involved. For example, convert
2999 (A | B) & (A | C) into A | (B & C)
3000 Further simplification will occur if B and C are constants.
3002 If this optimization cannot be done, 0 will be returned. */
3004 static tree
3005 distribute_bit_expr (enum tree_code code, tree type, tree arg0, tree arg1)
3007 tree common;
3008 tree left, right;
3010 if (TREE_CODE (arg0) != TREE_CODE (arg1)
3011 || TREE_CODE (arg0) == code
3012 || (TREE_CODE (arg0) != BIT_AND_EXPR
3013 && TREE_CODE (arg0) != BIT_IOR_EXPR))
3014 return 0;
3016 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0))
3018 common = TREE_OPERAND (arg0, 0);
3019 left = TREE_OPERAND (arg0, 1);
3020 right = TREE_OPERAND (arg1, 1);
3022 else if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 1), 0))
3024 common = TREE_OPERAND (arg0, 0);
3025 left = TREE_OPERAND (arg0, 1);
3026 right = TREE_OPERAND (arg1, 0);
3028 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 0), 0))
3030 common = TREE_OPERAND (arg0, 1);
3031 left = TREE_OPERAND (arg0, 0);
3032 right = TREE_OPERAND (arg1, 1);
3034 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1), 0))
3036 common = TREE_OPERAND (arg0, 1);
3037 left = TREE_OPERAND (arg0, 0);
3038 right = TREE_OPERAND (arg1, 0);
3040 else
3041 return 0;
3043 return fold (build2 (TREE_CODE (arg0), type, common,
3044 fold (build2 (code, type, left, right))));
3047 /* Return a BIT_FIELD_REF of type TYPE to refer to BITSIZE bits of INNER
3048 starting at BITPOS. The field is unsigned if UNSIGNEDP is nonzero. */
3050 static tree
3051 make_bit_field_ref (tree inner, tree type, int bitsize, int bitpos,
3052 int unsignedp)
3054 tree result = build3 (BIT_FIELD_REF, type, inner,
3055 size_int (bitsize), bitsize_int (bitpos));
3057 BIT_FIELD_REF_UNSIGNED (result) = unsignedp;
3059 return result;
3062 /* Optimize a bit-field compare.
3064 There are two cases: First is a compare against a constant and the
3065 second is a comparison of two items where the fields are at the same
3066 bit position relative to the start of a chunk (byte, halfword, word)
3067 large enough to contain it. In these cases we can avoid the shift
3068 implicit in bitfield extractions.
3070 For constants, we emit a compare of the shifted constant with the
3071 BIT_AND_EXPR of a mask and a byte, halfword, or word of the operand being
3072 compared. For two fields at the same position, we do the ANDs with the
3073 similar mask and compare the result of the ANDs.
3075 CODE is the comparison code, known to be either NE_EXPR or EQ_EXPR.
3076 COMPARE_TYPE is the type of the comparison, and LHS and RHS
3077 are the left and right operands of the comparison, respectively.
3079 If the optimization described above can be done, we return the resulting
3080 tree. Otherwise we return zero. */
3082 static tree
3083 optimize_bit_field_compare (enum tree_code code, tree compare_type,
3084 tree lhs, tree rhs)
3086 HOST_WIDE_INT lbitpos, lbitsize, rbitpos, rbitsize, nbitpos, nbitsize;
3087 tree type = TREE_TYPE (lhs);
3088 tree signed_type, unsigned_type;
3089 int const_p = TREE_CODE (rhs) == INTEGER_CST;
3090 enum machine_mode lmode, rmode, nmode;
3091 int lunsignedp, runsignedp;
3092 int lvolatilep = 0, rvolatilep = 0;
3093 tree linner, rinner = NULL_TREE;
3094 tree mask;
3095 tree offset;
3097 /* Get all the information about the extractions being done. If the bit size
3098 if the same as the size of the underlying object, we aren't doing an
3099 extraction at all and so can do nothing. We also don't want to
3100 do anything if the inner expression is a PLACEHOLDER_EXPR since we
3101 then will no longer be able to replace it. */
3102 linner = get_inner_reference (lhs, &lbitsize, &lbitpos, &offset, &lmode,
3103 &lunsignedp, &lvolatilep);
3104 if (linner == lhs || lbitsize == GET_MODE_BITSIZE (lmode) || lbitsize < 0
3105 || offset != 0 || TREE_CODE (linner) == PLACEHOLDER_EXPR)
3106 return 0;
3108 if (!const_p)
3110 /* If this is not a constant, we can only do something if bit positions,
3111 sizes, and signedness are the same. */
3112 rinner = get_inner_reference (rhs, &rbitsize, &rbitpos, &offset, &rmode,
3113 &runsignedp, &rvolatilep);
3115 if (rinner == rhs || lbitpos != rbitpos || lbitsize != rbitsize
3116 || lunsignedp != runsignedp || offset != 0
3117 || TREE_CODE (rinner) == PLACEHOLDER_EXPR)
3118 return 0;
3121 /* See if we can find a mode to refer to this field. We should be able to,
3122 but fail if we can't. */
3123 nmode = get_best_mode (lbitsize, lbitpos,
3124 const_p ? TYPE_ALIGN (TREE_TYPE (linner))
3125 : MIN (TYPE_ALIGN (TREE_TYPE (linner)),
3126 TYPE_ALIGN (TREE_TYPE (rinner))),
3127 word_mode, lvolatilep || rvolatilep);
3128 if (nmode == VOIDmode)
3129 return 0;
3131 /* Set signed and unsigned types of the precision of this mode for the
3132 shifts below. */
3133 signed_type = lang_hooks.types.type_for_mode (nmode, 0);
3134 unsigned_type = lang_hooks.types.type_for_mode (nmode, 1);
3136 /* Compute the bit position and size for the new reference and our offset
3137 within it. If the new reference is the same size as the original, we
3138 won't optimize anything, so return zero. */
3139 nbitsize = GET_MODE_BITSIZE (nmode);
3140 nbitpos = lbitpos & ~ (nbitsize - 1);
3141 lbitpos -= nbitpos;
3142 if (nbitsize == lbitsize)
3143 return 0;
3145 if (BYTES_BIG_ENDIAN)
3146 lbitpos = nbitsize - lbitsize - lbitpos;
3148 /* Make the mask to be used against the extracted field. */
3149 mask = build_int_2 (~0, ~0);
3150 TREE_TYPE (mask) = unsigned_type;
3151 force_fit_type (mask, 0);
3152 mask = fold_convert (unsigned_type, mask);
3153 mask = const_binop (LSHIFT_EXPR, mask, size_int (nbitsize - lbitsize), 0);
3154 mask = const_binop (RSHIFT_EXPR, mask,
3155 size_int (nbitsize - lbitsize - lbitpos), 0);
3157 if (! const_p)
3158 /* If not comparing with constant, just rework the comparison
3159 and return. */
3160 return build2 (code, compare_type,
3161 build2 (BIT_AND_EXPR, unsigned_type,
3162 make_bit_field_ref (linner, unsigned_type,
3163 nbitsize, nbitpos, 1),
3164 mask),
3165 build2 (BIT_AND_EXPR, unsigned_type,
3166 make_bit_field_ref (rinner, unsigned_type,
3167 nbitsize, nbitpos, 1),
3168 mask));
3170 /* Otherwise, we are handling the constant case. See if the constant is too
3171 big for the field. Warn and return a tree of for 0 (false) if so. We do
3172 this not only for its own sake, but to avoid having to test for this
3173 error case below. If we didn't, we might generate wrong code.
3175 For unsigned fields, the constant shifted right by the field length should
3176 be all zero. For signed fields, the high-order bits should agree with
3177 the sign bit. */
3179 if (lunsignedp)
3181 if (! integer_zerop (const_binop (RSHIFT_EXPR,
3182 fold_convert (unsigned_type, rhs),
3183 size_int (lbitsize), 0)))
3185 warning ("comparison is always %d due to width of bit-field",
3186 code == NE_EXPR);
3187 return constant_boolean_node (code == NE_EXPR, compare_type);
3190 else
3192 tree tem = const_binop (RSHIFT_EXPR, fold_convert (signed_type, rhs),
3193 size_int (lbitsize - 1), 0);
3194 if (! integer_zerop (tem) && ! integer_all_onesp (tem))
3196 warning ("comparison is always %d due to width of bit-field",
3197 code == NE_EXPR);
3198 return constant_boolean_node (code == NE_EXPR, compare_type);
3202 /* Single-bit compares should always be against zero. */
3203 if (lbitsize == 1 && ! integer_zerop (rhs))
3205 code = code == EQ_EXPR ? NE_EXPR : EQ_EXPR;
3206 rhs = fold_convert (type, integer_zero_node);
3209 /* Make a new bitfield reference, shift the constant over the
3210 appropriate number of bits and mask it with the computed mask
3211 (in case this was a signed field). If we changed it, make a new one. */
3212 lhs = make_bit_field_ref (linner, unsigned_type, nbitsize, nbitpos, 1);
3213 if (lvolatilep)
3215 TREE_SIDE_EFFECTS (lhs) = 1;
3216 TREE_THIS_VOLATILE (lhs) = 1;
3219 rhs = fold (const_binop (BIT_AND_EXPR,
3220 const_binop (LSHIFT_EXPR,
3221 fold_convert (unsigned_type, rhs),
3222 size_int (lbitpos), 0),
3223 mask, 0));
3225 return build2 (code, compare_type,
3226 build2 (BIT_AND_EXPR, unsigned_type, lhs, mask),
3227 rhs);
3230 /* Subroutine for fold_truthop: decode a field reference.
3232 If EXP is a comparison reference, we return the innermost reference.
3234 *PBITSIZE is set to the number of bits in the reference, *PBITPOS is
3235 set to the starting bit number.
3237 If the innermost field can be completely contained in a mode-sized
3238 unit, *PMODE is set to that mode. Otherwise, it is set to VOIDmode.
3240 *PVOLATILEP is set to 1 if the any expression encountered is volatile;
3241 otherwise it is not changed.
3243 *PUNSIGNEDP is set to the signedness of the field.
3245 *PMASK is set to the mask used. This is either contained in a
3246 BIT_AND_EXPR or derived from the width of the field.
3248 *PAND_MASK is set to the mask found in a BIT_AND_EXPR, if any.
3250 Return 0 if this is not a component reference or is one that we can't
3251 do anything with. */
3253 static tree
3254 decode_field_reference (tree exp, HOST_WIDE_INT *pbitsize,
3255 HOST_WIDE_INT *pbitpos, enum machine_mode *pmode,
3256 int *punsignedp, int *pvolatilep,
3257 tree *pmask, tree *pand_mask)
3259 tree outer_type = 0;
3260 tree and_mask = 0;
3261 tree mask, inner, offset;
3262 tree unsigned_type;
3263 unsigned int precision;
3265 /* All the optimizations using this function assume integer fields.
3266 There are problems with FP fields since the type_for_size call
3267 below can fail for, e.g., XFmode. */
3268 if (! INTEGRAL_TYPE_P (TREE_TYPE (exp)))
3269 return 0;
3271 /* We are interested in the bare arrangement of bits, so strip everything
3272 that doesn't affect the machine mode. However, record the type of the
3273 outermost expression if it may matter below. */
3274 if (TREE_CODE (exp) == NOP_EXPR
3275 || TREE_CODE (exp) == CONVERT_EXPR
3276 || TREE_CODE (exp) == NON_LVALUE_EXPR)
3277 outer_type = TREE_TYPE (exp);
3278 STRIP_NOPS (exp);
3280 if (TREE_CODE (exp) == BIT_AND_EXPR)
3282 and_mask = TREE_OPERAND (exp, 1);
3283 exp = TREE_OPERAND (exp, 0);
3284 STRIP_NOPS (exp); STRIP_NOPS (and_mask);
3285 if (TREE_CODE (and_mask) != INTEGER_CST)
3286 return 0;
3289 inner = get_inner_reference (exp, pbitsize, pbitpos, &offset, pmode,
3290 punsignedp, pvolatilep);
3291 if ((inner == exp && and_mask == 0)
3292 || *pbitsize < 0 || offset != 0
3293 || TREE_CODE (inner) == PLACEHOLDER_EXPR)
3294 return 0;
3296 /* If the number of bits in the reference is the same as the bitsize of
3297 the outer type, then the outer type gives the signedness. Otherwise
3298 (in case of a small bitfield) the signedness is unchanged. */
3299 if (outer_type && *pbitsize == tree_low_cst (TYPE_SIZE (outer_type), 1))
3300 *punsignedp = TYPE_UNSIGNED (outer_type);
3302 /* Compute the mask to access the bitfield. */
3303 unsigned_type = lang_hooks.types.type_for_size (*pbitsize, 1);
3304 precision = TYPE_PRECISION (unsigned_type);
3306 mask = build_int_2 (~0, ~0);
3307 TREE_TYPE (mask) = unsigned_type;
3308 force_fit_type (mask, 0);
3309 mask = const_binop (LSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
3310 mask = const_binop (RSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
3312 /* Merge it with the mask we found in the BIT_AND_EXPR, if any. */
3313 if (and_mask != 0)
3314 mask = fold (build2 (BIT_AND_EXPR, unsigned_type,
3315 fold_convert (unsigned_type, and_mask), mask));
3317 *pmask = mask;
3318 *pand_mask = and_mask;
3319 return inner;
3322 /* Return nonzero if MASK represents a mask of SIZE ones in the low-order
3323 bit positions. */
3325 static int
3326 all_ones_mask_p (tree mask, int size)
3328 tree type = TREE_TYPE (mask);
3329 unsigned int precision = TYPE_PRECISION (type);
3330 tree tmask;
3332 tmask = build_int_2 (~0, ~0);
3333 TREE_TYPE (tmask) = lang_hooks.types.signed_type (type);
3334 force_fit_type (tmask, 0);
3335 return
3336 tree_int_cst_equal (mask,
3337 const_binop (RSHIFT_EXPR,
3338 const_binop (LSHIFT_EXPR, tmask,
3339 size_int (precision - size),
3341 size_int (precision - size), 0));
3344 /* Subroutine for fold: determine if VAL is the INTEGER_CONST that
3345 represents the sign bit of EXP's type. If EXP represents a sign
3346 or zero extension, also test VAL against the unextended type.
3347 The return value is the (sub)expression whose sign bit is VAL,
3348 or NULL_TREE otherwise. */
3350 static tree
3351 sign_bit_p (tree exp, tree val)
3353 unsigned HOST_WIDE_INT mask_lo, lo;
3354 HOST_WIDE_INT mask_hi, hi;
3355 int width;
3356 tree t;
3358 /* Tree EXP must have an integral type. */
3359 t = TREE_TYPE (exp);
3360 if (! INTEGRAL_TYPE_P (t))
3361 return NULL_TREE;
3363 /* Tree VAL must be an integer constant. */
3364 if (TREE_CODE (val) != INTEGER_CST
3365 || TREE_CONSTANT_OVERFLOW (val))
3366 return NULL_TREE;
3368 width = TYPE_PRECISION (t);
3369 if (width > HOST_BITS_PER_WIDE_INT)
3371 hi = (unsigned HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT - 1);
3372 lo = 0;
3374 mask_hi = ((unsigned HOST_WIDE_INT) -1
3375 >> (2 * HOST_BITS_PER_WIDE_INT - width));
3376 mask_lo = -1;
3378 else
3380 hi = 0;
3381 lo = (unsigned HOST_WIDE_INT) 1 << (width - 1);
3383 mask_hi = 0;
3384 mask_lo = ((unsigned HOST_WIDE_INT) -1
3385 >> (HOST_BITS_PER_WIDE_INT - width));
3388 /* We mask off those bits beyond TREE_TYPE (exp) so that we can
3389 treat VAL as if it were unsigned. */
3390 if ((TREE_INT_CST_HIGH (val) & mask_hi) == hi
3391 && (TREE_INT_CST_LOW (val) & mask_lo) == lo)
3392 return exp;
3394 /* Handle extension from a narrower type. */
3395 if (TREE_CODE (exp) == NOP_EXPR
3396 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))) < width)
3397 return sign_bit_p (TREE_OPERAND (exp, 0), val);
3399 return NULL_TREE;
3402 /* Subroutine for fold_truthop: determine if an operand is simple enough
3403 to be evaluated unconditionally. */
3405 static int
3406 simple_operand_p (tree exp)
3408 /* Strip any conversions that don't change the machine mode. */
3409 while ((TREE_CODE (exp) == NOP_EXPR
3410 || TREE_CODE (exp) == CONVERT_EXPR)
3411 && (TYPE_MODE (TREE_TYPE (exp))
3412 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)))))
3413 exp = TREE_OPERAND (exp, 0);
3415 return (TREE_CODE_CLASS (TREE_CODE (exp)) == 'c'
3416 || (DECL_P (exp)
3417 && ! TREE_ADDRESSABLE (exp)
3418 && ! TREE_THIS_VOLATILE (exp)
3419 && ! DECL_NONLOCAL (exp)
3420 /* Don't regard global variables as simple. They may be
3421 allocated in ways unknown to the compiler (shared memory,
3422 #pragma weak, etc). */
3423 && ! TREE_PUBLIC (exp)
3424 && ! DECL_EXTERNAL (exp)
3425 /* Loading a static variable is unduly expensive, but global
3426 registers aren't expensive. */
3427 && (! TREE_STATIC (exp) || DECL_REGISTER (exp))));
3430 /* The following functions are subroutines to fold_range_test and allow it to
3431 try to change a logical combination of comparisons into a range test.
3433 For example, both
3434 X == 2 || X == 3 || X == 4 || X == 5
3436 X >= 2 && X <= 5
3437 are converted to
3438 (unsigned) (X - 2) <= 3
3440 We describe each set of comparisons as being either inside or outside
3441 a range, using a variable named like IN_P, and then describe the
3442 range with a lower and upper bound. If one of the bounds is omitted,
3443 it represents either the highest or lowest value of the type.
3445 In the comments below, we represent a range by two numbers in brackets
3446 preceded by a "+" to designate being inside that range, or a "-" to
3447 designate being outside that range, so the condition can be inverted by
3448 flipping the prefix. An omitted bound is represented by a "-". For
3449 example, "- [-, 10]" means being outside the range starting at the lowest
3450 possible value and ending at 10, in other words, being greater than 10.
3451 The range "+ [-, -]" is always true and hence the range "- [-, -]" is
3452 always false.
3454 We set up things so that the missing bounds are handled in a consistent
3455 manner so neither a missing bound nor "true" and "false" need to be
3456 handled using a special case. */
3458 /* Return the result of applying CODE to ARG0 and ARG1, but handle the case
3459 of ARG0 and/or ARG1 being omitted, meaning an unlimited range. UPPER0_P
3460 and UPPER1_P are nonzero if the respective argument is an upper bound
3461 and zero for a lower. TYPE, if nonzero, is the type of the result; it
3462 must be specified for a comparison. ARG1 will be converted to ARG0's
3463 type if both are specified. */
3465 static tree
3466 range_binop (enum tree_code code, tree type, tree arg0, int upper0_p,
3467 tree arg1, int upper1_p)
3469 tree tem;
3470 int result;
3471 int sgn0, sgn1;
3473 /* If neither arg represents infinity, do the normal operation.
3474 Else, if not a comparison, return infinity. Else handle the special
3475 comparison rules. Note that most of the cases below won't occur, but
3476 are handled for consistency. */
3478 if (arg0 != 0 && arg1 != 0)
3480 tem = fold (build2 (code, type != 0 ? type : TREE_TYPE (arg0),
3481 arg0, fold_convert (TREE_TYPE (arg0), arg1)));
3482 STRIP_NOPS (tem);
3483 return TREE_CODE (tem) == INTEGER_CST ? tem : 0;
3486 if (TREE_CODE_CLASS (code) != '<')
3487 return 0;
3489 /* Set SGN[01] to -1 if ARG[01] is a lower bound, 1 for upper, and 0
3490 for neither. In real maths, we cannot assume open ended ranges are
3491 the same. But, this is computer arithmetic, where numbers are finite.
3492 We can therefore make the transformation of any unbounded range with
3493 the value Z, Z being greater than any representable number. This permits
3494 us to treat unbounded ranges as equal. */
3495 sgn0 = arg0 != 0 ? 0 : (upper0_p ? 1 : -1);
3496 sgn1 = arg1 != 0 ? 0 : (upper1_p ? 1 : -1);
3497 switch (code)
3499 case EQ_EXPR:
3500 result = sgn0 == sgn1;
3501 break;
3502 case NE_EXPR:
3503 result = sgn0 != sgn1;
3504 break;
3505 case LT_EXPR:
3506 result = sgn0 < sgn1;
3507 break;
3508 case LE_EXPR:
3509 result = sgn0 <= sgn1;
3510 break;
3511 case GT_EXPR:
3512 result = sgn0 > sgn1;
3513 break;
3514 case GE_EXPR:
3515 result = sgn0 >= sgn1;
3516 break;
3517 default:
3518 abort ();
3521 return constant_boolean_node (result, type);
3524 /* Given EXP, a logical expression, set the range it is testing into
3525 variables denoted by PIN_P, PLOW, and PHIGH. Return the expression
3526 actually being tested. *PLOW and *PHIGH will be made of the same type
3527 as the returned expression. If EXP is not a comparison, we will most
3528 likely not be returning a useful value and range. */
3530 static tree
3531 make_range (tree exp, int *pin_p, tree *plow, tree *phigh)
3533 enum tree_code code;
3534 tree arg0 = NULL_TREE, arg1 = NULL_TREE;
3535 tree exp_type = NULL_TREE, arg0_type = NULL_TREE;
3536 int in_p, n_in_p;
3537 tree low, high, n_low, n_high;
3539 /* Start with simply saying "EXP != 0" and then look at the code of EXP
3540 and see if we can refine the range. Some of the cases below may not
3541 happen, but it doesn't seem worth worrying about this. We "continue"
3542 the outer loop when we've changed something; otherwise we "break"
3543 the switch, which will "break" the while. */
3545 in_p = 0;
3546 low = high = fold_convert (TREE_TYPE (exp), integer_zero_node);
3548 while (1)
3550 code = TREE_CODE (exp);
3551 exp_type = TREE_TYPE (exp);
3553 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
3555 if (first_rtl_op (code) > 0)
3556 arg0 = TREE_OPERAND (exp, 0);
3557 if (TREE_CODE_CLASS (code) == '<'
3558 || TREE_CODE_CLASS (code) == '1'
3559 || TREE_CODE_CLASS (code) == '2')
3560 arg0_type = TREE_TYPE (arg0);
3561 if (TREE_CODE_CLASS (code) == '2'
3562 || TREE_CODE_CLASS (code) == '<'
3563 || (TREE_CODE_CLASS (code) == 'e'
3564 && TREE_CODE_LENGTH (code) > 1))
3565 arg1 = TREE_OPERAND (exp, 1);
3568 switch (code)
3570 case TRUTH_NOT_EXPR:
3571 in_p = ! in_p, exp = arg0;
3572 continue;
3574 case EQ_EXPR: case NE_EXPR:
3575 case LT_EXPR: case LE_EXPR: case GE_EXPR: case GT_EXPR:
3576 /* We can only do something if the range is testing for zero
3577 and if the second operand is an integer constant. Note that
3578 saying something is "in" the range we make is done by
3579 complementing IN_P since it will set in the initial case of
3580 being not equal to zero; "out" is leaving it alone. */
3581 if (low == 0 || high == 0
3582 || ! integer_zerop (low) || ! integer_zerop (high)
3583 || TREE_CODE (arg1) != INTEGER_CST)
3584 break;
3586 switch (code)
3588 case NE_EXPR: /* - [c, c] */
3589 low = high = arg1;
3590 break;
3591 case EQ_EXPR: /* + [c, c] */
3592 in_p = ! in_p, low = high = arg1;
3593 break;
3594 case GT_EXPR: /* - [-, c] */
3595 low = 0, high = arg1;
3596 break;
3597 case GE_EXPR: /* + [c, -] */
3598 in_p = ! in_p, low = arg1, high = 0;
3599 break;
3600 case LT_EXPR: /* - [c, -] */
3601 low = arg1, high = 0;
3602 break;
3603 case LE_EXPR: /* + [-, c] */
3604 in_p = ! in_p, low = 0, high = arg1;
3605 break;
3606 default:
3607 abort ();
3610 /* If this is an unsigned comparison, we also know that EXP is
3611 greater than or equal to zero. We base the range tests we make
3612 on that fact, so we record it here so we can parse existing
3613 range tests. We test arg0_type since often the return type
3614 of, e.g. EQ_EXPR, is boolean. */
3615 if (TYPE_UNSIGNED (arg0_type) && (low == 0 || high == 0))
3617 if (! merge_ranges (&n_in_p, &n_low, &n_high, in_p, low, high,
3618 1, fold_convert (arg0_type, integer_zero_node),
3619 NULL_TREE))
3620 break;
3622 in_p = n_in_p, low = n_low, high = n_high;
3624 /* If the high bound is missing, but we have a nonzero low
3625 bound, reverse the range so it goes from zero to the low bound
3626 minus 1. */
3627 if (high == 0 && low && ! integer_zerop (low))
3629 in_p = ! in_p;
3630 high = range_binop (MINUS_EXPR, NULL_TREE, low, 0,
3631 integer_one_node, 0);
3632 low = fold_convert (arg0_type, integer_zero_node);
3636 exp = arg0;
3637 continue;
3639 case NEGATE_EXPR:
3640 /* (-x) IN [a,b] -> x in [-b, -a] */
3641 n_low = range_binop (MINUS_EXPR, exp_type,
3642 fold_convert (exp_type, integer_zero_node),
3643 0, high, 1);
3644 n_high = range_binop (MINUS_EXPR, exp_type,
3645 fold_convert (exp_type, integer_zero_node),
3646 0, low, 0);
3647 low = n_low, high = n_high;
3648 exp = arg0;
3649 continue;
3651 case BIT_NOT_EXPR:
3652 /* ~ X -> -X - 1 */
3653 exp = build2 (MINUS_EXPR, exp_type, negate_expr (arg0),
3654 fold_convert (exp_type, integer_one_node));
3655 continue;
3657 case PLUS_EXPR: case MINUS_EXPR:
3658 if (TREE_CODE (arg1) != INTEGER_CST)
3659 break;
3661 /* If EXP is signed, any overflow in the computation is undefined,
3662 so we don't worry about it so long as our computations on
3663 the bounds don't overflow. For unsigned, overflow is defined
3664 and this is exactly the right thing. */
3665 n_low = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3666 arg0_type, low, 0, arg1, 0);
3667 n_high = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3668 arg0_type, high, 1, arg1, 0);
3669 if ((n_low != 0 && TREE_OVERFLOW (n_low))
3670 || (n_high != 0 && TREE_OVERFLOW (n_high)))
3671 break;
3673 /* Check for an unsigned range which has wrapped around the maximum
3674 value thus making n_high < n_low, and normalize it. */
3675 if (n_low && n_high && tree_int_cst_lt (n_high, n_low))
3677 low = range_binop (PLUS_EXPR, arg0_type, n_high, 0,
3678 integer_one_node, 0);
3679 high = range_binop (MINUS_EXPR, arg0_type, n_low, 0,
3680 integer_one_node, 0);
3682 /* If the range is of the form +/- [ x+1, x ], we won't
3683 be able to normalize it. But then, it represents the
3684 whole range or the empty set, so make it
3685 +/- [ -, - ]. */
3686 if (tree_int_cst_equal (n_low, low)
3687 && tree_int_cst_equal (n_high, high))
3688 low = high = 0;
3689 else
3690 in_p = ! in_p;
3692 else
3693 low = n_low, high = n_high;
3695 exp = arg0;
3696 continue;
3698 case NOP_EXPR: case NON_LVALUE_EXPR: case CONVERT_EXPR:
3699 if (TYPE_PRECISION (arg0_type) > TYPE_PRECISION (exp_type))
3700 break;
3702 if (! INTEGRAL_TYPE_P (arg0_type)
3703 || (low != 0 && ! int_fits_type_p (low, arg0_type))
3704 || (high != 0 && ! int_fits_type_p (high, arg0_type)))
3705 break;
3707 n_low = low, n_high = high;
3709 if (n_low != 0)
3710 n_low = fold_convert (arg0_type, n_low);
3712 if (n_high != 0)
3713 n_high = fold_convert (arg0_type, n_high);
3716 /* If we're converting arg0 from an unsigned type, to exp,
3717 a signed type, we will be doing the comparison as unsigned.
3718 The tests above have already verified that LOW and HIGH
3719 are both positive.
3721 So we have to ensure that we will handle large unsigned
3722 values the same way that the current signed bounds treat
3723 negative values. */
3725 if (!TYPE_UNSIGNED (exp_type) && TYPE_UNSIGNED (arg0_type))
3727 tree high_positive;
3728 tree equiv_type = lang_hooks.types.type_for_mode
3729 (TYPE_MODE (arg0_type), 1);
3731 /* A range without an upper bound is, naturally, unbounded.
3732 Since convert would have cropped a very large value, use
3733 the max value for the destination type. */
3734 high_positive
3735 = TYPE_MAX_VALUE (equiv_type) ? TYPE_MAX_VALUE (equiv_type)
3736 : TYPE_MAX_VALUE (arg0_type);
3738 if (TYPE_PRECISION (exp_type) == TYPE_PRECISION (arg0_type))
3739 high_positive = fold (build2 (RSHIFT_EXPR, arg0_type,
3740 fold_convert (arg0_type,
3741 high_positive),
3742 fold_convert (arg0_type,
3743 integer_one_node)));
3745 /* If the low bound is specified, "and" the range with the
3746 range for which the original unsigned value will be
3747 positive. */
3748 if (low != 0)
3750 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3751 1, n_low, n_high, 1,
3752 fold_convert (arg0_type, integer_zero_node),
3753 high_positive))
3754 break;
3756 in_p = (n_in_p == in_p);
3758 else
3760 /* Otherwise, "or" the range with the range of the input
3761 that will be interpreted as negative. */
3762 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3763 0, n_low, n_high, 1,
3764 fold_convert (arg0_type, integer_zero_node),
3765 high_positive))
3766 break;
3768 in_p = (in_p != n_in_p);
3772 exp = arg0;
3773 low = n_low, high = n_high;
3774 continue;
3776 default:
3777 break;
3780 break;
3783 /* If EXP is a constant, we can evaluate whether this is true or false. */
3784 if (TREE_CODE (exp) == INTEGER_CST)
3786 in_p = in_p == (integer_onep (range_binop (GE_EXPR, integer_type_node,
3787 exp, 0, low, 0))
3788 && integer_onep (range_binop (LE_EXPR, integer_type_node,
3789 exp, 1, high, 1)));
3790 low = high = 0;
3791 exp = 0;
3794 *pin_p = in_p, *plow = low, *phigh = high;
3795 return exp;
3798 /* Given a range, LOW, HIGH, and IN_P, an expression, EXP, and a result
3799 type, TYPE, return an expression to test if EXP is in (or out of, depending
3800 on IN_P) the range. Return 0 if the test couldn't be created. */
3802 static tree
3803 build_range_check (tree type, tree exp, int in_p, tree low, tree high)
3805 tree etype = TREE_TYPE (exp);
3806 tree value;
3808 if (! in_p)
3810 value = build_range_check (type, exp, 1, low, high);
3811 if (value != 0)
3812 return invert_truthvalue (value);
3814 return 0;
3817 if (low == 0 && high == 0)
3818 return fold_convert (type, integer_one_node);
3820 if (low == 0)
3821 return fold (build2 (LE_EXPR, type, exp, high));
3823 if (high == 0)
3824 return fold (build2 (GE_EXPR, type, exp, low));
3826 if (operand_equal_p (low, high, 0))
3827 return fold (build2 (EQ_EXPR, type, exp, low));
3829 if (integer_zerop (low))
3831 if (! TYPE_UNSIGNED (etype))
3833 etype = lang_hooks.types.unsigned_type (etype);
3834 high = fold_convert (etype, high);
3835 exp = fold_convert (etype, exp);
3837 return build_range_check (type, exp, 1, 0, high);
3840 /* Optimize (c>=1) && (c<=127) into (signed char)c > 0. */
3841 if (integer_onep (low) && TREE_CODE (high) == INTEGER_CST)
3843 unsigned HOST_WIDE_INT lo;
3844 HOST_WIDE_INT hi;
3845 int prec;
3847 prec = TYPE_PRECISION (etype);
3848 if (prec <= HOST_BITS_PER_WIDE_INT)
3850 hi = 0;
3851 lo = ((unsigned HOST_WIDE_INT) 1 << (prec - 1)) - 1;
3853 else
3855 hi = ((HOST_WIDE_INT) 1 << (prec - HOST_BITS_PER_WIDE_INT - 1)) - 1;
3856 lo = (unsigned HOST_WIDE_INT) -1;
3859 if (TREE_INT_CST_HIGH (high) == hi && TREE_INT_CST_LOW (high) == lo)
3861 if (TYPE_UNSIGNED (etype))
3863 etype = lang_hooks.types.signed_type (etype);
3864 exp = fold_convert (etype, exp);
3866 return fold (build2 (GT_EXPR, type, exp,
3867 fold_convert (etype, integer_zero_node)));
3871 value = const_binop (MINUS_EXPR, high, low, 0);
3872 if (value != 0 && TREE_OVERFLOW (value) && ! TYPE_UNSIGNED (etype))
3874 tree utype, minv, maxv;
3876 /* Check if (unsigned) INT_MAX + 1 == (unsigned) INT_MIN
3877 for the type in question, as we rely on this here. */
3878 switch (TREE_CODE (etype))
3880 case INTEGER_TYPE:
3881 case ENUMERAL_TYPE:
3882 case CHAR_TYPE:
3883 utype = lang_hooks.types.unsigned_type (etype);
3884 maxv = fold_convert (utype, TYPE_MAX_VALUE (etype));
3885 maxv = range_binop (PLUS_EXPR, NULL_TREE, maxv, 1,
3886 integer_one_node, 1);
3887 minv = fold_convert (utype, TYPE_MIN_VALUE (etype));
3888 if (integer_zerop (range_binop (NE_EXPR, integer_type_node,
3889 minv, 1, maxv, 1)))
3891 etype = utype;
3892 high = fold_convert (etype, high);
3893 low = fold_convert (etype, low);
3894 exp = fold_convert (etype, exp);
3895 value = const_binop (MINUS_EXPR, high, low, 0);
3897 break;
3898 default:
3899 break;
3903 if (value != 0 && ! TREE_OVERFLOW (value))
3904 return build_range_check (type,
3905 fold (build2 (MINUS_EXPR, etype, exp, low)),
3906 1, fold_convert (etype, integer_zero_node),
3907 value);
3909 return 0;
3912 /* Given two ranges, see if we can merge them into one. Return 1 if we
3913 can, 0 if we can't. Set the output range into the specified parameters. */
3915 static int
3916 merge_ranges (int *pin_p, tree *plow, tree *phigh, int in0_p, tree low0,
3917 tree high0, int in1_p, tree low1, tree high1)
3919 int no_overlap;
3920 int subset;
3921 int temp;
3922 tree tem;
3923 int in_p;
3924 tree low, high;
3925 int lowequal = ((low0 == 0 && low1 == 0)
3926 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
3927 low0, 0, low1, 0)));
3928 int highequal = ((high0 == 0 && high1 == 0)
3929 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
3930 high0, 1, high1, 1)));
3932 /* Make range 0 be the range that starts first, or ends last if they
3933 start at the same value. Swap them if it isn't. */
3934 if (integer_onep (range_binop (GT_EXPR, integer_type_node,
3935 low0, 0, low1, 0))
3936 || (lowequal
3937 && integer_onep (range_binop (GT_EXPR, integer_type_node,
3938 high1, 1, high0, 1))))
3940 temp = in0_p, in0_p = in1_p, in1_p = temp;
3941 tem = low0, low0 = low1, low1 = tem;
3942 tem = high0, high0 = high1, high1 = tem;
3945 /* Now flag two cases, whether the ranges are disjoint or whether the
3946 second range is totally subsumed in the first. Note that the tests
3947 below are simplified by the ones above. */
3948 no_overlap = integer_onep (range_binop (LT_EXPR, integer_type_node,
3949 high0, 1, low1, 0));
3950 subset = integer_onep (range_binop (LE_EXPR, integer_type_node,
3951 high1, 1, high0, 1));
3953 /* We now have four cases, depending on whether we are including or
3954 excluding the two ranges. */
3955 if (in0_p && in1_p)
3957 /* If they don't overlap, the result is false. If the second range
3958 is a subset it is the result. Otherwise, the range is from the start
3959 of the second to the end of the first. */
3960 if (no_overlap)
3961 in_p = 0, low = high = 0;
3962 else if (subset)
3963 in_p = 1, low = low1, high = high1;
3964 else
3965 in_p = 1, low = low1, high = high0;
3968 else if (in0_p && ! in1_p)
3970 /* If they don't overlap, the result is the first range. If they are
3971 equal, the result is false. If the second range is a subset of the
3972 first, and the ranges begin at the same place, we go from just after
3973 the end of the first range to the end of the second. If the second
3974 range is not a subset of the first, or if it is a subset and both
3975 ranges end at the same place, the range starts at the start of the
3976 first range and ends just before the second range.
3977 Otherwise, we can't describe this as a single range. */
3978 if (no_overlap)
3979 in_p = 1, low = low0, high = high0;
3980 else if (lowequal && highequal)
3981 in_p = 0, low = high = 0;
3982 else if (subset && lowequal)
3984 in_p = 1, high = high0;
3985 low = range_binop (PLUS_EXPR, NULL_TREE, high1, 0,
3986 integer_one_node, 0);
3988 else if (! subset || highequal)
3990 in_p = 1, low = low0;
3991 high = range_binop (MINUS_EXPR, NULL_TREE, low1, 0,
3992 integer_one_node, 0);
3994 else
3995 return 0;
3998 else if (! in0_p && in1_p)
4000 /* If they don't overlap, the result is the second range. If the second
4001 is a subset of the first, the result is false. Otherwise,
4002 the range starts just after the first range and ends at the
4003 end of the second. */
4004 if (no_overlap)
4005 in_p = 1, low = low1, high = high1;
4006 else if (subset || highequal)
4007 in_p = 0, low = high = 0;
4008 else
4010 in_p = 1, high = high1;
4011 low = range_binop (PLUS_EXPR, NULL_TREE, high0, 1,
4012 integer_one_node, 0);
4016 else
4018 /* The case where we are excluding both ranges. Here the complex case
4019 is if they don't overlap. In that case, the only time we have a
4020 range is if they are adjacent. If the second is a subset of the
4021 first, the result is the first. Otherwise, the range to exclude
4022 starts at the beginning of the first range and ends at the end of the
4023 second. */
4024 if (no_overlap)
4026 if (integer_onep (range_binop (EQ_EXPR, integer_type_node,
4027 range_binop (PLUS_EXPR, NULL_TREE,
4028 high0, 1,
4029 integer_one_node, 1),
4030 1, low1, 0)))
4031 in_p = 0, low = low0, high = high1;
4032 else
4034 /* Canonicalize - [min, x] into - [-, x]. */
4035 if (low0 && TREE_CODE (low0) == INTEGER_CST)
4036 switch (TREE_CODE (TREE_TYPE (low0)))
4038 case ENUMERAL_TYPE:
4039 if (TYPE_PRECISION (TREE_TYPE (low0))
4040 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (low0))))
4041 break;
4042 /* FALLTHROUGH */
4043 case INTEGER_TYPE:
4044 case CHAR_TYPE:
4045 if (tree_int_cst_equal (low0,
4046 TYPE_MIN_VALUE (TREE_TYPE (low0))))
4047 low0 = 0;
4048 break;
4049 case POINTER_TYPE:
4050 if (TYPE_UNSIGNED (TREE_TYPE (low0))
4051 && integer_zerop (low0))
4052 low0 = 0;
4053 break;
4054 default:
4055 break;
4058 /* Canonicalize - [x, max] into - [x, -]. */
4059 if (high1 && TREE_CODE (high1) == INTEGER_CST)
4060 switch (TREE_CODE (TREE_TYPE (high1)))
4062 case ENUMERAL_TYPE:
4063 if (TYPE_PRECISION (TREE_TYPE (high1))
4064 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (high1))))
4065 break;
4066 /* FALLTHROUGH */
4067 case INTEGER_TYPE:
4068 case CHAR_TYPE:
4069 if (tree_int_cst_equal (high1,
4070 TYPE_MAX_VALUE (TREE_TYPE (high1))))
4071 high1 = 0;
4072 break;
4073 case POINTER_TYPE:
4074 if (TYPE_UNSIGNED (TREE_TYPE (high1))
4075 && integer_zerop (range_binop (PLUS_EXPR, NULL_TREE,
4076 high1, 1,
4077 integer_one_node, 1)))
4078 high1 = 0;
4079 break;
4080 default:
4081 break;
4084 /* The ranges might be also adjacent between the maximum and
4085 minimum values of the given type. For
4086 - [{min,-}, x] and - [y, {max,-}] ranges where x + 1 < y
4087 return + [x + 1, y - 1]. */
4088 if (low0 == 0 && high1 == 0)
4090 low = range_binop (PLUS_EXPR, NULL_TREE, high0, 1,
4091 integer_one_node, 1);
4092 high = range_binop (MINUS_EXPR, NULL_TREE, low1, 0,
4093 integer_one_node, 0);
4094 if (low == 0 || high == 0)
4095 return 0;
4097 in_p = 1;
4099 else
4100 return 0;
4103 else if (subset)
4104 in_p = 0, low = low0, high = high0;
4105 else
4106 in_p = 0, low = low0, high = high1;
4109 *pin_p = in_p, *plow = low, *phigh = high;
4110 return 1;
4114 /* Subroutine of fold, looking inside expressions of the form
4115 A op B ? A : C, where ARG0, ARG1 and ARG2 are the three operands
4116 of the COND_EXPR. This function is being used also to optimize
4117 A op B ? C : A, by reversing the comparison first.
4119 Return a folded expression whose code is not a COND_EXPR
4120 anymore, or NULL_TREE if no folding opportunity is found. */
4122 static tree
4123 fold_cond_expr_with_comparison (tree type, tree arg0, tree arg1, tree arg2)
4125 enum tree_code comp_code = TREE_CODE (arg0);
4126 tree arg00 = TREE_OPERAND (arg0, 0);
4127 tree arg01 = TREE_OPERAND (arg0, 1);
4128 tree arg1_type = TREE_TYPE (arg1);
4129 tree tem;
4131 STRIP_NOPS (arg1);
4132 STRIP_NOPS (arg2);
4134 /* If we have A op 0 ? A : -A, consider applying the following
4135 transformations:
4137 A == 0? A : -A same as -A
4138 A != 0? A : -A same as A
4139 A >= 0? A : -A same as abs (A)
4140 A > 0? A : -A same as abs (A)
4141 A <= 0? A : -A same as -abs (A)
4142 A < 0? A : -A same as -abs (A)
4144 None of these transformations work for modes with signed
4145 zeros. If A is +/-0, the first two transformations will
4146 change the sign of the result (from +0 to -0, or vice
4147 versa). The last four will fix the sign of the result,
4148 even though the original expressions could be positive or
4149 negative, depending on the sign of A.
4151 Note that all these transformations are correct if A is
4152 NaN, since the two alternatives (A and -A) are also NaNs. */
4153 if ((FLOAT_TYPE_P (TREE_TYPE (arg01))
4154 ? real_zerop (arg01)
4155 : integer_zerop (arg01))
4156 && TREE_CODE (arg2) == NEGATE_EXPR
4157 && operand_equal_p (TREE_OPERAND (arg2, 0), arg1, 0))
4158 switch (comp_code)
4160 case EQ_EXPR:
4161 tem = fold_convert (arg1_type, arg1);
4162 return pedantic_non_lvalue (fold_convert (type, negate_expr (tem)));
4163 case NE_EXPR:
4164 return pedantic_non_lvalue (fold_convert (type, arg1));
4165 case GE_EXPR:
4166 case GT_EXPR:
4167 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
4168 arg1 = fold_convert (lang_hooks.types.signed_type
4169 (TREE_TYPE (arg1)), arg1);
4170 tem = fold (build1 (ABS_EXPR, TREE_TYPE (arg1), arg1));
4171 return pedantic_non_lvalue (fold_convert (type, tem));
4172 case LE_EXPR:
4173 case LT_EXPR:
4174 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
4175 arg1 = fold_convert (lang_hooks.types.signed_type
4176 (TREE_TYPE (arg1)), arg1);
4177 tem = fold (build1 (ABS_EXPR, TREE_TYPE (arg1), arg1));
4178 return negate_expr (fold_convert (type, tem));
4179 default:
4180 abort ();
4183 /* A != 0 ? A : 0 is simply A, unless A is -0. Likewise
4184 A == 0 ? A : 0 is always 0 unless A is -0. Note that
4185 both transformations are correct when A is NaN: A != 0
4186 is then true, and A == 0 is false. */
4188 if (integer_zerop (arg01) && integer_zerop (arg2))
4190 if (comp_code == NE_EXPR)
4191 return pedantic_non_lvalue (fold_convert (type, arg1));
4192 else if (comp_code == EQ_EXPR)
4193 return pedantic_non_lvalue (fold_convert (type, integer_zero_node));
4196 /* Try some transformations of A op B ? A : B.
4198 A == B? A : B same as B
4199 A != B? A : B same as A
4200 A >= B? A : B same as max (A, B)
4201 A > B? A : B same as max (B, A)
4202 A <= B? A : B same as min (A, B)
4203 A < B? A : B same as min (B, A)
4205 As above, these transformations don't work in the presence
4206 of signed zeros. For example, if A and B are zeros of
4207 opposite sign, the first two transformations will change
4208 the sign of the result. In the last four, the original
4209 expressions give different results for (A=+0, B=-0) and
4210 (A=-0, B=+0), but the transformed expressions do not.
4212 The first two transformations are correct if either A or B
4213 is a NaN. In the first transformation, the condition will
4214 be false, and B will indeed be chosen. In the case of the
4215 second transformation, the condition A != B will be true,
4216 and A will be chosen.
4218 The conversions to max() and min() are not correct if B is
4219 a number and A is not. The conditions in the original
4220 expressions will be false, so all four give B. The min()
4221 and max() versions would give a NaN instead. */
4222 if (operand_equal_for_comparison_p (arg01, arg2, arg00))
4224 tree comp_op0 = arg00;
4225 tree comp_op1 = arg01;
4226 tree comp_type = TREE_TYPE (comp_op0);
4228 /* Avoid adding NOP_EXPRs in case this is an lvalue. */
4229 if (TYPE_MAIN_VARIANT (comp_type) == TYPE_MAIN_VARIANT (type))
4231 comp_type = type;
4232 comp_op0 = arg1;
4233 comp_op1 = arg2;
4236 switch (comp_code)
4238 case EQ_EXPR:
4239 return pedantic_non_lvalue (fold_convert (type, arg2));
4240 case NE_EXPR:
4241 return pedantic_non_lvalue (fold_convert (type, arg1));
4242 case LE_EXPR:
4243 case LT_EXPR:
4244 /* In C++ a ?: expression can be an lvalue, so put the
4245 operand which will be used if they are equal first
4246 so that we can convert this back to the
4247 corresponding COND_EXPR. */
4248 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4249 return pedantic_non_lvalue (
4250 fold_convert (type, fold (build2 (MIN_EXPR, comp_type,
4251 (comp_code == LE_EXPR
4252 ? comp_op0 : comp_op1),
4253 (comp_code == LE_EXPR
4254 ? comp_op1 : comp_op0)))));
4255 break;
4256 case GE_EXPR:
4257 case GT_EXPR:
4258 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4259 return pedantic_non_lvalue (
4260 fold_convert (type, fold (build2 (MAX_EXPR, comp_type,
4261 (comp_code == GE_EXPR
4262 ? comp_op0 : comp_op1),
4263 (comp_code == GE_EXPR
4264 ? comp_op1 : comp_op0)))));
4265 break;
4266 default:
4267 abort ();
4271 /* If this is A op C1 ? A : C2 with C1 and C2 constant integers,
4272 we might still be able to simplify this. For example,
4273 if C1 is one less or one more than C2, this might have started
4274 out as a MIN or MAX and been transformed by this function.
4275 Only good for INTEGER_TYPEs, because we need TYPE_MAX_VALUE. */
4277 if (INTEGRAL_TYPE_P (type)
4278 && TREE_CODE (arg01) == INTEGER_CST
4279 && TREE_CODE (arg2) == INTEGER_CST)
4280 switch (comp_code)
4282 case EQ_EXPR:
4283 /* We can replace A with C1 in this case. */
4284 arg1 = fold_convert (type, arg01);
4285 return fold (build3 (COND_EXPR, type, arg0, arg1, arg2));
4287 case LT_EXPR:
4288 /* If C1 is C2 + 1, this is min(A, C2). */
4289 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type),
4290 OEP_ONLY_CONST)
4291 && operand_equal_p (arg01,
4292 const_binop (PLUS_EXPR, arg2,
4293 integer_one_node, 0),
4294 OEP_ONLY_CONST))
4295 return pedantic_non_lvalue (fold (build2 (MIN_EXPR,
4296 type, arg1, arg2)));
4297 break;
4299 case LE_EXPR:
4300 /* If C1 is C2 - 1, this is min(A, C2). */
4301 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type),
4302 OEP_ONLY_CONST)
4303 && operand_equal_p (arg01,
4304 const_binop (MINUS_EXPR, arg2,
4305 integer_one_node, 0),
4306 OEP_ONLY_CONST))
4307 return pedantic_non_lvalue (fold (build2 (MIN_EXPR,
4308 type, arg1, arg2)));
4309 break;
4311 case GT_EXPR:
4312 /* If C1 is C2 - 1, this is max(A, C2). */
4313 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type),
4314 OEP_ONLY_CONST)
4315 && operand_equal_p (arg01,
4316 const_binop (MINUS_EXPR, arg2,
4317 integer_one_node, 0),
4318 OEP_ONLY_CONST))
4319 return pedantic_non_lvalue (fold (build2 (MAX_EXPR,
4320 type, arg1, arg2)));
4321 break;
4323 case GE_EXPR:
4324 /* If C1 is C2 + 1, this is max(A, C2). */
4325 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type),
4326 OEP_ONLY_CONST)
4327 && operand_equal_p (arg01,
4328 const_binop (PLUS_EXPR, arg2,
4329 integer_one_node, 0),
4330 OEP_ONLY_CONST))
4331 return pedantic_non_lvalue (fold (build2 (MAX_EXPR,
4332 type, arg1, arg2)));
4333 break;
4334 case NE_EXPR:
4335 break;
4336 default:
4337 abort ();
4340 return NULL_TREE;
4345 #ifndef RANGE_TEST_NON_SHORT_CIRCUIT
4346 #define RANGE_TEST_NON_SHORT_CIRCUIT (BRANCH_COST >= 2)
4347 #endif
4349 /* EXP is some logical combination of boolean tests. See if we can
4350 merge it into some range test. Return the new tree if so. */
4352 static tree
4353 fold_range_test (tree exp)
4355 int or_op = (TREE_CODE (exp) == TRUTH_ORIF_EXPR
4356 || TREE_CODE (exp) == TRUTH_OR_EXPR);
4357 int in0_p, in1_p, in_p;
4358 tree low0, low1, low, high0, high1, high;
4359 tree lhs = make_range (TREE_OPERAND (exp, 0), &in0_p, &low0, &high0);
4360 tree rhs = make_range (TREE_OPERAND (exp, 1), &in1_p, &low1, &high1);
4361 tree tem;
4363 /* If this is an OR operation, invert both sides; we will invert
4364 again at the end. */
4365 if (or_op)
4366 in0_p = ! in0_p, in1_p = ! in1_p;
4368 /* If both expressions are the same, if we can merge the ranges, and we
4369 can build the range test, return it or it inverted. If one of the
4370 ranges is always true or always false, consider it to be the same
4371 expression as the other. */
4372 if ((lhs == 0 || rhs == 0 || operand_equal_p (lhs, rhs, 0))
4373 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
4374 in1_p, low1, high1)
4375 && 0 != (tem = (build_range_check (TREE_TYPE (exp),
4376 lhs != 0 ? lhs
4377 : rhs != 0 ? rhs : integer_zero_node,
4378 in_p, low, high))))
4379 return or_op ? invert_truthvalue (tem) : tem;
4381 /* On machines where the branch cost is expensive, if this is a
4382 short-circuited branch and the underlying object on both sides
4383 is the same, make a non-short-circuit operation. */
4384 else if (RANGE_TEST_NON_SHORT_CIRCUIT
4385 && lhs != 0 && rhs != 0
4386 && (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
4387 || TREE_CODE (exp) == TRUTH_ORIF_EXPR)
4388 && operand_equal_p (lhs, rhs, 0))
4390 /* If simple enough, just rewrite. Otherwise, make a SAVE_EXPR
4391 unless we are at top level or LHS contains a PLACEHOLDER_EXPR, in
4392 which cases we can't do this. */
4393 if (simple_operand_p (lhs))
4394 return build2 (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
4395 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
4396 TREE_TYPE (exp), TREE_OPERAND (exp, 0),
4397 TREE_OPERAND (exp, 1));
4399 else if (lang_hooks.decls.global_bindings_p () == 0
4400 && ! CONTAINS_PLACEHOLDER_P (lhs))
4402 tree common = save_expr (lhs);
4404 if (0 != (lhs = build_range_check (TREE_TYPE (exp), common,
4405 or_op ? ! in0_p : in0_p,
4406 low0, high0))
4407 && (0 != (rhs = build_range_check (TREE_TYPE (exp), common,
4408 or_op ? ! in1_p : in1_p,
4409 low1, high1))))
4410 return build2 (TREE_CODE (exp) == TRUTH_ANDIF_EXPR
4411 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
4412 TREE_TYPE (exp), lhs, rhs);
4416 return 0;
4419 /* Subroutine for fold_truthop: C is an INTEGER_CST interpreted as a P
4420 bit value. Arrange things so the extra bits will be set to zero if and
4421 only if C is signed-extended to its full width. If MASK is nonzero,
4422 it is an INTEGER_CST that should be AND'ed with the extra bits. */
4424 static tree
4425 unextend (tree c, int p, int unsignedp, tree mask)
4427 tree type = TREE_TYPE (c);
4428 int modesize = GET_MODE_BITSIZE (TYPE_MODE (type));
4429 tree temp;
4431 if (p == modesize || unsignedp)
4432 return c;
4434 /* We work by getting just the sign bit into the low-order bit, then
4435 into the high-order bit, then sign-extend. We then XOR that value
4436 with C. */
4437 temp = const_binop (RSHIFT_EXPR, c, size_int (p - 1), 0);
4438 temp = const_binop (BIT_AND_EXPR, temp, size_int (1), 0);
4440 /* We must use a signed type in order to get an arithmetic right shift.
4441 However, we must also avoid introducing accidental overflows, so that
4442 a subsequent call to integer_zerop will work. Hence we must
4443 do the type conversion here. At this point, the constant is either
4444 zero or one, and the conversion to a signed type can never overflow.
4445 We could get an overflow if this conversion is done anywhere else. */
4446 if (TYPE_UNSIGNED (type))
4447 temp = fold_convert (lang_hooks.types.signed_type (type), temp);
4449 temp = const_binop (LSHIFT_EXPR, temp, size_int (modesize - 1), 0);
4450 temp = const_binop (RSHIFT_EXPR, temp, size_int (modesize - p - 1), 0);
4451 if (mask != 0)
4452 temp = const_binop (BIT_AND_EXPR, temp,
4453 fold_convert (TREE_TYPE (c), mask), 0);
4454 /* If necessary, convert the type back to match the type of C. */
4455 if (TYPE_UNSIGNED (type))
4456 temp = fold_convert (type, temp);
4458 return fold_convert (type, const_binop (BIT_XOR_EXPR, c, temp, 0));
4461 /* Find ways of folding logical expressions of LHS and RHS:
4462 Try to merge two comparisons to the same innermost item.
4463 Look for range tests like "ch >= '0' && ch <= '9'".
4464 Look for combinations of simple terms on machines with expensive branches
4465 and evaluate the RHS unconditionally.
4467 For example, if we have p->a == 2 && p->b == 4 and we can make an
4468 object large enough to span both A and B, we can do this with a comparison
4469 against the object ANDed with the a mask.
4471 If we have p->a == q->a && p->b == q->b, we may be able to use bit masking
4472 operations to do this with one comparison.
4474 We check for both normal comparisons and the BIT_AND_EXPRs made this by
4475 function and the one above.
4477 CODE is the logical operation being done. It can be TRUTH_ANDIF_EXPR,
4478 TRUTH_AND_EXPR, TRUTH_ORIF_EXPR, or TRUTH_OR_EXPR.
4480 TRUTH_TYPE is the type of the logical operand and LHS and RHS are its
4481 two operands.
4483 We return the simplified tree or 0 if no optimization is possible. */
4485 static tree
4486 fold_truthop (enum tree_code code, tree truth_type, tree lhs, tree rhs)
4488 /* If this is the "or" of two comparisons, we can do something if
4489 the comparisons are NE_EXPR. If this is the "and", we can do something
4490 if the comparisons are EQ_EXPR. I.e.,
4491 (a->b == 2 && a->c == 4) can become (a->new == NEW).
4493 WANTED_CODE is this operation code. For single bit fields, we can
4494 convert EQ_EXPR to NE_EXPR so we need not reject the "wrong"
4495 comparison for one-bit fields. */
4497 enum tree_code wanted_code;
4498 enum tree_code lcode, rcode;
4499 tree ll_arg, lr_arg, rl_arg, rr_arg;
4500 tree ll_inner, lr_inner, rl_inner, rr_inner;
4501 HOST_WIDE_INT ll_bitsize, ll_bitpos, lr_bitsize, lr_bitpos;
4502 HOST_WIDE_INT rl_bitsize, rl_bitpos, rr_bitsize, rr_bitpos;
4503 HOST_WIDE_INT xll_bitpos, xlr_bitpos, xrl_bitpos, xrr_bitpos;
4504 HOST_WIDE_INT lnbitsize, lnbitpos, rnbitsize, rnbitpos;
4505 int ll_unsignedp, lr_unsignedp, rl_unsignedp, rr_unsignedp;
4506 enum machine_mode ll_mode, lr_mode, rl_mode, rr_mode;
4507 enum machine_mode lnmode, rnmode;
4508 tree ll_mask, lr_mask, rl_mask, rr_mask;
4509 tree ll_and_mask, lr_and_mask, rl_and_mask, rr_and_mask;
4510 tree l_const, r_const;
4511 tree lntype, rntype, result;
4512 int first_bit, end_bit;
4513 int volatilep;
4515 /* Start by getting the comparison codes. Fail if anything is volatile.
4516 If one operand is a BIT_AND_EXPR with the constant one, treat it as if
4517 it were surrounded with a NE_EXPR. */
4519 if (TREE_SIDE_EFFECTS (lhs) || TREE_SIDE_EFFECTS (rhs))
4520 return 0;
4522 lcode = TREE_CODE (lhs);
4523 rcode = TREE_CODE (rhs);
4525 if (lcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (lhs, 1)))
4527 lhs = build2 (NE_EXPR, truth_type, lhs, integer_zero_node);
4528 lcode = NE_EXPR;
4531 if (rcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (rhs, 1)))
4533 rhs = build2 (NE_EXPR, truth_type, rhs, integer_zero_node);
4534 rcode = NE_EXPR;
4537 if (TREE_CODE_CLASS (lcode) != '<' || TREE_CODE_CLASS (rcode) != '<')
4538 return 0;
4540 ll_arg = TREE_OPERAND (lhs, 0);
4541 lr_arg = TREE_OPERAND (lhs, 1);
4542 rl_arg = TREE_OPERAND (rhs, 0);
4543 rr_arg = TREE_OPERAND (rhs, 1);
4545 /* Simplify (x<y) && (x==y) into (x<=y) and related optimizations. */
4546 if (simple_operand_p (ll_arg)
4547 && simple_operand_p (lr_arg))
4549 tree result;
4550 if (operand_equal_p (ll_arg, rl_arg, 0)
4551 && operand_equal_p (lr_arg, rr_arg, 0))
4553 result = combine_comparisons (code, lcode, rcode,
4554 truth_type, ll_arg, lr_arg);
4555 if (result)
4556 return result;
4558 else if (operand_equal_p (ll_arg, rr_arg, 0)
4559 && operand_equal_p (lr_arg, rl_arg, 0))
4561 result = combine_comparisons (code, lcode,
4562 swap_tree_comparison (rcode),
4563 truth_type, ll_arg, lr_arg);
4564 if (result)
4565 return result;
4569 code = ((code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR)
4570 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR);
4572 /* If the RHS can be evaluated unconditionally and its operands are
4573 simple, it wins to evaluate the RHS unconditionally on machines
4574 with expensive branches. In this case, this isn't a comparison
4575 that can be merged. Avoid doing this if the RHS is a floating-point
4576 comparison since those can trap. */
4578 if (BRANCH_COST >= 2
4579 && ! FLOAT_TYPE_P (TREE_TYPE (rl_arg))
4580 && simple_operand_p (rl_arg)
4581 && simple_operand_p (rr_arg))
4583 /* Convert (a != 0) || (b != 0) into (a | b) != 0. */
4584 if (code == TRUTH_OR_EXPR
4585 && lcode == NE_EXPR && integer_zerop (lr_arg)
4586 && rcode == NE_EXPR && integer_zerop (rr_arg)
4587 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg))
4588 return build2 (NE_EXPR, truth_type,
4589 build2 (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
4590 ll_arg, rl_arg),
4591 fold_convert (TREE_TYPE (ll_arg), integer_zero_node));
4593 /* Convert (a == 0) && (b == 0) into (a | b) == 0. */
4594 if (code == TRUTH_AND_EXPR
4595 && lcode == EQ_EXPR && integer_zerop (lr_arg)
4596 && rcode == EQ_EXPR && integer_zerop (rr_arg)
4597 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg))
4598 return build2 (EQ_EXPR, truth_type,
4599 build2 (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
4600 ll_arg, rl_arg),
4601 fold_convert (TREE_TYPE (ll_arg), integer_zero_node));
4603 return build2 (code, truth_type, lhs, rhs);
4606 /* See if the comparisons can be merged. Then get all the parameters for
4607 each side. */
4609 if ((lcode != EQ_EXPR && lcode != NE_EXPR)
4610 || (rcode != EQ_EXPR && rcode != NE_EXPR))
4611 return 0;
4613 volatilep = 0;
4614 ll_inner = decode_field_reference (ll_arg,
4615 &ll_bitsize, &ll_bitpos, &ll_mode,
4616 &ll_unsignedp, &volatilep, &ll_mask,
4617 &ll_and_mask);
4618 lr_inner = decode_field_reference (lr_arg,
4619 &lr_bitsize, &lr_bitpos, &lr_mode,
4620 &lr_unsignedp, &volatilep, &lr_mask,
4621 &lr_and_mask);
4622 rl_inner = decode_field_reference (rl_arg,
4623 &rl_bitsize, &rl_bitpos, &rl_mode,
4624 &rl_unsignedp, &volatilep, &rl_mask,
4625 &rl_and_mask);
4626 rr_inner = decode_field_reference (rr_arg,
4627 &rr_bitsize, &rr_bitpos, &rr_mode,
4628 &rr_unsignedp, &volatilep, &rr_mask,
4629 &rr_and_mask);
4631 /* It must be true that the inner operation on the lhs of each
4632 comparison must be the same if we are to be able to do anything.
4633 Then see if we have constants. If not, the same must be true for
4634 the rhs's. */
4635 if (volatilep || ll_inner == 0 || rl_inner == 0
4636 || ! operand_equal_p (ll_inner, rl_inner, 0))
4637 return 0;
4639 if (TREE_CODE (lr_arg) == INTEGER_CST
4640 && TREE_CODE (rr_arg) == INTEGER_CST)
4641 l_const = lr_arg, r_const = rr_arg;
4642 else if (lr_inner == 0 || rr_inner == 0
4643 || ! operand_equal_p (lr_inner, rr_inner, 0))
4644 return 0;
4645 else
4646 l_const = r_const = 0;
4648 /* If either comparison code is not correct for our logical operation,
4649 fail. However, we can convert a one-bit comparison against zero into
4650 the opposite comparison against that bit being set in the field. */
4652 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR);
4653 if (lcode != wanted_code)
4655 if (l_const && integer_zerop (l_const) && integer_pow2p (ll_mask))
4657 /* Make the left operand unsigned, since we are only interested
4658 in the value of one bit. Otherwise we are doing the wrong
4659 thing below. */
4660 ll_unsignedp = 1;
4661 l_const = ll_mask;
4663 else
4664 return 0;
4667 /* This is analogous to the code for l_const above. */
4668 if (rcode != wanted_code)
4670 if (r_const && integer_zerop (r_const) && integer_pow2p (rl_mask))
4672 rl_unsignedp = 1;
4673 r_const = rl_mask;
4675 else
4676 return 0;
4679 /* After this point all optimizations will generate bit-field
4680 references, which we might not want. */
4681 if (! lang_hooks.can_use_bit_fields_p ())
4682 return 0;
4684 /* See if we can find a mode that contains both fields being compared on
4685 the left. If we can't, fail. Otherwise, update all constants and masks
4686 to be relative to a field of that size. */
4687 first_bit = MIN (ll_bitpos, rl_bitpos);
4688 end_bit = MAX (ll_bitpos + ll_bitsize, rl_bitpos + rl_bitsize);
4689 lnmode = get_best_mode (end_bit - first_bit, first_bit,
4690 TYPE_ALIGN (TREE_TYPE (ll_inner)), word_mode,
4691 volatilep);
4692 if (lnmode == VOIDmode)
4693 return 0;
4695 lnbitsize = GET_MODE_BITSIZE (lnmode);
4696 lnbitpos = first_bit & ~ (lnbitsize - 1);
4697 lntype = lang_hooks.types.type_for_size (lnbitsize, 1);
4698 xll_bitpos = ll_bitpos - lnbitpos, xrl_bitpos = rl_bitpos - lnbitpos;
4700 if (BYTES_BIG_ENDIAN)
4702 xll_bitpos = lnbitsize - xll_bitpos - ll_bitsize;
4703 xrl_bitpos = lnbitsize - xrl_bitpos - rl_bitsize;
4706 ll_mask = const_binop (LSHIFT_EXPR, fold_convert (lntype, ll_mask),
4707 size_int (xll_bitpos), 0);
4708 rl_mask = const_binop (LSHIFT_EXPR, fold_convert (lntype, rl_mask),
4709 size_int (xrl_bitpos), 0);
4711 if (l_const)
4713 l_const = fold_convert (lntype, l_const);
4714 l_const = unextend (l_const, ll_bitsize, ll_unsignedp, ll_and_mask);
4715 l_const = const_binop (LSHIFT_EXPR, l_const, size_int (xll_bitpos), 0);
4716 if (! integer_zerop (const_binop (BIT_AND_EXPR, l_const,
4717 fold (build1 (BIT_NOT_EXPR,
4718 lntype, ll_mask)),
4719 0)))
4721 warning ("comparison is always %d", wanted_code == NE_EXPR);
4723 return constant_boolean_node (wanted_code == NE_EXPR, truth_type);
4726 if (r_const)
4728 r_const = fold_convert (lntype, r_const);
4729 r_const = unextend (r_const, rl_bitsize, rl_unsignedp, rl_and_mask);
4730 r_const = const_binop (LSHIFT_EXPR, r_const, size_int (xrl_bitpos), 0);
4731 if (! integer_zerop (const_binop (BIT_AND_EXPR, r_const,
4732 fold (build1 (BIT_NOT_EXPR,
4733 lntype, rl_mask)),
4734 0)))
4736 warning ("comparison is always %d", wanted_code == NE_EXPR);
4738 return constant_boolean_node (wanted_code == NE_EXPR, truth_type);
4742 /* If the right sides are not constant, do the same for it. Also,
4743 disallow this optimization if a size or signedness mismatch occurs
4744 between the left and right sides. */
4745 if (l_const == 0)
4747 if (ll_bitsize != lr_bitsize || rl_bitsize != rr_bitsize
4748 || ll_unsignedp != lr_unsignedp || rl_unsignedp != rr_unsignedp
4749 /* Make sure the two fields on the right
4750 correspond to the left without being swapped. */
4751 || ll_bitpos - rl_bitpos != lr_bitpos - rr_bitpos)
4752 return 0;
4754 first_bit = MIN (lr_bitpos, rr_bitpos);
4755 end_bit = MAX (lr_bitpos + lr_bitsize, rr_bitpos + rr_bitsize);
4756 rnmode = get_best_mode (end_bit - first_bit, first_bit,
4757 TYPE_ALIGN (TREE_TYPE (lr_inner)), word_mode,
4758 volatilep);
4759 if (rnmode == VOIDmode)
4760 return 0;
4762 rnbitsize = GET_MODE_BITSIZE (rnmode);
4763 rnbitpos = first_bit & ~ (rnbitsize - 1);
4764 rntype = lang_hooks.types.type_for_size (rnbitsize, 1);
4765 xlr_bitpos = lr_bitpos - rnbitpos, xrr_bitpos = rr_bitpos - rnbitpos;
4767 if (BYTES_BIG_ENDIAN)
4769 xlr_bitpos = rnbitsize - xlr_bitpos - lr_bitsize;
4770 xrr_bitpos = rnbitsize - xrr_bitpos - rr_bitsize;
4773 lr_mask = const_binop (LSHIFT_EXPR, fold_convert (rntype, lr_mask),
4774 size_int (xlr_bitpos), 0);
4775 rr_mask = const_binop (LSHIFT_EXPR, fold_convert (rntype, rr_mask),
4776 size_int (xrr_bitpos), 0);
4778 /* Make a mask that corresponds to both fields being compared.
4779 Do this for both items being compared. If the operands are the
4780 same size and the bits being compared are in the same position
4781 then we can do this by masking both and comparing the masked
4782 results. */
4783 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask, 0);
4784 lr_mask = const_binop (BIT_IOR_EXPR, lr_mask, rr_mask, 0);
4785 if (lnbitsize == rnbitsize && xll_bitpos == xlr_bitpos)
4787 lhs = make_bit_field_ref (ll_inner, lntype, lnbitsize, lnbitpos,
4788 ll_unsignedp || rl_unsignedp);
4789 if (! all_ones_mask_p (ll_mask, lnbitsize))
4790 lhs = build2 (BIT_AND_EXPR, lntype, lhs, ll_mask);
4792 rhs = make_bit_field_ref (lr_inner, rntype, rnbitsize, rnbitpos,
4793 lr_unsignedp || rr_unsignedp);
4794 if (! all_ones_mask_p (lr_mask, rnbitsize))
4795 rhs = build2 (BIT_AND_EXPR, rntype, rhs, lr_mask);
4797 return build2 (wanted_code, truth_type, lhs, rhs);
4800 /* There is still another way we can do something: If both pairs of
4801 fields being compared are adjacent, we may be able to make a wider
4802 field containing them both.
4804 Note that we still must mask the lhs/rhs expressions. Furthermore,
4805 the mask must be shifted to account for the shift done by
4806 make_bit_field_ref. */
4807 if ((ll_bitsize + ll_bitpos == rl_bitpos
4808 && lr_bitsize + lr_bitpos == rr_bitpos)
4809 || (ll_bitpos == rl_bitpos + rl_bitsize
4810 && lr_bitpos == rr_bitpos + rr_bitsize))
4812 tree type;
4814 lhs = make_bit_field_ref (ll_inner, lntype, ll_bitsize + rl_bitsize,
4815 MIN (ll_bitpos, rl_bitpos), ll_unsignedp);
4816 rhs = make_bit_field_ref (lr_inner, rntype, lr_bitsize + rr_bitsize,
4817 MIN (lr_bitpos, rr_bitpos), lr_unsignedp);
4819 ll_mask = const_binop (RSHIFT_EXPR, ll_mask,
4820 size_int (MIN (xll_bitpos, xrl_bitpos)), 0);
4821 lr_mask = const_binop (RSHIFT_EXPR, lr_mask,
4822 size_int (MIN (xlr_bitpos, xrr_bitpos)), 0);
4824 /* Convert to the smaller type before masking out unwanted bits. */
4825 type = lntype;
4826 if (lntype != rntype)
4828 if (lnbitsize > rnbitsize)
4830 lhs = fold_convert (rntype, lhs);
4831 ll_mask = fold_convert (rntype, ll_mask);
4832 type = rntype;
4834 else if (lnbitsize < rnbitsize)
4836 rhs = fold_convert (lntype, rhs);
4837 lr_mask = fold_convert (lntype, lr_mask);
4838 type = lntype;
4842 if (! all_ones_mask_p (ll_mask, ll_bitsize + rl_bitsize))
4843 lhs = build2 (BIT_AND_EXPR, type, lhs, ll_mask);
4845 if (! all_ones_mask_p (lr_mask, lr_bitsize + rr_bitsize))
4846 rhs = build2 (BIT_AND_EXPR, type, rhs, lr_mask);
4848 return build2 (wanted_code, truth_type, lhs, rhs);
4851 return 0;
4854 /* Handle the case of comparisons with constants. If there is something in
4855 common between the masks, those bits of the constants must be the same.
4856 If not, the condition is always false. Test for this to avoid generating
4857 incorrect code below. */
4858 result = const_binop (BIT_AND_EXPR, ll_mask, rl_mask, 0);
4859 if (! integer_zerop (result)
4860 && simple_cst_equal (const_binop (BIT_AND_EXPR, result, l_const, 0),
4861 const_binop (BIT_AND_EXPR, result, r_const, 0)) != 1)
4863 if (wanted_code == NE_EXPR)
4865 warning ("`or' of unmatched not-equal tests is always 1");
4866 return constant_boolean_node (true, truth_type);
4868 else
4870 warning ("`and' of mutually exclusive equal-tests is always 0");
4871 return constant_boolean_node (false, truth_type);
4875 /* Construct the expression we will return. First get the component
4876 reference we will make. Unless the mask is all ones the width of
4877 that field, perform the mask operation. Then compare with the
4878 merged constant. */
4879 result = make_bit_field_ref (ll_inner, lntype, lnbitsize, lnbitpos,
4880 ll_unsignedp || rl_unsignedp);
4882 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask, 0);
4883 if (! all_ones_mask_p (ll_mask, lnbitsize))
4884 result = build2 (BIT_AND_EXPR, lntype, result, ll_mask);
4886 return build2 (wanted_code, truth_type, result,
4887 const_binop (BIT_IOR_EXPR, l_const, r_const, 0));
4890 /* Optimize T, which is a comparison of a MIN_EXPR or MAX_EXPR with a
4891 constant. */
4893 static tree
4894 optimize_minmax_comparison (tree t)
4896 tree type = TREE_TYPE (t);
4897 tree arg0 = TREE_OPERAND (t, 0);
4898 enum tree_code op_code;
4899 tree comp_const = TREE_OPERAND (t, 1);
4900 tree minmax_const;
4901 int consts_equal, consts_lt;
4902 tree inner;
4904 STRIP_SIGN_NOPS (arg0);
4906 op_code = TREE_CODE (arg0);
4907 minmax_const = TREE_OPERAND (arg0, 1);
4908 consts_equal = tree_int_cst_equal (minmax_const, comp_const);
4909 consts_lt = tree_int_cst_lt (minmax_const, comp_const);
4910 inner = TREE_OPERAND (arg0, 0);
4912 /* If something does not permit us to optimize, return the original tree. */
4913 if ((op_code != MIN_EXPR && op_code != MAX_EXPR)
4914 || TREE_CODE (comp_const) != INTEGER_CST
4915 || TREE_CONSTANT_OVERFLOW (comp_const)
4916 || TREE_CODE (minmax_const) != INTEGER_CST
4917 || TREE_CONSTANT_OVERFLOW (minmax_const))
4918 return t;
4920 /* Now handle all the various comparison codes. We only handle EQ_EXPR
4921 and GT_EXPR, doing the rest with recursive calls using logical
4922 simplifications. */
4923 switch (TREE_CODE (t))
4925 case NE_EXPR: case LT_EXPR: case LE_EXPR:
4926 return
4927 invert_truthvalue (optimize_minmax_comparison (invert_truthvalue (t)));
4929 case GE_EXPR:
4930 return
4931 fold (build2 (TRUTH_ORIF_EXPR, type,
4932 optimize_minmax_comparison
4933 (build2 (EQ_EXPR, type, arg0, comp_const)),
4934 optimize_minmax_comparison
4935 (build2 (GT_EXPR, type, arg0, comp_const))));
4937 case EQ_EXPR:
4938 if (op_code == MAX_EXPR && consts_equal)
4939 /* MAX (X, 0) == 0 -> X <= 0 */
4940 return fold (build2 (LE_EXPR, type, inner, comp_const));
4942 else if (op_code == MAX_EXPR && consts_lt)
4943 /* MAX (X, 0) == 5 -> X == 5 */
4944 return fold (build2 (EQ_EXPR, type, inner, comp_const));
4946 else if (op_code == MAX_EXPR)
4947 /* MAX (X, 0) == -1 -> false */
4948 return omit_one_operand (type, integer_zero_node, inner);
4950 else if (consts_equal)
4951 /* MIN (X, 0) == 0 -> X >= 0 */
4952 return fold (build2 (GE_EXPR, type, inner, comp_const));
4954 else if (consts_lt)
4955 /* MIN (X, 0) == 5 -> false */
4956 return omit_one_operand (type, integer_zero_node, inner);
4958 else
4959 /* MIN (X, 0) == -1 -> X == -1 */
4960 return fold (build2 (EQ_EXPR, type, inner, comp_const));
4962 case GT_EXPR:
4963 if (op_code == MAX_EXPR && (consts_equal || consts_lt))
4964 /* MAX (X, 0) > 0 -> X > 0
4965 MAX (X, 0) > 5 -> X > 5 */
4966 return fold (build2 (GT_EXPR, type, inner, comp_const));
4968 else if (op_code == MAX_EXPR)
4969 /* MAX (X, 0) > -1 -> true */
4970 return omit_one_operand (type, integer_one_node, inner);
4972 else if (op_code == MIN_EXPR && (consts_equal || consts_lt))
4973 /* MIN (X, 0) > 0 -> false
4974 MIN (X, 0) > 5 -> false */
4975 return omit_one_operand (type, integer_zero_node, inner);
4977 else
4978 /* MIN (X, 0) > -1 -> X > -1 */
4979 return fold (build2 (GT_EXPR, type, inner, comp_const));
4981 default:
4982 return t;
4986 /* T is an integer expression that is being multiplied, divided, or taken a
4987 modulus (CODE says which and what kind of divide or modulus) by a
4988 constant C. See if we can eliminate that operation by folding it with
4989 other operations already in T. WIDE_TYPE, if non-null, is a type that
4990 should be used for the computation if wider than our type.
4992 For example, if we are dividing (X * 8) + (Y * 16) by 4, we can return
4993 (X * 2) + (Y * 4). We must, however, be assured that either the original
4994 expression would not overflow or that overflow is undefined for the type
4995 in the language in question.
4997 We also canonicalize (X + 7) * 4 into X * 4 + 28 in the hope that either
4998 the machine has a multiply-accumulate insn or that this is part of an
4999 addressing calculation.
5001 If we return a non-null expression, it is an equivalent form of the
5002 original computation, but need not be in the original type. */
5004 static tree
5005 extract_muldiv (tree t, tree c, enum tree_code code, tree wide_type)
5007 /* To avoid exponential search depth, refuse to allow recursion past
5008 three levels. Beyond that (1) it's highly unlikely that we'll find
5009 something interesting and (2) we've probably processed it before
5010 when we built the inner expression. */
5012 static int depth;
5013 tree ret;
5015 if (depth > 3)
5016 return NULL;
5018 depth++;
5019 ret = extract_muldiv_1 (t, c, code, wide_type);
5020 depth--;
5022 return ret;
5025 static tree
5026 extract_muldiv_1 (tree t, tree c, enum tree_code code, tree wide_type)
5028 tree type = TREE_TYPE (t);
5029 enum tree_code tcode = TREE_CODE (t);
5030 tree ctype = (wide_type != 0 && (GET_MODE_SIZE (TYPE_MODE (wide_type))
5031 > GET_MODE_SIZE (TYPE_MODE (type)))
5032 ? wide_type : type);
5033 tree t1, t2;
5034 int same_p = tcode == code;
5035 tree op0 = NULL_TREE, op1 = NULL_TREE;
5037 /* Don't deal with constants of zero here; they confuse the code below. */
5038 if (integer_zerop (c))
5039 return NULL_TREE;
5041 if (TREE_CODE_CLASS (tcode) == '1')
5042 op0 = TREE_OPERAND (t, 0);
5044 if (TREE_CODE_CLASS (tcode) == '2')
5045 op0 = TREE_OPERAND (t, 0), op1 = TREE_OPERAND (t, 1);
5047 /* Note that we need not handle conditional operations here since fold
5048 already handles those cases. So just do arithmetic here. */
5049 switch (tcode)
5051 case INTEGER_CST:
5052 /* For a constant, we can always simplify if we are a multiply
5053 or (for divide and modulus) if it is a multiple of our constant. */
5054 if (code == MULT_EXPR
5055 || integer_zerop (const_binop (TRUNC_MOD_EXPR, t, c, 0)))
5056 return const_binop (code, fold_convert (ctype, t),
5057 fold_convert (ctype, c), 0);
5058 break;
5060 case CONVERT_EXPR: case NON_LVALUE_EXPR: case NOP_EXPR:
5061 /* If op0 is an expression ... */
5062 if ((TREE_CODE_CLASS (TREE_CODE (op0)) == '<'
5063 || TREE_CODE_CLASS (TREE_CODE (op0)) == '1'
5064 || TREE_CODE_CLASS (TREE_CODE (op0)) == '2'
5065 || TREE_CODE_CLASS (TREE_CODE (op0)) == 'e')
5066 /* ... and is unsigned, and its type is smaller than ctype,
5067 then we cannot pass through as widening. */
5068 && ((TYPE_UNSIGNED (TREE_TYPE (op0))
5069 && ! (TREE_CODE (TREE_TYPE (op0)) == INTEGER_TYPE
5070 && TYPE_IS_SIZETYPE (TREE_TYPE (op0)))
5071 && (GET_MODE_SIZE (TYPE_MODE (ctype))
5072 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))))
5073 /* ... or its type is larger than ctype,
5074 then we cannot pass through this truncation. */
5075 || (GET_MODE_SIZE (TYPE_MODE (ctype))
5076 < GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0))))
5077 /* ... or signedness changes for division or modulus,
5078 then we cannot pass through this conversion. */
5079 || (code != MULT_EXPR
5080 && (TYPE_UNSIGNED (ctype)
5081 != TYPE_UNSIGNED (TREE_TYPE (op0))))))
5082 break;
5084 /* Pass the constant down and see if we can make a simplification. If
5085 we can, replace this expression with the inner simplification for
5086 possible later conversion to our or some other type. */
5087 if ((t2 = fold_convert (TREE_TYPE (op0), c)) != 0
5088 && TREE_CODE (t2) == INTEGER_CST
5089 && ! TREE_CONSTANT_OVERFLOW (t2)
5090 && (0 != (t1 = extract_muldiv (op0, t2, code,
5091 code == MULT_EXPR
5092 ? ctype : NULL_TREE))))
5093 return t1;
5094 break;
5096 case NEGATE_EXPR: case ABS_EXPR:
5097 if ((t1 = extract_muldiv (op0, c, code, wide_type)) != 0)
5098 return fold (build1 (tcode, ctype, fold_convert (ctype, t1)));
5099 break;
5101 case MIN_EXPR: case MAX_EXPR:
5102 /* If widening the type changes the signedness, then we can't perform
5103 this optimization as that changes the result. */
5104 if (TYPE_UNSIGNED (ctype) != TYPE_UNSIGNED (type))
5105 break;
5107 /* MIN (a, b) / 5 -> MIN (a / 5, b / 5) */
5108 if ((t1 = extract_muldiv (op0, c, code, wide_type)) != 0
5109 && (t2 = extract_muldiv (op1, c, code, wide_type)) != 0)
5111 if (tree_int_cst_sgn (c) < 0)
5112 tcode = (tcode == MIN_EXPR ? MAX_EXPR : MIN_EXPR);
5114 return fold (build2 (tcode, ctype, fold_convert (ctype, t1),
5115 fold_convert (ctype, t2)));
5117 break;
5119 case LSHIFT_EXPR: case RSHIFT_EXPR:
5120 /* If the second operand is constant, this is a multiplication
5121 or floor division, by a power of two, so we can treat it that
5122 way unless the multiplier or divisor overflows. */
5123 if (TREE_CODE (op1) == INTEGER_CST
5124 /* const_binop may not detect overflow correctly,
5125 so check for it explicitly here. */
5126 && TYPE_PRECISION (TREE_TYPE (size_one_node)) > TREE_INT_CST_LOW (op1)
5127 && TREE_INT_CST_HIGH (op1) == 0
5128 && 0 != (t1 = fold_convert (ctype,
5129 const_binop (LSHIFT_EXPR,
5130 size_one_node,
5131 op1, 0)))
5132 && ! TREE_OVERFLOW (t1))
5133 return extract_muldiv (build2 (tcode == LSHIFT_EXPR
5134 ? MULT_EXPR : FLOOR_DIV_EXPR,
5135 ctype, fold_convert (ctype, op0), t1),
5136 c, code, wide_type);
5137 break;
5139 case PLUS_EXPR: case MINUS_EXPR:
5140 /* See if we can eliminate the operation on both sides. If we can, we
5141 can return a new PLUS or MINUS. If we can't, the only remaining
5142 cases where we can do anything are if the second operand is a
5143 constant. */
5144 t1 = extract_muldiv (op0, c, code, wide_type);
5145 t2 = extract_muldiv (op1, c, code, wide_type);
5146 if (t1 != 0 && t2 != 0
5147 && (code == MULT_EXPR
5148 /* If not multiplication, we can only do this if both operands
5149 are divisible by c. */
5150 || (multiple_of_p (ctype, op0, c)
5151 && multiple_of_p (ctype, op1, c))))
5152 return fold (build2 (tcode, ctype, fold_convert (ctype, t1),
5153 fold_convert (ctype, t2)));
5155 /* If this was a subtraction, negate OP1 and set it to be an addition.
5156 This simplifies the logic below. */
5157 if (tcode == MINUS_EXPR)
5158 tcode = PLUS_EXPR, op1 = negate_expr (op1);
5160 if (TREE_CODE (op1) != INTEGER_CST)
5161 break;
5163 /* If either OP1 or C are negative, this optimization is not safe for
5164 some of the division and remainder types while for others we need
5165 to change the code. */
5166 if (tree_int_cst_sgn (op1) < 0 || tree_int_cst_sgn (c) < 0)
5168 if (code == CEIL_DIV_EXPR)
5169 code = FLOOR_DIV_EXPR;
5170 else if (code == FLOOR_DIV_EXPR)
5171 code = CEIL_DIV_EXPR;
5172 else if (code != MULT_EXPR
5173 && code != CEIL_MOD_EXPR && code != FLOOR_MOD_EXPR)
5174 break;
5177 /* If it's a multiply or a division/modulus operation of a multiple
5178 of our constant, do the operation and verify it doesn't overflow. */
5179 if (code == MULT_EXPR
5180 || integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
5182 op1 = const_binop (code, fold_convert (ctype, op1),
5183 fold_convert (ctype, c), 0);
5184 /* We allow the constant to overflow with wrapping semantics. */
5185 if (op1 == 0
5186 || (TREE_OVERFLOW (op1) && ! flag_wrapv))
5187 break;
5189 else
5190 break;
5192 /* If we have an unsigned type is not a sizetype, we cannot widen
5193 the operation since it will change the result if the original
5194 computation overflowed. */
5195 if (TYPE_UNSIGNED (ctype)
5196 && ! (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype))
5197 && ctype != type)
5198 break;
5200 /* If we were able to eliminate our operation from the first side,
5201 apply our operation to the second side and reform the PLUS. */
5202 if (t1 != 0 && (TREE_CODE (t1) != code || code == MULT_EXPR))
5203 return fold (build2 (tcode, ctype, fold_convert (ctype, t1), op1));
5205 /* The last case is if we are a multiply. In that case, we can
5206 apply the distributive law to commute the multiply and addition
5207 if the multiplication of the constants doesn't overflow. */
5208 if (code == MULT_EXPR)
5209 return fold (build2 (tcode, ctype,
5210 fold (build2 (code, ctype,
5211 fold_convert (ctype, op0),
5212 fold_convert (ctype, c))),
5213 op1));
5215 break;
5217 case MULT_EXPR:
5218 /* We have a special case here if we are doing something like
5219 (C * 8) % 4 since we know that's zero. */
5220 if ((code == TRUNC_MOD_EXPR || code == CEIL_MOD_EXPR
5221 || code == FLOOR_MOD_EXPR || code == ROUND_MOD_EXPR)
5222 && TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST
5223 && integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
5224 return omit_one_operand (type, integer_zero_node, op0);
5226 /* ... fall through ... */
5228 case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR:
5229 case ROUND_DIV_EXPR: case EXACT_DIV_EXPR:
5230 /* If we can extract our operation from the LHS, do so and return a
5231 new operation. Likewise for the RHS from a MULT_EXPR. Otherwise,
5232 do something only if the second operand is a constant. */
5233 if (same_p
5234 && (t1 = extract_muldiv (op0, c, code, wide_type)) != 0)
5235 return fold (build2 (tcode, ctype, fold_convert (ctype, t1),
5236 fold_convert (ctype, op1)));
5237 else if (tcode == MULT_EXPR && code == MULT_EXPR
5238 && (t1 = extract_muldiv (op1, c, code, wide_type)) != 0)
5239 return fold (build2 (tcode, ctype, fold_convert (ctype, op0),
5240 fold_convert (ctype, t1)));
5241 else if (TREE_CODE (op1) != INTEGER_CST)
5242 return 0;
5244 /* If these are the same operation types, we can associate them
5245 assuming no overflow. */
5246 if (tcode == code
5247 && 0 != (t1 = const_binop (MULT_EXPR, fold_convert (ctype, op1),
5248 fold_convert (ctype, c), 0))
5249 && ! TREE_OVERFLOW (t1))
5250 return fold (build2 (tcode, ctype, fold_convert (ctype, op0), t1));
5252 /* If these operations "cancel" each other, we have the main
5253 optimizations of this pass, which occur when either constant is a
5254 multiple of the other, in which case we replace this with either an
5255 operation or CODE or TCODE.
5257 If we have an unsigned type that is not a sizetype, we cannot do
5258 this since it will change the result if the original computation
5259 overflowed. */
5260 if ((! TYPE_UNSIGNED (ctype)
5261 || (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype)))
5262 && ! flag_wrapv
5263 && ((code == MULT_EXPR && tcode == EXACT_DIV_EXPR)
5264 || (tcode == MULT_EXPR
5265 && code != TRUNC_MOD_EXPR && code != CEIL_MOD_EXPR
5266 && code != FLOOR_MOD_EXPR && code != ROUND_MOD_EXPR)))
5268 if (integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
5269 return fold (build2 (tcode, ctype, fold_convert (ctype, op0),
5270 fold_convert (ctype,
5271 const_binop (TRUNC_DIV_EXPR,
5272 op1, c, 0))));
5273 else if (integer_zerop (const_binop (TRUNC_MOD_EXPR, c, op1, 0)))
5274 return fold (build2 (code, ctype, fold_convert (ctype, op0),
5275 fold_convert (ctype,
5276 const_binop (TRUNC_DIV_EXPR,
5277 c, op1, 0))));
5279 break;
5281 default:
5282 break;
5285 return 0;
5288 /* Return a node which has the indicated constant VALUE (either 0 or
5289 1), and is of the indicated TYPE. */
5291 static tree
5292 constant_boolean_node (int value, tree type)
5294 if (type == integer_type_node)
5295 return value ? integer_one_node : integer_zero_node;
5296 else if (type == boolean_type_node)
5297 return value ? boolean_true_node : boolean_false_node;
5298 else if (TREE_CODE (type) == BOOLEAN_TYPE)
5299 return lang_hooks.truthvalue_conversion (value ? integer_one_node
5300 : integer_zero_node);
5301 else
5303 tree t = build_int_2 (value, 0);
5305 TREE_TYPE (t) = type;
5306 return t;
5310 /* Transform `a + (b ? x : y)' into `b ? (a + x) : (a + y)'.
5311 Transform, `a + (x < y)' into `(x < y) ? (a + 1) : (a + 0)'. Here
5312 CODE corresponds to the `+', COND to the `(b ? x : y)' or `(x < y)'
5313 expression, and ARG to `a'. If COND_FIRST_P is nonzero, then the
5314 COND is the first argument to CODE; otherwise (as in the example
5315 given here), it is the second argument. TYPE is the type of the
5316 original expression. Return NULL_TREE if no simplification is
5317 possible. */
5319 static tree
5320 fold_binary_op_with_conditional_arg (enum tree_code code, tree type,
5321 tree cond, tree arg, int cond_first_p)
5323 tree test, true_value, false_value;
5324 tree lhs = NULL_TREE;
5325 tree rhs = NULL_TREE;
5327 /* This transformation is only worthwhile if we don't have to wrap
5328 arg in a SAVE_EXPR, and the operation can be simplified on atleast
5329 one of the branches once its pushed inside the COND_EXPR. */
5330 if (!TREE_CONSTANT (arg))
5331 return NULL_TREE;
5333 if (TREE_CODE (cond) == COND_EXPR)
5335 test = TREE_OPERAND (cond, 0);
5336 true_value = TREE_OPERAND (cond, 1);
5337 false_value = TREE_OPERAND (cond, 2);
5338 /* If this operand throws an expression, then it does not make
5339 sense to try to perform a logical or arithmetic operation
5340 involving it. */
5341 if (VOID_TYPE_P (TREE_TYPE (true_value)))
5342 lhs = true_value;
5343 if (VOID_TYPE_P (TREE_TYPE (false_value)))
5344 rhs = false_value;
5346 else
5348 tree testtype = TREE_TYPE (cond);
5349 test = cond;
5350 true_value = constant_boolean_node (true, testtype);
5351 false_value = constant_boolean_node (false, testtype);
5354 if (lhs == 0)
5355 lhs = fold (cond_first_p ? build2 (code, type, true_value, arg)
5356 : build2 (code, type, arg, true_value));
5357 if (rhs == 0)
5358 rhs = fold (cond_first_p ? build2 (code, type, false_value, arg)
5359 : build2 (code, type, arg, false_value));
5361 test = fold (build3 (COND_EXPR, type, test, lhs, rhs));
5362 return fold_convert (type, test);
5366 /* Subroutine of fold() that checks for the addition of +/- 0.0.
5368 If !NEGATE, return true if ADDEND is +/-0.0 and, for all X of type
5369 TYPE, X + ADDEND is the same as X. If NEGATE, return true if X -
5370 ADDEND is the same as X.
5372 X + 0 and X - 0 both give X when X is NaN, infinite, or nonzero
5373 and finite. The problematic cases are when X is zero, and its mode
5374 has signed zeros. In the case of rounding towards -infinity,
5375 X - 0 is not the same as X because 0 - 0 is -0. In other rounding
5376 modes, X + 0 is not the same as X because -0 + 0 is 0. */
5378 static bool
5379 fold_real_zero_addition_p (tree type, tree addend, int negate)
5381 if (!real_zerop (addend))
5382 return false;
5384 /* Don't allow the fold with -fsignaling-nans. */
5385 if (HONOR_SNANS (TYPE_MODE (type)))
5386 return false;
5388 /* Allow the fold if zeros aren't signed, or their sign isn't important. */
5389 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
5390 return true;
5392 /* Treat x + -0 as x - 0 and x - -0 as x + 0. */
5393 if (TREE_CODE (addend) == REAL_CST
5394 && REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (addend)))
5395 negate = !negate;
5397 /* The mode has signed zeros, and we have to honor their sign.
5398 In this situation, there is only one case we can return true for.
5399 X - 0 is the same as X unless rounding towards -infinity is
5400 supported. */
5401 return negate && !HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type));
5404 /* Subroutine of fold() that checks comparisons of built-in math
5405 functions against real constants.
5407 FCODE is the DECL_FUNCTION_CODE of the built-in, CODE is the comparison
5408 operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR, GE_EXPR or LE_EXPR. TYPE
5409 is the type of the result and ARG0 and ARG1 are the operands of the
5410 comparison. ARG1 must be a TREE_REAL_CST.
5412 The function returns the constant folded tree if a simplification
5413 can be made, and NULL_TREE otherwise. */
5415 static tree
5416 fold_mathfn_compare (enum built_in_function fcode, enum tree_code code,
5417 tree type, tree arg0, tree arg1)
5419 REAL_VALUE_TYPE c;
5421 if (BUILTIN_SQRT_P (fcode))
5423 tree arg = TREE_VALUE (TREE_OPERAND (arg0, 1));
5424 enum machine_mode mode = TYPE_MODE (TREE_TYPE (arg0));
5426 c = TREE_REAL_CST (arg1);
5427 if (REAL_VALUE_NEGATIVE (c))
5429 /* sqrt(x) < y is always false, if y is negative. */
5430 if (code == EQ_EXPR || code == LT_EXPR || code == LE_EXPR)
5431 return omit_one_operand (type, integer_zero_node, arg);
5433 /* sqrt(x) > y is always true, if y is negative and we
5434 don't care about NaNs, i.e. negative values of x. */
5435 if (code == NE_EXPR || !HONOR_NANS (mode))
5436 return omit_one_operand (type, integer_one_node, arg);
5438 /* sqrt(x) > y is the same as x >= 0, if y is negative. */
5439 return fold (build2 (GE_EXPR, type, arg,
5440 build_real (TREE_TYPE (arg), dconst0)));
5442 else if (code == GT_EXPR || code == GE_EXPR)
5444 REAL_VALUE_TYPE c2;
5446 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
5447 real_convert (&c2, mode, &c2);
5449 if (REAL_VALUE_ISINF (c2))
5451 /* sqrt(x) > y is x == +Inf, when y is very large. */
5452 if (HONOR_INFINITIES (mode))
5453 return fold (build2 (EQ_EXPR, type, arg,
5454 build_real (TREE_TYPE (arg), c2)));
5456 /* sqrt(x) > y is always false, when y is very large
5457 and we don't care about infinities. */
5458 return omit_one_operand (type, integer_zero_node, arg);
5461 /* sqrt(x) > c is the same as x > c*c. */
5462 return fold (build2 (code, type, arg,
5463 build_real (TREE_TYPE (arg), c2)));
5465 else if (code == LT_EXPR || code == LE_EXPR)
5467 REAL_VALUE_TYPE c2;
5469 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
5470 real_convert (&c2, mode, &c2);
5472 if (REAL_VALUE_ISINF (c2))
5474 /* sqrt(x) < y is always true, when y is a very large
5475 value and we don't care about NaNs or Infinities. */
5476 if (! HONOR_NANS (mode) && ! HONOR_INFINITIES (mode))
5477 return omit_one_operand (type, integer_one_node, arg);
5479 /* sqrt(x) < y is x != +Inf when y is very large and we
5480 don't care about NaNs. */
5481 if (! HONOR_NANS (mode))
5482 return fold (build2 (NE_EXPR, type, arg,
5483 build_real (TREE_TYPE (arg), c2)));
5485 /* sqrt(x) < y is x >= 0 when y is very large and we
5486 don't care about Infinities. */
5487 if (! HONOR_INFINITIES (mode))
5488 return fold (build2 (GE_EXPR, type, arg,
5489 build_real (TREE_TYPE (arg), dconst0)));
5491 /* sqrt(x) < y is x >= 0 && x != +Inf, when y is large. */
5492 if (lang_hooks.decls.global_bindings_p () != 0
5493 || CONTAINS_PLACEHOLDER_P (arg))
5494 return NULL_TREE;
5496 arg = save_expr (arg);
5497 return fold (build2 (TRUTH_ANDIF_EXPR, type,
5498 fold (build2 (GE_EXPR, type, arg,
5499 build_real (TREE_TYPE (arg),
5500 dconst0))),
5501 fold (build2 (NE_EXPR, type, arg,
5502 build_real (TREE_TYPE (arg),
5503 c2)))));
5506 /* sqrt(x) < c is the same as x < c*c, if we ignore NaNs. */
5507 if (! HONOR_NANS (mode))
5508 return fold (build2 (code, type, arg,
5509 build_real (TREE_TYPE (arg), c2)));
5511 /* sqrt(x) < c is the same as x >= 0 && x < c*c. */
5512 if (lang_hooks.decls.global_bindings_p () == 0
5513 && ! CONTAINS_PLACEHOLDER_P (arg))
5515 arg = save_expr (arg);
5516 return fold (build2 (TRUTH_ANDIF_EXPR, type,
5517 fold (build2 (GE_EXPR, type, arg,
5518 build_real (TREE_TYPE (arg),
5519 dconst0))),
5520 fold (build2 (code, type, arg,
5521 build_real (TREE_TYPE (arg),
5522 c2)))));
5527 return NULL_TREE;
5530 /* Subroutine of fold() that optimizes comparisons against Infinities,
5531 either +Inf or -Inf.
5533 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
5534 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
5535 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
5537 The function returns the constant folded tree if a simplification
5538 can be made, and NULL_TREE otherwise. */
5540 static tree
5541 fold_inf_compare (enum tree_code code, tree type, tree arg0, tree arg1)
5543 enum machine_mode mode;
5544 REAL_VALUE_TYPE max;
5545 tree temp;
5546 bool neg;
5548 mode = TYPE_MODE (TREE_TYPE (arg0));
5550 /* For negative infinity swap the sense of the comparison. */
5551 neg = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1));
5552 if (neg)
5553 code = swap_tree_comparison (code);
5555 switch (code)
5557 case GT_EXPR:
5558 /* x > +Inf is always false, if with ignore sNANs. */
5559 if (HONOR_SNANS (mode))
5560 return NULL_TREE;
5561 return omit_one_operand (type, integer_zero_node, arg0);
5563 case LE_EXPR:
5564 /* x <= +Inf is always true, if we don't case about NaNs. */
5565 if (! HONOR_NANS (mode))
5566 return omit_one_operand (type, integer_one_node, arg0);
5568 /* x <= +Inf is the same as x == x, i.e. isfinite(x). */
5569 if (lang_hooks.decls.global_bindings_p () == 0
5570 && ! CONTAINS_PLACEHOLDER_P (arg0))
5572 arg0 = save_expr (arg0);
5573 return fold (build2 (EQ_EXPR, type, arg0, arg0));
5575 break;
5577 case EQ_EXPR:
5578 case GE_EXPR:
5579 /* x == +Inf and x >= +Inf are always equal to x > DBL_MAX. */
5580 real_maxval (&max, neg, mode);
5581 return fold (build2 (neg ? LT_EXPR : GT_EXPR, type,
5582 arg0, build_real (TREE_TYPE (arg0), max)));
5584 case LT_EXPR:
5585 /* x < +Inf is always equal to x <= DBL_MAX. */
5586 real_maxval (&max, neg, mode);
5587 return fold (build2 (neg ? GE_EXPR : LE_EXPR, type,
5588 arg0, build_real (TREE_TYPE (arg0), max)));
5590 case NE_EXPR:
5591 /* x != +Inf is always equal to !(x > DBL_MAX). */
5592 real_maxval (&max, neg, mode);
5593 if (! HONOR_NANS (mode))
5594 return fold (build2 (neg ? GE_EXPR : LE_EXPR, type,
5595 arg0, build_real (TREE_TYPE (arg0), max)));
5597 /* The transformation below creates non-gimple code and thus is
5598 not appropriate if we are in gimple form. */
5599 if (in_gimple_form)
5600 return NULL_TREE;
5602 temp = fold (build2 (neg ? LT_EXPR : GT_EXPR, type,
5603 arg0, build_real (TREE_TYPE (arg0), max)));
5604 return fold (build1 (TRUTH_NOT_EXPR, type, temp));
5606 default:
5607 break;
5610 return NULL_TREE;
5613 /* Subroutine of fold() that optimizes comparisons of a division by
5614 a nonzero integer constant against an integer constant, i.e.
5615 X/C1 op C2.
5617 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
5618 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
5619 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
5621 The function returns the constant folded tree if a simplification
5622 can be made, and NULL_TREE otherwise. */
5624 static tree
5625 fold_div_compare (enum tree_code code, tree type, tree arg0, tree arg1)
5627 tree prod, tmp, hi, lo;
5628 tree arg00 = TREE_OPERAND (arg0, 0);
5629 tree arg01 = TREE_OPERAND (arg0, 1);
5630 unsigned HOST_WIDE_INT lpart;
5631 HOST_WIDE_INT hpart;
5632 int overflow;
5634 /* We have to do this the hard way to detect unsigned overflow.
5635 prod = int_const_binop (MULT_EXPR, arg01, arg1, 0); */
5636 overflow = mul_double (TREE_INT_CST_LOW (arg01),
5637 TREE_INT_CST_HIGH (arg01),
5638 TREE_INT_CST_LOW (arg1),
5639 TREE_INT_CST_HIGH (arg1), &lpart, &hpart);
5640 prod = build_int_2 (lpart, hpart);
5641 TREE_TYPE (prod) = TREE_TYPE (arg00);
5642 TREE_OVERFLOW (prod) = force_fit_type (prod, overflow)
5643 || TREE_INT_CST_HIGH (prod) != hpart
5644 || TREE_INT_CST_LOW (prod) != lpart;
5645 TREE_CONSTANT_OVERFLOW (prod) = TREE_OVERFLOW (prod);
5647 if (TYPE_UNSIGNED (TREE_TYPE (arg0)))
5649 tmp = int_const_binop (MINUS_EXPR, arg01, integer_one_node, 0);
5650 lo = prod;
5652 /* Likewise hi = int_const_binop (PLUS_EXPR, prod, tmp, 0). */
5653 overflow = add_double (TREE_INT_CST_LOW (prod),
5654 TREE_INT_CST_HIGH (prod),
5655 TREE_INT_CST_LOW (tmp),
5656 TREE_INT_CST_HIGH (tmp),
5657 &lpart, &hpart);
5658 hi = build_int_2 (lpart, hpart);
5659 TREE_TYPE (hi) = TREE_TYPE (arg00);
5660 TREE_OVERFLOW (hi) = force_fit_type (hi, overflow)
5661 || TREE_INT_CST_HIGH (hi) != hpart
5662 || TREE_INT_CST_LOW (hi) != lpart
5663 || TREE_OVERFLOW (prod);
5664 TREE_CONSTANT_OVERFLOW (hi) = TREE_OVERFLOW (hi);
5666 else if (tree_int_cst_sgn (arg01) >= 0)
5668 tmp = int_const_binop (MINUS_EXPR, arg01, integer_one_node, 0);
5669 switch (tree_int_cst_sgn (arg1))
5671 case -1:
5672 lo = int_const_binop (MINUS_EXPR, prod, tmp, 0);
5673 hi = prod;
5674 break;
5676 case 0:
5677 lo = fold_negate_const (tmp, TREE_TYPE (arg0));
5678 hi = tmp;
5679 break;
5681 case 1:
5682 hi = int_const_binop (PLUS_EXPR, prod, tmp, 0);
5683 lo = prod;
5684 break;
5686 default:
5687 abort ();
5690 else
5692 tmp = int_const_binop (PLUS_EXPR, arg01, integer_one_node, 0);
5693 switch (tree_int_cst_sgn (arg1))
5695 case -1:
5696 hi = int_const_binop (MINUS_EXPR, prod, tmp, 0);
5697 lo = prod;
5698 break;
5700 case 0:
5701 hi = fold_negate_const (tmp, TREE_TYPE (arg0));
5702 lo = tmp;
5703 break;
5705 case 1:
5706 lo = int_const_binop (PLUS_EXPR, prod, tmp, 0);
5707 hi = prod;
5708 break;
5710 default:
5711 abort ();
5715 switch (code)
5717 case EQ_EXPR:
5718 if (TREE_OVERFLOW (lo) && TREE_OVERFLOW (hi))
5719 return omit_one_operand (type, integer_zero_node, arg00);
5720 if (TREE_OVERFLOW (hi))
5721 return fold (build2 (GE_EXPR, type, arg00, lo));
5722 if (TREE_OVERFLOW (lo))
5723 return fold (build2 (LE_EXPR, type, arg00, hi));
5724 return build_range_check (type, arg00, 1, lo, hi);
5726 case NE_EXPR:
5727 if (TREE_OVERFLOW (lo) && TREE_OVERFLOW (hi))
5728 return omit_one_operand (type, integer_one_node, arg00);
5729 if (TREE_OVERFLOW (hi))
5730 return fold (build2 (LT_EXPR, type, arg00, lo));
5731 if (TREE_OVERFLOW (lo))
5732 return fold (build2 (GT_EXPR, type, arg00, hi));
5733 return build_range_check (type, arg00, 0, lo, hi);
5735 case LT_EXPR:
5736 if (TREE_OVERFLOW (lo))
5737 return omit_one_operand (type, integer_zero_node, arg00);
5738 return fold (build2 (LT_EXPR, type, arg00, lo));
5740 case LE_EXPR:
5741 if (TREE_OVERFLOW (hi))
5742 return omit_one_operand (type, integer_one_node, arg00);
5743 return fold (build2 (LE_EXPR, type, arg00, hi));
5745 case GT_EXPR:
5746 if (TREE_OVERFLOW (hi))
5747 return omit_one_operand (type, integer_zero_node, arg00);
5748 return fold (build2 (GT_EXPR, type, arg00, hi));
5750 case GE_EXPR:
5751 if (TREE_OVERFLOW (lo))
5752 return omit_one_operand (type, integer_one_node, arg00);
5753 return fold (build2 (GE_EXPR, type, arg00, lo));
5755 default:
5756 break;
5759 return NULL_TREE;
5763 /* If CODE with arguments ARG0 and ARG1 represents a single bit
5764 equality/inequality test, then return a simplified form of
5765 the test using shifts and logical operations. Otherwise return
5766 NULL. TYPE is the desired result type. */
5768 tree
5769 fold_single_bit_test (enum tree_code code, tree arg0, tree arg1,
5770 tree result_type)
5772 /* If this is a TRUTH_NOT_EXPR, it may have a single bit test inside
5773 operand 0. */
5774 if (code == TRUTH_NOT_EXPR)
5776 code = TREE_CODE (arg0);
5777 if (code != NE_EXPR && code != EQ_EXPR)
5778 return NULL_TREE;
5780 /* Extract the arguments of the EQ/NE. */
5781 arg1 = TREE_OPERAND (arg0, 1);
5782 arg0 = TREE_OPERAND (arg0, 0);
5784 /* This requires us to invert the code. */
5785 code = (code == EQ_EXPR ? NE_EXPR : EQ_EXPR);
5788 /* If this is testing a single bit, we can optimize the test. */
5789 if ((code == NE_EXPR || code == EQ_EXPR)
5790 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
5791 && integer_pow2p (TREE_OPERAND (arg0, 1)))
5793 tree inner = TREE_OPERAND (arg0, 0);
5794 tree type = TREE_TYPE (arg0);
5795 int bitnum = tree_log2 (TREE_OPERAND (arg0, 1));
5796 enum machine_mode operand_mode = TYPE_MODE (type);
5797 int ops_unsigned;
5798 tree signed_type, unsigned_type, intermediate_type;
5799 tree arg00;
5801 /* If we have (A & C) != 0 where C is the sign bit of A, convert
5802 this into A < 0. Similarly for (A & C) == 0 into A >= 0. */
5803 arg00 = sign_bit_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1));
5804 if (arg00 != NULL_TREE
5805 /* This is only a win if casting to a signed type is cheap,
5806 i.e. when arg00's type is not a partial mode. */
5807 && TYPE_PRECISION (TREE_TYPE (arg00))
5808 == GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg00))))
5810 tree stype = lang_hooks.types.signed_type (TREE_TYPE (arg00));
5811 return fold (build2 (code == EQ_EXPR ? GE_EXPR : LT_EXPR,
5812 result_type, fold_convert (stype, arg00),
5813 fold_convert (stype, integer_zero_node)));
5816 /* Otherwise we have (A & C) != 0 where C is a single bit,
5817 convert that into ((A >> C2) & 1). Where C2 = log2(C).
5818 Similarly for (A & C) == 0. */
5820 /* If INNER is a right shift of a constant and it plus BITNUM does
5821 not overflow, adjust BITNUM and INNER. */
5822 if (TREE_CODE (inner) == RSHIFT_EXPR
5823 && TREE_CODE (TREE_OPERAND (inner, 1)) == INTEGER_CST
5824 && TREE_INT_CST_HIGH (TREE_OPERAND (inner, 1)) == 0
5825 && bitnum < TYPE_PRECISION (type)
5826 && 0 > compare_tree_int (TREE_OPERAND (inner, 1),
5827 bitnum - TYPE_PRECISION (type)))
5829 bitnum += TREE_INT_CST_LOW (TREE_OPERAND (inner, 1));
5830 inner = TREE_OPERAND (inner, 0);
5833 /* If we are going to be able to omit the AND below, we must do our
5834 operations as unsigned. If we must use the AND, we have a choice.
5835 Normally unsigned is faster, but for some machines signed is. */
5836 #ifdef LOAD_EXTEND_OP
5837 ops_unsigned = (LOAD_EXTEND_OP (operand_mode) == SIGN_EXTEND ? 0 : 1);
5838 #else
5839 ops_unsigned = 1;
5840 #endif
5842 signed_type = lang_hooks.types.type_for_mode (operand_mode, 0);
5843 unsigned_type = lang_hooks.types.type_for_mode (operand_mode, 1);
5844 intermediate_type = ops_unsigned ? unsigned_type : signed_type;
5845 inner = fold_convert (intermediate_type, inner);
5847 if (bitnum != 0)
5848 inner = build2 (RSHIFT_EXPR, intermediate_type,
5849 inner, size_int (bitnum));
5851 if (code == EQ_EXPR)
5852 inner = fold (build2 (BIT_XOR_EXPR, intermediate_type,
5853 inner, integer_one_node));
5855 /* Put the AND last so it can combine with more things. */
5856 inner = build2 (BIT_AND_EXPR, intermediate_type,
5857 inner, integer_one_node);
5859 /* Make sure to return the proper type. */
5860 inner = fold_convert (result_type, inner);
5862 return inner;
5864 return NULL_TREE;
5867 /* Check whether we are allowed to reorder operands arg0 and arg1,
5868 such that the evaluation of arg1 occurs before arg0. */
5870 static bool
5871 reorder_operands_p (tree arg0, tree arg1)
5873 if (! flag_evaluation_order)
5874 return true;
5875 if (TREE_CONSTANT (arg0) || TREE_CONSTANT (arg1))
5876 return true;
5877 return ! TREE_SIDE_EFFECTS (arg0)
5878 && ! TREE_SIDE_EFFECTS (arg1);
5881 /* Test whether it is preferable two swap two operands, ARG0 and
5882 ARG1, for example because ARG0 is an integer constant and ARG1
5883 isn't. If REORDER is true, only recommend swapping if we can
5884 evaluate the operands in reverse order. */
5886 bool
5887 tree_swap_operands_p (tree arg0, tree arg1, bool reorder)
5889 STRIP_SIGN_NOPS (arg0);
5890 STRIP_SIGN_NOPS (arg1);
5892 if (TREE_CODE (arg1) == INTEGER_CST)
5893 return 0;
5894 if (TREE_CODE (arg0) == INTEGER_CST)
5895 return 1;
5897 if (TREE_CODE (arg1) == REAL_CST)
5898 return 0;
5899 if (TREE_CODE (arg0) == REAL_CST)
5900 return 1;
5902 if (TREE_CODE (arg1) == COMPLEX_CST)
5903 return 0;
5904 if (TREE_CODE (arg0) == COMPLEX_CST)
5905 return 1;
5907 if (TREE_CONSTANT (arg1))
5908 return 0;
5909 if (TREE_CONSTANT (arg0))
5910 return 1;
5912 if (optimize_size)
5913 return 0;
5915 if (reorder && flag_evaluation_order
5916 && (TREE_SIDE_EFFECTS (arg0) || TREE_SIDE_EFFECTS (arg1)))
5917 return 0;
5919 if (DECL_P (arg1))
5920 return 0;
5921 if (DECL_P (arg0))
5922 return 1;
5924 if (reorder && flag_evaluation_order
5925 && (TREE_SIDE_EFFECTS (arg0) || TREE_SIDE_EFFECTS (arg1)))
5926 return 0;
5928 if (DECL_P (arg1))
5929 return 0;
5930 if (DECL_P (arg0))
5931 return 1;
5933 /* It is preferable to swap two SSA_NAME to ensure a canonical form
5934 for commutative and comparison operators. Ensuring a canonical
5935 form allows the optimizers to find additional redundancies without
5936 having to explicitly check for both orderings. */
5937 if (TREE_CODE (arg0) == SSA_NAME
5938 && TREE_CODE (arg1) == SSA_NAME
5939 && SSA_NAME_VERSION (arg0) > SSA_NAME_VERSION (arg1))
5940 return 1;
5942 return 0;
5945 /* Perform constant folding and related simplification of EXPR.
5946 The related simplifications include x*1 => x, x*0 => 0, etc.,
5947 and application of the associative law.
5948 NOP_EXPR conversions may be removed freely (as long as we
5949 are careful not to change the type of the overall expression).
5950 We cannot simplify through a CONVERT_EXPR, FIX_EXPR or FLOAT_EXPR,
5951 but we can constant-fold them if they have constant operands. */
5953 #ifdef ENABLE_FOLD_CHECKING
5954 # define fold(x) fold_1 (x)
5955 static tree fold_1 (tree);
5956 static
5957 #endif
5958 tree
5959 fold (tree expr)
5961 const tree t = expr;
5962 const tree type = TREE_TYPE (expr);
5963 tree t1 = NULL_TREE;
5964 tree tem;
5965 tree arg0 = NULL_TREE, arg1 = NULL_TREE;
5966 enum tree_code code = TREE_CODE (t);
5967 int kind = TREE_CODE_CLASS (code);
5969 /* WINS will be nonzero when the switch is done
5970 if all operands are constant. */
5971 int wins = 1;
5973 /* Return right away if a constant. */
5974 if (kind == 'c')
5975 return t;
5977 if (code == NOP_EXPR || code == FLOAT_EXPR || code == CONVERT_EXPR)
5979 tree subop;
5981 /* Special case for conversion ops that can have fixed point args. */
5982 arg0 = TREE_OPERAND (t, 0);
5984 /* Don't use STRIP_NOPS, because signedness of argument type matters. */
5985 if (arg0 != 0)
5986 STRIP_SIGN_NOPS (arg0);
5988 if (arg0 != 0 && TREE_CODE (arg0) == COMPLEX_CST)
5989 subop = TREE_REALPART (arg0);
5990 else
5991 subop = arg0;
5993 if (subop != 0 && TREE_CODE (subop) != INTEGER_CST
5994 && TREE_CODE (subop) != REAL_CST)
5995 /* Note that TREE_CONSTANT isn't enough:
5996 static var addresses are constant but we can't
5997 do arithmetic on them. */
5998 wins = 0;
6000 else if (IS_EXPR_CODE_CLASS (kind))
6002 int len = first_rtl_op (code);
6003 int i;
6004 for (i = 0; i < len; i++)
6006 tree op = TREE_OPERAND (t, i);
6007 tree subop;
6009 if (op == 0)
6010 continue; /* Valid for CALL_EXPR, at least. */
6012 /* Strip any conversions that don't change the mode. This is
6013 safe for every expression, except for a comparison expression
6014 because its signedness is derived from its operands. So, in
6015 the latter case, only strip conversions that don't change the
6016 signedness.
6018 Note that this is done as an internal manipulation within the
6019 constant folder, in order to find the simplest representation
6020 of the arguments so that their form can be studied. In any
6021 cases, the appropriate type conversions should be put back in
6022 the tree that will get out of the constant folder. */
6023 if (kind == '<')
6024 STRIP_SIGN_NOPS (op);
6025 else
6026 STRIP_NOPS (op);
6028 if (TREE_CODE (op) == COMPLEX_CST)
6029 subop = TREE_REALPART (op);
6030 else
6031 subop = op;
6033 if (TREE_CODE (subop) != INTEGER_CST
6034 && TREE_CODE (subop) != REAL_CST)
6035 /* Note that TREE_CONSTANT isn't enough:
6036 static var addresses are constant but we can't
6037 do arithmetic on them. */
6038 wins = 0;
6040 if (i == 0)
6041 arg0 = op;
6042 else if (i == 1)
6043 arg1 = op;
6047 /* If this is a commutative operation, and ARG0 is a constant, move it
6048 to ARG1 to reduce the number of tests below. */
6049 if (commutative_tree_code (code)
6050 && tree_swap_operands_p (arg0, arg1, true))
6051 return fold (build2 (code, type, TREE_OPERAND (t, 1),
6052 TREE_OPERAND (t, 0)));
6054 /* Now WINS is set as described above,
6055 ARG0 is the first operand of EXPR,
6056 and ARG1 is the second operand (if it has more than one operand).
6058 First check for cases where an arithmetic operation is applied to a
6059 compound, conditional, or comparison operation. Push the arithmetic
6060 operation inside the compound or conditional to see if any folding
6061 can then be done. Convert comparison to conditional for this purpose.
6062 The also optimizes non-constant cases that used to be done in
6063 expand_expr.
6065 Before we do that, see if this is a BIT_AND_EXPR or a BIT_IOR_EXPR,
6066 one of the operands is a comparison and the other is a comparison, a
6067 BIT_AND_EXPR with the constant 1, or a truth value. In that case, the
6068 code below would make the expression more complex. Change it to a
6069 TRUTH_{AND,OR}_EXPR. Likewise, convert a similar NE_EXPR to
6070 TRUTH_XOR_EXPR and an EQ_EXPR to the inversion of a TRUTH_XOR_EXPR. */
6072 if ((code == BIT_AND_EXPR || code == BIT_IOR_EXPR
6073 || code == EQ_EXPR || code == NE_EXPR)
6074 && ((truth_value_p (TREE_CODE (arg0))
6075 && (truth_value_p (TREE_CODE (arg1))
6076 || (TREE_CODE (arg1) == BIT_AND_EXPR
6077 && integer_onep (TREE_OPERAND (arg1, 1)))))
6078 || (truth_value_p (TREE_CODE (arg1))
6079 && (truth_value_p (TREE_CODE (arg0))
6080 || (TREE_CODE (arg0) == BIT_AND_EXPR
6081 && integer_onep (TREE_OPERAND (arg0, 1)))))))
6083 tem = fold (build2 (code == BIT_AND_EXPR ? TRUTH_AND_EXPR
6084 : code == BIT_IOR_EXPR ? TRUTH_OR_EXPR
6085 : TRUTH_XOR_EXPR,
6086 type, fold_convert (boolean_type_node, arg0),
6087 fold_convert (boolean_type_node, arg1)));
6089 if (code == EQ_EXPR)
6090 tem = invert_truthvalue (tem);
6092 return tem;
6095 if (TREE_CODE_CLASS (code) == '1')
6097 if (TREE_CODE (arg0) == COMPOUND_EXPR)
6098 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
6099 fold (build1 (code, type, TREE_OPERAND (arg0, 1))));
6100 else if (TREE_CODE (arg0) == COND_EXPR)
6102 tree arg01 = TREE_OPERAND (arg0, 1);
6103 tree arg02 = TREE_OPERAND (arg0, 2);
6104 if (! VOID_TYPE_P (TREE_TYPE (arg01)))
6105 arg01 = fold (build1 (code, type, arg01));
6106 if (! VOID_TYPE_P (TREE_TYPE (arg02)))
6107 arg02 = fold (build1 (code, type, arg02));
6108 tem = fold (build3 (COND_EXPR, type, TREE_OPERAND (arg0, 0),
6109 arg01, arg02));
6111 /* If this was a conversion, and all we did was to move into
6112 inside the COND_EXPR, bring it back out. But leave it if
6113 it is a conversion from integer to integer and the
6114 result precision is no wider than a word since such a
6115 conversion is cheap and may be optimized away by combine,
6116 while it couldn't if it were outside the COND_EXPR. Then return
6117 so we don't get into an infinite recursion loop taking the
6118 conversion out and then back in. */
6120 if ((code == NOP_EXPR || code == CONVERT_EXPR
6121 || code == NON_LVALUE_EXPR)
6122 && TREE_CODE (tem) == COND_EXPR
6123 && TREE_CODE (TREE_OPERAND (tem, 1)) == code
6124 && TREE_CODE (TREE_OPERAND (tem, 2)) == code
6125 && ! VOID_TYPE_P (TREE_OPERAND (tem, 1))
6126 && ! VOID_TYPE_P (TREE_OPERAND (tem, 2))
6127 && (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 1), 0))
6128 == TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 2), 0)))
6129 && ! (INTEGRAL_TYPE_P (TREE_TYPE (tem))
6130 && (INTEGRAL_TYPE_P
6131 (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 1), 0))))
6132 && TYPE_PRECISION (TREE_TYPE (tem)) <= BITS_PER_WORD))
6133 tem = build1 (code, type,
6134 build3 (COND_EXPR,
6135 TREE_TYPE (TREE_OPERAND
6136 (TREE_OPERAND (tem, 1), 0)),
6137 TREE_OPERAND (tem, 0),
6138 TREE_OPERAND (TREE_OPERAND (tem, 1), 0),
6139 TREE_OPERAND (TREE_OPERAND (tem, 2), 0)));
6140 return tem;
6142 else if (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<')
6144 if (TREE_CODE (type) == BOOLEAN_TYPE)
6146 arg0 = copy_node (arg0);
6147 TREE_TYPE (arg0) = type;
6148 return arg0;
6150 else if (TREE_CODE (type) != INTEGER_TYPE)
6151 return fold (build3 (COND_EXPR, type, arg0,
6152 fold (build1 (code, type,
6153 integer_one_node)),
6154 fold (build1 (code, type,
6155 integer_zero_node))));
6158 else if (TREE_CODE_CLASS (code) == '<'
6159 && TREE_CODE (arg0) == COMPOUND_EXPR)
6160 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
6161 fold (build2 (code, type, TREE_OPERAND (arg0, 1), arg1)));
6162 else if (TREE_CODE_CLASS (code) == '<'
6163 && TREE_CODE (arg1) == COMPOUND_EXPR)
6164 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
6165 fold (build2 (code, type, arg0, TREE_OPERAND (arg1, 1))));
6166 else if (TREE_CODE_CLASS (code) == '2'
6167 || TREE_CODE_CLASS (code) == '<')
6169 if (TREE_CODE (arg0) == COMPOUND_EXPR)
6170 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
6171 fold (build2 (code, type, TREE_OPERAND (arg0, 1),
6172 arg1)));
6173 if (TREE_CODE (arg1) == COMPOUND_EXPR
6174 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
6175 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
6176 fold (build2 (code, type,
6177 arg0, TREE_OPERAND (arg1, 1))));
6179 if (TREE_CODE (arg0) == COND_EXPR
6180 || TREE_CODE_CLASS (TREE_CODE (arg0)) == '<')
6182 tem = fold_binary_op_with_conditional_arg (code, type, arg0, arg1,
6183 /*cond_first_p=*/1);
6184 if (tem != NULL_TREE)
6185 return tem;
6188 if (TREE_CODE (arg1) == COND_EXPR
6189 || TREE_CODE_CLASS (TREE_CODE (arg1)) == '<')
6191 tem = fold_binary_op_with_conditional_arg (code, type, arg1, arg0,
6192 /*cond_first_p=*/0);
6193 if (tem != NULL_TREE)
6194 return tem;
6198 switch (code)
6200 case CONST_DECL:
6201 return fold (DECL_INITIAL (t));
6203 case NOP_EXPR:
6204 case FLOAT_EXPR:
6205 case CONVERT_EXPR:
6206 case FIX_TRUNC_EXPR:
6207 case FIX_CEIL_EXPR:
6208 case FIX_FLOOR_EXPR:
6209 case FIX_ROUND_EXPR:
6210 if (TREE_TYPE (TREE_OPERAND (t, 0)) == type)
6211 return TREE_OPERAND (t, 0);
6213 /* Handle cases of two conversions in a row. */
6214 if (TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
6215 || TREE_CODE (TREE_OPERAND (t, 0)) == CONVERT_EXPR)
6217 tree inside_type = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
6218 tree inter_type = TREE_TYPE (TREE_OPERAND (t, 0));
6219 int inside_int = INTEGRAL_TYPE_P (inside_type);
6220 int inside_ptr = POINTER_TYPE_P (inside_type);
6221 int inside_float = FLOAT_TYPE_P (inside_type);
6222 unsigned int inside_prec = TYPE_PRECISION (inside_type);
6223 int inside_unsignedp = TYPE_UNSIGNED (inside_type);
6224 int inter_int = INTEGRAL_TYPE_P (inter_type);
6225 int inter_ptr = POINTER_TYPE_P (inter_type);
6226 int inter_float = FLOAT_TYPE_P (inter_type);
6227 unsigned int inter_prec = TYPE_PRECISION (inter_type);
6228 int inter_unsignedp = TYPE_UNSIGNED (inter_type);
6229 int final_int = INTEGRAL_TYPE_P (type);
6230 int final_ptr = POINTER_TYPE_P (type);
6231 int final_float = FLOAT_TYPE_P (type);
6232 unsigned int final_prec = TYPE_PRECISION (type);
6233 int final_unsignedp = TYPE_UNSIGNED (type);
6235 /* In addition to the cases of two conversions in a row
6236 handled below, if we are converting something to its own
6237 type via an object of identical or wider precision, neither
6238 conversion is needed. */
6239 if (TYPE_MAIN_VARIANT (inside_type) == TYPE_MAIN_VARIANT (type)
6240 && ((inter_int && final_int) || (inter_float && final_float))
6241 && inter_prec >= final_prec)
6242 return fold (build1 (code, type,
6243 TREE_OPERAND (TREE_OPERAND (t, 0), 0)));
6245 /* Likewise, if the intermediate and final types are either both
6246 float or both integer, we don't need the middle conversion if
6247 it is wider than the final type and doesn't change the signedness
6248 (for integers). Avoid this if the final type is a pointer
6249 since then we sometimes need the inner conversion. Likewise if
6250 the outer has a precision not equal to the size of its mode. */
6251 if ((((inter_int || inter_ptr) && (inside_int || inside_ptr))
6252 || (inter_float && inside_float))
6253 && inter_prec >= inside_prec
6254 && (inter_float || inter_unsignedp == inside_unsignedp)
6255 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (type))
6256 && TYPE_MODE (type) == TYPE_MODE (inter_type))
6257 && ! final_ptr)
6258 return fold (build1 (code, type,
6259 TREE_OPERAND (TREE_OPERAND (t, 0), 0)));
6261 /* If we have a sign-extension of a zero-extended value, we can
6262 replace that by a single zero-extension. */
6263 if (inside_int && inter_int && final_int
6264 && inside_prec < inter_prec && inter_prec < final_prec
6265 && inside_unsignedp && !inter_unsignedp)
6266 return fold (build1 (code, type,
6267 TREE_OPERAND (TREE_OPERAND (t, 0), 0)));
6269 /* Two conversions in a row are not needed unless:
6270 - some conversion is floating-point (overstrict for now), or
6271 - the intermediate type is narrower than both initial and
6272 final, or
6273 - the intermediate type and innermost type differ in signedness,
6274 and the outermost type is wider than the intermediate, or
6275 - the initial type is a pointer type and the precisions of the
6276 intermediate and final types differ, or
6277 - the final type is a pointer type and the precisions of the
6278 initial and intermediate types differ. */
6279 if (! inside_float && ! inter_float && ! final_float
6280 && (inter_prec > inside_prec || inter_prec > final_prec)
6281 && ! (inside_int && inter_int
6282 && inter_unsignedp != inside_unsignedp
6283 && inter_prec < final_prec)
6284 && ((inter_unsignedp && inter_prec > inside_prec)
6285 == (final_unsignedp && final_prec > inter_prec))
6286 && ! (inside_ptr && inter_prec != final_prec)
6287 && ! (final_ptr && inside_prec != inter_prec)
6288 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (type))
6289 && TYPE_MODE (type) == TYPE_MODE (inter_type))
6290 && ! final_ptr)
6291 return fold (build1 (code, type,
6292 TREE_OPERAND (TREE_OPERAND (t, 0), 0)));
6295 if (TREE_CODE (TREE_OPERAND (t, 0)) == MODIFY_EXPR
6296 && TREE_CONSTANT (TREE_OPERAND (TREE_OPERAND (t, 0), 1))
6297 /* Detect assigning a bitfield. */
6298 && !(TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 0)) == COMPONENT_REF
6299 && DECL_BIT_FIELD (TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 0), 0), 1))))
6301 /* Don't leave an assignment inside a conversion
6302 unless assigning a bitfield. */
6303 tree prev = TREE_OPERAND (t, 0);
6304 tem = copy_node (t);
6305 TREE_OPERAND (tem, 0) = TREE_OPERAND (prev, 1);
6306 /* First do the assignment, then return converted constant. */
6307 tem = build2 (COMPOUND_EXPR, TREE_TYPE (tem), prev, fold (tem));
6308 TREE_NO_WARNING (tem) = 1;
6309 TREE_USED (tem) = 1;
6310 return tem;
6313 /* Convert (T)(x & c) into (T)x & (T)c, if c is an integer
6314 constants (if x has signed type, the sign bit cannot be set
6315 in c). This folds extension into the BIT_AND_EXPR. */
6316 if (INTEGRAL_TYPE_P (type)
6317 && TREE_CODE (type) != BOOLEAN_TYPE
6318 && TREE_CODE (TREE_OPERAND (t, 0)) == BIT_AND_EXPR
6319 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 1)) == INTEGER_CST)
6321 tree and = TREE_OPERAND (t, 0);
6322 tree and0 = TREE_OPERAND (and, 0), and1 = TREE_OPERAND (and, 1);
6323 int change = 0;
6325 if (TYPE_UNSIGNED (TREE_TYPE (and))
6326 || (TYPE_PRECISION (type)
6327 <= TYPE_PRECISION (TREE_TYPE (and))))
6328 change = 1;
6329 else if (TYPE_PRECISION (TREE_TYPE (and1))
6330 <= HOST_BITS_PER_WIDE_INT
6331 && host_integerp (and1, 1))
6333 unsigned HOST_WIDE_INT cst;
6335 cst = tree_low_cst (and1, 1);
6336 cst &= (HOST_WIDE_INT) -1
6337 << (TYPE_PRECISION (TREE_TYPE (and1)) - 1);
6338 change = (cst == 0);
6339 #ifdef LOAD_EXTEND_OP
6340 if (change
6341 && (LOAD_EXTEND_OP (TYPE_MODE (TREE_TYPE (and0)))
6342 == ZERO_EXTEND))
6344 tree uns = lang_hooks.types.unsigned_type (TREE_TYPE (and0));
6345 and0 = fold_convert (uns, and0);
6346 and1 = fold_convert (uns, and1);
6348 #endif
6350 if (change)
6351 return fold (build2 (BIT_AND_EXPR, type,
6352 fold_convert (type, and0),
6353 fold_convert (type, and1)));
6356 /* Convert (T1)((T2)X op Y) into (T1)X op Y, for pointer types T1 and
6357 T2 being pointers to types of the same size. */
6358 if (POINTER_TYPE_P (TREE_TYPE (t))
6359 && TREE_CODE_CLASS (TREE_CODE (arg0)) == '2'
6360 && TREE_CODE (TREE_OPERAND (arg0, 0)) == NOP_EXPR
6361 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (arg0, 0))))
6363 tree arg00 = TREE_OPERAND (arg0, 0);
6364 tree t0 = TREE_TYPE (t);
6365 tree t1 = TREE_TYPE (arg00);
6366 tree tt0 = TREE_TYPE (t0);
6367 tree tt1 = TREE_TYPE (t1);
6368 tree s0 = TYPE_SIZE (tt0);
6369 tree s1 = TYPE_SIZE (tt1);
6371 if (s0 && s1 && operand_equal_p (s0, s1, OEP_ONLY_CONST))
6372 return build2 (TREE_CODE (arg0), t0, fold_convert (t0, arg00),
6373 TREE_OPERAND (arg0, 1));
6376 tem = fold_convert_const (code, type, arg0);
6377 return tem ? tem : t;
6379 case VIEW_CONVERT_EXPR:
6380 if (TREE_CODE (TREE_OPERAND (t, 0)) == VIEW_CONVERT_EXPR)
6381 return build1 (VIEW_CONVERT_EXPR, type,
6382 TREE_OPERAND (TREE_OPERAND (t, 0), 0));
6383 return t;
6385 case COMPONENT_REF:
6386 if (TREE_CODE (arg0) == CONSTRUCTOR
6387 && ! type_contains_placeholder_p (TREE_TYPE (arg0)))
6389 tree m = purpose_member (arg1, CONSTRUCTOR_ELTS (arg0));
6390 if (m)
6391 return TREE_VALUE (m);
6393 return t;
6395 case RANGE_EXPR:
6396 if (TREE_CONSTANT (t) != wins)
6398 tem = copy_node (t);
6399 TREE_CONSTANT (tem) = wins;
6400 TREE_INVARIANT (tem) = wins;
6401 return tem;
6403 return t;
6405 case NEGATE_EXPR:
6406 if (negate_expr_p (arg0))
6407 return fold_convert (type, negate_expr (arg0));
6408 return t;
6410 case ABS_EXPR:
6411 if (TREE_CODE (arg0) == INTEGER_CST || TREE_CODE (arg0) == REAL_CST)
6412 return fold_abs_const (arg0, type);
6413 else if (TREE_CODE (arg0) == NEGATE_EXPR)
6414 return fold (build1 (ABS_EXPR, type, TREE_OPERAND (arg0, 0)));
6415 /* Convert fabs((double)float) into (double)fabsf(float). */
6416 else if (TREE_CODE (arg0) == NOP_EXPR
6417 && TREE_CODE (type) == REAL_TYPE)
6419 tree targ0 = strip_float_extensions (arg0);
6420 if (targ0 != arg0)
6421 return fold_convert (type, fold (build1 (ABS_EXPR,
6422 TREE_TYPE (targ0),
6423 targ0)));
6425 else if (tree_expr_nonnegative_p (arg0))
6426 return arg0;
6427 return t;
6429 case CONJ_EXPR:
6430 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
6431 return fold_convert (type, arg0);
6432 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
6433 return build2 (COMPLEX_EXPR, type,
6434 TREE_OPERAND (arg0, 0),
6435 negate_expr (TREE_OPERAND (arg0, 1)));
6436 else if (TREE_CODE (arg0) == COMPLEX_CST)
6437 return build_complex (type, TREE_REALPART (arg0),
6438 negate_expr (TREE_IMAGPART (arg0)));
6439 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
6440 return fold (build2 (TREE_CODE (arg0), type,
6441 fold (build1 (CONJ_EXPR, type,
6442 TREE_OPERAND (arg0, 0))),
6443 fold (build1 (CONJ_EXPR, type,
6444 TREE_OPERAND (arg0, 1)))));
6445 else if (TREE_CODE (arg0) == CONJ_EXPR)
6446 return TREE_OPERAND (arg0, 0);
6447 return t;
6449 case BIT_NOT_EXPR:
6450 if (TREE_CODE (arg0) == INTEGER_CST)
6451 return fold_not_const (arg0, type);
6452 else if (TREE_CODE (arg0) == BIT_NOT_EXPR)
6453 return TREE_OPERAND (arg0, 0);
6454 return t;
6456 case PLUS_EXPR:
6457 /* A + (-B) -> A - B */
6458 if (TREE_CODE (arg1) == NEGATE_EXPR)
6459 return fold (build2 (MINUS_EXPR, type, arg0, TREE_OPERAND (arg1, 0)));
6460 /* (-A) + B -> B - A */
6461 if (TREE_CODE (arg0) == NEGATE_EXPR
6462 && reorder_operands_p (TREE_OPERAND (arg0, 0), arg1))
6463 return fold (build2 (MINUS_EXPR, type, arg1, TREE_OPERAND (arg0, 0)));
6464 if (! FLOAT_TYPE_P (type))
6466 if (integer_zerop (arg1))
6467 return non_lvalue (fold_convert (type, arg0));
6469 /* If we are adding two BIT_AND_EXPR's, both of which are and'ing
6470 with a constant, and the two constants have no bits in common,
6471 we should treat this as a BIT_IOR_EXPR since this may produce more
6472 simplifications. */
6473 if (TREE_CODE (arg0) == BIT_AND_EXPR
6474 && TREE_CODE (arg1) == BIT_AND_EXPR
6475 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
6476 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
6477 && integer_zerop (const_binop (BIT_AND_EXPR,
6478 TREE_OPERAND (arg0, 1),
6479 TREE_OPERAND (arg1, 1), 0)))
6481 code = BIT_IOR_EXPR;
6482 goto bit_ior;
6485 /* Reassociate (plus (plus (mult) (foo)) (mult)) as
6486 (plus (plus (mult) (mult)) (foo)) so that we can
6487 take advantage of the factoring cases below. */
6488 if ((TREE_CODE (arg0) == PLUS_EXPR
6489 && TREE_CODE (arg1) == MULT_EXPR)
6490 || (TREE_CODE (arg1) == PLUS_EXPR
6491 && TREE_CODE (arg0) == MULT_EXPR))
6493 tree parg0, parg1, parg, marg;
6495 if (TREE_CODE (arg0) == PLUS_EXPR)
6496 parg = arg0, marg = arg1;
6497 else
6498 parg = arg1, marg = arg0;
6499 parg0 = TREE_OPERAND (parg, 0);
6500 parg1 = TREE_OPERAND (parg, 1);
6501 STRIP_NOPS (parg0);
6502 STRIP_NOPS (parg1);
6504 if (TREE_CODE (parg0) == MULT_EXPR
6505 && TREE_CODE (parg1) != MULT_EXPR)
6506 return fold (build2 (PLUS_EXPR, type,
6507 fold (build2 (PLUS_EXPR, type,
6508 fold_convert (type, parg0),
6509 fold_convert (type, marg))),
6510 fold_convert (type, parg1)));
6511 if (TREE_CODE (parg0) != MULT_EXPR
6512 && TREE_CODE (parg1) == MULT_EXPR)
6513 return fold (build2 (PLUS_EXPR, type,
6514 fold (build2 (PLUS_EXPR, type,
6515 fold_convert (type, parg1),
6516 fold_convert (type, marg))),
6517 fold_convert (type, parg0)));
6520 if (TREE_CODE (arg0) == MULT_EXPR && TREE_CODE (arg1) == MULT_EXPR)
6522 tree arg00, arg01, arg10, arg11;
6523 tree alt0 = NULL_TREE, alt1 = NULL_TREE, same;
6525 /* (A * C) + (B * C) -> (A+B) * C.
6526 We are most concerned about the case where C is a constant,
6527 but other combinations show up during loop reduction. Since
6528 it is not difficult, try all four possibilities. */
6530 arg00 = TREE_OPERAND (arg0, 0);
6531 arg01 = TREE_OPERAND (arg0, 1);
6532 arg10 = TREE_OPERAND (arg1, 0);
6533 arg11 = TREE_OPERAND (arg1, 1);
6534 same = NULL_TREE;
6536 if (operand_equal_p (arg01, arg11, 0))
6537 same = arg01, alt0 = arg00, alt1 = arg10;
6538 else if (operand_equal_p (arg00, arg10, 0))
6539 same = arg00, alt0 = arg01, alt1 = arg11;
6540 else if (operand_equal_p (arg00, arg11, 0))
6541 same = arg00, alt0 = arg01, alt1 = arg10;
6542 else if (operand_equal_p (arg01, arg10, 0))
6543 same = arg01, alt0 = arg00, alt1 = arg11;
6545 /* No identical multiplicands; see if we can find a common
6546 power-of-two factor in non-power-of-two multiplies. This
6547 can help in multi-dimensional array access. */
6548 else if (TREE_CODE (arg01) == INTEGER_CST
6549 && TREE_CODE (arg11) == INTEGER_CST
6550 && TREE_INT_CST_HIGH (arg01) == 0
6551 && TREE_INT_CST_HIGH (arg11) == 0)
6553 HOST_WIDE_INT int01, int11, tmp;
6554 int01 = TREE_INT_CST_LOW (arg01);
6555 int11 = TREE_INT_CST_LOW (arg11);
6557 /* Move min of absolute values to int11. */
6558 if ((int01 >= 0 ? int01 : -int01)
6559 < (int11 >= 0 ? int11 : -int11))
6561 tmp = int01, int01 = int11, int11 = tmp;
6562 alt0 = arg00, arg00 = arg10, arg10 = alt0;
6563 alt0 = arg01, arg01 = arg11, arg11 = alt0;
6566 if (exact_log2 (int11) > 0 && int01 % int11 == 0)
6568 alt0 = fold (build2 (MULT_EXPR, type, arg00,
6569 build_int_2 (int01 / int11, 0)));
6570 alt1 = arg10;
6571 same = arg11;
6575 if (same)
6576 return fold (build2 (MULT_EXPR, type,
6577 fold (build2 (PLUS_EXPR, type,
6578 alt0, alt1)),
6579 same));
6582 else
6584 /* See if ARG1 is zero and X + ARG1 reduces to X. */
6585 if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 0))
6586 return non_lvalue (fold_convert (type, arg0));
6588 /* Likewise if the operands are reversed. */
6589 if (fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
6590 return non_lvalue (fold_convert (type, arg1));
6592 /* Convert x+x into x*2.0. */
6593 if (operand_equal_p (arg0, arg1, 0)
6594 && SCALAR_FLOAT_TYPE_P (type))
6595 return fold (build2 (MULT_EXPR, type, arg0,
6596 build_real (type, dconst2)));
6598 /* Convert x*c+x into x*(c+1). */
6599 if (flag_unsafe_math_optimizations
6600 && TREE_CODE (arg0) == MULT_EXPR
6601 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
6602 && ! TREE_CONSTANT_OVERFLOW (TREE_OPERAND (arg0, 1))
6603 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
6605 REAL_VALUE_TYPE c;
6607 c = TREE_REAL_CST (TREE_OPERAND (arg0, 1));
6608 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
6609 return fold (build2 (MULT_EXPR, type, arg1,
6610 build_real (type, c)));
6613 /* Convert x+x*c into x*(c+1). */
6614 if (flag_unsafe_math_optimizations
6615 && TREE_CODE (arg1) == MULT_EXPR
6616 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST
6617 && ! TREE_CONSTANT_OVERFLOW (TREE_OPERAND (arg1, 1))
6618 && operand_equal_p (TREE_OPERAND (arg1, 0), arg0, 0))
6620 REAL_VALUE_TYPE c;
6622 c = TREE_REAL_CST (TREE_OPERAND (arg1, 1));
6623 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
6624 return fold (build2 (MULT_EXPR, type, arg0,
6625 build_real (type, c)));
6628 /* Convert x*c1+x*c2 into x*(c1+c2). */
6629 if (flag_unsafe_math_optimizations
6630 && TREE_CODE (arg0) == MULT_EXPR
6631 && TREE_CODE (arg1) == MULT_EXPR
6632 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
6633 && ! TREE_CONSTANT_OVERFLOW (TREE_OPERAND (arg0, 1))
6634 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST
6635 && ! TREE_CONSTANT_OVERFLOW (TREE_OPERAND (arg1, 1))
6636 && operand_equal_p (TREE_OPERAND (arg0, 0),
6637 TREE_OPERAND (arg1, 0), 0))
6639 REAL_VALUE_TYPE c1, c2;
6641 c1 = TREE_REAL_CST (TREE_OPERAND (arg0, 1));
6642 c2 = TREE_REAL_CST (TREE_OPERAND (arg1, 1));
6643 real_arithmetic (&c1, PLUS_EXPR, &c1, &c2);
6644 return fold (build2 (MULT_EXPR, type,
6645 TREE_OPERAND (arg0, 0),
6646 build_real (type, c1)));
6648 /* Convert a + (b*c + d*e) into (a + b*c) + d*e */
6649 if (flag_unsafe_math_optimizations
6650 && TREE_CODE (arg1) == PLUS_EXPR
6651 && TREE_CODE (arg0) != MULT_EXPR)
6653 tree tree10 = TREE_OPERAND (arg1, 0);
6654 tree tree11 = TREE_OPERAND (arg1, 1);
6655 if (TREE_CODE (tree11) == MULT_EXPR
6656 && TREE_CODE (tree10) == MULT_EXPR)
6658 tree tree0;
6659 tree0 = fold (build2 (PLUS_EXPR, type, arg0, tree10));
6660 return fold (build2 (PLUS_EXPR, type, tree0, tree11));
6663 /* Convert (b*c + d*e) + a into b*c + (d*e +a) */
6664 if (flag_unsafe_math_optimizations
6665 && TREE_CODE (arg0) == PLUS_EXPR
6666 && TREE_CODE (arg1) != MULT_EXPR)
6668 tree tree00 = TREE_OPERAND (arg0, 0);
6669 tree tree01 = TREE_OPERAND (arg0, 1);
6670 if (TREE_CODE (tree01) == MULT_EXPR
6671 && TREE_CODE (tree00) == MULT_EXPR)
6673 tree tree0;
6674 tree0 = fold (build2 (PLUS_EXPR, type, tree01, arg1));
6675 return fold (build2 (PLUS_EXPR, type, tree00, tree0));
6680 bit_rotate:
6681 /* (A << C1) + (A >> C2) if A is unsigned and C1+C2 is the size of A
6682 is a rotate of A by C1 bits. */
6683 /* (A << B) + (A >> (Z - B)) if A is unsigned and Z is the size of A
6684 is a rotate of A by B bits. */
6686 enum tree_code code0, code1;
6687 code0 = TREE_CODE (arg0);
6688 code1 = TREE_CODE (arg1);
6689 if (((code0 == RSHIFT_EXPR && code1 == LSHIFT_EXPR)
6690 || (code1 == RSHIFT_EXPR && code0 == LSHIFT_EXPR))
6691 && operand_equal_p (TREE_OPERAND (arg0, 0),
6692 TREE_OPERAND (arg1, 0), 0)
6693 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
6695 tree tree01, tree11;
6696 enum tree_code code01, code11;
6698 tree01 = TREE_OPERAND (arg0, 1);
6699 tree11 = TREE_OPERAND (arg1, 1);
6700 STRIP_NOPS (tree01);
6701 STRIP_NOPS (tree11);
6702 code01 = TREE_CODE (tree01);
6703 code11 = TREE_CODE (tree11);
6704 if (code01 == INTEGER_CST
6705 && code11 == INTEGER_CST
6706 && TREE_INT_CST_HIGH (tree01) == 0
6707 && TREE_INT_CST_HIGH (tree11) == 0
6708 && ((TREE_INT_CST_LOW (tree01) + TREE_INT_CST_LOW (tree11))
6709 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)))))
6710 return build2 (LROTATE_EXPR, type, TREE_OPERAND (arg0, 0),
6711 code0 == LSHIFT_EXPR ? tree01 : tree11);
6712 else if (code11 == MINUS_EXPR)
6714 tree tree110, tree111;
6715 tree110 = TREE_OPERAND (tree11, 0);
6716 tree111 = TREE_OPERAND (tree11, 1);
6717 STRIP_NOPS (tree110);
6718 STRIP_NOPS (tree111);
6719 if (TREE_CODE (tree110) == INTEGER_CST
6720 && 0 == compare_tree_int (tree110,
6721 TYPE_PRECISION
6722 (TREE_TYPE (TREE_OPERAND
6723 (arg0, 0))))
6724 && operand_equal_p (tree01, tree111, 0))
6725 return build2 ((code0 == LSHIFT_EXPR
6726 ? LROTATE_EXPR
6727 : RROTATE_EXPR),
6728 type, TREE_OPERAND (arg0, 0), tree01);
6730 else if (code01 == MINUS_EXPR)
6732 tree tree010, tree011;
6733 tree010 = TREE_OPERAND (tree01, 0);
6734 tree011 = TREE_OPERAND (tree01, 1);
6735 STRIP_NOPS (tree010);
6736 STRIP_NOPS (tree011);
6737 if (TREE_CODE (tree010) == INTEGER_CST
6738 && 0 == compare_tree_int (tree010,
6739 TYPE_PRECISION
6740 (TREE_TYPE (TREE_OPERAND
6741 (arg0, 0))))
6742 && operand_equal_p (tree11, tree011, 0))
6743 return build2 ((code0 != LSHIFT_EXPR
6744 ? LROTATE_EXPR
6745 : RROTATE_EXPR),
6746 type, TREE_OPERAND (arg0, 0), tree11);
6751 associate:
6752 /* In most languages, can't associate operations on floats through
6753 parentheses. Rather than remember where the parentheses were, we
6754 don't associate floats at all, unless the user has specified
6755 -funsafe-math-optimizations. */
6757 if (! wins
6758 && (! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations))
6760 tree var0, con0, lit0, minus_lit0;
6761 tree var1, con1, lit1, minus_lit1;
6763 /* Split both trees into variables, constants, and literals. Then
6764 associate each group together, the constants with literals,
6765 then the result with variables. This increases the chances of
6766 literals being recombined later and of generating relocatable
6767 expressions for the sum of a constant and literal. */
6768 var0 = split_tree (arg0, code, &con0, &lit0, &minus_lit0, 0);
6769 var1 = split_tree (arg1, code, &con1, &lit1, &minus_lit1,
6770 code == MINUS_EXPR);
6772 /* Only do something if we found more than two objects. Otherwise,
6773 nothing has changed and we risk infinite recursion. */
6774 if (2 < ((var0 != 0) + (var1 != 0)
6775 + (con0 != 0) + (con1 != 0)
6776 + (lit0 != 0) + (lit1 != 0)
6777 + (minus_lit0 != 0) + (minus_lit1 != 0)))
6779 /* Recombine MINUS_EXPR operands by using PLUS_EXPR. */
6780 if (code == MINUS_EXPR)
6781 code = PLUS_EXPR;
6783 var0 = associate_trees (var0, var1, code, type);
6784 con0 = associate_trees (con0, con1, code, type);
6785 lit0 = associate_trees (lit0, lit1, code, type);
6786 minus_lit0 = associate_trees (minus_lit0, minus_lit1, code, type);
6788 /* Preserve the MINUS_EXPR if the negative part of the literal is
6789 greater than the positive part. Otherwise, the multiplicative
6790 folding code (i.e extract_muldiv) may be fooled in case
6791 unsigned constants are subtracted, like in the following
6792 example: ((X*2 + 4) - 8U)/2. */
6793 if (minus_lit0 && lit0)
6795 if (TREE_CODE (lit0) == INTEGER_CST
6796 && TREE_CODE (minus_lit0) == INTEGER_CST
6797 && tree_int_cst_lt (lit0, minus_lit0))
6799 minus_lit0 = associate_trees (minus_lit0, lit0,
6800 MINUS_EXPR, type);
6801 lit0 = 0;
6803 else
6805 lit0 = associate_trees (lit0, minus_lit0,
6806 MINUS_EXPR, type);
6807 minus_lit0 = 0;
6810 if (minus_lit0)
6812 if (con0 == 0)
6813 return fold_convert (type,
6814 associate_trees (var0, minus_lit0,
6815 MINUS_EXPR, type));
6816 else
6818 con0 = associate_trees (con0, minus_lit0,
6819 MINUS_EXPR, type);
6820 return fold_convert (type,
6821 associate_trees (var0, con0,
6822 PLUS_EXPR, type));
6826 con0 = associate_trees (con0, lit0, code, type);
6827 return fold_convert (type, associate_trees (var0, con0,
6828 code, type));
6832 binary:
6833 if (wins)
6834 t1 = const_binop (code, arg0, arg1, 0);
6835 if (t1 != NULL_TREE)
6837 /* The return value should always have
6838 the same type as the original expression. */
6839 if (TREE_TYPE (t1) != type)
6840 t1 = fold_convert (type, t1);
6842 return t1;
6844 return t;
6846 case MINUS_EXPR:
6847 /* A - (-B) -> A + B */
6848 if (TREE_CODE (arg1) == NEGATE_EXPR)
6849 return fold (build2 (PLUS_EXPR, type, arg0, TREE_OPERAND (arg1, 0)));
6850 /* (-A) - B -> (-B) - A where B is easily negated and we can swap. */
6851 if (TREE_CODE (arg0) == NEGATE_EXPR
6852 && (FLOAT_TYPE_P (type)
6853 || (INTEGRAL_TYPE_P (type) && flag_wrapv && !flag_trapv))
6854 && negate_expr_p (arg1)
6855 && reorder_operands_p (arg0, arg1))
6856 return fold (build2 (MINUS_EXPR, type, negate_expr (arg1),
6857 TREE_OPERAND (arg0, 0)));
6859 if (! FLOAT_TYPE_P (type))
6861 if (! wins && integer_zerop (arg0))
6862 return negate_expr (fold_convert (type, arg1));
6863 if (integer_zerop (arg1))
6864 return non_lvalue (fold_convert (type, arg0));
6866 /* Fold A - (A & B) into ~B & A. */
6867 if (!TREE_SIDE_EFFECTS (arg0)
6868 && TREE_CODE (arg1) == BIT_AND_EXPR)
6870 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0))
6871 return fold (build2 (BIT_AND_EXPR, type,
6872 fold (build1 (BIT_NOT_EXPR, type,
6873 TREE_OPERAND (arg1, 0))),
6874 arg0));
6875 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
6876 return fold (build2 (BIT_AND_EXPR, type,
6877 fold (build1 (BIT_NOT_EXPR, type,
6878 TREE_OPERAND (arg1, 1))),
6879 arg0));
6882 /* Fold (A & ~B) - (A & B) into (A ^ B) - B, where B is
6883 any power of 2 minus 1. */
6884 if (TREE_CODE (arg0) == BIT_AND_EXPR
6885 && TREE_CODE (arg1) == BIT_AND_EXPR
6886 && operand_equal_p (TREE_OPERAND (arg0, 0),
6887 TREE_OPERAND (arg1, 0), 0))
6889 tree mask0 = TREE_OPERAND (arg0, 1);
6890 tree mask1 = TREE_OPERAND (arg1, 1);
6891 tree tem = fold (build1 (BIT_NOT_EXPR, type, mask0));
6893 if (operand_equal_p (tem, mask1, 0))
6895 tem = fold (build2 (BIT_XOR_EXPR, type,
6896 TREE_OPERAND (arg0, 0), mask1));
6897 return fold (build2 (MINUS_EXPR, type, tem, mask1));
6902 /* See if ARG1 is zero and X - ARG1 reduces to X. */
6903 else if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 1))
6904 return non_lvalue (fold_convert (type, arg0));
6906 /* (ARG0 - ARG1) is the same as (-ARG1 + ARG0). So check whether
6907 ARG0 is zero and X + ARG0 reduces to X, since that would mean
6908 (-ARG1 + ARG0) reduces to -ARG1. */
6909 else if (!wins && fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
6910 return negate_expr (fold_convert (type, arg1));
6912 /* Fold &x - &x. This can happen from &x.foo - &x.
6913 This is unsafe for certain floats even in non-IEEE formats.
6914 In IEEE, it is unsafe because it does wrong for NaNs.
6915 Also note that operand_equal_p is always false if an operand
6916 is volatile. */
6918 if ((! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
6919 && operand_equal_p (arg0, arg1, 0))
6920 return fold_convert (type, integer_zero_node);
6922 /* A - B -> A + (-B) if B is easily negatable. */
6923 if (!wins && negate_expr_p (arg1)
6924 && (FLOAT_TYPE_P (type)
6925 || (INTEGRAL_TYPE_P (type) && flag_wrapv && !flag_trapv)))
6926 return fold (build2 (PLUS_EXPR, type, arg0, negate_expr (arg1)));
6928 if (TREE_CODE (arg0) == MULT_EXPR
6929 && TREE_CODE (arg1) == MULT_EXPR
6930 && (INTEGRAL_TYPE_P (type) || flag_unsafe_math_optimizations))
6932 /* (A * C) - (B * C) -> (A-B) * C. */
6933 if (operand_equal_p (TREE_OPERAND (arg0, 1),
6934 TREE_OPERAND (arg1, 1), 0))
6935 return fold (build2 (MULT_EXPR, type,
6936 fold (build2 (MINUS_EXPR, type,
6937 TREE_OPERAND (arg0, 0),
6938 TREE_OPERAND (arg1, 0))),
6939 TREE_OPERAND (arg0, 1)));
6940 /* (A * C1) - (A * C2) -> A * (C1-C2). */
6941 if (operand_equal_p (TREE_OPERAND (arg0, 0),
6942 TREE_OPERAND (arg1, 0), 0))
6943 return fold (build2 (MULT_EXPR, type,
6944 TREE_OPERAND (arg0, 0),
6945 fold (build2 (MINUS_EXPR, type,
6946 TREE_OPERAND (arg0, 1),
6947 TREE_OPERAND (arg1, 1)))));
6950 goto associate;
6952 case MULT_EXPR:
6953 /* (-A) * (-B) -> A * B */
6954 if (TREE_CODE (arg0) == NEGATE_EXPR && negate_expr_p (arg1))
6955 return fold (build2 (MULT_EXPR, type,
6956 TREE_OPERAND (arg0, 0),
6957 negate_expr (arg1)));
6958 if (TREE_CODE (arg1) == NEGATE_EXPR && negate_expr_p (arg0))
6959 return fold (build2 (MULT_EXPR, type,
6960 negate_expr (arg0),
6961 TREE_OPERAND (arg1, 0)));
6963 if (! FLOAT_TYPE_P (type))
6965 if (integer_zerop (arg1))
6966 return omit_one_operand (type, arg1, arg0);
6967 if (integer_onep (arg1))
6968 return non_lvalue (fold_convert (type, arg0));
6970 /* (a * (1 << b)) is (a << b) */
6971 if (TREE_CODE (arg1) == LSHIFT_EXPR
6972 && integer_onep (TREE_OPERAND (arg1, 0)))
6973 return fold (build2 (LSHIFT_EXPR, type, arg0,
6974 TREE_OPERAND (arg1, 1)));
6975 if (TREE_CODE (arg0) == LSHIFT_EXPR
6976 && integer_onep (TREE_OPERAND (arg0, 0)))
6977 return fold (build2 (LSHIFT_EXPR, type, arg1,
6978 TREE_OPERAND (arg0, 1)));
6980 if (TREE_CODE (arg1) == INTEGER_CST
6981 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0),
6982 fold_convert (type, arg1),
6983 code, NULL_TREE)))
6984 return fold_convert (type, tem);
6987 else
6989 /* Maybe fold x * 0 to 0. The expressions aren't the same
6990 when x is NaN, since x * 0 is also NaN. Nor are they the
6991 same in modes with signed zeros, since multiplying a
6992 negative value by 0 gives -0, not +0. */
6993 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
6994 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
6995 && real_zerop (arg1))
6996 return omit_one_operand (type, arg1, arg0);
6997 /* In IEEE floating point, x*1 is not equivalent to x for snans. */
6998 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
6999 && real_onep (arg1))
7000 return non_lvalue (fold_convert (type, arg0));
7002 /* Transform x * -1.0 into -x. */
7003 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
7004 && real_minus_onep (arg1))
7005 return fold_convert (type, negate_expr (arg0));
7007 /* Convert (C1/X)*C2 into (C1*C2)/X. */
7008 if (flag_unsafe_math_optimizations
7009 && TREE_CODE (arg0) == RDIV_EXPR
7010 && TREE_CODE (arg1) == REAL_CST
7011 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST)
7013 tree tem = const_binop (MULT_EXPR, TREE_OPERAND (arg0, 0),
7014 arg1, 0);
7015 if (tem)
7016 return fold (build2 (RDIV_EXPR, type, tem,
7017 TREE_OPERAND (arg0, 1)));
7020 if (flag_unsafe_math_optimizations)
7022 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
7023 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
7025 /* Optimizations of root(...)*root(...). */
7026 if (fcode0 == fcode1 && BUILTIN_ROOT_P (fcode0))
7028 tree rootfn, arg, arglist;
7029 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
7030 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
7032 /* Optimize sqrt(x)*sqrt(x) as x. */
7033 if (BUILTIN_SQRT_P (fcode0)
7034 && operand_equal_p (arg00, arg10, 0)
7035 && ! HONOR_SNANS (TYPE_MODE (type)))
7036 return arg00;
7038 /* Optimize root(x)*root(y) as root(x*y). */
7039 rootfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
7040 arg = fold (build2 (MULT_EXPR, type, arg00, arg10));
7041 arglist = build_tree_list (NULL_TREE, arg);
7042 return build_function_call_expr (rootfn, arglist);
7045 /* Optimize expN(x)*expN(y) as expN(x+y). */
7046 if (fcode0 == fcode1 && BUILTIN_EXPONENT_P (fcode0))
7048 tree expfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
7049 tree arg = build2 (PLUS_EXPR, type,
7050 TREE_VALUE (TREE_OPERAND (arg0, 1)),
7051 TREE_VALUE (TREE_OPERAND (arg1, 1)));
7052 tree arglist = build_tree_list (NULL_TREE, fold (arg));
7053 return build_function_call_expr (expfn, arglist);
7056 /* Optimizations of pow(...)*pow(...). */
7057 if ((fcode0 == BUILT_IN_POW && fcode1 == BUILT_IN_POW)
7058 || (fcode0 == BUILT_IN_POWF && fcode1 == BUILT_IN_POWF)
7059 || (fcode0 == BUILT_IN_POWL && fcode1 == BUILT_IN_POWL))
7061 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
7062 tree arg01 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0,
7063 1)));
7064 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
7065 tree arg11 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg1,
7066 1)));
7068 /* Optimize pow(x,y)*pow(z,y) as pow(x*z,y). */
7069 if (operand_equal_p (arg01, arg11, 0))
7071 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
7072 tree arg = build2 (MULT_EXPR, type, arg00, arg10);
7073 tree arglist = tree_cons (NULL_TREE, fold (arg),
7074 build_tree_list (NULL_TREE,
7075 arg01));
7076 return build_function_call_expr (powfn, arglist);
7079 /* Optimize pow(x,y)*pow(x,z) as pow(x,y+z). */
7080 if (operand_equal_p (arg00, arg10, 0))
7082 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
7083 tree arg = fold (build2 (PLUS_EXPR, type, arg01, arg11));
7084 tree arglist = tree_cons (NULL_TREE, arg00,
7085 build_tree_list (NULL_TREE,
7086 arg));
7087 return build_function_call_expr (powfn, arglist);
7091 /* Optimize tan(x)*cos(x) as sin(x). */
7092 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_COS)
7093 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_COSF)
7094 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_COSL)
7095 || (fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_TAN)
7096 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_TANF)
7097 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_TANL))
7098 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
7099 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
7101 tree sinfn = mathfn_built_in (type, BUILT_IN_SIN);
7103 if (sinfn != NULL_TREE)
7104 return build_function_call_expr (sinfn,
7105 TREE_OPERAND (arg0, 1));
7108 /* Optimize x*pow(x,c) as pow(x,c+1). */
7109 if (fcode1 == BUILT_IN_POW
7110 || fcode1 == BUILT_IN_POWF
7111 || fcode1 == BUILT_IN_POWL)
7113 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
7114 tree arg11 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg1,
7115 1)));
7116 if (TREE_CODE (arg11) == REAL_CST
7117 && ! TREE_CONSTANT_OVERFLOW (arg11)
7118 && operand_equal_p (arg0, arg10, 0))
7120 tree powfn = TREE_OPERAND (TREE_OPERAND (arg1, 0), 0);
7121 REAL_VALUE_TYPE c;
7122 tree arg, arglist;
7124 c = TREE_REAL_CST (arg11);
7125 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
7126 arg = build_real (type, c);
7127 arglist = build_tree_list (NULL_TREE, arg);
7128 arglist = tree_cons (NULL_TREE, arg0, arglist);
7129 return build_function_call_expr (powfn, arglist);
7133 /* Optimize pow(x,c)*x as pow(x,c+1). */
7134 if (fcode0 == BUILT_IN_POW
7135 || fcode0 == BUILT_IN_POWF
7136 || fcode0 == BUILT_IN_POWL)
7138 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
7139 tree arg01 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0,
7140 1)));
7141 if (TREE_CODE (arg01) == REAL_CST
7142 && ! TREE_CONSTANT_OVERFLOW (arg01)
7143 && operand_equal_p (arg1, arg00, 0))
7145 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
7146 REAL_VALUE_TYPE c;
7147 tree arg, arglist;
7149 c = TREE_REAL_CST (arg01);
7150 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
7151 arg = build_real (type, c);
7152 arglist = build_tree_list (NULL_TREE, arg);
7153 arglist = tree_cons (NULL_TREE, arg1, arglist);
7154 return build_function_call_expr (powfn, arglist);
7158 /* Optimize x*x as pow(x,2.0), which is expanded as x*x. */
7159 if (! optimize_size
7160 && operand_equal_p (arg0, arg1, 0))
7162 tree powfn = mathfn_built_in (type, BUILT_IN_POW);
7164 if (powfn)
7166 tree arg = build_real (type, dconst2);
7167 tree arglist = build_tree_list (NULL_TREE, arg);
7168 arglist = tree_cons (NULL_TREE, arg0, arglist);
7169 return build_function_call_expr (powfn, arglist);
7174 goto associate;
7176 case BIT_IOR_EXPR:
7177 bit_ior:
7178 if (integer_all_onesp (arg1))
7179 return omit_one_operand (type, arg1, arg0);
7180 if (integer_zerop (arg1))
7181 return non_lvalue (fold_convert (type, arg0));
7182 if (operand_equal_p (arg0, arg1, 0))
7183 return non_lvalue (fold_convert (type, arg0));
7185 /* ~X | X is -1. */
7186 if (TREE_CODE (arg0) == BIT_NOT_EXPR
7187 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
7189 t1 = build_int_2 (-1, -1);
7190 TREE_TYPE (t1) = type;
7191 force_fit_type (t1, 0);
7192 return omit_one_operand (type, t1, arg1);
7195 /* X | ~X is -1. */
7196 if (TREE_CODE (arg1) == BIT_NOT_EXPR
7197 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
7199 t1 = build_int_2 (-1, -1);
7200 TREE_TYPE (t1) = type;
7201 force_fit_type (t1, 0);
7202 return omit_one_operand (type, t1, arg0);
7205 t1 = distribute_bit_expr (code, type, arg0, arg1);
7206 if (t1 != NULL_TREE)
7207 return t1;
7209 /* Convert (or (not arg0) (not arg1)) to (not (and (arg0) (arg1))).
7211 This results in more efficient code for machines without a NAND
7212 instruction. Combine will canonicalize to the first form
7213 which will allow use of NAND instructions provided by the
7214 backend if they exist. */
7215 if (TREE_CODE (arg0) == BIT_NOT_EXPR
7216 && TREE_CODE (arg1) == BIT_NOT_EXPR)
7218 return fold (build1 (BIT_NOT_EXPR, type,
7219 build2 (BIT_AND_EXPR, type,
7220 TREE_OPERAND (arg0, 0),
7221 TREE_OPERAND (arg1, 0))));
7224 /* See if this can be simplified into a rotate first. If that
7225 is unsuccessful continue in the association code. */
7226 goto bit_rotate;
7228 case BIT_XOR_EXPR:
7229 if (integer_zerop (arg1))
7230 return non_lvalue (fold_convert (type, arg0));
7231 if (integer_all_onesp (arg1))
7232 return fold (build1 (BIT_NOT_EXPR, type, arg0));
7233 if (operand_equal_p (arg0, arg1, 0))
7234 return omit_one_operand (type, integer_zero_node, arg0);
7236 /* ~X ^ X is -1. */
7237 if (TREE_CODE (arg0) == BIT_NOT_EXPR
7238 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
7240 t1 = build_int_2 (-1, -1);
7241 TREE_TYPE (t1) = type;
7242 force_fit_type (t1, 0);
7243 return omit_one_operand (type, t1, arg1);
7246 /* X ^ ~X is -1. */
7247 if (TREE_CODE (arg1) == BIT_NOT_EXPR
7248 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
7250 t1 = build_int_2 (-1, -1);
7251 TREE_TYPE (t1) = type;
7252 force_fit_type (t1, 0);
7253 return omit_one_operand (type, t1, arg0);
7256 /* If we are XORing two BIT_AND_EXPR's, both of which are and'ing
7257 with a constant, and the two constants have no bits in common,
7258 we should treat this as a BIT_IOR_EXPR since this may produce more
7259 simplifications. */
7260 if (TREE_CODE (arg0) == BIT_AND_EXPR
7261 && TREE_CODE (arg1) == BIT_AND_EXPR
7262 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
7263 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
7264 && integer_zerop (const_binop (BIT_AND_EXPR,
7265 TREE_OPERAND (arg0, 1),
7266 TREE_OPERAND (arg1, 1), 0)))
7268 code = BIT_IOR_EXPR;
7269 goto bit_ior;
7272 /* See if this can be simplified into a rotate first. If that
7273 is unsuccessful continue in the association code. */
7274 goto bit_rotate;
7276 case BIT_AND_EXPR:
7277 if (integer_all_onesp (arg1))
7278 return non_lvalue (fold_convert (type, arg0));
7279 if (integer_zerop (arg1))
7280 return omit_one_operand (type, arg1, arg0);
7281 if (operand_equal_p (arg0, arg1, 0))
7282 return non_lvalue (fold_convert (type, arg0));
7284 /* ~X & X is always zero. */
7285 if (TREE_CODE (arg0) == BIT_NOT_EXPR
7286 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
7287 return omit_one_operand (type, integer_zero_node, arg1);
7289 /* X & ~X is always zero. */
7290 if (TREE_CODE (arg1) == BIT_NOT_EXPR
7291 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
7292 return omit_one_operand (type, integer_zero_node, arg0);
7294 t1 = distribute_bit_expr (code, type, arg0, arg1);
7295 if (t1 != NULL_TREE)
7296 return t1;
7297 /* Simplify ((int)c & 0377) into (int)c, if c is unsigned char. */
7298 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) == NOP_EXPR
7299 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
7301 unsigned int prec
7302 = TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)));
7304 if (prec < BITS_PER_WORD && prec < HOST_BITS_PER_WIDE_INT
7305 && (~TREE_INT_CST_LOW (arg1)
7306 & (((HOST_WIDE_INT) 1 << prec) - 1)) == 0)
7307 return fold_convert (type, TREE_OPERAND (arg0, 0));
7310 /* Convert (and (not arg0) (not arg1)) to (not (or (arg0) (arg1))).
7312 This results in more efficient code for machines without a NOR
7313 instruction. Combine will canonicalize to the first form
7314 which will allow use of NOR instructions provided by the
7315 backend if they exist. */
7316 if (TREE_CODE (arg0) == BIT_NOT_EXPR
7317 && TREE_CODE (arg1) == BIT_NOT_EXPR)
7319 return fold (build1 (BIT_NOT_EXPR, type,
7320 build2 (BIT_IOR_EXPR, type,
7321 TREE_OPERAND (arg0, 0),
7322 TREE_OPERAND (arg1, 0))));
7325 goto associate;
7327 case RDIV_EXPR:
7328 /* Don't touch a floating-point divide by zero unless the mode
7329 of the constant can represent infinity. */
7330 if (TREE_CODE (arg1) == REAL_CST
7331 && !MODE_HAS_INFINITIES (TYPE_MODE (TREE_TYPE (arg1)))
7332 && real_zerop (arg1))
7333 return t;
7335 /* (-A) / (-B) -> A / B */
7336 if (TREE_CODE (arg0) == NEGATE_EXPR && negate_expr_p (arg1))
7337 return fold (build2 (RDIV_EXPR, type,
7338 TREE_OPERAND (arg0, 0),
7339 negate_expr (arg1)));
7340 if (TREE_CODE (arg1) == NEGATE_EXPR && negate_expr_p (arg0))
7341 return fold (build2 (RDIV_EXPR, type,
7342 negate_expr (arg0),
7343 TREE_OPERAND (arg1, 0)));
7345 /* In IEEE floating point, x/1 is not equivalent to x for snans. */
7346 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
7347 && real_onep (arg1))
7348 return non_lvalue (fold_convert (type, arg0));
7350 /* In IEEE floating point, x/-1 is not equivalent to -x for snans. */
7351 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
7352 && real_minus_onep (arg1))
7353 return non_lvalue (fold_convert (type, negate_expr (arg0)));
7355 /* If ARG1 is a constant, we can convert this to a multiply by the
7356 reciprocal. This does not have the same rounding properties,
7357 so only do this if -funsafe-math-optimizations. We can actually
7358 always safely do it if ARG1 is a power of two, but it's hard to
7359 tell if it is or not in a portable manner. */
7360 if (TREE_CODE (arg1) == REAL_CST)
7362 if (flag_unsafe_math_optimizations
7363 && 0 != (tem = const_binop (code, build_real (type, dconst1),
7364 arg1, 0)))
7365 return fold (build2 (MULT_EXPR, type, arg0, tem));
7366 /* Find the reciprocal if optimizing and the result is exact. */
7367 if (optimize)
7369 REAL_VALUE_TYPE r;
7370 r = TREE_REAL_CST (arg1);
7371 if (exact_real_inverse (TYPE_MODE(TREE_TYPE(arg0)), &r))
7373 tem = build_real (type, r);
7374 return fold (build2 (MULT_EXPR, type, arg0, tem));
7378 /* Convert A/B/C to A/(B*C). */
7379 if (flag_unsafe_math_optimizations
7380 && TREE_CODE (arg0) == RDIV_EXPR)
7381 return fold (build2 (RDIV_EXPR, type, TREE_OPERAND (arg0, 0),
7382 fold (build2 (MULT_EXPR, type,
7383 TREE_OPERAND (arg0, 1), arg1))));
7385 /* Convert A/(B/C) to (A/B)*C. */
7386 if (flag_unsafe_math_optimizations
7387 && TREE_CODE (arg1) == RDIV_EXPR)
7388 return fold (build2 (MULT_EXPR, type,
7389 fold (build2 (RDIV_EXPR, type, arg0,
7390 TREE_OPERAND (arg1, 0))),
7391 TREE_OPERAND (arg1, 1)));
7393 /* Convert C1/(X*C2) into (C1/C2)/X. */
7394 if (flag_unsafe_math_optimizations
7395 && TREE_CODE (arg1) == MULT_EXPR
7396 && TREE_CODE (arg0) == REAL_CST
7397 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST)
7399 tree tem = const_binop (RDIV_EXPR, arg0,
7400 TREE_OPERAND (arg1, 1), 0);
7401 if (tem)
7402 return fold (build2 (RDIV_EXPR, type, tem,
7403 TREE_OPERAND (arg1, 0)));
7406 if (flag_unsafe_math_optimizations)
7408 enum built_in_function fcode = builtin_mathfn_code (arg1);
7409 /* Optimize x/expN(y) into x*expN(-y). */
7410 if (BUILTIN_EXPONENT_P (fcode))
7412 tree expfn = TREE_OPERAND (TREE_OPERAND (arg1, 0), 0);
7413 tree arg = negate_expr (TREE_VALUE (TREE_OPERAND (arg1, 1)));
7414 tree arglist = build_tree_list (NULL_TREE,
7415 fold_convert (type, arg));
7416 arg1 = build_function_call_expr (expfn, arglist);
7417 return fold (build2 (MULT_EXPR, type, arg0, arg1));
7420 /* Optimize x/pow(y,z) into x*pow(y,-z). */
7421 if (fcode == BUILT_IN_POW
7422 || fcode == BUILT_IN_POWF
7423 || fcode == BUILT_IN_POWL)
7425 tree powfn = TREE_OPERAND (TREE_OPERAND (arg1, 0), 0);
7426 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
7427 tree arg11 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg1, 1)));
7428 tree neg11 = fold_convert (type, negate_expr (arg11));
7429 tree arglist = tree_cons(NULL_TREE, arg10,
7430 build_tree_list (NULL_TREE, neg11));
7431 arg1 = build_function_call_expr (powfn, arglist);
7432 return fold (build2 (MULT_EXPR, type, arg0, arg1));
7436 if (flag_unsafe_math_optimizations)
7438 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
7439 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
7441 /* Optimize sin(x)/cos(x) as tan(x). */
7442 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_COS)
7443 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_COSF)
7444 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_COSL))
7445 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
7446 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
7448 tree tanfn = mathfn_built_in (type, BUILT_IN_TAN);
7450 if (tanfn != NULL_TREE)
7451 return build_function_call_expr (tanfn,
7452 TREE_OPERAND (arg0, 1));
7455 /* Optimize cos(x)/sin(x) as 1.0/tan(x). */
7456 if (((fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_SIN)
7457 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_SINF)
7458 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_SINL))
7459 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
7460 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
7462 tree tanfn = mathfn_built_in (type, BUILT_IN_TAN);
7464 if (tanfn != NULL_TREE)
7466 tree tmp = TREE_OPERAND (arg0, 1);
7467 tmp = build_function_call_expr (tanfn, tmp);
7468 return fold (build2 (RDIV_EXPR, type,
7469 build_real (type, dconst1), tmp));
7473 /* Optimize pow(x,c)/x as pow(x,c-1). */
7474 if (fcode0 == BUILT_IN_POW
7475 || fcode0 == BUILT_IN_POWF
7476 || fcode0 == BUILT_IN_POWL)
7478 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
7479 tree arg01 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0, 1)));
7480 if (TREE_CODE (arg01) == REAL_CST
7481 && ! TREE_CONSTANT_OVERFLOW (arg01)
7482 && operand_equal_p (arg1, arg00, 0))
7484 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
7485 REAL_VALUE_TYPE c;
7486 tree arg, arglist;
7488 c = TREE_REAL_CST (arg01);
7489 real_arithmetic (&c, MINUS_EXPR, &c, &dconst1);
7490 arg = build_real (type, c);
7491 arglist = build_tree_list (NULL_TREE, arg);
7492 arglist = tree_cons (NULL_TREE, arg1, arglist);
7493 return build_function_call_expr (powfn, arglist);
7497 goto binary;
7499 case TRUNC_DIV_EXPR:
7500 case ROUND_DIV_EXPR:
7501 case FLOOR_DIV_EXPR:
7502 case CEIL_DIV_EXPR:
7503 case EXACT_DIV_EXPR:
7504 if (integer_onep (arg1))
7505 return non_lvalue (fold_convert (type, arg0));
7506 if (integer_zerop (arg1))
7507 return t;
7508 /* X / -1 is -X. */
7509 if (!TYPE_UNSIGNED (type)
7510 && TREE_CODE (arg1) == INTEGER_CST
7511 && TREE_INT_CST_LOW (arg1) == (unsigned HOST_WIDE_INT) -1
7512 && TREE_INT_CST_HIGH (arg1) == -1)
7513 return fold_convert (type, negate_expr (arg0));
7515 /* If arg0 is a multiple of arg1, then rewrite to the fastest div
7516 operation, EXACT_DIV_EXPR.
7518 Note that only CEIL_DIV_EXPR and FLOOR_DIV_EXPR are rewritten now.
7519 At one time others generated faster code, it's not clear if they do
7520 after the last round to changes to the DIV code in expmed.c. */
7521 if ((code == CEIL_DIV_EXPR || code == FLOOR_DIV_EXPR)
7522 && multiple_of_p (type, arg0, arg1))
7523 return fold (build2 (EXACT_DIV_EXPR, type, arg0, arg1));
7525 if (TREE_CODE (arg1) == INTEGER_CST
7526 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0), arg1,
7527 code, NULL_TREE)))
7528 return fold_convert (type, tem);
7530 goto binary;
7532 case CEIL_MOD_EXPR:
7533 case FLOOR_MOD_EXPR:
7534 case ROUND_MOD_EXPR:
7535 case TRUNC_MOD_EXPR:
7536 if (integer_onep (arg1))
7537 return omit_one_operand (type, integer_zero_node, arg0);
7538 if (integer_zerop (arg1))
7539 return t;
7541 /* X % -1 is zero. */
7542 if (!TYPE_UNSIGNED (type)
7543 && TREE_CODE (arg1) == INTEGER_CST
7544 && TREE_INT_CST_LOW (arg1) == (unsigned HOST_WIDE_INT) -1
7545 && TREE_INT_CST_HIGH (arg1) == -1)
7546 return omit_one_operand (type, integer_zero_node, arg0);
7548 /* Optimize unsigned TRUNC_MOD_EXPR by a power of two into a
7549 BIT_AND_EXPR, i.e. "X % C" into "X & C2". */
7550 if (code == TRUNC_MOD_EXPR
7551 && TYPE_UNSIGNED (type)
7552 && integer_pow2p (arg1))
7554 unsigned HOST_WIDE_INT high, low;
7555 tree mask;
7556 int l;
7558 l = tree_log2 (arg1);
7559 if (l >= HOST_BITS_PER_WIDE_INT)
7561 high = ((unsigned HOST_WIDE_INT) 1
7562 << (l - HOST_BITS_PER_WIDE_INT)) - 1;
7563 low = -1;
7565 else
7567 high = 0;
7568 low = ((unsigned HOST_WIDE_INT) 1 << l) - 1;
7571 mask = build_int_2 (low, high);
7572 TREE_TYPE (mask) = type;
7573 return fold (build2 (BIT_AND_EXPR, type,
7574 fold_convert (type, arg0), mask));
7577 /* X % -C is the same as X % C (for all rounding moduli). */
7578 if (!TYPE_UNSIGNED (type)
7579 && TREE_CODE (arg1) == INTEGER_CST
7580 && TREE_INT_CST_HIGH (arg1) < 0
7581 && !flag_trapv
7582 /* Avoid this transformation if C is INT_MIN, i.e. C == -C. */
7583 && !sign_bit_p (arg1, arg1))
7584 return fold (build2 (code, type, fold_convert (type, arg0),
7585 fold_convert (type, negate_expr (arg1))));
7587 /* X % -Y is the same as X % Y (for all rounding moduli). */
7588 if (!TYPE_UNSIGNED (type)
7589 && TREE_CODE (arg1) == NEGATE_EXPR
7590 && !flag_trapv)
7591 return fold (build2 (code, type, fold_convert (type, arg0),
7592 fold_convert (type, TREE_OPERAND (arg1, 0))));
7594 if (TREE_CODE (arg1) == INTEGER_CST
7595 && 0 != (tem = extract_muldiv (TREE_OPERAND (t, 0), arg1,
7596 code, NULL_TREE)))
7597 return fold_convert (type, tem);
7599 goto binary;
7601 case LROTATE_EXPR:
7602 case RROTATE_EXPR:
7603 if (integer_all_onesp (arg0))
7604 return omit_one_operand (type, arg0, arg1);
7605 goto shift;
7607 case RSHIFT_EXPR:
7608 /* Optimize -1 >> x for arithmetic right shifts. */
7609 if (integer_all_onesp (arg0) && !TYPE_UNSIGNED (type))
7610 return omit_one_operand (type, arg0, arg1);
7611 /* ... fall through ... */
7613 case LSHIFT_EXPR:
7614 shift:
7615 if (integer_zerop (arg1))
7616 return non_lvalue (fold_convert (type, arg0));
7617 if (integer_zerop (arg0))
7618 return omit_one_operand (type, arg0, arg1);
7620 /* Since negative shift count is not well-defined,
7621 don't try to compute it in the compiler. */
7622 if (TREE_CODE (arg1) == INTEGER_CST && tree_int_cst_sgn (arg1) < 0)
7623 return t;
7624 /* Rewrite an LROTATE_EXPR by a constant into an
7625 RROTATE_EXPR by a new constant. */
7626 if (code == LROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST)
7628 tree tem = build_int_2 (GET_MODE_BITSIZE (TYPE_MODE (type)), 0);
7629 tem = fold_convert (TREE_TYPE (arg1), tem);
7630 tem = const_binop (MINUS_EXPR, tem, arg1, 0);
7631 return fold (build2 (RROTATE_EXPR, type, arg0, tem));
7634 /* If we have a rotate of a bit operation with the rotate count and
7635 the second operand of the bit operation both constant,
7636 permute the two operations. */
7637 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
7638 && (TREE_CODE (arg0) == BIT_AND_EXPR
7639 || TREE_CODE (arg0) == BIT_IOR_EXPR
7640 || TREE_CODE (arg0) == BIT_XOR_EXPR)
7641 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
7642 return fold (build2 (TREE_CODE (arg0), type,
7643 fold (build2 (code, type,
7644 TREE_OPERAND (arg0, 0), arg1)),
7645 fold (build2 (code, type,
7646 TREE_OPERAND (arg0, 1), arg1))));
7648 /* Two consecutive rotates adding up to the width of the mode can
7649 be ignored. */
7650 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
7651 && TREE_CODE (arg0) == RROTATE_EXPR
7652 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
7653 && TREE_INT_CST_HIGH (arg1) == 0
7654 && TREE_INT_CST_HIGH (TREE_OPERAND (arg0, 1)) == 0
7655 && ((TREE_INT_CST_LOW (arg1)
7656 + TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)))
7657 == (unsigned int) GET_MODE_BITSIZE (TYPE_MODE (type))))
7658 return TREE_OPERAND (arg0, 0);
7660 goto binary;
7662 case MIN_EXPR:
7663 if (operand_equal_p (arg0, arg1, 0))
7664 return omit_one_operand (type, arg0, arg1);
7665 if (INTEGRAL_TYPE_P (type)
7666 && operand_equal_p (arg1, TYPE_MIN_VALUE (type), OEP_ONLY_CONST))
7667 return omit_one_operand (type, arg1, arg0);
7668 goto associate;
7670 case MAX_EXPR:
7671 if (operand_equal_p (arg0, arg1, 0))
7672 return omit_one_operand (type, arg0, arg1);
7673 if (INTEGRAL_TYPE_P (type)
7674 && TYPE_MAX_VALUE (type)
7675 && operand_equal_p (arg1, TYPE_MAX_VALUE (type), OEP_ONLY_CONST))
7676 return omit_one_operand (type, arg1, arg0);
7677 goto associate;
7679 case TRUTH_NOT_EXPR:
7680 /* The argument to invert_truthvalue must have Boolean type. */
7681 if (TREE_CODE (TREE_TYPE (arg0)) != BOOLEAN_TYPE)
7682 arg0 = fold_convert (boolean_type_node, arg0);
7684 /* Note that the operand of this must be an int
7685 and its values must be 0 or 1.
7686 ("true" is a fixed value perhaps depending on the language,
7687 but we don't handle values other than 1 correctly yet.) */
7688 tem = invert_truthvalue (arg0);
7689 /* Avoid infinite recursion. */
7690 if (TREE_CODE (tem) == TRUTH_NOT_EXPR)
7692 tem = fold_single_bit_test (code, arg0, arg1, type);
7693 if (tem)
7694 return tem;
7695 return t;
7697 return fold_convert (type, tem);
7699 case TRUTH_ANDIF_EXPR:
7700 /* Note that the operands of this must be ints
7701 and their values must be 0 or 1.
7702 ("true" is a fixed value perhaps depending on the language.) */
7703 /* If first arg is constant zero, return it. */
7704 if (integer_zerop (arg0))
7705 return fold_convert (type, arg0);
7706 case TRUTH_AND_EXPR:
7707 /* If either arg is constant true, drop it. */
7708 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
7709 return non_lvalue (fold_convert (type, arg1));
7710 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1)
7711 /* Preserve sequence points. */
7712 && (code != TRUTH_ANDIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
7713 return non_lvalue (fold_convert (type, arg0));
7714 /* If second arg is constant zero, result is zero, but first arg
7715 must be evaluated. */
7716 if (integer_zerop (arg1))
7717 return omit_one_operand (type, arg1, arg0);
7718 /* Likewise for first arg, but note that only the TRUTH_AND_EXPR
7719 case will be handled here. */
7720 if (integer_zerop (arg0))
7721 return omit_one_operand (type, arg0, arg1);
7723 /* !X && X is always false. */
7724 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
7725 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
7726 return omit_one_operand (type, integer_zero_node, arg1);
7727 /* X && !X is always false. */
7728 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
7729 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
7730 return omit_one_operand (type, integer_zero_node, arg0);
7732 truth_andor:
7733 /* We only do these simplifications if we are optimizing. */
7734 if (!optimize)
7735 return t;
7737 /* Check for things like (A || B) && (A || C). We can convert this
7738 to A || (B && C). Note that either operator can be any of the four
7739 truth and/or operations and the transformation will still be
7740 valid. Also note that we only care about order for the
7741 ANDIF and ORIF operators. If B contains side effects, this
7742 might change the truth-value of A. */
7743 if (TREE_CODE (arg0) == TREE_CODE (arg1)
7744 && (TREE_CODE (arg0) == TRUTH_ANDIF_EXPR
7745 || TREE_CODE (arg0) == TRUTH_ORIF_EXPR
7746 || TREE_CODE (arg0) == TRUTH_AND_EXPR
7747 || TREE_CODE (arg0) == TRUTH_OR_EXPR)
7748 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg0, 1)))
7750 tree a00 = TREE_OPERAND (arg0, 0);
7751 tree a01 = TREE_OPERAND (arg0, 1);
7752 tree a10 = TREE_OPERAND (arg1, 0);
7753 tree a11 = TREE_OPERAND (arg1, 1);
7754 int commutative = ((TREE_CODE (arg0) == TRUTH_OR_EXPR
7755 || TREE_CODE (arg0) == TRUTH_AND_EXPR)
7756 && (code == TRUTH_AND_EXPR
7757 || code == TRUTH_OR_EXPR));
7759 if (operand_equal_p (a00, a10, 0))
7760 return fold (build2 (TREE_CODE (arg0), type, a00,
7761 fold (build2 (code, type, a01, a11))));
7762 else if (commutative && operand_equal_p (a00, a11, 0))
7763 return fold (build2 (TREE_CODE (arg0), type, a00,
7764 fold (build2 (code, type, a01, a10))));
7765 else if (commutative && operand_equal_p (a01, a10, 0))
7766 return fold (build2 (TREE_CODE (arg0), type, a01,
7767 fold (build2 (code, type, a00, a11))));
7769 /* This case if tricky because we must either have commutative
7770 operators or else A10 must not have side-effects. */
7772 else if ((commutative || ! TREE_SIDE_EFFECTS (a10))
7773 && operand_equal_p (a01, a11, 0))
7774 return fold (build2 (TREE_CODE (arg0), type,
7775 fold (build2 (code, type, a00, a10)),
7776 a01));
7779 /* See if we can build a range comparison. */
7780 if (0 != (tem = fold_range_test (t)))
7781 return tem;
7783 /* Check for the possibility of merging component references. If our
7784 lhs is another similar operation, try to merge its rhs with our
7785 rhs. Then try to merge our lhs and rhs. */
7786 if (TREE_CODE (arg0) == code
7787 && 0 != (tem = fold_truthop (code, type,
7788 TREE_OPERAND (arg0, 1), arg1)))
7789 return fold (build2 (code, type, TREE_OPERAND (arg0, 0), tem));
7791 if ((tem = fold_truthop (code, type, arg0, arg1)) != 0)
7792 return tem;
7794 return t;
7796 case TRUTH_ORIF_EXPR:
7797 /* Note that the operands of this must be ints
7798 and their values must be 0 or true.
7799 ("true" is a fixed value perhaps depending on the language.) */
7800 /* If first arg is constant true, return it. */
7801 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
7802 return fold_convert (type, arg0);
7803 case TRUTH_OR_EXPR:
7804 /* If either arg is constant zero, drop it. */
7805 if (TREE_CODE (arg0) == INTEGER_CST && integer_zerop (arg0))
7806 return non_lvalue (fold_convert (type, arg1));
7807 if (TREE_CODE (arg1) == INTEGER_CST && integer_zerop (arg1)
7808 /* Preserve sequence points. */
7809 && (code != TRUTH_ORIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
7810 return non_lvalue (fold_convert (type, arg0));
7811 /* If second arg is constant true, result is true, but we must
7812 evaluate first arg. */
7813 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1))
7814 return omit_one_operand (type, arg1, arg0);
7815 /* Likewise for first arg, but note this only occurs here for
7816 TRUTH_OR_EXPR. */
7817 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
7818 return omit_one_operand (type, arg0, arg1);
7820 /* !X || X is always true. */
7821 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
7822 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
7823 return omit_one_operand (type, integer_one_node, arg1);
7824 /* X || !X is always true. */
7825 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
7826 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
7827 return omit_one_operand (type, integer_one_node, arg0);
7829 goto truth_andor;
7831 case TRUTH_XOR_EXPR:
7832 /* If the second arg is constant zero, drop it. */
7833 if (integer_zerop (arg1))
7834 return non_lvalue (fold_convert (type, arg0));
7835 /* If the second arg is constant true, this is a logical inversion. */
7836 if (integer_onep (arg1))
7837 return non_lvalue (fold_convert (type, invert_truthvalue (arg0)));
7838 /* Identical arguments cancel to zero. */
7839 if (operand_equal_p (arg0, arg1, 0))
7840 return omit_one_operand (type, integer_zero_node, arg0);
7842 /* !X ^ X is always true. */
7843 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
7844 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
7845 return omit_one_operand (type, integer_one_node, arg1);
7847 /* X ^ !X is always true. */
7848 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
7849 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
7850 return omit_one_operand (type, integer_one_node, arg0);
7852 return t;
7854 case EQ_EXPR:
7855 case NE_EXPR:
7856 case LT_EXPR:
7857 case GT_EXPR:
7858 case LE_EXPR:
7859 case GE_EXPR:
7860 /* If one arg is a real or integer constant, put it last. */
7861 if (tree_swap_operands_p (arg0, arg1, true))
7862 return fold (build2 (swap_tree_comparison (code), type, arg1, arg0));
7864 /* If this is an equality comparison of the address of a non-weak
7865 object against zero, then we know the result. */
7866 if ((code == EQ_EXPR || code == NE_EXPR)
7867 && TREE_CODE (arg0) == ADDR_EXPR
7868 && DECL_P (TREE_OPERAND (arg0, 0))
7869 && ! DECL_WEAK (TREE_OPERAND (arg0, 0))
7870 && integer_zerop (arg1))
7871 return constant_boolean_node (code != EQ_EXPR, type);
7873 /* If this is an equality comparison of the address of two non-weak,
7874 unaliased symbols neither of which are extern (since we do not
7875 have access to attributes for externs), then we know the result. */
7876 if ((code == EQ_EXPR || code == NE_EXPR)
7877 && TREE_CODE (arg0) == ADDR_EXPR
7878 && DECL_P (TREE_OPERAND (arg0, 0))
7879 && ! DECL_WEAK (TREE_OPERAND (arg0, 0))
7880 && ! lookup_attribute ("alias",
7881 DECL_ATTRIBUTES (TREE_OPERAND (arg0, 0)))
7882 && ! DECL_EXTERNAL (TREE_OPERAND (arg0, 0))
7883 && TREE_CODE (arg1) == ADDR_EXPR
7884 && DECL_P (TREE_OPERAND (arg1, 0))
7885 && ! DECL_WEAK (TREE_OPERAND (arg1, 0))
7886 && ! lookup_attribute ("alias",
7887 DECL_ATTRIBUTES (TREE_OPERAND (arg1, 0)))
7888 && ! DECL_EXTERNAL (TREE_OPERAND (arg1, 0)))
7889 return constant_boolean_node (operand_equal_p (arg0, arg1, 0)
7890 ? code == EQ_EXPR : code != EQ_EXPR,
7891 type);
7893 if (FLOAT_TYPE_P (TREE_TYPE (arg0)))
7895 tree targ0 = strip_float_extensions (arg0);
7896 tree targ1 = strip_float_extensions (arg1);
7897 tree newtype = TREE_TYPE (targ0);
7899 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
7900 newtype = TREE_TYPE (targ1);
7902 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
7903 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
7904 return fold (build2 (code, type, fold_convert (newtype, targ0),
7905 fold_convert (newtype, targ1)));
7907 /* (-a) CMP (-b) -> b CMP a */
7908 if (TREE_CODE (arg0) == NEGATE_EXPR
7909 && TREE_CODE (arg1) == NEGATE_EXPR)
7910 return fold (build2 (code, type, TREE_OPERAND (arg1, 0),
7911 TREE_OPERAND (arg0, 0)));
7913 if (TREE_CODE (arg1) == REAL_CST)
7915 REAL_VALUE_TYPE cst;
7916 cst = TREE_REAL_CST (arg1);
7918 /* (-a) CMP CST -> a swap(CMP) (-CST) */
7919 if (TREE_CODE (arg0) == NEGATE_EXPR)
7920 return
7921 fold (build2 (swap_tree_comparison (code), type,
7922 TREE_OPERAND (arg0, 0),
7923 build_real (TREE_TYPE (arg1),
7924 REAL_VALUE_NEGATE (cst))));
7926 /* IEEE doesn't distinguish +0 and -0 in comparisons. */
7927 /* a CMP (-0) -> a CMP 0 */
7928 if (REAL_VALUE_MINUS_ZERO (cst))
7929 return fold (build2 (code, type, arg0,
7930 build_real (TREE_TYPE (arg1), dconst0)));
7932 /* x != NaN is always true, other ops are always false. */
7933 if (REAL_VALUE_ISNAN (cst)
7934 && ! HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg1))))
7936 tem = (code == NE_EXPR) ? integer_one_node : integer_zero_node;
7937 return omit_one_operand (type, tem, arg0);
7940 /* Fold comparisons against infinity. */
7941 if (REAL_VALUE_ISINF (cst))
7943 tem = fold_inf_compare (code, type, arg0, arg1);
7944 if (tem != NULL_TREE)
7945 return tem;
7949 /* If this is a comparison of a real constant with a PLUS_EXPR
7950 or a MINUS_EXPR of a real constant, we can convert it into a
7951 comparison with a revised real constant as long as no overflow
7952 occurs when unsafe_math_optimizations are enabled. */
7953 if (flag_unsafe_math_optimizations
7954 && TREE_CODE (arg1) == REAL_CST
7955 && (TREE_CODE (arg0) == PLUS_EXPR
7956 || TREE_CODE (arg0) == MINUS_EXPR)
7957 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
7958 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
7959 ? MINUS_EXPR : PLUS_EXPR,
7960 arg1, TREE_OPERAND (arg0, 1), 0))
7961 && ! TREE_CONSTANT_OVERFLOW (tem))
7962 return fold (build2 (code, type, TREE_OPERAND (arg0, 0), tem));
7964 /* Likewise, we can simplify a comparison of a real constant with
7965 a MINUS_EXPR whose first operand is also a real constant, i.e.
7966 (c1 - x) < c2 becomes x > c1-c2. */
7967 if (flag_unsafe_math_optimizations
7968 && TREE_CODE (arg1) == REAL_CST
7969 && TREE_CODE (arg0) == MINUS_EXPR
7970 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST
7971 && 0 != (tem = const_binop (MINUS_EXPR, TREE_OPERAND (arg0, 0),
7972 arg1, 0))
7973 && ! TREE_CONSTANT_OVERFLOW (tem))
7974 return fold (build2 (swap_tree_comparison (code), type,
7975 TREE_OPERAND (arg0, 1), tem));
7977 /* Fold comparisons against built-in math functions. */
7978 if (TREE_CODE (arg1) == REAL_CST
7979 && flag_unsafe_math_optimizations
7980 && ! flag_errno_math)
7982 enum built_in_function fcode = builtin_mathfn_code (arg0);
7984 if (fcode != END_BUILTINS)
7986 tem = fold_mathfn_compare (fcode, code, type, arg0, arg1);
7987 if (tem != NULL_TREE)
7988 return tem;
7993 /* Convert foo++ == CONST into ++foo == CONST + INCR. */
7994 if (TREE_CONSTANT (arg1)
7995 && (TREE_CODE (arg0) == POSTINCREMENT_EXPR
7996 || TREE_CODE (arg0) == POSTDECREMENT_EXPR)
7997 /* This optimization is invalid for ordered comparisons
7998 if CONST+INCR overflows or if foo+incr might overflow.
7999 This optimization is invalid for floating point due to rounding.
8000 For pointer types we assume overflow doesn't happen. */
8001 && (POINTER_TYPE_P (TREE_TYPE (arg0))
8002 || (INTEGRAL_TYPE_P (TREE_TYPE (arg0))
8003 && (code == EQ_EXPR || code == NE_EXPR))))
8005 tree varop, newconst;
8007 if (TREE_CODE (arg0) == POSTINCREMENT_EXPR)
8009 newconst = fold (build2 (PLUS_EXPR, TREE_TYPE (arg0),
8010 arg1, TREE_OPERAND (arg0, 1)));
8011 varop = build2 (PREINCREMENT_EXPR, TREE_TYPE (arg0),
8012 TREE_OPERAND (arg0, 0),
8013 TREE_OPERAND (arg0, 1));
8015 else
8017 newconst = fold (build2 (MINUS_EXPR, TREE_TYPE (arg0),
8018 arg1, TREE_OPERAND (arg0, 1)));
8019 varop = build2 (PREDECREMENT_EXPR, TREE_TYPE (arg0),
8020 TREE_OPERAND (arg0, 0),
8021 TREE_OPERAND (arg0, 1));
8025 /* If VAROP is a reference to a bitfield, we must mask
8026 the constant by the width of the field. */
8027 if (TREE_CODE (TREE_OPERAND (varop, 0)) == COMPONENT_REF
8028 && DECL_BIT_FIELD (TREE_OPERAND (TREE_OPERAND (varop, 0), 1))
8029 && host_integerp (DECL_SIZE (TREE_OPERAND
8030 (TREE_OPERAND (varop, 0), 1)), 1))
8032 tree fielddecl = TREE_OPERAND (TREE_OPERAND (varop, 0), 1);
8033 HOST_WIDE_INT size = tree_low_cst (DECL_SIZE (fielddecl), 1);
8034 tree folded_compare, shift;
8036 /* First check whether the comparison would come out
8037 always the same. If we don't do that we would
8038 change the meaning with the masking. */
8039 folded_compare = fold (build2 (code, type,
8040 TREE_OPERAND (varop, 0), arg1));
8041 if (integer_zerop (folded_compare)
8042 || integer_onep (folded_compare))
8043 return omit_one_operand (type, folded_compare, varop);
8045 shift = build_int_2 (TYPE_PRECISION (TREE_TYPE (varop)) - size,
8047 shift = fold_convert (TREE_TYPE (varop), shift);
8048 newconst = fold (build2 (LSHIFT_EXPR, TREE_TYPE (varop),
8049 newconst, shift));
8050 newconst = fold (build2 (RSHIFT_EXPR, TREE_TYPE (varop),
8051 newconst, shift));
8054 return fold (build2 (code, type, varop, newconst));
8057 /* Change X >= C to X > (C - 1) and X < C to X <= (C - 1) if C > 0.
8058 This transformation affects the cases which are handled in later
8059 optimizations involving comparisons with non-negative constants. */
8060 if (TREE_CODE (arg1) == INTEGER_CST
8061 && TREE_CODE (arg0) != INTEGER_CST
8062 && tree_int_cst_sgn (arg1) > 0)
8064 switch (code)
8066 case GE_EXPR:
8067 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
8068 return fold (build2 (GT_EXPR, type, arg0, arg1));
8070 case LT_EXPR:
8071 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
8072 return fold (build2 (LE_EXPR, type, arg0, arg1));
8074 default:
8075 break;
8079 /* Comparisons with the highest or lowest possible integer of
8080 the specified size will have known values.
8082 This is quite similar to fold_relational_hi_lo; however, my
8083 attempts to share the code have been nothing but trouble.
8084 I give up for now. */
8086 int width = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg1)));
8088 if (TREE_CODE (arg1) == INTEGER_CST
8089 && ! TREE_CONSTANT_OVERFLOW (arg1)
8090 && width <= HOST_BITS_PER_WIDE_INT
8091 && (INTEGRAL_TYPE_P (TREE_TYPE (arg1))
8092 || POINTER_TYPE_P (TREE_TYPE (arg1))))
8094 unsigned HOST_WIDE_INT signed_max;
8095 unsigned HOST_WIDE_INT max, min;
8097 signed_max = ((unsigned HOST_WIDE_INT) 1 << (width - 1)) - 1;
8099 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
8101 max = ((unsigned HOST_WIDE_INT) 2 << (width - 1)) - 1;
8102 min = 0;
8104 else
8106 max = signed_max;
8107 min = ((unsigned HOST_WIDE_INT) -1 << (width - 1));
8110 if (TREE_INT_CST_HIGH (arg1) == 0
8111 && TREE_INT_CST_LOW (arg1) == max)
8112 switch (code)
8114 case GT_EXPR:
8115 return omit_one_operand (type, integer_zero_node, arg0);
8117 case GE_EXPR:
8118 return fold (build2 (EQ_EXPR, type, arg0, arg1));
8120 case LE_EXPR:
8121 return omit_one_operand (type, integer_one_node, arg0);
8123 case LT_EXPR:
8124 return fold (build2 (NE_EXPR, type, arg0, arg1));
8126 /* The GE_EXPR and LT_EXPR cases above are not normally
8127 reached because of previous transformations. */
8129 default:
8130 break;
8132 else if (TREE_INT_CST_HIGH (arg1) == 0
8133 && TREE_INT_CST_LOW (arg1) == max - 1)
8134 switch (code)
8136 case GT_EXPR:
8137 arg1 = const_binop (PLUS_EXPR, arg1, integer_one_node, 0);
8138 return fold (build2 (EQ_EXPR, type, arg0, arg1));
8139 case LE_EXPR:
8140 arg1 = const_binop (PLUS_EXPR, arg1, integer_one_node, 0);
8141 return fold (build2 (NE_EXPR, type, arg0, arg1));
8142 default:
8143 break;
8145 else if (TREE_INT_CST_HIGH (arg1) == (min ? -1 : 0)
8146 && TREE_INT_CST_LOW (arg1) == min)
8147 switch (code)
8149 case LT_EXPR:
8150 return omit_one_operand (type, integer_zero_node, arg0);
8152 case LE_EXPR:
8153 return fold (build2 (EQ_EXPR, type, arg0, arg1));
8155 case GE_EXPR:
8156 return omit_one_operand (type, integer_one_node, arg0);
8158 case GT_EXPR:
8159 return fold (build2 (NE_EXPR, type, arg0, arg1));
8161 default:
8162 break;
8164 else if (TREE_INT_CST_HIGH (arg1) == (min ? -1 : 0)
8165 && TREE_INT_CST_LOW (arg1) == min + 1)
8166 switch (code)
8168 case GE_EXPR:
8169 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
8170 return fold (build2 (NE_EXPR, type, arg0, arg1));
8171 case LT_EXPR:
8172 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
8173 return fold (build2 (EQ_EXPR, type, arg0, arg1));
8174 default:
8175 break;
8178 else if (!in_gimple_form
8179 && TREE_INT_CST_HIGH (arg1) == 0
8180 && TREE_INT_CST_LOW (arg1) == signed_max
8181 && TYPE_UNSIGNED (TREE_TYPE (arg1))
8182 /* signed_type does not work on pointer types. */
8183 && INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
8185 /* The following case also applies to X < signed_max+1
8186 and X >= signed_max+1 because previous transformations. */
8187 if (code == LE_EXPR || code == GT_EXPR)
8189 tree st0, st1;
8190 st0 = lang_hooks.types.signed_type (TREE_TYPE (arg0));
8191 st1 = lang_hooks.types.signed_type (TREE_TYPE (arg1));
8192 return fold
8193 (build2 (code == LE_EXPR ? GE_EXPR: LT_EXPR,
8194 type, fold_convert (st0, arg0),
8195 fold_convert (st1, integer_zero_node)));
8201 /* If this is an EQ or NE comparison of a constant with a PLUS_EXPR or
8202 a MINUS_EXPR of a constant, we can convert it into a comparison with
8203 a revised constant as long as no overflow occurs. */
8204 if ((code == EQ_EXPR || code == NE_EXPR)
8205 && TREE_CODE (arg1) == INTEGER_CST
8206 && (TREE_CODE (arg0) == PLUS_EXPR
8207 || TREE_CODE (arg0) == MINUS_EXPR)
8208 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8209 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
8210 ? MINUS_EXPR : PLUS_EXPR,
8211 arg1, TREE_OPERAND (arg0, 1), 0))
8212 && ! TREE_CONSTANT_OVERFLOW (tem))
8213 return fold (build2 (code, type, TREE_OPERAND (arg0, 0), tem));
8215 /* Similarly for a NEGATE_EXPR. */
8216 else if ((code == EQ_EXPR || code == NE_EXPR)
8217 && TREE_CODE (arg0) == NEGATE_EXPR
8218 && TREE_CODE (arg1) == INTEGER_CST
8219 && 0 != (tem = negate_expr (arg1))
8220 && TREE_CODE (tem) == INTEGER_CST
8221 && ! TREE_CONSTANT_OVERFLOW (tem))
8222 return fold (build2 (code, type, TREE_OPERAND (arg0, 0), tem));
8224 /* If we have X - Y == 0, we can convert that to X == Y and similarly
8225 for !=. Don't do this for ordered comparisons due to overflow. */
8226 else if ((code == NE_EXPR || code == EQ_EXPR)
8227 && integer_zerop (arg1) && TREE_CODE (arg0) == MINUS_EXPR)
8228 return fold (build2 (code, type,
8229 TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1)));
8231 /* If we are widening one operand of an integer comparison,
8232 see if the other operand is similarly being widened. Perhaps we
8233 can do the comparison in the narrower type. */
8234 else if (TREE_CODE (TREE_TYPE (arg0)) == INTEGER_TYPE
8235 && TREE_CODE (arg0) == NOP_EXPR
8236 && (tem = get_unwidened (arg0, NULL_TREE)) != arg0
8237 && (code == EQ_EXPR || code == NE_EXPR
8238 || TYPE_UNSIGNED (TREE_TYPE (arg0))
8239 == TYPE_UNSIGNED (TREE_TYPE (tem)))
8240 && (t1 = get_unwidened (arg1, TREE_TYPE (tem))) != 0
8241 && (TREE_TYPE (t1) == TREE_TYPE (tem)
8242 || (TREE_CODE (t1) == INTEGER_CST
8243 && int_fits_type_p (t1, TREE_TYPE (tem)))))
8244 return fold (build2 (code, type, tem,
8245 fold_convert (TREE_TYPE (tem), t1)));
8247 /* If this is comparing a constant with a MIN_EXPR or a MAX_EXPR of a
8248 constant, we can simplify it. */
8249 else if (TREE_CODE (arg1) == INTEGER_CST
8250 && (TREE_CODE (arg0) == MIN_EXPR
8251 || TREE_CODE (arg0) == MAX_EXPR)
8252 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
8253 return optimize_minmax_comparison (t);
8255 /* If we are comparing an ABS_EXPR with a constant, we can
8256 convert all the cases into explicit comparisons, but they may
8257 well not be faster than doing the ABS and one comparison.
8258 But ABS (X) <= C is a range comparison, which becomes a subtraction
8259 and a comparison, and is probably faster. */
8260 else if (code == LE_EXPR && TREE_CODE (arg1) == INTEGER_CST
8261 && TREE_CODE (arg0) == ABS_EXPR
8262 && ! TREE_SIDE_EFFECTS (arg0)
8263 && (0 != (tem = negate_expr (arg1)))
8264 && TREE_CODE (tem) == INTEGER_CST
8265 && ! TREE_CONSTANT_OVERFLOW (tem))
8266 return fold (build2 (TRUTH_ANDIF_EXPR, type,
8267 build2 (GE_EXPR, type,
8268 TREE_OPERAND (arg0, 0), tem),
8269 build2 (LE_EXPR, type,
8270 TREE_OPERAND (arg0, 0), arg1)));
8272 /* If this is an EQ or NE comparison with zero and ARG0 is
8273 (1 << foo) & bar, convert it to (bar >> foo) & 1. Both require
8274 two operations, but the latter can be done in one less insn
8275 on machines that have only two-operand insns or on which a
8276 constant cannot be the first operand. */
8277 if (integer_zerop (arg1) && (code == EQ_EXPR || code == NE_EXPR)
8278 && TREE_CODE (arg0) == BIT_AND_EXPR)
8280 tree arg00 = TREE_OPERAND (arg0, 0);
8281 tree arg01 = TREE_OPERAND (arg0, 1);
8282 if (TREE_CODE (arg00) == LSHIFT_EXPR
8283 && integer_onep (TREE_OPERAND (arg00, 0)))
8284 return
8285 fold (build2 (code, type,
8286 build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
8287 build2 (RSHIFT_EXPR, TREE_TYPE (arg00),
8288 arg01, TREE_OPERAND (arg00, 1)),
8289 fold_convert (TREE_TYPE (arg0),
8290 integer_one_node)),
8291 arg1));
8292 else if (TREE_CODE (TREE_OPERAND (arg0, 1)) == LSHIFT_EXPR
8293 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg0, 1), 0)))
8294 return
8295 fold (build2 (code, type,
8296 build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
8297 build2 (RSHIFT_EXPR, TREE_TYPE (arg01),
8298 arg00, TREE_OPERAND (arg01, 1)),
8299 fold_convert (TREE_TYPE (arg0),
8300 integer_one_node)),
8301 arg1));
8304 /* If this is an NE or EQ comparison of zero against the result of a
8305 signed MOD operation whose second operand is a power of 2, make
8306 the MOD operation unsigned since it is simpler and equivalent. */
8307 if ((code == NE_EXPR || code == EQ_EXPR)
8308 && integer_zerop (arg1)
8309 && !TYPE_UNSIGNED (TREE_TYPE (arg0))
8310 && (TREE_CODE (arg0) == TRUNC_MOD_EXPR
8311 || TREE_CODE (arg0) == CEIL_MOD_EXPR
8312 || TREE_CODE (arg0) == FLOOR_MOD_EXPR
8313 || TREE_CODE (arg0) == ROUND_MOD_EXPR)
8314 && integer_pow2p (TREE_OPERAND (arg0, 1)))
8316 tree newtype = lang_hooks.types.unsigned_type (TREE_TYPE (arg0));
8317 tree newmod = fold (build2 (TREE_CODE (arg0), newtype,
8318 fold_convert (newtype,
8319 TREE_OPERAND (arg0, 0)),
8320 fold_convert (newtype,
8321 TREE_OPERAND (arg0, 1))));
8323 return fold (build2 (code, type, newmod,
8324 fold_convert (newtype, arg1)));
8327 /* If this is an NE comparison of zero with an AND of one, remove the
8328 comparison since the AND will give the correct value. */
8329 if (code == NE_EXPR && integer_zerop (arg1)
8330 && TREE_CODE (arg0) == BIT_AND_EXPR
8331 && integer_onep (TREE_OPERAND (arg0, 1)))
8332 return fold_convert (type, arg0);
8334 /* If we have (A & C) == C where C is a power of 2, convert this into
8335 (A & C) != 0. Similarly for NE_EXPR. */
8336 if ((code == EQ_EXPR || code == NE_EXPR)
8337 && TREE_CODE (arg0) == BIT_AND_EXPR
8338 && integer_pow2p (TREE_OPERAND (arg0, 1))
8339 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
8340 return fold (build2 (code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
8341 arg0, integer_zero_node));
8343 /* If we have (A & C) != 0 or (A & C) == 0 and C is a power of
8344 2, then fold the expression into shifts and logical operations. */
8345 tem = fold_single_bit_test (code, arg0, arg1, type);
8346 if (tem)
8347 return tem;
8349 /* If we have (A & C) == D where D & ~C != 0, convert this into 0.
8350 Similarly for NE_EXPR. */
8351 if ((code == EQ_EXPR || code == NE_EXPR)
8352 && TREE_CODE (arg0) == BIT_AND_EXPR
8353 && TREE_CODE (arg1) == INTEGER_CST
8354 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
8356 tree dandnotc
8357 = fold (build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
8358 arg1, build1 (BIT_NOT_EXPR,
8359 TREE_TYPE (TREE_OPERAND (arg0, 1)),
8360 TREE_OPERAND (arg0, 1))));
8361 tree rslt = code == EQ_EXPR ? integer_zero_node : integer_one_node;
8362 if (integer_nonzerop (dandnotc))
8363 return omit_one_operand (type, rslt, arg0);
8366 /* If we have (A | C) == D where C & ~D != 0, convert this into 0.
8367 Similarly for NE_EXPR. */
8368 if ((code == EQ_EXPR || code == NE_EXPR)
8369 && TREE_CODE (arg0) == BIT_IOR_EXPR
8370 && TREE_CODE (arg1) == INTEGER_CST
8371 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
8373 tree candnotd
8374 = fold (build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
8375 TREE_OPERAND (arg0, 1),
8376 build1 (BIT_NOT_EXPR, TREE_TYPE (arg1), arg1)));
8377 tree rslt = code == EQ_EXPR ? integer_zero_node : integer_one_node;
8378 if (integer_nonzerop (candnotd))
8379 return omit_one_operand (type, rslt, arg0);
8382 /* If X is unsigned, convert X < (1 << Y) into X >> Y == 0
8383 and similarly for >= into !=. */
8384 if ((code == LT_EXPR || code == GE_EXPR)
8385 && TYPE_UNSIGNED (TREE_TYPE (arg0))
8386 && TREE_CODE (arg1) == LSHIFT_EXPR
8387 && integer_onep (TREE_OPERAND (arg1, 0)))
8388 return build2 (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
8389 build2 (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
8390 TREE_OPERAND (arg1, 1)),
8391 fold_convert (TREE_TYPE (arg0), integer_zero_node));
8393 else if ((code == LT_EXPR || code == GE_EXPR)
8394 && TYPE_UNSIGNED (TREE_TYPE (arg0))
8395 && (TREE_CODE (arg1) == NOP_EXPR
8396 || TREE_CODE (arg1) == CONVERT_EXPR)
8397 && TREE_CODE (TREE_OPERAND (arg1, 0)) == LSHIFT_EXPR
8398 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg1, 0), 0)))
8399 return
8400 build2 (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
8401 fold_convert (TREE_TYPE (arg0),
8402 build2 (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
8403 TREE_OPERAND (TREE_OPERAND (arg1, 0),
8404 1))),
8405 fold_convert (TREE_TYPE (arg0), integer_zero_node));
8407 /* Simplify comparison of something with itself. (For IEEE
8408 floating-point, we can only do some of these simplifications.) */
8409 if (operand_equal_p (arg0, arg1, 0))
8411 switch (code)
8413 case EQ_EXPR:
8414 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
8415 || ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
8416 return constant_boolean_node (1, type);
8417 break;
8419 case GE_EXPR:
8420 case LE_EXPR:
8421 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
8422 || ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
8423 return constant_boolean_node (1, type);
8424 return fold (build2 (EQ_EXPR, type, arg0, arg1));
8426 case NE_EXPR:
8427 /* For NE, we can only do this simplification if integer
8428 or we don't honor IEEE floating point NaNs. */
8429 if (FLOAT_TYPE_P (TREE_TYPE (arg0))
8430 && HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
8431 break;
8432 /* ... fall through ... */
8433 case GT_EXPR:
8434 case LT_EXPR:
8435 return constant_boolean_node (0, type);
8436 default:
8437 abort ();
8441 /* If we are comparing an expression that just has comparisons
8442 of two integer values, arithmetic expressions of those comparisons,
8443 and constants, we can simplify it. There are only three cases
8444 to check: the two values can either be equal, the first can be
8445 greater, or the second can be greater. Fold the expression for
8446 those three values. Since each value must be 0 or 1, we have
8447 eight possibilities, each of which corresponds to the constant 0
8448 or 1 or one of the six possible comparisons.
8450 This handles common cases like (a > b) == 0 but also handles
8451 expressions like ((x > y) - (y > x)) > 0, which supposedly
8452 occur in macroized code. */
8454 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) != INTEGER_CST)
8456 tree cval1 = 0, cval2 = 0;
8457 int save_p = 0;
8459 if (twoval_comparison_p (arg0, &cval1, &cval2, &save_p)
8460 /* Don't handle degenerate cases here; they should already
8461 have been handled anyway. */
8462 && cval1 != 0 && cval2 != 0
8463 && ! (TREE_CONSTANT (cval1) && TREE_CONSTANT (cval2))
8464 && TREE_TYPE (cval1) == TREE_TYPE (cval2)
8465 && INTEGRAL_TYPE_P (TREE_TYPE (cval1))
8466 && TYPE_MAX_VALUE (TREE_TYPE (cval1))
8467 && TYPE_MAX_VALUE (TREE_TYPE (cval2))
8468 && ! operand_equal_p (TYPE_MIN_VALUE (TREE_TYPE (cval1)),
8469 TYPE_MAX_VALUE (TREE_TYPE (cval2)), 0))
8471 tree maxval = TYPE_MAX_VALUE (TREE_TYPE (cval1));
8472 tree minval = TYPE_MIN_VALUE (TREE_TYPE (cval1));
8474 /* We can't just pass T to eval_subst in case cval1 or cval2
8475 was the same as ARG1. */
8477 tree high_result
8478 = fold (build2 (code, type,
8479 eval_subst (arg0, cval1, maxval,
8480 cval2, minval),
8481 arg1));
8482 tree equal_result
8483 = fold (build2 (code, type,
8484 eval_subst (arg0, cval1, maxval,
8485 cval2, maxval),
8486 arg1));
8487 tree low_result
8488 = fold (build2 (code, type,
8489 eval_subst (arg0, cval1, minval,
8490 cval2, maxval),
8491 arg1));
8493 /* All three of these results should be 0 or 1. Confirm they
8494 are. Then use those values to select the proper code
8495 to use. */
8497 if ((integer_zerop (high_result)
8498 || integer_onep (high_result))
8499 && (integer_zerop (equal_result)
8500 || integer_onep (equal_result))
8501 && (integer_zerop (low_result)
8502 || integer_onep (low_result)))
8504 /* Make a 3-bit mask with the high-order bit being the
8505 value for `>', the next for '=', and the low for '<'. */
8506 switch ((integer_onep (high_result) * 4)
8507 + (integer_onep (equal_result) * 2)
8508 + integer_onep (low_result))
8510 case 0:
8511 /* Always false. */
8512 return omit_one_operand (type, integer_zero_node, arg0);
8513 case 1:
8514 code = LT_EXPR;
8515 break;
8516 case 2:
8517 code = EQ_EXPR;
8518 break;
8519 case 3:
8520 code = LE_EXPR;
8521 break;
8522 case 4:
8523 code = GT_EXPR;
8524 break;
8525 case 5:
8526 code = NE_EXPR;
8527 break;
8528 case 6:
8529 code = GE_EXPR;
8530 break;
8531 case 7:
8532 /* Always true. */
8533 return omit_one_operand (type, integer_one_node, arg0);
8536 tem = build2 (code, type, cval1, cval2);
8537 if (save_p)
8538 return save_expr (tem);
8539 else
8540 return fold (tem);
8545 /* If this is a comparison of a field, we may be able to simplify it. */
8546 if (((TREE_CODE (arg0) == COMPONENT_REF
8547 && lang_hooks.can_use_bit_fields_p ())
8548 || TREE_CODE (arg0) == BIT_FIELD_REF)
8549 && (code == EQ_EXPR || code == NE_EXPR)
8550 /* Handle the constant case even without -O
8551 to make sure the warnings are given. */
8552 && (optimize || TREE_CODE (arg1) == INTEGER_CST))
8554 t1 = optimize_bit_field_compare (code, type, arg0, arg1);
8555 if (t1)
8556 return t1;
8559 /* If this is a comparison of complex values and either or both sides
8560 are a COMPLEX_EXPR or COMPLEX_CST, it is best to split up the
8561 comparisons and join them with a TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR.
8562 This may prevent needless evaluations. */
8563 if ((code == EQ_EXPR || code == NE_EXPR)
8564 && TREE_CODE (TREE_TYPE (arg0)) == COMPLEX_TYPE
8565 && (TREE_CODE (arg0) == COMPLEX_EXPR
8566 || TREE_CODE (arg1) == COMPLEX_EXPR
8567 || TREE_CODE (arg0) == COMPLEX_CST
8568 || TREE_CODE (arg1) == COMPLEX_CST))
8570 tree subtype = TREE_TYPE (TREE_TYPE (arg0));
8571 tree real0, imag0, real1, imag1;
8573 arg0 = save_expr (arg0);
8574 arg1 = save_expr (arg1);
8575 real0 = fold (build1 (REALPART_EXPR, subtype, arg0));
8576 imag0 = fold (build1 (IMAGPART_EXPR, subtype, arg0));
8577 real1 = fold (build1 (REALPART_EXPR, subtype, arg1));
8578 imag1 = fold (build1 (IMAGPART_EXPR, subtype, arg1));
8580 return fold (build2 ((code == EQ_EXPR ? TRUTH_ANDIF_EXPR
8581 : TRUTH_ORIF_EXPR),
8582 type,
8583 fold (build2 (code, type, real0, real1)),
8584 fold (build2 (code, type, imag0, imag1))));
8587 /* Optimize comparisons of strlen vs zero to a compare of the
8588 first character of the string vs zero. To wit,
8589 strlen(ptr) == 0 => *ptr == 0
8590 strlen(ptr) != 0 => *ptr != 0
8591 Other cases should reduce to one of these two (or a constant)
8592 due to the return value of strlen being unsigned. */
8593 if ((code == EQ_EXPR || code == NE_EXPR)
8594 && integer_zerop (arg1)
8595 && TREE_CODE (arg0) == CALL_EXPR)
8597 tree fndecl = get_callee_fndecl (arg0);
8598 tree arglist;
8600 if (fndecl
8601 && DECL_BUILT_IN (fndecl)
8602 && DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_MD
8603 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STRLEN
8604 && (arglist = TREE_OPERAND (arg0, 1))
8605 && TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) == POINTER_TYPE
8606 && ! TREE_CHAIN (arglist))
8607 return fold (build2 (code, type,
8608 build1 (INDIRECT_REF, char_type_node,
8609 TREE_VALUE(arglist)),
8610 integer_zero_node));
8613 /* We can fold X/C1 op C2 where C1 and C2 are integer constants
8614 into a single range test. */
8615 if (TREE_CODE (arg0) == TRUNC_DIV_EXPR
8616 && TREE_CODE (arg1) == INTEGER_CST
8617 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8618 && !integer_zerop (TREE_OPERAND (arg0, 1))
8619 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1))
8620 && !TREE_OVERFLOW (arg1))
8622 t1 = fold_div_compare (code, type, arg0, arg1);
8623 if (t1 != NULL_TREE)
8624 return t1;
8627 /* Both ARG0 and ARG1 are known to be constants at this point. */
8628 t1 = fold_relational_const (code, type, arg0, arg1);
8629 return (t1 == NULL_TREE ? t : t1);
8631 case UNORDERED_EXPR:
8632 case ORDERED_EXPR:
8633 case UNLT_EXPR:
8634 case UNLE_EXPR:
8635 case UNGT_EXPR:
8636 case UNGE_EXPR:
8637 case UNEQ_EXPR:
8638 case LTGT_EXPR:
8639 if (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
8641 t1 = fold_relational_const (code, type, arg0, arg1);
8642 if (t1 != NULL_TREE)
8643 return t1;
8646 /* If the first operand is NaN, the result is constant. */
8647 if (TREE_CODE (arg0) == REAL_CST
8648 && REAL_VALUE_ISNAN (TREE_REAL_CST (arg0))
8649 && (code != LTGT_EXPR || ! flag_trapping_math))
8651 t1 = (code == ORDERED_EXPR || code == LTGT_EXPR)
8652 ? integer_zero_node
8653 : integer_one_node;
8654 return omit_one_operand (type, t1, arg1);
8657 /* If the second operand is NaN, the result is constant. */
8658 if (TREE_CODE (arg1) == REAL_CST
8659 && REAL_VALUE_ISNAN (TREE_REAL_CST (arg1))
8660 && (code != LTGT_EXPR || ! flag_trapping_math))
8662 t1 = (code == ORDERED_EXPR || code == LTGT_EXPR)
8663 ? integer_zero_node
8664 : integer_one_node;
8665 return omit_one_operand (type, t1, arg0);
8668 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
8670 tree targ0 = strip_float_extensions (arg0);
8671 tree targ1 = strip_float_extensions (arg1);
8672 tree newtype = TREE_TYPE (targ0);
8674 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
8675 newtype = TREE_TYPE (targ1);
8677 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
8678 return fold (build2 (code, type, fold_convert (newtype, targ0),
8679 fold_convert (newtype, targ1)));
8682 return t;
8684 case COND_EXPR:
8685 /* Pedantic ANSI C says that a conditional expression is never an lvalue,
8686 so all simple results must be passed through pedantic_non_lvalue. */
8687 if (TREE_CODE (arg0) == INTEGER_CST)
8689 tem = TREE_OPERAND (t, (integer_zerop (arg0) ? 2 : 1));
8690 /* Only optimize constant conditions when the selected branch
8691 has the same type as the COND_EXPR. This avoids optimizing
8692 away "c ? x : throw", where the throw has a void type. */
8693 if (! VOID_TYPE_P (TREE_TYPE (tem))
8694 || VOID_TYPE_P (type))
8695 return pedantic_non_lvalue (tem);
8696 return t;
8698 if (operand_equal_p (arg1, TREE_OPERAND (t, 2), 0))
8699 return pedantic_omit_one_operand (type, arg1, arg0);
8701 /* If we have A op B ? A : C, we may be able to convert this to a
8702 simpler expression, depending on the operation and the values
8703 of B and C. Signed zeros prevent all of these transformations,
8704 for reasons given above each one.
8706 Also try swapping the arguments and inverting the conditional. */
8707 if (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
8708 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
8709 arg1, TREE_OPERAND (arg0, 1))
8710 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg1))))
8712 tem = fold_cond_expr_with_comparison (type, arg0,
8713 TREE_OPERAND (t, 1),
8714 TREE_OPERAND (t, 2));
8715 if (tem)
8716 return tem;
8719 if (TREE_CODE_CLASS (TREE_CODE (arg0)) == '<'
8720 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
8721 TREE_OPERAND (t, 2),
8722 TREE_OPERAND (arg0, 1))
8723 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (TREE_OPERAND (t, 2)))))
8725 tem = invert_truthvalue (arg0);
8726 if (TREE_CODE_CLASS (TREE_CODE (tem)) == '<')
8728 tem = fold_cond_expr_with_comparison (type, tem,
8729 TREE_OPERAND (t, 2),
8730 TREE_OPERAND (t, 1));
8731 if (tem)
8732 return tem;
8736 /* If the second operand is simpler than the third, swap them
8737 since that produces better jump optimization results. */
8738 if (tree_swap_operands_p (TREE_OPERAND (t, 1),
8739 TREE_OPERAND (t, 2), false))
8741 /* See if this can be inverted. If it can't, possibly because
8742 it was a floating-point inequality comparison, don't do
8743 anything. */
8744 tem = invert_truthvalue (arg0);
8746 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
8747 return fold (build3 (code, type, tem,
8748 TREE_OPERAND (t, 2), TREE_OPERAND (t, 1)));
8751 /* Convert A ? 1 : 0 to simply A. */
8752 if (integer_onep (TREE_OPERAND (t, 1))
8753 && integer_zerop (TREE_OPERAND (t, 2))
8754 /* If we try to convert TREE_OPERAND (t, 0) to our type, the
8755 call to fold will try to move the conversion inside
8756 a COND, which will recurse. In that case, the COND_EXPR
8757 is probably the best choice, so leave it alone. */
8758 && type == TREE_TYPE (arg0))
8759 return pedantic_non_lvalue (arg0);
8761 /* Convert A ? 0 : 1 to !A. This prefers the use of NOT_EXPR
8762 over COND_EXPR in cases such as floating point comparisons. */
8763 if (integer_zerop (TREE_OPERAND (t, 1))
8764 && integer_onep (TREE_OPERAND (t, 2))
8765 && truth_value_p (TREE_CODE (arg0)))
8766 return pedantic_non_lvalue (fold_convert (type,
8767 invert_truthvalue (arg0)));
8769 /* A < 0 ? <sign bit of A> : 0 is simply (A & <sign bit of A>). */
8770 if (TREE_CODE (arg0) == LT_EXPR
8771 && integer_zerop (TREE_OPERAND (arg0, 1))
8772 && integer_zerop (TREE_OPERAND (t, 2))
8773 && (tem = sign_bit_p (TREE_OPERAND (arg0, 0), arg1)))
8774 return fold_convert (type, fold (build2 (BIT_AND_EXPR,
8775 TREE_TYPE (tem), tem, arg1)));
8777 /* (A >> N) & 1 ? (1 << N) : 0 is simply A & (1 << N). A & 1 was
8778 already handled above. */
8779 if (TREE_CODE (arg0) == BIT_AND_EXPR
8780 && integer_onep (TREE_OPERAND (arg0, 1))
8781 && integer_zerop (TREE_OPERAND (t, 2))
8782 && integer_pow2p (arg1))
8784 tree tem = TREE_OPERAND (arg0, 0);
8785 STRIP_NOPS (tem);
8786 if (TREE_CODE (tem) == RSHIFT_EXPR
8787 && (unsigned HOST_WIDE_INT) tree_log2 (arg1) ==
8788 TREE_INT_CST_LOW (TREE_OPERAND (tem, 1)))
8789 return fold (build2 (BIT_AND_EXPR, type,
8790 TREE_OPERAND (tem, 0), arg1));
8793 /* A & N ? N : 0 is simply A & N if N is a power of two. This
8794 is probably obsolete because the first operand should be a
8795 truth value (that's why we have the two cases above), but let's
8796 leave it in until we can confirm this for all front-ends. */
8797 if (integer_zerop (TREE_OPERAND (t, 2))
8798 && TREE_CODE (arg0) == NE_EXPR
8799 && integer_zerop (TREE_OPERAND (arg0, 1))
8800 && integer_pow2p (arg1)
8801 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
8802 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
8803 arg1, OEP_ONLY_CONST))
8804 return pedantic_non_lvalue (fold_convert (type,
8805 TREE_OPERAND (arg0, 0)));
8807 /* Convert A ? B : 0 into A && B if A and B are truth values. */
8808 if (integer_zerop (TREE_OPERAND (t, 2))
8809 && truth_value_p (TREE_CODE (arg0))
8810 && truth_value_p (TREE_CODE (arg1)))
8811 return fold (build2 (TRUTH_ANDIF_EXPR, type, arg0, arg1));
8813 /* Convert A ? B : 1 into !A || B if A and B are truth values. */
8814 if (integer_onep (TREE_OPERAND (t, 2))
8815 && truth_value_p (TREE_CODE (arg0))
8816 && truth_value_p (TREE_CODE (arg1)))
8818 /* Only perform transformation if ARG0 is easily inverted. */
8819 tem = invert_truthvalue (arg0);
8820 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
8821 return fold (build2 (TRUTH_ORIF_EXPR, type, tem, arg1));
8824 /* Convert A ? 0 : B into !A && B if A and B are truth values. */
8825 if (integer_zerop (arg1)
8826 && truth_value_p (TREE_CODE (arg0))
8827 && truth_value_p (TREE_CODE (TREE_OPERAND (t, 2))))
8829 /* Only perform transformation if ARG0 is easily inverted. */
8830 tem = invert_truthvalue (arg0);
8831 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
8832 return fold (build2 (TRUTH_ANDIF_EXPR, type, tem,
8833 TREE_OPERAND (t, 2)));
8836 /* Convert A ? 1 : B into A || B if A and B are truth values. */
8837 if (integer_onep (arg1)
8838 && truth_value_p (TREE_CODE (arg0))
8839 && truth_value_p (TREE_CODE (TREE_OPERAND (t, 2))))
8840 return fold (build2 (TRUTH_ORIF_EXPR, type, arg0,
8841 TREE_OPERAND (t, 2)));
8843 return t;
8845 case COMPOUND_EXPR:
8846 /* When pedantic, a compound expression can be neither an lvalue
8847 nor an integer constant expression. */
8848 if (TREE_SIDE_EFFECTS (arg0) || TREE_CONSTANT (arg1))
8849 return t;
8850 /* Don't let (0, 0) be null pointer constant. */
8851 tem = integer_zerop (arg1) ? build1 (NOP_EXPR, type, arg1)
8852 : fold_convert (type, arg1);
8853 return pedantic_non_lvalue (tem);
8855 case COMPLEX_EXPR:
8856 if (wins)
8857 return build_complex (type, arg0, arg1);
8858 return t;
8860 case REALPART_EXPR:
8861 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
8862 return t;
8863 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
8864 return omit_one_operand (type, TREE_OPERAND (arg0, 0),
8865 TREE_OPERAND (arg0, 1));
8866 else if (TREE_CODE (arg0) == COMPLEX_CST)
8867 return TREE_REALPART (arg0);
8868 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8869 return fold (build2 (TREE_CODE (arg0), type,
8870 fold (build1 (REALPART_EXPR, type,
8871 TREE_OPERAND (arg0, 0))),
8872 fold (build1 (REALPART_EXPR, type,
8873 TREE_OPERAND (arg0, 1)))));
8874 return t;
8876 case IMAGPART_EXPR:
8877 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
8878 return fold_convert (type, integer_zero_node);
8879 else if (TREE_CODE (arg0) == COMPLEX_EXPR)
8880 return omit_one_operand (type, TREE_OPERAND (arg0, 1),
8881 TREE_OPERAND (arg0, 0));
8882 else if (TREE_CODE (arg0) == COMPLEX_CST)
8883 return TREE_IMAGPART (arg0);
8884 else if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8885 return fold (build2 (TREE_CODE (arg0), type,
8886 fold (build1 (IMAGPART_EXPR, type,
8887 TREE_OPERAND (arg0, 0))),
8888 fold (build1 (IMAGPART_EXPR, type,
8889 TREE_OPERAND (arg0, 1)))));
8890 return t;
8892 /* Pull arithmetic ops out of the CLEANUP_POINT_EXPR where
8893 appropriate. */
8894 case CLEANUP_POINT_EXPR:
8895 if (! has_cleanups (arg0))
8896 return TREE_OPERAND (t, 0);
8899 enum tree_code code0 = TREE_CODE (arg0);
8900 int kind0 = TREE_CODE_CLASS (code0);
8901 tree arg00 = TREE_OPERAND (arg0, 0);
8902 tree arg01;
8904 if (kind0 == '1' || code0 == TRUTH_NOT_EXPR)
8905 return fold (build1 (code0, type,
8906 fold (build1 (CLEANUP_POINT_EXPR,
8907 TREE_TYPE (arg00), arg00))));
8909 if (kind0 == '<' || kind0 == '2'
8910 || code0 == TRUTH_ANDIF_EXPR || code0 == TRUTH_ORIF_EXPR
8911 || code0 == TRUTH_AND_EXPR || code0 == TRUTH_OR_EXPR
8912 || code0 == TRUTH_XOR_EXPR)
8914 arg01 = TREE_OPERAND (arg0, 1);
8916 if (TREE_CONSTANT (arg00)
8917 || ((code0 == TRUTH_ANDIF_EXPR || code0 == TRUTH_ORIF_EXPR)
8918 && ! has_cleanups (arg00)))
8919 return fold (build2 (code0, type, arg00,
8920 fold (build1 (CLEANUP_POINT_EXPR,
8921 TREE_TYPE (arg01), arg01))));
8923 if (TREE_CONSTANT (arg01))
8924 return fold (build2 (code0, type,
8925 fold (build1 (CLEANUP_POINT_EXPR,
8926 TREE_TYPE (arg00), arg00)),
8927 arg01));
8930 return t;
8933 case CALL_EXPR:
8934 /* Check for a built-in function. */
8935 if (TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR
8936 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 0))
8937 == FUNCTION_DECL)
8938 && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (t, 0), 0)))
8940 tree tmp = fold_builtin (t, false);
8941 if (tmp)
8942 return tmp;
8944 return t;
8946 default:
8947 return t;
8948 } /* switch (code) */
8951 #ifdef ENABLE_FOLD_CHECKING
8952 #undef fold
8954 static void fold_checksum_tree (tree, struct md5_ctx *, htab_t);
8955 static void fold_check_failed (tree, tree);
8956 void print_fold_checksum (tree);
8958 /* When --enable-checking=fold, compute a digest of expr before
8959 and after actual fold call to see if fold did not accidentally
8960 change original expr. */
8962 tree
8963 fold (tree expr)
8965 tree ret;
8966 struct md5_ctx ctx;
8967 unsigned char checksum_before[16], checksum_after[16];
8968 htab_t ht;
8970 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
8971 md5_init_ctx (&ctx);
8972 fold_checksum_tree (expr, &ctx, ht);
8973 md5_finish_ctx (&ctx, checksum_before);
8974 htab_empty (ht);
8976 ret = fold_1 (expr);
8978 md5_init_ctx (&ctx);
8979 fold_checksum_tree (expr, &ctx, ht);
8980 md5_finish_ctx (&ctx, checksum_after);
8981 htab_delete (ht);
8983 if (memcmp (checksum_before, checksum_after, 16))
8984 fold_check_failed (expr, ret);
8986 return ret;
8989 void
8990 print_fold_checksum (tree expr)
8992 struct md5_ctx ctx;
8993 unsigned char checksum[16], cnt;
8994 htab_t ht;
8996 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
8997 md5_init_ctx (&ctx);
8998 fold_checksum_tree (expr, &ctx, ht);
8999 md5_finish_ctx (&ctx, checksum);
9000 htab_delete (ht);
9001 for (cnt = 0; cnt < 16; ++cnt)
9002 fprintf (stderr, "%02x", checksum[cnt]);
9003 putc ('\n', stderr);
9006 static void
9007 fold_check_failed (tree expr ATTRIBUTE_UNUSED, tree ret ATTRIBUTE_UNUSED)
9009 internal_error ("fold check: original tree changed by fold");
9012 static void
9013 fold_checksum_tree (tree expr, struct md5_ctx *ctx, htab_t ht)
9015 void **slot;
9016 enum tree_code code;
9017 char buf[sizeof (struct tree_decl)];
9018 int i, len;
9020 if (sizeof (struct tree_exp) + 5 * sizeof (tree)
9021 > sizeof (struct tree_decl)
9022 || sizeof (struct tree_type) > sizeof (struct tree_decl))
9023 abort ();
9024 if (expr == NULL)
9025 return;
9026 slot = htab_find_slot (ht, expr, INSERT);
9027 if (*slot != NULL)
9028 return;
9029 *slot = expr;
9030 code = TREE_CODE (expr);
9031 if (TREE_CODE_CLASS (code) == 'd' && DECL_ASSEMBLER_NAME_SET_P (expr))
9033 /* Allow DECL_ASSEMBLER_NAME to be modified. */
9034 memcpy (buf, expr, tree_size (expr));
9035 expr = (tree) buf;
9036 SET_DECL_ASSEMBLER_NAME (expr, NULL);
9038 else if (TREE_CODE_CLASS (code) == 't'
9039 && (TYPE_POINTER_TO (expr) || TYPE_REFERENCE_TO (expr)))
9041 /* Allow TYPE_POINTER_TO and TYPE_REFERENCE_TO to be modified. */
9042 memcpy (buf, expr, tree_size (expr));
9043 expr = (tree) buf;
9044 TYPE_POINTER_TO (expr) = NULL;
9045 TYPE_REFERENCE_TO (expr) = NULL;
9047 md5_process_bytes (expr, tree_size (expr), ctx);
9048 fold_checksum_tree (TREE_TYPE (expr), ctx, ht);
9049 if (TREE_CODE_CLASS (code) != 't' && TREE_CODE_CLASS (code) != 'd')
9050 fold_checksum_tree (TREE_CHAIN (expr), ctx, ht);
9051 switch (TREE_CODE_CLASS (code))
9053 case 'c':
9054 switch (code)
9056 case STRING_CST:
9057 md5_process_bytes (TREE_STRING_POINTER (expr),
9058 TREE_STRING_LENGTH (expr), ctx);
9059 break;
9060 case COMPLEX_CST:
9061 fold_checksum_tree (TREE_REALPART (expr), ctx, ht);
9062 fold_checksum_tree (TREE_IMAGPART (expr), ctx, ht);
9063 break;
9064 case VECTOR_CST:
9065 fold_checksum_tree (TREE_VECTOR_CST_ELTS (expr), ctx, ht);
9066 break;
9067 default:
9068 break;
9070 break;
9071 case 'x':
9072 switch (code)
9074 case TREE_LIST:
9075 fold_checksum_tree (TREE_PURPOSE (expr), ctx, ht);
9076 fold_checksum_tree (TREE_VALUE (expr), ctx, ht);
9077 break;
9078 case TREE_VEC:
9079 for (i = 0; i < TREE_VEC_LENGTH (expr); ++i)
9080 fold_checksum_tree (TREE_VEC_ELT (expr, i), ctx, ht);
9081 break;
9082 default:
9083 break;
9085 break;
9086 case 'e':
9087 case 'r':
9088 case '<':
9089 case '1':
9090 case '2':
9091 case 's':
9092 len = first_rtl_op (code);
9093 for (i = 0; i < len; ++i)
9094 fold_checksum_tree (TREE_OPERAND (expr, i), ctx, ht);
9095 break;
9096 case 'd':
9097 fold_checksum_tree (DECL_SIZE (expr), ctx, ht);
9098 fold_checksum_tree (DECL_SIZE_UNIT (expr), ctx, ht);
9099 fold_checksum_tree (DECL_NAME (expr), ctx, ht);
9100 fold_checksum_tree (DECL_CONTEXT (expr), ctx, ht);
9101 fold_checksum_tree (DECL_ARGUMENTS (expr), ctx, ht);
9102 fold_checksum_tree (DECL_RESULT_FLD (expr), ctx, ht);
9103 fold_checksum_tree (DECL_INITIAL (expr), ctx, ht);
9104 fold_checksum_tree (DECL_ABSTRACT_ORIGIN (expr), ctx, ht);
9105 fold_checksum_tree (DECL_SECTION_NAME (expr), ctx, ht);
9106 fold_checksum_tree (DECL_ATTRIBUTES (expr), ctx, ht);
9107 fold_checksum_tree (DECL_VINDEX (expr), ctx, ht);
9108 break;
9109 case 't':
9110 if (TREE_CODE (expr) == ENUMERAL_TYPE)
9111 fold_checksum_tree (TYPE_VALUES (expr), ctx, ht);
9112 fold_checksum_tree (TYPE_SIZE (expr), ctx, ht);
9113 fold_checksum_tree (TYPE_SIZE_UNIT (expr), ctx, ht);
9114 fold_checksum_tree (TYPE_ATTRIBUTES (expr), ctx, ht);
9115 fold_checksum_tree (TYPE_NAME (expr), ctx, ht);
9116 if (INTEGRAL_TYPE_P (expr)
9117 || SCALAR_FLOAT_TYPE_P (expr))
9119 fold_checksum_tree (TYPE_MIN_VALUE (expr), ctx, ht);
9120 fold_checksum_tree (TYPE_MAX_VALUE (expr), ctx, ht);
9122 fold_checksum_tree (TYPE_MAIN_VARIANT (expr), ctx, ht);
9123 fold_checksum_tree (TYPE_BINFO (expr), ctx, ht);
9124 fold_checksum_tree (TYPE_CONTEXT (expr), ctx, ht);
9125 break;
9126 default:
9127 break;
9131 #endif
9133 /* Perform constant folding and related simplification of initializer
9134 expression EXPR. This behaves identically to "fold" but ignores
9135 potential run-time traps and exceptions that fold must preserve. */
9137 tree
9138 fold_initializer (tree expr)
9140 int saved_signaling_nans = flag_signaling_nans;
9141 int saved_trapping_math = flag_trapping_math;
9142 int saved_trapv = flag_trapv;
9143 tree result;
9145 flag_signaling_nans = 0;
9146 flag_trapping_math = 0;
9147 flag_trapv = 0;
9149 result = fold (expr);
9151 flag_signaling_nans = saved_signaling_nans;
9152 flag_trapping_math = saved_trapping_math;
9153 flag_trapv = saved_trapv;
9155 return result;
9158 /* Determine if first argument is a multiple of second argument. Return 0 if
9159 it is not, or we cannot easily determined it to be.
9161 An example of the sort of thing we care about (at this point; this routine
9162 could surely be made more general, and expanded to do what the *_DIV_EXPR's
9163 fold cases do now) is discovering that
9165 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
9167 is a multiple of
9169 SAVE_EXPR (J * 8)
9171 when we know that the two SAVE_EXPR (J * 8) nodes are the same node.
9173 This code also handles discovering that
9175 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
9177 is a multiple of 8 so we don't have to worry about dealing with a
9178 possible remainder.
9180 Note that we *look* inside a SAVE_EXPR only to determine how it was
9181 calculated; it is not safe for fold to do much of anything else with the
9182 internals of a SAVE_EXPR, since it cannot know when it will be evaluated
9183 at run time. For example, the latter example above *cannot* be implemented
9184 as SAVE_EXPR (I) * J or any variant thereof, since the value of J at
9185 evaluation time of the original SAVE_EXPR is not necessarily the same at
9186 the time the new expression is evaluated. The only optimization of this
9187 sort that would be valid is changing
9189 SAVE_EXPR (I) * SAVE_EXPR (SAVE_EXPR (J) * 8)
9191 divided by 8 to
9193 SAVE_EXPR (I) * SAVE_EXPR (J)
9195 (where the same SAVE_EXPR (J) is used in the original and the
9196 transformed version). */
9198 static int
9199 multiple_of_p (tree type, tree top, tree bottom)
9201 if (operand_equal_p (top, bottom, 0))
9202 return 1;
9204 if (TREE_CODE (type) != INTEGER_TYPE)
9205 return 0;
9207 switch (TREE_CODE (top))
9209 case MULT_EXPR:
9210 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
9211 || multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
9213 case PLUS_EXPR:
9214 case MINUS_EXPR:
9215 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
9216 && multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
9218 case LSHIFT_EXPR:
9219 if (TREE_CODE (TREE_OPERAND (top, 1)) == INTEGER_CST)
9221 tree op1, t1;
9223 op1 = TREE_OPERAND (top, 1);
9224 /* const_binop may not detect overflow correctly,
9225 so check for it explicitly here. */
9226 if (TYPE_PRECISION (TREE_TYPE (size_one_node))
9227 > TREE_INT_CST_LOW (op1)
9228 && TREE_INT_CST_HIGH (op1) == 0
9229 && 0 != (t1 = fold_convert (type,
9230 const_binop (LSHIFT_EXPR,
9231 size_one_node,
9232 op1, 0)))
9233 && ! TREE_OVERFLOW (t1))
9234 return multiple_of_p (type, t1, bottom);
9236 return 0;
9238 case NOP_EXPR:
9239 /* Can't handle conversions from non-integral or wider integral type. */
9240 if ((TREE_CODE (TREE_TYPE (TREE_OPERAND (top, 0))) != INTEGER_TYPE)
9241 || (TYPE_PRECISION (type)
9242 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (top, 0)))))
9243 return 0;
9245 /* .. fall through ... */
9247 case SAVE_EXPR:
9248 return multiple_of_p (type, TREE_OPERAND (top, 0), bottom);
9250 case INTEGER_CST:
9251 if (TREE_CODE (bottom) != INTEGER_CST
9252 || (TYPE_UNSIGNED (type)
9253 && (tree_int_cst_sgn (top) < 0
9254 || tree_int_cst_sgn (bottom) < 0)))
9255 return 0;
9256 return integer_zerop (const_binop (TRUNC_MOD_EXPR,
9257 top, bottom, 0));
9259 default:
9260 return 0;
9264 /* Return true if `t' is known to be non-negative. */
9267 tree_expr_nonnegative_p (tree t)
9269 switch (TREE_CODE (t))
9271 case ABS_EXPR:
9272 return 1;
9274 case INTEGER_CST:
9275 return tree_int_cst_sgn (t) >= 0;
9277 case REAL_CST:
9278 return ! REAL_VALUE_NEGATIVE (TREE_REAL_CST (t));
9280 case PLUS_EXPR:
9281 if (FLOAT_TYPE_P (TREE_TYPE (t)))
9282 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
9283 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
9285 /* zero_extend(x) + zero_extend(y) is non-negative if x and y are
9286 both unsigned and at least 2 bits shorter than the result. */
9287 if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
9288 && TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
9289 && TREE_CODE (TREE_OPERAND (t, 1)) == NOP_EXPR)
9291 tree inner1 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
9292 tree inner2 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0));
9293 if (TREE_CODE (inner1) == INTEGER_TYPE && TYPE_UNSIGNED (inner1)
9294 && TREE_CODE (inner2) == INTEGER_TYPE && TYPE_UNSIGNED (inner2))
9296 unsigned int prec = MAX (TYPE_PRECISION (inner1),
9297 TYPE_PRECISION (inner2)) + 1;
9298 return prec < TYPE_PRECISION (TREE_TYPE (t));
9301 break;
9303 case MULT_EXPR:
9304 if (FLOAT_TYPE_P (TREE_TYPE (t)))
9306 /* x * x for floating point x is always non-negative. */
9307 if (operand_equal_p (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1), 0))
9308 return 1;
9309 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
9310 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
9313 /* zero_extend(x) * zero_extend(y) is non-negative if x and y are
9314 both unsigned and their total bits is shorter than the result. */
9315 if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
9316 && TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
9317 && TREE_CODE (TREE_OPERAND (t, 1)) == NOP_EXPR)
9319 tree inner1 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
9320 tree inner2 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0));
9321 if (TREE_CODE (inner1) == INTEGER_TYPE && TYPE_UNSIGNED (inner1)
9322 && TREE_CODE (inner2) == INTEGER_TYPE && TYPE_UNSIGNED (inner2))
9323 return TYPE_PRECISION (inner1) + TYPE_PRECISION (inner2)
9324 < TYPE_PRECISION (TREE_TYPE (t));
9326 return 0;
9328 case TRUNC_DIV_EXPR:
9329 case CEIL_DIV_EXPR:
9330 case FLOOR_DIV_EXPR:
9331 case ROUND_DIV_EXPR:
9332 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
9333 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
9335 case TRUNC_MOD_EXPR:
9336 case CEIL_MOD_EXPR:
9337 case FLOOR_MOD_EXPR:
9338 case ROUND_MOD_EXPR:
9339 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
9341 case RDIV_EXPR:
9342 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
9343 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
9345 case BIT_AND_EXPR:
9346 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1))
9347 || tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
9348 case BIT_IOR_EXPR:
9349 case BIT_XOR_EXPR:
9350 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
9351 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
9353 case NOP_EXPR:
9355 tree inner_type = TREE_TYPE (TREE_OPERAND (t, 0));
9356 tree outer_type = TREE_TYPE (t);
9358 if (TREE_CODE (outer_type) == REAL_TYPE)
9360 if (TREE_CODE (inner_type) == REAL_TYPE)
9361 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
9362 if (TREE_CODE (inner_type) == INTEGER_TYPE)
9364 if (TYPE_UNSIGNED (inner_type))
9365 return 1;
9366 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
9369 else if (TREE_CODE (outer_type) == INTEGER_TYPE)
9371 if (TREE_CODE (inner_type) == REAL_TYPE)
9372 return tree_expr_nonnegative_p (TREE_OPERAND (t,0));
9373 if (TREE_CODE (inner_type) == INTEGER_TYPE)
9374 return TYPE_PRECISION (inner_type) < TYPE_PRECISION (outer_type)
9375 && TYPE_UNSIGNED (inner_type);
9378 break;
9380 case COND_EXPR:
9381 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1))
9382 && tree_expr_nonnegative_p (TREE_OPERAND (t, 2));
9383 case COMPOUND_EXPR:
9384 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
9385 case MIN_EXPR:
9386 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
9387 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
9388 case MAX_EXPR:
9389 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
9390 || tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
9391 case MODIFY_EXPR:
9392 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
9393 case BIND_EXPR:
9394 return tree_expr_nonnegative_p (expr_last (TREE_OPERAND (t, 1)));
9395 case SAVE_EXPR:
9396 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
9397 case NON_LVALUE_EXPR:
9398 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
9399 case FLOAT_EXPR:
9400 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
9402 case TARGET_EXPR:
9404 tree temp = TARGET_EXPR_SLOT (t);
9405 t = TARGET_EXPR_INITIAL (t);
9407 /* If the initializer is non-void, then it's a normal expression
9408 that will be assigned to the slot. */
9409 if (!VOID_TYPE_P (t))
9410 return tree_expr_nonnegative_p (t);
9412 /* Otherwise, the initializer sets the slot in some way. One common
9413 way is an assignment statement at the end of the initializer. */
9414 while (1)
9416 if (TREE_CODE (t) == BIND_EXPR)
9417 t = expr_last (BIND_EXPR_BODY (t));
9418 else if (TREE_CODE (t) == TRY_FINALLY_EXPR
9419 || TREE_CODE (t) == TRY_CATCH_EXPR)
9420 t = expr_last (TREE_OPERAND (t, 0));
9421 else if (TREE_CODE (t) == STATEMENT_LIST)
9422 t = expr_last (t);
9423 else
9424 break;
9426 if (TREE_CODE (t) == MODIFY_EXPR
9427 && TREE_OPERAND (t, 0) == temp)
9428 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
9430 return 0;
9433 case CALL_EXPR:
9435 tree fndecl = get_callee_fndecl (t);
9436 tree arglist = TREE_OPERAND (t, 1);
9437 if (fndecl
9438 && DECL_BUILT_IN (fndecl)
9439 && DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_MD)
9440 switch (DECL_FUNCTION_CODE (fndecl))
9442 #define CASE_BUILTIN_F(BUILT_IN_FN) \
9443 case BUILT_IN_FN: case BUILT_IN_FN##F: case BUILT_IN_FN##L:
9444 #define CASE_BUILTIN_I(BUILT_IN_FN) \
9445 case BUILT_IN_FN: case BUILT_IN_FN##L: case BUILT_IN_FN##LL:
9447 CASE_BUILTIN_F (BUILT_IN_ACOS)
9448 CASE_BUILTIN_F (BUILT_IN_ACOSH)
9449 CASE_BUILTIN_F (BUILT_IN_CABS)
9450 CASE_BUILTIN_F (BUILT_IN_COSH)
9451 CASE_BUILTIN_F (BUILT_IN_ERFC)
9452 CASE_BUILTIN_F (BUILT_IN_EXP)
9453 CASE_BUILTIN_F (BUILT_IN_EXP10)
9454 CASE_BUILTIN_F (BUILT_IN_EXP2)
9455 CASE_BUILTIN_F (BUILT_IN_FABS)
9456 CASE_BUILTIN_F (BUILT_IN_FDIM)
9457 CASE_BUILTIN_F (BUILT_IN_FREXP)
9458 CASE_BUILTIN_F (BUILT_IN_HYPOT)
9459 CASE_BUILTIN_F (BUILT_IN_POW10)
9460 CASE_BUILTIN_I (BUILT_IN_FFS)
9461 CASE_BUILTIN_I (BUILT_IN_PARITY)
9462 CASE_BUILTIN_I (BUILT_IN_POPCOUNT)
9463 /* Always true. */
9464 return 1;
9466 CASE_BUILTIN_F (BUILT_IN_SQRT)
9467 /* sqrt(-0.0) is -0.0. */
9468 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (t))))
9469 return 1;
9470 return tree_expr_nonnegative_p (TREE_VALUE (arglist));
9472 CASE_BUILTIN_F (BUILT_IN_ASINH)
9473 CASE_BUILTIN_F (BUILT_IN_ATAN)
9474 CASE_BUILTIN_F (BUILT_IN_ATANH)
9475 CASE_BUILTIN_F (BUILT_IN_CBRT)
9476 CASE_BUILTIN_F (BUILT_IN_CEIL)
9477 CASE_BUILTIN_F (BUILT_IN_ERF)
9478 CASE_BUILTIN_F (BUILT_IN_EXPM1)
9479 CASE_BUILTIN_F (BUILT_IN_FLOOR)
9480 CASE_BUILTIN_F (BUILT_IN_FMOD)
9481 CASE_BUILTIN_F (BUILT_IN_LDEXP)
9482 CASE_BUILTIN_F (BUILT_IN_LLRINT)
9483 CASE_BUILTIN_F (BUILT_IN_LLROUND)
9484 CASE_BUILTIN_F (BUILT_IN_LRINT)
9485 CASE_BUILTIN_F (BUILT_IN_LROUND)
9486 CASE_BUILTIN_F (BUILT_IN_MODF)
9487 CASE_BUILTIN_F (BUILT_IN_NEARBYINT)
9488 CASE_BUILTIN_F (BUILT_IN_POW)
9489 CASE_BUILTIN_F (BUILT_IN_RINT)
9490 CASE_BUILTIN_F (BUILT_IN_ROUND)
9491 CASE_BUILTIN_F (BUILT_IN_SIGNBIT)
9492 CASE_BUILTIN_F (BUILT_IN_SINH)
9493 CASE_BUILTIN_F (BUILT_IN_TANH)
9494 CASE_BUILTIN_F (BUILT_IN_TRUNC)
9495 /* True if the 1st argument is nonnegative. */
9496 return tree_expr_nonnegative_p (TREE_VALUE (arglist));
9498 CASE_BUILTIN_F (BUILT_IN_FMAX)
9499 /* True if the 1st OR 2nd arguments are nonnegative. */
9500 return tree_expr_nonnegative_p (TREE_VALUE (arglist))
9501 || tree_expr_nonnegative_p (TREE_VALUE (TREE_CHAIN (arglist)));
9503 CASE_BUILTIN_F (BUILT_IN_FMIN)
9504 /* True if the 1st AND 2nd arguments are nonnegative. */
9505 return tree_expr_nonnegative_p (TREE_VALUE (arglist))
9506 && tree_expr_nonnegative_p (TREE_VALUE (TREE_CHAIN (arglist)));
9508 CASE_BUILTIN_F (BUILT_IN_COPYSIGN)
9509 /* True if the 2nd argument is nonnegative. */
9510 return tree_expr_nonnegative_p (TREE_VALUE (TREE_CHAIN (arglist)));
9512 default:
9513 break;
9514 #undef CASE_BUILTIN_F
9515 #undef CASE_BUILTIN_I
9519 /* ... fall through ... */
9521 default:
9522 if (truth_value_p (TREE_CODE (t)))
9523 /* Truth values evaluate to 0 or 1, which is nonnegative. */
9524 return 1;
9527 /* We don't know sign of `t', so be conservative and return false. */
9528 return 0;
9531 /* Return true when T is an address and is known to be nonzero.
9532 For floating point we further ensure that T is not denormal.
9533 Similar logic is present in nonzero_address in rtlanal.h */
9535 static bool
9536 tree_expr_nonzero_p (tree t)
9538 tree type = TREE_TYPE (t);
9540 /* Doing something useful for floating point would need more work. */
9541 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
9542 return false;
9544 switch (TREE_CODE (t))
9546 case ABS_EXPR:
9547 if (!TYPE_UNSIGNED (type) && !flag_wrapv)
9548 return tree_expr_nonzero_p (TREE_OPERAND (t, 0));
9550 case INTEGER_CST:
9551 return !integer_zerop (t);
9553 case PLUS_EXPR:
9554 if (!TYPE_UNSIGNED (type) && !flag_wrapv)
9556 /* With the presence of negative values it is hard
9557 to say something. */
9558 if (!tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
9559 || !tree_expr_nonnegative_p (TREE_OPERAND (t, 1)))
9560 return false;
9561 /* One of operands must be positive and the other non-negative. */
9562 return (tree_expr_nonzero_p (TREE_OPERAND (t, 0))
9563 || tree_expr_nonzero_p (TREE_OPERAND (t, 1)));
9565 break;
9567 case MULT_EXPR:
9568 if (!TYPE_UNSIGNED (type) && !flag_wrapv)
9570 return (tree_expr_nonzero_p (TREE_OPERAND (t, 0))
9571 && tree_expr_nonzero_p (TREE_OPERAND (t, 1)));
9573 break;
9575 case NOP_EXPR:
9577 tree inner_type = TREE_TYPE (TREE_OPERAND (t, 0));
9578 tree outer_type = TREE_TYPE (t);
9580 return (TYPE_PRECISION (inner_type) >= TYPE_PRECISION (outer_type)
9581 && tree_expr_nonzero_p (TREE_OPERAND (t, 0)));
9583 break;
9585 case ADDR_EXPR:
9586 /* Weak declarations may link to NULL. */
9587 if (DECL_P (TREE_OPERAND (t, 0)))
9588 return !DECL_WEAK (TREE_OPERAND (t, 0));
9589 /* Constants and all other cases are never weak. */
9590 return true;
9592 case COND_EXPR:
9593 return (tree_expr_nonzero_p (TREE_OPERAND (t, 1))
9594 && tree_expr_nonzero_p (TREE_OPERAND (t, 2)));
9596 case MIN_EXPR:
9597 return (tree_expr_nonzero_p (TREE_OPERAND (t, 0))
9598 && tree_expr_nonzero_p (TREE_OPERAND (t, 1)));
9600 case MAX_EXPR:
9601 if (tree_expr_nonzero_p (TREE_OPERAND (t, 0)))
9603 /* When both operands are nonzero, then MAX must be too. */
9604 if (tree_expr_nonzero_p (TREE_OPERAND (t, 1)))
9605 return true;
9607 /* MAX where operand 0 is positive is positive. */
9608 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
9610 /* MAX where operand 1 is positive is positive. */
9611 else if (tree_expr_nonzero_p (TREE_OPERAND (t, 1))
9612 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1)))
9613 return true;
9614 break;
9616 case COMPOUND_EXPR:
9617 case MODIFY_EXPR:
9618 case BIND_EXPR:
9619 return tree_expr_nonzero_p (TREE_OPERAND (t, 1));
9621 case SAVE_EXPR:
9622 case NON_LVALUE_EXPR:
9623 return tree_expr_nonzero_p (TREE_OPERAND (t, 0));
9625 case BIT_IOR_EXPR:
9626 return tree_expr_nonzero_p (TREE_OPERAND (t, 1))
9627 || tree_expr_nonzero_p (TREE_OPERAND (t, 0));
9629 default:
9630 break;
9632 return false;
9635 /* Return true if `r' is known to be non-negative.
9636 Only handles constants at the moment. */
9639 rtl_expr_nonnegative_p (rtx r)
9641 switch (GET_CODE (r))
9643 case CONST_INT:
9644 return INTVAL (r) >= 0;
9646 case CONST_DOUBLE:
9647 if (GET_MODE (r) == VOIDmode)
9648 return CONST_DOUBLE_HIGH (r) >= 0;
9649 return 0;
9651 case CONST_VECTOR:
9653 int units, i;
9654 rtx elt;
9656 units = CONST_VECTOR_NUNITS (r);
9658 for (i = 0; i < units; ++i)
9660 elt = CONST_VECTOR_ELT (r, i);
9661 if (!rtl_expr_nonnegative_p (elt))
9662 return 0;
9665 return 1;
9668 case SYMBOL_REF:
9669 case LABEL_REF:
9670 /* These are always nonnegative. */
9671 return 1;
9673 default:
9674 return 0;
9679 /* See if we are applying CODE, a relational to the highest or lowest
9680 possible integer of TYPE. If so, then the result is a compile
9681 time constant. */
9683 static tree
9684 fold_relational_hi_lo (enum tree_code *code_p, const tree type, tree *op0_p,
9685 tree *op1_p)
9687 tree op0 = *op0_p;
9688 tree op1 = *op1_p;
9689 enum tree_code code = *code_p;
9690 int width = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (op1)));
9692 if (TREE_CODE (op1) == INTEGER_CST
9693 && ! TREE_CONSTANT_OVERFLOW (op1)
9694 && width <= HOST_BITS_PER_WIDE_INT
9695 && (INTEGRAL_TYPE_P (TREE_TYPE (op1))
9696 || POINTER_TYPE_P (TREE_TYPE (op1))))
9698 unsigned HOST_WIDE_INT signed_max;
9699 unsigned HOST_WIDE_INT max, min;
9701 signed_max = ((unsigned HOST_WIDE_INT) 1 << (width - 1)) - 1;
9703 if (TYPE_UNSIGNED (TREE_TYPE (op1)))
9705 max = ((unsigned HOST_WIDE_INT) 2 << (width - 1)) - 1;
9706 min = 0;
9708 else
9710 max = signed_max;
9711 min = ((unsigned HOST_WIDE_INT) -1 << (width - 1));
9714 if (TREE_INT_CST_HIGH (op1) == 0
9715 && TREE_INT_CST_LOW (op1) == max)
9716 switch (code)
9718 case GT_EXPR:
9719 return omit_one_operand (type, integer_zero_node, op0);
9721 case GE_EXPR:
9722 *code_p = EQ_EXPR;
9723 break;
9724 case LE_EXPR:
9725 return omit_one_operand (type, integer_one_node, op0);
9727 case LT_EXPR:
9728 *code_p = NE_EXPR;
9729 break;
9731 /* The GE_EXPR and LT_EXPR cases above are not normally
9732 reached because of previous transformations. */
9734 default:
9735 break;
9737 else if (TREE_INT_CST_HIGH (op1) == 0
9738 && TREE_INT_CST_LOW (op1) == max - 1)
9739 switch (code)
9741 case GT_EXPR:
9742 *code_p = EQ_EXPR;
9743 *op1_p = const_binop (PLUS_EXPR, op1, integer_one_node, 0);
9744 break;
9745 case LE_EXPR:
9746 *code_p = NE_EXPR;
9747 *op1_p = const_binop (PLUS_EXPR, op1, integer_one_node, 0);
9748 break;
9749 default:
9750 break;
9752 else if (TREE_INT_CST_HIGH (op1) == (min ? -1 : 0)
9753 && TREE_INT_CST_LOW (op1) == min)
9754 switch (code)
9756 case LT_EXPR:
9757 return omit_one_operand (type, integer_zero_node, op0);
9759 case LE_EXPR:
9760 *code_p = EQ_EXPR;
9761 break;
9763 case GE_EXPR:
9764 return omit_one_operand (type, integer_one_node, op0);
9766 case GT_EXPR:
9767 *code_p = NE_EXPR;
9768 break;
9770 default:
9771 break;
9773 else if (TREE_INT_CST_HIGH (op1) == (min ? -1 : 0)
9774 && TREE_INT_CST_LOW (op1) == min + 1)
9775 switch (code)
9777 case GE_EXPR:
9778 *code_p = NE_EXPR;
9779 *op1_p = const_binop (MINUS_EXPR, op1, integer_one_node, 0);
9780 break;
9781 case LT_EXPR:
9782 *code_p = EQ_EXPR;
9783 *op1_p = const_binop (MINUS_EXPR, op1, integer_one_node, 0);
9784 break;
9785 default:
9786 break;
9789 else if (TREE_INT_CST_HIGH (op1) == 0
9790 && TREE_INT_CST_LOW (op1) == signed_max
9791 && TYPE_UNSIGNED (TREE_TYPE (op1))
9792 /* signed_type does not work on pointer types. */
9793 && INTEGRAL_TYPE_P (TREE_TYPE (op1)))
9795 /* The following case also applies to X < signed_max+1
9796 and X >= signed_max+1 because previous transformations. */
9797 if (code == LE_EXPR || code == GT_EXPR)
9799 tree st0, st1, exp, retval;
9800 st0 = lang_hooks.types.signed_type (TREE_TYPE (op0));
9801 st1 = lang_hooks.types.signed_type (TREE_TYPE (op1));
9803 exp = build2 (code == LE_EXPR ? GE_EXPR: LT_EXPR,
9804 type,
9805 fold_convert (st0, op0),
9806 fold_convert (st1, integer_zero_node));
9808 retval
9809 = nondestructive_fold_binary_to_constant (TREE_CODE (exp),
9810 TREE_TYPE (exp),
9811 TREE_OPERAND (exp, 0),
9812 TREE_OPERAND (exp, 1));
9814 /* If we are in gimple form, then returning EXP would create
9815 non-gimple expressions. Clearing it is safe and insures
9816 we do not allow a non-gimple expression to escape. */
9817 if (in_gimple_form)
9818 exp = NULL;
9820 return (retval ? retval : exp);
9825 return NULL_TREE;
9829 /* Given the components of a binary expression CODE, TYPE, OP0 and OP1,
9830 attempt to fold the expression to a constant without modifying TYPE,
9831 OP0 or OP1.
9833 If the expression could be simplified to a constant, then return
9834 the constant. If the expression would not be simplified to a
9835 constant, then return NULL_TREE.
9837 Note this is primarily designed to be called after gimplification
9838 of the tree structures and when at least one operand is a constant.
9839 As a result of those simplifying assumptions this routine is far
9840 simpler than the generic fold routine. */
9842 tree
9843 nondestructive_fold_binary_to_constant (enum tree_code code, tree type,
9844 tree op0, tree op1)
9846 int wins = 1;
9847 tree subop0;
9848 tree subop1;
9849 tree tem;
9851 /* If this is a commutative operation, and ARG0 is a constant, move it
9852 to ARG1 to reduce the number of tests below. */
9853 if (commutative_tree_code (code)
9854 && (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST))
9856 tem = op0;
9857 op0 = op1;
9858 op1 = tem;
9861 /* If either operand is a complex type, extract its real component. */
9862 if (TREE_CODE (op0) == COMPLEX_CST)
9863 subop0 = TREE_REALPART (op0);
9864 else
9865 subop0 = op0;
9867 if (TREE_CODE (op1) == COMPLEX_CST)
9868 subop1 = TREE_REALPART (op1);
9869 else
9870 subop1 = op1;
9872 /* Note if either argument is not a real or integer constant.
9873 With a few exceptions, simplification is limited to cases
9874 where both arguments are constants. */
9875 if ((TREE_CODE (subop0) != INTEGER_CST
9876 && TREE_CODE (subop0) != REAL_CST)
9877 || (TREE_CODE (subop1) != INTEGER_CST
9878 && TREE_CODE (subop1) != REAL_CST))
9879 wins = 0;
9881 switch (code)
9883 case PLUS_EXPR:
9884 /* (plus (address) (const_int)) is a constant. */
9885 if (TREE_CODE (op0) == PLUS_EXPR
9886 && TREE_CODE (op1) == INTEGER_CST
9887 && (TREE_CODE (TREE_OPERAND (op0, 0)) == ADDR_EXPR
9888 || (TREE_CODE (TREE_OPERAND (op0, 0)) == NOP_EXPR
9889 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (op0, 0), 0))
9890 == ADDR_EXPR)))
9891 && TREE_CODE (TREE_OPERAND (op0, 1)) == INTEGER_CST)
9893 return build2 (PLUS_EXPR, type, TREE_OPERAND (op0, 0),
9894 const_binop (PLUS_EXPR, op1,
9895 TREE_OPERAND (op0, 1), 0));
9897 case BIT_XOR_EXPR:
9899 binary:
9900 if (!wins)
9901 return NULL_TREE;
9903 /* Both arguments are constants. Simplify. */
9904 tem = const_binop (code, op0, op1, 0);
9905 if (tem != NULL_TREE)
9907 /* The return value should always have the same type as
9908 the original expression. */
9909 if (TREE_TYPE (tem) != type)
9910 tem = fold_convert (type, tem);
9912 return tem;
9914 return NULL_TREE;
9916 case MINUS_EXPR:
9917 /* Fold &x - &x. This can happen from &x.foo - &x.
9918 This is unsafe for certain floats even in non-IEEE formats.
9919 In IEEE, it is unsafe because it does wrong for NaNs.
9920 Also note that operand_equal_p is always false if an
9921 operand is volatile. */
9922 if (! FLOAT_TYPE_P (type) && operand_equal_p (op0, op1, 0))
9923 return fold_convert (type, integer_zero_node);
9925 goto binary;
9927 case MULT_EXPR:
9928 case BIT_AND_EXPR:
9929 /* Special case multiplication or bitwise AND where one argument
9930 is zero. */
9931 if (! FLOAT_TYPE_P (type) && integer_zerop (op1))
9932 return omit_one_operand (type, op1, op0);
9933 else
9934 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (op0)))
9935 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (op0)))
9936 && real_zerop (op1))
9937 return omit_one_operand (type, op1, op0);
9939 goto binary;
9941 case BIT_IOR_EXPR:
9942 /* Special case when we know the result will be all ones. */
9943 if (integer_all_onesp (op1))
9944 return omit_one_operand (type, op1, op0);
9946 goto binary;
9948 case TRUNC_DIV_EXPR:
9949 case ROUND_DIV_EXPR:
9950 case FLOOR_DIV_EXPR:
9951 case CEIL_DIV_EXPR:
9952 case EXACT_DIV_EXPR:
9953 case TRUNC_MOD_EXPR:
9954 case ROUND_MOD_EXPR:
9955 case FLOOR_MOD_EXPR:
9956 case CEIL_MOD_EXPR:
9957 case RDIV_EXPR:
9958 /* Division by zero is undefined. */
9959 if (integer_zerop (op1))
9960 return NULL_TREE;
9962 if (TREE_CODE (op1) == REAL_CST
9963 && !MODE_HAS_INFINITIES (TYPE_MODE (TREE_TYPE (op1)))
9964 && real_zerop (op1))
9965 return NULL_TREE;
9967 goto binary;
9969 case MIN_EXPR:
9970 if (INTEGRAL_TYPE_P (type)
9971 && operand_equal_p (op1, TYPE_MIN_VALUE (type), OEP_ONLY_CONST))
9972 return omit_one_operand (type, op1, op0);
9974 goto binary;
9976 case MAX_EXPR:
9977 if (INTEGRAL_TYPE_P (type)
9978 && TYPE_MAX_VALUE (type)
9979 && operand_equal_p (op1, TYPE_MAX_VALUE (type), OEP_ONLY_CONST))
9980 return omit_one_operand (type, op1, op0);
9982 goto binary;
9984 case RSHIFT_EXPR:
9985 /* Optimize -1 >> x for arithmetic right shifts. */
9986 if (integer_all_onesp (op0) && ! TYPE_UNSIGNED (type))
9987 return omit_one_operand (type, op0, op1);
9988 /* ... fall through ... */
9990 case LSHIFT_EXPR:
9991 if (integer_zerop (op0))
9992 return omit_one_operand (type, op0, op1);
9994 /* Since negative shift count is not well-defined, don't
9995 try to compute it in the compiler. */
9996 if (TREE_CODE (op1) == INTEGER_CST && tree_int_cst_sgn (op1) < 0)
9997 return NULL_TREE;
9999 goto binary;
10001 case LROTATE_EXPR:
10002 case RROTATE_EXPR:
10003 /* -1 rotated either direction by any amount is still -1. */
10004 if (integer_all_onesp (op0))
10005 return omit_one_operand (type, op0, op1);
10007 /* 0 rotated either direction by any amount is still zero. */
10008 if (integer_zerop (op0))
10009 return omit_one_operand (type, op0, op1);
10011 goto binary;
10013 case COMPLEX_EXPR:
10014 if (wins)
10015 return build_complex (type, op0, op1);
10016 return NULL_TREE;
10018 case LT_EXPR:
10019 case LE_EXPR:
10020 case GT_EXPR:
10021 case GE_EXPR:
10022 case EQ_EXPR:
10023 case NE_EXPR:
10024 /* If one arg is a real or integer constant, put it last. */
10025 if ((TREE_CODE (op0) == INTEGER_CST
10026 && TREE_CODE (op1) != INTEGER_CST)
10027 || (TREE_CODE (op0) == REAL_CST
10028 && TREE_CODE (op0) != REAL_CST))
10030 tree temp;
10032 temp = op0;
10033 op0 = op1;
10034 op1 = temp;
10035 code = swap_tree_comparison (code);
10038 /* Change X >= C to X > (C - 1) and X < C to X <= (C - 1) if C > 0.
10039 This transformation affects the cases which are handled in later
10040 optimizations involving comparisons with non-negative constants. */
10041 if (TREE_CODE (op1) == INTEGER_CST
10042 && TREE_CODE (op0) != INTEGER_CST
10043 && tree_int_cst_sgn (op1) > 0)
10045 switch (code)
10047 case GE_EXPR:
10048 code = GT_EXPR;
10049 op1 = const_binop (MINUS_EXPR, op1, integer_one_node, 0);
10050 break;
10052 case LT_EXPR:
10053 code = LE_EXPR;
10054 op1 = const_binop (MINUS_EXPR, op1, integer_one_node, 0);
10055 break;
10057 default:
10058 break;
10062 tem = fold_relational_hi_lo (&code, type, &op0, &op1);
10063 if (tem)
10064 return tem;
10066 /* Fall through. */
10068 case ORDERED_EXPR:
10069 case UNORDERED_EXPR:
10070 case UNLT_EXPR:
10071 case UNLE_EXPR:
10072 case UNGT_EXPR:
10073 case UNGE_EXPR:
10074 case UNEQ_EXPR:
10075 case LTGT_EXPR:
10076 if (!wins)
10077 return NULL_TREE;
10079 return fold_relational_const (code, type, op0, op1);
10081 case RANGE_EXPR:
10082 /* This could probably be handled. */
10083 return NULL_TREE;
10085 case TRUTH_AND_EXPR:
10086 /* If second arg is constant zero, result is zero, but first arg
10087 must be evaluated. */
10088 if (integer_zerop (op1))
10089 return omit_one_operand (type, op1, op0);
10090 /* Likewise for first arg, but note that only the TRUTH_AND_EXPR
10091 case will be handled here. */
10092 if (integer_zerop (op0))
10093 return omit_one_operand (type, op0, op1);
10094 if (TREE_CODE (op0) == INTEGER_CST && TREE_CODE (op1) == INTEGER_CST)
10095 return constant_boolean_node (true, type);
10096 return NULL_TREE;
10098 case TRUTH_OR_EXPR:
10099 /* If second arg is constant true, result is true, but we must
10100 evaluate first arg. */
10101 if (TREE_CODE (op1) == INTEGER_CST && ! integer_zerop (op1))
10102 return omit_one_operand (type, op1, op0);
10103 /* Likewise for first arg, but note this only occurs here for
10104 TRUTH_OR_EXPR. */
10105 if (TREE_CODE (op0) == INTEGER_CST && ! integer_zerop (op0))
10106 return omit_one_operand (type, op0, op1);
10107 if (TREE_CODE (op0) == INTEGER_CST && TREE_CODE (op1) == INTEGER_CST)
10108 return constant_boolean_node (false, type);
10109 return NULL_TREE;
10111 case TRUTH_XOR_EXPR:
10112 if (TREE_CODE (op0) == INTEGER_CST && TREE_CODE (op1) == INTEGER_CST)
10114 int x = ! integer_zerop (op0) ^ ! integer_zerop (op1);
10115 return constant_boolean_node (x, type);
10117 return NULL_TREE;
10119 default:
10120 return NULL_TREE;
10124 /* Given the components of a unary expression CODE, TYPE and OP0,
10125 attempt to fold the expression to a constant without modifying
10126 TYPE or OP0.
10128 If the expression could be simplified to a constant, then return
10129 the constant. If the expression would not be simplified to a
10130 constant, then return NULL_TREE.
10132 Note this is primarily designed to be called after gimplification
10133 of the tree structures and when op0 is a constant. As a result
10134 of those simplifying assumptions this routine is far simpler than
10135 the generic fold routine. */
10137 tree
10138 nondestructive_fold_unary_to_constant (enum tree_code code, tree type,
10139 tree op0)
10141 /* Make sure we have a suitable constant argument. */
10142 if (code == NOP_EXPR || code == FLOAT_EXPR || code == CONVERT_EXPR)
10144 tree subop;
10146 if (TREE_CODE (op0) == COMPLEX_CST)
10147 subop = TREE_REALPART (op0);
10148 else
10149 subop = op0;
10151 if (TREE_CODE (subop) != INTEGER_CST && TREE_CODE (subop) != REAL_CST)
10152 return NULL_TREE;
10155 switch (code)
10157 case NOP_EXPR:
10158 case FLOAT_EXPR:
10159 case CONVERT_EXPR:
10160 case FIX_TRUNC_EXPR:
10161 case FIX_FLOOR_EXPR:
10162 case FIX_CEIL_EXPR:
10163 return fold_convert_const (code, type, op0);
10165 case NEGATE_EXPR:
10166 if (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST)
10167 return fold_negate_const (op0, type);
10168 else
10169 return NULL_TREE;
10171 case ABS_EXPR:
10172 if (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST)
10173 return fold_abs_const (op0, type);
10174 else
10175 return NULL_TREE;
10177 case BIT_NOT_EXPR:
10178 if (TREE_CODE (op0) == INTEGER_CST)
10179 return fold_not_const (op0, type);
10180 else
10181 return NULL_TREE;
10183 case REALPART_EXPR:
10184 if (TREE_CODE (op0) == COMPLEX_CST)
10185 return TREE_REALPART (op0);
10186 else
10187 return NULL_TREE;
10189 case IMAGPART_EXPR:
10190 if (TREE_CODE (op0) == COMPLEX_CST)
10191 return TREE_IMAGPART (op0);
10192 else
10193 return NULL_TREE;
10195 case CONJ_EXPR:
10196 if (TREE_CODE (op0) == COMPLEX_CST
10197 && TREE_CODE (TREE_TYPE (op0)) == COMPLEX_TYPE)
10198 return build_complex (type, TREE_REALPART (op0),
10199 negate_expr (TREE_IMAGPART (op0)));
10200 return NULL_TREE;
10202 default:
10203 return NULL_TREE;
10207 /* If EXP represents referencing an element in a constant string
10208 (either via pointer arithmetic or array indexing), return the
10209 tree representing the value accessed, otherwise return NULL. */
10211 tree
10212 fold_read_from_constant_string (tree exp)
10214 if (TREE_CODE (exp) == INDIRECT_REF || TREE_CODE (exp) == ARRAY_REF)
10216 tree exp1 = TREE_OPERAND (exp, 0);
10217 tree index;
10218 tree string;
10220 if (TREE_CODE (exp) == INDIRECT_REF)
10221 string = string_constant (exp1, &index);
10222 else
10224 tree low_bound = array_ref_low_bound (exp);
10225 index = fold_convert (sizetype, TREE_OPERAND (exp, 1));
10227 /* Optimize the special-case of a zero lower bound.
10229 We convert the low_bound to sizetype to avoid some problems
10230 with constant folding. (E.g. suppose the lower bound is 1,
10231 and its mode is QI. Without the conversion,l (ARRAY
10232 +(INDEX-(unsigned char)1)) becomes ((ARRAY+(-(unsigned char)1))
10233 +INDEX), which becomes (ARRAY+255+INDEX). Opps!) */
10234 if (! integer_zerop (low_bound))
10235 index = size_diffop (index, fold_convert (sizetype, low_bound));
10237 string = exp1;
10240 if (string
10241 && TREE_TYPE (exp) == TREE_TYPE (TREE_TYPE (string))
10242 && TREE_CODE (string) == STRING_CST
10243 && TREE_CODE (index) == INTEGER_CST
10244 && compare_tree_int (index, TREE_STRING_LENGTH (string)) < 0
10245 && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (string))))
10246 == MODE_INT)
10247 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))) == 1))
10248 return fold_convert (TREE_TYPE (exp),
10249 build_int_2 ((TREE_STRING_POINTER (string)
10250 [TREE_INT_CST_LOW (index)]), 0));
10252 return NULL;
10255 /* Return the tree for neg (ARG0) when ARG0 is known to be either
10256 an integer constant or real constant.
10258 TYPE is the type of the result. */
10260 static tree
10261 fold_negate_const (tree arg0, tree type)
10263 tree t = NULL_TREE;
10265 if (TREE_CODE (arg0) == INTEGER_CST)
10267 unsigned HOST_WIDE_INT low;
10268 HOST_WIDE_INT high;
10269 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
10270 TREE_INT_CST_HIGH (arg0),
10271 &low, &high);
10272 t = build_int_2 (low, high);
10273 TREE_TYPE (t) = type;
10274 TREE_OVERFLOW (t)
10275 = (TREE_OVERFLOW (arg0)
10276 | force_fit_type (t, overflow && !TYPE_UNSIGNED (type)));
10277 TREE_CONSTANT_OVERFLOW (t)
10278 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg0);
10280 else if (TREE_CODE (arg0) == REAL_CST)
10281 t = build_real (type, REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
10282 #ifdef ENABLE_CHECKING
10283 else
10284 abort ();
10285 #endif
10287 return t;
10290 /* Return the tree for abs (ARG0) when ARG0 is known to be either
10291 an integer constant or real constant.
10293 TYPE is the type of the result. */
10295 tree
10296 fold_abs_const (tree arg0, tree type)
10298 tree t = NULL_TREE;
10300 if (TREE_CODE (arg0) == INTEGER_CST)
10302 /* If the value is unsigned, then the absolute value is
10303 the same as the ordinary value. */
10304 if (TYPE_UNSIGNED (type))
10305 return arg0;
10306 /* Similarly, if the value is non-negative. */
10307 else if (INT_CST_LT (integer_minus_one_node, arg0))
10308 return arg0;
10309 /* If the value is negative, then the absolute value is
10310 its negation. */
10311 else
10313 unsigned HOST_WIDE_INT low;
10314 HOST_WIDE_INT high;
10315 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
10316 TREE_INT_CST_HIGH (arg0),
10317 &low, &high);
10318 t = build_int_2 (low, high);
10319 TREE_TYPE (t) = type;
10320 TREE_OVERFLOW (t)
10321 = (TREE_OVERFLOW (arg0)
10322 | force_fit_type (t, overflow));
10323 TREE_CONSTANT_OVERFLOW (t)
10324 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg0);
10325 return t;
10328 else if (TREE_CODE (arg0) == REAL_CST)
10330 if (REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg0)))
10331 return build_real (type, REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
10332 else
10333 return arg0;
10335 #ifdef ENABLE_CHECKING
10336 else
10337 abort ();
10338 #endif
10340 return t;
10343 /* Return the tree for not (ARG0) when ARG0 is known to be an integer
10344 constant. TYPE is the type of the result. */
10346 static tree
10347 fold_not_const (tree arg0, tree type)
10349 tree t = NULL_TREE;
10351 if (TREE_CODE (arg0) == INTEGER_CST)
10353 t = build_int_2 (~ TREE_INT_CST_LOW (arg0),
10354 ~ TREE_INT_CST_HIGH (arg0));
10355 TREE_TYPE (t) = type;
10356 force_fit_type (t, 0);
10357 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg0);
10358 TREE_CONSTANT_OVERFLOW (t) = TREE_CONSTANT_OVERFLOW (arg0);
10360 #ifdef ENABLE_CHECKING
10361 else
10362 abort ();
10363 #endif
10365 return t;
10368 /* Given CODE, a relational operator, the target type, TYPE and two
10369 constant operands OP0 and OP1, return the result of the
10370 relational operation. If the result is not a compile time
10371 constant, then return NULL_TREE. */
10373 static tree
10374 fold_relational_const (enum tree_code code, tree type, tree op0, tree op1)
10376 int result, invert;
10378 /* From here on, the only cases we handle are when the result is
10379 known to be a constant. */
10381 if (TREE_CODE (op0) == REAL_CST && TREE_CODE (op1) == REAL_CST)
10383 /* Handle the cases where either operand is a NaN. */
10384 if (REAL_VALUE_ISNAN (TREE_REAL_CST (op0))
10385 || REAL_VALUE_ISNAN (TREE_REAL_CST (op1)))
10387 switch (code)
10389 case EQ_EXPR:
10390 case ORDERED_EXPR:
10391 result = 0;
10392 break;
10394 case NE_EXPR:
10395 case UNORDERED_EXPR:
10396 case UNLT_EXPR:
10397 case UNLE_EXPR:
10398 case UNGT_EXPR:
10399 case UNGE_EXPR:
10400 case UNEQ_EXPR:
10401 result = 1;
10402 break;
10404 case LT_EXPR:
10405 case LE_EXPR:
10406 case GT_EXPR:
10407 case GE_EXPR:
10408 case LTGT_EXPR:
10409 if (flag_trapping_math)
10410 return NULL_TREE;
10411 result = 0;
10412 break;
10414 default:
10415 abort ();
10418 return constant_boolean_node (result, type);
10421 /* From here on we're sure there are no NaNs. */
10422 switch (code)
10424 case ORDERED_EXPR:
10425 return constant_boolean_node (true, type);
10427 case UNORDERED_EXPR:
10428 return constant_boolean_node (false, type);
10430 case UNLT_EXPR:
10431 code = LT_EXPR;
10432 break;
10433 case UNLE_EXPR:
10434 code = LE_EXPR;
10435 break;
10436 case UNGT_EXPR:
10437 code = GT_EXPR;
10438 break;
10439 case UNGE_EXPR:
10440 code = GE_EXPR;
10441 break;
10442 case UNEQ_EXPR:
10443 code = EQ_EXPR;
10444 break;
10445 case LTGT_EXPR:
10446 code = NE_EXPR;
10447 break;
10449 default:
10450 break;
10454 /* From here on we only handle LT, LE, GT, GE, EQ and NE.
10456 To compute GT, swap the arguments and do LT.
10457 To compute GE, do LT and invert the result.
10458 To compute LE, swap the arguments, do LT and invert the result.
10459 To compute NE, do EQ and invert the result.
10461 Therefore, the code below must handle only EQ and LT. */
10463 if (code == LE_EXPR || code == GT_EXPR)
10465 tree tem = op0;
10466 op0 = op1;
10467 op1 = tem;
10468 code = swap_tree_comparison (code);
10471 /* Note that it is safe to invert for real values here because we
10472 have already handled the one case that it matters. */
10474 invert = 0;
10475 if (code == NE_EXPR || code == GE_EXPR)
10477 invert = 1;
10478 code = invert_tree_comparison (code, false);
10481 /* Compute a result for LT or EQ if args permit;
10482 Otherwise return T. */
10483 if (TREE_CODE (op0) == INTEGER_CST && TREE_CODE (op1) == INTEGER_CST)
10485 if (code == EQ_EXPR)
10486 result = tree_int_cst_equal (op0, op1);
10487 else if (TYPE_UNSIGNED (TREE_TYPE (op0)))
10488 result = INT_CST_LT_UNSIGNED (op0, op1);
10489 else
10490 result = INT_CST_LT (op0, op1);
10493 else if (code == EQ_EXPR && !TREE_SIDE_EFFECTS (op0)
10494 && integer_zerop (op1) && tree_expr_nonzero_p (op0))
10495 result = 0;
10497 /* Two real constants can be compared explicitly. */
10498 else if (TREE_CODE (op0) == REAL_CST && TREE_CODE (op1) == REAL_CST)
10500 if (code == EQ_EXPR)
10501 result = REAL_VALUES_EQUAL (TREE_REAL_CST (op0),
10502 TREE_REAL_CST (op1));
10503 else
10504 result = REAL_VALUES_LESS (TREE_REAL_CST (op0),
10505 TREE_REAL_CST (op1));
10507 else
10508 return NULL_TREE;
10510 if (invert)
10511 result ^= 1;
10512 return constant_boolean_node (result, type);
10515 /* Build an expression for the address of T. Folds away INDIRECT_REF to
10516 avoid confusing the gimplify process. */
10518 tree
10519 build_fold_addr_expr_with_type (tree t, tree ptrtype)
10521 if (TREE_CODE (t) == INDIRECT_REF)
10523 t = TREE_OPERAND (t, 0);
10524 if (TREE_TYPE (t) != ptrtype)
10525 t = build1 (NOP_EXPR, ptrtype, t);
10527 else
10529 tree base = t;
10531 while (handled_component_p (base)
10532 || TREE_CODE (base) == REALPART_EXPR
10533 || TREE_CODE (base) == IMAGPART_EXPR)
10534 base = TREE_OPERAND (base, 0);
10535 if (DECL_P (base))
10536 TREE_ADDRESSABLE (base) = 1;
10538 t = build1 (ADDR_EXPR, ptrtype, t);
10541 return t;
10544 tree
10545 build_fold_addr_expr (tree t)
10547 return build_fold_addr_expr_with_type (t, build_pointer_type (TREE_TYPE (t)));
10550 /* Builds an expression for an indirection through T, simplifying some
10551 cases. */
10553 tree
10554 build_fold_indirect_ref (tree t)
10556 tree type = TREE_TYPE (TREE_TYPE (t));
10557 tree sub = t;
10558 tree subtype;
10560 STRIP_NOPS (sub);
10561 if (TREE_CODE (sub) == ADDR_EXPR)
10563 tree op = TREE_OPERAND (sub, 0);
10564 tree optype = TREE_TYPE (op);
10565 /* *&p => p */
10566 if (lang_hooks.types_compatible_p (type, optype))
10567 return op;
10568 /* *(foo *)&fooarray => fooarray[0] */
10569 else if (TREE_CODE (optype) == ARRAY_TYPE
10570 && lang_hooks.types_compatible_p (type, TREE_TYPE (optype)))
10571 return build4 (ARRAY_REF, type, op, size_zero_node, NULL_TREE, NULL_TREE);
10574 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
10575 subtype = TREE_TYPE (sub);
10576 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
10577 && lang_hooks.types_compatible_p (type, TREE_TYPE (TREE_TYPE (subtype))))
10579 sub = build_fold_indirect_ref (sub);
10580 return build4 (ARRAY_REF, type, sub, size_zero_node, NULL_TREE, NULL_TREE);
10583 return build1 (INDIRECT_REF, type, t);
10586 #include "gt-fold-const.h"