re PR tree-optimization/27039 (Unable to determine # of iterations for a simple loop)
[gcc.git] / gcc / fold-const.c
1 /* Fold a constant sub-tree into a single node for C-compiler
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
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.
11
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.
16
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, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
21
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. */
29
30 /* The entry points in this file are fold, size_int_wide, size_binop
31 and force_fit_type.
32
33 fold takes a tree as argument and returns a simplified tree.
34
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'.
38
39 size_int takes an integer value, and creates a tree constant
40 with type from `sizetype'.
41
42 force_fit_type takes a constant, an overflowable flag and prior
43 overflow indicators. It forces the value to fit the type and sets
44 TREE_OVERFLOW and TREE_CONSTANT_OVERFLOW as appropriate. */
45
46 #include "config.h"
47 #include "system.h"
48 #include "coretypes.h"
49 #include "tm.h"
50 #include "flags.h"
51 #include "tree.h"
52 #include "real.h"
53 #include "rtl.h"
54 #include "expr.h"
55 #include "tm_p.h"
56 #include "toplev.h"
57 #include "ggc.h"
58 #include "hashtab.h"
59 #include "langhooks.h"
60 #include "md5.h"
61
62 /* The following constants represent a bit based encoding of GCC's
63 comparison operators. This encoding simplifies transformations
64 on relational comparison operators, such as AND and OR. */
65 enum comparison_code {
66 COMPCODE_FALSE = 0,
67 COMPCODE_LT = 1,
68 COMPCODE_EQ = 2,
69 COMPCODE_LE = 3,
70 COMPCODE_GT = 4,
71 COMPCODE_LTGT = 5,
72 COMPCODE_GE = 6,
73 COMPCODE_ORD = 7,
74 COMPCODE_UNORD = 8,
75 COMPCODE_UNLT = 9,
76 COMPCODE_UNEQ = 10,
77 COMPCODE_UNLE = 11,
78 COMPCODE_UNGT = 12,
79 COMPCODE_NE = 13,
80 COMPCODE_UNGE = 14,
81 COMPCODE_TRUE = 15
82 };
83
84 static void encode (HOST_WIDE_INT *, unsigned HOST_WIDE_INT, HOST_WIDE_INT);
85 static void decode (HOST_WIDE_INT *, unsigned HOST_WIDE_INT *, HOST_WIDE_INT *);
86 static bool negate_mathfn_p (enum built_in_function);
87 static bool negate_expr_p (tree);
88 static tree negate_expr (tree);
89 static tree split_tree (tree, enum tree_code, tree *, tree *, tree *, int);
90 static tree associate_trees (tree, tree, enum tree_code, tree);
91 static tree const_binop (enum tree_code, tree, tree, int);
92 static enum comparison_code comparison_to_compcode (enum tree_code);
93 static enum tree_code compcode_to_comparison (enum comparison_code);
94 static tree combine_comparisons (enum tree_code, enum tree_code,
95 enum tree_code, tree, tree, tree);
96 static int truth_value_p (enum tree_code);
97 static int operand_equal_for_comparison_p (tree, tree, tree);
98 static int twoval_comparison_p (tree, tree *, tree *, int *);
99 static tree eval_subst (tree, tree, tree, tree, tree);
100 static tree pedantic_omit_one_operand (tree, tree, tree);
101 static tree distribute_bit_expr (enum tree_code, tree, tree, tree);
102 static tree make_bit_field_ref (tree, tree, int, int, int);
103 static tree optimize_bit_field_compare (enum tree_code, tree, tree, tree);
104 static tree decode_field_reference (tree, HOST_WIDE_INT *, HOST_WIDE_INT *,
105 enum machine_mode *, int *, int *,
106 tree *, tree *);
107 static int all_ones_mask_p (tree, int);
108 static tree sign_bit_p (tree, tree);
109 static int simple_operand_p (tree);
110 static tree range_binop (enum tree_code, tree, tree, int, tree, int);
111 static tree range_predecessor (tree);
112 static tree range_successor (tree);
113 static tree make_range (tree, int *, tree *, tree *);
114 static tree build_range_check (tree, tree, int, tree, tree);
115 static int merge_ranges (int *, tree *, tree *, int, tree, tree, int, tree,
116 tree);
117 static tree fold_range_test (enum tree_code, tree, tree, tree);
118 static tree fold_cond_expr_with_comparison (tree, tree, tree, tree);
119 static tree unextend (tree, int, int, tree);
120 static tree fold_truthop (enum tree_code, tree, tree, tree);
121 static tree optimize_minmax_comparison (enum tree_code, tree, tree, tree);
122 static tree extract_muldiv (tree, tree, enum tree_code, tree);
123 static tree extract_muldiv_1 (tree, tree, enum tree_code, tree);
124 static int multiple_of_p (tree, tree, tree);
125 static tree fold_binary_op_with_conditional_arg (enum tree_code, tree,
126 tree, tree,
127 tree, tree, int);
128 static bool fold_real_zero_addition_p (tree, tree, int);
129 static tree fold_mathfn_compare (enum built_in_function, enum tree_code,
130 tree, tree, tree);
131 static tree fold_inf_compare (enum tree_code, tree, tree, tree);
132 static tree fold_div_compare (enum tree_code, tree, tree, tree);
133 static bool reorder_operands_p (tree, tree);
134 static tree fold_negate_const (tree, tree);
135 static tree fold_not_const (tree, tree);
136 static tree fold_relational_const (enum tree_code, tree, tree, tree);
137 static int native_encode_expr (tree, unsigned char *, int);
138 static tree native_interpret_expr (tree, unsigned char *, int);
139
140
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.
145
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)
150 \f
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. */
155
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)
161
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. */
165
166 static void
167 encode (HOST_WIDE_INT *words, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
168 {
169 words[0] = LOWPART (low);
170 words[1] = HIGHPART (low);
171 words[2] = LOWPART (hi);
172 words[3] = HIGHPART (hi);
173 }
174
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. */
178
179 static void
180 decode (HOST_WIDE_INT *words, unsigned HOST_WIDE_INT *low,
181 HOST_WIDE_INT *hi)
182 {
183 *low = words[0] + words[1] * BASE;
184 *hi = words[2] + words[3] * BASE;
185 }
186 \f
187 /* T is an INT_CST node. OVERFLOWABLE indicates if we are interested
188 in overflow of the value, when >0 we are only interested in signed
189 overflow, for <0 we are interested in any overflow. OVERFLOWED
190 indicates whether overflow has already occurred. CONST_OVERFLOWED
191 indicates whether constant overflow has already occurred. We force
192 T's value to be within range of T's type (by setting to 0 or 1 all
193 the bits outside the type's range). We set TREE_OVERFLOWED if,
194 OVERFLOWED is nonzero,
195 or OVERFLOWABLE is >0 and signed overflow occurs
196 or OVERFLOWABLE is <0 and any overflow occurs
197 We set TREE_CONSTANT_OVERFLOWED if,
198 CONST_OVERFLOWED is nonzero
199 or we set TREE_OVERFLOWED.
200 We return either the original T, or a copy. */
201
202 tree
203 force_fit_type (tree t, int overflowable,
204 bool overflowed, bool overflowed_const)
205 {
206 unsigned HOST_WIDE_INT low;
207 HOST_WIDE_INT high;
208 unsigned int prec;
209 int sign_extended_type;
210
211 gcc_assert (TREE_CODE (t) == INTEGER_CST);
212
213 low = TREE_INT_CST_LOW (t);
214 high = TREE_INT_CST_HIGH (t);
215
216 if (POINTER_TYPE_P (TREE_TYPE (t))
217 || TREE_CODE (TREE_TYPE (t)) == OFFSET_TYPE)
218 prec = POINTER_SIZE;
219 else
220 prec = TYPE_PRECISION (TREE_TYPE (t));
221 /* Size types *are* sign extended. */
222 sign_extended_type = (!TYPE_UNSIGNED (TREE_TYPE (t))
223 || (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
224 && TYPE_IS_SIZETYPE (TREE_TYPE (t))));
225
226 /* First clear all bits that are beyond the type's precision. */
227
228 if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
229 ;
230 else if (prec > HOST_BITS_PER_WIDE_INT)
231 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
232 else
233 {
234 high = 0;
235 if (prec < HOST_BITS_PER_WIDE_INT)
236 low &= ~((HOST_WIDE_INT) (-1) << prec);
237 }
238
239 if (!sign_extended_type)
240 /* No sign extension */;
241 else if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
242 /* Correct width already. */;
243 else if (prec > HOST_BITS_PER_WIDE_INT)
244 {
245 /* Sign extend top half? */
246 if (high & ((unsigned HOST_WIDE_INT)1
247 << (prec - HOST_BITS_PER_WIDE_INT - 1)))
248 high |= (HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT);
249 }
250 else if (prec == HOST_BITS_PER_WIDE_INT)
251 {
252 if ((HOST_WIDE_INT)low < 0)
253 high = -1;
254 }
255 else
256 {
257 /* Sign extend bottom half? */
258 if (low & ((unsigned HOST_WIDE_INT)1 << (prec - 1)))
259 {
260 high = -1;
261 low |= (HOST_WIDE_INT)(-1) << prec;
262 }
263 }
264
265 /* If the value changed, return a new node. */
266 if (overflowed || overflowed_const
267 || low != TREE_INT_CST_LOW (t) || high != TREE_INT_CST_HIGH (t))
268 {
269 t = build_int_cst_wide (TREE_TYPE (t), low, high);
270
271 if (overflowed
272 || overflowable < 0
273 || (overflowable > 0 && sign_extended_type))
274 {
275 t = copy_node (t);
276 TREE_OVERFLOW (t) = 1;
277 TREE_CONSTANT_OVERFLOW (t) = 1;
278 }
279 else if (overflowed_const)
280 {
281 t = copy_node (t);
282 TREE_CONSTANT_OVERFLOW (t) = 1;
283 }
284 }
285
286 return t;
287 }
288 \f
289 /* Add two doubleword integers with doubleword result.
290 Each argument is given as two `HOST_WIDE_INT' pieces.
291 One argument is L1 and H1; the other, L2 and H2.
292 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
293
294 int
295 add_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
296 unsigned HOST_WIDE_INT l2, HOST_WIDE_INT h2,
297 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
298 {
299 unsigned HOST_WIDE_INT l;
300 HOST_WIDE_INT h;
301
302 l = l1 + l2;
303 h = h1 + h2 + (l < l1);
304
305 *lv = l;
306 *hv = h;
307 return OVERFLOW_SUM_SIGN (h1, h2, h);
308 }
309
310 /* Negate a doubleword integer with doubleword result.
311 Return nonzero if the operation overflows, assuming it's signed.
312 The argument is given as two `HOST_WIDE_INT' pieces in L1 and H1.
313 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
314
315 int
316 neg_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
317 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
318 {
319 if (l1 == 0)
320 {
321 *lv = 0;
322 *hv = - h1;
323 return (*hv & h1) < 0;
324 }
325 else
326 {
327 *lv = -l1;
328 *hv = ~h1;
329 return 0;
330 }
331 }
332 \f
333 /* Multiply two doubleword integers with doubleword result.
334 Return nonzero if the operation overflows, assuming it's signed.
335 Each argument is given as two `HOST_WIDE_INT' pieces.
336 One argument is L1 and H1; the other, L2 and H2.
337 The value is stored as two `HOST_WIDE_INT' pieces in *LV and *HV. */
338
339 int
340 mul_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
341 unsigned HOST_WIDE_INT l2, HOST_WIDE_INT h2,
342 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
343 {
344 HOST_WIDE_INT arg1[4];
345 HOST_WIDE_INT arg2[4];
346 HOST_WIDE_INT prod[4 * 2];
347 unsigned HOST_WIDE_INT carry;
348 int i, j, k;
349 unsigned HOST_WIDE_INT toplow, neglow;
350 HOST_WIDE_INT tophigh, neghigh;
351
352 encode (arg1, l1, h1);
353 encode (arg2, l2, h2);
354
355 memset (prod, 0, sizeof prod);
356
357 for (i = 0; i < 4; i++)
358 {
359 carry = 0;
360 for (j = 0; j < 4; j++)
361 {
362 k = i + j;
363 /* This product is <= 0xFFFE0001, the sum <= 0xFFFF0000. */
364 carry += arg1[i] * arg2[j];
365 /* Since prod[p] < 0xFFFF, this sum <= 0xFFFFFFFF. */
366 carry += prod[k];
367 prod[k] = LOWPART (carry);
368 carry = HIGHPART (carry);
369 }
370 prod[i + 4] = carry;
371 }
372
373 decode (prod, lv, hv); /* This ignores prod[4] through prod[4*2-1] */
374
375 /* Check for overflow by calculating the top half of the answer in full;
376 it should agree with the low half's sign bit. */
377 decode (prod + 4, &toplow, &tophigh);
378 if (h1 < 0)
379 {
380 neg_double (l2, h2, &neglow, &neghigh);
381 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
382 }
383 if (h2 < 0)
384 {
385 neg_double (l1, h1, &neglow, &neghigh);
386 add_double (neglow, neghigh, toplow, tophigh, &toplow, &tophigh);
387 }
388 return (*hv < 0 ? ~(toplow & tophigh) : toplow | tophigh) != 0;
389 }
390 \f
391 /* Shift the doubleword integer in L1, H1 left by COUNT places
392 keeping only PREC bits of result.
393 Shift right if COUNT is negative.
394 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
395 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
396
397 void
398 lshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
399 HOST_WIDE_INT count, unsigned int prec,
400 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv, int arith)
401 {
402 unsigned HOST_WIDE_INT signmask;
403
404 if (count < 0)
405 {
406 rshift_double (l1, h1, -count, prec, lv, hv, arith);
407 return;
408 }
409
410 if (SHIFT_COUNT_TRUNCATED)
411 count %= prec;
412
413 if (count >= 2 * HOST_BITS_PER_WIDE_INT)
414 {
415 /* Shifting by the host word size is undefined according to the
416 ANSI standard, so we must handle this as a special case. */
417 *hv = 0;
418 *lv = 0;
419 }
420 else if (count >= HOST_BITS_PER_WIDE_INT)
421 {
422 *hv = l1 << (count - HOST_BITS_PER_WIDE_INT);
423 *lv = 0;
424 }
425 else
426 {
427 *hv = (((unsigned HOST_WIDE_INT) h1 << count)
428 | (l1 >> (HOST_BITS_PER_WIDE_INT - count - 1) >> 1));
429 *lv = l1 << count;
430 }
431
432 /* Sign extend all bits that are beyond the precision. */
433
434 signmask = -((prec > HOST_BITS_PER_WIDE_INT
435 ? ((unsigned HOST_WIDE_INT) *hv
436 >> (prec - HOST_BITS_PER_WIDE_INT - 1))
437 : (*lv >> (prec - 1))) & 1);
438
439 if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
440 ;
441 else if (prec >= HOST_BITS_PER_WIDE_INT)
442 {
443 *hv &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
444 *hv |= signmask << (prec - HOST_BITS_PER_WIDE_INT);
445 }
446 else
447 {
448 *hv = signmask;
449 *lv &= ~((unsigned HOST_WIDE_INT) (-1) << prec);
450 *lv |= signmask << prec;
451 }
452 }
453
454 /* Shift the doubleword integer in L1, H1 right by COUNT places
455 keeping only PREC bits of result. COUNT must be positive.
456 ARITH nonzero specifies arithmetic shifting; otherwise use logical shift.
457 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
458
459 void
460 rshift_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
461 HOST_WIDE_INT count, unsigned int prec,
462 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv,
463 int arith)
464 {
465 unsigned HOST_WIDE_INT signmask;
466
467 signmask = (arith
468 ? -((unsigned HOST_WIDE_INT) h1 >> (HOST_BITS_PER_WIDE_INT - 1))
469 : 0);
470
471 if (SHIFT_COUNT_TRUNCATED)
472 count %= prec;
473
474 if (count >= 2 * HOST_BITS_PER_WIDE_INT)
475 {
476 /* Shifting by the host word size is undefined according to the
477 ANSI standard, so we must handle this as a special case. */
478 *hv = 0;
479 *lv = 0;
480 }
481 else if (count >= HOST_BITS_PER_WIDE_INT)
482 {
483 *hv = 0;
484 *lv = (unsigned HOST_WIDE_INT) h1 >> (count - HOST_BITS_PER_WIDE_INT);
485 }
486 else
487 {
488 *hv = (unsigned HOST_WIDE_INT) h1 >> count;
489 *lv = ((l1 >> count)
490 | ((unsigned HOST_WIDE_INT) h1 << (HOST_BITS_PER_WIDE_INT - count - 1) << 1));
491 }
492
493 /* Zero / sign extend all bits that are beyond the precision. */
494
495 if (count >= (HOST_WIDE_INT)prec)
496 {
497 *hv = signmask;
498 *lv = signmask;
499 }
500 else if ((prec - count) >= 2 * HOST_BITS_PER_WIDE_INT)
501 ;
502 else if ((prec - count) >= HOST_BITS_PER_WIDE_INT)
503 {
504 *hv &= ~((HOST_WIDE_INT) (-1) << (prec - count - HOST_BITS_PER_WIDE_INT));
505 *hv |= signmask << (prec - count - HOST_BITS_PER_WIDE_INT);
506 }
507 else
508 {
509 *hv = signmask;
510 *lv &= ~((unsigned HOST_WIDE_INT) (-1) << (prec - count));
511 *lv |= signmask << (prec - count);
512 }
513 }
514 \f
515 /* Rotate the doubleword integer in L1, H1 left by COUNT places
516 keeping only PREC bits of result.
517 Rotate right if COUNT is negative.
518 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
519
520 void
521 lrotate_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
522 HOST_WIDE_INT count, unsigned int prec,
523 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
524 {
525 unsigned HOST_WIDE_INT s1l, s2l;
526 HOST_WIDE_INT s1h, s2h;
527
528 count %= prec;
529 if (count < 0)
530 count += prec;
531
532 lshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
533 rshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
534 *lv = s1l | s2l;
535 *hv = s1h | s2h;
536 }
537
538 /* Rotate the doubleword integer in L1, H1 left by COUNT places
539 keeping only PREC bits of result. COUNT must be positive.
540 Store the value as two `HOST_WIDE_INT' pieces in *LV and *HV. */
541
542 void
543 rrotate_double (unsigned HOST_WIDE_INT l1, HOST_WIDE_INT h1,
544 HOST_WIDE_INT count, unsigned int prec,
545 unsigned HOST_WIDE_INT *lv, HOST_WIDE_INT *hv)
546 {
547 unsigned HOST_WIDE_INT s1l, s2l;
548 HOST_WIDE_INT s1h, s2h;
549
550 count %= prec;
551 if (count < 0)
552 count += prec;
553
554 rshift_double (l1, h1, count, prec, &s1l, &s1h, 0);
555 lshift_double (l1, h1, prec - count, prec, &s2l, &s2h, 0);
556 *lv = s1l | s2l;
557 *hv = s1h | s2h;
558 }
559 \f
560 /* Divide doubleword integer LNUM, HNUM by doubleword integer LDEN, HDEN
561 for a quotient (stored in *LQUO, *HQUO) and remainder (in *LREM, *HREM).
562 CODE is a tree code for a kind of division, one of
563 TRUNC_DIV_EXPR, FLOOR_DIV_EXPR, CEIL_DIV_EXPR, ROUND_DIV_EXPR
564 or EXACT_DIV_EXPR
565 It controls how the quotient is rounded to an integer.
566 Return nonzero if the operation overflows.
567 UNS nonzero says do unsigned division. */
568
569 int
570 div_and_round_double (enum tree_code code, int uns,
571 unsigned HOST_WIDE_INT lnum_orig, /* num == numerator == dividend */
572 HOST_WIDE_INT hnum_orig,
573 unsigned HOST_WIDE_INT lden_orig, /* den == denominator == divisor */
574 HOST_WIDE_INT hden_orig,
575 unsigned HOST_WIDE_INT *lquo,
576 HOST_WIDE_INT *hquo, unsigned HOST_WIDE_INT *lrem,
577 HOST_WIDE_INT *hrem)
578 {
579 int quo_neg = 0;
580 HOST_WIDE_INT num[4 + 1]; /* extra element for scaling. */
581 HOST_WIDE_INT den[4], quo[4];
582 int i, j;
583 unsigned HOST_WIDE_INT work;
584 unsigned HOST_WIDE_INT carry = 0;
585 unsigned HOST_WIDE_INT lnum = lnum_orig;
586 HOST_WIDE_INT hnum = hnum_orig;
587 unsigned HOST_WIDE_INT lden = lden_orig;
588 HOST_WIDE_INT hden = hden_orig;
589 int overflow = 0;
590
591 if (hden == 0 && lden == 0)
592 overflow = 1, lden = 1;
593
594 /* Calculate quotient sign and convert operands to unsigned. */
595 if (!uns)
596 {
597 if (hnum < 0)
598 {
599 quo_neg = ~ quo_neg;
600 /* (minimum integer) / (-1) is the only overflow case. */
601 if (neg_double (lnum, hnum, &lnum, &hnum)
602 && ((HOST_WIDE_INT) lden & hden) == -1)
603 overflow = 1;
604 }
605 if (hden < 0)
606 {
607 quo_neg = ~ quo_neg;
608 neg_double (lden, hden, &lden, &hden);
609 }
610 }
611
612 if (hnum == 0 && hden == 0)
613 { /* single precision */
614 *hquo = *hrem = 0;
615 /* This unsigned division rounds toward zero. */
616 *lquo = lnum / lden;
617 goto finish_up;
618 }
619
620 if (hnum == 0)
621 { /* trivial case: dividend < divisor */
622 /* hden != 0 already checked. */
623 *hquo = *lquo = 0;
624 *hrem = hnum;
625 *lrem = lnum;
626 goto finish_up;
627 }
628
629 memset (quo, 0, sizeof quo);
630
631 memset (num, 0, sizeof num); /* to zero 9th element */
632 memset (den, 0, sizeof den);
633
634 encode (num, lnum, hnum);
635 encode (den, lden, hden);
636
637 /* Special code for when the divisor < BASE. */
638 if (hden == 0 && lden < (unsigned HOST_WIDE_INT) BASE)
639 {
640 /* hnum != 0 already checked. */
641 for (i = 4 - 1; i >= 0; i--)
642 {
643 work = num[i] + carry * BASE;
644 quo[i] = work / lden;
645 carry = work % lden;
646 }
647 }
648 else
649 {
650 /* Full double precision division,
651 with thanks to Don Knuth's "Seminumerical Algorithms". */
652 int num_hi_sig, den_hi_sig;
653 unsigned HOST_WIDE_INT quo_est, scale;
654
655 /* Find the highest nonzero divisor digit. */
656 for (i = 4 - 1;; i--)
657 if (den[i] != 0)
658 {
659 den_hi_sig = i;
660 break;
661 }
662
663 /* Insure that the first digit of the divisor is at least BASE/2.
664 This is required by the quotient digit estimation algorithm. */
665
666 scale = BASE / (den[den_hi_sig] + 1);
667 if (scale > 1)
668 { /* scale divisor and dividend */
669 carry = 0;
670 for (i = 0; i <= 4 - 1; i++)
671 {
672 work = (num[i] * scale) + carry;
673 num[i] = LOWPART (work);
674 carry = HIGHPART (work);
675 }
676
677 num[4] = carry;
678 carry = 0;
679 for (i = 0; i <= 4 - 1; i++)
680 {
681 work = (den[i] * scale) + carry;
682 den[i] = LOWPART (work);
683 carry = HIGHPART (work);
684 if (den[i] != 0) den_hi_sig = i;
685 }
686 }
687
688 num_hi_sig = 4;
689
690 /* Main loop */
691 for (i = num_hi_sig - den_hi_sig - 1; i >= 0; i--)
692 {
693 /* Guess the next quotient digit, quo_est, by dividing the first
694 two remaining dividend digits by the high order quotient digit.
695 quo_est is never low and is at most 2 high. */
696 unsigned HOST_WIDE_INT tmp;
697
698 num_hi_sig = i + den_hi_sig + 1;
699 work = num[num_hi_sig] * BASE + num[num_hi_sig - 1];
700 if (num[num_hi_sig] != den[den_hi_sig])
701 quo_est = work / den[den_hi_sig];
702 else
703 quo_est = BASE - 1;
704
705 /* Refine quo_est so it's usually correct, and at most one high. */
706 tmp = work - quo_est * den[den_hi_sig];
707 if (tmp < BASE
708 && (den[den_hi_sig - 1] * quo_est
709 > (tmp * BASE + num[num_hi_sig - 2])))
710 quo_est--;
711
712 /* Try QUO_EST as the quotient digit, by multiplying the
713 divisor by QUO_EST and subtracting from the remaining dividend.
714 Keep in mind that QUO_EST is the I - 1st digit. */
715
716 carry = 0;
717 for (j = 0; j <= den_hi_sig; j++)
718 {
719 work = quo_est * den[j] + carry;
720 carry = HIGHPART (work);
721 work = num[i + j] - LOWPART (work);
722 num[i + j] = LOWPART (work);
723 carry += HIGHPART (work) != 0;
724 }
725
726 /* If quo_est was high by one, then num[i] went negative and
727 we need to correct things. */
728 if (num[num_hi_sig] < (HOST_WIDE_INT) carry)
729 {
730 quo_est--;
731 carry = 0; /* add divisor back in */
732 for (j = 0; j <= den_hi_sig; j++)
733 {
734 work = num[i + j] + den[j] + carry;
735 carry = HIGHPART (work);
736 num[i + j] = LOWPART (work);
737 }
738
739 num [num_hi_sig] += carry;
740 }
741
742 /* Store the quotient digit. */
743 quo[i] = quo_est;
744 }
745 }
746
747 decode (quo, lquo, hquo);
748
749 finish_up:
750 /* If result is negative, make it so. */
751 if (quo_neg)
752 neg_double (*lquo, *hquo, lquo, hquo);
753
754 /* Compute trial remainder: rem = num - (quo * den) */
755 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
756 neg_double (*lrem, *hrem, lrem, hrem);
757 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
758
759 switch (code)
760 {
761 case TRUNC_DIV_EXPR:
762 case TRUNC_MOD_EXPR: /* round toward zero */
763 case EXACT_DIV_EXPR: /* for this one, it shouldn't matter */
764 return overflow;
765
766 case FLOOR_DIV_EXPR:
767 case FLOOR_MOD_EXPR: /* round toward negative infinity */
768 if (quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio < 0 && rem != 0 */
769 {
770 /* quo = quo - 1; */
771 add_double (*lquo, *hquo, (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1,
772 lquo, hquo);
773 }
774 else
775 return overflow;
776 break;
777
778 case CEIL_DIV_EXPR:
779 case CEIL_MOD_EXPR: /* round toward positive infinity */
780 if (!quo_neg && (*lrem != 0 || *hrem != 0)) /* ratio > 0 && rem != 0 */
781 {
782 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
783 lquo, hquo);
784 }
785 else
786 return overflow;
787 break;
788
789 case ROUND_DIV_EXPR:
790 case ROUND_MOD_EXPR: /* round to closest integer */
791 {
792 unsigned HOST_WIDE_INT labs_rem = *lrem;
793 HOST_WIDE_INT habs_rem = *hrem;
794 unsigned HOST_WIDE_INT labs_den = lden, ltwice;
795 HOST_WIDE_INT habs_den = hden, htwice;
796
797 /* Get absolute values. */
798 if (*hrem < 0)
799 neg_double (*lrem, *hrem, &labs_rem, &habs_rem);
800 if (hden < 0)
801 neg_double (lden, hden, &labs_den, &habs_den);
802
803 /* If (2 * abs (lrem) >= abs (lden)) */
804 mul_double ((HOST_WIDE_INT) 2, (HOST_WIDE_INT) 0,
805 labs_rem, habs_rem, &ltwice, &htwice);
806
807 if (((unsigned HOST_WIDE_INT) habs_den
808 < (unsigned HOST_WIDE_INT) htwice)
809 || (((unsigned HOST_WIDE_INT) habs_den
810 == (unsigned HOST_WIDE_INT) htwice)
811 && (labs_den < ltwice)))
812 {
813 if (*hquo < 0)
814 /* quo = quo - 1; */
815 add_double (*lquo, *hquo,
816 (HOST_WIDE_INT) -1, (HOST_WIDE_INT) -1, lquo, hquo);
817 else
818 /* quo = quo + 1; */
819 add_double (*lquo, *hquo, (HOST_WIDE_INT) 1, (HOST_WIDE_INT) 0,
820 lquo, hquo);
821 }
822 else
823 return overflow;
824 }
825 break;
826
827 default:
828 gcc_unreachable ();
829 }
830
831 /* Compute true remainder: rem = num - (quo * den) */
832 mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem);
833 neg_double (*lrem, *hrem, lrem, hrem);
834 add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem);
835 return overflow;
836 }
837
838 /* If ARG2 divides ARG1 with zero remainder, carries out the division
839 of type CODE and returns the quotient.
840 Otherwise returns NULL_TREE. */
841
842 static tree
843 div_if_zero_remainder (enum tree_code code, tree arg1, tree arg2)
844 {
845 unsigned HOST_WIDE_INT int1l, int2l;
846 HOST_WIDE_INT int1h, int2h;
847 unsigned HOST_WIDE_INT quol, reml;
848 HOST_WIDE_INT quoh, remh;
849 tree type = TREE_TYPE (arg1);
850 int uns = TYPE_UNSIGNED (type);
851
852 int1l = TREE_INT_CST_LOW (arg1);
853 int1h = TREE_INT_CST_HIGH (arg1);
854 int2l = TREE_INT_CST_LOW (arg2);
855 int2h = TREE_INT_CST_HIGH (arg2);
856
857 div_and_round_double (code, uns, int1l, int1h, int2l, int2h,
858 &quol, &quoh, &reml, &remh);
859 if (remh != 0 || reml != 0)
860 return NULL_TREE;
861
862 return build_int_cst_wide (type, quol, quoh);
863 }
864 \f
865 /* Return true if the built-in mathematical function specified by CODE
866 is odd, i.e. -f(x) == f(-x). */
867
868 static bool
869 negate_mathfn_p (enum built_in_function code)
870 {
871 switch (code)
872 {
873 CASE_FLT_FN (BUILT_IN_ASIN):
874 CASE_FLT_FN (BUILT_IN_ASINH):
875 CASE_FLT_FN (BUILT_IN_ATAN):
876 CASE_FLT_FN (BUILT_IN_ATANH):
877 CASE_FLT_FN (BUILT_IN_CBRT):
878 CASE_FLT_FN (BUILT_IN_SIN):
879 CASE_FLT_FN (BUILT_IN_SINH):
880 CASE_FLT_FN (BUILT_IN_TAN):
881 CASE_FLT_FN (BUILT_IN_TANH):
882 return true;
883
884 default:
885 break;
886 }
887 return false;
888 }
889
890 /* Check whether we may negate an integer constant T without causing
891 overflow. */
892
893 bool
894 may_negate_without_overflow_p (tree t)
895 {
896 unsigned HOST_WIDE_INT val;
897 unsigned int prec;
898 tree type;
899
900 gcc_assert (TREE_CODE (t) == INTEGER_CST);
901
902 type = TREE_TYPE (t);
903 if (TYPE_UNSIGNED (type))
904 return false;
905
906 prec = TYPE_PRECISION (type);
907 if (prec > HOST_BITS_PER_WIDE_INT)
908 {
909 if (TREE_INT_CST_LOW (t) != 0)
910 return true;
911 prec -= HOST_BITS_PER_WIDE_INT;
912 val = TREE_INT_CST_HIGH (t);
913 }
914 else
915 val = TREE_INT_CST_LOW (t);
916 if (prec < HOST_BITS_PER_WIDE_INT)
917 val &= ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
918 return val != ((unsigned HOST_WIDE_INT) 1 << (prec - 1));
919 }
920
921 /* Determine whether an expression T can be cheaply negated using
922 the function negate_expr. */
923
924 static bool
925 negate_expr_p (tree t)
926 {
927 tree type;
928
929 if (t == 0)
930 return false;
931
932 type = TREE_TYPE (t);
933
934 STRIP_SIGN_NOPS (t);
935 switch (TREE_CODE (t))
936 {
937 case INTEGER_CST:
938 if (TYPE_UNSIGNED (type) || ! flag_trapv)
939 return true;
940
941 /* Check that -CST will not overflow type. */
942 return may_negate_without_overflow_p (t);
943 case BIT_NOT_EXPR:
944 return INTEGRAL_TYPE_P (type);
945
946 case REAL_CST:
947 case NEGATE_EXPR:
948 return true;
949
950 case COMPLEX_CST:
951 return negate_expr_p (TREE_REALPART (t))
952 && negate_expr_p (TREE_IMAGPART (t));
953
954 case PLUS_EXPR:
955 if (FLOAT_TYPE_P (type) && !flag_unsafe_math_optimizations)
956 return false;
957 /* -(A + B) -> (-B) - A. */
958 if (negate_expr_p (TREE_OPERAND (t, 1))
959 && reorder_operands_p (TREE_OPERAND (t, 0),
960 TREE_OPERAND (t, 1)))
961 return true;
962 /* -(A + B) -> (-A) - B. */
963 return negate_expr_p (TREE_OPERAND (t, 0));
964
965 case MINUS_EXPR:
966 /* We can't turn -(A-B) into B-A when we honor signed zeros. */
967 return (! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
968 && reorder_operands_p (TREE_OPERAND (t, 0),
969 TREE_OPERAND (t, 1));
970
971 case MULT_EXPR:
972 if (TYPE_UNSIGNED (TREE_TYPE (t)))
973 break;
974
975 /* Fall through. */
976
977 case RDIV_EXPR:
978 if (! HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (TREE_TYPE (t))))
979 return negate_expr_p (TREE_OPERAND (t, 1))
980 || negate_expr_p (TREE_OPERAND (t, 0));
981 break;
982
983 case TRUNC_DIV_EXPR:
984 case ROUND_DIV_EXPR:
985 case FLOOR_DIV_EXPR:
986 case CEIL_DIV_EXPR:
987 case EXACT_DIV_EXPR:
988 if (TYPE_UNSIGNED (TREE_TYPE (t)) || flag_wrapv)
989 break;
990 return negate_expr_p (TREE_OPERAND (t, 1))
991 || negate_expr_p (TREE_OPERAND (t, 0));
992
993 case NOP_EXPR:
994 /* Negate -((double)float) as (double)(-float). */
995 if (TREE_CODE (type) == REAL_TYPE)
996 {
997 tree tem = strip_float_extensions (t);
998 if (tem != t)
999 return negate_expr_p (tem);
1000 }
1001 break;
1002
1003 case CALL_EXPR:
1004 /* Negate -f(x) as f(-x). */
1005 if (negate_mathfn_p (builtin_mathfn_code (t)))
1006 return negate_expr_p (TREE_VALUE (TREE_OPERAND (t, 1)));
1007 break;
1008
1009 case RSHIFT_EXPR:
1010 /* Optimize -((int)x >> 31) into (unsigned)x >> 31. */
1011 if (TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST)
1012 {
1013 tree op1 = TREE_OPERAND (t, 1);
1014 if (TREE_INT_CST_HIGH (op1) == 0
1015 && (unsigned HOST_WIDE_INT) (TYPE_PRECISION (type) - 1)
1016 == TREE_INT_CST_LOW (op1))
1017 return true;
1018 }
1019 break;
1020
1021 default:
1022 break;
1023 }
1024 return false;
1025 }
1026
1027 /* Given T, an expression, return the negation of T. Allow for T to be
1028 null, in which case return null. */
1029
1030 static tree
1031 negate_expr (tree t)
1032 {
1033 tree type;
1034 tree tem;
1035
1036 if (t == 0)
1037 return 0;
1038
1039 type = TREE_TYPE (t);
1040 STRIP_SIGN_NOPS (t);
1041
1042 switch (TREE_CODE (t))
1043 {
1044 /* Convert - (~A) to A + 1. */
1045 case BIT_NOT_EXPR:
1046 if (INTEGRAL_TYPE_P (type))
1047 return fold_build2 (PLUS_EXPR, type, TREE_OPERAND (t, 0),
1048 build_int_cst (type, 1));
1049 break;
1050
1051 case INTEGER_CST:
1052 tem = fold_negate_const (t, type);
1053 if (! TREE_OVERFLOW (tem)
1054 || TYPE_UNSIGNED (type)
1055 || ! flag_trapv)
1056 return tem;
1057 break;
1058
1059 case REAL_CST:
1060 tem = fold_negate_const (t, type);
1061 /* Two's complement FP formats, such as c4x, may overflow. */
1062 if (! TREE_OVERFLOW (tem) || ! flag_trapping_math)
1063 return fold_convert (type, tem);
1064 break;
1065
1066 case COMPLEX_CST:
1067 {
1068 tree rpart = negate_expr (TREE_REALPART (t));
1069 tree ipart = negate_expr (TREE_IMAGPART (t));
1070
1071 if ((TREE_CODE (rpart) == REAL_CST
1072 && TREE_CODE (ipart) == REAL_CST)
1073 || (TREE_CODE (rpart) == INTEGER_CST
1074 && TREE_CODE (ipart) == INTEGER_CST))
1075 return build_complex (type, rpart, ipart);
1076 }
1077 break;
1078
1079 case NEGATE_EXPR:
1080 return fold_convert (type, TREE_OPERAND (t, 0));
1081
1082 case PLUS_EXPR:
1083 if (! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
1084 {
1085 /* -(A + B) -> (-B) - A. */
1086 if (negate_expr_p (TREE_OPERAND (t, 1))
1087 && reorder_operands_p (TREE_OPERAND (t, 0),
1088 TREE_OPERAND (t, 1)))
1089 {
1090 tem = negate_expr (TREE_OPERAND (t, 1));
1091 tem = fold_build2 (MINUS_EXPR, TREE_TYPE (t),
1092 tem, TREE_OPERAND (t, 0));
1093 return fold_convert (type, tem);
1094 }
1095
1096 /* -(A + B) -> (-A) - B. */
1097 if (negate_expr_p (TREE_OPERAND (t, 0)))
1098 {
1099 tem = negate_expr (TREE_OPERAND (t, 0));
1100 tem = fold_build2 (MINUS_EXPR, TREE_TYPE (t),
1101 tem, TREE_OPERAND (t, 1));
1102 return fold_convert (type, tem);
1103 }
1104 }
1105 break;
1106
1107 case MINUS_EXPR:
1108 /* - (A - B) -> B - A */
1109 if ((! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
1110 && reorder_operands_p (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1)))
1111 return fold_convert (type,
1112 fold_build2 (MINUS_EXPR, TREE_TYPE (t),
1113 TREE_OPERAND (t, 1),
1114 TREE_OPERAND (t, 0)));
1115 break;
1116
1117 case MULT_EXPR:
1118 if (TYPE_UNSIGNED (TREE_TYPE (t)))
1119 break;
1120
1121 /* Fall through. */
1122
1123 case RDIV_EXPR:
1124 if (! HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (TREE_TYPE (t))))
1125 {
1126 tem = TREE_OPERAND (t, 1);
1127 if (negate_expr_p (tem))
1128 return fold_convert (type,
1129 fold_build2 (TREE_CODE (t), TREE_TYPE (t),
1130 TREE_OPERAND (t, 0),
1131 negate_expr (tem)));
1132 tem = TREE_OPERAND (t, 0);
1133 if (negate_expr_p (tem))
1134 return fold_convert (type,
1135 fold_build2 (TREE_CODE (t), TREE_TYPE (t),
1136 negate_expr (tem),
1137 TREE_OPERAND (t, 1)));
1138 }
1139 break;
1140
1141 case TRUNC_DIV_EXPR:
1142 case ROUND_DIV_EXPR:
1143 case FLOOR_DIV_EXPR:
1144 case CEIL_DIV_EXPR:
1145 case EXACT_DIV_EXPR:
1146 if (!TYPE_UNSIGNED (TREE_TYPE (t)) && !flag_wrapv)
1147 {
1148 tem = TREE_OPERAND (t, 1);
1149 if (negate_expr_p (tem))
1150 return fold_convert (type,
1151 fold_build2 (TREE_CODE (t), TREE_TYPE (t),
1152 TREE_OPERAND (t, 0),
1153 negate_expr (tem)));
1154 tem = TREE_OPERAND (t, 0);
1155 if (negate_expr_p (tem))
1156 return fold_convert (type,
1157 fold_build2 (TREE_CODE (t), TREE_TYPE (t),
1158 negate_expr (tem),
1159 TREE_OPERAND (t, 1)));
1160 }
1161 break;
1162
1163 case NOP_EXPR:
1164 /* Convert -((double)float) into (double)(-float). */
1165 if (TREE_CODE (type) == REAL_TYPE)
1166 {
1167 tem = strip_float_extensions (t);
1168 if (tem != t && negate_expr_p (tem))
1169 return fold_convert (type, negate_expr (tem));
1170 }
1171 break;
1172
1173 case CALL_EXPR:
1174 /* Negate -f(x) as f(-x). */
1175 if (negate_mathfn_p (builtin_mathfn_code (t))
1176 && negate_expr_p (TREE_VALUE (TREE_OPERAND (t, 1))))
1177 {
1178 tree fndecl, arg, arglist;
1179
1180 fndecl = get_callee_fndecl (t);
1181 arg = negate_expr (TREE_VALUE (TREE_OPERAND (t, 1)));
1182 arglist = build_tree_list (NULL_TREE, arg);
1183 return build_function_call_expr (fndecl, arglist);
1184 }
1185 break;
1186
1187 case RSHIFT_EXPR:
1188 /* Optimize -((int)x >> 31) into (unsigned)x >> 31. */
1189 if (TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST)
1190 {
1191 tree op1 = TREE_OPERAND (t, 1);
1192 if (TREE_INT_CST_HIGH (op1) == 0
1193 && (unsigned HOST_WIDE_INT) (TYPE_PRECISION (type) - 1)
1194 == TREE_INT_CST_LOW (op1))
1195 {
1196 tree ntype = TYPE_UNSIGNED (type)
1197 ? lang_hooks.types.signed_type (type)
1198 : lang_hooks.types.unsigned_type (type);
1199 tree temp = fold_convert (ntype, TREE_OPERAND (t, 0));
1200 temp = fold_build2 (RSHIFT_EXPR, ntype, temp, op1);
1201 return fold_convert (type, temp);
1202 }
1203 }
1204 break;
1205
1206 default:
1207 break;
1208 }
1209
1210 tem = fold_build1 (NEGATE_EXPR, TREE_TYPE (t), t);
1211 return fold_convert (type, tem);
1212 }
1213 \f
1214 /* Split a tree IN into a constant, literal and variable parts that could be
1215 combined with CODE to make IN. "constant" means an expression with
1216 TREE_CONSTANT but that isn't an actual constant. CODE must be a
1217 commutative arithmetic operation. Store the constant part into *CONP,
1218 the literal in *LITP and return the variable part. If a part isn't
1219 present, set it to null. If the tree does not decompose in this way,
1220 return the entire tree as the variable part and the other parts as null.
1221
1222 If CODE is PLUS_EXPR we also split trees that use MINUS_EXPR. In that
1223 case, we negate an operand that was subtracted. Except if it is a
1224 literal for which we use *MINUS_LITP instead.
1225
1226 If NEGATE_P is true, we are negating all of IN, again except a literal
1227 for which we use *MINUS_LITP instead.
1228
1229 If IN is itself a literal or constant, return it as appropriate.
1230
1231 Note that we do not guarantee that any of the three values will be the
1232 same type as IN, but they will have the same signedness and mode. */
1233
1234 static tree
1235 split_tree (tree in, enum tree_code code, tree *conp, tree *litp,
1236 tree *minus_litp, int negate_p)
1237 {
1238 tree var = 0;
1239
1240 *conp = 0;
1241 *litp = 0;
1242 *minus_litp = 0;
1243
1244 /* Strip any conversions that don't change the machine mode or signedness. */
1245 STRIP_SIGN_NOPS (in);
1246
1247 if (TREE_CODE (in) == INTEGER_CST || TREE_CODE (in) == REAL_CST)
1248 *litp = in;
1249 else if (TREE_CODE (in) == code
1250 || (! FLOAT_TYPE_P (TREE_TYPE (in))
1251 /* We can associate addition and subtraction together (even
1252 though the C standard doesn't say so) for integers because
1253 the value is not affected. For reals, the value might be
1254 affected, so we can't. */
1255 && ((code == PLUS_EXPR && TREE_CODE (in) == MINUS_EXPR)
1256 || (code == MINUS_EXPR && TREE_CODE (in) == PLUS_EXPR))))
1257 {
1258 tree op0 = TREE_OPERAND (in, 0);
1259 tree op1 = TREE_OPERAND (in, 1);
1260 int neg1_p = TREE_CODE (in) == MINUS_EXPR;
1261 int neg_litp_p = 0, neg_conp_p = 0, neg_var_p = 0;
1262
1263 /* First see if either of the operands is a literal, then a constant. */
1264 if (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST)
1265 *litp = op0, op0 = 0;
1266 else if (TREE_CODE (op1) == INTEGER_CST || TREE_CODE (op1) == REAL_CST)
1267 *litp = op1, neg_litp_p = neg1_p, op1 = 0;
1268
1269 if (op0 != 0 && TREE_CONSTANT (op0))
1270 *conp = op0, op0 = 0;
1271 else if (op1 != 0 && TREE_CONSTANT (op1))
1272 *conp = op1, neg_conp_p = neg1_p, op1 = 0;
1273
1274 /* If we haven't dealt with either operand, this is not a case we can
1275 decompose. Otherwise, VAR is either of the ones remaining, if any. */
1276 if (op0 != 0 && op1 != 0)
1277 var = in;
1278 else if (op0 != 0)
1279 var = op0;
1280 else
1281 var = op1, neg_var_p = neg1_p;
1282
1283 /* Now do any needed negations. */
1284 if (neg_litp_p)
1285 *minus_litp = *litp, *litp = 0;
1286 if (neg_conp_p)
1287 *conp = negate_expr (*conp);
1288 if (neg_var_p)
1289 var = negate_expr (var);
1290 }
1291 else if (TREE_CONSTANT (in))
1292 *conp = in;
1293 else
1294 var = in;
1295
1296 if (negate_p)
1297 {
1298 if (*litp)
1299 *minus_litp = *litp, *litp = 0;
1300 else if (*minus_litp)
1301 *litp = *minus_litp, *minus_litp = 0;
1302 *conp = negate_expr (*conp);
1303 var = negate_expr (var);
1304 }
1305
1306 return var;
1307 }
1308
1309 /* Re-associate trees split by the above function. T1 and T2 are either
1310 expressions to associate or null. Return the new expression, if any. If
1311 we build an operation, do it in TYPE and with CODE. */
1312
1313 static tree
1314 associate_trees (tree t1, tree t2, enum tree_code code, tree type)
1315 {
1316 if (t1 == 0)
1317 return t2;
1318 else if (t2 == 0)
1319 return t1;
1320
1321 /* If either input is CODE, a PLUS_EXPR, or a MINUS_EXPR, don't
1322 try to fold this since we will have infinite recursion. But do
1323 deal with any NEGATE_EXPRs. */
1324 if (TREE_CODE (t1) == code || TREE_CODE (t2) == code
1325 || TREE_CODE (t1) == MINUS_EXPR || TREE_CODE (t2) == MINUS_EXPR)
1326 {
1327 if (code == PLUS_EXPR)
1328 {
1329 if (TREE_CODE (t1) == NEGATE_EXPR)
1330 return build2 (MINUS_EXPR, type, fold_convert (type, t2),
1331 fold_convert (type, TREE_OPERAND (t1, 0)));
1332 else if (TREE_CODE (t2) == NEGATE_EXPR)
1333 return build2 (MINUS_EXPR, type, fold_convert (type, t1),
1334 fold_convert (type, TREE_OPERAND (t2, 0)));
1335 else if (integer_zerop (t2))
1336 return fold_convert (type, t1);
1337 }
1338 else if (code == MINUS_EXPR)
1339 {
1340 if (integer_zerop (t2))
1341 return fold_convert (type, t1);
1342 }
1343
1344 return build2 (code, type, fold_convert (type, t1),
1345 fold_convert (type, t2));
1346 }
1347
1348 return fold_build2 (code, type, fold_convert (type, t1),
1349 fold_convert (type, t2));
1350 }
1351 \f
1352 /* Combine two integer constants ARG1 and ARG2 under operation CODE
1353 to produce a new constant. Return NULL_TREE if we don't know how
1354 to evaluate CODE at compile-time.
1355
1356 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1357
1358 tree
1359 int_const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
1360 {
1361 unsigned HOST_WIDE_INT int1l, int2l;
1362 HOST_WIDE_INT int1h, int2h;
1363 unsigned HOST_WIDE_INT low;
1364 HOST_WIDE_INT hi;
1365 unsigned HOST_WIDE_INT garbagel;
1366 HOST_WIDE_INT garbageh;
1367 tree t;
1368 tree type = TREE_TYPE (arg1);
1369 int uns = TYPE_UNSIGNED (type);
1370 int is_sizetype
1371 = (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type));
1372 int overflow = 0;
1373
1374 int1l = TREE_INT_CST_LOW (arg1);
1375 int1h = TREE_INT_CST_HIGH (arg1);
1376 int2l = TREE_INT_CST_LOW (arg2);
1377 int2h = TREE_INT_CST_HIGH (arg2);
1378
1379 switch (code)
1380 {
1381 case BIT_IOR_EXPR:
1382 low = int1l | int2l, hi = int1h | int2h;
1383 break;
1384
1385 case BIT_XOR_EXPR:
1386 low = int1l ^ int2l, hi = int1h ^ int2h;
1387 break;
1388
1389 case BIT_AND_EXPR:
1390 low = int1l & int2l, hi = int1h & int2h;
1391 break;
1392
1393 case RSHIFT_EXPR:
1394 int2l = -int2l;
1395 case LSHIFT_EXPR:
1396 /* It's unclear from the C standard whether shifts can overflow.
1397 The following code ignores overflow; perhaps a C standard
1398 interpretation ruling is needed. */
1399 lshift_double (int1l, int1h, int2l, TYPE_PRECISION (type),
1400 &low, &hi, !uns);
1401 break;
1402
1403 case RROTATE_EXPR:
1404 int2l = - int2l;
1405 case LROTATE_EXPR:
1406 lrotate_double (int1l, int1h, int2l, TYPE_PRECISION (type),
1407 &low, &hi);
1408 break;
1409
1410 case PLUS_EXPR:
1411 overflow = add_double (int1l, int1h, int2l, int2h, &low, &hi);
1412 break;
1413
1414 case MINUS_EXPR:
1415 neg_double (int2l, int2h, &low, &hi);
1416 add_double (int1l, int1h, low, hi, &low, &hi);
1417 overflow = OVERFLOW_SUM_SIGN (hi, int2h, int1h);
1418 break;
1419
1420 case MULT_EXPR:
1421 overflow = mul_double (int1l, int1h, int2l, int2h, &low, &hi);
1422 break;
1423
1424 case TRUNC_DIV_EXPR:
1425 case FLOOR_DIV_EXPR: case CEIL_DIV_EXPR:
1426 case EXACT_DIV_EXPR:
1427 /* This is a shortcut for a common special case. */
1428 if (int2h == 0 && (HOST_WIDE_INT) int2l > 0
1429 && ! TREE_CONSTANT_OVERFLOW (arg1)
1430 && ! TREE_CONSTANT_OVERFLOW (arg2)
1431 && int1h == 0 && (HOST_WIDE_INT) int1l >= 0)
1432 {
1433 if (code == CEIL_DIV_EXPR)
1434 int1l += int2l - 1;
1435
1436 low = int1l / int2l, hi = 0;
1437 break;
1438 }
1439
1440 /* ... fall through ... */
1441
1442 case ROUND_DIV_EXPR:
1443 if (int2h == 0 && int2l == 0)
1444 return NULL_TREE;
1445 if (int2h == 0 && int2l == 1)
1446 {
1447 low = int1l, hi = int1h;
1448 break;
1449 }
1450 if (int1l == int2l && int1h == int2h
1451 && ! (int1l == 0 && int1h == 0))
1452 {
1453 low = 1, hi = 0;
1454 break;
1455 }
1456 overflow = div_and_round_double (code, uns, int1l, int1h, int2l, int2h,
1457 &low, &hi, &garbagel, &garbageh);
1458 break;
1459
1460 case TRUNC_MOD_EXPR:
1461 case FLOOR_MOD_EXPR: case CEIL_MOD_EXPR:
1462 /* This is a shortcut for a common special case. */
1463 if (int2h == 0 && (HOST_WIDE_INT) int2l > 0
1464 && ! TREE_CONSTANT_OVERFLOW (arg1)
1465 && ! TREE_CONSTANT_OVERFLOW (arg2)
1466 && int1h == 0 && (HOST_WIDE_INT) int1l >= 0)
1467 {
1468 if (code == CEIL_MOD_EXPR)
1469 int1l += int2l - 1;
1470 low = int1l % int2l, hi = 0;
1471 break;
1472 }
1473
1474 /* ... fall through ... */
1475
1476 case ROUND_MOD_EXPR:
1477 if (int2h == 0 && int2l == 0)
1478 return NULL_TREE;
1479 overflow = div_and_round_double (code, uns,
1480 int1l, int1h, int2l, int2h,
1481 &garbagel, &garbageh, &low, &hi);
1482 break;
1483
1484 case MIN_EXPR:
1485 case MAX_EXPR:
1486 if (uns)
1487 low = (((unsigned HOST_WIDE_INT) int1h
1488 < (unsigned HOST_WIDE_INT) int2h)
1489 || (((unsigned HOST_WIDE_INT) int1h
1490 == (unsigned HOST_WIDE_INT) int2h)
1491 && int1l < int2l));
1492 else
1493 low = (int1h < int2h
1494 || (int1h == int2h && int1l < int2l));
1495
1496 if (low == (code == MIN_EXPR))
1497 low = int1l, hi = int1h;
1498 else
1499 low = int2l, hi = int2h;
1500 break;
1501
1502 default:
1503 return NULL_TREE;
1504 }
1505
1506 t = build_int_cst_wide (TREE_TYPE (arg1), low, hi);
1507
1508 if (notrunc)
1509 {
1510 /* Propagate overflow flags ourselves. */
1511 if (((!uns || is_sizetype) && overflow)
1512 | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2))
1513 {
1514 t = copy_node (t);
1515 TREE_OVERFLOW (t) = 1;
1516 TREE_CONSTANT_OVERFLOW (t) = 1;
1517 }
1518 else if (TREE_CONSTANT_OVERFLOW (arg1) | TREE_CONSTANT_OVERFLOW (arg2))
1519 {
1520 t = copy_node (t);
1521 TREE_CONSTANT_OVERFLOW (t) = 1;
1522 }
1523 }
1524 else
1525 t = force_fit_type (t, 1,
1526 ((!uns || is_sizetype) && overflow)
1527 | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2),
1528 TREE_CONSTANT_OVERFLOW (arg1)
1529 | TREE_CONSTANT_OVERFLOW (arg2));
1530
1531 return t;
1532 }
1533
1534 /* Combine two constants ARG1 and ARG2 under operation CODE to produce a new
1535 constant. We assume ARG1 and ARG2 have the same data type, or at least
1536 are the same kind of constant and the same machine mode.
1537
1538 If NOTRUNC is nonzero, do not truncate the result to fit the data type. */
1539
1540 static tree
1541 const_binop (enum tree_code code, tree arg1, tree arg2, int notrunc)
1542 {
1543 STRIP_NOPS (arg1);
1544 STRIP_NOPS (arg2);
1545
1546 if (TREE_CODE (arg1) == INTEGER_CST)
1547 return int_const_binop (code, arg1, arg2, notrunc);
1548
1549 if (TREE_CODE (arg1) == REAL_CST)
1550 {
1551 enum machine_mode mode;
1552 REAL_VALUE_TYPE d1;
1553 REAL_VALUE_TYPE d2;
1554 REAL_VALUE_TYPE value;
1555 REAL_VALUE_TYPE result;
1556 bool inexact;
1557 tree t, type;
1558
1559 /* The following codes are handled by real_arithmetic. */
1560 switch (code)
1561 {
1562 case PLUS_EXPR:
1563 case MINUS_EXPR:
1564 case MULT_EXPR:
1565 case RDIV_EXPR:
1566 case MIN_EXPR:
1567 case MAX_EXPR:
1568 break;
1569
1570 default:
1571 return NULL_TREE;
1572 }
1573
1574 d1 = TREE_REAL_CST (arg1);
1575 d2 = TREE_REAL_CST (arg2);
1576
1577 type = TREE_TYPE (arg1);
1578 mode = TYPE_MODE (type);
1579
1580 /* Don't perform operation if we honor signaling NaNs and
1581 either operand is a NaN. */
1582 if (HONOR_SNANS (mode)
1583 && (REAL_VALUE_ISNAN (d1) || REAL_VALUE_ISNAN (d2)))
1584 return NULL_TREE;
1585
1586 /* Don't perform operation if it would raise a division
1587 by zero exception. */
1588 if (code == RDIV_EXPR
1589 && REAL_VALUES_EQUAL (d2, dconst0)
1590 && (flag_trapping_math || ! MODE_HAS_INFINITIES (mode)))
1591 return NULL_TREE;
1592
1593 /* If either operand is a NaN, just return it. Otherwise, set up
1594 for floating-point trap; we return an overflow. */
1595 if (REAL_VALUE_ISNAN (d1))
1596 return arg1;
1597 else if (REAL_VALUE_ISNAN (d2))
1598 return arg2;
1599
1600 inexact = real_arithmetic (&value, code, &d1, &d2);
1601 real_convert (&result, mode, &value);
1602
1603 /* Don't constant fold this floating point operation if
1604 the result has overflowed and flag_trapping_math. */
1605
1606 if (flag_trapping_math
1607 && MODE_HAS_INFINITIES (mode)
1608 && REAL_VALUE_ISINF (result)
1609 && !REAL_VALUE_ISINF (d1)
1610 && !REAL_VALUE_ISINF (d2))
1611 return NULL_TREE;
1612
1613 /* Don't constant fold this floating point operation if the
1614 result may dependent upon the run-time rounding mode and
1615 flag_rounding_math is set, or if GCC's software emulation
1616 is unable to accurately represent the result. */
1617
1618 if ((flag_rounding_math
1619 || (REAL_MODE_FORMAT_COMPOSITE_P (mode)
1620 && !flag_unsafe_math_optimizations))
1621 && (inexact || !real_identical (&result, &value)))
1622 return NULL_TREE;
1623
1624 t = build_real (type, result);
1625
1626 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2);
1627 TREE_CONSTANT_OVERFLOW (t)
1628 = TREE_OVERFLOW (t)
1629 | TREE_CONSTANT_OVERFLOW (arg1)
1630 | TREE_CONSTANT_OVERFLOW (arg2);
1631 return t;
1632 }
1633
1634 if (TREE_CODE (arg1) == COMPLEX_CST)
1635 {
1636 tree type = TREE_TYPE (arg1);
1637 tree r1 = TREE_REALPART (arg1);
1638 tree i1 = TREE_IMAGPART (arg1);
1639 tree r2 = TREE_REALPART (arg2);
1640 tree i2 = TREE_IMAGPART (arg2);
1641 tree t;
1642
1643 switch (code)
1644 {
1645 case PLUS_EXPR:
1646 t = build_complex (type,
1647 const_binop (PLUS_EXPR, r1, r2, notrunc),
1648 const_binop (PLUS_EXPR, i1, i2, notrunc));
1649 break;
1650
1651 case MINUS_EXPR:
1652 t = build_complex (type,
1653 const_binop (MINUS_EXPR, r1, r2, notrunc),
1654 const_binop (MINUS_EXPR, i1, i2, notrunc));
1655 break;
1656
1657 case MULT_EXPR:
1658 t = build_complex (type,
1659 const_binop (MINUS_EXPR,
1660 const_binop (MULT_EXPR,
1661 r1, r2, notrunc),
1662 const_binop (MULT_EXPR,
1663 i1, i2, notrunc),
1664 notrunc),
1665 const_binop (PLUS_EXPR,
1666 const_binop (MULT_EXPR,
1667 r1, i2, notrunc),
1668 const_binop (MULT_EXPR,
1669 i1, r2, notrunc),
1670 notrunc));
1671 break;
1672
1673 case RDIV_EXPR:
1674 {
1675 tree t1, t2, real, imag;
1676 tree magsquared
1677 = const_binop (PLUS_EXPR,
1678 const_binop (MULT_EXPR, r2, r2, notrunc),
1679 const_binop (MULT_EXPR, i2, i2, notrunc),
1680 notrunc);
1681
1682 t1 = const_binop (PLUS_EXPR,
1683 const_binop (MULT_EXPR, r1, r2, notrunc),
1684 const_binop (MULT_EXPR, i1, i2, notrunc),
1685 notrunc);
1686 t2 = const_binop (MINUS_EXPR,
1687 const_binop (MULT_EXPR, i1, r2, notrunc),
1688 const_binop (MULT_EXPR, r1, i2, notrunc),
1689 notrunc);
1690
1691 if (INTEGRAL_TYPE_P (TREE_TYPE (r1)))
1692 {
1693 real = const_binop (TRUNC_DIV_EXPR, t1, magsquared, notrunc);
1694 imag = const_binop (TRUNC_DIV_EXPR, t2, magsquared, notrunc);
1695 }
1696 else
1697 {
1698 real = const_binop (RDIV_EXPR, t1, magsquared, notrunc);
1699 imag = const_binop (RDIV_EXPR, t2, magsquared, notrunc);
1700 if (!real || !imag)
1701 return NULL_TREE;
1702 }
1703
1704 t = build_complex (type, real, imag);
1705 }
1706 break;
1707
1708 default:
1709 return NULL_TREE;
1710 }
1711 return t;
1712 }
1713 return NULL_TREE;
1714 }
1715
1716 /* Create a size type INT_CST node with NUMBER sign extended. KIND
1717 indicates which particular sizetype to create. */
1718
1719 tree
1720 size_int_kind (HOST_WIDE_INT number, enum size_type_kind kind)
1721 {
1722 return build_int_cst (sizetype_tab[(int) kind], number);
1723 }
1724 \f
1725 /* Combine operands OP1 and OP2 with arithmetic operation CODE. CODE
1726 is a tree code. The type of the result is taken from the operands.
1727 Both must be the same type integer type and it must be a size type.
1728 If the operands are constant, so is the result. */
1729
1730 tree
1731 size_binop (enum tree_code code, tree arg0, tree arg1)
1732 {
1733 tree type = TREE_TYPE (arg0);
1734
1735 if (arg0 == error_mark_node || arg1 == error_mark_node)
1736 return error_mark_node;
1737
1738 gcc_assert (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type)
1739 && type == TREE_TYPE (arg1));
1740
1741 /* Handle the special case of two integer constants faster. */
1742 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
1743 {
1744 /* And some specific cases even faster than that. */
1745 if (code == PLUS_EXPR && integer_zerop (arg0))
1746 return arg1;
1747 else if ((code == MINUS_EXPR || code == PLUS_EXPR)
1748 && integer_zerop (arg1))
1749 return arg0;
1750 else if (code == MULT_EXPR && integer_onep (arg0))
1751 return arg1;
1752
1753 /* Handle general case of two integer constants. */
1754 return int_const_binop (code, arg0, arg1, 0);
1755 }
1756
1757 return fold_build2 (code, type, arg0, arg1);
1758 }
1759
1760 /* Given two values, either both of sizetype or both of bitsizetype,
1761 compute the difference between the two values. Return the value
1762 in signed type corresponding to the type of the operands. */
1763
1764 tree
1765 size_diffop (tree arg0, tree arg1)
1766 {
1767 tree type = TREE_TYPE (arg0);
1768 tree ctype;
1769
1770 gcc_assert (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type)
1771 && type == TREE_TYPE (arg1));
1772
1773 /* If the type is already signed, just do the simple thing. */
1774 if (!TYPE_UNSIGNED (type))
1775 return size_binop (MINUS_EXPR, arg0, arg1);
1776
1777 ctype = type == bitsizetype ? sbitsizetype : ssizetype;
1778
1779 /* If either operand is not a constant, do the conversions to the signed
1780 type and subtract. The hardware will do the right thing with any
1781 overflow in the subtraction. */
1782 if (TREE_CODE (arg0) != INTEGER_CST || TREE_CODE (arg1) != INTEGER_CST)
1783 return size_binop (MINUS_EXPR, fold_convert (ctype, arg0),
1784 fold_convert (ctype, arg1));
1785
1786 /* If ARG0 is larger than ARG1, subtract and return the result in CTYPE.
1787 Otherwise, subtract the other way, convert to CTYPE (we know that can't
1788 overflow) and negate (which can't either). Special-case a result
1789 of zero while we're here. */
1790 if (tree_int_cst_equal (arg0, arg1))
1791 return build_int_cst (ctype, 0);
1792 else if (tree_int_cst_lt (arg1, arg0))
1793 return fold_convert (ctype, size_binop (MINUS_EXPR, arg0, arg1));
1794 else
1795 return size_binop (MINUS_EXPR, build_int_cst (ctype, 0),
1796 fold_convert (ctype, size_binop (MINUS_EXPR,
1797 arg1, arg0)));
1798 }
1799 \f
1800 /* A subroutine of fold_convert_const handling conversions of an
1801 INTEGER_CST to another integer type. */
1802
1803 static tree
1804 fold_convert_const_int_from_int (tree type, tree arg1)
1805 {
1806 tree t;
1807
1808 /* Given an integer constant, make new constant with new type,
1809 appropriately sign-extended or truncated. */
1810 t = build_int_cst_wide (type, TREE_INT_CST_LOW (arg1),
1811 TREE_INT_CST_HIGH (arg1));
1812
1813 t = force_fit_type (t,
1814 /* Don't set the overflow when
1815 converting a pointer */
1816 !POINTER_TYPE_P (TREE_TYPE (arg1)),
1817 (TREE_INT_CST_HIGH (arg1) < 0
1818 && (TYPE_UNSIGNED (type)
1819 < TYPE_UNSIGNED (TREE_TYPE (arg1))))
1820 | TREE_OVERFLOW (arg1),
1821 TREE_CONSTANT_OVERFLOW (arg1));
1822
1823 return t;
1824 }
1825
1826 /* A subroutine of fold_convert_const handling conversions a REAL_CST
1827 to an integer type. */
1828
1829 static tree
1830 fold_convert_const_int_from_real (enum tree_code code, tree type, tree arg1)
1831 {
1832 int overflow = 0;
1833 tree t;
1834
1835 /* The following code implements the floating point to integer
1836 conversion rules required by the Java Language Specification,
1837 that IEEE NaNs are mapped to zero and values that overflow
1838 the target precision saturate, i.e. values greater than
1839 INT_MAX are mapped to INT_MAX, and values less than INT_MIN
1840 are mapped to INT_MIN. These semantics are allowed by the
1841 C and C++ standards that simply state that the behavior of
1842 FP-to-integer conversion is unspecified upon overflow. */
1843
1844 HOST_WIDE_INT high, low;
1845 REAL_VALUE_TYPE r;
1846 REAL_VALUE_TYPE x = TREE_REAL_CST (arg1);
1847
1848 switch (code)
1849 {
1850 case FIX_TRUNC_EXPR:
1851 real_trunc (&r, VOIDmode, &x);
1852 break;
1853
1854 case FIX_CEIL_EXPR:
1855 real_ceil (&r, VOIDmode, &x);
1856 break;
1857
1858 case FIX_FLOOR_EXPR:
1859 real_floor (&r, VOIDmode, &x);
1860 break;
1861
1862 case FIX_ROUND_EXPR:
1863 real_round (&r, VOIDmode, &x);
1864 break;
1865
1866 default:
1867 gcc_unreachable ();
1868 }
1869
1870 /* If R is NaN, return zero and show we have an overflow. */
1871 if (REAL_VALUE_ISNAN (r))
1872 {
1873 overflow = 1;
1874 high = 0;
1875 low = 0;
1876 }
1877
1878 /* See if R is less than the lower bound or greater than the
1879 upper bound. */
1880
1881 if (! overflow)
1882 {
1883 tree lt = TYPE_MIN_VALUE (type);
1884 REAL_VALUE_TYPE l = real_value_from_int_cst (NULL_TREE, lt);
1885 if (REAL_VALUES_LESS (r, l))
1886 {
1887 overflow = 1;
1888 high = TREE_INT_CST_HIGH (lt);
1889 low = TREE_INT_CST_LOW (lt);
1890 }
1891 }
1892
1893 if (! overflow)
1894 {
1895 tree ut = TYPE_MAX_VALUE (type);
1896 if (ut)
1897 {
1898 REAL_VALUE_TYPE u = real_value_from_int_cst (NULL_TREE, ut);
1899 if (REAL_VALUES_LESS (u, r))
1900 {
1901 overflow = 1;
1902 high = TREE_INT_CST_HIGH (ut);
1903 low = TREE_INT_CST_LOW (ut);
1904 }
1905 }
1906 }
1907
1908 if (! overflow)
1909 REAL_VALUE_TO_INT (&low, &high, r);
1910
1911 t = build_int_cst_wide (type, low, high);
1912
1913 t = force_fit_type (t, -1, overflow | TREE_OVERFLOW (arg1),
1914 TREE_CONSTANT_OVERFLOW (arg1));
1915 return t;
1916 }
1917
1918 /* A subroutine of fold_convert_const handling conversions a REAL_CST
1919 to another floating point type. */
1920
1921 static tree
1922 fold_convert_const_real_from_real (tree type, tree arg1)
1923 {
1924 REAL_VALUE_TYPE value;
1925 tree t;
1926
1927 real_convert (&value, TYPE_MODE (type), &TREE_REAL_CST (arg1));
1928 t = build_real (type, value);
1929
1930 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1);
1931 TREE_CONSTANT_OVERFLOW (t)
1932 = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg1);
1933 return t;
1934 }
1935
1936 /* Attempt to fold type conversion operation CODE of expression ARG1 to
1937 type TYPE. If no simplification can be done return NULL_TREE. */
1938
1939 static tree
1940 fold_convert_const (enum tree_code code, tree type, tree arg1)
1941 {
1942 if (TREE_TYPE (arg1) == type)
1943 return arg1;
1944
1945 if (POINTER_TYPE_P (type) || INTEGRAL_TYPE_P (type))
1946 {
1947 if (TREE_CODE (arg1) == INTEGER_CST)
1948 return fold_convert_const_int_from_int (type, arg1);
1949 else if (TREE_CODE (arg1) == REAL_CST)
1950 return fold_convert_const_int_from_real (code, type, arg1);
1951 }
1952 else if (TREE_CODE (type) == REAL_TYPE)
1953 {
1954 if (TREE_CODE (arg1) == INTEGER_CST)
1955 return build_real_from_int_cst (type, arg1);
1956 if (TREE_CODE (arg1) == REAL_CST)
1957 return fold_convert_const_real_from_real (type, arg1);
1958 }
1959 return NULL_TREE;
1960 }
1961
1962 /* Construct a vector of zero elements of vector type TYPE. */
1963
1964 static tree
1965 build_zero_vector (tree type)
1966 {
1967 tree elem, list;
1968 int i, units;
1969
1970 elem = fold_convert_const (NOP_EXPR, TREE_TYPE (type), integer_zero_node);
1971 units = TYPE_VECTOR_SUBPARTS (type);
1972
1973 list = NULL_TREE;
1974 for (i = 0; i < units; i++)
1975 list = tree_cons (NULL_TREE, elem, list);
1976 return build_vector (type, list);
1977 }
1978
1979 /* Convert expression ARG to type TYPE. Used by the middle-end for
1980 simple conversions in preference to calling the front-end's convert. */
1981
1982 tree
1983 fold_convert (tree type, tree arg)
1984 {
1985 tree orig = TREE_TYPE (arg);
1986 tree tem;
1987
1988 if (type == orig)
1989 return arg;
1990
1991 if (TREE_CODE (arg) == ERROR_MARK
1992 || TREE_CODE (type) == ERROR_MARK
1993 || TREE_CODE (orig) == ERROR_MARK)
1994 return error_mark_node;
1995
1996 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (orig)
1997 || lang_hooks.types_compatible_p (TYPE_MAIN_VARIANT (type),
1998 TYPE_MAIN_VARIANT (orig)))
1999 return fold_build1 (NOP_EXPR, type, arg);
2000
2001 switch (TREE_CODE (type))
2002 {
2003 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2004 case POINTER_TYPE: case REFERENCE_TYPE:
2005 case OFFSET_TYPE:
2006 if (TREE_CODE (arg) == INTEGER_CST)
2007 {
2008 tem = fold_convert_const (NOP_EXPR, type, arg);
2009 if (tem != NULL_TREE)
2010 return tem;
2011 }
2012 if (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
2013 || TREE_CODE (orig) == OFFSET_TYPE)
2014 return fold_build1 (NOP_EXPR, type, arg);
2015 if (TREE_CODE (orig) == COMPLEX_TYPE)
2016 {
2017 tem = fold_build1 (REALPART_EXPR, TREE_TYPE (orig), arg);
2018 return fold_convert (type, tem);
2019 }
2020 gcc_assert (TREE_CODE (orig) == VECTOR_TYPE
2021 && tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
2022 return fold_build1 (NOP_EXPR, type, arg);
2023
2024 case REAL_TYPE:
2025 if (TREE_CODE (arg) == INTEGER_CST)
2026 {
2027 tem = fold_convert_const (FLOAT_EXPR, type, arg);
2028 if (tem != NULL_TREE)
2029 return tem;
2030 }
2031 else if (TREE_CODE (arg) == REAL_CST)
2032 {
2033 tem = fold_convert_const (NOP_EXPR, type, arg);
2034 if (tem != NULL_TREE)
2035 return tem;
2036 }
2037
2038 switch (TREE_CODE (orig))
2039 {
2040 case INTEGER_TYPE:
2041 case BOOLEAN_TYPE: case ENUMERAL_TYPE:
2042 case POINTER_TYPE: case REFERENCE_TYPE:
2043 return fold_build1 (FLOAT_EXPR, type, arg);
2044
2045 case REAL_TYPE:
2046 return fold_build1 (NOP_EXPR, type, arg);
2047
2048 case COMPLEX_TYPE:
2049 tem = fold_build1 (REALPART_EXPR, TREE_TYPE (orig), arg);
2050 return fold_convert (type, tem);
2051
2052 default:
2053 gcc_unreachable ();
2054 }
2055
2056 case COMPLEX_TYPE:
2057 switch (TREE_CODE (orig))
2058 {
2059 case INTEGER_TYPE:
2060 case BOOLEAN_TYPE: case ENUMERAL_TYPE:
2061 case POINTER_TYPE: case REFERENCE_TYPE:
2062 case REAL_TYPE:
2063 return build2 (COMPLEX_EXPR, type,
2064 fold_convert (TREE_TYPE (type), arg),
2065 fold_convert (TREE_TYPE (type), integer_zero_node));
2066 case COMPLEX_TYPE:
2067 {
2068 tree rpart, ipart;
2069
2070 if (TREE_CODE (arg) == COMPLEX_EXPR)
2071 {
2072 rpart = fold_convert (TREE_TYPE (type), TREE_OPERAND (arg, 0));
2073 ipart = fold_convert (TREE_TYPE (type), TREE_OPERAND (arg, 1));
2074 return fold_build2 (COMPLEX_EXPR, type, rpart, ipart);
2075 }
2076
2077 arg = save_expr (arg);
2078 rpart = fold_build1 (REALPART_EXPR, TREE_TYPE (orig), arg);
2079 ipart = fold_build1 (IMAGPART_EXPR, TREE_TYPE (orig), arg);
2080 rpart = fold_convert (TREE_TYPE (type), rpart);
2081 ipart = fold_convert (TREE_TYPE (type), ipart);
2082 return fold_build2 (COMPLEX_EXPR, type, rpart, ipart);
2083 }
2084
2085 default:
2086 gcc_unreachable ();
2087 }
2088
2089 case VECTOR_TYPE:
2090 if (integer_zerop (arg))
2091 return build_zero_vector (type);
2092 gcc_assert (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
2093 gcc_assert (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
2094 || TREE_CODE (orig) == VECTOR_TYPE);
2095 return fold_build1 (VIEW_CONVERT_EXPR, type, arg);
2096
2097 case VOID_TYPE:
2098 return fold_build1 (NOP_EXPR, type, fold_ignored_result (arg));
2099
2100 default:
2101 gcc_unreachable ();
2102 }
2103 }
2104 \f
2105 /* Return false if expr can be assumed not to be an lvalue, true
2106 otherwise. */
2107
2108 static bool
2109 maybe_lvalue_p (tree x)
2110 {
2111 /* We only need to wrap lvalue tree codes. */
2112 switch (TREE_CODE (x))
2113 {
2114 case VAR_DECL:
2115 case PARM_DECL:
2116 case RESULT_DECL:
2117 case LABEL_DECL:
2118 case FUNCTION_DECL:
2119 case SSA_NAME:
2120
2121 case COMPONENT_REF:
2122 case INDIRECT_REF:
2123 case ALIGN_INDIRECT_REF:
2124 case MISALIGNED_INDIRECT_REF:
2125 case ARRAY_REF:
2126 case ARRAY_RANGE_REF:
2127 case BIT_FIELD_REF:
2128 case OBJ_TYPE_REF:
2129
2130 case REALPART_EXPR:
2131 case IMAGPART_EXPR:
2132 case PREINCREMENT_EXPR:
2133 case PREDECREMENT_EXPR:
2134 case SAVE_EXPR:
2135 case TRY_CATCH_EXPR:
2136 case WITH_CLEANUP_EXPR:
2137 case COMPOUND_EXPR:
2138 case MODIFY_EXPR:
2139 case TARGET_EXPR:
2140 case COND_EXPR:
2141 case BIND_EXPR:
2142 case MIN_EXPR:
2143 case MAX_EXPR:
2144 break;
2145
2146 default:
2147 /* Assume the worst for front-end tree codes. */
2148 if ((int)TREE_CODE (x) >= NUM_TREE_CODES)
2149 break;
2150 return false;
2151 }
2152
2153 return true;
2154 }
2155
2156 /* Return an expr equal to X but certainly not valid as an lvalue. */
2157
2158 tree
2159 non_lvalue (tree x)
2160 {
2161 /* While we are in GIMPLE, NON_LVALUE_EXPR doesn't mean anything to
2162 us. */
2163 if (in_gimple_form)
2164 return x;
2165
2166 if (! maybe_lvalue_p (x))
2167 return x;
2168 return build1 (NON_LVALUE_EXPR, TREE_TYPE (x), x);
2169 }
2170
2171 /* Nonzero means lvalues are limited to those valid in pedantic ANSI C.
2172 Zero means allow extended lvalues. */
2173
2174 int pedantic_lvalues;
2175
2176 /* When pedantic, return an expr equal to X but certainly not valid as a
2177 pedantic lvalue. Otherwise, return X. */
2178
2179 static tree
2180 pedantic_non_lvalue (tree x)
2181 {
2182 if (pedantic_lvalues)
2183 return non_lvalue (x);
2184 else
2185 return x;
2186 }
2187 \f
2188 /* Given a tree comparison code, return the code that is the logical inverse
2189 of the given code. It is not safe to do this for floating-point
2190 comparisons, except for NE_EXPR and EQ_EXPR, so we receive a machine mode
2191 as well: if reversing the comparison is unsafe, return ERROR_MARK. */
2192
2193 enum tree_code
2194 invert_tree_comparison (enum tree_code code, bool honor_nans)
2195 {
2196 if (honor_nans && flag_trapping_math)
2197 return ERROR_MARK;
2198
2199 switch (code)
2200 {
2201 case EQ_EXPR:
2202 return NE_EXPR;
2203 case NE_EXPR:
2204 return EQ_EXPR;
2205 case GT_EXPR:
2206 return honor_nans ? UNLE_EXPR : LE_EXPR;
2207 case GE_EXPR:
2208 return honor_nans ? UNLT_EXPR : LT_EXPR;
2209 case LT_EXPR:
2210 return honor_nans ? UNGE_EXPR : GE_EXPR;
2211 case LE_EXPR:
2212 return honor_nans ? UNGT_EXPR : GT_EXPR;
2213 case LTGT_EXPR:
2214 return UNEQ_EXPR;
2215 case UNEQ_EXPR:
2216 return LTGT_EXPR;
2217 case UNGT_EXPR:
2218 return LE_EXPR;
2219 case UNGE_EXPR:
2220 return LT_EXPR;
2221 case UNLT_EXPR:
2222 return GE_EXPR;
2223 case UNLE_EXPR:
2224 return GT_EXPR;
2225 case ORDERED_EXPR:
2226 return UNORDERED_EXPR;
2227 case UNORDERED_EXPR:
2228 return ORDERED_EXPR;
2229 default:
2230 gcc_unreachable ();
2231 }
2232 }
2233
2234 /* Similar, but return the comparison that results if the operands are
2235 swapped. This is safe for floating-point. */
2236
2237 enum tree_code
2238 swap_tree_comparison (enum tree_code code)
2239 {
2240 switch (code)
2241 {
2242 case EQ_EXPR:
2243 case NE_EXPR:
2244 case ORDERED_EXPR:
2245 case UNORDERED_EXPR:
2246 case LTGT_EXPR:
2247 case UNEQ_EXPR:
2248 return code;
2249 case GT_EXPR:
2250 return LT_EXPR;
2251 case GE_EXPR:
2252 return LE_EXPR;
2253 case LT_EXPR:
2254 return GT_EXPR;
2255 case LE_EXPR:
2256 return GE_EXPR;
2257 case UNGT_EXPR:
2258 return UNLT_EXPR;
2259 case UNGE_EXPR:
2260 return UNLE_EXPR;
2261 case UNLT_EXPR:
2262 return UNGT_EXPR;
2263 case UNLE_EXPR:
2264 return UNGE_EXPR;
2265 default:
2266 gcc_unreachable ();
2267 }
2268 }
2269
2270
2271 /* Convert a comparison tree code from an enum tree_code representation
2272 into a compcode bit-based encoding. This function is the inverse of
2273 compcode_to_comparison. */
2274
2275 static enum comparison_code
2276 comparison_to_compcode (enum tree_code code)
2277 {
2278 switch (code)
2279 {
2280 case LT_EXPR:
2281 return COMPCODE_LT;
2282 case EQ_EXPR:
2283 return COMPCODE_EQ;
2284 case LE_EXPR:
2285 return COMPCODE_LE;
2286 case GT_EXPR:
2287 return COMPCODE_GT;
2288 case NE_EXPR:
2289 return COMPCODE_NE;
2290 case GE_EXPR:
2291 return COMPCODE_GE;
2292 case ORDERED_EXPR:
2293 return COMPCODE_ORD;
2294 case UNORDERED_EXPR:
2295 return COMPCODE_UNORD;
2296 case UNLT_EXPR:
2297 return COMPCODE_UNLT;
2298 case UNEQ_EXPR:
2299 return COMPCODE_UNEQ;
2300 case UNLE_EXPR:
2301 return COMPCODE_UNLE;
2302 case UNGT_EXPR:
2303 return COMPCODE_UNGT;
2304 case LTGT_EXPR:
2305 return COMPCODE_LTGT;
2306 case UNGE_EXPR:
2307 return COMPCODE_UNGE;
2308 default:
2309 gcc_unreachable ();
2310 }
2311 }
2312
2313 /* Convert a compcode bit-based encoding of a comparison operator back
2314 to GCC's enum tree_code representation. This function is the
2315 inverse of comparison_to_compcode. */
2316
2317 static enum tree_code
2318 compcode_to_comparison (enum comparison_code code)
2319 {
2320 switch (code)
2321 {
2322 case COMPCODE_LT:
2323 return LT_EXPR;
2324 case COMPCODE_EQ:
2325 return EQ_EXPR;
2326 case COMPCODE_LE:
2327 return LE_EXPR;
2328 case COMPCODE_GT:
2329 return GT_EXPR;
2330 case COMPCODE_NE:
2331 return NE_EXPR;
2332 case COMPCODE_GE:
2333 return GE_EXPR;
2334 case COMPCODE_ORD:
2335 return ORDERED_EXPR;
2336 case COMPCODE_UNORD:
2337 return UNORDERED_EXPR;
2338 case COMPCODE_UNLT:
2339 return UNLT_EXPR;
2340 case COMPCODE_UNEQ:
2341 return UNEQ_EXPR;
2342 case COMPCODE_UNLE:
2343 return UNLE_EXPR;
2344 case COMPCODE_UNGT:
2345 return UNGT_EXPR;
2346 case COMPCODE_LTGT:
2347 return LTGT_EXPR;
2348 case COMPCODE_UNGE:
2349 return UNGE_EXPR;
2350 default:
2351 gcc_unreachable ();
2352 }
2353 }
2354
2355 /* Return a tree for the comparison which is the combination of
2356 doing the AND or OR (depending on CODE) of the two operations LCODE
2357 and RCODE on the identical operands LL_ARG and LR_ARG. Take into account
2358 the possibility of trapping if the mode has NaNs, and return NULL_TREE
2359 if this makes the transformation invalid. */
2360
2361 tree
2362 combine_comparisons (enum tree_code code, enum tree_code lcode,
2363 enum tree_code rcode, tree truth_type,
2364 tree ll_arg, tree lr_arg)
2365 {
2366 bool honor_nans = HONOR_NANS (TYPE_MODE (TREE_TYPE (ll_arg)));
2367 enum comparison_code lcompcode = comparison_to_compcode (lcode);
2368 enum comparison_code rcompcode = comparison_to_compcode (rcode);
2369 enum comparison_code compcode;
2370
2371 switch (code)
2372 {
2373 case TRUTH_AND_EXPR: case TRUTH_ANDIF_EXPR:
2374 compcode = lcompcode & rcompcode;
2375 break;
2376
2377 case TRUTH_OR_EXPR: case TRUTH_ORIF_EXPR:
2378 compcode = lcompcode | rcompcode;
2379 break;
2380
2381 default:
2382 return NULL_TREE;
2383 }
2384
2385 if (!honor_nans)
2386 {
2387 /* Eliminate unordered comparisons, as well as LTGT and ORD
2388 which are not used unless the mode has NaNs. */
2389 compcode &= ~COMPCODE_UNORD;
2390 if (compcode == COMPCODE_LTGT)
2391 compcode = COMPCODE_NE;
2392 else if (compcode == COMPCODE_ORD)
2393 compcode = COMPCODE_TRUE;
2394 }
2395 else if (flag_trapping_math)
2396 {
2397 /* Check that the original operation and the optimized ones will trap
2398 under the same condition. */
2399 bool ltrap = (lcompcode & COMPCODE_UNORD) == 0
2400 && (lcompcode != COMPCODE_EQ)
2401 && (lcompcode != COMPCODE_ORD);
2402 bool rtrap = (rcompcode & COMPCODE_UNORD) == 0
2403 && (rcompcode != COMPCODE_EQ)
2404 && (rcompcode != COMPCODE_ORD);
2405 bool trap = (compcode & COMPCODE_UNORD) == 0
2406 && (compcode != COMPCODE_EQ)
2407 && (compcode != COMPCODE_ORD);
2408
2409 /* In a short-circuited boolean expression the LHS might be
2410 such that the RHS, if evaluated, will never trap. For
2411 example, in ORD (x, y) && (x < y), we evaluate the RHS only
2412 if neither x nor y is NaN. (This is a mixed blessing: for
2413 example, the expression above will never trap, hence
2414 optimizing it to x < y would be invalid). */
2415 if ((code == TRUTH_ORIF_EXPR && (lcompcode & COMPCODE_UNORD))
2416 || (code == TRUTH_ANDIF_EXPR && !(lcompcode & COMPCODE_UNORD)))
2417 rtrap = false;
2418
2419 /* If the comparison was short-circuited, and only the RHS
2420 trapped, we may now generate a spurious trap. */
2421 if (rtrap && !ltrap
2422 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2423 return NULL_TREE;
2424
2425 /* If we changed the conditions that cause a trap, we lose. */
2426 if ((ltrap || rtrap) != trap)
2427 return NULL_TREE;
2428 }
2429
2430 if (compcode == COMPCODE_TRUE)
2431 return constant_boolean_node (true, truth_type);
2432 else if (compcode == COMPCODE_FALSE)
2433 return constant_boolean_node (false, truth_type);
2434 else
2435 return fold_build2 (compcode_to_comparison (compcode),
2436 truth_type, ll_arg, lr_arg);
2437 }
2438
2439 /* Return nonzero if CODE is a tree code that represents a truth value. */
2440
2441 static int
2442 truth_value_p (enum tree_code code)
2443 {
2444 return (TREE_CODE_CLASS (code) == tcc_comparison
2445 || code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
2446 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
2447 || code == TRUTH_XOR_EXPR || code == TRUTH_NOT_EXPR);
2448 }
2449 \f
2450 /* Return nonzero if two operands (typically of the same tree node)
2451 are necessarily equal. If either argument has side-effects this
2452 function returns zero. FLAGS modifies behavior as follows:
2453
2454 If OEP_ONLY_CONST is set, only return nonzero for constants.
2455 This function tests whether the operands are indistinguishable;
2456 it does not test whether they are equal using C's == operation.
2457 The distinction is important for IEEE floating point, because
2458 (1) -0.0 and 0.0 are distinguishable, but -0.0==0.0, and
2459 (2) two NaNs may be indistinguishable, but NaN!=NaN.
2460
2461 If OEP_ONLY_CONST is unset, a VAR_DECL is considered equal to itself
2462 even though it may hold multiple values during a function.
2463 This is because a GCC tree node guarantees that nothing else is
2464 executed between the evaluation of its "operands" (which may often
2465 be evaluated in arbitrary order). Hence if the operands themselves
2466 don't side-effect, the VAR_DECLs, PARM_DECLs etc... must hold the
2467 same value in each operand/subexpression. Hence leaving OEP_ONLY_CONST
2468 unset means assuming isochronic (or instantaneous) tree equivalence.
2469 Unless comparing arbitrary expression trees, such as from different
2470 statements, this flag can usually be left unset.
2471
2472 If OEP_PURE_SAME is set, then pure functions with identical arguments
2473 are considered the same. It is used when the caller has other ways
2474 to ensure that global memory is unchanged in between. */
2475
2476 int
2477 operand_equal_p (tree arg0, tree arg1, unsigned int flags)
2478 {
2479 /* If either is ERROR_MARK, they aren't equal. */
2480 if (TREE_CODE (arg0) == ERROR_MARK || TREE_CODE (arg1) == ERROR_MARK)
2481 return 0;
2482
2483 /* If both types don't have the same signedness, then we can't consider
2484 them equal. We must check this before the STRIP_NOPS calls
2485 because they may change the signedness of the arguments. */
2486 if (TYPE_UNSIGNED (TREE_TYPE (arg0)) != TYPE_UNSIGNED (TREE_TYPE (arg1)))
2487 return 0;
2488
2489 STRIP_NOPS (arg0);
2490 STRIP_NOPS (arg1);
2491
2492 /* In case both args are comparisons but with different comparison
2493 code, try to swap the comparison operands of one arg to produce
2494 a match and compare that variant. */
2495 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2496 && COMPARISON_CLASS_P (arg0)
2497 && COMPARISON_CLASS_P (arg1))
2498 {
2499 enum tree_code swap_code = swap_tree_comparison (TREE_CODE (arg1));
2500
2501 if (TREE_CODE (arg0) == swap_code)
2502 return operand_equal_p (TREE_OPERAND (arg0, 0),
2503 TREE_OPERAND (arg1, 1), flags)
2504 && operand_equal_p (TREE_OPERAND (arg0, 1),
2505 TREE_OPERAND (arg1, 0), flags);
2506 }
2507
2508 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2509 /* This is needed for conversions and for COMPONENT_REF.
2510 Might as well play it safe and always test this. */
2511 || TREE_CODE (TREE_TYPE (arg0)) == ERROR_MARK
2512 || TREE_CODE (TREE_TYPE (arg1)) == ERROR_MARK
2513 || TYPE_MODE (TREE_TYPE (arg0)) != TYPE_MODE (TREE_TYPE (arg1)))
2514 return 0;
2515
2516 /* If ARG0 and ARG1 are the same SAVE_EXPR, they are necessarily equal.
2517 We don't care about side effects in that case because the SAVE_EXPR
2518 takes care of that for us. In all other cases, two expressions are
2519 equal if they have no side effects. If we have two identical
2520 expressions with side effects that should be treated the same due
2521 to the only side effects being identical SAVE_EXPR's, that will
2522 be detected in the recursive calls below. */
2523 if (arg0 == arg1 && ! (flags & OEP_ONLY_CONST)
2524 && (TREE_CODE (arg0) == SAVE_EXPR
2525 || (! TREE_SIDE_EFFECTS (arg0) && ! TREE_SIDE_EFFECTS (arg1))))
2526 return 1;
2527
2528 /* Next handle constant cases, those for which we can return 1 even
2529 if ONLY_CONST is set. */
2530 if (TREE_CONSTANT (arg0) && TREE_CONSTANT (arg1))
2531 switch (TREE_CODE (arg0))
2532 {
2533 case INTEGER_CST:
2534 return (! TREE_CONSTANT_OVERFLOW (arg0)
2535 && ! TREE_CONSTANT_OVERFLOW (arg1)
2536 && tree_int_cst_equal (arg0, arg1));
2537
2538 case REAL_CST:
2539 return (! TREE_CONSTANT_OVERFLOW (arg0)
2540 && ! TREE_CONSTANT_OVERFLOW (arg1)
2541 && REAL_VALUES_IDENTICAL (TREE_REAL_CST (arg0),
2542 TREE_REAL_CST (arg1)));
2543
2544 case VECTOR_CST:
2545 {
2546 tree v1, v2;
2547
2548 if (TREE_CONSTANT_OVERFLOW (arg0)
2549 || TREE_CONSTANT_OVERFLOW (arg1))
2550 return 0;
2551
2552 v1 = TREE_VECTOR_CST_ELTS (arg0);
2553 v2 = TREE_VECTOR_CST_ELTS (arg1);
2554 while (v1 && v2)
2555 {
2556 if (!operand_equal_p (TREE_VALUE (v1), TREE_VALUE (v2),
2557 flags))
2558 return 0;
2559 v1 = TREE_CHAIN (v1);
2560 v2 = TREE_CHAIN (v2);
2561 }
2562
2563 return v1 == v2;
2564 }
2565
2566 case COMPLEX_CST:
2567 return (operand_equal_p (TREE_REALPART (arg0), TREE_REALPART (arg1),
2568 flags)
2569 && operand_equal_p (TREE_IMAGPART (arg0), TREE_IMAGPART (arg1),
2570 flags));
2571
2572 case STRING_CST:
2573 return (TREE_STRING_LENGTH (arg0) == TREE_STRING_LENGTH (arg1)
2574 && ! memcmp (TREE_STRING_POINTER (arg0),
2575 TREE_STRING_POINTER (arg1),
2576 TREE_STRING_LENGTH (arg0)));
2577
2578 case ADDR_EXPR:
2579 return operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0),
2580 0);
2581 default:
2582 break;
2583 }
2584
2585 if (flags & OEP_ONLY_CONST)
2586 return 0;
2587
2588 /* Define macros to test an operand from arg0 and arg1 for equality and a
2589 variant that allows null and views null as being different from any
2590 non-null value. In the latter case, if either is null, the both
2591 must be; otherwise, do the normal comparison. */
2592 #define OP_SAME(N) operand_equal_p (TREE_OPERAND (arg0, N), \
2593 TREE_OPERAND (arg1, N), flags)
2594
2595 #define OP_SAME_WITH_NULL(N) \
2596 ((!TREE_OPERAND (arg0, N) || !TREE_OPERAND (arg1, N)) \
2597 ? TREE_OPERAND (arg0, N) == TREE_OPERAND (arg1, N) : OP_SAME (N))
2598
2599 switch (TREE_CODE_CLASS (TREE_CODE (arg0)))
2600 {
2601 case tcc_unary:
2602 /* Two conversions are equal only if signedness and modes match. */
2603 switch (TREE_CODE (arg0))
2604 {
2605 case NOP_EXPR:
2606 case CONVERT_EXPR:
2607 case FIX_CEIL_EXPR:
2608 case FIX_TRUNC_EXPR:
2609 case FIX_FLOOR_EXPR:
2610 case FIX_ROUND_EXPR:
2611 if (TYPE_UNSIGNED (TREE_TYPE (arg0))
2612 != TYPE_UNSIGNED (TREE_TYPE (arg1)))
2613 return 0;
2614 break;
2615 default:
2616 break;
2617 }
2618
2619 return OP_SAME (0);
2620
2621
2622 case tcc_comparison:
2623 case tcc_binary:
2624 if (OP_SAME (0) && OP_SAME (1))
2625 return 1;
2626
2627 /* For commutative ops, allow the other order. */
2628 return (commutative_tree_code (TREE_CODE (arg0))
2629 && operand_equal_p (TREE_OPERAND (arg0, 0),
2630 TREE_OPERAND (arg1, 1), flags)
2631 && operand_equal_p (TREE_OPERAND (arg0, 1),
2632 TREE_OPERAND (arg1, 0), flags));
2633
2634 case tcc_reference:
2635 /* If either of the pointer (or reference) expressions we are
2636 dereferencing contain a side effect, these cannot be equal. */
2637 if (TREE_SIDE_EFFECTS (arg0)
2638 || TREE_SIDE_EFFECTS (arg1))
2639 return 0;
2640
2641 switch (TREE_CODE (arg0))
2642 {
2643 case INDIRECT_REF:
2644 case ALIGN_INDIRECT_REF:
2645 case MISALIGNED_INDIRECT_REF:
2646 case REALPART_EXPR:
2647 case IMAGPART_EXPR:
2648 return OP_SAME (0);
2649
2650 case ARRAY_REF:
2651 case ARRAY_RANGE_REF:
2652 /* Operands 2 and 3 may be null. */
2653 return (OP_SAME (0)
2654 && OP_SAME (1)
2655 && OP_SAME_WITH_NULL (2)
2656 && OP_SAME_WITH_NULL (3));
2657
2658 case COMPONENT_REF:
2659 /* Handle operand 2 the same as for ARRAY_REF. Operand 0
2660 may be NULL when we're called to compare MEM_EXPRs. */
2661 return OP_SAME_WITH_NULL (0)
2662 && OP_SAME (1)
2663 && OP_SAME_WITH_NULL (2);
2664
2665 case BIT_FIELD_REF:
2666 return OP_SAME (0) && OP_SAME (1) && OP_SAME (2);
2667
2668 default:
2669 return 0;
2670 }
2671
2672 case tcc_expression:
2673 switch (TREE_CODE (arg0))
2674 {
2675 case ADDR_EXPR:
2676 case TRUTH_NOT_EXPR:
2677 return OP_SAME (0);
2678
2679 case TRUTH_ANDIF_EXPR:
2680 case TRUTH_ORIF_EXPR:
2681 return OP_SAME (0) && OP_SAME (1);
2682
2683 case TRUTH_AND_EXPR:
2684 case TRUTH_OR_EXPR:
2685 case TRUTH_XOR_EXPR:
2686 if (OP_SAME (0) && OP_SAME (1))
2687 return 1;
2688
2689 /* Otherwise take into account this is a commutative operation. */
2690 return (operand_equal_p (TREE_OPERAND (arg0, 0),
2691 TREE_OPERAND (arg1, 1), flags)
2692 && operand_equal_p (TREE_OPERAND (arg0, 1),
2693 TREE_OPERAND (arg1, 0), flags));
2694
2695 case CALL_EXPR:
2696 /* If the CALL_EXPRs call different functions, then they
2697 clearly can not be equal. */
2698 if (!OP_SAME (0))
2699 return 0;
2700
2701 {
2702 unsigned int cef = call_expr_flags (arg0);
2703 if (flags & OEP_PURE_SAME)
2704 cef &= ECF_CONST | ECF_PURE;
2705 else
2706 cef &= ECF_CONST;
2707 if (!cef)
2708 return 0;
2709 }
2710
2711 /* Now see if all the arguments are the same. operand_equal_p
2712 does not handle TREE_LIST, so we walk the operands here
2713 feeding them to operand_equal_p. */
2714 arg0 = TREE_OPERAND (arg0, 1);
2715 arg1 = TREE_OPERAND (arg1, 1);
2716 while (arg0 && arg1)
2717 {
2718 if (! operand_equal_p (TREE_VALUE (arg0), TREE_VALUE (arg1),
2719 flags))
2720 return 0;
2721
2722 arg0 = TREE_CHAIN (arg0);
2723 arg1 = TREE_CHAIN (arg1);
2724 }
2725
2726 /* If we get here and both argument lists are exhausted
2727 then the CALL_EXPRs are equal. */
2728 return ! (arg0 || arg1);
2729
2730 default:
2731 return 0;
2732 }
2733
2734 case tcc_declaration:
2735 /* Consider __builtin_sqrt equal to sqrt. */
2736 return (TREE_CODE (arg0) == FUNCTION_DECL
2737 && DECL_BUILT_IN (arg0) && DECL_BUILT_IN (arg1)
2738 && DECL_BUILT_IN_CLASS (arg0) == DECL_BUILT_IN_CLASS (arg1)
2739 && DECL_FUNCTION_CODE (arg0) == DECL_FUNCTION_CODE (arg1));
2740
2741 default:
2742 return 0;
2743 }
2744
2745 #undef OP_SAME
2746 #undef OP_SAME_WITH_NULL
2747 }
2748 \f
2749 /* Similar to operand_equal_p, but see if ARG0 might have been made by
2750 shorten_compare from ARG1 when ARG1 was being compared with OTHER.
2751
2752 When in doubt, return 0. */
2753
2754 static int
2755 operand_equal_for_comparison_p (tree arg0, tree arg1, tree other)
2756 {
2757 int unsignedp1, unsignedpo;
2758 tree primarg0, primarg1, primother;
2759 unsigned int correct_width;
2760
2761 if (operand_equal_p (arg0, arg1, 0))
2762 return 1;
2763
2764 if (! INTEGRAL_TYPE_P (TREE_TYPE (arg0))
2765 || ! INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
2766 return 0;
2767
2768 /* Discard any conversions that don't change the modes of ARG0 and ARG1
2769 and see if the inner values are the same. This removes any
2770 signedness comparison, which doesn't matter here. */
2771 primarg0 = arg0, primarg1 = arg1;
2772 STRIP_NOPS (primarg0);
2773 STRIP_NOPS (primarg1);
2774 if (operand_equal_p (primarg0, primarg1, 0))
2775 return 1;
2776
2777 /* Duplicate what shorten_compare does to ARG1 and see if that gives the
2778 actual comparison operand, ARG0.
2779
2780 First throw away any conversions to wider types
2781 already present in the operands. */
2782
2783 primarg1 = get_narrower (arg1, &unsignedp1);
2784 primother = get_narrower (other, &unsignedpo);
2785
2786 correct_width = TYPE_PRECISION (TREE_TYPE (arg1));
2787 if (unsignedp1 == unsignedpo
2788 && TYPE_PRECISION (TREE_TYPE (primarg1)) < correct_width
2789 && TYPE_PRECISION (TREE_TYPE (primother)) < correct_width)
2790 {
2791 tree type = TREE_TYPE (arg0);
2792
2793 /* Make sure shorter operand is extended the right way
2794 to match the longer operand. */
2795 primarg1 = fold_convert (lang_hooks.types.signed_or_unsigned_type
2796 (unsignedp1, TREE_TYPE (primarg1)), primarg1);
2797
2798 if (operand_equal_p (arg0, fold_convert (type, primarg1), 0))
2799 return 1;
2800 }
2801
2802 return 0;
2803 }
2804 \f
2805 /* See if ARG is an expression that is either a comparison or is performing
2806 arithmetic on comparisons. The comparisons must only be comparing
2807 two different values, which will be stored in *CVAL1 and *CVAL2; if
2808 they are nonzero it means that some operands have already been found.
2809 No variables may be used anywhere else in the expression except in the
2810 comparisons. If SAVE_P is true it means we removed a SAVE_EXPR around
2811 the expression and save_expr needs to be called with CVAL1 and CVAL2.
2812
2813 If this is true, return 1. Otherwise, return zero. */
2814
2815 static int
2816 twoval_comparison_p (tree arg, tree *cval1, tree *cval2, int *save_p)
2817 {
2818 enum tree_code code = TREE_CODE (arg);
2819 enum tree_code_class class = TREE_CODE_CLASS (code);
2820
2821 /* We can handle some of the tcc_expression cases here. */
2822 if (class == tcc_expression && code == TRUTH_NOT_EXPR)
2823 class = tcc_unary;
2824 else if (class == tcc_expression
2825 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR
2826 || code == COMPOUND_EXPR))
2827 class = tcc_binary;
2828
2829 else if (class == tcc_expression && code == SAVE_EXPR
2830 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
2831 {
2832 /* If we've already found a CVAL1 or CVAL2, this expression is
2833 two complex to handle. */
2834 if (*cval1 || *cval2)
2835 return 0;
2836
2837 class = tcc_unary;
2838 *save_p = 1;
2839 }
2840
2841 switch (class)
2842 {
2843 case tcc_unary:
2844 return twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p);
2845
2846 case tcc_binary:
2847 return (twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p)
2848 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2849 cval1, cval2, save_p));
2850
2851 case tcc_constant:
2852 return 1;
2853
2854 case tcc_expression:
2855 if (code == COND_EXPR)
2856 return (twoval_comparison_p (TREE_OPERAND (arg, 0),
2857 cval1, cval2, save_p)
2858 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2859 cval1, cval2, save_p)
2860 && twoval_comparison_p (TREE_OPERAND (arg, 2),
2861 cval1, cval2, save_p));
2862 return 0;
2863
2864 case tcc_comparison:
2865 /* First see if we can handle the first operand, then the second. For
2866 the second operand, we know *CVAL1 can't be zero. It must be that
2867 one side of the comparison is each of the values; test for the
2868 case where this isn't true by failing if the two operands
2869 are the same. */
2870
2871 if (operand_equal_p (TREE_OPERAND (arg, 0),
2872 TREE_OPERAND (arg, 1), 0))
2873 return 0;
2874
2875 if (*cval1 == 0)
2876 *cval1 = TREE_OPERAND (arg, 0);
2877 else if (operand_equal_p (*cval1, TREE_OPERAND (arg, 0), 0))
2878 ;
2879 else if (*cval2 == 0)
2880 *cval2 = TREE_OPERAND (arg, 0);
2881 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 0), 0))
2882 ;
2883 else
2884 return 0;
2885
2886 if (operand_equal_p (*cval1, TREE_OPERAND (arg, 1), 0))
2887 ;
2888 else if (*cval2 == 0)
2889 *cval2 = TREE_OPERAND (arg, 1);
2890 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 1), 0))
2891 ;
2892 else
2893 return 0;
2894
2895 return 1;
2896
2897 default:
2898 return 0;
2899 }
2900 }
2901 \f
2902 /* ARG is a tree that is known to contain just arithmetic operations and
2903 comparisons. Evaluate the operations in the tree substituting NEW0 for
2904 any occurrence of OLD0 as an operand of a comparison and likewise for
2905 NEW1 and OLD1. */
2906
2907 static tree
2908 eval_subst (tree arg, tree old0, tree new0, tree old1, tree new1)
2909 {
2910 tree type = TREE_TYPE (arg);
2911 enum tree_code code = TREE_CODE (arg);
2912 enum tree_code_class class = TREE_CODE_CLASS (code);
2913
2914 /* We can handle some of the tcc_expression cases here. */
2915 if (class == tcc_expression && code == TRUTH_NOT_EXPR)
2916 class = tcc_unary;
2917 else if (class == tcc_expression
2918 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2919 class = tcc_binary;
2920
2921 switch (class)
2922 {
2923 case tcc_unary:
2924 return fold_build1 (code, type,
2925 eval_subst (TREE_OPERAND (arg, 0),
2926 old0, new0, old1, new1));
2927
2928 case tcc_binary:
2929 return fold_build2 (code, type,
2930 eval_subst (TREE_OPERAND (arg, 0),
2931 old0, new0, old1, new1),
2932 eval_subst (TREE_OPERAND (arg, 1),
2933 old0, new0, old1, new1));
2934
2935 case tcc_expression:
2936 switch (code)
2937 {
2938 case SAVE_EXPR:
2939 return eval_subst (TREE_OPERAND (arg, 0), old0, new0, old1, new1);
2940
2941 case COMPOUND_EXPR:
2942 return eval_subst (TREE_OPERAND (arg, 1), old0, new0, old1, new1);
2943
2944 case COND_EXPR:
2945 return fold_build3 (code, type,
2946 eval_subst (TREE_OPERAND (arg, 0),
2947 old0, new0, old1, new1),
2948 eval_subst (TREE_OPERAND (arg, 1),
2949 old0, new0, old1, new1),
2950 eval_subst (TREE_OPERAND (arg, 2),
2951 old0, new0, old1, new1));
2952 default:
2953 break;
2954 }
2955 /* Fall through - ??? */
2956
2957 case tcc_comparison:
2958 {
2959 tree arg0 = TREE_OPERAND (arg, 0);
2960 tree arg1 = TREE_OPERAND (arg, 1);
2961
2962 /* We need to check both for exact equality and tree equality. The
2963 former will be true if the operand has a side-effect. In that
2964 case, we know the operand occurred exactly once. */
2965
2966 if (arg0 == old0 || operand_equal_p (arg0, old0, 0))
2967 arg0 = new0;
2968 else if (arg0 == old1 || operand_equal_p (arg0, old1, 0))
2969 arg0 = new1;
2970
2971 if (arg1 == old0 || operand_equal_p (arg1, old0, 0))
2972 arg1 = new0;
2973 else if (arg1 == old1 || operand_equal_p (arg1, old1, 0))
2974 arg1 = new1;
2975
2976 return fold_build2 (code, type, arg0, arg1);
2977 }
2978
2979 default:
2980 return arg;
2981 }
2982 }
2983 \f
2984 /* Return a tree for the case when the result of an expression is RESULT
2985 converted to TYPE and OMITTED was previously an operand of the expression
2986 but is now not needed (e.g., we folded OMITTED * 0).
2987
2988 If OMITTED has side effects, we must evaluate it. Otherwise, just do
2989 the conversion of RESULT to TYPE. */
2990
2991 tree
2992 omit_one_operand (tree type, tree result, tree omitted)
2993 {
2994 tree t = fold_convert (type, result);
2995
2996 if (TREE_SIDE_EFFECTS (omitted))
2997 return build2 (COMPOUND_EXPR, type, fold_ignored_result (omitted), t);
2998
2999 return non_lvalue (t);
3000 }
3001
3002 /* Similar, but call pedantic_non_lvalue instead of non_lvalue. */
3003
3004 static tree
3005 pedantic_omit_one_operand (tree type, tree result, tree omitted)
3006 {
3007 tree t = fold_convert (type, result);
3008
3009 if (TREE_SIDE_EFFECTS (omitted))
3010 return build2 (COMPOUND_EXPR, type, fold_ignored_result (omitted), t);
3011
3012 return pedantic_non_lvalue (t);
3013 }
3014
3015 /* Return a tree for the case when the result of an expression is RESULT
3016 converted to TYPE and OMITTED1 and OMITTED2 were previously operands
3017 of the expression but are now not needed.
3018
3019 If OMITTED1 or OMITTED2 has side effects, they must be evaluated.
3020 If both OMITTED1 and OMITTED2 have side effects, OMITTED1 is
3021 evaluated before OMITTED2. Otherwise, if neither has side effects,
3022 just do the conversion of RESULT to TYPE. */
3023
3024 tree
3025 omit_two_operands (tree type, tree result, tree omitted1, tree omitted2)
3026 {
3027 tree t = fold_convert (type, result);
3028
3029 if (TREE_SIDE_EFFECTS (omitted2))
3030 t = build2 (COMPOUND_EXPR, type, omitted2, t);
3031 if (TREE_SIDE_EFFECTS (omitted1))
3032 t = build2 (COMPOUND_EXPR, type, omitted1, t);
3033
3034 return TREE_CODE (t) != COMPOUND_EXPR ? non_lvalue (t) : t;
3035 }
3036
3037 \f
3038 /* Return a simplified tree node for the truth-negation of ARG. This
3039 never alters ARG itself. We assume that ARG is an operation that
3040 returns a truth value (0 or 1).
3041
3042 FIXME: one would think we would fold the result, but it causes
3043 problems with the dominator optimizer. */
3044 tree
3045 invert_truthvalue (tree arg)
3046 {
3047 tree type = TREE_TYPE (arg);
3048 enum tree_code code = TREE_CODE (arg);
3049
3050 if (code == ERROR_MARK)
3051 return arg;
3052
3053 /* If this is a comparison, we can simply invert it, except for
3054 floating-point non-equality comparisons, in which case we just
3055 enclose a TRUTH_NOT_EXPR around what we have. */
3056
3057 if (TREE_CODE_CLASS (code) == tcc_comparison)
3058 {
3059 tree op_type = TREE_TYPE (TREE_OPERAND (arg, 0));
3060 if (FLOAT_TYPE_P (op_type)
3061 && flag_trapping_math
3062 && code != ORDERED_EXPR && code != UNORDERED_EXPR
3063 && code != NE_EXPR && code != EQ_EXPR)
3064 return build1 (TRUTH_NOT_EXPR, type, arg);
3065 else
3066 {
3067 code = invert_tree_comparison (code,
3068 HONOR_NANS (TYPE_MODE (op_type)));
3069 if (code == ERROR_MARK)
3070 return build1 (TRUTH_NOT_EXPR, type, arg);
3071 else
3072 return build2 (code, type,
3073 TREE_OPERAND (arg, 0), TREE_OPERAND (arg, 1));
3074 }
3075 }
3076
3077 switch (code)
3078 {
3079 case INTEGER_CST:
3080 return constant_boolean_node (integer_zerop (arg), type);
3081
3082 case TRUTH_AND_EXPR:
3083 return build2 (TRUTH_OR_EXPR, type,
3084 invert_truthvalue (TREE_OPERAND (arg, 0)),
3085 invert_truthvalue (TREE_OPERAND (arg, 1)));
3086
3087 case TRUTH_OR_EXPR:
3088 return build2 (TRUTH_AND_EXPR, type,
3089 invert_truthvalue (TREE_OPERAND (arg, 0)),
3090 invert_truthvalue (TREE_OPERAND (arg, 1)));
3091
3092 case TRUTH_XOR_EXPR:
3093 /* Here we can invert either operand. We invert the first operand
3094 unless the second operand is a TRUTH_NOT_EXPR in which case our
3095 result is the XOR of the first operand with the inside of the
3096 negation of the second operand. */
3097
3098 if (TREE_CODE (TREE_OPERAND (arg, 1)) == TRUTH_NOT_EXPR)
3099 return build2 (TRUTH_XOR_EXPR, type, TREE_OPERAND (arg, 0),
3100 TREE_OPERAND (TREE_OPERAND (arg, 1), 0));
3101 else
3102 return build2 (TRUTH_XOR_EXPR, type,
3103 invert_truthvalue (TREE_OPERAND (arg, 0)),
3104 TREE_OPERAND (arg, 1));
3105
3106 case TRUTH_ANDIF_EXPR:
3107 return build2 (TRUTH_ORIF_EXPR, type,
3108 invert_truthvalue (TREE_OPERAND (arg, 0)),
3109 invert_truthvalue (TREE_OPERAND (arg, 1)));
3110
3111 case TRUTH_ORIF_EXPR:
3112 return build2 (TRUTH_ANDIF_EXPR, type,
3113 invert_truthvalue (TREE_OPERAND (arg, 0)),
3114 invert_truthvalue (TREE_OPERAND (arg, 1)));
3115
3116 case TRUTH_NOT_EXPR:
3117 return TREE_OPERAND (arg, 0);
3118
3119 case COND_EXPR:
3120 {
3121 tree arg1 = TREE_OPERAND (arg, 1);
3122 tree arg2 = TREE_OPERAND (arg, 2);
3123 /* A COND_EXPR may have a throw as one operand, which
3124 then has void type. Just leave void operands
3125 as they are. */
3126 return build3 (COND_EXPR, type, TREE_OPERAND (arg, 0),
3127 VOID_TYPE_P (TREE_TYPE (arg1))
3128 ? arg1 : invert_truthvalue (arg1),
3129 VOID_TYPE_P (TREE_TYPE (arg2))
3130 ? arg2 : invert_truthvalue (arg2));
3131 }
3132
3133 case COMPOUND_EXPR:
3134 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg, 0),
3135 invert_truthvalue (TREE_OPERAND (arg, 1)));
3136
3137 case NON_LVALUE_EXPR:
3138 return invert_truthvalue (TREE_OPERAND (arg, 0));
3139
3140 case NOP_EXPR:
3141 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
3142 break;
3143
3144 case CONVERT_EXPR:
3145 case FLOAT_EXPR:
3146 return build1 (TREE_CODE (arg), type,
3147 invert_truthvalue (TREE_OPERAND (arg, 0)));
3148
3149 case BIT_AND_EXPR:
3150 if (!integer_onep (TREE_OPERAND (arg, 1)))
3151 break;
3152 return build2 (EQ_EXPR, type, arg,
3153 build_int_cst (type, 0));
3154
3155 case SAVE_EXPR:
3156 return build1 (TRUTH_NOT_EXPR, type, arg);
3157
3158 case CLEANUP_POINT_EXPR:
3159 return build1 (CLEANUP_POINT_EXPR, type,
3160 invert_truthvalue (TREE_OPERAND (arg, 0)));
3161
3162 default:
3163 break;
3164 }
3165 gcc_assert (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE);
3166 return build1 (TRUTH_NOT_EXPR, type, arg);
3167 }
3168
3169 /* Given a bit-wise operation CODE applied to ARG0 and ARG1, see if both
3170 operands are another bit-wise operation with a common input. If so,
3171 distribute the bit operations to save an operation and possibly two if
3172 constants are involved. For example, convert
3173 (A | B) & (A | C) into A | (B & C)
3174 Further simplification will occur if B and C are constants.
3175
3176 If this optimization cannot be done, 0 will be returned. */
3177
3178 static tree
3179 distribute_bit_expr (enum tree_code code, tree type, tree arg0, tree arg1)
3180 {
3181 tree common;
3182 tree left, right;
3183
3184 if (TREE_CODE (arg0) != TREE_CODE (arg1)
3185 || TREE_CODE (arg0) == code
3186 || (TREE_CODE (arg0) != BIT_AND_EXPR
3187 && TREE_CODE (arg0) != BIT_IOR_EXPR))
3188 return 0;
3189
3190 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0))
3191 {
3192 common = TREE_OPERAND (arg0, 0);
3193 left = TREE_OPERAND (arg0, 1);
3194 right = TREE_OPERAND (arg1, 1);
3195 }
3196 else if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 1), 0))
3197 {
3198 common = TREE_OPERAND (arg0, 0);
3199 left = TREE_OPERAND (arg0, 1);
3200 right = TREE_OPERAND (arg1, 0);
3201 }
3202 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 0), 0))
3203 {
3204 common = TREE_OPERAND (arg0, 1);
3205 left = TREE_OPERAND (arg0, 0);
3206 right = TREE_OPERAND (arg1, 1);
3207 }
3208 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1), 0))
3209 {
3210 common = TREE_OPERAND (arg0, 1);
3211 left = TREE_OPERAND (arg0, 0);
3212 right = TREE_OPERAND (arg1, 0);
3213 }
3214 else
3215 return 0;
3216
3217 return fold_build2 (TREE_CODE (arg0), type, common,
3218 fold_build2 (code, type, left, right));
3219 }
3220
3221 /* Knowing that ARG0 and ARG1 are both RDIV_EXPRs, simplify a binary operation
3222 with code CODE. This optimization is unsafe. */
3223 static tree
3224 distribute_real_division (enum tree_code code, tree type, tree arg0, tree arg1)
3225 {
3226 bool mul0 = TREE_CODE (arg0) == MULT_EXPR;
3227 bool mul1 = TREE_CODE (arg1) == MULT_EXPR;
3228
3229 /* (A / C) +- (B / C) -> (A +- B) / C. */
3230 if (mul0 == mul1
3231 && operand_equal_p (TREE_OPERAND (arg0, 1),
3232 TREE_OPERAND (arg1, 1), 0))
3233 return fold_build2 (mul0 ? MULT_EXPR : RDIV_EXPR, type,
3234 fold_build2 (code, type,
3235 TREE_OPERAND (arg0, 0),
3236 TREE_OPERAND (arg1, 0)),
3237 TREE_OPERAND (arg0, 1));
3238
3239 /* (A / C1) +- (A / C2) -> A * (1 / C1 +- 1 / C2). */
3240 if (operand_equal_p (TREE_OPERAND (arg0, 0),
3241 TREE_OPERAND (arg1, 0), 0)
3242 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
3243 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST)
3244 {
3245 REAL_VALUE_TYPE r0, r1;
3246 r0 = TREE_REAL_CST (TREE_OPERAND (arg0, 1));
3247 r1 = TREE_REAL_CST (TREE_OPERAND (arg1, 1));
3248 if (!mul0)
3249 real_arithmetic (&r0, RDIV_EXPR, &dconst1, &r0);
3250 if (!mul1)
3251 real_arithmetic (&r1, RDIV_EXPR, &dconst1, &r1);
3252 real_arithmetic (&r0, code, &r0, &r1);
3253 return fold_build2 (MULT_EXPR, type,
3254 TREE_OPERAND (arg0, 0),
3255 build_real (type, r0));
3256 }
3257
3258 return NULL_TREE;
3259 }
3260 \f
3261 /* Return a BIT_FIELD_REF of type TYPE to refer to BITSIZE bits of INNER
3262 starting at BITPOS. The field is unsigned if UNSIGNEDP is nonzero. */
3263
3264 static tree
3265 make_bit_field_ref (tree inner, tree type, int bitsize, int bitpos,
3266 int unsignedp)
3267 {
3268 tree result;
3269
3270 if (bitpos == 0)
3271 {
3272 tree size = TYPE_SIZE (TREE_TYPE (inner));
3273 if ((INTEGRAL_TYPE_P (TREE_TYPE (inner))
3274 || POINTER_TYPE_P (TREE_TYPE (inner)))
3275 && host_integerp (size, 0)
3276 && tree_low_cst (size, 0) == bitsize)
3277 return fold_convert (type, inner);
3278 }
3279
3280 result = build3 (BIT_FIELD_REF, type, inner,
3281 size_int (bitsize), bitsize_int (bitpos));
3282
3283 BIT_FIELD_REF_UNSIGNED (result) = unsignedp;
3284
3285 return result;
3286 }
3287
3288 /* Optimize a bit-field compare.
3289
3290 There are two cases: First is a compare against a constant and the
3291 second is a comparison of two items where the fields are at the same
3292 bit position relative to the start of a chunk (byte, halfword, word)
3293 large enough to contain it. In these cases we can avoid the shift
3294 implicit in bitfield extractions.
3295
3296 For constants, we emit a compare of the shifted constant with the
3297 BIT_AND_EXPR of a mask and a byte, halfword, or word of the operand being
3298 compared. For two fields at the same position, we do the ANDs with the
3299 similar mask and compare the result of the ANDs.
3300
3301 CODE is the comparison code, known to be either NE_EXPR or EQ_EXPR.
3302 COMPARE_TYPE is the type of the comparison, and LHS and RHS
3303 are the left and right operands of the comparison, respectively.
3304
3305 If the optimization described above can be done, we return the resulting
3306 tree. Otherwise we return zero. */
3307
3308 static tree
3309 optimize_bit_field_compare (enum tree_code code, tree compare_type,
3310 tree lhs, tree rhs)
3311 {
3312 HOST_WIDE_INT lbitpos, lbitsize, rbitpos, rbitsize, nbitpos, nbitsize;
3313 tree type = TREE_TYPE (lhs);
3314 tree signed_type, unsigned_type;
3315 int const_p = TREE_CODE (rhs) == INTEGER_CST;
3316 enum machine_mode lmode, rmode, nmode;
3317 int lunsignedp, runsignedp;
3318 int lvolatilep = 0, rvolatilep = 0;
3319 tree linner, rinner = NULL_TREE;
3320 tree mask;
3321 tree offset;
3322
3323 /* Get all the information about the extractions being done. If the bit size
3324 if the same as the size of the underlying object, we aren't doing an
3325 extraction at all and so can do nothing. We also don't want to
3326 do anything if the inner expression is a PLACEHOLDER_EXPR since we
3327 then will no longer be able to replace it. */
3328 linner = get_inner_reference (lhs, &lbitsize, &lbitpos, &offset, &lmode,
3329 &lunsignedp, &lvolatilep, false);
3330 if (linner == lhs || lbitsize == GET_MODE_BITSIZE (lmode) || lbitsize < 0
3331 || offset != 0 || TREE_CODE (linner) == PLACEHOLDER_EXPR)
3332 return 0;
3333
3334 if (!const_p)
3335 {
3336 /* If this is not a constant, we can only do something if bit positions,
3337 sizes, and signedness are the same. */
3338 rinner = get_inner_reference (rhs, &rbitsize, &rbitpos, &offset, &rmode,
3339 &runsignedp, &rvolatilep, false);
3340
3341 if (rinner == rhs || lbitpos != rbitpos || lbitsize != rbitsize
3342 || lunsignedp != runsignedp || offset != 0
3343 || TREE_CODE (rinner) == PLACEHOLDER_EXPR)
3344 return 0;
3345 }
3346
3347 /* See if we can find a mode to refer to this field. We should be able to,
3348 but fail if we can't. */
3349 nmode = get_best_mode (lbitsize, lbitpos,
3350 const_p ? TYPE_ALIGN (TREE_TYPE (linner))
3351 : MIN (TYPE_ALIGN (TREE_TYPE (linner)),
3352 TYPE_ALIGN (TREE_TYPE (rinner))),
3353 word_mode, lvolatilep || rvolatilep);
3354 if (nmode == VOIDmode)
3355 return 0;
3356
3357 /* Set signed and unsigned types of the precision of this mode for the
3358 shifts below. */
3359 signed_type = lang_hooks.types.type_for_mode (nmode, 0);
3360 unsigned_type = lang_hooks.types.type_for_mode (nmode, 1);
3361
3362 /* Compute the bit position and size for the new reference and our offset
3363 within it. If the new reference is the same size as the original, we
3364 won't optimize anything, so return zero. */
3365 nbitsize = GET_MODE_BITSIZE (nmode);
3366 nbitpos = lbitpos & ~ (nbitsize - 1);
3367 lbitpos -= nbitpos;
3368 if (nbitsize == lbitsize)
3369 return 0;
3370
3371 if (BYTES_BIG_ENDIAN)
3372 lbitpos = nbitsize - lbitsize - lbitpos;
3373
3374 /* Make the mask to be used against the extracted field. */
3375 mask = build_int_cst (unsigned_type, -1);
3376 mask = force_fit_type (mask, 0, false, false);
3377 mask = fold_convert (unsigned_type, mask);
3378 mask = const_binop (LSHIFT_EXPR, mask, size_int (nbitsize - lbitsize), 0);
3379 mask = const_binop (RSHIFT_EXPR, mask,
3380 size_int (nbitsize - lbitsize - lbitpos), 0);
3381
3382 if (! const_p)
3383 /* If not comparing with constant, just rework the comparison
3384 and return. */
3385 return build2 (code, compare_type,
3386 build2 (BIT_AND_EXPR, unsigned_type,
3387 make_bit_field_ref (linner, unsigned_type,
3388 nbitsize, nbitpos, 1),
3389 mask),
3390 build2 (BIT_AND_EXPR, unsigned_type,
3391 make_bit_field_ref (rinner, unsigned_type,
3392 nbitsize, nbitpos, 1),
3393 mask));
3394
3395 /* Otherwise, we are handling the constant case. See if the constant is too
3396 big for the field. Warn and return a tree of for 0 (false) if so. We do
3397 this not only for its own sake, but to avoid having to test for this
3398 error case below. If we didn't, we might generate wrong code.
3399
3400 For unsigned fields, the constant shifted right by the field length should
3401 be all zero. For signed fields, the high-order bits should agree with
3402 the sign bit. */
3403
3404 if (lunsignedp)
3405 {
3406 if (! integer_zerop (const_binop (RSHIFT_EXPR,
3407 fold_convert (unsigned_type, rhs),
3408 size_int (lbitsize), 0)))
3409 {
3410 warning (0, "comparison is always %d due to width of bit-field",
3411 code == NE_EXPR);
3412 return constant_boolean_node (code == NE_EXPR, compare_type);
3413 }
3414 }
3415 else
3416 {
3417 tree tem = const_binop (RSHIFT_EXPR, fold_convert (signed_type, rhs),
3418 size_int (lbitsize - 1), 0);
3419 if (! integer_zerop (tem) && ! integer_all_onesp (tem))
3420 {
3421 warning (0, "comparison is always %d due to width of bit-field",
3422 code == NE_EXPR);
3423 return constant_boolean_node (code == NE_EXPR, compare_type);
3424 }
3425 }
3426
3427 /* Single-bit compares should always be against zero. */
3428 if (lbitsize == 1 && ! integer_zerop (rhs))
3429 {
3430 code = code == EQ_EXPR ? NE_EXPR : EQ_EXPR;
3431 rhs = build_int_cst (type, 0);
3432 }
3433
3434 /* Make a new bitfield reference, shift the constant over the
3435 appropriate number of bits and mask it with the computed mask
3436 (in case this was a signed field). If we changed it, make a new one. */
3437 lhs = make_bit_field_ref (linner, unsigned_type, nbitsize, nbitpos, 1);
3438 if (lvolatilep)
3439 {
3440 TREE_SIDE_EFFECTS (lhs) = 1;
3441 TREE_THIS_VOLATILE (lhs) = 1;
3442 }
3443
3444 rhs = const_binop (BIT_AND_EXPR,
3445 const_binop (LSHIFT_EXPR,
3446 fold_convert (unsigned_type, rhs),
3447 size_int (lbitpos), 0),
3448 mask, 0);
3449
3450 return build2 (code, compare_type,
3451 build2 (BIT_AND_EXPR, unsigned_type, lhs, mask),
3452 rhs);
3453 }
3454 \f
3455 /* Subroutine for fold_truthop: decode a field reference.
3456
3457 If EXP is a comparison reference, we return the innermost reference.
3458
3459 *PBITSIZE is set to the number of bits in the reference, *PBITPOS is
3460 set to the starting bit number.
3461
3462 If the innermost field can be completely contained in a mode-sized
3463 unit, *PMODE is set to that mode. Otherwise, it is set to VOIDmode.
3464
3465 *PVOLATILEP is set to 1 if the any expression encountered is volatile;
3466 otherwise it is not changed.
3467
3468 *PUNSIGNEDP is set to the signedness of the field.
3469
3470 *PMASK is set to the mask used. This is either contained in a
3471 BIT_AND_EXPR or derived from the width of the field.
3472
3473 *PAND_MASK is set to the mask found in a BIT_AND_EXPR, if any.
3474
3475 Return 0 if this is not a component reference or is one that we can't
3476 do anything with. */
3477
3478 static tree
3479 decode_field_reference (tree exp, HOST_WIDE_INT *pbitsize,
3480 HOST_WIDE_INT *pbitpos, enum machine_mode *pmode,
3481 int *punsignedp, int *pvolatilep,
3482 tree *pmask, tree *pand_mask)
3483 {
3484 tree outer_type = 0;
3485 tree and_mask = 0;
3486 tree mask, inner, offset;
3487 tree unsigned_type;
3488 unsigned int precision;
3489
3490 /* All the optimizations using this function assume integer fields.
3491 There are problems with FP fields since the type_for_size call
3492 below can fail for, e.g., XFmode. */
3493 if (! INTEGRAL_TYPE_P (TREE_TYPE (exp)))
3494 return 0;
3495
3496 /* We are interested in the bare arrangement of bits, so strip everything
3497 that doesn't affect the machine mode. However, record the type of the
3498 outermost expression if it may matter below. */
3499 if (TREE_CODE (exp) == NOP_EXPR
3500 || TREE_CODE (exp) == CONVERT_EXPR
3501 || TREE_CODE (exp) == NON_LVALUE_EXPR)
3502 outer_type = TREE_TYPE (exp);
3503 STRIP_NOPS (exp);
3504
3505 if (TREE_CODE (exp) == BIT_AND_EXPR)
3506 {
3507 and_mask = TREE_OPERAND (exp, 1);
3508 exp = TREE_OPERAND (exp, 0);
3509 STRIP_NOPS (exp); STRIP_NOPS (and_mask);
3510 if (TREE_CODE (and_mask) != INTEGER_CST)
3511 return 0;
3512 }
3513
3514 inner = get_inner_reference (exp, pbitsize, pbitpos, &offset, pmode,
3515 punsignedp, pvolatilep, false);
3516 if ((inner == exp && and_mask == 0)
3517 || *pbitsize < 0 || offset != 0
3518 || TREE_CODE (inner) == PLACEHOLDER_EXPR)
3519 return 0;
3520
3521 /* If the number of bits in the reference is the same as the bitsize of
3522 the outer type, then the outer type gives the signedness. Otherwise
3523 (in case of a small bitfield) the signedness is unchanged. */
3524 if (outer_type && *pbitsize == TYPE_PRECISION (outer_type))
3525 *punsignedp = TYPE_UNSIGNED (outer_type);
3526
3527 /* Compute the mask to access the bitfield. */
3528 unsigned_type = lang_hooks.types.type_for_size (*pbitsize, 1);
3529 precision = TYPE_PRECISION (unsigned_type);
3530
3531 mask = build_int_cst (unsigned_type, -1);
3532 mask = force_fit_type (mask, 0, false, false);
3533
3534 mask = const_binop (LSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
3535 mask = const_binop (RSHIFT_EXPR, mask, size_int (precision - *pbitsize), 0);
3536
3537 /* Merge it with the mask we found in the BIT_AND_EXPR, if any. */
3538 if (and_mask != 0)
3539 mask = fold_build2 (BIT_AND_EXPR, unsigned_type,
3540 fold_convert (unsigned_type, and_mask), mask);
3541
3542 *pmask = mask;
3543 *pand_mask = and_mask;
3544 return inner;
3545 }
3546
3547 /* Return nonzero if MASK represents a mask of SIZE ones in the low-order
3548 bit positions. */
3549
3550 static int
3551 all_ones_mask_p (tree mask, int size)
3552 {
3553 tree type = TREE_TYPE (mask);
3554 unsigned int precision = TYPE_PRECISION (type);
3555 tree tmask;
3556
3557 tmask = build_int_cst (lang_hooks.types.signed_type (type), -1);
3558 tmask = force_fit_type (tmask, 0, false, false);
3559
3560 return
3561 tree_int_cst_equal (mask,
3562 const_binop (RSHIFT_EXPR,
3563 const_binop (LSHIFT_EXPR, tmask,
3564 size_int (precision - size),
3565 0),
3566 size_int (precision - size), 0));
3567 }
3568
3569 /* Subroutine for fold: determine if VAL is the INTEGER_CONST that
3570 represents the sign bit of EXP's type. If EXP represents a sign
3571 or zero extension, also test VAL against the unextended type.
3572 The return value is the (sub)expression whose sign bit is VAL,
3573 or NULL_TREE otherwise. */
3574
3575 static tree
3576 sign_bit_p (tree exp, tree val)
3577 {
3578 unsigned HOST_WIDE_INT mask_lo, lo;
3579 HOST_WIDE_INT mask_hi, hi;
3580 int width;
3581 tree t;
3582
3583 /* Tree EXP must have an integral type. */
3584 t = TREE_TYPE (exp);
3585 if (! INTEGRAL_TYPE_P (t))
3586 return NULL_TREE;
3587
3588 /* Tree VAL must be an integer constant. */
3589 if (TREE_CODE (val) != INTEGER_CST
3590 || TREE_CONSTANT_OVERFLOW (val))
3591 return NULL_TREE;
3592
3593 width = TYPE_PRECISION (t);
3594 if (width > HOST_BITS_PER_WIDE_INT)
3595 {
3596 hi = (unsigned HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT - 1);
3597 lo = 0;
3598
3599 mask_hi = ((unsigned HOST_WIDE_INT) -1
3600 >> (2 * HOST_BITS_PER_WIDE_INT - width));
3601 mask_lo = -1;
3602 }
3603 else
3604 {
3605 hi = 0;
3606 lo = (unsigned HOST_WIDE_INT) 1 << (width - 1);
3607
3608 mask_hi = 0;
3609 mask_lo = ((unsigned HOST_WIDE_INT) -1
3610 >> (HOST_BITS_PER_WIDE_INT - width));
3611 }
3612
3613 /* We mask off those bits beyond TREE_TYPE (exp) so that we can
3614 treat VAL as if it were unsigned. */
3615 if ((TREE_INT_CST_HIGH (val) & mask_hi) == hi
3616 && (TREE_INT_CST_LOW (val) & mask_lo) == lo)
3617 return exp;
3618
3619 /* Handle extension from a narrower type. */
3620 if (TREE_CODE (exp) == NOP_EXPR
3621 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))) < width)
3622 return sign_bit_p (TREE_OPERAND (exp, 0), val);
3623
3624 return NULL_TREE;
3625 }
3626
3627 /* Subroutine for fold_truthop: determine if an operand is simple enough
3628 to be evaluated unconditionally. */
3629
3630 static int
3631 simple_operand_p (tree exp)
3632 {
3633 /* Strip any conversions that don't change the machine mode. */
3634 STRIP_NOPS (exp);
3635
3636 return (CONSTANT_CLASS_P (exp)
3637 || TREE_CODE (exp) == SSA_NAME
3638 || (DECL_P (exp)
3639 && ! TREE_ADDRESSABLE (exp)
3640 && ! TREE_THIS_VOLATILE (exp)
3641 && ! DECL_NONLOCAL (exp)
3642 /* Don't regard global variables as simple. They may be
3643 allocated in ways unknown to the compiler (shared memory,
3644 #pragma weak, etc). */
3645 && ! TREE_PUBLIC (exp)
3646 && ! DECL_EXTERNAL (exp)
3647 /* Loading a static variable is unduly expensive, but global
3648 registers aren't expensive. */
3649 && (! TREE_STATIC (exp) || DECL_REGISTER (exp))));
3650 }
3651 \f
3652 /* The following functions are subroutines to fold_range_test and allow it to
3653 try to change a logical combination of comparisons into a range test.
3654
3655 For example, both
3656 X == 2 || X == 3 || X == 4 || X == 5
3657 and
3658 X >= 2 && X <= 5
3659 are converted to
3660 (unsigned) (X - 2) <= 3
3661
3662 We describe each set of comparisons as being either inside or outside
3663 a range, using a variable named like IN_P, and then describe the
3664 range with a lower and upper bound. If one of the bounds is omitted,
3665 it represents either the highest or lowest value of the type.
3666
3667 In the comments below, we represent a range by two numbers in brackets
3668 preceded by a "+" to designate being inside that range, or a "-" to
3669 designate being outside that range, so the condition can be inverted by
3670 flipping the prefix. An omitted bound is represented by a "-". For
3671 example, "- [-, 10]" means being outside the range starting at the lowest
3672 possible value and ending at 10, in other words, being greater than 10.
3673 The range "+ [-, -]" is always true and hence the range "- [-, -]" is
3674 always false.
3675
3676 We set up things so that the missing bounds are handled in a consistent
3677 manner so neither a missing bound nor "true" and "false" need to be
3678 handled using a special case. */
3679
3680 /* Return the result of applying CODE to ARG0 and ARG1, but handle the case
3681 of ARG0 and/or ARG1 being omitted, meaning an unlimited range. UPPER0_P
3682 and UPPER1_P are nonzero if the respective argument is an upper bound
3683 and zero for a lower. TYPE, if nonzero, is the type of the result; it
3684 must be specified for a comparison. ARG1 will be converted to ARG0's
3685 type if both are specified. */
3686
3687 static tree
3688 range_binop (enum tree_code code, tree type, tree arg0, int upper0_p,
3689 tree arg1, int upper1_p)
3690 {
3691 tree tem;
3692 int result;
3693 int sgn0, sgn1;
3694
3695 /* If neither arg represents infinity, do the normal operation.
3696 Else, if not a comparison, return infinity. Else handle the special
3697 comparison rules. Note that most of the cases below won't occur, but
3698 are handled for consistency. */
3699
3700 if (arg0 != 0 && arg1 != 0)
3701 {
3702 tem = fold_build2 (code, type != 0 ? type : TREE_TYPE (arg0),
3703 arg0, fold_convert (TREE_TYPE (arg0), arg1));
3704 STRIP_NOPS (tem);
3705 return TREE_CODE (tem) == INTEGER_CST ? tem : 0;
3706 }
3707
3708 if (TREE_CODE_CLASS (code) != tcc_comparison)
3709 return 0;
3710
3711 /* Set SGN[01] to -1 if ARG[01] is a lower bound, 1 for upper, and 0
3712 for neither. In real maths, we cannot assume open ended ranges are
3713 the same. But, this is computer arithmetic, where numbers are finite.
3714 We can therefore make the transformation of any unbounded range with
3715 the value Z, Z being greater than any representable number. This permits
3716 us to treat unbounded ranges as equal. */
3717 sgn0 = arg0 != 0 ? 0 : (upper0_p ? 1 : -1);
3718 sgn1 = arg1 != 0 ? 0 : (upper1_p ? 1 : -1);
3719 switch (code)
3720 {
3721 case EQ_EXPR:
3722 result = sgn0 == sgn1;
3723 break;
3724 case NE_EXPR:
3725 result = sgn0 != sgn1;
3726 break;
3727 case LT_EXPR:
3728 result = sgn0 < sgn1;
3729 break;
3730 case LE_EXPR:
3731 result = sgn0 <= sgn1;
3732 break;
3733 case GT_EXPR:
3734 result = sgn0 > sgn1;
3735 break;
3736 case GE_EXPR:
3737 result = sgn0 >= sgn1;
3738 break;
3739 default:
3740 gcc_unreachable ();
3741 }
3742
3743 return constant_boolean_node (result, type);
3744 }
3745 \f
3746 /* Given EXP, a logical expression, set the range it is testing into
3747 variables denoted by PIN_P, PLOW, and PHIGH. Return the expression
3748 actually being tested. *PLOW and *PHIGH will be made of the same type
3749 as the returned expression. If EXP is not a comparison, we will most
3750 likely not be returning a useful value and range. */
3751
3752 static tree
3753 make_range (tree exp, int *pin_p, tree *plow, tree *phigh)
3754 {
3755 enum tree_code code;
3756 tree arg0 = NULL_TREE, arg1 = NULL_TREE;
3757 tree exp_type = NULL_TREE, arg0_type = NULL_TREE;
3758 int in_p, n_in_p;
3759 tree low, high, n_low, n_high;
3760
3761 /* Start with simply saying "EXP != 0" and then look at the code of EXP
3762 and see if we can refine the range. Some of the cases below may not
3763 happen, but it doesn't seem worth worrying about this. We "continue"
3764 the outer loop when we've changed something; otherwise we "break"
3765 the switch, which will "break" the while. */
3766
3767 in_p = 0;
3768 low = high = build_int_cst (TREE_TYPE (exp), 0);
3769
3770 while (1)
3771 {
3772 code = TREE_CODE (exp);
3773 exp_type = TREE_TYPE (exp);
3774
3775 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
3776 {
3777 if (TREE_CODE_LENGTH (code) > 0)
3778 arg0 = TREE_OPERAND (exp, 0);
3779 if (TREE_CODE_CLASS (code) == tcc_comparison
3780 || TREE_CODE_CLASS (code) == tcc_unary
3781 || TREE_CODE_CLASS (code) == tcc_binary)
3782 arg0_type = TREE_TYPE (arg0);
3783 if (TREE_CODE_CLASS (code) == tcc_binary
3784 || TREE_CODE_CLASS (code) == tcc_comparison
3785 || (TREE_CODE_CLASS (code) == tcc_expression
3786 && TREE_CODE_LENGTH (code) > 1))
3787 arg1 = TREE_OPERAND (exp, 1);
3788 }
3789
3790 switch (code)
3791 {
3792 case TRUTH_NOT_EXPR:
3793 in_p = ! in_p, exp = arg0;
3794 continue;
3795
3796 case EQ_EXPR: case NE_EXPR:
3797 case LT_EXPR: case LE_EXPR: case GE_EXPR: case GT_EXPR:
3798 /* We can only do something if the range is testing for zero
3799 and if the second operand is an integer constant. Note that
3800 saying something is "in" the range we make is done by
3801 complementing IN_P since it will set in the initial case of
3802 being not equal to zero; "out" is leaving it alone. */
3803 if (low == 0 || high == 0
3804 || ! integer_zerop (low) || ! integer_zerop (high)
3805 || TREE_CODE (arg1) != INTEGER_CST)
3806 break;
3807
3808 switch (code)
3809 {
3810 case NE_EXPR: /* - [c, c] */
3811 low = high = arg1;
3812 break;
3813 case EQ_EXPR: /* + [c, c] */
3814 in_p = ! in_p, low = high = arg1;
3815 break;
3816 case GT_EXPR: /* - [-, c] */
3817 low = 0, high = arg1;
3818 break;
3819 case GE_EXPR: /* + [c, -] */
3820 in_p = ! in_p, low = arg1, high = 0;
3821 break;
3822 case LT_EXPR: /* - [c, -] */
3823 low = arg1, high = 0;
3824 break;
3825 case LE_EXPR: /* + [-, c] */
3826 in_p = ! in_p, low = 0, high = arg1;
3827 break;
3828 default:
3829 gcc_unreachable ();
3830 }
3831
3832 /* If this is an unsigned comparison, we also know that EXP is
3833 greater than or equal to zero. We base the range tests we make
3834 on that fact, so we record it here so we can parse existing
3835 range tests. We test arg0_type since often the return type
3836 of, e.g. EQ_EXPR, is boolean. */
3837 if (TYPE_UNSIGNED (arg0_type) && (low == 0 || high == 0))
3838 {
3839 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3840 in_p, low, high, 1,
3841 build_int_cst (arg0_type, 0),
3842 NULL_TREE))
3843 break;
3844
3845 in_p = n_in_p, low = n_low, high = n_high;
3846
3847 /* If the high bound is missing, but we have a nonzero low
3848 bound, reverse the range so it goes from zero to the low bound
3849 minus 1. */
3850 if (high == 0 && low && ! integer_zerop (low))
3851 {
3852 in_p = ! in_p;
3853 high = range_binop (MINUS_EXPR, NULL_TREE, low, 0,
3854 integer_one_node, 0);
3855 low = build_int_cst (arg0_type, 0);
3856 }
3857 }
3858
3859 exp = arg0;
3860 continue;
3861
3862 case NEGATE_EXPR:
3863 /* (-x) IN [a,b] -> x in [-b, -a] */
3864 n_low = range_binop (MINUS_EXPR, exp_type,
3865 build_int_cst (exp_type, 0),
3866 0, high, 1);
3867 n_high = range_binop (MINUS_EXPR, exp_type,
3868 build_int_cst (exp_type, 0),
3869 0, low, 0);
3870 low = n_low, high = n_high;
3871 exp = arg0;
3872 continue;
3873
3874 case BIT_NOT_EXPR:
3875 /* ~ X -> -X - 1 */
3876 exp = build2 (MINUS_EXPR, exp_type, negate_expr (arg0),
3877 build_int_cst (exp_type, 1));
3878 continue;
3879
3880 case PLUS_EXPR: case MINUS_EXPR:
3881 if (TREE_CODE (arg1) != INTEGER_CST)
3882 break;
3883
3884 /* If flag_wrapv and ARG0_TYPE is signed, then we cannot
3885 move a constant to the other side. */
3886 if (flag_wrapv && !TYPE_UNSIGNED (arg0_type))
3887 break;
3888
3889 /* If EXP is signed, any overflow in the computation is undefined,
3890 so we don't worry about it so long as our computations on
3891 the bounds don't overflow. For unsigned, overflow is defined
3892 and this is exactly the right thing. */
3893 n_low = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3894 arg0_type, low, 0, arg1, 0);
3895 n_high = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3896 arg0_type, high, 1, arg1, 0);
3897 if ((n_low != 0 && TREE_OVERFLOW (n_low))
3898 || (n_high != 0 && TREE_OVERFLOW (n_high)))
3899 break;
3900
3901 /* Check for an unsigned range which has wrapped around the maximum
3902 value thus making n_high < n_low, and normalize it. */
3903 if (n_low && n_high && tree_int_cst_lt (n_high, n_low))
3904 {
3905 low = range_binop (PLUS_EXPR, arg0_type, n_high, 0,
3906 integer_one_node, 0);
3907 high = range_binop (MINUS_EXPR, arg0_type, n_low, 0,
3908 integer_one_node, 0);
3909
3910 /* If the range is of the form +/- [ x+1, x ], we won't
3911 be able to normalize it. But then, it represents the
3912 whole range or the empty set, so make it
3913 +/- [ -, - ]. */
3914 if (tree_int_cst_equal (n_low, low)
3915 && tree_int_cst_equal (n_high, high))
3916 low = high = 0;
3917 else
3918 in_p = ! in_p;
3919 }
3920 else
3921 low = n_low, high = n_high;
3922
3923 exp = arg0;
3924 continue;
3925
3926 case NOP_EXPR: case NON_LVALUE_EXPR: case CONVERT_EXPR:
3927 if (TYPE_PRECISION (arg0_type) > TYPE_PRECISION (exp_type))
3928 break;
3929
3930 if (! INTEGRAL_TYPE_P (arg0_type)
3931 || (low != 0 && ! int_fits_type_p (low, arg0_type))
3932 || (high != 0 && ! int_fits_type_p (high, arg0_type)))
3933 break;
3934
3935 n_low = low, n_high = high;
3936
3937 if (n_low != 0)
3938 n_low = fold_convert (arg0_type, n_low);
3939
3940 if (n_high != 0)
3941 n_high = fold_convert (arg0_type, n_high);
3942
3943
3944 /* If we're converting arg0 from an unsigned type, to exp,
3945 a signed type, we will be doing the comparison as unsigned.
3946 The tests above have already verified that LOW and HIGH
3947 are both positive.
3948
3949 So we have to ensure that we will handle large unsigned
3950 values the same way that the current signed bounds treat
3951 negative values. */
3952
3953 if (!TYPE_UNSIGNED (exp_type) && TYPE_UNSIGNED (arg0_type))
3954 {
3955 tree high_positive;
3956 tree equiv_type = lang_hooks.types.type_for_mode
3957 (TYPE_MODE (arg0_type), 1);
3958
3959 /* A range without an upper bound is, naturally, unbounded.
3960 Since convert would have cropped a very large value, use
3961 the max value for the destination type. */
3962 high_positive
3963 = TYPE_MAX_VALUE (equiv_type) ? TYPE_MAX_VALUE (equiv_type)
3964 : TYPE_MAX_VALUE (arg0_type);
3965
3966 if (TYPE_PRECISION (exp_type) == TYPE_PRECISION (arg0_type))
3967 high_positive = fold_build2 (RSHIFT_EXPR, arg0_type,
3968 fold_convert (arg0_type,
3969 high_positive),
3970 fold_convert (arg0_type,
3971 integer_one_node));
3972
3973 /* If the low bound is specified, "and" the range with the
3974 range for which the original unsigned value will be
3975 positive. */
3976 if (low != 0)
3977 {
3978 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3979 1, n_low, n_high, 1,
3980 fold_convert (arg0_type,
3981 integer_zero_node),
3982 high_positive))
3983 break;
3984
3985 in_p = (n_in_p == in_p);
3986 }
3987 else
3988 {
3989 /* Otherwise, "or" the range with the range of the input
3990 that will be interpreted as negative. */
3991 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3992 0, n_low, n_high, 1,
3993 fold_convert (arg0_type,
3994 integer_zero_node),
3995 high_positive))
3996 break;
3997
3998 in_p = (in_p != n_in_p);
3999 }
4000 }
4001
4002 exp = arg0;
4003 low = n_low, high = n_high;
4004 continue;
4005
4006 default:
4007 break;
4008 }
4009
4010 break;
4011 }
4012
4013 /* If EXP is a constant, we can evaluate whether this is true or false. */
4014 if (TREE_CODE (exp) == INTEGER_CST)
4015 {
4016 in_p = in_p == (integer_onep (range_binop (GE_EXPR, integer_type_node,
4017 exp, 0, low, 0))
4018 && integer_onep (range_binop (LE_EXPR, integer_type_node,
4019 exp, 1, high, 1)));
4020 low = high = 0;
4021 exp = 0;
4022 }
4023
4024 *pin_p = in_p, *plow = low, *phigh = high;
4025 return exp;
4026 }
4027 \f
4028 /* Given a range, LOW, HIGH, and IN_P, an expression, EXP, and a result
4029 type, TYPE, return an expression to test if EXP is in (or out of, depending
4030 on IN_P) the range. Return 0 if the test couldn't be created. */
4031
4032 static tree
4033 build_range_check (tree type, tree exp, int in_p, tree low, tree high)
4034 {
4035 tree etype = TREE_TYPE (exp);
4036 tree value;
4037
4038 #ifdef HAVE_canonicalize_funcptr_for_compare
4039 /* Disable this optimization for function pointer expressions
4040 on targets that require function pointer canonicalization. */
4041 if (HAVE_canonicalize_funcptr_for_compare
4042 && TREE_CODE (etype) == POINTER_TYPE
4043 && TREE_CODE (TREE_TYPE (etype)) == FUNCTION_TYPE)
4044 return NULL_TREE;
4045 #endif
4046
4047 if (! in_p)
4048 {
4049 value = build_range_check (type, exp, 1, low, high);
4050 if (value != 0)
4051 return invert_truthvalue (value);
4052
4053 return 0;
4054 }
4055
4056 if (low == 0 && high == 0)
4057 return build_int_cst (type, 1);
4058
4059 if (low == 0)
4060 return fold_build2 (LE_EXPR, type, exp,
4061 fold_convert (etype, high));
4062
4063 if (high == 0)
4064 return fold_build2 (GE_EXPR, type, exp,
4065 fold_convert (etype, low));
4066
4067 if (operand_equal_p (low, high, 0))
4068 return fold_build2 (EQ_EXPR, type, exp,
4069 fold_convert (etype, low));
4070
4071 if (integer_zerop (low))
4072 {
4073 if (! TYPE_UNSIGNED (etype))
4074 {
4075 etype = lang_hooks.types.unsigned_type (etype);
4076 high = fold_convert (etype, high);
4077 exp = fold_convert (etype, exp);
4078 }
4079 return build_range_check (type, exp, 1, 0, high);
4080 }
4081
4082 /* Optimize (c>=1) && (c<=127) into (signed char)c > 0. */
4083 if (integer_onep (low) && TREE_CODE (high) == INTEGER_CST)
4084 {
4085 unsigned HOST_WIDE_INT lo;
4086 HOST_WIDE_INT hi;
4087 int prec;
4088
4089 prec = TYPE_PRECISION (etype);
4090 if (prec <= HOST_BITS_PER_WIDE_INT)
4091 {
4092 hi = 0;
4093 lo = ((unsigned HOST_WIDE_INT) 1 << (prec - 1)) - 1;
4094 }
4095 else
4096 {
4097 hi = ((HOST_WIDE_INT) 1 << (prec - HOST_BITS_PER_WIDE_INT - 1)) - 1;
4098 lo = (unsigned HOST_WIDE_INT) -1;
4099 }
4100
4101 if (TREE_INT_CST_HIGH (high) == hi && TREE_INT_CST_LOW (high) == lo)
4102 {
4103 if (TYPE_UNSIGNED (etype))
4104 {
4105 etype = lang_hooks.types.signed_type (etype);
4106 exp = fold_convert (etype, exp);
4107 }
4108 return fold_build2 (GT_EXPR, type, exp,
4109 build_int_cst (etype, 0));
4110 }
4111 }
4112
4113 /* Optimize (c>=low) && (c<=high) into (c-low>=0) && (c-low<=high-low).
4114 This requires wrap-around arithmetics for the type of the expression. */
4115 switch (TREE_CODE (etype))
4116 {
4117 case INTEGER_TYPE:
4118 /* There is no requirement that LOW be within the range of ETYPE
4119 if the latter is a subtype. It must, however, be within the base
4120 type of ETYPE. So be sure we do the subtraction in that type. */
4121 if (TREE_TYPE (etype))
4122 etype = TREE_TYPE (etype);
4123 break;
4124
4125 case ENUMERAL_TYPE:
4126 case BOOLEAN_TYPE:
4127 etype = lang_hooks.types.type_for_size (TYPE_PRECISION (etype),
4128 TYPE_UNSIGNED (etype));
4129 break;
4130
4131 default:
4132 break;
4133 }
4134
4135 /* If we don't have wrap-around arithmetics upfront, try to force it. */
4136 if (TREE_CODE (etype) == INTEGER_TYPE
4137 && !TYPE_UNSIGNED (etype) && !flag_wrapv)
4138 {
4139 tree utype, minv, maxv;
4140
4141 /* Check if (unsigned) INT_MAX + 1 == (unsigned) INT_MIN
4142 for the type in question, as we rely on this here. */
4143 utype = lang_hooks.types.unsigned_type (etype);
4144 maxv = fold_convert (utype, TYPE_MAX_VALUE (etype));
4145 maxv = range_binop (PLUS_EXPR, NULL_TREE, maxv, 1,
4146 integer_one_node, 1);
4147 minv = fold_convert (utype, TYPE_MIN_VALUE (etype));
4148
4149 if (integer_zerop (range_binop (NE_EXPR, integer_type_node,
4150 minv, 1, maxv, 1)))
4151 etype = utype;
4152 else
4153 return 0;
4154 }
4155
4156 high = fold_convert (etype, high);
4157 low = fold_convert (etype, low);
4158 exp = fold_convert (etype, exp);
4159
4160 value = const_binop (MINUS_EXPR, high, low, 0);
4161
4162 if (value != 0 && !TREE_OVERFLOW (value))
4163 return build_range_check (type,
4164 fold_build2 (MINUS_EXPR, etype, exp, low),
4165 1, build_int_cst (etype, 0), value);
4166
4167 return 0;
4168 }
4169 \f
4170 /* Return the predecessor of VAL in its type, handling the infinite case. */
4171
4172 static tree
4173 range_predecessor (tree val)
4174 {
4175 tree type = TREE_TYPE (val);
4176
4177 if (INTEGRAL_TYPE_P (type)
4178 && operand_equal_p (val, TYPE_MIN_VALUE (type), 0))
4179 return 0;
4180 else
4181 return range_binop (MINUS_EXPR, NULL_TREE, val, 0, integer_one_node, 0);
4182 }
4183
4184 /* Return the successor of VAL in its type, handling the infinite case. */
4185
4186 static tree
4187 range_successor (tree val)
4188 {
4189 tree type = TREE_TYPE (val);
4190
4191 if (INTEGRAL_TYPE_P (type)
4192 && operand_equal_p (val, TYPE_MAX_VALUE (type), 0))
4193 return 0;
4194 else
4195 return range_binop (PLUS_EXPR, NULL_TREE, val, 0, integer_one_node, 0);
4196 }
4197
4198 /* Given two ranges, see if we can merge them into one. Return 1 if we
4199 can, 0 if we can't. Set the output range into the specified parameters. */
4200
4201 static int
4202 merge_ranges (int *pin_p, tree *plow, tree *phigh, int in0_p, tree low0,
4203 tree high0, int in1_p, tree low1, tree high1)
4204 {
4205 int no_overlap;
4206 int subset;
4207 int temp;
4208 tree tem;
4209 int in_p;
4210 tree low, high;
4211 int lowequal = ((low0 == 0 && low1 == 0)
4212 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
4213 low0, 0, low1, 0)));
4214 int highequal = ((high0 == 0 && high1 == 0)
4215 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
4216 high0, 1, high1, 1)));
4217
4218 /* Make range 0 be the range that starts first, or ends last if they
4219 start at the same value. Swap them if it isn't. */
4220 if (integer_onep (range_binop (GT_EXPR, integer_type_node,
4221 low0, 0, low1, 0))
4222 || (lowequal
4223 && integer_onep (range_binop (GT_EXPR, integer_type_node,
4224 high1, 1, high0, 1))))
4225 {
4226 temp = in0_p, in0_p = in1_p, in1_p = temp;
4227 tem = low0, low0 = low1, low1 = tem;
4228 tem = high0, high0 = high1, high1 = tem;
4229 }
4230
4231 /* Now flag two cases, whether the ranges are disjoint or whether the
4232 second range is totally subsumed in the first. Note that the tests
4233 below are simplified by the ones above. */
4234 no_overlap = integer_onep (range_binop (LT_EXPR, integer_type_node,
4235 high0, 1, low1, 0));
4236 subset = integer_onep (range_binop (LE_EXPR, integer_type_node,
4237 high1, 1, high0, 1));
4238
4239 /* We now have four cases, depending on whether we are including or
4240 excluding the two ranges. */
4241 if (in0_p && in1_p)
4242 {
4243 /* If they don't overlap, the result is false. If the second range
4244 is a subset it is the result. Otherwise, the range is from the start
4245 of the second to the end of the first. */
4246 if (no_overlap)
4247 in_p = 0, low = high = 0;
4248 else if (subset)
4249 in_p = 1, low = low1, high = high1;
4250 else
4251 in_p = 1, low = low1, high = high0;
4252 }
4253
4254 else if (in0_p && ! in1_p)
4255 {
4256 /* If they don't overlap, the result is the first range. If they are
4257 equal, the result is false. If the second range is a subset of the
4258 first, and the ranges begin at the same place, we go from just after
4259 the end of the second range to the end of the first. If the second
4260 range is not a subset of the first, or if it is a subset and both
4261 ranges end at the same place, the range starts at the start of the
4262 first range and ends just before the second range.
4263 Otherwise, we can't describe this as a single range. */
4264 if (no_overlap)
4265 in_p = 1, low = low0, high = high0;
4266 else if (lowequal && highequal)
4267 in_p = 0, low = high = 0;
4268 else if (subset && lowequal)
4269 {
4270 low = range_successor (high1);
4271 high = high0;
4272 in_p = (low != 0);
4273 }
4274 else if (! subset || highequal)
4275 {
4276 low = low0;
4277 high = range_predecessor (low1);
4278 in_p = (high != 0);
4279 }
4280 else
4281 return 0;
4282 }
4283
4284 else if (! in0_p && in1_p)
4285 {
4286 /* If they don't overlap, the result is the second range. If the second
4287 is a subset of the first, the result is false. Otherwise,
4288 the range starts just after the first range and ends at the
4289 end of the second. */
4290 if (no_overlap)
4291 in_p = 1, low = low1, high = high1;
4292 else if (subset || highequal)
4293 in_p = 0, low = high = 0;
4294 else
4295 {
4296 low = range_successor (high0);
4297 high = high1;
4298 in_p = (low != 0);
4299 }
4300 }
4301
4302 else
4303 {
4304 /* The case where we are excluding both ranges. Here the complex case
4305 is if they don't overlap. In that case, the only time we have a
4306 range is if they are adjacent. If the second is a subset of the
4307 first, the result is the first. Otherwise, the range to exclude
4308 starts at the beginning of the first range and ends at the end of the
4309 second. */
4310 if (no_overlap)
4311 {
4312 if (integer_onep (range_binop (EQ_EXPR, integer_type_node,
4313 range_successor (high0),
4314 1, low1, 0)))
4315 in_p = 0, low = low0, high = high1;
4316 else
4317 {
4318 /* Canonicalize - [min, x] into - [-, x]. */
4319 if (low0 && TREE_CODE (low0) == INTEGER_CST)
4320 switch (TREE_CODE (TREE_TYPE (low0)))
4321 {
4322 case ENUMERAL_TYPE:
4323 if (TYPE_PRECISION (TREE_TYPE (low0))
4324 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (low0))))
4325 break;
4326 /* FALLTHROUGH */
4327 case INTEGER_TYPE:
4328 if (tree_int_cst_equal (low0,
4329 TYPE_MIN_VALUE (TREE_TYPE (low0))))
4330 low0 = 0;
4331 break;
4332 case POINTER_TYPE:
4333 if (TYPE_UNSIGNED (TREE_TYPE (low0))
4334 && integer_zerop (low0))
4335 low0 = 0;
4336 break;
4337 default:
4338 break;
4339 }
4340
4341 /* Canonicalize - [x, max] into - [x, -]. */
4342 if (high1 && TREE_CODE (high1) == INTEGER_CST)
4343 switch (TREE_CODE (TREE_TYPE (high1)))
4344 {
4345 case ENUMERAL_TYPE:
4346 if (TYPE_PRECISION (TREE_TYPE (high1))
4347 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (high1))))
4348 break;
4349 /* FALLTHROUGH */
4350 case INTEGER_TYPE:
4351 if (tree_int_cst_equal (high1,
4352 TYPE_MAX_VALUE (TREE_TYPE (high1))))
4353 high1 = 0;
4354 break;
4355 case POINTER_TYPE:
4356 if (TYPE_UNSIGNED (TREE_TYPE (high1))
4357 && integer_zerop (range_binop (PLUS_EXPR, NULL_TREE,
4358 high1, 1,
4359 integer_one_node, 1)))
4360 high1 = 0;
4361 break;
4362 default:
4363 break;
4364 }
4365
4366 /* The ranges might be also adjacent between the maximum and
4367 minimum values of the given type. For
4368 - [{min,-}, x] and - [y, {max,-}] ranges where x + 1 < y
4369 return + [x + 1, y - 1]. */
4370 if (low0 == 0 && high1 == 0)
4371 {
4372 low = range_successor (high0);
4373 high = range_predecessor (low1);
4374 if (low == 0 || high == 0)
4375 return 0;
4376
4377 in_p = 1;
4378 }
4379 else
4380 return 0;
4381 }
4382 }
4383 else if (subset)
4384 in_p = 0, low = low0, high = high0;
4385 else
4386 in_p = 0, low = low0, high = high1;
4387 }
4388
4389 *pin_p = in_p, *plow = low, *phigh = high;
4390 return 1;
4391 }
4392 \f
4393
4394 /* Subroutine of fold, looking inside expressions of the form
4395 A op B ? A : C, where ARG0, ARG1 and ARG2 are the three operands
4396 of the COND_EXPR. This function is being used also to optimize
4397 A op B ? C : A, by reversing the comparison first.
4398
4399 Return a folded expression whose code is not a COND_EXPR
4400 anymore, or NULL_TREE if no folding opportunity is found. */
4401
4402 static tree
4403 fold_cond_expr_with_comparison (tree type, tree arg0, tree arg1, tree arg2)
4404 {
4405 enum tree_code comp_code = TREE_CODE (arg0);
4406 tree arg00 = TREE_OPERAND (arg0, 0);
4407 tree arg01 = TREE_OPERAND (arg0, 1);
4408 tree arg1_type = TREE_TYPE (arg1);
4409 tree tem;
4410
4411 STRIP_NOPS (arg1);
4412 STRIP_NOPS (arg2);
4413
4414 /* If we have A op 0 ? A : -A, consider applying the following
4415 transformations:
4416
4417 A == 0? A : -A same as -A
4418 A != 0? A : -A same as A
4419 A >= 0? A : -A same as abs (A)
4420 A > 0? A : -A same as abs (A)
4421 A <= 0? A : -A same as -abs (A)
4422 A < 0? A : -A same as -abs (A)
4423
4424 None of these transformations work for modes with signed
4425 zeros. If A is +/-0, the first two transformations will
4426 change the sign of the result (from +0 to -0, or vice
4427 versa). The last four will fix the sign of the result,
4428 even though the original expressions could be positive or
4429 negative, depending on the sign of A.
4430
4431 Note that all these transformations are correct if A is
4432 NaN, since the two alternatives (A and -A) are also NaNs. */
4433 if ((FLOAT_TYPE_P (TREE_TYPE (arg01))
4434 ? real_zerop (arg01)
4435 : integer_zerop (arg01))
4436 && ((TREE_CODE (arg2) == NEGATE_EXPR
4437 && operand_equal_p (TREE_OPERAND (arg2, 0), arg1, 0))
4438 /* In the case that A is of the form X-Y, '-A' (arg2) may
4439 have already been folded to Y-X, check for that. */
4440 || (TREE_CODE (arg1) == MINUS_EXPR
4441 && TREE_CODE (arg2) == MINUS_EXPR
4442 && operand_equal_p (TREE_OPERAND (arg1, 0),
4443 TREE_OPERAND (arg2, 1), 0)
4444 && operand_equal_p (TREE_OPERAND (arg1, 1),
4445 TREE_OPERAND (arg2, 0), 0))))
4446 switch (comp_code)
4447 {
4448 case EQ_EXPR:
4449 case UNEQ_EXPR:
4450 tem = fold_convert (arg1_type, arg1);
4451 return pedantic_non_lvalue (fold_convert (type, negate_expr (tem)));
4452 case NE_EXPR:
4453 case LTGT_EXPR:
4454 return pedantic_non_lvalue (fold_convert (type, arg1));
4455 case UNGE_EXPR:
4456 case UNGT_EXPR:
4457 if (flag_trapping_math)
4458 break;
4459 /* Fall through. */
4460 case GE_EXPR:
4461 case GT_EXPR:
4462 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
4463 arg1 = fold_convert (lang_hooks.types.signed_type
4464 (TREE_TYPE (arg1)), arg1);
4465 tem = fold_build1 (ABS_EXPR, TREE_TYPE (arg1), arg1);
4466 return pedantic_non_lvalue (fold_convert (type, tem));
4467 case UNLE_EXPR:
4468 case UNLT_EXPR:
4469 if (flag_trapping_math)
4470 break;
4471 case LE_EXPR:
4472 case LT_EXPR:
4473 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
4474 arg1 = fold_convert (lang_hooks.types.signed_type
4475 (TREE_TYPE (arg1)), arg1);
4476 tem = fold_build1 (ABS_EXPR, TREE_TYPE (arg1), arg1);
4477 return negate_expr (fold_convert (type, tem));
4478 default:
4479 gcc_assert (TREE_CODE_CLASS (comp_code) == tcc_comparison);
4480 break;
4481 }
4482
4483 /* A != 0 ? A : 0 is simply A, unless A is -0. Likewise
4484 A == 0 ? A : 0 is always 0 unless A is -0. Note that
4485 both transformations are correct when A is NaN: A != 0
4486 is then true, and A == 0 is false. */
4487
4488 if (integer_zerop (arg01) && integer_zerop (arg2))
4489 {
4490 if (comp_code == NE_EXPR)
4491 return pedantic_non_lvalue (fold_convert (type, arg1));
4492 else if (comp_code == EQ_EXPR)
4493 return build_int_cst (type, 0);
4494 }
4495
4496 /* Try some transformations of A op B ? A : B.
4497
4498 A == B? A : B same as B
4499 A != B? A : B same as A
4500 A >= B? A : B same as max (A, B)
4501 A > B? A : B same as max (B, A)
4502 A <= B? A : B same as min (A, B)
4503 A < B? A : B same as min (B, A)
4504
4505 As above, these transformations don't work in the presence
4506 of signed zeros. For example, if A and B are zeros of
4507 opposite sign, the first two transformations will change
4508 the sign of the result. In the last four, the original
4509 expressions give different results for (A=+0, B=-0) and
4510 (A=-0, B=+0), but the transformed expressions do not.
4511
4512 The first two transformations are correct if either A or B
4513 is a NaN. In the first transformation, the condition will
4514 be false, and B will indeed be chosen. In the case of the
4515 second transformation, the condition A != B will be true,
4516 and A will be chosen.
4517
4518 The conversions to max() and min() are not correct if B is
4519 a number and A is not. The conditions in the original
4520 expressions will be false, so all four give B. The min()
4521 and max() versions would give a NaN instead. */
4522 if (operand_equal_for_comparison_p (arg01, arg2, arg00)
4523 /* Avoid these transformations if the COND_EXPR may be used
4524 as an lvalue in the C++ front-end. PR c++/19199. */
4525 && (in_gimple_form
4526 || strcmp (lang_hooks.name, "GNU C++") != 0
4527 || ! maybe_lvalue_p (arg1)
4528 || ! maybe_lvalue_p (arg2)))
4529 {
4530 tree comp_op0 = arg00;
4531 tree comp_op1 = arg01;
4532 tree comp_type = TREE_TYPE (comp_op0);
4533
4534 /* Avoid adding NOP_EXPRs in case this is an lvalue. */
4535 if (TYPE_MAIN_VARIANT (comp_type) == TYPE_MAIN_VARIANT (type))
4536 {
4537 comp_type = type;
4538 comp_op0 = arg1;
4539 comp_op1 = arg2;
4540 }
4541
4542 switch (comp_code)
4543 {
4544 case EQ_EXPR:
4545 return pedantic_non_lvalue (fold_convert (type, arg2));
4546 case NE_EXPR:
4547 return pedantic_non_lvalue (fold_convert (type, arg1));
4548 case LE_EXPR:
4549 case LT_EXPR:
4550 case UNLE_EXPR:
4551 case UNLT_EXPR:
4552 /* In C++ a ?: expression can be an lvalue, so put the
4553 operand which will be used if they are equal first
4554 so that we can convert this back to the
4555 corresponding COND_EXPR. */
4556 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4557 {
4558 comp_op0 = fold_convert (comp_type, comp_op0);
4559 comp_op1 = fold_convert (comp_type, comp_op1);
4560 tem = (comp_code == LE_EXPR || comp_code == UNLE_EXPR)
4561 ? fold_build2 (MIN_EXPR, comp_type, comp_op0, comp_op1)
4562 : fold_build2 (MIN_EXPR, comp_type, comp_op1, comp_op0);
4563 return pedantic_non_lvalue (fold_convert (type, tem));
4564 }
4565 break;
4566 case GE_EXPR:
4567 case GT_EXPR:
4568 case UNGE_EXPR:
4569 case UNGT_EXPR:
4570 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4571 {
4572 comp_op0 = fold_convert (comp_type, comp_op0);
4573 comp_op1 = fold_convert (comp_type, comp_op1);
4574 tem = (comp_code == GE_EXPR || comp_code == UNGE_EXPR)
4575 ? fold_build2 (MAX_EXPR, comp_type, comp_op0, comp_op1)
4576 : fold_build2 (MAX_EXPR, comp_type, comp_op1, comp_op0);
4577 return pedantic_non_lvalue (fold_convert (type, tem));
4578 }
4579 break;
4580 case UNEQ_EXPR:
4581 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4582 return pedantic_non_lvalue (fold_convert (type, arg2));
4583 break;
4584 case LTGT_EXPR:
4585 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4586 return pedantic_non_lvalue (fold_convert (type, arg1));
4587 break;
4588 default:
4589 gcc_assert (TREE_CODE_CLASS (comp_code) == tcc_comparison);
4590 break;
4591 }
4592 }
4593
4594 /* If this is A op C1 ? A : C2 with C1 and C2 constant integers,
4595 we might still be able to simplify this. For example,
4596 if C1 is one less or one more than C2, this might have started
4597 out as a MIN or MAX and been transformed by this function.
4598 Only good for INTEGER_TYPEs, because we need TYPE_MAX_VALUE. */
4599
4600 if (INTEGRAL_TYPE_P (type)
4601 && TREE_CODE (arg01) == INTEGER_CST
4602 && TREE_CODE (arg2) == INTEGER_CST)
4603 switch (comp_code)
4604 {
4605 case EQ_EXPR:
4606 /* We can replace A with C1 in this case. */
4607 arg1 = fold_convert (type, arg01);
4608 return fold_build3 (COND_EXPR, type, arg0, arg1, arg2);
4609
4610 case LT_EXPR:
4611 /* If C1 is C2 + 1, this is min(A, C2). */
4612 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type),
4613 OEP_ONLY_CONST)
4614 && operand_equal_p (arg01,
4615 const_binop (PLUS_EXPR, arg2,
4616 integer_one_node, 0),
4617 OEP_ONLY_CONST))
4618 return pedantic_non_lvalue (fold_build2 (MIN_EXPR,
4619 type, arg1, arg2));
4620 break;
4621
4622 case LE_EXPR:
4623 /* If C1 is C2 - 1, this is min(A, C2). */
4624 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type),
4625 OEP_ONLY_CONST)
4626 && operand_equal_p (arg01,
4627 const_binop (MINUS_EXPR, arg2,
4628 integer_one_node, 0),
4629 OEP_ONLY_CONST))
4630 return pedantic_non_lvalue (fold_build2 (MIN_EXPR,
4631 type, arg1, arg2));
4632 break;
4633
4634 case GT_EXPR:
4635 /* If C1 is C2 - 1, this is max(A, C2). */
4636 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type),
4637 OEP_ONLY_CONST)
4638 && operand_equal_p (arg01,
4639 const_binop (MINUS_EXPR, arg2,
4640 integer_one_node, 0),
4641 OEP_ONLY_CONST))
4642 return pedantic_non_lvalue (fold_build2 (MAX_EXPR,
4643 type, arg1, arg2));
4644 break;
4645
4646 case GE_EXPR:
4647 /* If C1 is C2 + 1, this is max(A, C2). */
4648 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type),
4649 OEP_ONLY_CONST)
4650 && operand_equal_p (arg01,
4651 const_binop (PLUS_EXPR, arg2,
4652 integer_one_node, 0),
4653 OEP_ONLY_CONST))
4654 return pedantic_non_lvalue (fold_build2 (MAX_EXPR,
4655 type, arg1, arg2));
4656 break;
4657 case NE_EXPR:
4658 break;
4659 default:
4660 gcc_unreachable ();
4661 }
4662
4663 return NULL_TREE;
4664 }
4665
4666
4667 \f
4668 #ifndef LOGICAL_OP_NON_SHORT_CIRCUIT
4669 #define LOGICAL_OP_NON_SHORT_CIRCUIT (BRANCH_COST >= 2)
4670 #endif
4671
4672 /* EXP is some logical combination of boolean tests. See if we can
4673 merge it into some range test. Return the new tree if so. */
4674
4675 static tree
4676 fold_range_test (enum tree_code code, tree type, tree op0, tree op1)
4677 {
4678 int or_op = (code == TRUTH_ORIF_EXPR
4679 || code == TRUTH_OR_EXPR);
4680 int in0_p, in1_p, in_p;
4681 tree low0, low1, low, high0, high1, high;
4682 tree lhs = make_range (op0, &in0_p, &low0, &high0);
4683 tree rhs = make_range (op1, &in1_p, &low1, &high1);
4684 tree tem;
4685
4686 /* If this is an OR operation, invert both sides; we will invert
4687 again at the end. */
4688 if (or_op)
4689 in0_p = ! in0_p, in1_p = ! in1_p;
4690
4691 /* If both expressions are the same, if we can merge the ranges, and we
4692 can build the range test, return it or it inverted. If one of the
4693 ranges is always true or always false, consider it to be the same
4694 expression as the other. */
4695 if ((lhs == 0 || rhs == 0 || operand_equal_p (lhs, rhs, 0))
4696 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
4697 in1_p, low1, high1)
4698 && 0 != (tem = (build_range_check (type,
4699 lhs != 0 ? lhs
4700 : rhs != 0 ? rhs : integer_zero_node,
4701 in_p, low, high))))
4702 return or_op ? invert_truthvalue (tem) : tem;
4703
4704 /* On machines where the branch cost is expensive, if this is a
4705 short-circuited branch and the underlying object on both sides
4706 is the same, make a non-short-circuit operation. */
4707 else if (LOGICAL_OP_NON_SHORT_CIRCUIT
4708 && lhs != 0 && rhs != 0
4709 && (code == TRUTH_ANDIF_EXPR
4710 || code == TRUTH_ORIF_EXPR)
4711 && operand_equal_p (lhs, rhs, 0))
4712 {
4713 /* If simple enough, just rewrite. Otherwise, make a SAVE_EXPR
4714 unless we are at top level or LHS contains a PLACEHOLDER_EXPR, in
4715 which cases we can't do this. */
4716 if (simple_operand_p (lhs))
4717 return build2 (code == TRUTH_ANDIF_EXPR
4718 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
4719 type, op0, op1);
4720
4721 else if (lang_hooks.decls.global_bindings_p () == 0
4722 && ! CONTAINS_PLACEHOLDER_P (lhs))
4723 {
4724 tree common = save_expr (lhs);
4725
4726 if (0 != (lhs = build_range_check (type, common,
4727 or_op ? ! in0_p : in0_p,
4728 low0, high0))
4729 && (0 != (rhs = build_range_check (type, common,
4730 or_op ? ! in1_p : in1_p,
4731 low1, high1))))
4732 return build2 (code == TRUTH_ANDIF_EXPR
4733 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
4734 type, lhs, rhs);
4735 }
4736 }
4737
4738 return 0;
4739 }
4740 \f
4741 /* Subroutine for fold_truthop: C is an INTEGER_CST interpreted as a P
4742 bit value. Arrange things so the extra bits will be set to zero if and
4743 only if C is signed-extended to its full width. If MASK is nonzero,
4744 it is an INTEGER_CST that should be AND'ed with the extra bits. */
4745
4746 static tree
4747 unextend (tree c, int p, int unsignedp, tree mask)
4748 {
4749 tree type = TREE_TYPE (c);
4750 int modesize = GET_MODE_BITSIZE (TYPE_MODE (type));
4751 tree temp;
4752
4753 if (p == modesize || unsignedp)
4754 return c;
4755
4756 /* We work by getting just the sign bit into the low-order bit, then
4757 into the high-order bit, then sign-extend. We then XOR that value
4758 with C. */
4759 temp = const_binop (RSHIFT_EXPR, c, size_int (p - 1), 0);
4760 temp = const_binop (BIT_AND_EXPR, temp, size_int (1), 0);
4761
4762 /* We must use a signed type in order to get an arithmetic right shift.
4763 However, we must also avoid introducing accidental overflows, so that
4764 a subsequent call to integer_zerop will work. Hence we must
4765 do the type conversion here. At this point, the constant is either
4766 zero or one, and the conversion to a signed type can never overflow.
4767 We could get an overflow if this conversion is done anywhere else. */
4768 if (TYPE_UNSIGNED (type))
4769 temp = fold_convert (lang_hooks.types.signed_type (type), temp);
4770
4771 temp = const_binop (LSHIFT_EXPR, temp, size_int (modesize - 1), 0);
4772 temp = const_binop (RSHIFT_EXPR, temp, size_int (modesize - p - 1), 0);
4773 if (mask != 0)
4774 temp = const_binop (BIT_AND_EXPR, temp,
4775 fold_convert (TREE_TYPE (c), mask), 0);
4776 /* If necessary, convert the type back to match the type of C. */
4777 if (TYPE_UNSIGNED (type))
4778 temp = fold_convert (type, temp);
4779
4780 return fold_convert (type, const_binop (BIT_XOR_EXPR, c, temp, 0));
4781 }
4782 \f
4783 /* Find ways of folding logical expressions of LHS and RHS:
4784 Try to merge two comparisons to the same innermost item.
4785 Look for range tests like "ch >= '0' && ch <= '9'".
4786 Look for combinations of simple terms on machines with expensive branches
4787 and evaluate the RHS unconditionally.
4788
4789 For example, if we have p->a == 2 && p->b == 4 and we can make an
4790 object large enough to span both A and B, we can do this with a comparison
4791 against the object ANDed with the a mask.
4792
4793 If we have p->a == q->a && p->b == q->b, we may be able to use bit masking
4794 operations to do this with one comparison.
4795
4796 We check for both normal comparisons and the BIT_AND_EXPRs made this by
4797 function and the one above.
4798
4799 CODE is the logical operation being done. It can be TRUTH_ANDIF_EXPR,
4800 TRUTH_AND_EXPR, TRUTH_ORIF_EXPR, or TRUTH_OR_EXPR.
4801
4802 TRUTH_TYPE is the type of the logical operand and LHS and RHS are its
4803 two operands.
4804
4805 We return the simplified tree or 0 if no optimization is possible. */
4806
4807 static tree
4808 fold_truthop (enum tree_code code, tree truth_type, tree lhs, tree rhs)
4809 {
4810 /* If this is the "or" of two comparisons, we can do something if
4811 the comparisons are NE_EXPR. If this is the "and", we can do something
4812 if the comparisons are EQ_EXPR. I.e.,
4813 (a->b == 2 && a->c == 4) can become (a->new == NEW).
4814
4815 WANTED_CODE is this operation code. For single bit fields, we can
4816 convert EQ_EXPR to NE_EXPR so we need not reject the "wrong"
4817 comparison for one-bit fields. */
4818
4819 enum tree_code wanted_code;
4820 enum tree_code lcode, rcode;
4821 tree ll_arg, lr_arg, rl_arg, rr_arg;
4822 tree ll_inner, lr_inner, rl_inner, rr_inner;
4823 HOST_WIDE_INT ll_bitsize, ll_bitpos, lr_bitsize, lr_bitpos;
4824 HOST_WIDE_INT rl_bitsize, rl_bitpos, rr_bitsize, rr_bitpos;
4825 HOST_WIDE_INT xll_bitpos, xlr_bitpos, xrl_bitpos, xrr_bitpos;
4826 HOST_WIDE_INT lnbitsize, lnbitpos, rnbitsize, rnbitpos;
4827 int ll_unsignedp, lr_unsignedp, rl_unsignedp, rr_unsignedp;
4828 enum machine_mode ll_mode, lr_mode, rl_mode, rr_mode;
4829 enum machine_mode lnmode, rnmode;
4830 tree ll_mask, lr_mask, rl_mask, rr_mask;
4831 tree ll_and_mask, lr_and_mask, rl_and_mask, rr_and_mask;
4832 tree l_const, r_const;
4833 tree lntype, rntype, result;
4834 int first_bit, end_bit;
4835 int volatilep;
4836
4837 /* Start by getting the comparison codes. Fail if anything is volatile.
4838 If one operand is a BIT_AND_EXPR with the constant one, treat it as if
4839 it were surrounded with a NE_EXPR. */
4840
4841 if (TREE_SIDE_EFFECTS (lhs) || TREE_SIDE_EFFECTS (rhs))
4842 return 0;
4843
4844 lcode = TREE_CODE (lhs);
4845 rcode = TREE_CODE (rhs);
4846
4847 if (lcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (lhs, 1)))
4848 {
4849 lhs = build2 (NE_EXPR, truth_type, lhs,
4850 build_int_cst (TREE_TYPE (lhs), 0));
4851 lcode = NE_EXPR;
4852 }
4853
4854 if (rcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (rhs, 1)))
4855 {
4856 rhs = build2 (NE_EXPR, truth_type, rhs,
4857 build_int_cst (TREE_TYPE (rhs), 0));
4858 rcode = NE_EXPR;
4859 }
4860
4861 if (TREE_CODE_CLASS (lcode) != tcc_comparison
4862 || TREE_CODE_CLASS (rcode) != tcc_comparison)
4863 return 0;
4864
4865 ll_arg = TREE_OPERAND (lhs, 0);
4866 lr_arg = TREE_OPERAND (lhs, 1);
4867 rl_arg = TREE_OPERAND (rhs, 0);
4868 rr_arg = TREE_OPERAND (rhs, 1);
4869
4870 /* Simplify (x<y) && (x==y) into (x<=y) and related optimizations. */
4871 if (simple_operand_p (ll_arg)
4872 && simple_operand_p (lr_arg))
4873 {
4874 tree result;
4875 if (operand_equal_p (ll_arg, rl_arg, 0)
4876 && operand_equal_p (lr_arg, rr_arg, 0))
4877 {
4878 result = combine_comparisons (code, lcode, rcode,
4879 truth_type, ll_arg, lr_arg);
4880 if (result)
4881 return result;
4882 }
4883 else if (operand_equal_p (ll_arg, rr_arg, 0)
4884 && operand_equal_p (lr_arg, rl_arg, 0))
4885 {
4886 result = combine_comparisons (code, lcode,
4887 swap_tree_comparison (rcode),
4888 truth_type, ll_arg, lr_arg);
4889 if (result)
4890 return result;
4891 }
4892 }
4893
4894 code = ((code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR)
4895 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR);
4896
4897 /* If the RHS can be evaluated unconditionally and its operands are
4898 simple, it wins to evaluate the RHS unconditionally on machines
4899 with expensive branches. In this case, this isn't a comparison
4900 that can be merged. Avoid doing this if the RHS is a floating-point
4901 comparison since those can trap. */
4902
4903 if (BRANCH_COST >= 2
4904 && ! FLOAT_TYPE_P (TREE_TYPE (rl_arg))
4905 && simple_operand_p (rl_arg)
4906 && simple_operand_p (rr_arg))
4907 {
4908 /* Convert (a != 0) || (b != 0) into (a | b) != 0. */
4909 if (code == TRUTH_OR_EXPR
4910 && lcode == NE_EXPR && integer_zerop (lr_arg)
4911 && rcode == NE_EXPR && integer_zerop (rr_arg)
4912 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg))
4913 return build2 (NE_EXPR, truth_type,
4914 build2 (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
4915 ll_arg, rl_arg),
4916 build_int_cst (TREE_TYPE (ll_arg), 0));
4917
4918 /* Convert (a == 0) && (b == 0) into (a | b) == 0. */
4919 if (code == TRUTH_AND_EXPR
4920 && lcode == EQ_EXPR && integer_zerop (lr_arg)
4921 && rcode == EQ_EXPR && integer_zerop (rr_arg)
4922 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg))
4923 return build2 (EQ_EXPR, truth_type,
4924 build2 (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
4925 ll_arg, rl_arg),
4926 build_int_cst (TREE_TYPE (ll_arg), 0));
4927
4928 if (LOGICAL_OP_NON_SHORT_CIRCUIT)
4929 return build2 (code, truth_type, lhs, rhs);
4930 }
4931
4932 /* See if the comparisons can be merged. Then get all the parameters for
4933 each side. */
4934
4935 if ((lcode != EQ_EXPR && lcode != NE_EXPR)
4936 || (rcode != EQ_EXPR && rcode != NE_EXPR))
4937 return 0;
4938
4939 volatilep = 0;
4940 ll_inner = decode_field_reference (ll_arg,
4941 &ll_bitsize, &ll_bitpos, &ll_mode,
4942 &ll_unsignedp, &volatilep, &ll_mask,
4943 &ll_and_mask);
4944 lr_inner = decode_field_reference (lr_arg,
4945 &lr_bitsize, &lr_bitpos, &lr_mode,
4946 &lr_unsignedp, &volatilep, &lr_mask,
4947 &lr_and_mask);
4948 rl_inner = decode_field_reference (rl_arg,
4949 &rl_bitsize, &rl_bitpos, &rl_mode,
4950 &rl_unsignedp, &volatilep, &rl_mask,
4951 &rl_and_mask);
4952 rr_inner = decode_field_reference (rr_arg,
4953 &rr_bitsize, &rr_bitpos, &rr_mode,
4954 &rr_unsignedp, &volatilep, &rr_mask,
4955 &rr_and_mask);
4956
4957 /* It must be true that the inner operation on the lhs of each
4958 comparison must be the same if we are to be able to do anything.
4959 Then see if we have constants. If not, the same must be true for
4960 the rhs's. */
4961 if (volatilep || ll_inner == 0 || rl_inner == 0
4962 || ! operand_equal_p (ll_inner, rl_inner, 0))
4963 return 0;
4964
4965 if (TREE_CODE (lr_arg) == INTEGER_CST
4966 && TREE_CODE (rr_arg) == INTEGER_CST)
4967 l_const = lr_arg, r_const = rr_arg;
4968 else if (lr_inner == 0 || rr_inner == 0
4969 || ! operand_equal_p (lr_inner, rr_inner, 0))
4970 return 0;
4971 else
4972 l_const = r_const = 0;
4973
4974 /* If either comparison code is not correct for our logical operation,
4975 fail. However, we can convert a one-bit comparison against zero into
4976 the opposite comparison against that bit being set in the field. */
4977
4978 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR);
4979 if (lcode != wanted_code)
4980 {
4981 if (l_const && integer_zerop (l_const) && integer_pow2p (ll_mask))
4982 {
4983 /* Make the left operand unsigned, since we are only interested
4984 in the value of one bit. Otherwise we are doing the wrong
4985 thing below. */
4986 ll_unsignedp = 1;
4987 l_const = ll_mask;
4988 }
4989 else
4990 return 0;
4991 }
4992
4993 /* This is analogous to the code for l_const above. */
4994 if (rcode != wanted_code)
4995 {
4996 if (r_const && integer_zerop (r_const) && integer_pow2p (rl_mask))
4997 {
4998 rl_unsignedp = 1;
4999 r_const = rl_mask;
5000 }
5001 else
5002 return 0;
5003 }
5004
5005 /* After this point all optimizations will generate bit-field
5006 references, which we might not want. */
5007 if (! lang_hooks.can_use_bit_fields_p ())
5008 return 0;
5009
5010 /* See if we can find a mode that contains both fields being compared on
5011 the left. If we can't, fail. Otherwise, update all constants and masks
5012 to be relative to a field of that size. */
5013 first_bit = MIN (ll_bitpos, rl_bitpos);
5014 end_bit = MAX (ll_bitpos + ll_bitsize, rl_bitpos + rl_bitsize);
5015 lnmode = get_best_mode (end_bit - first_bit, first_bit,
5016 TYPE_ALIGN (TREE_TYPE (ll_inner)), word_mode,
5017 volatilep);
5018 if (lnmode == VOIDmode)
5019 return 0;
5020
5021 lnbitsize = GET_MODE_BITSIZE (lnmode);
5022 lnbitpos = first_bit & ~ (lnbitsize - 1);
5023 lntype = lang_hooks.types.type_for_size (lnbitsize, 1);
5024 xll_bitpos = ll_bitpos - lnbitpos, xrl_bitpos = rl_bitpos - lnbitpos;
5025
5026 if (BYTES_BIG_ENDIAN)
5027 {
5028 xll_bitpos = lnbitsize - xll_bitpos - ll_bitsize;
5029 xrl_bitpos = lnbitsize - xrl_bitpos - rl_bitsize;
5030 }
5031
5032 ll_mask = const_binop (LSHIFT_EXPR, fold_convert (lntype, ll_mask),
5033 size_int (xll_bitpos), 0);
5034 rl_mask = const_binop (LSHIFT_EXPR, fold_convert (lntype, rl_mask),
5035 size_int (xrl_bitpos), 0);
5036
5037 if (l_const)
5038 {
5039 l_const = fold_convert (lntype, l_const);
5040 l_const = unextend (l_const, ll_bitsize, ll_unsignedp, ll_and_mask);
5041 l_const = const_binop (LSHIFT_EXPR, l_const, size_int (xll_bitpos), 0);
5042 if (! integer_zerop (const_binop (BIT_AND_EXPR, l_const,
5043 fold_build1 (BIT_NOT_EXPR,
5044 lntype, ll_mask),
5045 0)))
5046 {
5047 warning (0, "comparison is always %d", wanted_code == NE_EXPR);
5048
5049 return constant_boolean_node (wanted_code == NE_EXPR, truth_type);
5050 }
5051 }
5052 if (r_const)
5053 {
5054 r_const = fold_convert (lntype, r_const);
5055 r_const = unextend (r_const, rl_bitsize, rl_unsignedp, rl_and_mask);
5056 r_const = const_binop (LSHIFT_EXPR, r_const, size_int (xrl_bitpos), 0);
5057 if (! integer_zerop (const_binop (BIT_AND_EXPR, r_const,
5058 fold_build1 (BIT_NOT_EXPR,
5059 lntype, rl_mask),
5060 0)))
5061 {
5062 warning (0, "comparison is always %d", wanted_code == NE_EXPR);
5063
5064 return constant_boolean_node (wanted_code == NE_EXPR, truth_type);
5065 }
5066 }
5067
5068 /* If the right sides are not constant, do the same for it. Also,
5069 disallow this optimization if a size or signedness mismatch occurs
5070 between the left and right sides. */
5071 if (l_const == 0)
5072 {
5073 if (ll_bitsize != lr_bitsize || rl_bitsize != rr_bitsize
5074 || ll_unsignedp != lr_unsignedp || rl_unsignedp != rr_unsignedp
5075 /* Make sure the two fields on the right
5076 correspond to the left without being swapped. */
5077 || ll_bitpos - rl_bitpos != lr_bitpos - rr_bitpos)
5078 return 0;
5079
5080 first_bit = MIN (lr_bitpos, rr_bitpos);
5081 end_bit = MAX (lr_bitpos + lr_bitsize, rr_bitpos + rr_bitsize);
5082 rnmode = get_best_mode (end_bit - first_bit, first_bit,
5083 TYPE_ALIGN (TREE_TYPE (lr_inner)), word_mode,
5084 volatilep);
5085 if (rnmode == VOIDmode)
5086 return 0;
5087
5088 rnbitsize = GET_MODE_BITSIZE (rnmode);
5089 rnbitpos = first_bit & ~ (rnbitsize - 1);
5090 rntype = lang_hooks.types.type_for_size (rnbitsize, 1);
5091 xlr_bitpos = lr_bitpos - rnbitpos, xrr_bitpos = rr_bitpos - rnbitpos;
5092
5093 if (BYTES_BIG_ENDIAN)
5094 {
5095 xlr_bitpos = rnbitsize - xlr_bitpos - lr_bitsize;
5096 xrr_bitpos = rnbitsize - xrr_bitpos - rr_bitsize;
5097 }
5098
5099 lr_mask = const_binop (LSHIFT_EXPR, fold_convert (rntype, lr_mask),
5100 size_int (xlr_bitpos), 0);
5101 rr_mask = const_binop (LSHIFT_EXPR, fold_convert (rntype, rr_mask),
5102 size_int (xrr_bitpos), 0);
5103
5104 /* Make a mask that corresponds to both fields being compared.
5105 Do this for both items being compared. If the operands are the
5106 same size and the bits being compared are in the same position
5107 then we can do this by masking both and comparing the masked
5108 results. */
5109 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask, 0);
5110 lr_mask = const_binop (BIT_IOR_EXPR, lr_mask, rr_mask, 0);
5111 if (lnbitsize == rnbitsize && xll_bitpos == xlr_bitpos)
5112 {
5113 lhs = make_bit_field_ref (ll_inner, lntype, lnbitsize, lnbitpos,
5114 ll_unsignedp || rl_unsignedp);
5115 if (! all_ones_mask_p (ll_mask, lnbitsize))
5116 lhs = build2 (BIT_AND_EXPR, lntype, lhs, ll_mask);
5117
5118 rhs = make_bit_field_ref (lr_inner, rntype, rnbitsize, rnbitpos,
5119 lr_unsignedp || rr_unsignedp);
5120 if (! all_ones_mask_p (lr_mask, rnbitsize))
5121 rhs = build2 (BIT_AND_EXPR, rntype, rhs, lr_mask);
5122
5123 return build2 (wanted_code, truth_type, lhs, rhs);
5124 }
5125
5126 /* There is still another way we can do something: If both pairs of
5127 fields being compared are adjacent, we may be able to make a wider
5128 field containing them both.
5129
5130 Note that we still must mask the lhs/rhs expressions. Furthermore,
5131 the mask must be shifted to account for the shift done by
5132 make_bit_field_ref. */
5133 if ((ll_bitsize + ll_bitpos == rl_bitpos
5134 && lr_bitsize + lr_bitpos == rr_bitpos)
5135 || (ll_bitpos == rl_bitpos + rl_bitsize
5136 && lr_bitpos == rr_bitpos + rr_bitsize))
5137 {
5138 tree type;
5139
5140 lhs = make_bit_field_ref (ll_inner, lntype, ll_bitsize + rl_bitsize,
5141 MIN (ll_bitpos, rl_bitpos), ll_unsignedp);
5142 rhs = make_bit_field_ref (lr_inner, rntype, lr_bitsize + rr_bitsize,
5143 MIN (lr_bitpos, rr_bitpos), lr_unsignedp);
5144
5145 ll_mask = const_binop (RSHIFT_EXPR, ll_mask,
5146 size_int (MIN (xll_bitpos, xrl_bitpos)), 0);
5147 lr_mask = const_binop (RSHIFT_EXPR, lr_mask,
5148 size_int (MIN (xlr_bitpos, xrr_bitpos)), 0);
5149
5150 /* Convert to the smaller type before masking out unwanted bits. */
5151 type = lntype;
5152 if (lntype != rntype)
5153 {
5154 if (lnbitsize > rnbitsize)
5155 {
5156 lhs = fold_convert (rntype, lhs);
5157 ll_mask = fold_convert (rntype, ll_mask);
5158 type = rntype;
5159 }
5160 else if (lnbitsize < rnbitsize)
5161 {
5162 rhs = fold_convert (lntype, rhs);
5163 lr_mask = fold_convert (lntype, lr_mask);
5164 type = lntype;
5165 }
5166 }
5167
5168 if (! all_ones_mask_p (ll_mask, ll_bitsize + rl_bitsize))
5169 lhs = build2 (BIT_AND_EXPR, type, lhs, ll_mask);
5170
5171 if (! all_ones_mask_p (lr_mask, lr_bitsize + rr_bitsize))
5172 rhs = build2 (BIT_AND_EXPR, type, rhs, lr_mask);
5173
5174 return build2 (wanted_code, truth_type, lhs, rhs);
5175 }
5176
5177 return 0;
5178 }
5179
5180 /* Handle the case of comparisons with constants. If there is something in
5181 common between the masks, those bits of the constants must be the same.
5182 If not, the condition is always false. Test for this to avoid generating
5183 incorrect code below. */
5184 result = const_binop (BIT_AND_EXPR, ll_mask, rl_mask, 0);
5185 if (! integer_zerop (result)
5186 && simple_cst_equal (const_binop (BIT_AND_EXPR, result, l_const, 0),
5187 const_binop (BIT_AND_EXPR, result, r_const, 0)) != 1)
5188 {
5189 if (wanted_code == NE_EXPR)
5190 {
5191 warning (0, "%<or%> of unmatched not-equal tests is always 1");
5192 return constant_boolean_node (true, truth_type);
5193 }
5194 else
5195 {
5196 warning (0, "%<and%> of mutually exclusive equal-tests is always 0");
5197 return constant_boolean_node (false, truth_type);
5198 }
5199 }
5200
5201 /* Construct the expression we will return. First get the component
5202 reference we will make. Unless the mask is all ones the width of
5203 that field, perform the mask operation. Then compare with the
5204 merged constant. */
5205 result = make_bit_field_ref (ll_inner, lntype, lnbitsize, lnbitpos,
5206 ll_unsignedp || rl_unsignedp);
5207
5208 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask, 0);
5209 if (! all_ones_mask_p (ll_mask, lnbitsize))
5210 result = build2 (BIT_AND_EXPR, lntype, result, ll_mask);
5211
5212 return build2 (wanted_code, truth_type, result,
5213 const_binop (BIT_IOR_EXPR, l_const, r_const, 0));
5214 }
5215 \f
5216 /* Optimize T, which is a comparison of a MIN_EXPR or MAX_EXPR with a
5217 constant. */
5218
5219 static tree
5220 optimize_minmax_comparison (enum tree_code code, tree type, tree op0, tree op1)
5221 {
5222 tree arg0 = op0;
5223 enum tree_code op_code;
5224 tree comp_const = op1;
5225 tree minmax_const;
5226 int consts_equal, consts_lt;
5227 tree inner;
5228
5229 STRIP_SIGN_NOPS (arg0);
5230
5231 op_code = TREE_CODE (arg0);
5232 minmax_const = TREE_OPERAND (arg0, 1);
5233 consts_equal = tree_int_cst_equal (minmax_const, comp_const);
5234 consts_lt = tree_int_cst_lt (minmax_const, comp_const);
5235 inner = TREE_OPERAND (arg0, 0);
5236
5237 /* If something does not permit us to optimize, return the original tree. */
5238 if ((op_code != MIN_EXPR && op_code != MAX_EXPR)
5239 || TREE_CODE (comp_const) != INTEGER_CST
5240 || TREE_CONSTANT_OVERFLOW (comp_const)
5241 || TREE_CODE (minmax_const) != INTEGER_CST
5242 || TREE_CONSTANT_OVERFLOW (minmax_const))
5243 return NULL_TREE;
5244
5245 /* Now handle all the various comparison codes. We only handle EQ_EXPR
5246 and GT_EXPR, doing the rest with recursive calls using logical
5247 simplifications. */
5248 switch (code)
5249 {
5250 case NE_EXPR: case LT_EXPR: case LE_EXPR:
5251 {
5252 /* FIXME: We should be able to invert code without building a
5253 scratch tree node, but doing so would require us to
5254 duplicate a part of invert_truthvalue here. */
5255 tree tem = invert_truthvalue (build2 (code, type, op0, op1));
5256 tem = optimize_minmax_comparison (TREE_CODE (tem),
5257 TREE_TYPE (tem),
5258 TREE_OPERAND (tem, 0),
5259 TREE_OPERAND (tem, 1));
5260 return invert_truthvalue (tem);
5261 }
5262
5263 case GE_EXPR:
5264 return
5265 fold_build2 (TRUTH_ORIF_EXPR, type,
5266 optimize_minmax_comparison
5267 (EQ_EXPR, type, arg0, comp_const),
5268 optimize_minmax_comparison
5269 (GT_EXPR, type, arg0, comp_const));
5270
5271 case EQ_EXPR:
5272 if (op_code == MAX_EXPR && consts_equal)
5273 /* MAX (X, 0) == 0 -> X <= 0 */
5274 return fold_build2 (LE_EXPR, type, inner, comp_const);
5275
5276 else if (op_code == MAX_EXPR && consts_lt)
5277 /* MAX (X, 0) == 5 -> X == 5 */
5278 return fold_build2 (EQ_EXPR, type, inner, comp_const);
5279
5280 else if (op_code == MAX_EXPR)
5281 /* MAX (X, 0) == -1 -> false */
5282 return omit_one_operand (type, integer_zero_node, inner);
5283
5284 else if (consts_equal)
5285 /* MIN (X, 0) == 0 -> X >= 0 */
5286 return fold_build2 (GE_EXPR, type, inner, comp_const);
5287
5288 else if (consts_lt)
5289 /* MIN (X, 0) == 5 -> false */
5290 return omit_one_operand (type, integer_zero_node, inner);
5291
5292 else
5293 /* MIN (X, 0) == -1 -> X == -1 */
5294 return fold_build2 (EQ_EXPR, type, inner, comp_const);
5295
5296 case GT_EXPR:
5297 if (op_code == MAX_EXPR && (consts_equal || consts_lt))
5298 /* MAX (X, 0) > 0 -> X > 0
5299 MAX (X, 0) > 5 -> X > 5 */
5300 return fold_build2 (GT_EXPR, type, inner, comp_const);
5301
5302 else if (op_code == MAX_EXPR)
5303 /* MAX (X, 0) > -1 -> true */
5304 return omit_one_operand (type, integer_one_node, inner);
5305
5306 else if (op_code == MIN_EXPR && (consts_equal || consts_lt))
5307 /* MIN (X, 0) > 0 -> false
5308 MIN (X, 0) > 5 -> false */
5309 return omit_one_operand (type, integer_zero_node, inner);
5310
5311 else
5312 /* MIN (X, 0) > -1 -> X > -1 */
5313 return fold_build2 (GT_EXPR, type, inner, comp_const);
5314
5315 default:
5316 return NULL_TREE;
5317 }
5318 }
5319 \f
5320 /* T is an integer expression that is being multiplied, divided, or taken a
5321 modulus (CODE says which and what kind of divide or modulus) by a
5322 constant C. See if we can eliminate that operation by folding it with
5323 other operations already in T. WIDE_TYPE, if non-null, is a type that
5324 should be used for the computation if wider than our type.
5325
5326 For example, if we are dividing (X * 8) + (Y * 16) by 4, we can return
5327 (X * 2) + (Y * 4). We must, however, be assured that either the original
5328 expression would not overflow or that overflow is undefined for the type
5329 in the language in question.
5330
5331 We also canonicalize (X + 7) * 4 into X * 4 + 28 in the hope that either
5332 the machine has a multiply-accumulate insn or that this is part of an
5333 addressing calculation.
5334
5335 If we return a non-null expression, it is an equivalent form of the
5336 original computation, but need not be in the original type. */
5337
5338 static tree
5339 extract_muldiv (tree t, tree c, enum tree_code code, tree wide_type)
5340 {
5341 /* To avoid exponential search depth, refuse to allow recursion past
5342 three levels. Beyond that (1) it's highly unlikely that we'll find
5343 something interesting and (2) we've probably processed it before
5344 when we built the inner expression. */
5345
5346 static int depth;
5347 tree ret;
5348
5349 if (depth > 3)
5350 return NULL;
5351
5352 depth++;
5353 ret = extract_muldiv_1 (t, c, code, wide_type);
5354 depth--;
5355
5356 return ret;
5357 }
5358
5359 static tree
5360 extract_muldiv_1 (tree t, tree c, enum tree_code code, tree wide_type)
5361 {
5362 tree type = TREE_TYPE (t);
5363 enum tree_code tcode = TREE_CODE (t);
5364 tree ctype = (wide_type != 0 && (GET_MODE_SIZE (TYPE_MODE (wide_type))
5365 > GET_MODE_SIZE (TYPE_MODE (type)))
5366 ? wide_type : type);
5367 tree t1, t2;
5368 int same_p = tcode == code;
5369 tree op0 = NULL_TREE, op1 = NULL_TREE;
5370
5371 /* Don't deal with constants of zero here; they confuse the code below. */
5372 if (integer_zerop (c))
5373 return NULL_TREE;
5374
5375 if (TREE_CODE_CLASS (tcode) == tcc_unary)
5376 op0 = TREE_OPERAND (t, 0);
5377
5378 if (TREE_CODE_CLASS (tcode) == tcc_binary)
5379 op0 = TREE_OPERAND (t, 0), op1 = TREE_OPERAND (t, 1);
5380
5381 /* Note that we need not handle conditional operations here since fold
5382 already handles those cases. So just do arithmetic here. */
5383 switch (tcode)
5384 {
5385 case INTEGER_CST:
5386 /* For a constant, we can always simplify if we are a multiply
5387 or (for divide and modulus) if it is a multiple of our constant. */
5388 if (code == MULT_EXPR
5389 || integer_zerop (const_binop (TRUNC_MOD_EXPR, t, c, 0)))
5390 return const_binop (code, fold_convert (ctype, t),
5391 fold_convert (ctype, c), 0);
5392 break;
5393
5394 case CONVERT_EXPR: case NON_LVALUE_EXPR: case NOP_EXPR:
5395 /* If op0 is an expression ... */
5396 if ((COMPARISON_CLASS_P (op0)
5397 || UNARY_CLASS_P (op0)
5398 || BINARY_CLASS_P (op0)
5399 || EXPRESSION_CLASS_P (op0))
5400 /* ... and is unsigned, and its type is smaller than ctype,
5401 then we cannot pass through as widening. */
5402 && ((TYPE_UNSIGNED (TREE_TYPE (op0))
5403 && ! (TREE_CODE (TREE_TYPE (op0)) == INTEGER_TYPE
5404 && TYPE_IS_SIZETYPE (TREE_TYPE (op0)))
5405 && (GET_MODE_SIZE (TYPE_MODE (ctype))
5406 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))))
5407 /* ... or this is a truncation (t is narrower than op0),
5408 then we cannot pass through this narrowing. */
5409 || (GET_MODE_SIZE (TYPE_MODE (type))
5410 < GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0))))
5411 /* ... or signedness changes for division or modulus,
5412 then we cannot pass through this conversion. */
5413 || (code != MULT_EXPR
5414 && (TYPE_UNSIGNED (ctype)
5415 != TYPE_UNSIGNED (TREE_TYPE (op0))))))
5416 break;
5417
5418 /* Pass the constant down and see if we can make a simplification. If
5419 we can, replace this expression with the inner simplification for
5420 possible later conversion to our or some other type. */
5421 if ((t2 = fold_convert (TREE_TYPE (op0), c)) != 0
5422 && TREE_CODE (t2) == INTEGER_CST
5423 && ! TREE_CONSTANT_OVERFLOW (t2)
5424 && (0 != (t1 = extract_muldiv (op0, t2, code,
5425 code == MULT_EXPR
5426 ? ctype : NULL_TREE))))
5427 return t1;
5428 break;
5429
5430 case ABS_EXPR:
5431 /* If widening the type changes it from signed to unsigned, then we
5432 must avoid building ABS_EXPR itself as unsigned. */
5433 if (TYPE_UNSIGNED (ctype) && !TYPE_UNSIGNED (type))
5434 {
5435 tree cstype = (*lang_hooks.types.signed_type) (ctype);
5436 if ((t1 = extract_muldiv (op0, c, code, cstype)) != 0)
5437 {
5438 t1 = fold_build1 (tcode, cstype, fold_convert (cstype, t1));
5439 return fold_convert (ctype, t1);
5440 }
5441 break;
5442 }
5443 /* FALLTHROUGH */
5444 case NEGATE_EXPR:
5445 if ((t1 = extract_muldiv (op0, c, code, wide_type)) != 0)
5446 return fold_build1 (tcode, ctype, fold_convert (ctype, t1));
5447 break;
5448
5449 case MIN_EXPR: case MAX_EXPR:
5450 /* If widening the type changes the signedness, then we can't perform
5451 this optimization as that changes the result. */
5452 if (TYPE_UNSIGNED (ctype) != TYPE_UNSIGNED (type))
5453 break;
5454
5455 /* MIN (a, b) / 5 -> MIN (a / 5, b / 5) */
5456 if ((t1 = extract_muldiv (op0, c, code, wide_type)) != 0
5457 && (t2 = extract_muldiv (op1, c, code, wide_type)) != 0)
5458 {
5459 if (tree_int_cst_sgn (c) < 0)
5460 tcode = (tcode == MIN_EXPR ? MAX_EXPR : MIN_EXPR);
5461
5462 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
5463 fold_convert (ctype, t2));
5464 }
5465 break;
5466
5467 case LSHIFT_EXPR: case RSHIFT_EXPR:
5468 /* If the second operand is constant, this is a multiplication
5469 or floor division, by a power of two, so we can treat it that
5470 way unless the multiplier or divisor overflows. Signed
5471 left-shift overflow is implementation-defined rather than
5472 undefined in C90, so do not convert signed left shift into
5473 multiplication. */
5474 if (TREE_CODE (op1) == INTEGER_CST
5475 && (tcode == RSHIFT_EXPR || TYPE_UNSIGNED (TREE_TYPE (op0)))
5476 /* const_binop may not detect overflow correctly,
5477 so check for it explicitly here. */
5478 && TYPE_PRECISION (TREE_TYPE (size_one_node)) > TREE_INT_CST_LOW (op1)
5479 && TREE_INT_CST_HIGH (op1) == 0
5480 && 0 != (t1 = fold_convert (ctype,
5481 const_binop (LSHIFT_EXPR,
5482 size_one_node,
5483 op1, 0)))
5484 && ! TREE_OVERFLOW (t1))
5485 return extract_muldiv (build2 (tcode == LSHIFT_EXPR
5486 ? MULT_EXPR : FLOOR_DIV_EXPR,
5487 ctype, fold_convert (ctype, op0), t1),
5488 c, code, wide_type);
5489 break;
5490
5491 case PLUS_EXPR: case MINUS_EXPR:
5492 /* See if we can eliminate the operation on both sides. If we can, we
5493 can return a new PLUS or MINUS. If we can't, the only remaining
5494 cases where we can do anything are if the second operand is a
5495 constant. */
5496 t1 = extract_muldiv (op0, c, code, wide_type);
5497 t2 = extract_muldiv (op1, c, code, wide_type);
5498 if (t1 != 0 && t2 != 0
5499 && (code == MULT_EXPR
5500 /* If not multiplication, we can only do this if both operands
5501 are divisible by c. */
5502 || (multiple_of_p (ctype, op0, c)
5503 && multiple_of_p (ctype, op1, c))))
5504 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
5505 fold_convert (ctype, t2));
5506
5507 /* If this was a subtraction, negate OP1 and set it to be an addition.
5508 This simplifies the logic below. */
5509 if (tcode == MINUS_EXPR)
5510 tcode = PLUS_EXPR, op1 = negate_expr (op1);
5511
5512 if (TREE_CODE (op1) != INTEGER_CST)
5513 break;
5514
5515 /* If either OP1 or C are negative, this optimization is not safe for
5516 some of the division and remainder types while for others we need
5517 to change the code. */
5518 if (tree_int_cst_sgn (op1) < 0 || tree_int_cst_sgn (c) < 0)
5519 {
5520 if (code == CEIL_DIV_EXPR)
5521 code = FLOOR_DIV_EXPR;
5522 else if (code == FLOOR_DIV_EXPR)
5523 code = CEIL_DIV_EXPR;
5524 else if (code != MULT_EXPR
5525 && code != CEIL_MOD_EXPR && code != FLOOR_MOD_EXPR)
5526 break;
5527 }
5528
5529 /* If it's a multiply or a division/modulus operation of a multiple
5530 of our constant, do the operation and verify it doesn't overflow. */
5531 if (code == MULT_EXPR
5532 || integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
5533 {
5534 op1 = const_binop (code, fold_convert (ctype, op1),
5535 fold_convert (ctype, c), 0);
5536 /* We allow the constant to overflow with wrapping semantics. */
5537 if (op1 == 0
5538 || (TREE_OVERFLOW (op1) && ! flag_wrapv))
5539 break;
5540 }
5541 else
5542 break;
5543
5544 /* If we have an unsigned type is not a sizetype, we cannot widen
5545 the operation since it will change the result if the original
5546 computation overflowed. */
5547 if (TYPE_UNSIGNED (ctype)
5548 && ! (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype))
5549 && ctype != type)
5550 break;
5551
5552 /* If we were able to eliminate our operation from the first side,
5553 apply our operation to the second side and reform the PLUS. */
5554 if (t1 != 0 && (TREE_CODE (t1) != code || code == MULT_EXPR))
5555 return fold_build2 (tcode, ctype, fold_convert (ctype, t1), op1);
5556
5557 /* The last case is if we are a multiply. In that case, we can
5558 apply the distributive law to commute the multiply and addition
5559 if the multiplication of the constants doesn't overflow. */
5560 if (code == MULT_EXPR)
5561 return fold_build2 (tcode, ctype,
5562 fold_build2 (code, ctype,
5563 fold_convert (ctype, op0),
5564 fold_convert (ctype, c)),
5565 op1);
5566
5567 break;
5568
5569 case MULT_EXPR:
5570 /* We have a special case here if we are doing something like
5571 (C * 8) % 4 since we know that's zero. */
5572 if ((code == TRUNC_MOD_EXPR || code == CEIL_MOD_EXPR
5573 || code == FLOOR_MOD_EXPR || code == ROUND_MOD_EXPR)
5574 && TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST
5575 && integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
5576 return omit_one_operand (type, integer_zero_node, op0);
5577
5578 /* ... fall through ... */
5579
5580 case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR:
5581 case ROUND_DIV_EXPR: case EXACT_DIV_EXPR:
5582 /* If we can extract our operation from the LHS, do so and return a
5583 new operation. Likewise for the RHS from a MULT_EXPR. Otherwise,
5584 do something only if the second operand is a constant. */
5585 if (same_p
5586 && (t1 = extract_muldiv (op0, c, code, wide_type)) != 0)
5587 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
5588 fold_convert (ctype, op1));
5589 else if (tcode == MULT_EXPR && code == MULT_EXPR
5590 && (t1 = extract_muldiv (op1, c, code, wide_type)) != 0)
5591 return fold_build2 (tcode, ctype, fold_convert (ctype, op0),
5592 fold_convert (ctype, t1));
5593 else if (TREE_CODE (op1) != INTEGER_CST)
5594 return 0;
5595
5596 /* If these are the same operation types, we can associate them
5597 assuming no overflow. */
5598 if (tcode == code
5599 && 0 != (t1 = const_binop (MULT_EXPR, fold_convert (ctype, op1),
5600 fold_convert (ctype, c), 0))
5601 && ! TREE_OVERFLOW (t1))
5602 return fold_build2 (tcode, ctype, fold_convert (ctype, op0), t1);
5603
5604 /* If these operations "cancel" each other, we have the main
5605 optimizations of this pass, which occur when either constant is a
5606 multiple of the other, in which case we replace this with either an
5607 operation or CODE or TCODE.
5608
5609 If we have an unsigned type that is not a sizetype, we cannot do
5610 this since it will change the result if the original computation
5611 overflowed. */
5612 if ((! TYPE_UNSIGNED (ctype)
5613 || (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype)))
5614 && ! flag_wrapv
5615 && ((code == MULT_EXPR && tcode == EXACT_DIV_EXPR)
5616 || (tcode == MULT_EXPR
5617 && code != TRUNC_MOD_EXPR && code != CEIL_MOD_EXPR
5618 && code != FLOOR_MOD_EXPR && code != ROUND_MOD_EXPR)))
5619 {
5620 if (integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
5621 return fold_build2 (tcode, ctype, fold_convert (ctype, op0),
5622 fold_convert (ctype,
5623 const_binop (TRUNC_DIV_EXPR,
5624 op1, c, 0)));
5625 else if (integer_zerop (const_binop (TRUNC_MOD_EXPR, c, op1, 0)))
5626 return fold_build2 (code, ctype, fold_convert (ctype, op0),
5627 fold_convert (ctype,
5628 const_binop (TRUNC_DIV_EXPR,
5629 c, op1, 0)));
5630 }
5631 break;
5632
5633 default:
5634 break;
5635 }
5636
5637 return 0;
5638 }
5639 \f
5640 /* Return a node which has the indicated constant VALUE (either 0 or
5641 1), and is of the indicated TYPE. */
5642
5643 tree
5644 constant_boolean_node (int value, tree type)
5645 {
5646 if (type == integer_type_node)
5647 return value ? integer_one_node : integer_zero_node;
5648 else if (type == boolean_type_node)
5649 return value ? boolean_true_node : boolean_false_node;
5650 else
5651 return build_int_cst (type, value);
5652 }
5653
5654
5655 /* Return true if expr looks like an ARRAY_REF and set base and
5656 offset to the appropriate trees. If there is no offset,
5657 offset is set to NULL_TREE. Base will be canonicalized to
5658 something you can get the element type from using
5659 TREE_TYPE (TREE_TYPE (base)). Offset will be the offset
5660 in bytes to the base. */
5661
5662 static bool
5663 extract_array_ref (tree expr, tree *base, tree *offset)
5664 {
5665 /* One canonical form is a PLUS_EXPR with the first
5666 argument being an ADDR_EXPR with a possible NOP_EXPR
5667 attached. */
5668 if (TREE_CODE (expr) == PLUS_EXPR)
5669 {
5670 tree op0 = TREE_OPERAND (expr, 0);
5671 tree inner_base, dummy1;
5672 /* Strip NOP_EXPRs here because the C frontends and/or
5673 folders present us (int *)&x.a + 4B possibly. */
5674 STRIP_NOPS (op0);
5675 if (extract_array_ref (op0, &inner_base, &dummy1))
5676 {
5677 *base = inner_base;
5678 if (dummy1 == NULL_TREE)
5679 *offset = TREE_OPERAND (expr, 1);
5680 else
5681 *offset = fold_build2 (PLUS_EXPR, TREE_TYPE (expr),
5682 dummy1, TREE_OPERAND (expr, 1));
5683 return true;
5684 }
5685 }
5686 /* Other canonical form is an ADDR_EXPR of an ARRAY_REF,
5687 which we transform into an ADDR_EXPR with appropriate
5688 offset. For other arguments to the ADDR_EXPR we assume
5689 zero offset and as such do not care about the ADDR_EXPR
5690 type and strip possible nops from it. */
5691 else if (TREE_CODE (expr) == ADDR_EXPR)
5692 {
5693 tree op0 = TREE_OPERAND (expr, 0);
5694 if (TREE_CODE (op0) == ARRAY_REF)
5695 {
5696 tree idx = TREE_OPERAND (op0, 1);
5697 *base = TREE_OPERAND (op0, 0);
5698 *offset = fold_build2 (MULT_EXPR, TREE_TYPE (idx), idx,
5699 array_ref_element_size (op0));
5700 }
5701 else
5702 {
5703 /* Handle array-to-pointer decay as &a. */
5704 if (TREE_CODE (TREE_TYPE (op0)) == ARRAY_TYPE)
5705 *base = TREE_OPERAND (expr, 0);
5706 else
5707 *base = expr;
5708 *offset = NULL_TREE;
5709 }
5710 return true;
5711 }
5712 /* The next canonical form is a VAR_DECL with POINTER_TYPE. */
5713 else if (SSA_VAR_P (expr)
5714 && TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE)
5715 {
5716 *base = expr;
5717 *offset = NULL_TREE;
5718 return true;
5719 }
5720
5721 return false;
5722 }
5723
5724
5725 /* Transform `a + (b ? x : y)' into `b ? (a + x) : (a + y)'.
5726 Transform, `a + (x < y)' into `(x < y) ? (a + 1) : (a + 0)'. Here
5727 CODE corresponds to the `+', COND to the `(b ? x : y)' or `(x < y)'
5728 expression, and ARG to `a'. If COND_FIRST_P is nonzero, then the
5729 COND is the first argument to CODE; otherwise (as in the example
5730 given here), it is the second argument. TYPE is the type of the
5731 original expression. Return NULL_TREE if no simplification is
5732 possible. */
5733
5734 static tree
5735 fold_binary_op_with_conditional_arg (enum tree_code code,
5736 tree type, tree op0, tree op1,
5737 tree cond, tree arg, int cond_first_p)
5738 {
5739 tree cond_type = cond_first_p ? TREE_TYPE (op0) : TREE_TYPE (op1);
5740 tree arg_type = cond_first_p ? TREE_TYPE (op1) : TREE_TYPE (op0);
5741 tree test, true_value, false_value;
5742 tree lhs = NULL_TREE;
5743 tree rhs = NULL_TREE;
5744
5745 /* This transformation is only worthwhile if we don't have to wrap
5746 arg in a SAVE_EXPR, and the operation can be simplified on at least
5747 one of the branches once its pushed inside the COND_EXPR. */
5748 if (!TREE_CONSTANT (arg))
5749 return NULL_TREE;
5750
5751 if (TREE_CODE (cond) == COND_EXPR)
5752 {
5753 test = TREE_OPERAND (cond, 0);
5754 true_value = TREE_OPERAND (cond, 1);
5755 false_value = TREE_OPERAND (cond, 2);
5756 /* If this operand throws an expression, then it does not make
5757 sense to try to perform a logical or arithmetic operation
5758 involving it. */
5759 if (VOID_TYPE_P (TREE_TYPE (true_value)))
5760 lhs = true_value;
5761 if (VOID_TYPE_P (TREE_TYPE (false_value)))
5762 rhs = false_value;
5763 }
5764 else
5765 {
5766 tree testtype = TREE_TYPE (cond);
5767 test = cond;
5768 true_value = constant_boolean_node (true, testtype);
5769 false_value = constant_boolean_node (false, testtype);
5770 }
5771
5772 arg = fold_convert (arg_type, arg);
5773 if (lhs == 0)
5774 {
5775 true_value = fold_convert (cond_type, true_value);
5776 if (cond_first_p)
5777 lhs = fold_build2 (code, type, true_value, arg);
5778 else
5779 lhs = fold_build2 (code, type, arg, true_value);
5780 }
5781 if (rhs == 0)
5782 {
5783 false_value = fold_convert (cond_type, false_value);
5784 if (cond_first_p)
5785 rhs = fold_build2 (code, type, false_value, arg);
5786 else
5787 rhs = fold_build2 (code, type, arg, false_value);
5788 }
5789
5790 test = fold_build3 (COND_EXPR, type, test, lhs, rhs);
5791 return fold_convert (type, test);
5792 }
5793
5794 \f
5795 /* Subroutine of fold() that checks for the addition of +/- 0.0.
5796
5797 If !NEGATE, return true if ADDEND is +/-0.0 and, for all X of type
5798 TYPE, X + ADDEND is the same as X. If NEGATE, return true if X -
5799 ADDEND is the same as X.
5800
5801 X + 0 and X - 0 both give X when X is NaN, infinite, or nonzero
5802 and finite. The problematic cases are when X is zero, and its mode
5803 has signed zeros. In the case of rounding towards -infinity,
5804 X - 0 is not the same as X because 0 - 0 is -0. In other rounding
5805 modes, X + 0 is not the same as X because -0 + 0 is 0. */
5806
5807 static bool
5808 fold_real_zero_addition_p (tree type, tree addend, int negate)
5809 {
5810 if (!real_zerop (addend))
5811 return false;
5812
5813 /* Don't allow the fold with -fsignaling-nans. */
5814 if (HONOR_SNANS (TYPE_MODE (type)))
5815 return false;
5816
5817 /* Allow the fold if zeros aren't signed, or their sign isn't important. */
5818 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
5819 return true;
5820
5821 /* Treat x + -0 as x - 0 and x - -0 as x + 0. */
5822 if (TREE_CODE (addend) == REAL_CST
5823 && REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (addend)))
5824 negate = !negate;
5825
5826 /* The mode has signed zeros, and we have to honor their sign.
5827 In this situation, there is only one case we can return true for.
5828 X - 0 is the same as X unless rounding towards -infinity is
5829 supported. */
5830 return negate && !HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type));
5831 }
5832
5833 /* Subroutine of fold() that checks comparisons of built-in math
5834 functions against real constants.
5835
5836 FCODE is the DECL_FUNCTION_CODE of the built-in, CODE is the comparison
5837 operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR, GE_EXPR or LE_EXPR. TYPE
5838 is the type of the result and ARG0 and ARG1 are the operands of the
5839 comparison. ARG1 must be a TREE_REAL_CST.
5840
5841 The function returns the constant folded tree if a simplification
5842 can be made, and NULL_TREE otherwise. */
5843
5844 static tree
5845 fold_mathfn_compare (enum built_in_function fcode, enum tree_code code,
5846 tree type, tree arg0, tree arg1)
5847 {
5848 REAL_VALUE_TYPE c;
5849
5850 if (BUILTIN_SQRT_P (fcode))
5851 {
5852 tree arg = TREE_VALUE (TREE_OPERAND (arg0, 1));
5853 enum machine_mode mode = TYPE_MODE (TREE_TYPE (arg0));
5854
5855 c = TREE_REAL_CST (arg1);
5856 if (REAL_VALUE_NEGATIVE (c))
5857 {
5858 /* sqrt(x) < y is always false, if y is negative. */
5859 if (code == EQ_EXPR || code == LT_EXPR || code == LE_EXPR)
5860 return omit_one_operand (type, integer_zero_node, arg);
5861
5862 /* sqrt(x) > y is always true, if y is negative and we
5863 don't care about NaNs, i.e. negative values of x. */
5864 if (code == NE_EXPR || !HONOR_NANS (mode))
5865 return omit_one_operand (type, integer_one_node, arg);
5866
5867 /* sqrt(x) > y is the same as x >= 0, if y is negative. */
5868 return fold_build2 (GE_EXPR, type, arg,
5869 build_real (TREE_TYPE (arg), dconst0));
5870 }
5871 else if (code == GT_EXPR || code == GE_EXPR)
5872 {
5873 REAL_VALUE_TYPE c2;
5874
5875 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
5876 real_convert (&c2, mode, &c2);
5877
5878 if (REAL_VALUE_ISINF (c2))
5879 {
5880 /* sqrt(x) > y is x == +Inf, when y is very large. */
5881 if (HONOR_INFINITIES (mode))
5882 return fold_build2 (EQ_EXPR, type, arg,
5883 build_real (TREE_TYPE (arg), c2));
5884
5885 /* sqrt(x) > y is always false, when y is very large
5886 and we don't care about infinities. */
5887 return omit_one_operand (type, integer_zero_node, arg);
5888 }
5889
5890 /* sqrt(x) > c is the same as x > c*c. */
5891 return fold_build2 (code, type, arg,
5892 build_real (TREE_TYPE (arg), c2));
5893 }
5894 else if (code == LT_EXPR || code == LE_EXPR)
5895 {
5896 REAL_VALUE_TYPE c2;
5897
5898 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
5899 real_convert (&c2, mode, &c2);
5900
5901 if (REAL_VALUE_ISINF (c2))
5902 {
5903 /* sqrt(x) < y is always true, when y is a very large
5904 value and we don't care about NaNs or Infinities. */
5905 if (! HONOR_NANS (mode) && ! HONOR_INFINITIES (mode))
5906 return omit_one_operand (type, integer_one_node, arg);
5907
5908 /* sqrt(x) < y is x != +Inf when y is very large and we
5909 don't care about NaNs. */
5910 if (! HONOR_NANS (mode))
5911 return fold_build2 (NE_EXPR, type, arg,
5912 build_real (TREE_TYPE (arg), c2));
5913
5914 /* sqrt(x) < y is x >= 0 when y is very large and we
5915 don't care about Infinities. */
5916 if (! HONOR_INFINITIES (mode))
5917 return fold_build2 (GE_EXPR, type, arg,
5918 build_real (TREE_TYPE (arg), dconst0));
5919
5920 /* sqrt(x) < y is x >= 0 && x != +Inf, when y is large. */
5921 if (lang_hooks.decls.global_bindings_p () != 0
5922 || CONTAINS_PLACEHOLDER_P (arg))
5923 return NULL_TREE;
5924
5925 arg = save_expr (arg);
5926 return fold_build2 (TRUTH_ANDIF_EXPR, type,
5927 fold_build2 (GE_EXPR, type, arg,
5928 build_real (TREE_TYPE (arg),
5929 dconst0)),
5930 fold_build2 (NE_EXPR, type, arg,
5931 build_real (TREE_TYPE (arg),
5932 c2)));
5933 }
5934
5935 /* sqrt(x) < c is the same as x < c*c, if we ignore NaNs. */
5936 if (! HONOR_NANS (mode))
5937 return fold_build2 (code, type, arg,
5938 build_real (TREE_TYPE (arg), c2));
5939
5940 /* sqrt(x) < c is the same as x >= 0 && x < c*c. */
5941 if (lang_hooks.decls.global_bindings_p () == 0
5942 && ! CONTAINS_PLACEHOLDER_P (arg))
5943 {
5944 arg = save_expr (arg);
5945 return fold_build2 (TRUTH_ANDIF_EXPR, type,
5946 fold_build2 (GE_EXPR, type, arg,
5947 build_real (TREE_TYPE (arg),
5948 dconst0)),
5949 fold_build2 (code, type, arg,
5950 build_real (TREE_TYPE (arg),
5951 c2)));
5952 }
5953 }
5954 }
5955
5956 return NULL_TREE;
5957 }
5958
5959 /* Subroutine of fold() that optimizes comparisons against Infinities,
5960 either +Inf or -Inf.
5961
5962 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
5963 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
5964 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
5965
5966 The function returns the constant folded tree if a simplification
5967 can be made, and NULL_TREE otherwise. */
5968
5969 static tree
5970 fold_inf_compare (enum tree_code code, tree type, tree arg0, tree arg1)
5971 {
5972 enum machine_mode mode;
5973 REAL_VALUE_TYPE max;
5974 tree temp;
5975 bool neg;
5976
5977 mode = TYPE_MODE (TREE_TYPE (arg0));
5978
5979 /* For negative infinity swap the sense of the comparison. */
5980 neg = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1));
5981 if (neg)
5982 code = swap_tree_comparison (code);
5983
5984 switch (code)
5985 {
5986 case GT_EXPR:
5987 /* x > +Inf is always false, if with ignore sNANs. */
5988 if (HONOR_SNANS (mode))
5989 return NULL_TREE;
5990 return omit_one_operand (type, integer_zero_node, arg0);
5991
5992 case LE_EXPR:
5993 /* x <= +Inf is always true, if we don't case about NaNs. */
5994 if (! HONOR_NANS (mode))
5995 return omit_one_operand (type, integer_one_node, arg0);
5996
5997 /* x <= +Inf is the same as x == x, i.e. isfinite(x). */
5998 if (lang_hooks.decls.global_bindings_p () == 0
5999 && ! CONTAINS_PLACEHOLDER_P (arg0))
6000 {
6001 arg0 = save_expr (arg0);
6002 return fold_build2 (EQ_EXPR, type, arg0, arg0);
6003 }
6004 break;
6005
6006 case EQ_EXPR:
6007 case GE_EXPR:
6008 /* x == +Inf and x >= +Inf are always equal to x > DBL_MAX. */
6009 real_maxval (&max, neg, mode);
6010 return fold_build2 (neg ? LT_EXPR : GT_EXPR, type,
6011 arg0, build_real (TREE_TYPE (arg0), max));
6012
6013 case LT_EXPR:
6014 /* x < +Inf is always equal to x <= DBL_MAX. */
6015 real_maxval (&max, neg, mode);
6016 return fold_build2 (neg ? GE_EXPR : LE_EXPR, type,
6017 arg0, build_real (TREE_TYPE (arg0), max));
6018
6019 case NE_EXPR:
6020 /* x != +Inf is always equal to !(x > DBL_MAX). */
6021 real_maxval (&max, neg, mode);
6022 if (! HONOR_NANS (mode))
6023 return fold_build2 (neg ? GE_EXPR : LE_EXPR, type,
6024 arg0, build_real (TREE_TYPE (arg0), max));
6025
6026 /* The transformation below creates non-gimple code and thus is
6027 not appropriate if we are in gimple form. */
6028 if (in_gimple_form)
6029 return NULL_TREE;
6030
6031 temp = fold_build2 (neg ? LT_EXPR : GT_EXPR, type,
6032 arg0, build_real (TREE_TYPE (arg0), max));
6033 return fold_build1 (TRUTH_NOT_EXPR, type, temp);
6034
6035 default:
6036 break;
6037 }
6038
6039 return NULL_TREE;
6040 }
6041
6042 /* Subroutine of fold() that optimizes comparisons of a division by
6043 a nonzero integer constant against an integer constant, i.e.
6044 X/C1 op C2.
6045
6046 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
6047 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
6048 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
6049
6050 The function returns the constant folded tree if a simplification
6051 can be made, and NULL_TREE otherwise. */
6052
6053 static tree
6054 fold_div_compare (enum tree_code code, tree type, tree arg0, tree arg1)
6055 {
6056 tree prod, tmp, hi, lo;
6057 tree arg00 = TREE_OPERAND (arg0, 0);
6058 tree arg01 = TREE_OPERAND (arg0, 1);
6059 unsigned HOST_WIDE_INT lpart;
6060 HOST_WIDE_INT hpart;
6061 bool neg_overflow;
6062 int overflow;
6063
6064 /* We have to do this the hard way to detect unsigned overflow.
6065 prod = int_const_binop (MULT_EXPR, arg01, arg1, 0); */
6066 overflow = mul_double (TREE_INT_CST_LOW (arg01),
6067 TREE_INT_CST_HIGH (arg01),
6068 TREE_INT_CST_LOW (arg1),
6069 TREE_INT_CST_HIGH (arg1), &lpart, &hpart);
6070 prod = build_int_cst_wide (TREE_TYPE (arg00), lpart, hpart);
6071 prod = force_fit_type (prod, -1, overflow, false);
6072 neg_overflow = false;
6073
6074 if (TYPE_UNSIGNED (TREE_TYPE (arg0)))
6075 {
6076 tmp = int_const_binop (MINUS_EXPR, arg01, integer_one_node, 0);
6077 lo = prod;
6078
6079 /* Likewise hi = int_const_binop (PLUS_EXPR, prod, tmp, 0). */
6080 overflow = add_double (TREE_INT_CST_LOW (prod),
6081 TREE_INT_CST_HIGH (prod),
6082 TREE_INT_CST_LOW (tmp),
6083 TREE_INT_CST_HIGH (tmp),
6084 &lpart, &hpart);
6085 hi = build_int_cst_wide (TREE_TYPE (arg00), lpart, hpart);
6086 hi = force_fit_type (hi, -1, overflow | TREE_OVERFLOW (prod),
6087 TREE_CONSTANT_OVERFLOW (prod));
6088 }
6089 else if (tree_int_cst_sgn (arg01) >= 0)
6090 {
6091 tmp = int_const_binop (MINUS_EXPR, arg01, integer_one_node, 0);
6092 switch (tree_int_cst_sgn (arg1))
6093 {
6094 case -1:
6095 neg_overflow = true;
6096 lo = int_const_binop (MINUS_EXPR, prod, tmp, 0);
6097 hi = prod;
6098 break;
6099
6100 case 0:
6101 lo = fold_negate_const (tmp, TREE_TYPE (arg0));
6102 hi = tmp;
6103 break;
6104
6105 case 1:
6106 hi = int_const_binop (PLUS_EXPR, prod, tmp, 0);
6107 lo = prod;
6108 break;
6109
6110 default:
6111 gcc_unreachable ();
6112 }
6113 }
6114 else
6115 {
6116 /* A negative divisor reverses the relational operators. */
6117 code = swap_tree_comparison (code);
6118
6119 tmp = int_const_binop (PLUS_EXPR, arg01, integer_one_node, 0);
6120 switch (tree_int_cst_sgn (arg1))
6121 {
6122 case -1:
6123 hi = int_const_binop (MINUS_EXPR, prod, tmp, 0);
6124 lo = prod;
6125 break;
6126
6127 case 0:
6128 hi = fold_negate_const (tmp, TREE_TYPE (arg0));
6129 lo = tmp;
6130 break;
6131
6132 case 1:
6133 neg_overflow = true;
6134 lo = int_const_binop (PLUS_EXPR, prod, tmp, 0);
6135 hi = prod;
6136 break;
6137
6138 default:
6139 gcc_unreachable ();
6140 }
6141 }
6142
6143 switch (code)
6144 {
6145 case EQ_EXPR:
6146 if (TREE_OVERFLOW (lo) && TREE_OVERFLOW (hi))
6147 return omit_one_operand (type, integer_zero_node, arg00);
6148 if (TREE_OVERFLOW (hi))
6149 return fold_build2 (GE_EXPR, type, arg00, lo);
6150 if (TREE_OVERFLOW (lo))
6151 return fold_build2 (LE_EXPR, type, arg00, hi);
6152 return build_range_check (type, arg00, 1, lo, hi);
6153
6154 case NE_EXPR:
6155 if (TREE_OVERFLOW (lo) && TREE_OVERFLOW (hi))
6156 return omit_one_operand (type, integer_one_node, arg00);
6157 if (TREE_OVERFLOW (hi))
6158 return fold_build2 (LT_EXPR, type, arg00, lo);
6159 if (TREE_OVERFLOW (lo))
6160 return fold_build2 (GT_EXPR, type, arg00, hi);
6161 return build_range_check (type, arg00, 0, lo, hi);
6162
6163 case LT_EXPR:
6164 if (TREE_OVERFLOW (lo))
6165 {
6166 tmp = neg_overflow ? integer_zero_node : integer_one_node;
6167 return omit_one_operand (type, tmp, arg00);
6168 }
6169 return fold_build2 (LT_EXPR, type, arg00, lo);
6170
6171 case LE_EXPR:
6172 if (TREE_OVERFLOW (hi))
6173 {
6174 tmp = neg_overflow ? integer_zero_node : integer_one_node;
6175 return omit_one_operand (type, tmp, arg00);
6176 }
6177 return fold_build2 (LE_EXPR, type, arg00, hi);
6178
6179 case GT_EXPR:
6180 if (TREE_OVERFLOW (hi))
6181 {
6182 tmp = neg_overflow ? integer_one_node : integer_zero_node;
6183 return omit_one_operand (type, tmp, arg00);
6184 }
6185 return fold_build2 (GT_EXPR, type, arg00, hi);
6186
6187 case GE_EXPR:
6188 if (TREE_OVERFLOW (lo))
6189 {
6190 tmp = neg_overflow ? integer_one_node : integer_zero_node;
6191 return omit_one_operand (type, tmp, arg00);
6192 }
6193 return fold_build2 (GE_EXPR, type, arg00, lo);
6194
6195 default:
6196 break;
6197 }
6198
6199 return NULL_TREE;
6200 }
6201
6202
6203 /* If CODE with arguments ARG0 and ARG1 represents a single bit
6204 equality/inequality test, then return a simplified form of the test
6205 using a sign testing. Otherwise return NULL. TYPE is the desired
6206 result type. */
6207
6208 static tree
6209 fold_single_bit_test_into_sign_test (enum tree_code code, tree arg0, tree arg1,
6210 tree result_type)
6211 {
6212 /* If this is testing a single bit, we can optimize the test. */
6213 if ((code == NE_EXPR || code == EQ_EXPR)
6214 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
6215 && integer_pow2p (TREE_OPERAND (arg0, 1)))
6216 {
6217 /* If we have (A & C) != 0 where C is the sign bit of A, convert
6218 this into A < 0. Similarly for (A & C) == 0 into A >= 0. */
6219 tree arg00 = sign_bit_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1));
6220
6221 if (arg00 != NULL_TREE
6222 /* This is only a win if casting to a signed type is cheap,
6223 i.e. when arg00's type is not a partial mode. */
6224 && TYPE_PRECISION (TREE_TYPE (arg00))
6225 == GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg00))))
6226 {
6227 tree stype = lang_hooks.types.signed_type (TREE_TYPE (arg00));
6228 return fold_build2 (code == EQ_EXPR ? GE_EXPR : LT_EXPR,
6229 result_type, fold_convert (stype, arg00),
6230 build_int_cst (stype, 0));
6231 }
6232 }
6233
6234 return NULL_TREE;
6235 }
6236
6237 /* If CODE with arguments ARG0 and ARG1 represents a single bit
6238 equality/inequality test, then return a simplified form of
6239 the test using shifts and logical operations. Otherwise return
6240 NULL. TYPE is the desired result type. */
6241
6242 tree
6243 fold_single_bit_test (enum tree_code code, tree arg0, tree arg1,
6244 tree result_type)
6245 {
6246 /* If this is testing a single bit, we can optimize the test. */
6247 if ((code == NE_EXPR || code == EQ_EXPR)
6248 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
6249 && integer_pow2p (TREE_OPERAND (arg0, 1)))
6250 {
6251 tree inner = TREE_OPERAND (arg0, 0);
6252 tree type = TREE_TYPE (arg0);
6253 int bitnum = tree_log2 (TREE_OPERAND (arg0, 1));
6254 enum machine_mode operand_mode = TYPE_MODE (type);
6255 int ops_unsigned;
6256 tree signed_type, unsigned_type, intermediate_type;
6257 tree tem;
6258
6259 /* First, see if we can fold the single bit test into a sign-bit
6260 test. */
6261 tem = fold_single_bit_test_into_sign_test (code, arg0, arg1,
6262 result_type);
6263 if (tem)
6264 return tem;
6265
6266 /* Otherwise we have (A & C) != 0 where C is a single bit,
6267 convert that into ((A >> C2) & 1). Where C2 = log2(C).
6268 Similarly for (A & C) == 0. */
6269
6270 /* If INNER is a right shift of a constant and it plus BITNUM does
6271 not overflow, adjust BITNUM and INNER. */
6272 if (TREE_CODE (inner) == RSHIFT_EXPR
6273 && TREE_CODE (TREE_OPERAND (inner, 1)) == INTEGER_CST
6274 && TREE_INT_CST_HIGH (TREE_OPERAND (inner, 1)) == 0
6275 && bitnum < TYPE_PRECISION (type)
6276 && 0 > compare_tree_int (TREE_OPERAND (inner, 1),
6277 bitnum - TYPE_PRECISION (type)))
6278 {
6279 bitnum += TREE_INT_CST_LOW (TREE_OPERAND (inner, 1));
6280 inner = TREE_OPERAND (inner, 0);
6281 }
6282
6283 /* If we are going to be able to omit the AND below, we must do our
6284 operations as unsigned. If we must use the AND, we have a choice.
6285 Normally unsigned is faster, but for some machines signed is. */
6286 #ifdef LOAD_EXTEND_OP
6287 ops_unsigned = (LOAD_EXTEND_OP (operand_mode) == SIGN_EXTEND
6288 && !flag_syntax_only) ? 0 : 1;
6289 #else
6290 ops_unsigned = 1;
6291 #endif
6292
6293 signed_type = lang_hooks.types.type_for_mode (operand_mode, 0);
6294 unsigned_type = lang_hooks.types.type_for_mode (operand_mode, 1);
6295 intermediate_type = ops_unsigned ? unsigned_type : signed_type;
6296 inner = fold_convert (intermediate_type, inner);
6297
6298 if (bitnum != 0)
6299 inner = build2 (RSHIFT_EXPR, intermediate_type,
6300 inner, size_int (bitnum));
6301
6302 if (code == EQ_EXPR)
6303 inner = fold_build2 (BIT_XOR_EXPR, intermediate_type,
6304 inner, integer_one_node);
6305
6306 /* Put the AND last so it can combine with more things. */
6307 inner = build2 (BIT_AND_EXPR, intermediate_type,
6308 inner, integer_one_node);
6309
6310 /* Make sure to return the proper type. */
6311 inner = fold_convert (result_type, inner);
6312
6313 return inner;
6314 }
6315 return NULL_TREE;
6316 }
6317
6318 /* Check whether we are allowed to reorder operands arg0 and arg1,
6319 such that the evaluation of arg1 occurs before arg0. */
6320
6321 static bool
6322 reorder_operands_p (tree arg0, tree arg1)
6323 {
6324 if (! flag_evaluation_order)
6325 return true;
6326 if (TREE_CONSTANT (arg0) || TREE_CONSTANT (arg1))
6327 return true;
6328 return ! TREE_SIDE_EFFECTS (arg0)
6329 && ! TREE_SIDE_EFFECTS (arg1);
6330 }
6331
6332 /* Test whether it is preferable two swap two operands, ARG0 and
6333 ARG1, for example because ARG0 is an integer constant and ARG1
6334 isn't. If REORDER is true, only recommend swapping if we can
6335 evaluate the operands in reverse order. */
6336
6337 bool
6338 tree_swap_operands_p (tree arg0, tree arg1, bool reorder)
6339 {
6340 STRIP_SIGN_NOPS (arg0);
6341 STRIP_SIGN_NOPS (arg1);
6342
6343 if (TREE_CODE (arg1) == INTEGER_CST)
6344 return 0;
6345 if (TREE_CODE (arg0) == INTEGER_CST)
6346 return 1;
6347
6348 if (TREE_CODE (arg1) == REAL_CST)
6349 return 0;
6350 if (TREE_CODE (arg0) == REAL_CST)
6351 return 1;
6352
6353 if (TREE_CODE (arg1) == COMPLEX_CST)
6354 return 0;
6355 if (TREE_CODE (arg0) == COMPLEX_CST)
6356 return 1;
6357
6358 if (TREE_CONSTANT (arg1))
6359 return 0;
6360 if (TREE_CONSTANT (arg0))
6361 return 1;
6362
6363 if (optimize_size)
6364 return 0;
6365
6366 if (reorder && flag_evaluation_order
6367 && (TREE_SIDE_EFFECTS (arg0) || TREE_SIDE_EFFECTS (arg1)))
6368 return 0;
6369
6370 if (DECL_P (arg1))
6371 return 0;
6372 if (DECL_P (arg0))
6373 return 1;
6374
6375 /* It is preferable to swap two SSA_NAME to ensure a canonical form
6376 for commutative and comparison operators. Ensuring a canonical
6377 form allows the optimizers to find additional redundancies without
6378 having to explicitly check for both orderings. */
6379 if (TREE_CODE (arg0) == SSA_NAME
6380 && TREE_CODE (arg1) == SSA_NAME
6381 && SSA_NAME_VERSION (arg0) > SSA_NAME_VERSION (arg1))
6382 return 1;
6383
6384 return 0;
6385 }
6386
6387 /* Fold comparison ARG0 CODE ARG1 (with result in TYPE), where
6388 ARG0 is extended to a wider type. */
6389
6390 static tree
6391 fold_widened_comparison (enum tree_code code, tree type, tree arg0, tree arg1)
6392 {
6393 tree arg0_unw = get_unwidened (arg0, NULL_TREE);
6394 tree arg1_unw;
6395 tree shorter_type, outer_type;
6396 tree min, max;
6397 bool above, below;
6398
6399 if (arg0_unw == arg0)
6400 return NULL_TREE;
6401 shorter_type = TREE_TYPE (arg0_unw);
6402
6403 #ifdef HAVE_canonicalize_funcptr_for_compare
6404 /* Disable this optimization if we're casting a function pointer
6405 type on targets that require function pointer canonicalization. */
6406 if (HAVE_canonicalize_funcptr_for_compare
6407 && TREE_CODE (shorter_type) == POINTER_TYPE
6408 && TREE_CODE (TREE_TYPE (shorter_type)) == FUNCTION_TYPE)
6409 return NULL_TREE;
6410 #endif
6411
6412 if (TYPE_PRECISION (TREE_TYPE (arg0)) <= TYPE_PRECISION (shorter_type))
6413 return NULL_TREE;
6414
6415 arg1_unw = get_unwidened (arg1, shorter_type);
6416
6417 /* If possible, express the comparison in the shorter mode. */
6418 if ((code == EQ_EXPR || code == NE_EXPR
6419 || TYPE_UNSIGNED (TREE_TYPE (arg0)) == TYPE_UNSIGNED (shorter_type))
6420 && (TREE_TYPE (arg1_unw) == shorter_type
6421 || (TREE_CODE (arg1_unw) == INTEGER_CST
6422 && (TREE_CODE (shorter_type) == INTEGER_TYPE
6423 || TREE_CODE (shorter_type) == BOOLEAN_TYPE)
6424 && int_fits_type_p (arg1_unw, shorter_type))))
6425 return fold_build2 (code, type, arg0_unw,
6426 fold_convert (shorter_type, arg1_unw));
6427
6428 if (TREE_CODE (arg1_unw) != INTEGER_CST
6429 || TREE_CODE (shorter_type) != INTEGER_TYPE
6430 || !int_fits_type_p (arg1_unw, shorter_type))
6431 return NULL_TREE;
6432
6433 /* If we are comparing with the integer that does not fit into the range
6434 of the shorter type, the result is known. */
6435 outer_type = TREE_TYPE (arg1_unw);
6436 min = lower_bound_in_type (outer_type, shorter_type);
6437 max = upper_bound_in_type (outer_type, shorter_type);
6438
6439 above = integer_nonzerop (fold_relational_const (LT_EXPR, type,
6440 max, arg1_unw));
6441 below = integer_nonzerop (fold_relational_const (LT_EXPR, type,
6442 arg1_unw, min));
6443
6444 switch (code)
6445 {
6446 case EQ_EXPR:
6447 if (above || below)
6448 return omit_one_operand (type, integer_zero_node, arg0);
6449 break;
6450
6451 case NE_EXPR:
6452 if (above || below)
6453 return omit_one_operand (type, integer_one_node, arg0);
6454 break;
6455
6456 case LT_EXPR:
6457 case LE_EXPR:
6458 if (above)
6459 return omit_one_operand (type, integer_one_node, arg0);
6460 else if (below)
6461 return omit_one_operand (type, integer_zero_node, arg0);
6462
6463 case GT_EXPR:
6464 case GE_EXPR:
6465 if (above)
6466 return omit_one_operand (type, integer_zero_node, arg0);
6467 else if (below)
6468 return omit_one_operand (type, integer_one_node, arg0);
6469
6470 default:
6471 break;
6472 }
6473
6474 return NULL_TREE;
6475 }
6476
6477 /* Fold comparison ARG0 CODE ARG1 (with result in TYPE), where for
6478 ARG0 just the signedness is changed. */
6479
6480 static tree
6481 fold_sign_changed_comparison (enum tree_code code, tree type,
6482 tree arg0, tree arg1)
6483 {
6484 tree arg0_inner, tmp;
6485 tree inner_type, outer_type;
6486
6487 if (TREE_CODE (arg0) != NOP_EXPR
6488 && TREE_CODE (arg0) != CONVERT_EXPR)
6489 return NULL_TREE;
6490
6491 outer_type = TREE_TYPE (arg0);
6492 arg0_inner = TREE_OPERAND (arg0, 0);
6493 inner_type = TREE_TYPE (arg0_inner);
6494
6495 #ifdef HAVE_canonicalize_funcptr_for_compare
6496 /* Disable this optimization if we're casting a function pointer
6497 type on targets that require function pointer canonicalization. */
6498 if (HAVE_canonicalize_funcptr_for_compare
6499 && TREE_CODE (inner_type) == POINTER_TYPE
6500 && TREE_CODE (TREE_TYPE (inner_type)) == FUNCTION_TYPE)
6501 return NULL_TREE;
6502 #endif
6503
6504 if (TYPE_PRECISION (inner_type) != TYPE_PRECISION (outer_type))
6505 return NULL_TREE;
6506
6507 if (TREE_CODE (arg1) != INTEGER_CST
6508 && !((TREE_CODE (arg1) == NOP_EXPR
6509 || TREE_CODE (arg1) == CONVERT_EXPR)
6510 && TREE_TYPE (TREE_OPERAND (arg1, 0)) == inner_type))
6511 return NULL_TREE;
6512
6513 if (TYPE_UNSIGNED (inner_type) != TYPE_UNSIGNED (outer_type)
6514 && code != NE_EXPR
6515 && code != EQ_EXPR)
6516 return NULL_TREE;
6517
6518 if (TREE_CODE (arg1) == INTEGER_CST)
6519 {
6520 tmp = build_int_cst_wide (inner_type,
6521 TREE_INT_CST_LOW (arg1),
6522 TREE_INT_CST_HIGH (arg1));
6523 arg1 = force_fit_type (tmp, 0,
6524 TREE_OVERFLOW (arg1),
6525 TREE_CONSTANT_OVERFLOW (arg1));
6526 }
6527 else
6528 arg1 = fold_convert (inner_type, arg1);
6529
6530 return fold_build2 (code, type, arg0_inner, arg1);
6531 }
6532
6533 /* Tries to replace &a[idx] CODE s * delta with &a[idx CODE delta], if s is
6534 step of the array. Reconstructs s and delta in the case of s * delta
6535 being an integer constant (and thus already folded).
6536 ADDR is the address. MULT is the multiplicative expression.
6537 If the function succeeds, the new address expression is returned. Otherwise
6538 NULL_TREE is returned. */
6539
6540 static tree
6541 try_move_mult_to_index (enum tree_code code, tree addr, tree op1)
6542 {
6543 tree s, delta, step;
6544 tree ref = TREE_OPERAND (addr, 0), pref;
6545 tree ret, pos;
6546 tree itype;
6547
6548 /* Canonicalize op1 into a possibly non-constant delta
6549 and an INTEGER_CST s. */
6550 if (TREE_CODE (op1) == MULT_EXPR)
6551 {
6552 tree arg0 = TREE_OPERAND (op1, 0), arg1 = TREE_OPERAND (op1, 1);
6553
6554 STRIP_NOPS (arg0);
6555 STRIP_NOPS (arg1);
6556
6557 if (TREE_CODE (arg0) == INTEGER_CST)
6558 {
6559 s = arg0;
6560 delta = arg1;
6561 }
6562 else if (TREE_CODE (arg1) == INTEGER_CST)
6563 {
6564 s = arg1;
6565 delta = arg0;
6566 }
6567 else
6568 return NULL_TREE;
6569 }
6570 else if (TREE_CODE (op1) == INTEGER_CST)
6571 {
6572 delta = op1;
6573 s = NULL_TREE;
6574 }
6575 else
6576 {
6577 /* Simulate we are delta * 1. */
6578 delta = op1;
6579 s = integer_one_node;
6580 }
6581
6582 for (;; ref = TREE_OPERAND (ref, 0))
6583 {
6584 if (TREE_CODE (ref) == ARRAY_REF)
6585 {
6586 itype = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (ref, 0)));
6587 if (! itype)
6588 continue;
6589
6590 step = array_ref_element_size (ref);
6591 if (TREE_CODE (step) != INTEGER_CST)
6592 continue;
6593
6594 if (s)
6595 {
6596 if (! tree_int_cst_equal (step, s))
6597 continue;
6598 }
6599 else
6600 {
6601 /* Try if delta is a multiple of step. */
6602 tree tmp = div_if_zero_remainder (EXACT_DIV_EXPR, delta, step);
6603 if (! tmp)
6604 continue;
6605 delta = tmp;
6606 }
6607
6608 break;
6609 }
6610
6611 if (!handled_component_p (ref))
6612 return NULL_TREE;
6613 }
6614
6615 /* We found the suitable array reference. So copy everything up to it,
6616 and replace the index. */
6617
6618 pref = TREE_OPERAND (addr, 0);
6619 ret = copy_node (pref);
6620 pos = ret;
6621
6622 while (pref != ref)
6623 {
6624 pref = TREE_OPERAND (pref, 0);
6625 TREE_OPERAND (pos, 0) = copy_node (pref);
6626 pos = TREE_OPERAND (pos, 0);
6627 }
6628
6629 TREE_OPERAND (pos, 1) = fold_build2 (code, itype,
6630 fold_convert (itype,
6631 TREE_OPERAND (pos, 1)),
6632 fold_convert (itype, delta));
6633
6634 return fold_build1 (ADDR_EXPR, TREE_TYPE (addr), ret);
6635 }
6636
6637
6638 /* Fold A < X && A + 1 > Y to A < X && A >= Y. Normally A + 1 > Y
6639 means A >= Y && A != MAX, but in this case we know that
6640 A < X <= MAX. INEQ is A + 1 > Y, BOUND is A < X. */
6641
6642 static tree
6643 fold_to_nonsharp_ineq_using_bound (tree ineq, tree bound)
6644 {
6645 tree a, typea, type = TREE_TYPE (ineq), a1, diff, y;
6646
6647 if (TREE_CODE (bound) == LT_EXPR)
6648 a = TREE_OPERAND (bound, 0);
6649 else if (TREE_CODE (bound) == GT_EXPR)
6650 a = TREE_OPERAND (bound, 1);
6651 else
6652 return NULL_TREE;
6653
6654 typea = TREE_TYPE (a);
6655 if (!INTEGRAL_TYPE_P (typea)
6656 && !POINTER_TYPE_P (typea))
6657 return NULL_TREE;
6658
6659 if (TREE_CODE (ineq) == LT_EXPR)
6660 {
6661 a1 = TREE_OPERAND (ineq, 1);
6662 y = TREE_OPERAND (ineq, 0);
6663 }
6664 else if (TREE_CODE (ineq) == GT_EXPR)
6665 {
6666 a1 = TREE_OPERAND (ineq, 0);
6667 y = TREE_OPERAND (ineq, 1);
6668 }
6669 else
6670 return NULL_TREE;
6671
6672 if (TREE_TYPE (a1) != typea)
6673 return NULL_TREE;
6674
6675 diff = fold_build2 (MINUS_EXPR, typea, a1, a);
6676 if (!integer_onep (diff))
6677 return NULL_TREE;
6678
6679 return fold_build2 (GE_EXPR, type, a, y);
6680 }
6681
6682 /* Fold a sum or difference of at least one multiplication.
6683 Returns the folded tree or NULL if no simplification could be made. */
6684
6685 static tree
6686 fold_plusminus_mult_expr (enum tree_code code, tree type, tree arg0, tree arg1)
6687 {
6688 tree arg00, arg01, arg10, arg11;
6689 tree alt0 = NULL_TREE, alt1 = NULL_TREE, same;
6690
6691 /* (A * C) +- (B * C) -> (A+-B) * C.
6692 (A * C) +- A -> A * (C+-1).
6693 We are most concerned about the case where C is a constant,
6694 but other combinations show up during loop reduction. Since
6695 it is not difficult, try all four possibilities. */
6696
6697 if (TREE_CODE (arg0) == MULT_EXPR)
6698 {
6699 arg00 = TREE_OPERAND (arg0, 0);
6700 arg01 = TREE_OPERAND (arg0, 1);
6701 }
6702 else
6703 {
6704 arg00 = arg0;
6705 arg01 = fold_convert (type, integer_one_node);
6706 }
6707 if (TREE_CODE (arg1) == MULT_EXPR)
6708 {
6709 arg10 = TREE_OPERAND (arg1, 0);
6710 arg11 = TREE_OPERAND (arg1, 1);
6711 }
6712 else
6713 {
6714 arg10 = arg1;
6715 arg11 = fold_convert (type, integer_one_node);
6716 }
6717 same = NULL_TREE;
6718
6719 if (operand_equal_p (arg01, arg11, 0))
6720 same = arg01, alt0 = arg00, alt1 = arg10;
6721 else if (operand_equal_p (arg00, arg10, 0))
6722 same = arg00, alt0 = arg01, alt1 = arg11;
6723 else if (operand_equal_p (arg00, arg11, 0))
6724 same = arg00, alt0 = arg01, alt1 = arg10;
6725 else if (operand_equal_p (arg01, arg10, 0))
6726 same = arg01, alt0 = arg00, alt1 = arg11;
6727
6728 /* No identical multiplicands; see if we can find a common
6729 power-of-two factor in non-power-of-two multiplies. This
6730 can help in multi-dimensional array access. */
6731 else if (host_integerp (arg01, 0)
6732 && host_integerp (arg11, 0))
6733 {
6734 HOST_WIDE_INT int01, int11, tmp;
6735 bool swap = false;
6736 tree maybe_same;
6737 int01 = TREE_INT_CST_LOW (arg01);
6738 int11 = TREE_INT_CST_LOW (arg11);
6739
6740 /* Move min of absolute values to int11. */
6741 if ((int01 >= 0 ? int01 : -int01)
6742 < (int11 >= 0 ? int11 : -int11))
6743 {
6744 tmp = int01, int01 = int11, int11 = tmp;
6745 alt0 = arg00, arg00 = arg10, arg10 = alt0;
6746 maybe_same = arg01;
6747 swap = true;
6748 }
6749 else
6750 maybe_same = arg11;
6751
6752 if (exact_log2 (int11) > 0 && int01 % int11 == 0)
6753 {
6754 alt0 = fold_build2 (MULT_EXPR, TREE_TYPE (arg00), arg00,
6755 build_int_cst (TREE_TYPE (arg00),
6756 int01 / int11));
6757 alt1 = arg10;
6758 same = maybe_same;
6759 if (swap)
6760 maybe_same = alt0, alt0 = alt1, alt1 = maybe_same;
6761 }
6762 }
6763
6764 if (same)
6765 return fold_build2 (MULT_EXPR, type,
6766 fold_build2 (code, type,
6767 fold_convert (type, alt0),
6768 fold_convert (type, alt1)),
6769 fold_convert (type, same));
6770
6771 return NULL_TREE;
6772 }
6773
6774 /* Subroutine of native_encode_expr. Encode the INTEGER_CST
6775 specified by EXPR into the buffer PTR of length LEN bytes.
6776 Return the number of bytes placed in the buffer, or zero
6777 upon failure. */
6778
6779 static int
6780 native_encode_int (tree expr, unsigned char *ptr, int len)
6781 {
6782 tree type = TREE_TYPE (expr);
6783 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
6784 int byte, offset, word, words;
6785 unsigned char value;
6786
6787 if (total_bytes > len)
6788 return 0;
6789 words = total_bytes / UNITS_PER_WORD;
6790
6791 for (byte = 0; byte < total_bytes; byte++)
6792 {
6793 int bitpos = byte * BITS_PER_UNIT;
6794 if (bitpos < HOST_BITS_PER_WIDE_INT)
6795 value = (unsigned char) (TREE_INT_CST_LOW (expr) >> bitpos);
6796 else
6797 value = (unsigned char) (TREE_INT_CST_HIGH (expr)
6798 >> (bitpos - HOST_BITS_PER_WIDE_INT));
6799
6800 if (total_bytes > UNITS_PER_WORD)
6801 {
6802 word = byte / UNITS_PER_WORD;
6803 if (WORDS_BIG_ENDIAN)
6804 word = (words - 1) - word;
6805 offset = word * UNITS_PER_WORD;
6806 if (BYTES_BIG_ENDIAN)
6807 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
6808 else
6809 offset += byte % UNITS_PER_WORD;
6810 }
6811 else
6812 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte;
6813 ptr[offset] = value;
6814 }
6815 return total_bytes;
6816 }
6817
6818
6819 /* Subroutine of native_encode_expr. Encode the REAL_CST
6820 specified by EXPR into the buffer PTR of length LEN bytes.
6821 Return the number of bytes placed in the buffer, or zero
6822 upon failure. */
6823
6824 static int
6825 native_encode_real (tree expr, unsigned char *ptr, int len)
6826 {
6827 tree type = TREE_TYPE (expr);
6828 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
6829 int byte, offset, word, words;
6830 unsigned char value;
6831
6832 /* There are always 32 bits in each long, no matter the size of
6833 the hosts long. We handle floating point representations with
6834 up to 192 bits. */
6835 long tmp[6];
6836
6837 if (total_bytes > len)
6838 return 0;
6839 words = total_bytes / UNITS_PER_WORD;
6840
6841 real_to_target (tmp, TREE_REAL_CST_PTR (expr), TYPE_MODE (type));
6842
6843 for (byte = 0; byte < total_bytes; byte++)
6844 {
6845 int bitpos = byte * BITS_PER_UNIT;
6846 value = (unsigned char) (tmp[bitpos / 32] >> (bitpos & 31));
6847
6848 if (total_bytes > UNITS_PER_WORD)
6849 {
6850 word = byte / UNITS_PER_WORD;
6851 if (FLOAT_WORDS_BIG_ENDIAN)
6852 word = (words - 1) - word;
6853 offset = word * UNITS_PER_WORD;
6854 if (BYTES_BIG_ENDIAN)
6855 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
6856 else
6857 offset += byte % UNITS_PER_WORD;
6858 }
6859 else
6860 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte;
6861 ptr[offset] = value;
6862 }
6863 return total_bytes;
6864 }
6865
6866 /* Subroutine of native_encode_expr. Encode the COMPLEX_CST
6867 specified by EXPR into the buffer PTR of length LEN bytes.
6868 Return the number of bytes placed in the buffer, or zero
6869 upon failure. */
6870
6871 static int
6872 native_encode_complex (tree expr, unsigned char *ptr, int len)
6873 {
6874 int rsize, isize;
6875 tree part;
6876
6877 part = TREE_REALPART (expr);
6878 rsize = native_encode_expr (part, ptr, len);
6879 if (rsize == 0)
6880 return 0;
6881 part = TREE_IMAGPART (expr);
6882 isize = native_encode_expr (part, ptr+rsize, len-rsize);
6883 if (isize != rsize)
6884 return 0;
6885 return rsize + isize;
6886 }
6887
6888
6889 /* Subroutine of native_encode_expr. Encode the VECTOR_CST
6890 specified by EXPR into the buffer PTR of length LEN bytes.
6891 Return the number of bytes placed in the buffer, or zero
6892 upon failure. */
6893
6894 static int
6895 native_encode_vector (tree expr, unsigned char *ptr, int len)
6896 {
6897 int i, size, offset, count;
6898 tree elem, elements;
6899
6900 size = 0;
6901 offset = 0;
6902 elements = TREE_VECTOR_CST_ELTS (expr);
6903 count = TYPE_VECTOR_SUBPARTS (TREE_TYPE (expr));
6904 for (i = 0; i < count; i++)
6905 {
6906 if (elements)
6907 {
6908 elem = TREE_VALUE (elements);
6909 elements = TREE_CHAIN (elements);
6910 }
6911 else
6912 elem = NULL_TREE;
6913
6914 if (elem)
6915 {
6916 size = native_encode_expr (elem, ptr+offset, len-offset);
6917 if (size == 0)
6918 return 0;
6919 }
6920 else if (size != 0)
6921 {
6922 if (offset + size > len)
6923 return 0;
6924 memset (ptr+offset, 0, size);
6925 }
6926 else
6927 return 0;
6928 offset += size;
6929 }
6930 return offset;
6931 }
6932
6933
6934 /* Subroutine of fold_view_convert_expr. Encode the INTEGER_CST,
6935 REAL_CST, COMPLEX_CST or VECTOR_CST specified by EXPR into the
6936 buffer PTR of length LEN bytes. Return the number of bytes
6937 placed in the buffer, or zero upon failure. */
6938
6939 static int
6940 native_encode_expr (tree expr, unsigned char *ptr, int len)
6941 {
6942 switch (TREE_CODE (expr))
6943 {
6944 case INTEGER_CST:
6945 return native_encode_int (expr, ptr, len);
6946
6947 case REAL_CST:
6948 return native_encode_real (expr, ptr, len);
6949
6950 case COMPLEX_CST:
6951 return native_encode_complex (expr, ptr, len);
6952
6953 case VECTOR_CST:
6954 return native_encode_vector (expr, ptr, len);
6955
6956 default:
6957 return 0;
6958 }
6959 }
6960
6961
6962 /* Subroutine of native_interpret_expr. Interpret the contents of
6963 the buffer PTR of length LEN as an INTEGER_CST of type TYPE.
6964 If the buffer cannot be interpreted, return NULL_TREE. */
6965
6966 static tree
6967 native_interpret_int (tree type, unsigned char *ptr, int len)
6968 {
6969 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
6970 int byte, offset, word, words;
6971 unsigned char value;
6972 unsigned int HOST_WIDE_INT lo = 0;
6973 HOST_WIDE_INT hi = 0;
6974
6975 if (total_bytes > len)
6976 return NULL_TREE;
6977 if (total_bytes * BITS_PER_UNIT > 2 * HOST_BITS_PER_WIDE_INT)
6978 return NULL_TREE;
6979 words = total_bytes / UNITS_PER_WORD;
6980
6981 for (byte = 0; byte < total_bytes; byte++)
6982 {
6983 int bitpos = byte * BITS_PER_UNIT;
6984 if (total_bytes > UNITS_PER_WORD)
6985 {
6986 word = byte / UNITS_PER_WORD;
6987 if (WORDS_BIG_ENDIAN)
6988 word = (words - 1) - word;
6989 offset = word * UNITS_PER_WORD;
6990 if (BYTES_BIG_ENDIAN)
6991 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
6992 else
6993 offset += byte % UNITS_PER_WORD;
6994 }
6995 else
6996 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte;
6997 value = ptr[offset];
6998
6999 if (bitpos < HOST_BITS_PER_WIDE_INT)
7000 lo |= (unsigned HOST_WIDE_INT) value << bitpos;
7001 else
7002 hi |= (unsigned HOST_WIDE_INT) value
7003 << (bitpos - HOST_BITS_PER_WIDE_INT);
7004 }
7005
7006 return force_fit_type (build_int_cst_wide (type, lo, hi),
7007 0, false, false);
7008 }
7009
7010
7011 /* Subroutine of native_interpret_expr. Interpret the contents of
7012 the buffer PTR of length LEN as a REAL_CST of type TYPE.
7013 If the buffer cannot be interpreted, return NULL_TREE. */
7014
7015 static tree
7016 native_interpret_real (tree type, unsigned char *ptr, int len)
7017 {
7018 enum machine_mode mode = TYPE_MODE (type);
7019 int total_bytes = GET_MODE_SIZE (mode);
7020 int byte, offset, word, words;
7021 unsigned char value;
7022 /* There are always 32 bits in each long, no matter the size of
7023 the hosts long. We handle floating point representations with
7024 up to 192 bits. */
7025 REAL_VALUE_TYPE r;
7026 long tmp[6];
7027
7028 total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7029 if (total_bytes > len || total_bytes > 24)
7030 return NULL_TREE;
7031 words = total_bytes / UNITS_PER_WORD;
7032
7033 memset (tmp, 0, sizeof (tmp));
7034 for (byte = 0; byte < total_bytes; byte++)
7035 {
7036 int bitpos = byte * BITS_PER_UNIT;
7037 if (total_bytes > UNITS_PER_WORD)
7038 {
7039 word = byte / UNITS_PER_WORD;
7040 if (FLOAT_WORDS_BIG_ENDIAN)
7041 word = (words - 1) - word;
7042 offset = word * UNITS_PER_WORD;
7043 if (BYTES_BIG_ENDIAN)
7044 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7045 else
7046 offset += byte % UNITS_PER_WORD;
7047 }
7048 else
7049 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte;
7050 value = ptr[offset];
7051
7052 tmp[bitpos / 32] |= (unsigned long)value << (bitpos & 31);
7053 }
7054
7055 real_from_target (&r, tmp, mode);
7056 return build_real (type, r);
7057 }
7058
7059
7060 /* Subroutine of native_interpret_expr. Interpret the contents of
7061 the buffer PTR of length LEN as a COMPLEX_CST of type TYPE.
7062 If the buffer cannot be interpreted, return NULL_TREE. */
7063
7064 static tree
7065 native_interpret_complex (tree type, unsigned char *ptr, int len)
7066 {
7067 tree etype, rpart, ipart;
7068 int size;
7069
7070 etype = TREE_TYPE (type);
7071 size = GET_MODE_SIZE (TYPE_MODE (etype));
7072 if (size * 2 > len)
7073 return NULL_TREE;
7074 rpart = native_interpret_expr (etype, ptr, size);
7075 if (!rpart)
7076 return NULL_TREE;
7077 ipart = native_interpret_expr (etype, ptr+size, size);
7078 if (!ipart)
7079 return NULL_TREE;
7080 return build_complex (type, rpart, ipart);
7081 }
7082
7083
7084 /* Subroutine of native_interpret_expr. Interpret the contents of
7085 the buffer PTR of length LEN as a VECTOR_CST of type TYPE.
7086 If the buffer cannot be interpreted, return NULL_TREE. */
7087
7088 static tree
7089 native_interpret_vector (tree type, unsigned char *ptr, int len)
7090 {
7091 tree etype, elem, elements;
7092 int i, size, count;
7093
7094 etype = TREE_TYPE (type);
7095 size = GET_MODE_SIZE (TYPE_MODE (etype));
7096 count = TYPE_VECTOR_SUBPARTS (type);
7097 if (size * count > len)
7098 return NULL_TREE;
7099
7100 elements = NULL_TREE;
7101 for (i = count - 1; i >= 0; i--)
7102 {
7103 elem = native_interpret_expr (etype, ptr+(i*size), size);
7104 if (!elem)
7105 return NULL_TREE;
7106 elements = tree_cons (NULL_TREE, elem, elements);
7107 }
7108 return build_vector (type, elements);
7109 }
7110
7111
7112 /* Subroutine of fold_view_convert_expr. Interpret the contents of
7113 the buffer PTR of length LEN as a constant of type TYPE. For
7114 INTEGRAL_TYPE_P we return an INTEGER_CST, for SCALAR_FLOAT_TYPE_P
7115 we return a REAL_CST, etc... If the buffer cannot be interpreted,
7116 return NULL_TREE. */
7117
7118 static tree
7119 native_interpret_expr (tree type, unsigned char *ptr, int len)
7120 {
7121 switch (TREE_CODE (type))
7122 {
7123 case INTEGER_TYPE:
7124 case ENUMERAL_TYPE:
7125 case BOOLEAN_TYPE:
7126 return native_interpret_int (type, ptr, len);
7127
7128 case REAL_TYPE:
7129 return native_interpret_real (type, ptr, len);
7130
7131 case COMPLEX_TYPE:
7132 return native_interpret_complex (type, ptr, len);
7133
7134 case VECTOR_TYPE:
7135 return native_interpret_vector (type, ptr, len);
7136
7137 default:
7138 return NULL_TREE;
7139 }
7140 }
7141
7142
7143 /* Fold a VIEW_CONVERT_EXPR of a constant expression EXPR to type
7144 TYPE at compile-time. If we're unable to perform the conversion
7145 return NULL_TREE. */
7146
7147 static tree
7148 fold_view_convert_expr (tree type, tree expr)
7149 {
7150 /* We support up to 512-bit values (for V8DFmode). */
7151 unsigned char buffer[64];
7152 int len;
7153
7154 /* Check that the host and target are sane. */
7155 if (CHAR_BIT != 8 || BITS_PER_UNIT != 8)
7156 return NULL_TREE;
7157
7158 len = native_encode_expr (expr, buffer, sizeof (buffer));
7159 if (len == 0)
7160 return NULL_TREE;
7161
7162 return native_interpret_expr (type, buffer, len);
7163 }
7164
7165
7166 /* Fold a unary expression of code CODE and type TYPE with operand
7167 OP0. Return the folded expression if folding is successful.
7168 Otherwise, return NULL_TREE. */
7169
7170 tree
7171 fold_unary (enum tree_code code, tree type, tree op0)
7172 {
7173 tree tem;
7174 tree arg0;
7175 enum tree_code_class kind = TREE_CODE_CLASS (code);
7176
7177 gcc_assert (IS_EXPR_CODE_CLASS (kind)
7178 && TREE_CODE_LENGTH (code) == 1);
7179
7180 arg0 = op0;
7181 if (arg0)
7182 {
7183 if (code == NOP_EXPR || code == CONVERT_EXPR
7184 || code == FLOAT_EXPR || code == ABS_EXPR)
7185 {
7186 /* Don't use STRIP_NOPS, because signedness of argument type
7187 matters. */
7188 STRIP_SIGN_NOPS (arg0);
7189 }
7190 else
7191 {
7192 /* Strip any conversions that don't change the mode. This
7193 is safe for every expression, except for a comparison
7194 expression because its signedness is derived from its
7195 operands.
7196
7197 Note that this is done as an internal manipulation within
7198 the constant folder, in order to find the simplest
7199 representation of the arguments so that their form can be
7200 studied. In any cases, the appropriate type conversions
7201 should be put back in the tree that will get out of the
7202 constant folder. */
7203 STRIP_NOPS (arg0);
7204 }
7205 }
7206
7207 if (TREE_CODE_CLASS (code) == tcc_unary)
7208 {
7209 if (TREE_CODE (arg0) == COMPOUND_EXPR)
7210 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
7211 fold_build1 (code, type, TREE_OPERAND (arg0, 1)));
7212 else if (TREE_CODE (arg0) == COND_EXPR)
7213 {
7214 tree arg01 = TREE_OPERAND (arg0, 1);
7215 tree arg02 = TREE_OPERAND (arg0, 2);
7216 if (! VOID_TYPE_P (TREE_TYPE (arg01)))
7217 arg01 = fold_build1 (code, type, arg01);
7218 if (! VOID_TYPE_P (TREE_TYPE (arg02)))
7219 arg02 = fold_build1 (code, type, arg02);
7220 tem = fold_build3 (COND_EXPR, type, TREE_OPERAND (arg0, 0),
7221 arg01, arg02);
7222
7223 /* If this was a conversion, and all we did was to move into
7224 inside the COND_EXPR, bring it back out. But leave it if
7225 it is a conversion from integer to integer and the
7226 result precision is no wider than a word since such a
7227 conversion is cheap and may be optimized away by combine,
7228 while it couldn't if it were outside the COND_EXPR. Then return
7229 so we don't get into an infinite recursion loop taking the
7230 conversion out and then back in. */
7231
7232 if ((code == NOP_EXPR || code == CONVERT_EXPR
7233 || code == NON_LVALUE_EXPR)
7234 && TREE_CODE (tem) == COND_EXPR
7235 && TREE_CODE (TREE_OPERAND (tem, 1)) == code
7236 && TREE_CODE (TREE_OPERAND (tem, 2)) == code
7237 && ! VOID_TYPE_P (TREE_OPERAND (tem, 1))
7238 && ! VOID_TYPE_P (TREE_OPERAND (tem, 2))
7239 && (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 1), 0))
7240 == TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 2), 0)))
7241 && (! (INTEGRAL_TYPE_P (TREE_TYPE (tem))
7242 && (INTEGRAL_TYPE_P
7243 (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 1), 0))))
7244 && TYPE_PRECISION (TREE_TYPE (tem)) <= BITS_PER_WORD)
7245 || flag_syntax_only))
7246 tem = build1 (code, type,
7247 build3 (COND_EXPR,
7248 TREE_TYPE (TREE_OPERAND
7249 (TREE_OPERAND (tem, 1), 0)),
7250 TREE_OPERAND (tem, 0),
7251 TREE_OPERAND (TREE_OPERAND (tem, 1), 0),
7252 TREE_OPERAND (TREE_OPERAND (tem, 2), 0)));
7253 return tem;
7254 }
7255 else if (COMPARISON_CLASS_P (arg0))
7256 {
7257 if (TREE_CODE (type) == BOOLEAN_TYPE)
7258 {
7259 arg0 = copy_node (arg0);
7260 TREE_TYPE (arg0) = type;
7261 return arg0;
7262 }
7263 else if (TREE_CODE (type) != INTEGER_TYPE)
7264 return fold_build3 (COND_EXPR, type, arg0,
7265 fold_build1 (code, type,
7266 integer_one_node),
7267 fold_build1 (code, type,
7268 integer_zero_node));
7269 }
7270 }
7271
7272 switch (code)
7273 {
7274 case NOP_EXPR:
7275 case FLOAT_EXPR:
7276 case CONVERT_EXPR:
7277 case FIX_TRUNC_EXPR:
7278 case FIX_CEIL_EXPR:
7279 case FIX_FLOOR_EXPR:
7280 case FIX_ROUND_EXPR:
7281 if (TREE_TYPE (op0) == type)
7282 return op0;
7283
7284 /* If we have (type) (a CMP b) and type is an integral type, return
7285 new expression involving the new type. */
7286 if (COMPARISON_CLASS_P (op0) && INTEGRAL_TYPE_P (type))
7287 return fold_build2 (TREE_CODE (op0), type, TREE_OPERAND (op0, 0),
7288 TREE_OPERAND (op0, 1));
7289
7290 /* Handle cases of two conversions in a row. */
7291 if (TREE_CODE (op0) == NOP_EXPR
7292 || TREE_CODE (op0) == CONVERT_EXPR)
7293 {
7294 tree inside_type = TREE_TYPE (TREE_OPERAND (op0, 0));
7295 tree inter_type = TREE_TYPE (op0);
7296 int inside_int = INTEGRAL_TYPE_P (inside_type);
7297 int inside_ptr = POINTER_TYPE_P (inside_type);
7298 int inside_float = FLOAT_TYPE_P (inside_type);
7299 int inside_vec = TREE_CODE (inside_type) == VECTOR_TYPE;
7300 unsigned int inside_prec = TYPE_PRECISION (inside_type);
7301 int inside_unsignedp = TYPE_UNSIGNED (inside_type);
7302 int inter_int = INTEGRAL_TYPE_P (inter_type);
7303 int inter_ptr = POINTER_TYPE_P (inter_type);
7304 int inter_float = FLOAT_TYPE_P (inter_type);
7305 int inter_vec = TREE_CODE (inter_type) == VECTOR_TYPE;
7306 unsigned int inter_prec = TYPE_PRECISION (inter_type);
7307 int inter_unsignedp = TYPE_UNSIGNED (inter_type);
7308 int final_int = INTEGRAL_TYPE_P (type);
7309 int final_ptr = POINTER_TYPE_P (type);
7310 int final_float = FLOAT_TYPE_P (type);
7311 int final_vec = TREE_CODE (type) == VECTOR_TYPE;
7312 unsigned int final_prec = TYPE_PRECISION (type);
7313 int final_unsignedp = TYPE_UNSIGNED (type);
7314
7315 /* In addition to the cases of two conversions in a row
7316 handled below, if we are converting something to its own
7317 type via an object of identical or wider precision, neither
7318 conversion is needed. */
7319 if (TYPE_MAIN_VARIANT (inside_type) == TYPE_MAIN_VARIANT (type)
7320 && (((inter_int || inter_ptr) && final_int)
7321 || (inter_float && final_float))
7322 && inter_prec >= final_prec)
7323 return fold_build1 (code, type, TREE_OPERAND (op0, 0));
7324
7325 /* Likewise, if the intermediate and final types are either both
7326 float or both integer, we don't need the middle conversion if
7327 it is wider than the final type and doesn't change the signedness
7328 (for integers). Avoid this if the final type is a pointer
7329 since then we sometimes need the inner conversion. Likewise if
7330 the outer has a precision not equal to the size of its mode. */
7331 if ((((inter_int || inter_ptr) && (inside_int || inside_ptr))
7332 || (inter_float && inside_float)
7333 || (inter_vec && inside_vec))
7334 && inter_prec >= inside_prec
7335 && (inter_float || inter_vec
7336 || inter_unsignedp == inside_unsignedp)
7337 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (type))
7338 && TYPE_MODE (type) == TYPE_MODE (inter_type))
7339 && ! final_ptr
7340 && (! final_vec || inter_prec == inside_prec))
7341 return fold_build1 (code, type, TREE_OPERAND (op0, 0));
7342
7343 /* If we have a sign-extension of a zero-extended value, we can
7344 replace that by a single zero-extension. */
7345 if (inside_int && inter_int && final_int
7346 && inside_prec < inter_prec && inter_prec < final_prec
7347 && inside_unsignedp && !inter_unsignedp)
7348 return fold_build1 (code, type, TREE_OPERAND (op0, 0));
7349
7350 /* Two conversions in a row are not needed unless:
7351 - some conversion is floating-point (overstrict for now), or
7352 - some conversion is a vector (overstrict for now), or
7353 - the intermediate type is narrower than both initial and
7354 final, or
7355 - the intermediate type and innermost type differ in signedness,
7356 and the outermost type is wider than the intermediate, or
7357 - the initial type is a pointer type and the precisions of the
7358 intermediate and final types differ, or
7359 - the final type is a pointer type and the precisions of the
7360 initial and intermediate types differ.
7361 - the final type is a pointer type and the initial type not
7362 - the initial type is a pointer to an array and the final type
7363 not. */
7364 if (! inside_float && ! inter_float && ! final_float
7365 && ! inside_vec && ! inter_vec && ! final_vec
7366 && (inter_prec >= inside_prec || inter_prec >= final_prec)
7367 && ! (inside_int && inter_int
7368 && inter_unsignedp != inside_unsignedp
7369 && inter_prec < final_prec)
7370 && ((inter_unsignedp && inter_prec > inside_prec)
7371 == (final_unsignedp && final_prec > inter_prec))
7372 && ! (inside_ptr && inter_prec != final_prec)
7373 && ! (final_ptr && inside_prec != inter_prec)
7374 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (type))
7375 && TYPE_MODE (type) == TYPE_MODE (inter_type))
7376 && final_ptr == inside_ptr
7377 && ! (inside_ptr
7378 && TREE_CODE (TREE_TYPE (inside_type)) == ARRAY_TYPE
7379 && TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE))
7380 return fold_build1 (code, type, TREE_OPERAND (op0, 0));
7381 }
7382
7383 /* Handle (T *)&A.B.C for A being of type T and B and C
7384 living at offset zero. This occurs frequently in
7385 C++ upcasting and then accessing the base. */
7386 if (TREE_CODE (op0) == ADDR_EXPR
7387 && POINTER_TYPE_P (type)
7388 && handled_component_p (TREE_OPERAND (op0, 0)))
7389 {
7390 HOST_WIDE_INT bitsize, bitpos;
7391 tree offset;
7392 enum machine_mode mode;
7393 int unsignedp, volatilep;
7394 tree base = TREE_OPERAND (op0, 0);
7395 base = get_inner_reference (base, &bitsize, &bitpos, &offset,
7396 &mode, &unsignedp, &volatilep, false);
7397 /* If the reference was to a (constant) zero offset, we can use
7398 the address of the base if it has the same base type
7399 as the result type. */
7400 if (! offset && bitpos == 0
7401 && TYPE_MAIN_VARIANT (TREE_TYPE (type))
7402 == TYPE_MAIN_VARIANT (TREE_TYPE (base)))
7403 return fold_convert (type, build_fold_addr_expr (base));
7404 }
7405
7406 if (TREE_CODE (op0) == MODIFY_EXPR
7407 && TREE_CONSTANT (TREE_OPERAND (op0, 1))
7408 /* Detect assigning a bitfield. */
7409 && !(TREE_CODE (TREE_OPERAND (op0, 0)) == COMPONENT_REF
7410 && DECL_BIT_FIELD (TREE_OPERAND (TREE_OPERAND (op0, 0), 1))))
7411 {
7412 /* Don't leave an assignment inside a conversion
7413 unless assigning a bitfield. */
7414 tem = fold_build1 (code, type, TREE_OPERAND (op0, 1));
7415 /* First do the assignment, then return converted constant. */
7416 tem = build2 (COMPOUND_EXPR, TREE_TYPE (tem), op0, tem);
7417 TREE_NO_WARNING (tem) = 1;
7418 TREE_USED (tem) = 1;
7419 return tem;
7420 }
7421
7422 /* Convert (T)(x & c) into (T)x & (T)c, if c is an integer
7423 constants (if x has signed type, the sign bit cannot be set
7424 in c). This folds extension into the BIT_AND_EXPR. */
7425 if (INTEGRAL_TYPE_P (type)
7426 && TREE_CODE (type) != BOOLEAN_TYPE
7427 && TREE_CODE (op0) == BIT_AND_EXPR
7428 && TREE_CODE (TREE_OPERAND (op0, 1)) == INTEGER_CST)
7429 {
7430 tree and = op0;
7431 tree and0 = TREE_OPERAND (and, 0), and1 = TREE_OPERAND (and, 1);
7432 int change = 0;
7433
7434 if (TYPE_UNSIGNED (TREE_TYPE (and))
7435 || (TYPE_PRECISION (type)
7436 <= TYPE_PRECISION (TREE_TYPE (and))))
7437 change = 1;
7438 else if (TYPE_PRECISION (TREE_TYPE (and1))
7439 <= HOST_BITS_PER_WIDE_INT
7440 && host_integerp (and1, 1))
7441 {
7442 unsigned HOST_WIDE_INT cst;
7443
7444 cst = tree_low_cst (and1, 1);
7445 cst &= (HOST_WIDE_INT) -1
7446 << (TYPE_PRECISION (TREE_TYPE (and1)) - 1);
7447 change = (cst == 0);
7448 #ifdef LOAD_EXTEND_OP
7449 if (change
7450 && !flag_syntax_only
7451 && (LOAD_EXTEND_OP (TYPE_MODE (TREE_TYPE (and0)))
7452 == ZERO_EXTEND))
7453 {
7454 tree uns = lang_hooks.types.unsigned_type (TREE_TYPE (and0));
7455 and0 = fold_convert (uns, and0);
7456 and1 = fold_convert (uns, and1);
7457 }
7458 #endif
7459 }
7460 if (change)
7461 {
7462 tem = build_int_cst_wide (type, TREE_INT_CST_LOW (and1),
7463 TREE_INT_CST_HIGH (and1));
7464 tem = force_fit_type (tem, 0, TREE_OVERFLOW (and1),
7465 TREE_CONSTANT_OVERFLOW (and1));
7466 return fold_build2 (BIT_AND_EXPR, type,
7467 fold_convert (type, and0), tem);
7468 }
7469 }
7470
7471 /* Convert (T1)((T2)X op Y) into (T1)X op Y, for pointer types T1 and
7472 T2 being pointers to types of the same size. */
7473 if (POINTER_TYPE_P (type)
7474 && BINARY_CLASS_P (arg0)
7475 && TREE_CODE (TREE_OPERAND (arg0, 0)) == NOP_EXPR
7476 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (arg0, 0))))
7477 {
7478 tree arg00 = TREE_OPERAND (arg0, 0);
7479 tree t0 = type;
7480 tree t1 = TREE_TYPE (arg00);
7481 tree tt0 = TREE_TYPE (t0);
7482 tree tt1 = TREE_TYPE (t1);
7483 tree s0 = TYPE_SIZE (tt0);
7484 tree s1 = TYPE_SIZE (tt1);
7485
7486 if (s0 && s1 && operand_equal_p (s0, s1, OEP_ONLY_CONST))
7487 return build2 (TREE_CODE (arg0), t0, fold_convert (t0, arg00),
7488 TREE_OPERAND (arg0, 1));
7489 }
7490
7491 /* Convert (T1)(~(T2)X) into ~(T1)X if T1 and T2 are integral types
7492 of the same precision, and X is a integer type not narrower than
7493 types T1 or T2, i.e. the cast (T2)X isn't an extension. */
7494 if (INTEGRAL_TYPE_P (type)
7495 && TREE_CODE (op0) == BIT_NOT_EXPR
7496 && INTEGRAL_TYPE_P (TREE_TYPE (op0))
7497 && (TREE_CODE (TREE_OPERAND (op0, 0)) == NOP_EXPR
7498 || TREE_CODE (TREE_OPERAND (op0, 0)) == CONVERT_EXPR)
7499 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (op0)))
7500 {
7501 tem = TREE_OPERAND (TREE_OPERAND (op0, 0), 0);
7502 if (INTEGRAL_TYPE_P (TREE_TYPE (tem))
7503 && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (tem)))
7504 return fold_build1 (BIT_NOT_EXPR, type, fold_convert (type, tem));
7505 }
7506
7507 tem = fold_convert_const (code, type, arg0);
7508 return tem ? tem : NULL_TREE;
7509
7510 case VIEW_CONVERT_EXPR:
7511 if (TREE_CODE (op0) == VIEW_CONVERT_EXPR)
7512 return fold_build1 (VIEW_CONVERT_EXPR, type, TREE_OPERAND (op0, 0));
7513 return fold_view_convert_expr (type, op0);
7514
7515 case NEGATE_EXPR:
7516 if (negate_expr_p (arg0))
7517 return fold_convert (type, negate_expr (arg0));
7518 return NULL_TREE;
7519
7520 case ABS_EXPR:
7521 if (TREE_CODE (arg0) == INTEGER_CST || TREE_CODE (arg0) == REAL_CST)
7522 return fold_abs_const (arg0, type);
7523 else if (TREE_CODE (arg0) == NEGATE_EXPR)
7524 return fold_build1 (ABS_EXPR, type, TREE_OPERAND (arg0, 0));
7525 /* Convert fabs((double)float) into (double)fabsf(float). */
7526 else if (TREE_CODE (arg0) == NOP_EXPR
7527 && TREE_CODE (type) == REAL_TYPE)
7528 {
7529 tree targ0 = strip_float_extensions (arg0);
7530 if (targ0 != arg0)
7531 return fold_convert (type, fold_build1 (ABS_EXPR,
7532 TREE_TYPE (targ0),
7533 targ0));
7534 }
7535 /* ABS_EXPR<ABS_EXPR<x>> = ABS_EXPR<x> even if flag_wrapv is on. */
7536 else if (tree_expr_nonnegative_p (arg0) || TREE_CODE (arg0) == ABS_EXPR)
7537 return arg0;
7538
7539 /* Strip sign ops from argument. */
7540 if (TREE_CODE (type) == REAL_TYPE)
7541 {
7542 tem = fold_strip_sign_ops (arg0);
7543 if (tem)
7544 return fold_build1 (ABS_EXPR, type, fold_convert (type, tem));
7545 }
7546 return NULL_TREE;
7547
7548 case CONJ_EXPR:
7549 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
7550 return fold_convert (type, arg0);
7551 if (TREE_CODE (arg0) == COMPLEX_EXPR)
7552 {
7553 tree itype = TREE_TYPE (type);
7554 tree rpart = fold_convert (itype, TREE_OPERAND (arg0, 0));
7555 tree ipart = fold_convert (itype, TREE_OPERAND (arg0, 1));
7556 return fold_build2 (COMPLEX_EXPR, type, rpart, negate_expr (ipart));
7557 }
7558 if (TREE_CODE (arg0) == COMPLEX_CST)
7559 {
7560 tree itype = TREE_TYPE (type);
7561 tree rpart = fold_convert (itype, TREE_REALPART (arg0));
7562 tree ipart = fold_convert (itype, TREE_IMAGPART (arg0));
7563 return build_complex (type, rpart, negate_expr (ipart));
7564 }
7565 if (TREE_CODE (arg0) == CONJ_EXPR)
7566 return fold_convert (type, TREE_OPERAND (arg0, 0));
7567 return NULL_TREE;
7568
7569 case BIT_NOT_EXPR:
7570 if (TREE_CODE (arg0) == INTEGER_CST)
7571 return fold_not_const (arg0, type);
7572 else if (TREE_CODE (arg0) == BIT_NOT_EXPR)
7573 return TREE_OPERAND (arg0, 0);
7574 /* Convert ~ (-A) to A - 1. */
7575 else if (INTEGRAL_TYPE_P (type) && TREE_CODE (arg0) == NEGATE_EXPR)
7576 return fold_build2 (MINUS_EXPR, type, TREE_OPERAND (arg0, 0),
7577 build_int_cst (type, 1));
7578 /* Convert ~ (A - 1) or ~ (A + -1) to -A. */
7579 else if (INTEGRAL_TYPE_P (type)
7580 && ((TREE_CODE (arg0) == MINUS_EXPR
7581 && integer_onep (TREE_OPERAND (arg0, 1)))
7582 || (TREE_CODE (arg0) == PLUS_EXPR
7583 && integer_all_onesp (TREE_OPERAND (arg0, 1)))))
7584 return fold_build1 (NEGATE_EXPR, type, TREE_OPERAND (arg0, 0));
7585 /* Convert ~(X ^ Y) to ~X ^ Y or X ^ ~Y if ~X or ~Y simplify. */
7586 else if (TREE_CODE (arg0) == BIT_XOR_EXPR
7587 && (tem = fold_unary (BIT_NOT_EXPR, type,
7588 fold_convert (type,
7589 TREE_OPERAND (arg0, 0)))))
7590 return fold_build2 (BIT_XOR_EXPR, type, tem,
7591 fold_convert (type, TREE_OPERAND (arg0, 1)));
7592 else if (TREE_CODE (arg0) == BIT_XOR_EXPR
7593 && (tem = fold_unary (BIT_NOT_EXPR, type,
7594 fold_convert (type,
7595 TREE_OPERAND (arg0, 1)))))
7596 return fold_build2 (BIT_XOR_EXPR, type,
7597 fold_convert (type, TREE_OPERAND (arg0, 0)), tem);
7598
7599 return NULL_TREE;
7600
7601 case TRUTH_NOT_EXPR:
7602 /* The argument to invert_truthvalue must have Boolean type. */
7603 if (TREE_CODE (TREE_TYPE (arg0)) != BOOLEAN_TYPE)
7604 arg0 = fold_convert (boolean_type_node, arg0);
7605
7606 /* Note that the operand of this must be an int
7607 and its values must be 0 or 1.
7608 ("true" is a fixed value perhaps depending on the language,
7609 but we don't handle values other than 1 correctly yet.) */
7610 tem = invert_truthvalue (arg0);
7611 /* Avoid infinite recursion. */
7612 if (TREE_CODE (tem) == TRUTH_NOT_EXPR)
7613 return NULL_TREE;
7614 return fold_convert (type, tem);
7615
7616 case REALPART_EXPR:
7617 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
7618 return fold_convert (type, arg0);
7619 if (TREE_CODE (arg0) == COMPLEX_EXPR)
7620 return omit_one_operand (type, TREE_OPERAND (arg0, 0),
7621 TREE_OPERAND (arg0, 1));
7622 if (TREE_CODE (arg0) == COMPLEX_CST)
7623 return fold_convert (type, TREE_REALPART (arg0));
7624 if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
7625 {
7626 tree itype = TREE_TYPE (TREE_TYPE (arg0));
7627 tem = fold_build2 (TREE_CODE (arg0), itype,
7628 fold_build1 (REALPART_EXPR, itype,
7629 TREE_OPERAND (arg0, 0)),
7630 fold_build1 (REALPART_EXPR, itype,
7631 TREE_OPERAND (arg0, 1)));
7632 return fold_convert (type, tem);
7633 }
7634 if (TREE_CODE (arg0) == CONJ_EXPR)
7635 {
7636 tree itype = TREE_TYPE (TREE_TYPE (arg0));
7637 tem = fold_build1 (REALPART_EXPR, itype, TREE_OPERAND (arg0, 0));
7638 return fold_convert (type, tem);
7639 }
7640 return NULL_TREE;
7641
7642 case IMAGPART_EXPR:
7643 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
7644 return fold_convert (type, integer_zero_node);
7645 if (TREE_CODE (arg0) == COMPLEX_EXPR)
7646 return omit_one_operand (type, TREE_OPERAND (arg0, 1),
7647 TREE_OPERAND (arg0, 0));
7648 if (TREE_CODE (arg0) == COMPLEX_CST)
7649 return fold_convert (type, TREE_IMAGPART (arg0));
7650 if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
7651 {
7652 tree itype = TREE_TYPE (TREE_TYPE (arg0));
7653 tem = fold_build2 (TREE_CODE (arg0), itype,
7654 fold_build1 (IMAGPART_EXPR, itype,
7655 TREE_OPERAND (arg0, 0)),
7656 fold_build1 (IMAGPART_EXPR, itype,
7657 TREE_OPERAND (arg0, 1)));
7658 return fold_convert (type, tem);
7659 }
7660 if (TREE_CODE (arg0) == CONJ_EXPR)
7661 {
7662 tree itype = TREE_TYPE (TREE_TYPE (arg0));
7663 tem = fold_build1 (IMAGPART_EXPR, itype, TREE_OPERAND (arg0, 0));
7664 return fold_convert (type, negate_expr (tem));
7665 }
7666 return NULL_TREE;
7667
7668 default:
7669 return NULL_TREE;
7670 } /* switch (code) */
7671 }
7672
7673 /* Fold a binary expression of code CODE and type TYPE with operands
7674 OP0 and OP1, containing either a MIN-MAX or a MAX-MIN combination.
7675 Return the folded expression if folding is successful. Otherwise,
7676 return NULL_TREE. */
7677
7678 static tree
7679 fold_minmax (enum tree_code code, tree type, tree op0, tree op1)
7680 {
7681 enum tree_code compl_code;
7682
7683 if (code == MIN_EXPR)
7684 compl_code = MAX_EXPR;
7685 else if (code == MAX_EXPR)
7686 compl_code = MIN_EXPR;
7687 else
7688 gcc_unreachable ();
7689
7690 /* MIN (MAX (a, b), b) == b.  */
7691 if (TREE_CODE (op0) == compl_code
7692 && operand_equal_p (TREE_OPERAND (op0, 1), op1, 0))
7693 return omit_one_operand (type, op1, TREE_OPERAND (op0, 0));
7694
7695 /* MIN (MAX (b, a), b) == b.  */
7696 if (TREE_CODE (op0) == compl_code
7697 && operand_equal_p (TREE_OPERAND (op0, 0), op1, 0)
7698 && reorder_operands_p (TREE_OPERAND (op0, 1), op1))
7699 return omit_one_operand (type, op1, TREE_OPERAND (op0, 1));
7700
7701 /* MIN (a, MAX (a, b)) == a.  */
7702 if (TREE_CODE (op1) == compl_code
7703 && operand_equal_p (op0, TREE_OPERAND (op1, 0), 0)
7704 && reorder_operands_p (op0, TREE_OPERAND (op1, 1)))
7705 return omit_one_operand (type, op0, TREE_OPERAND (op1, 1));
7706
7707 /* MIN (a, MAX (b, a)) == a.  */
7708 if (TREE_CODE (op1) == compl_code
7709 && operand_equal_p (op0, TREE_OPERAND (op1, 1), 0)
7710 && reorder_operands_p (op0, TREE_OPERAND (op1, 0)))
7711 return omit_one_operand (type, op0, TREE_OPERAND (op1, 0));
7712
7713 return NULL_TREE;
7714 }
7715
7716 /* Subroutine of fold_binary. This routine performs all of the
7717 transformations that are common to the equality/inequality
7718 operators (EQ_EXPR and NE_EXPR) and the ordering operators
7719 (LT_EXPR, LE_EXPR, GE_EXPR and GT_EXPR). Callers other than
7720 fold_binary should call fold_binary. Fold a comparison with
7721 tree code CODE and type TYPE with operands OP0 and OP1. Return
7722 the folded comparison or NULL_TREE. */
7723
7724 static tree
7725 fold_comparison (enum tree_code code, tree type, tree op0, tree op1)
7726 {
7727 tree arg0, arg1, tem;
7728
7729 arg0 = op0;
7730 arg1 = op1;
7731
7732 STRIP_SIGN_NOPS (arg0);
7733 STRIP_SIGN_NOPS (arg1);
7734
7735 tem = fold_relational_const (code, type, arg0, arg1);
7736 if (tem != NULL_TREE)
7737 return tem;
7738
7739 /* If one arg is a real or integer constant, put it last. */
7740 if (tree_swap_operands_p (arg0, arg1, true))
7741 return fold_build2 (swap_tree_comparison (code), type, op1, op0);
7742
7743 /* Transform comparisons of the form X +- C1 CMP C2 to X CMP C2 +- C1. */
7744 if ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
7745 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
7746 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1))
7747 && !TYPE_UNSIGNED (TREE_TYPE (arg1))
7748 && !(flag_wrapv || flag_trapv))
7749 && (TREE_CODE (arg1) == INTEGER_CST
7750 && !TREE_OVERFLOW (arg1)))
7751 {
7752 tree const1 = TREE_OPERAND (arg0, 1);
7753 tree const2 = arg1;
7754 tree variable = TREE_OPERAND (arg0, 0);
7755 tree lhs;
7756 int lhs_add;
7757 lhs_add = TREE_CODE (arg0) != PLUS_EXPR;
7758
7759 lhs = fold_build2 (lhs_add ? PLUS_EXPR : MINUS_EXPR,
7760 TREE_TYPE (arg1), const2, const1);
7761 if (TREE_CODE (lhs) == TREE_CODE (arg1)
7762 && (TREE_CODE (lhs) != INTEGER_CST
7763 || !TREE_OVERFLOW (lhs)))
7764 return fold_build2 (code, type, variable, lhs);
7765 }
7766
7767 /* If this is a comparison of two exprs that look like an ARRAY_REF of the
7768 same object, then we can fold this to a comparison of the two offsets in
7769 signed size type. This is possible because pointer arithmetic is
7770 restricted to retain within an object and overflow on pointer differences
7771 is undefined as of 6.5.6/8 and /9 with respect to the signed ptrdiff_t. */
7772 if (POINTER_TYPE_P (TREE_TYPE (arg0))
7773 && !flag_wrapv && !flag_trapv)
7774 {
7775 tree base0, offset0, base1, offset1;
7776
7777 if (extract_array_ref (arg0, &base0, &offset0)
7778 && extract_array_ref (arg1, &base1, &offset1)
7779 && operand_equal_p (base0, base1, 0))
7780 {
7781 tree signed_size_type_node;
7782 signed_size_type_node = signed_type_for (size_type_node);
7783
7784 /* By converting to signed size type we cover middle-end pointer
7785 arithmetic which operates on unsigned pointer types of size
7786 type size and ARRAY_REF offsets which are properly sign or
7787 zero extended from their type in case it is narrower than
7788 size type. */
7789 if (offset0 == NULL_TREE)
7790 offset0 = build_int_cst (signed_size_type_node, 0);
7791 else
7792 offset0 = fold_convert (signed_size_type_node, offset0);
7793 if (offset1 == NULL_TREE)
7794 offset1 = build_int_cst (signed_size_type_node, 0);
7795 else
7796 offset1 = fold_convert (signed_size_type_node, offset1);
7797
7798 return fold_build2 (code, type, offset0, offset1);
7799 }
7800 }
7801
7802 if (FLOAT_TYPE_P (TREE_TYPE (arg0)))
7803 {
7804 tree targ0 = strip_float_extensions (arg0);
7805 tree targ1 = strip_float_extensions (arg1);
7806 tree newtype = TREE_TYPE (targ0);
7807
7808 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
7809 newtype = TREE_TYPE (targ1);
7810
7811 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
7812 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
7813 return fold_build2 (code, type, fold_convert (newtype, targ0),
7814 fold_convert (newtype, targ1));
7815
7816 /* (-a) CMP (-b) -> b CMP a */
7817 if (TREE_CODE (arg0) == NEGATE_EXPR
7818 && TREE_CODE (arg1) == NEGATE_EXPR)
7819 return fold_build2 (code, type, TREE_OPERAND (arg1, 0),
7820 TREE_OPERAND (arg0, 0));
7821
7822 if (TREE_CODE (arg1) == REAL_CST)
7823 {
7824 REAL_VALUE_TYPE cst;
7825 cst = TREE_REAL_CST (arg1);
7826
7827 /* (-a) CMP CST -> a swap(CMP) (-CST) */
7828 if (TREE_CODE (arg0) == NEGATE_EXPR)
7829 return fold_build2 (swap_tree_comparison (code), type,
7830 TREE_OPERAND (arg0, 0),
7831 build_real (TREE_TYPE (arg1),
7832 REAL_VALUE_NEGATE (cst)));
7833
7834 /* IEEE doesn't distinguish +0 and -0 in comparisons. */
7835 /* a CMP (-0) -> a CMP 0 */
7836 if (REAL_VALUE_MINUS_ZERO (cst))
7837 return fold_build2 (code, type, arg0,
7838 build_real (TREE_TYPE (arg1), dconst0));
7839
7840 /* x != NaN is always true, other ops are always false. */
7841 if (REAL_VALUE_ISNAN (cst)
7842 && ! HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg1))))
7843 {
7844 tem = (code == NE_EXPR) ? integer_one_node : integer_zero_node;
7845 return omit_one_operand (type, tem, arg0);
7846 }
7847
7848 /* Fold comparisons against infinity. */
7849 if (REAL_VALUE_ISINF (cst))
7850 {
7851 tem = fold_inf_compare (code, type, arg0, arg1);
7852 if (tem != NULL_TREE)
7853 return tem;
7854 }
7855 }
7856
7857 /* If this is a comparison of a real constant with a PLUS_EXPR
7858 or a MINUS_EXPR of a real constant, we can convert it into a
7859 comparison with a revised real constant as long as no overflow
7860 occurs when unsafe_math_optimizations are enabled. */
7861 if (flag_unsafe_math_optimizations
7862 && TREE_CODE (arg1) == REAL_CST
7863 && (TREE_CODE (arg0) == PLUS_EXPR
7864 || TREE_CODE (arg0) == MINUS_EXPR)
7865 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
7866 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
7867 ? MINUS_EXPR : PLUS_EXPR,
7868 arg1, TREE_OPERAND (arg0, 1), 0))
7869 && ! TREE_CONSTANT_OVERFLOW (tem))
7870 return fold_build2 (code, type, TREE_OPERAND (arg0, 0), tem);
7871
7872 /* Likewise, we can simplify a comparison of a real constant with
7873 a MINUS_EXPR whose first operand is also a real constant, i.e.
7874 (c1 - x) < c2 becomes x > c1-c2. */
7875 if (flag_unsafe_math_optimizations
7876 && TREE_CODE (arg1) == REAL_CST
7877 && TREE_CODE (arg0) == MINUS_EXPR
7878 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST
7879 && 0 != (tem = const_binop (MINUS_EXPR, TREE_OPERAND (arg0, 0),
7880 arg1, 0))
7881 && ! TREE_CONSTANT_OVERFLOW (tem))
7882 return fold_build2 (swap_tree_comparison (code), type,
7883 TREE_OPERAND (arg0, 1), tem);
7884
7885 /* Fold comparisons against built-in math functions. */
7886 if (TREE_CODE (arg1) == REAL_CST
7887 && flag_unsafe_math_optimizations
7888 && ! flag_errno_math)
7889 {
7890 enum built_in_function fcode = builtin_mathfn_code (arg0);
7891
7892 if (fcode != END_BUILTINS)
7893 {
7894 tem = fold_mathfn_compare (fcode, code, type, arg0, arg1);
7895 if (tem != NULL_TREE)
7896 return tem;
7897 }
7898 }
7899 }
7900
7901 /* Convert foo++ == CONST into ++foo == CONST + INCR. */
7902 if (TREE_CONSTANT (arg1)
7903 && (TREE_CODE (arg0) == POSTINCREMENT_EXPR
7904 || TREE_CODE (arg0) == POSTDECREMENT_EXPR)
7905 /* This optimization is invalid for ordered comparisons
7906 if CONST+INCR overflows or if foo+incr might overflow.
7907 This optimization is invalid for floating point due to rounding.
7908 For pointer types we assume overflow doesn't happen. */
7909 && (POINTER_TYPE_P (TREE_TYPE (arg0))
7910 || (INTEGRAL_TYPE_P (TREE_TYPE (arg0))
7911 && (code == EQ_EXPR || code == NE_EXPR))))
7912 {
7913 tree varop, newconst;
7914
7915 if (TREE_CODE (arg0) == POSTINCREMENT_EXPR)
7916 {
7917 newconst = fold_build2 (PLUS_EXPR, TREE_TYPE (arg0),
7918 arg1, TREE_OPERAND (arg0, 1));
7919 varop = build2 (PREINCREMENT_EXPR, TREE_TYPE (arg0),
7920 TREE_OPERAND (arg0, 0),
7921 TREE_OPERAND (arg0, 1));
7922 }
7923 else
7924 {
7925 newconst = fold_build2 (MINUS_EXPR, TREE_TYPE (arg0),
7926 arg1, TREE_OPERAND (arg0, 1));
7927 varop = build2 (PREDECREMENT_EXPR, TREE_TYPE (arg0),
7928 TREE_OPERAND (arg0, 0),
7929 TREE_OPERAND (arg0, 1));
7930 }
7931
7932
7933 /* If VAROP is a reference to a bitfield, we must mask
7934 the constant by the width of the field. */
7935 if (TREE_CODE (TREE_OPERAND (varop, 0)) == COMPONENT_REF
7936 && DECL_BIT_FIELD (TREE_OPERAND (TREE_OPERAND (varop, 0), 1))
7937 && host_integerp (DECL_SIZE (TREE_OPERAND
7938 (TREE_OPERAND (varop, 0), 1)), 1))
7939 {
7940 tree fielddecl = TREE_OPERAND (TREE_OPERAND (varop, 0), 1);
7941 HOST_WIDE_INT size = tree_low_cst (DECL_SIZE (fielddecl), 1);
7942 tree folded_compare, shift;
7943
7944 /* First check whether the comparison would come out
7945 always the same. If we don't do that we would
7946 change the meaning with the masking. */
7947 folded_compare = fold_build2 (code, type,
7948 TREE_OPERAND (varop, 0), arg1);
7949 if (TREE_CODE (folded_compare) == INTEGER_CST)
7950 return omit_one_operand (type, folded_compare, varop);
7951
7952 shift = build_int_cst (NULL_TREE,
7953 TYPE_PRECISION (TREE_TYPE (varop)) - size);
7954 shift = fold_convert (TREE_TYPE (varop), shift);
7955 newconst = fold_build2 (LSHIFT_EXPR, TREE_TYPE (varop),
7956 newconst, shift);
7957 newconst = fold_build2 (RSHIFT_EXPR, TREE_TYPE (varop),
7958 newconst, shift);
7959 }
7960
7961 return fold_build2 (code, type, varop, newconst);
7962 }
7963
7964 if (TREE_CODE (TREE_TYPE (arg0)) == INTEGER_TYPE
7965 && (TREE_CODE (arg0) == NOP_EXPR
7966 || TREE_CODE (arg0) == CONVERT_EXPR))
7967 {
7968 /* If we are widening one operand of an integer comparison,
7969 see if the other operand is similarly being widened. Perhaps we
7970 can do the comparison in the narrower type. */
7971 tem = fold_widened_comparison (code, type, arg0, arg1);
7972 if (tem)
7973 return tem;
7974
7975 /* Or if we are changing signedness. */
7976 tem = fold_sign_changed_comparison (code, type, arg0, arg1);
7977 if (tem)
7978 return tem;
7979 }
7980
7981 /* If this is comparing a constant with a MIN_EXPR or a MAX_EXPR of a
7982 constant, we can simplify it. */
7983 if (TREE_CODE (arg1) == INTEGER_CST
7984 && (TREE_CODE (arg0) == MIN_EXPR
7985 || TREE_CODE (arg0) == MAX_EXPR)
7986 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
7987 {
7988 tem = optimize_minmax_comparison (code, type, op0, op1);
7989 if (tem)
7990 return tem;
7991 }
7992
7993 /* Simplify comparison of something with itself. (For IEEE
7994 floating-point, we can only do some of these simplifications.) */
7995 if (operand_equal_p (arg0, arg1, 0))
7996 {
7997 switch (code)
7998 {
7999 case EQ_EXPR:
8000 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
8001 || ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
8002 return constant_boolean_node (1, type);
8003 break;
8004
8005 case GE_EXPR:
8006 case LE_EXPR:
8007 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
8008 || ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
8009 return constant_boolean_node (1, type);
8010 return fold_build2 (EQ_EXPR, type, arg0, arg1);
8011
8012 case NE_EXPR:
8013 /* For NE, we can only do this simplification if integer
8014 or we don't honor IEEE floating point NaNs. */
8015 if (FLOAT_TYPE_P (TREE_TYPE (arg0))
8016 && HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
8017 break;
8018 /* ... fall through ... */
8019 case GT_EXPR:
8020 case LT_EXPR:
8021 return constant_boolean_node (0, type);
8022 default:
8023 gcc_unreachable ();
8024 }
8025 }
8026
8027 /* If we are comparing an expression that just has comparisons
8028 of two integer values, arithmetic expressions of those comparisons,
8029 and constants, we can simplify it. There are only three cases
8030 to check: the two values can either be equal, the first can be
8031 greater, or the second can be greater. Fold the expression for
8032 those three values. Since each value must be 0 or 1, we have
8033 eight possibilities, each of which corresponds to the constant 0
8034 or 1 or one of the six possible comparisons.
8035
8036 This handles common cases like (a > b) == 0 but also handles
8037 expressions like ((x > y) - (y > x)) > 0, which supposedly
8038 occur in macroized code. */
8039
8040 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) != INTEGER_CST)
8041 {
8042 tree cval1 = 0, cval2 = 0;
8043 int save_p = 0;
8044
8045 if (twoval_comparison_p (arg0, &cval1, &cval2, &save_p)
8046 /* Don't handle degenerate cases here; they should already
8047 have been handled anyway. */
8048 && cval1 != 0 && cval2 != 0
8049 && ! (TREE_CONSTANT (cval1) && TREE_CONSTANT (cval2))
8050 && TREE_TYPE (cval1) == TREE_TYPE (cval2)
8051 && INTEGRAL_TYPE_P (TREE_TYPE (cval1))
8052 && TYPE_MAX_VALUE (TREE_TYPE (cval1))
8053 && TYPE_MAX_VALUE (TREE_TYPE (cval2))
8054 && ! operand_equal_p (TYPE_MIN_VALUE (TREE_TYPE (cval1)),
8055 TYPE_MAX_VALUE (TREE_TYPE (cval2)), 0))
8056 {
8057 tree maxval = TYPE_MAX_VALUE (TREE_TYPE (cval1));
8058 tree minval = TYPE_MIN_VALUE (TREE_TYPE (cval1));
8059
8060 /* We can't just pass T to eval_subst in case cval1 or cval2
8061 was the same as ARG1. */
8062
8063 tree high_result
8064 = fold_build2 (code, type,
8065 eval_subst (arg0, cval1, maxval,
8066 cval2, minval),
8067 arg1);
8068 tree equal_result
8069 = fold_build2 (code, type,
8070 eval_subst (arg0, cval1, maxval,
8071 cval2, maxval),
8072 arg1);
8073 tree low_result
8074 = fold_build2 (code, type,
8075 eval_subst (arg0, cval1, minval,
8076 cval2, maxval),
8077 arg1);
8078
8079 /* All three of these results should be 0 or 1. Confirm they are.
8080 Then use those values to select the proper code to use. */
8081
8082 if (TREE_CODE (high_result) == INTEGER_CST
8083 && TREE_CODE (equal_result) == INTEGER_CST
8084 && TREE_CODE (low_result) == INTEGER_CST)
8085 {
8086 /* Make a 3-bit mask with the high-order bit being the
8087 value for `>', the next for '=', and the low for '<'. */
8088 switch ((integer_onep (high_result) * 4)
8089 + (integer_onep (equal_result) * 2)
8090 + integer_onep (low_result))
8091 {
8092 case 0:
8093 /* Always false. */
8094 return omit_one_operand (type, integer_zero_node, arg0);
8095 case 1:
8096 code = LT_EXPR;
8097 break;
8098 case 2:
8099 code = EQ_EXPR;
8100 break;
8101 case 3:
8102 code = LE_EXPR;
8103 break;
8104 case 4:
8105 code = GT_EXPR;
8106 break;
8107 case 5:
8108 code = NE_EXPR;
8109 break;
8110 case 6:
8111 code = GE_EXPR;
8112 break;
8113 case 7:
8114 /* Always true. */
8115 return omit_one_operand (type, integer_one_node, arg0);
8116 }
8117
8118 if (save_p)
8119 return save_expr (build2 (code, type, cval1, cval2));
8120 return fold_build2 (code, type, cval1, cval2);
8121 }
8122 }
8123 }
8124
8125 /* Fold a comparison of the address of COMPONENT_REFs with the same
8126 type and component to a comparison of the address of the base
8127 object. In short, &x->a OP &y->a to x OP y and
8128 &x->a OP &y.a to x OP &y */
8129 if (TREE_CODE (arg0) == ADDR_EXPR
8130 && TREE_CODE (TREE_OPERAND (arg0, 0)) == COMPONENT_REF
8131 && TREE_CODE (arg1) == ADDR_EXPR
8132 && TREE_CODE (TREE_OPERAND (arg1, 0)) == COMPONENT_REF)
8133 {
8134 tree cref0 = TREE_OPERAND (arg0, 0);
8135 tree cref1 = TREE_OPERAND (arg1, 0);
8136 if (TREE_OPERAND (cref0, 1) == TREE_OPERAND (cref1, 1))
8137 {
8138 tree op0 = TREE_OPERAND (cref0, 0);
8139 tree op1 = TREE_OPERAND (cref1, 0);
8140 return fold_build2 (code, type,
8141 build_fold_addr_expr (op0),
8142 build_fold_addr_expr (op1));
8143 }
8144 }
8145
8146 /* We can fold X/C1 op C2 where C1 and C2 are integer constants
8147 into a single range test. */
8148 if ((TREE_CODE (arg0) == TRUNC_DIV_EXPR
8149 || TREE_CODE (arg0) == EXACT_DIV_EXPR)
8150 && TREE_CODE (arg1) == INTEGER_CST
8151 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8152 && !integer_zerop (TREE_OPERAND (arg0, 1))
8153 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1))
8154 && !TREE_OVERFLOW (arg1))
8155 {
8156 tem = fold_div_compare (code, type, arg0, arg1);
8157 if (tem != NULL_TREE)
8158 return tem;
8159 }
8160
8161 return NULL_TREE;
8162 }
8163
8164
8165 /* Subroutine of fold_binary. Optimize complex multiplications of the
8166 form z * conj(z), as pow(realpart(z),2) + pow(imagpart(z),2). The
8167 argument EXPR represents the expression "z" of type TYPE. */
8168
8169 static tree
8170 fold_mult_zconjz (tree type, tree expr)
8171 {
8172 tree itype = TREE_TYPE (type);
8173 tree rpart, ipart, tem;
8174
8175 if (TREE_CODE (expr) == COMPLEX_EXPR)
8176 {
8177 rpart = TREE_OPERAND (expr, 0);
8178 ipart = TREE_OPERAND (expr, 1);
8179 }
8180 else if (TREE_CODE (expr) == COMPLEX_CST)
8181 {
8182 rpart = TREE_REALPART (expr);
8183 ipart = TREE_IMAGPART (expr);
8184 }
8185 else
8186 {
8187 expr = save_expr (expr);
8188 rpart = fold_build1 (REALPART_EXPR, itype, expr);
8189 ipart = fold_build1 (IMAGPART_EXPR, itype, expr);
8190 }
8191
8192 rpart = save_expr (rpart);
8193 ipart = save_expr (ipart);
8194 tem = fold_build2 (PLUS_EXPR, itype,
8195 fold_build2 (MULT_EXPR, itype, rpart, rpart),
8196 fold_build2 (MULT_EXPR, itype, ipart, ipart));
8197 return fold_build2 (COMPLEX_EXPR, type, tem,
8198 fold_convert (itype, integer_zero_node));
8199 }
8200
8201
8202 /* Fold a binary expression of code CODE and type TYPE with operands
8203 OP0 and OP1. Return the folded expression if folding is
8204 successful. Otherwise, return NULL_TREE. */
8205
8206 tree
8207 fold_binary (enum tree_code code, tree type, tree op0, tree op1)
8208 {
8209 enum tree_code_class kind = TREE_CODE_CLASS (code);
8210 tree arg0, arg1, tem;
8211 tree t1 = NULL_TREE;
8212
8213 gcc_assert (IS_EXPR_CODE_CLASS (kind)
8214 && TREE_CODE_LENGTH (code) == 2
8215 && op0 != NULL_TREE
8216 && op1 != NULL_TREE);
8217
8218 arg0 = op0;
8219 arg1 = op1;
8220
8221 /* Strip any conversions that don't change the mode. This is
8222 safe for every expression, except for a comparison expression
8223 because its signedness is derived from its operands. So, in
8224 the latter case, only strip conversions that don't change the
8225 signedness.
8226
8227 Note that this is done as an internal manipulation within the
8228 constant folder, in order to find the simplest representation
8229 of the arguments so that their form can be studied. In any
8230 cases, the appropriate type conversions should be put back in
8231 the tree that will get out of the constant folder. */
8232
8233 if (kind == tcc_comparison)
8234 {
8235 STRIP_SIGN_NOPS (arg0);
8236 STRIP_SIGN_NOPS (arg1);
8237 }
8238 else
8239 {
8240 STRIP_NOPS (arg0);
8241 STRIP_NOPS (arg1);
8242 }
8243
8244 /* Note that TREE_CONSTANT isn't enough: static var addresses are
8245 constant but we can't do arithmetic on them. */
8246 if ((TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
8247 || (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
8248 || (TREE_CODE (arg0) == COMPLEX_CST && TREE_CODE (arg1) == COMPLEX_CST)
8249 || (TREE_CODE (arg0) == VECTOR_CST && TREE_CODE (arg1) == VECTOR_CST))
8250 {
8251 if (kind == tcc_binary)
8252 tem = const_binop (code, arg0, arg1, 0);
8253 else if (kind == tcc_comparison)
8254 tem = fold_relational_const (code, type, arg0, arg1);
8255 else
8256 tem = NULL_TREE;
8257
8258 if (tem != NULL_TREE)
8259 {
8260 if (TREE_TYPE (tem) != type)
8261 tem = fold_convert (type, tem);
8262 return tem;
8263 }
8264 }
8265
8266 /* If this is a commutative operation, and ARG0 is a constant, move it
8267 to ARG1 to reduce the number of tests below. */
8268 if (commutative_tree_code (code)
8269 && tree_swap_operands_p (arg0, arg1, true))
8270 return fold_build2 (code, type, op1, op0);
8271
8272 /* ARG0 is the first operand of EXPR, and ARG1 is the second operand.
8273
8274 First check for cases where an arithmetic operation is applied to a
8275 compound, conditional, or comparison operation. Push the arithmetic
8276 operation inside the compound or conditional to see if any folding
8277 can then be done. Convert comparison to conditional for this purpose.
8278 The also optimizes non-constant cases that used to be done in
8279 expand_expr.
8280
8281 Before we do that, see if this is a BIT_AND_EXPR or a BIT_IOR_EXPR,
8282 one of the operands is a comparison and the other is a comparison, a
8283 BIT_AND_EXPR with the constant 1, or a truth value. In that case, the
8284 code below would make the expression more complex. Change it to a
8285 TRUTH_{AND,OR}_EXPR. Likewise, convert a similar NE_EXPR to
8286 TRUTH_XOR_EXPR and an EQ_EXPR to the inversion of a TRUTH_XOR_EXPR. */
8287
8288 if ((code == BIT_AND_EXPR || code == BIT_IOR_EXPR
8289 || code == EQ_EXPR || code == NE_EXPR)
8290 && ((truth_value_p (TREE_CODE (arg0))
8291 && (truth_value_p (TREE_CODE (arg1))
8292 || (TREE_CODE (arg1) == BIT_AND_EXPR
8293 && integer_onep (TREE_OPERAND (arg1, 1)))))
8294 || (truth_value_p (TREE_CODE (arg1))
8295 && (truth_value_p (TREE_CODE (arg0))
8296 || (TREE_CODE (arg0) == BIT_AND_EXPR
8297 && integer_onep (TREE_OPERAND (arg0, 1)))))))
8298 {
8299 tem = fold_build2 (code == BIT_AND_EXPR ? TRUTH_AND_EXPR
8300 : code == BIT_IOR_EXPR ? TRUTH_OR_EXPR
8301 : TRUTH_XOR_EXPR,
8302 boolean_type_node,
8303 fold_convert (boolean_type_node, arg0),
8304 fold_convert (boolean_type_node, arg1));
8305
8306 if (code == EQ_EXPR)
8307 tem = invert_truthvalue (tem);
8308
8309 return fold_convert (type, tem);
8310 }
8311
8312 if (TREE_CODE_CLASS (code) == tcc_binary
8313 || TREE_CODE_CLASS (code) == tcc_comparison)
8314 {
8315 if (TREE_CODE (arg0) == COMPOUND_EXPR)
8316 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
8317 fold_build2 (code, type,
8318 TREE_OPERAND (arg0, 1), op1));
8319 if (TREE_CODE (arg1) == COMPOUND_EXPR
8320 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
8321 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
8322 fold_build2 (code, type,
8323 op0, TREE_OPERAND (arg1, 1)));
8324
8325 if (TREE_CODE (arg0) == COND_EXPR || COMPARISON_CLASS_P (arg0))
8326 {
8327 tem = fold_binary_op_with_conditional_arg (code, type, op0, op1,
8328 arg0, arg1,
8329 /*cond_first_p=*/1);
8330 if (tem != NULL_TREE)
8331 return tem;
8332 }
8333
8334 if (TREE_CODE (arg1) == COND_EXPR || COMPARISON_CLASS_P (arg1))
8335 {
8336 tem = fold_binary_op_with_conditional_arg (code, type, op0, op1,
8337 arg1, arg0,
8338 /*cond_first_p=*/0);
8339 if (tem != NULL_TREE)
8340 return tem;
8341 }
8342 }
8343
8344 switch (code)
8345 {
8346 case PLUS_EXPR:
8347 /* A + (-B) -> A - B */
8348 if (TREE_CODE (arg1) == NEGATE_EXPR)
8349 return fold_build2 (MINUS_EXPR, type,
8350 fold_convert (type, arg0),
8351 fold_convert (type, TREE_OPERAND (arg1, 0)));
8352 /* (-A) + B -> B - A */
8353 if (TREE_CODE (arg0) == NEGATE_EXPR
8354 && reorder_operands_p (TREE_OPERAND (arg0, 0), arg1))
8355 return fold_build2 (MINUS_EXPR, type,
8356 fold_convert (type, arg1),
8357 fold_convert (type, TREE_OPERAND (arg0, 0)));
8358 /* Convert ~A + 1 to -A. */
8359 if (INTEGRAL_TYPE_P (type)
8360 && TREE_CODE (arg0) == BIT_NOT_EXPR
8361 && integer_onep (arg1))
8362 return fold_build1 (NEGATE_EXPR, type, TREE_OPERAND (arg0, 0));
8363
8364 /* Handle (A1 * C1) + (A2 * C2) with A1, A2 or C1, C2 being the
8365 same or one. */
8366 if ((TREE_CODE (arg0) == MULT_EXPR
8367 || TREE_CODE (arg1) == MULT_EXPR)
8368 && (!FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations))
8369 {
8370 tree tem = fold_plusminus_mult_expr (code, type, arg0, arg1);
8371 if (tem)
8372 return tem;
8373 }
8374
8375 if (! FLOAT_TYPE_P (type))
8376 {
8377 if (integer_zerop (arg1))
8378 return non_lvalue (fold_convert (type, arg0));
8379
8380 /* If we are adding two BIT_AND_EXPR's, both of which are and'ing
8381 with a constant, and the two constants have no bits in common,
8382 we should treat this as a BIT_IOR_EXPR since this may produce more
8383 simplifications. */
8384 if (TREE_CODE (arg0) == BIT_AND_EXPR
8385 && TREE_CODE (arg1) == BIT_AND_EXPR
8386 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8387 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
8388 && integer_zerop (const_binop (BIT_AND_EXPR,
8389 TREE_OPERAND (arg0, 1),
8390 TREE_OPERAND (arg1, 1), 0)))
8391 {
8392 code = BIT_IOR_EXPR;
8393 goto bit_ior;
8394 }
8395
8396 /* Reassociate (plus (plus (mult) (foo)) (mult)) as
8397 (plus (plus (mult) (mult)) (foo)) so that we can
8398 take advantage of the factoring cases below. */
8399 if (((TREE_CODE (arg0) == PLUS_EXPR
8400 || TREE_CODE (arg0) == MINUS_EXPR)
8401 && TREE_CODE (arg1) == MULT_EXPR)
8402 || ((TREE_CODE (arg1) == PLUS_EXPR
8403 || TREE_CODE (arg1) == MINUS_EXPR)
8404 && TREE_CODE (arg0) == MULT_EXPR))
8405 {
8406 tree parg0, parg1, parg, marg;
8407 enum tree_code pcode;
8408
8409 if (TREE_CODE (arg1) == MULT_EXPR)
8410 parg = arg0, marg = arg1;
8411 else
8412 parg = arg1, marg = arg0;
8413 pcode = TREE_CODE (parg);
8414 parg0 = TREE_OPERAND (parg, 0);
8415 parg1 = TREE_OPERAND (parg, 1);
8416 STRIP_NOPS (parg0);
8417 STRIP_NOPS (parg1);
8418
8419 if (TREE_CODE (parg0) == MULT_EXPR
8420 && TREE_CODE (parg1) != MULT_EXPR)
8421 return fold_build2 (pcode, type,
8422 fold_build2 (PLUS_EXPR, type,
8423 fold_convert (type, parg0),
8424 fold_convert (type, marg)),
8425 fold_convert (type, parg1));
8426 if (TREE_CODE (parg0) != MULT_EXPR
8427 && TREE_CODE (parg1) == MULT_EXPR)
8428 return fold_build2 (PLUS_EXPR, type,
8429 fold_convert (type, parg0),
8430 fold_build2 (pcode, type,
8431 fold_convert (type, marg),
8432 fold_convert (type,
8433 parg1)));
8434 }
8435
8436 /* Try replacing &a[i1] + c * i2 with &a[i1 + i2], if c is step
8437 of the array. Loop optimizer sometimes produce this type of
8438 expressions. */
8439 if (TREE_CODE (arg0) == ADDR_EXPR)
8440 {
8441 tem = try_move_mult_to_index (PLUS_EXPR, arg0, arg1);
8442 if (tem)
8443 return fold_convert (type, tem);
8444 }
8445 else if (TREE_CODE (arg1) == ADDR_EXPR)
8446 {
8447 tem = try_move_mult_to_index (PLUS_EXPR, arg1, arg0);
8448 if (tem)
8449 return fold_convert (type, tem);
8450 }
8451 }
8452 else
8453 {
8454 /* See if ARG1 is zero and X + ARG1 reduces to X. */
8455 if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 0))
8456 return non_lvalue (fold_convert (type, arg0));
8457
8458 /* Likewise if the operands are reversed. */
8459 if (fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
8460 return non_lvalue (fold_convert (type, arg1));
8461
8462 /* Convert X + -C into X - C. */
8463 if (TREE_CODE (arg1) == REAL_CST
8464 && REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1)))
8465 {
8466 tem = fold_negate_const (arg1, type);
8467 if (!TREE_OVERFLOW (arg1) || !flag_trapping_math)
8468 return fold_build2 (MINUS_EXPR, type,
8469 fold_convert (type, arg0),
8470 fold_convert (type, tem));
8471 }
8472
8473 if (flag_unsafe_math_optimizations
8474 && (TREE_CODE (arg0) == RDIV_EXPR || TREE_CODE (arg0) == MULT_EXPR)
8475 && (TREE_CODE (arg1) == RDIV_EXPR || TREE_CODE (arg1) == MULT_EXPR)
8476 && (tem = distribute_real_division (code, type, arg0, arg1)))
8477 return tem;
8478
8479 /* Convert x+x into x*2.0. */
8480 if (operand_equal_p (arg0, arg1, 0)
8481 && SCALAR_FLOAT_TYPE_P (type))
8482 return fold_build2 (MULT_EXPR, type, arg0,
8483 build_real (type, dconst2));
8484
8485 /* Convert a + (b*c + d*e) into (a + b*c) + d*e. */
8486 if (flag_unsafe_math_optimizations
8487 && TREE_CODE (arg1) == PLUS_EXPR
8488 && TREE_CODE (arg0) != MULT_EXPR)
8489 {
8490 tree tree10 = TREE_OPERAND (arg1, 0);
8491 tree tree11 = TREE_OPERAND (arg1, 1);
8492 if (TREE_CODE (tree11) == MULT_EXPR
8493 && TREE_CODE (tree10) == MULT_EXPR)
8494 {
8495 tree tree0;
8496 tree0 = fold_build2 (PLUS_EXPR, type, arg0, tree10);
8497 return fold_build2 (PLUS_EXPR, type, tree0, tree11);
8498 }
8499 }
8500 /* Convert (b*c + d*e) + a into b*c + (d*e +a). */
8501 if (flag_unsafe_math_optimizations
8502 && TREE_CODE (arg0) == PLUS_EXPR
8503 && TREE_CODE (arg1) != MULT_EXPR)
8504 {
8505 tree tree00 = TREE_OPERAND (arg0, 0);
8506 tree tree01 = TREE_OPERAND (arg0, 1);
8507 if (TREE_CODE (tree01) == MULT_EXPR
8508 && TREE_CODE (tree00) == MULT_EXPR)
8509 {
8510 tree tree0;
8511 tree0 = fold_build2 (PLUS_EXPR, type, tree01, arg1);
8512 return fold_build2 (PLUS_EXPR, type, tree00, tree0);
8513 }
8514 }
8515 }
8516
8517 bit_rotate:
8518 /* (A << C1) + (A >> C2) if A is unsigned and C1+C2 is the size of A
8519 is a rotate of A by C1 bits. */
8520 /* (A << B) + (A >> (Z - B)) if A is unsigned and Z is the size of A
8521 is a rotate of A by B bits. */
8522 {
8523 enum tree_code code0, code1;
8524 code0 = TREE_CODE (arg0);
8525 code1 = TREE_CODE (arg1);
8526 if (((code0 == RSHIFT_EXPR && code1 == LSHIFT_EXPR)
8527 || (code1 == RSHIFT_EXPR && code0 == LSHIFT_EXPR))
8528 && operand_equal_p (TREE_OPERAND (arg0, 0),
8529 TREE_OPERAND (arg1, 0), 0)
8530 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
8531 {
8532 tree tree01, tree11;
8533 enum tree_code code01, code11;
8534
8535 tree01 = TREE_OPERAND (arg0, 1);
8536 tree11 = TREE_OPERAND (arg1, 1);
8537 STRIP_NOPS (tree01);
8538 STRIP_NOPS (tree11);
8539 code01 = TREE_CODE (tree01);
8540 code11 = TREE_CODE (tree11);
8541 if (code01 == INTEGER_CST
8542 && code11 == INTEGER_CST
8543 && TREE_INT_CST_HIGH (tree01) == 0
8544 && TREE_INT_CST_HIGH (tree11) == 0
8545 && ((TREE_INT_CST_LOW (tree01) + TREE_INT_CST_LOW (tree11))
8546 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)))))
8547 return build2 (LROTATE_EXPR, type, TREE_OPERAND (arg0, 0),
8548 code0 == LSHIFT_EXPR ? tree01 : tree11);
8549 else if (code11 == MINUS_EXPR)
8550 {
8551 tree tree110, tree111;
8552 tree110 = TREE_OPERAND (tree11, 0);
8553 tree111 = TREE_OPERAND (tree11, 1);
8554 STRIP_NOPS (tree110);
8555 STRIP_NOPS (tree111);
8556 if (TREE_CODE (tree110) == INTEGER_CST
8557 && 0 == compare_tree_int (tree110,
8558 TYPE_PRECISION
8559 (TREE_TYPE (TREE_OPERAND
8560 (arg0, 0))))
8561 && operand_equal_p (tree01, tree111, 0))
8562 return build2 ((code0 == LSHIFT_EXPR
8563 ? LROTATE_EXPR
8564 : RROTATE_EXPR),
8565 type, TREE_OPERAND (arg0, 0), tree01);
8566 }
8567 else if (code01 == MINUS_EXPR)
8568 {
8569 tree tree010, tree011;
8570 tree010 = TREE_OPERAND (tree01, 0);
8571 tree011 = TREE_OPERAND (tree01, 1);
8572 STRIP_NOPS (tree010);
8573 STRIP_NOPS (tree011);
8574 if (TREE_CODE (tree010) == INTEGER_CST
8575 && 0 == compare_tree_int (tree010,
8576 TYPE_PRECISION
8577 (TREE_TYPE (TREE_OPERAND
8578 (arg0, 0))))
8579 && operand_equal_p (tree11, tree011, 0))
8580 return build2 ((code0 != LSHIFT_EXPR
8581 ? LROTATE_EXPR
8582 : RROTATE_EXPR),
8583 type, TREE_OPERAND (arg0, 0), tree11);
8584 }
8585 }
8586 }
8587
8588 associate:
8589 /* In most languages, can't associate operations on floats through
8590 parentheses. Rather than remember where the parentheses were, we
8591 don't associate floats at all, unless the user has specified
8592 -funsafe-math-optimizations. */
8593
8594 if (! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
8595 {
8596 tree var0, con0, lit0, minus_lit0;
8597 tree var1, con1, lit1, minus_lit1;
8598
8599 /* Split both trees into variables, constants, and literals. Then
8600 associate each group together, the constants with literals,
8601 then the result with variables. This increases the chances of
8602 literals being recombined later and of generating relocatable
8603 expressions for the sum of a constant and literal. */
8604 var0 = split_tree (arg0, code, &con0, &lit0, &minus_lit0, 0);
8605 var1 = split_tree (arg1, code, &con1, &lit1, &minus_lit1,
8606 code == MINUS_EXPR);
8607
8608 /* Only do something if we found more than two objects. Otherwise,
8609 nothing has changed and we risk infinite recursion. */
8610 if (2 < ((var0 != 0) + (var1 != 0)
8611 + (con0 != 0) + (con1 != 0)
8612 + (lit0 != 0) + (lit1 != 0)
8613 + (minus_lit0 != 0) + (minus_lit1 != 0)))
8614 {
8615 /* Recombine MINUS_EXPR operands by using PLUS_EXPR. */
8616 if (code == MINUS_EXPR)
8617 code = PLUS_EXPR;
8618
8619 var0 = associate_trees (var0, var1, code, type);
8620 con0 = associate_trees (con0, con1, code, type);
8621 lit0 = associate_trees (lit0, lit1, code, type);
8622 minus_lit0 = associate_trees (minus_lit0, minus_lit1, code, type);
8623
8624 /* Preserve the MINUS_EXPR if the negative part of the literal is
8625 greater than the positive part. Otherwise, the multiplicative
8626 folding code (i.e extract_muldiv) may be fooled in case
8627 unsigned constants are subtracted, like in the following
8628 example: ((X*2 + 4) - 8U)/2. */
8629 if (minus_lit0 && lit0)
8630 {
8631 if (TREE_CODE (lit0) == INTEGER_CST
8632 && TREE_CODE (minus_lit0) == INTEGER_CST
8633 && tree_int_cst_lt (lit0, minus_lit0))
8634 {
8635 minus_lit0 = associate_trees (minus_lit0, lit0,
8636 MINUS_EXPR, type);
8637 lit0 = 0;
8638 }
8639 else
8640 {
8641 lit0 = associate_trees (lit0, minus_lit0,
8642 MINUS_EXPR, type);
8643 minus_lit0 = 0;
8644 }
8645 }
8646 if (minus_lit0)
8647 {
8648 if (con0 == 0)
8649 return fold_convert (type,
8650 associate_trees (var0, minus_lit0,
8651 MINUS_EXPR, type));
8652 else
8653 {
8654 con0 = associate_trees (con0, minus_lit0,
8655 MINUS_EXPR, type);
8656 return fold_convert (type,
8657 associate_trees (var0, con0,
8658 PLUS_EXPR, type));
8659 }
8660 }
8661
8662 con0 = associate_trees (con0, lit0, code, type);
8663 return fold_convert (type, associate_trees (var0, con0,
8664 code, type));
8665 }
8666 }
8667
8668 return NULL_TREE;
8669
8670 case MINUS_EXPR:
8671 /* A - (-B) -> A + B */
8672 if (TREE_CODE (arg1) == NEGATE_EXPR)
8673 return fold_build2 (PLUS_EXPR, type, arg0, TREE_OPERAND (arg1, 0));
8674 /* (-A) - B -> (-B) - A where B is easily negated and we can swap. */
8675 if (TREE_CODE (arg0) == NEGATE_EXPR
8676 && (FLOAT_TYPE_P (type)
8677 || (INTEGRAL_TYPE_P (type) && flag_wrapv && !flag_trapv))
8678 && negate_expr_p (arg1)
8679 && reorder_operands_p (arg0, arg1))
8680 return fold_build2 (MINUS_EXPR, type, negate_expr (arg1),
8681 TREE_OPERAND (arg0, 0));
8682 /* Convert -A - 1 to ~A. */
8683 if (INTEGRAL_TYPE_P (type)
8684 && TREE_CODE (arg0) == NEGATE_EXPR
8685 && integer_onep (arg1))
8686 return fold_build1 (BIT_NOT_EXPR, type,
8687 fold_convert (type, TREE_OPERAND (arg0, 0)));
8688
8689 /* Convert -1 - A to ~A. */
8690 if (INTEGRAL_TYPE_P (type)
8691 && integer_all_onesp (arg0))
8692 return fold_build1 (BIT_NOT_EXPR, type, arg1);
8693
8694 if (! FLOAT_TYPE_P (type))
8695 {
8696 if (integer_zerop (arg0))
8697 return negate_expr (fold_convert (type, arg1));
8698 if (integer_zerop (arg1))
8699 return non_lvalue (fold_convert (type, arg0));
8700
8701 /* Fold A - (A & B) into ~B & A. */
8702 if (!TREE_SIDE_EFFECTS (arg0)
8703 && TREE_CODE (arg1) == BIT_AND_EXPR)
8704 {
8705 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0))
8706 return fold_build2 (BIT_AND_EXPR, type,
8707 fold_build1 (BIT_NOT_EXPR, type,
8708 TREE_OPERAND (arg1, 0)),
8709 arg0);
8710 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
8711 return fold_build2 (BIT_AND_EXPR, type,
8712 fold_build1 (BIT_NOT_EXPR, type,
8713 TREE_OPERAND (arg1, 1)),
8714 arg0);
8715 }
8716
8717 /* Fold (A & ~B) - (A & B) into (A ^ B) - B, where B is
8718 any power of 2 minus 1. */
8719 if (TREE_CODE (arg0) == BIT_AND_EXPR
8720 && TREE_CODE (arg1) == BIT_AND_EXPR
8721 && operand_equal_p (TREE_OPERAND (arg0, 0),
8722 TREE_OPERAND (arg1, 0), 0))
8723 {
8724 tree mask0 = TREE_OPERAND (arg0, 1);
8725 tree mask1 = TREE_OPERAND (arg1, 1);
8726 tree tem = fold_build1 (BIT_NOT_EXPR, type, mask0);
8727
8728 if (operand_equal_p (tem, mask1, 0))
8729 {
8730 tem = fold_build2 (BIT_XOR_EXPR, type,
8731 TREE_OPERAND (arg0, 0), mask1);
8732 return fold_build2 (MINUS_EXPR, type, tem, mask1);
8733 }
8734 }
8735 }
8736
8737 /* See if ARG1 is zero and X - ARG1 reduces to X. */
8738 else if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 1))
8739 return non_lvalue (fold_convert (type, arg0));
8740
8741 /* (ARG0 - ARG1) is the same as (-ARG1 + ARG0). So check whether
8742 ARG0 is zero and X + ARG0 reduces to X, since that would mean
8743 (-ARG1 + ARG0) reduces to -ARG1. */
8744 else if (fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
8745 return negate_expr (fold_convert (type, arg1));
8746
8747 /* Fold &x - &x. This can happen from &x.foo - &x.
8748 This is unsafe for certain floats even in non-IEEE formats.
8749 In IEEE, it is unsafe because it does wrong for NaNs.
8750 Also note that operand_equal_p is always false if an operand
8751 is volatile. */
8752
8753 if ((! FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations)
8754 && operand_equal_p (arg0, arg1, 0))
8755 return fold_convert (type, integer_zero_node);
8756
8757 /* A - B -> A + (-B) if B is easily negatable. */
8758 if (negate_expr_p (arg1)
8759 && ((FLOAT_TYPE_P (type)
8760 /* Avoid this transformation if B is a positive REAL_CST. */
8761 && (TREE_CODE (arg1) != REAL_CST
8762 || REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1))))
8763 || (INTEGRAL_TYPE_P (type) && flag_wrapv && !flag_trapv)))
8764 return fold_build2 (PLUS_EXPR, type,
8765 fold_convert (type, arg0),
8766 fold_convert (type, negate_expr (arg1)));
8767
8768 /* Try folding difference of addresses. */
8769 {
8770 HOST_WIDE_INT diff;
8771
8772 if ((TREE_CODE (arg0) == ADDR_EXPR
8773 || TREE_CODE (arg1) == ADDR_EXPR)
8774 && ptr_difference_const (arg0, arg1, &diff))
8775 return build_int_cst_type (type, diff);
8776 }
8777
8778 /* Fold &a[i] - &a[j] to i-j. */
8779 if (TREE_CODE (arg0) == ADDR_EXPR
8780 && TREE_CODE (TREE_OPERAND (arg0, 0)) == ARRAY_REF
8781 && TREE_CODE (arg1) == ADDR_EXPR
8782 && TREE_CODE (TREE_OPERAND (arg1, 0)) == ARRAY_REF)
8783 {
8784 tree aref0 = TREE_OPERAND (arg0, 0);
8785 tree aref1 = TREE_OPERAND (arg1, 0);
8786 if (operand_equal_p (TREE_OPERAND (aref0, 0),
8787 TREE_OPERAND (aref1, 0), 0))
8788 {
8789 tree op0 = fold_convert (type, TREE_OPERAND (aref0, 1));
8790 tree op1 = fold_convert (type, TREE_OPERAND (aref1, 1));
8791 tree esz = array_ref_element_size (aref0);
8792 tree diff = build2 (MINUS_EXPR, type, op0, op1);
8793 return fold_build2 (MULT_EXPR, type, diff,
8794 fold_convert (type, esz));
8795
8796 }
8797 }
8798
8799 /* Try replacing &a[i1] - c * i2 with &a[i1 - i2], if c is step
8800 of the array. Loop optimizer sometimes produce this type of
8801 expressions. */
8802 if (TREE_CODE (arg0) == ADDR_EXPR)
8803 {
8804 tem = try_move_mult_to_index (MINUS_EXPR, arg0, arg1);
8805 if (tem)
8806 return fold_convert (type, tem);
8807 }
8808
8809 if (flag_unsafe_math_optimizations
8810 && (TREE_CODE (arg0) == RDIV_EXPR || TREE_CODE (arg0) == MULT_EXPR)
8811 && (TREE_CODE (arg1) == RDIV_EXPR || TREE_CODE (arg1) == MULT_EXPR)
8812 && (tem = distribute_real_division (code, type, arg0, arg1)))
8813 return tem;
8814
8815 /* Handle (A1 * C1) - (A2 * C2) with A1, A2 or C1, C2 being the
8816 same or one. */
8817 if ((TREE_CODE (arg0) == MULT_EXPR
8818 || TREE_CODE (arg1) == MULT_EXPR)
8819 && (!FLOAT_TYPE_P (type) || flag_unsafe_math_optimizations))
8820 {
8821 tree tem = fold_plusminus_mult_expr (code, type, arg0, arg1);
8822 if (tem)
8823 return tem;
8824 }
8825
8826 goto associate;
8827
8828 case MULT_EXPR:
8829 /* (-A) * (-B) -> A * B */
8830 if (TREE_CODE (arg0) == NEGATE_EXPR && negate_expr_p (arg1))
8831 return fold_build2 (MULT_EXPR, type,
8832 TREE_OPERAND (arg0, 0),
8833 negate_expr (arg1));
8834 if (TREE_CODE (arg1) == NEGATE_EXPR && negate_expr_p (arg0))
8835 return fold_build2 (MULT_EXPR, type,
8836 negate_expr (arg0),
8837 TREE_OPERAND (arg1, 0));
8838
8839 if (! FLOAT_TYPE_P (type))
8840 {
8841 if (integer_zerop (arg1))
8842 return omit_one_operand (type, arg1, arg0);
8843 if (integer_onep (arg1))
8844 return non_lvalue (fold_convert (type, arg0));
8845 /* Transform x * -1 into -x. */
8846 if (integer_all_onesp (arg1))
8847 return fold_convert (type, negate_expr (arg0));
8848
8849 /* (a * (1 << b)) is (a << b) */
8850 if (TREE_CODE (arg1) == LSHIFT_EXPR
8851 && integer_onep (TREE_OPERAND (arg1, 0)))
8852 return fold_build2 (LSHIFT_EXPR, type, arg0,
8853 TREE_OPERAND (arg1, 1));
8854 if (TREE_CODE (arg0) == LSHIFT_EXPR
8855 && integer_onep (TREE_OPERAND (arg0, 0)))
8856 return fold_build2 (LSHIFT_EXPR, type, arg1,
8857 TREE_OPERAND (arg0, 1));
8858
8859 if (TREE_CODE (arg1) == INTEGER_CST
8860 && 0 != (tem = extract_muldiv (op0,
8861 fold_convert (type, arg1),
8862 code, NULL_TREE)))
8863 return fold_convert (type, tem);
8864
8865 /* Optimize z * conj(z) for integer complex numbers. */
8866 if (TREE_CODE (arg0) == CONJ_EXPR
8867 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
8868 return fold_mult_zconjz (type, arg1);
8869 if (TREE_CODE (arg1) == CONJ_EXPR
8870 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
8871 return fold_mult_zconjz (type, arg0);
8872 }
8873 else
8874 {
8875 /* Maybe fold x * 0 to 0. The expressions aren't the same
8876 when x is NaN, since x * 0 is also NaN. Nor are they the
8877 same in modes with signed zeros, since multiplying a
8878 negative value by 0 gives -0, not +0. */
8879 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
8880 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
8881 && real_zerop (arg1))
8882 return omit_one_operand (type, arg1, arg0);
8883 /* In IEEE floating point, x*1 is not equivalent to x for snans. */
8884 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
8885 && real_onep (arg1))
8886 return non_lvalue (fold_convert (type, arg0));
8887
8888 /* Transform x * -1.0 into -x. */
8889 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
8890 && real_minus_onep (arg1))
8891 return fold_convert (type, negate_expr (arg0));
8892
8893 /* Convert (C1/X)*C2 into (C1*C2)/X. */
8894 if (flag_unsafe_math_optimizations
8895 && TREE_CODE (arg0) == RDIV_EXPR
8896 && TREE_CODE (arg1) == REAL_CST
8897 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST)
8898 {
8899 tree tem = const_binop (MULT_EXPR, TREE_OPERAND (arg0, 0),
8900 arg1, 0);
8901 if (tem)
8902 return fold_build2 (RDIV_EXPR, type, tem,
8903 TREE_OPERAND (arg0, 1));
8904 }
8905
8906 /* Strip sign operations from X in X*X, i.e. -Y*-Y -> Y*Y. */
8907 if (operand_equal_p (arg0, arg1, 0))
8908 {
8909 tree tem = fold_strip_sign_ops (arg0);
8910 if (tem != NULL_TREE)
8911 {
8912 tem = fold_convert (type, tem);
8913 return fold_build2 (MULT_EXPR, type, tem, tem);
8914 }
8915 }
8916
8917 /* Optimize z * conj(z) for floating point complex numbers.
8918 Guarded by flag_unsafe_math_optimizations as non-finite
8919 imaginary components don't produce scalar results. */
8920 if (flag_unsafe_math_optimizations
8921 && TREE_CODE (arg0) == CONJ_EXPR
8922 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
8923 return fold_mult_zconjz (type, arg1);
8924 if (flag_unsafe_math_optimizations
8925 && TREE_CODE (arg1) == CONJ_EXPR
8926 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
8927 return fold_mult_zconjz (type, arg0);
8928
8929 if (flag_unsafe_math_optimizations)
8930 {
8931 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
8932 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
8933
8934 /* Optimizations of root(...)*root(...). */
8935 if (fcode0 == fcode1 && BUILTIN_ROOT_P (fcode0))
8936 {
8937 tree rootfn, arg, arglist;
8938 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
8939 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
8940
8941 /* Optimize sqrt(x)*sqrt(x) as x. */
8942 if (BUILTIN_SQRT_P (fcode0)
8943 && operand_equal_p (arg00, arg10, 0)
8944 && ! HONOR_SNANS (TYPE_MODE (type)))
8945 return arg00;
8946
8947 /* Optimize root(x)*root(y) as root(x*y). */
8948 rootfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
8949 arg = fold_build2 (MULT_EXPR, type, arg00, arg10);
8950 arglist = build_tree_list (NULL_TREE, arg);
8951 return build_function_call_expr (rootfn, arglist);
8952 }
8953
8954 /* Optimize expN(x)*expN(y) as expN(x+y). */
8955 if (fcode0 == fcode1 && BUILTIN_EXPONENT_P (fcode0))
8956 {
8957 tree expfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
8958 tree arg = fold_build2 (PLUS_EXPR, type,
8959 TREE_VALUE (TREE_OPERAND (arg0, 1)),
8960 TREE_VALUE (TREE_OPERAND (arg1, 1)));
8961 tree arglist = build_tree_list (NULL_TREE, arg);
8962 return build_function_call_expr (expfn, arglist);
8963 }
8964
8965 /* Optimizations of pow(...)*pow(...). */
8966 if ((fcode0 == BUILT_IN_POW && fcode1 == BUILT_IN_POW)
8967 || (fcode0 == BUILT_IN_POWF && fcode1 == BUILT_IN_POWF)
8968 || (fcode0 == BUILT_IN_POWL && fcode1 == BUILT_IN_POWL))
8969 {
8970 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
8971 tree arg01 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0,
8972 1)));
8973 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
8974 tree arg11 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg1,
8975 1)));
8976
8977 /* Optimize pow(x,y)*pow(z,y) as pow(x*z,y). */
8978 if (operand_equal_p (arg01, arg11, 0))
8979 {
8980 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
8981 tree arg = fold_build2 (MULT_EXPR, type, arg00, arg10);
8982 tree arglist = tree_cons (NULL_TREE, arg,
8983 build_tree_list (NULL_TREE,
8984 arg01));
8985 return build_function_call_expr (powfn, arglist);
8986 }
8987
8988 /* Optimize pow(x,y)*pow(x,z) as pow(x,y+z). */
8989 if (operand_equal_p (arg00, arg10, 0))
8990 {
8991 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
8992 tree arg = fold_build2 (PLUS_EXPR, type, arg01, arg11);
8993 tree arglist = tree_cons (NULL_TREE, arg00,
8994 build_tree_list (NULL_TREE,
8995 arg));
8996 return build_function_call_expr (powfn, arglist);
8997 }
8998 }
8999
9000 /* Optimize tan(x)*cos(x) as sin(x). */
9001 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_COS)
9002 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_COSF)
9003 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_COSL)
9004 || (fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_TAN)
9005 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_TANF)
9006 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_TANL))
9007 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
9008 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
9009 {
9010 tree sinfn = mathfn_built_in (type, BUILT_IN_SIN);
9011
9012 if (sinfn != NULL_TREE)
9013 return build_function_call_expr (sinfn,
9014 TREE_OPERAND (arg0, 1));
9015 }
9016
9017 /* Optimize x*pow(x,c) as pow(x,c+1). */
9018 if (fcode1 == BUILT_IN_POW
9019 || fcode1 == BUILT_IN_POWF
9020 || fcode1 == BUILT_IN_POWL)
9021 {
9022 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
9023 tree arg11 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg1,
9024 1)));
9025 if (TREE_CODE (arg11) == REAL_CST
9026 && ! TREE_CONSTANT_OVERFLOW (arg11)
9027 && operand_equal_p (arg0, arg10, 0))
9028 {
9029 tree powfn = TREE_OPERAND (TREE_OPERAND (arg1, 0), 0);
9030 REAL_VALUE_TYPE c;
9031 tree arg, arglist;
9032
9033 c = TREE_REAL_CST (arg11);
9034 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
9035 arg = build_real (type, c);
9036 arglist = build_tree_list (NULL_TREE, arg);
9037 arglist = tree_cons (NULL_TREE, arg0, arglist);
9038 return build_function_call_expr (powfn, arglist);
9039 }
9040 }
9041
9042 /* Optimize pow(x,c)*x as pow(x,c+1). */
9043 if (fcode0 == BUILT_IN_POW
9044 || fcode0 == BUILT_IN_POWF
9045 || fcode0 == BUILT_IN_POWL)
9046 {
9047 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
9048 tree arg01 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0,
9049 1)));
9050 if (TREE_CODE (arg01) == REAL_CST
9051 && ! TREE_CONSTANT_OVERFLOW (arg01)
9052 && operand_equal_p (arg1, arg00, 0))
9053 {
9054 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
9055 REAL_VALUE_TYPE c;
9056 tree arg, arglist;
9057
9058 c = TREE_REAL_CST (arg01);
9059 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
9060 arg = build_real (type, c);
9061 arglist = build_tree_list (NULL_TREE, arg);
9062 arglist = tree_cons (NULL_TREE, arg1, arglist);
9063 return build_function_call_expr (powfn, arglist);
9064 }
9065 }
9066
9067 /* Optimize x*x as pow(x,2.0), which is expanded as x*x. */
9068 if (! optimize_size
9069 && operand_equal_p (arg0, arg1, 0))
9070 {
9071 tree powfn = mathfn_built_in (type, BUILT_IN_POW);
9072
9073 if (powfn)
9074 {
9075 tree arg = build_real (type, dconst2);
9076 tree arglist = build_tree_list (NULL_TREE, arg);
9077 arglist = tree_cons (NULL_TREE, arg0, arglist);
9078 return build_function_call_expr (powfn, arglist);
9079 }
9080 }
9081 }
9082 }
9083 goto associate;
9084
9085 case BIT_IOR_EXPR:
9086 bit_ior:
9087 if (integer_all_onesp (arg1))
9088 return omit_one_operand (type, arg1, arg0);
9089 if (integer_zerop (arg1))
9090 return non_lvalue (fold_convert (type, arg0));
9091 if (operand_equal_p (arg0, arg1, 0))
9092 return non_lvalue (fold_convert (type, arg0));
9093
9094 /* ~X | X is -1. */
9095 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9096 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
9097 {
9098 t1 = build_int_cst (type, -1);
9099 t1 = force_fit_type (t1, 0, false, false);
9100 return omit_one_operand (type, t1, arg1);
9101 }
9102
9103 /* X | ~X is -1. */
9104 if (TREE_CODE (arg1) == BIT_NOT_EXPR
9105 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
9106 {
9107 t1 = build_int_cst (type, -1);
9108 t1 = force_fit_type (t1, 0, false, false);
9109 return omit_one_operand (type, t1, arg0);
9110 }
9111
9112 /* Canonicalize (X & C1) | C2. */
9113 if (TREE_CODE (arg0) == BIT_AND_EXPR
9114 && TREE_CODE (arg1) == INTEGER_CST
9115 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
9116 {
9117 unsigned HOST_WIDE_INT hi1, lo1, hi2, lo2, mlo, mhi;
9118 int width = TYPE_PRECISION (type);
9119 hi1 = TREE_INT_CST_HIGH (TREE_OPERAND (arg0, 1));
9120 lo1 = TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1));
9121 hi2 = TREE_INT_CST_HIGH (arg1);
9122 lo2 = TREE_INT_CST_LOW (arg1);
9123
9124 /* If (C1&C2) == C1, then (X&C1)|C2 becomes (X,C2). */
9125 if ((hi1 & hi2) == hi1 && (lo1 & lo2) == lo1)
9126 return omit_one_operand (type, arg1, TREE_OPERAND (arg0, 0));
9127
9128 if (width > HOST_BITS_PER_WIDE_INT)
9129 {
9130 mhi = (unsigned HOST_WIDE_INT) -1
9131 >> (2 * HOST_BITS_PER_WIDE_INT - width);
9132 mlo = -1;
9133 }
9134 else
9135 {
9136 mhi = 0;
9137 mlo = (unsigned HOST_WIDE_INT) -1
9138 >> (HOST_BITS_PER_WIDE_INT - width);
9139 }
9140
9141 /* If (C1|C2) == ~0 then (X&C1)|C2 becomes X|C2. */
9142 if ((~(hi1 | hi2) & mhi) == 0 && (~(lo1 | lo2) & mlo) == 0)
9143 return fold_build2 (BIT_IOR_EXPR, type,
9144 TREE_OPERAND (arg0, 0), arg1);
9145
9146 /* Minimize the number of bits set in C1, i.e. C1 := C1 & ~C2. */
9147 hi1 &= mhi;
9148 lo1 &= mlo;
9149 if ((hi1 & ~hi2) != hi1 || (lo1 & ~lo2) != lo1)
9150 return fold_build2 (BIT_IOR_EXPR, type,
9151 fold_build2 (BIT_AND_EXPR, type,
9152 TREE_OPERAND (arg0, 0),
9153 build_int_cst_wide (type,
9154 lo1 & ~lo2,
9155 hi1 & ~hi2)),
9156 arg1);
9157 }
9158
9159 /* (X & Y) | Y is (X, Y). */
9160 if (TREE_CODE (arg0) == BIT_AND_EXPR
9161 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
9162 return omit_one_operand (type, arg1, TREE_OPERAND (arg0, 0));
9163 /* (X & Y) | X is (Y, X). */
9164 if (TREE_CODE (arg0) == BIT_AND_EXPR
9165 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
9166 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
9167 return omit_one_operand (type, arg1, TREE_OPERAND (arg0, 1));
9168 /* X | (X & Y) is (Y, X). */
9169 if (TREE_CODE (arg1) == BIT_AND_EXPR
9170 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0)
9171 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 1)))
9172 return omit_one_operand (type, arg0, TREE_OPERAND (arg1, 1));
9173 /* X | (Y & X) is (Y, X). */
9174 if (TREE_CODE (arg1) == BIT_AND_EXPR
9175 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
9176 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
9177 return omit_one_operand (type, arg0, TREE_OPERAND (arg1, 0));
9178
9179 t1 = distribute_bit_expr (code, type, arg0, arg1);
9180 if (t1 != NULL_TREE)
9181 return t1;
9182
9183 /* Convert (or (not arg0) (not arg1)) to (not (and (arg0) (arg1))).
9184
9185 This results in more efficient code for machines without a NAND
9186 instruction. Combine will canonicalize to the first form
9187 which will allow use of NAND instructions provided by the
9188 backend if they exist. */
9189 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9190 && TREE_CODE (arg1) == BIT_NOT_EXPR)
9191 {
9192 return fold_build1 (BIT_NOT_EXPR, type,
9193 build2 (BIT_AND_EXPR, type,
9194 TREE_OPERAND (arg0, 0),
9195 TREE_OPERAND (arg1, 0)));
9196 }
9197
9198 /* See if this can be simplified into a rotate first. If that
9199 is unsuccessful continue in the association code. */
9200 goto bit_rotate;
9201
9202 case BIT_XOR_EXPR:
9203 if (integer_zerop (arg1))
9204 return non_lvalue (fold_convert (type, arg0));
9205 if (integer_all_onesp (arg1))
9206 return fold_build1 (BIT_NOT_EXPR, type, arg0);
9207 if (operand_equal_p (arg0, arg1, 0))
9208 return omit_one_operand (type, integer_zero_node, arg0);
9209
9210 /* ~X ^ X is -1. */
9211 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9212 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
9213 {
9214 t1 = build_int_cst (type, -1);
9215 t1 = force_fit_type (t1, 0, false, false);
9216 return omit_one_operand (type, t1, arg1);
9217 }
9218
9219 /* X ^ ~X is -1. */
9220 if (TREE_CODE (arg1) == BIT_NOT_EXPR
9221 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
9222 {
9223 t1 = build_int_cst (type, -1);
9224 t1 = force_fit_type (t1, 0, false, false);
9225 return omit_one_operand (type, t1, arg0);
9226 }
9227
9228 /* If we are XORing two BIT_AND_EXPR's, both of which are and'ing
9229 with a constant, and the two constants have no bits in common,
9230 we should treat this as a BIT_IOR_EXPR since this may produce more
9231 simplifications. */
9232 if (TREE_CODE (arg0) == BIT_AND_EXPR
9233 && TREE_CODE (arg1) == BIT_AND_EXPR
9234 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
9235 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
9236 && integer_zerop (const_binop (BIT_AND_EXPR,
9237 TREE_OPERAND (arg0, 1),
9238 TREE_OPERAND (arg1, 1), 0)))
9239 {
9240 code = BIT_IOR_EXPR;
9241 goto bit_ior;
9242 }
9243
9244 /* (X | Y) ^ X -> Y & ~ X*/
9245 if (TREE_CODE (arg0) == BIT_IOR_EXPR
9246 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
9247 {
9248 tree t2 = TREE_OPERAND (arg0, 1);
9249 t1 = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg1),
9250 arg1);
9251 t1 = fold_build2 (BIT_AND_EXPR, type, fold_convert (type, t2),
9252 fold_convert (type, t1));
9253 return t1;
9254 }
9255
9256 /* (Y | X) ^ X -> Y & ~ X*/
9257 if (TREE_CODE (arg0) == BIT_IOR_EXPR
9258 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
9259 {
9260 tree t2 = TREE_OPERAND (arg0, 0);
9261 t1 = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg1),
9262 arg1);
9263 t1 = fold_build2 (BIT_AND_EXPR, type, fold_convert (type, t2),
9264 fold_convert (type, t1));
9265 return t1;
9266 }
9267
9268 /* X ^ (X | Y) -> Y & ~ X*/
9269 if (TREE_CODE (arg1) == BIT_IOR_EXPR
9270 && operand_equal_p (TREE_OPERAND (arg1, 0), arg0, 0))
9271 {
9272 tree t2 = TREE_OPERAND (arg1, 1);
9273 t1 = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg0),
9274 arg0);
9275 t1 = fold_build2 (BIT_AND_EXPR, type, fold_convert (type, t2),
9276 fold_convert (type, t1));
9277 return t1;
9278 }
9279
9280 /* X ^ (Y | X) -> Y & ~ X*/
9281 if (TREE_CODE (arg1) == BIT_IOR_EXPR
9282 && operand_equal_p (TREE_OPERAND (arg1, 1), arg0, 0))
9283 {
9284 tree t2 = TREE_OPERAND (arg1, 0);
9285 t1 = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg0),
9286 arg0);
9287 t1 = fold_build2 (BIT_AND_EXPR, type, fold_convert (type, t2),
9288 fold_convert (type, t1));
9289 return t1;
9290 }
9291
9292 /* Convert ~X ^ ~Y to X ^ Y. */
9293 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9294 && TREE_CODE (arg1) == BIT_NOT_EXPR)
9295 return fold_build2 (code, type,
9296 fold_convert (type, TREE_OPERAND (arg0, 0)),
9297 fold_convert (type, TREE_OPERAND (arg1, 0)));
9298
9299 /* Fold (X & 1) ^ 1 as (X & 1) == 0. */
9300 if (TREE_CODE (arg0) == BIT_AND_EXPR
9301 && integer_onep (TREE_OPERAND (arg0, 1))
9302 && integer_onep (arg1))
9303 return fold_build2 (EQ_EXPR, type, arg0,
9304 build_int_cst (TREE_TYPE (arg0), 0));
9305
9306 /* Fold (X & Y) ^ Y as ~X & Y. */
9307 if (TREE_CODE (arg0) == BIT_AND_EXPR
9308 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
9309 {
9310 tem = fold_convert (type, TREE_OPERAND (arg0, 0));
9311 return fold_build2 (BIT_AND_EXPR, type,
9312 fold_build1 (BIT_NOT_EXPR, type, tem),
9313 fold_convert (type, arg1));
9314 }
9315 /* Fold (X & Y) ^ X as ~Y & X. */
9316 if (TREE_CODE (arg0) == BIT_AND_EXPR
9317 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
9318 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
9319 {
9320 tem = fold_convert (type, TREE_OPERAND (arg0, 1));
9321 return fold_build2 (BIT_AND_EXPR, type,
9322 fold_build1 (BIT_NOT_EXPR, type, tem),
9323 fold_convert (type, arg1));
9324 }
9325 /* Fold X ^ (X & Y) as X & ~Y. */
9326 if (TREE_CODE (arg1) == BIT_AND_EXPR
9327 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
9328 {
9329 tem = fold_convert (type, TREE_OPERAND (arg1, 1));
9330 return fold_build2 (BIT_AND_EXPR, type,
9331 fold_convert (type, arg0),
9332 fold_build1 (BIT_NOT_EXPR, type, tem));
9333 }
9334 /* Fold X ^ (Y & X) as ~Y & X. */
9335 if (TREE_CODE (arg1) == BIT_AND_EXPR
9336 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
9337 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
9338 {
9339 tem = fold_convert (type, TREE_OPERAND (arg1, 0));
9340 return fold_build2 (BIT_AND_EXPR, type,
9341 fold_build1 (BIT_NOT_EXPR, type, tem),
9342 fold_convert (type, arg0));
9343 }
9344
9345 /* See if this can be simplified into a rotate first. If that
9346 is unsuccessful continue in the association code. */
9347 goto bit_rotate;
9348
9349 case BIT_AND_EXPR:
9350 if (integer_all_onesp (arg1))
9351 return non_lvalue (fold_convert (type, arg0));
9352 if (integer_zerop (arg1))
9353 return omit_one_operand (type, arg1, arg0);
9354 if (operand_equal_p (arg0, arg1, 0))
9355 return non_lvalue (fold_convert (type, arg0));
9356
9357 /* ~X & X is always zero. */
9358 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9359 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
9360 return omit_one_operand (type, integer_zero_node, arg1);
9361
9362 /* X & ~X is always zero. */
9363 if (TREE_CODE (arg1) == BIT_NOT_EXPR
9364 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
9365 return omit_one_operand (type, integer_zero_node, arg0);
9366
9367 /* Canonicalize (X | C1) & C2 as (X & C2) | (C1 & C2). */
9368 if (TREE_CODE (arg0) == BIT_IOR_EXPR
9369 && TREE_CODE (arg1) == INTEGER_CST
9370 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
9371 return fold_build2 (BIT_IOR_EXPR, type,
9372 fold_build2 (BIT_AND_EXPR, type,
9373 TREE_OPERAND (arg0, 0), arg1),
9374 fold_build2 (BIT_AND_EXPR, type,
9375 TREE_OPERAND (arg0, 1), arg1));
9376
9377 /* (X | Y) & Y is (X, Y). */
9378 if (TREE_CODE (arg0) == BIT_IOR_EXPR
9379 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
9380 return omit_one_operand (type, arg1, TREE_OPERAND (arg0, 0));
9381 /* (X | Y) & X is (Y, X). */
9382 if (TREE_CODE (arg0) == BIT_IOR_EXPR
9383 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
9384 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
9385 return omit_one_operand (type, arg1, TREE_OPERAND (arg0, 1));
9386 /* X & (X | Y) is (Y, X). */
9387 if (TREE_CODE (arg1) == BIT_IOR_EXPR
9388 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0)
9389 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 1)))
9390 return omit_one_operand (type, arg0, TREE_OPERAND (arg1, 1));
9391 /* X & (Y | X) is (Y, X). */
9392 if (TREE_CODE (arg1) == BIT_IOR_EXPR
9393 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
9394 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
9395 return omit_one_operand (type, arg0, TREE_OPERAND (arg1, 0));
9396
9397 /* Fold (X ^ 1) & 1 as (X & 1) == 0. */
9398 if (TREE_CODE (arg0) == BIT_XOR_EXPR
9399 && integer_onep (TREE_OPERAND (arg0, 1))
9400 && integer_onep (arg1))
9401 {
9402 tem = TREE_OPERAND (arg0, 0);
9403 return fold_build2 (EQ_EXPR, type,
9404 fold_build2 (BIT_AND_EXPR, TREE_TYPE (tem), tem,
9405 build_int_cst (TREE_TYPE (tem), 1)),
9406 build_int_cst (TREE_TYPE (tem), 0));
9407 }
9408 /* Fold ~X & 1 as (X & 1) == 0. */
9409 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9410 && integer_onep (arg1))
9411 {
9412 tem = TREE_OPERAND (arg0, 0);
9413 return fold_build2 (EQ_EXPR, type,
9414 fold_build2 (BIT_AND_EXPR, TREE_TYPE (tem), tem,
9415 build_int_cst (TREE_TYPE (tem), 1)),
9416 build_int_cst (TREE_TYPE (tem), 0));
9417 }
9418
9419 /* Fold (X ^ Y) & Y as ~X & Y. */
9420 if (TREE_CODE (arg0) == BIT_XOR_EXPR
9421 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
9422 {
9423 tem = fold_convert (type, TREE_OPERAND (arg0, 0));
9424 return fold_build2 (BIT_AND_EXPR, type,
9425 fold_build1 (BIT_NOT_EXPR, type, tem),
9426 fold_convert (type, arg1));
9427 }
9428 /* Fold (X ^ Y) & X as ~Y & X. */
9429 if (TREE_CODE (arg0) == BIT_XOR_EXPR
9430 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
9431 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
9432 {
9433 tem = fold_convert (type, TREE_OPERAND (arg0, 1));
9434 return fold_build2 (BIT_AND_EXPR, type,
9435 fold_build1 (BIT_NOT_EXPR, type, tem),
9436 fold_convert (type, arg1));
9437 }
9438 /* Fold X & (X ^ Y) as X & ~Y. */
9439 if (TREE_CODE (arg1) == BIT_XOR_EXPR
9440 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
9441 {
9442 tem = fold_convert (type, TREE_OPERAND (arg1, 1));
9443 return fold_build2 (BIT_AND_EXPR, type,
9444 fold_convert (type, arg0),
9445 fold_build1 (BIT_NOT_EXPR, type, tem));
9446 }
9447 /* Fold X & (Y ^ X) as ~Y & X. */
9448 if (TREE_CODE (arg1) == BIT_XOR_EXPR
9449 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
9450 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
9451 {
9452 tem = fold_convert (type, TREE_OPERAND (arg1, 0));
9453 return fold_build2 (BIT_AND_EXPR, type,
9454 fold_build1 (BIT_NOT_EXPR, type, tem),
9455 fold_convert (type, arg0));
9456 }
9457
9458 t1 = distribute_bit_expr (code, type, arg0, arg1);
9459 if (t1 != NULL_TREE)
9460 return t1;
9461 /* Simplify ((int)c & 0377) into (int)c, if c is unsigned char. */
9462 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) == NOP_EXPR
9463 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
9464 {
9465 unsigned int prec
9466 = TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)));
9467
9468 if (prec < BITS_PER_WORD && prec < HOST_BITS_PER_WIDE_INT
9469 && (~TREE_INT_CST_LOW (arg1)
9470 & (((HOST_WIDE_INT) 1 << prec) - 1)) == 0)
9471 return fold_convert (type, TREE_OPERAND (arg0, 0));
9472 }
9473
9474 /* Convert (and (not arg0) (not arg1)) to (not (or (arg0) (arg1))).
9475
9476 This results in more efficient code for machines without a NOR
9477 instruction. Combine will canonicalize to the first form
9478 which will allow use of NOR instructions provided by the
9479 backend if they exist. */
9480 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9481 && TREE_CODE (arg1) == BIT_NOT_EXPR)
9482 {
9483 return fold_build1 (BIT_NOT_EXPR, type,
9484 build2 (BIT_IOR_EXPR, type,
9485 TREE_OPERAND (arg0, 0),
9486 TREE_OPERAND (arg1, 0)));
9487 }
9488
9489 goto associate;
9490
9491 case RDIV_EXPR:
9492 /* Don't touch a floating-point divide by zero unless the mode
9493 of the constant can represent infinity. */
9494 if (TREE_CODE (arg1) == REAL_CST
9495 && !MODE_HAS_INFINITIES (TYPE_MODE (TREE_TYPE (arg1)))
9496 && real_zerop (arg1))
9497 return NULL_TREE;
9498
9499 /* Optimize A / A to 1.0 if we don't care about
9500 NaNs or Infinities. Skip the transformation
9501 for non-real operands. */
9502 if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (arg0))
9503 && ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
9504 && ! HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg0)))
9505 && operand_equal_p (arg0, arg1, 0))
9506 {
9507 tree r = build_real (TREE_TYPE (arg0), dconst1);
9508
9509 return omit_two_operands (type, r, arg0, arg1);
9510 }
9511
9512 /* The complex version of the above A / A optimization. */
9513 if (COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0))
9514 && operand_equal_p (arg0, arg1, 0))
9515 {
9516 tree elem_type = TREE_TYPE (TREE_TYPE (arg0));
9517 if (! HONOR_NANS (TYPE_MODE (elem_type))
9518 && ! HONOR_INFINITIES (TYPE_MODE (elem_type)))
9519 {
9520 tree r = build_real (elem_type, dconst1);
9521 /* omit_two_operands will call fold_convert for us. */
9522 return omit_two_operands (type, r, arg0, arg1);
9523 }
9524 }
9525
9526 /* (-A) / (-B) -> A / B */
9527 if (TREE_CODE (arg0) == NEGATE_EXPR && negate_expr_p (arg1))
9528 return fold_build2 (RDIV_EXPR, type,
9529 TREE_OPERAND (arg0, 0),
9530 negate_expr (arg1));
9531 if (TREE_CODE (arg1) == NEGATE_EXPR && negate_expr_p (arg0))
9532 return fold_build2 (RDIV_EXPR, type,
9533 negate_expr (arg0),
9534 TREE_OPERAND (arg1, 0));
9535
9536 /* In IEEE floating point, x/1 is not equivalent to x for snans. */
9537 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
9538 && real_onep (arg1))
9539 return non_lvalue (fold_convert (type, arg0));
9540
9541 /* In IEEE floating point, x/-1 is not equivalent to -x for snans. */
9542 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
9543 && real_minus_onep (arg1))
9544 return non_lvalue (fold_convert (type, negate_expr (arg0)));
9545
9546 /* If ARG1 is a constant, we can convert this to a multiply by the
9547 reciprocal. This does not have the same rounding properties,
9548 so only do this if -funsafe-math-optimizations. We can actually
9549 always safely do it if ARG1 is a power of two, but it's hard to
9550 tell if it is or not in a portable manner. */
9551 if (TREE_CODE (arg1) == REAL_CST)
9552 {
9553 if (flag_unsafe_math_optimizations
9554 && 0 != (tem = const_binop (code, build_real (type, dconst1),
9555 arg1, 0)))
9556 return fold_build2 (MULT_EXPR, type, arg0, tem);
9557 /* Find the reciprocal if optimizing and the result is exact. */
9558 if (optimize)
9559 {
9560 REAL_VALUE_TYPE r;
9561 r = TREE_REAL_CST (arg1);
9562 if (exact_real_inverse (TYPE_MODE(TREE_TYPE(arg0)), &r))
9563 {
9564 tem = build_real (type, r);
9565 return fold_build2 (MULT_EXPR, type,
9566 fold_convert (type, arg0), tem);
9567 }
9568 }
9569 }
9570 /* Convert A/B/C to A/(B*C). */
9571 if (flag_unsafe_math_optimizations
9572 && TREE_CODE (arg0) == RDIV_EXPR)
9573 return fold_build2 (RDIV_EXPR, type, TREE_OPERAND (arg0, 0),
9574 fold_build2 (MULT_EXPR, type,
9575 TREE_OPERAND (arg0, 1), arg1));
9576
9577 /* Convert A/(B/C) to (A/B)*C. */
9578 if (flag_unsafe_math_optimizations
9579 && TREE_CODE (arg1) == RDIV_EXPR)
9580 return fold_build2 (MULT_EXPR, type,
9581 fold_build2 (RDIV_EXPR, type, arg0,
9582 TREE_OPERAND (arg1, 0)),
9583 TREE_OPERAND (arg1, 1));
9584
9585 /* Convert C1/(X*C2) into (C1/C2)/X. */
9586 if (flag_unsafe_math_optimizations
9587 && TREE_CODE (arg1) == MULT_EXPR
9588 && TREE_CODE (arg0) == REAL_CST
9589 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST)
9590 {
9591 tree tem = const_binop (RDIV_EXPR, arg0,
9592 TREE_OPERAND (arg1, 1), 0);
9593 if (tem)
9594 return fold_build2 (RDIV_EXPR, type, tem,
9595 TREE_OPERAND (arg1, 0));
9596 }
9597
9598 if (flag_unsafe_math_optimizations)
9599 {
9600 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
9601 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
9602
9603 /* Optimize sin(x)/cos(x) as tan(x). */
9604 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_COS)
9605 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_COSF)
9606 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_COSL))
9607 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
9608 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
9609 {
9610 tree tanfn = mathfn_built_in (type, BUILT_IN_TAN);
9611
9612 if (tanfn != NULL_TREE)
9613 return build_function_call_expr (tanfn,
9614 TREE_OPERAND (arg0, 1));
9615 }
9616
9617 /* Optimize cos(x)/sin(x) as 1.0/tan(x). */
9618 if (((fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_SIN)
9619 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_SINF)
9620 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_SINL))
9621 && operand_equal_p (TREE_VALUE (TREE_OPERAND (arg0, 1)),
9622 TREE_VALUE (TREE_OPERAND (arg1, 1)), 0))
9623 {
9624 tree tanfn = mathfn_built_in (type, BUILT_IN_TAN);
9625
9626 if (tanfn != NULL_TREE)
9627 {
9628 tree tmp = TREE_OPERAND (arg0, 1);
9629 tmp = build_function_call_expr (tanfn, tmp);
9630 return fold_build2 (RDIV_EXPR, type,
9631 build_real (type, dconst1), tmp);
9632 }
9633 }
9634
9635 /* Optimize sin(x)/tan(x) as cos(x) if we don't care about
9636 NaNs or Infinities. */
9637 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_TAN)
9638 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_TANF)
9639 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_TANL)))
9640 {
9641 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
9642 tree arg01 = TREE_VALUE (TREE_OPERAND (arg1, 1));
9643
9644 if (! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg00)))
9645 && ! HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg00)))
9646 && operand_equal_p (arg00, arg01, 0))
9647 {
9648 tree cosfn = mathfn_built_in (type, BUILT_IN_COS);
9649
9650 if (cosfn != NULL_TREE)
9651 return build_function_call_expr (cosfn,
9652 TREE_OPERAND (arg0, 1));
9653 }
9654 }
9655
9656 /* Optimize tan(x)/sin(x) as 1.0/cos(x) if we don't care about
9657 NaNs or Infinities. */
9658 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_SIN)
9659 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_SINF)
9660 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_SINL)))
9661 {
9662 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
9663 tree arg01 = TREE_VALUE (TREE_OPERAND (arg1, 1));
9664
9665 if (! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg00)))
9666 && ! HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg00)))
9667 && operand_equal_p (arg00, arg01, 0))
9668 {
9669 tree cosfn = mathfn_built_in (type, BUILT_IN_COS);
9670
9671 if (cosfn != NULL_TREE)
9672 {
9673 tree tmp = TREE_OPERAND (arg0, 1);
9674 tmp = build_function_call_expr (cosfn, tmp);
9675 return fold_build2 (RDIV_EXPR, type,
9676 build_real (type, dconst1),
9677 tmp);
9678 }
9679 }
9680 }
9681
9682 /* Optimize pow(x,c)/x as pow(x,c-1). */
9683 if (fcode0 == BUILT_IN_POW
9684 || fcode0 == BUILT_IN_POWF
9685 || fcode0 == BUILT_IN_POWL)
9686 {
9687 tree arg00 = TREE_VALUE (TREE_OPERAND (arg0, 1));
9688 tree arg01 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg0, 1)));
9689 if (TREE_CODE (arg01) == REAL_CST
9690 && ! TREE_CONSTANT_OVERFLOW (arg01)
9691 && operand_equal_p (arg1, arg00, 0))
9692 {
9693 tree powfn = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
9694 REAL_VALUE_TYPE c;
9695 tree arg, arglist;
9696
9697 c = TREE_REAL_CST (arg01);
9698 real_arithmetic (&c, MINUS_EXPR, &c, &dconst1);
9699 arg = build_real (type, c);
9700 arglist = build_tree_list (NULL_TREE, arg);
9701 arglist = tree_cons (NULL_TREE, arg1, arglist);
9702 return build_function_call_expr (powfn, arglist);
9703 }
9704 }
9705
9706 /* Optimize x/expN(y) into x*expN(-y). */
9707 if (BUILTIN_EXPONENT_P (fcode1))
9708 {
9709 tree expfn = TREE_OPERAND (TREE_OPERAND (arg1, 0), 0);
9710 tree arg = negate_expr (TREE_VALUE (TREE_OPERAND (arg1, 1)));
9711 tree arglist = build_tree_list (NULL_TREE,
9712 fold_convert (type, arg));
9713 arg1 = build_function_call_expr (expfn, arglist);
9714 return fold_build2 (MULT_EXPR, type, arg0, arg1);
9715 }
9716
9717 /* Optimize x/pow(y,z) into x*pow(y,-z). */
9718 if (fcode1 == BUILT_IN_POW
9719 || fcode1 == BUILT_IN_POWF
9720 || fcode1 == BUILT_IN_POWL)
9721 {
9722 tree powfn = TREE_OPERAND (TREE_OPERAND (arg1, 0), 0);
9723 tree arg10 = TREE_VALUE (TREE_OPERAND (arg1, 1));
9724 tree arg11 = TREE_VALUE (TREE_CHAIN (TREE_OPERAND (arg1, 1)));
9725 tree neg11 = fold_convert (type, negate_expr (arg11));
9726 tree arglist = tree_cons(NULL_TREE, arg10,
9727 build_tree_list (NULL_TREE, neg11));
9728 arg1 = build_function_call_expr (powfn, arglist);
9729 return fold_build2 (MULT_EXPR, type, arg0, arg1);
9730 }
9731 }
9732 return NULL_TREE;
9733
9734 case TRUNC_DIV_EXPR:
9735 case FLOOR_DIV_EXPR:
9736 /* Simplify A / (B << N) where A and B are positive and B is
9737 a power of 2, to A >> (N + log2(B)). */
9738 if (TREE_CODE (arg1) == LSHIFT_EXPR
9739 && (TYPE_UNSIGNED (type) || tree_expr_nonnegative_p (arg0)))
9740 {
9741 tree sval = TREE_OPERAND (arg1, 0);
9742 if (integer_pow2p (sval) && tree_int_cst_sgn (sval) > 0)
9743 {
9744 tree sh_cnt = TREE_OPERAND (arg1, 1);
9745 unsigned long pow2 = exact_log2 (TREE_INT_CST_LOW (sval));
9746
9747 sh_cnt = fold_build2 (PLUS_EXPR, TREE_TYPE (sh_cnt),
9748 sh_cnt, build_int_cst (NULL_TREE, pow2));
9749 return fold_build2 (RSHIFT_EXPR, type,
9750 fold_convert (type, arg0), sh_cnt);
9751 }
9752 }
9753 /* Fall thru */
9754
9755 case ROUND_DIV_EXPR:
9756 case CEIL_DIV_EXPR:
9757 case EXACT_DIV_EXPR:
9758 if (integer_onep (arg1))
9759 return non_lvalue (fold_convert (type, arg0));
9760 if (integer_zerop (arg1))
9761 return NULL_TREE;
9762 /* X / -1 is -X. */
9763 if (!TYPE_UNSIGNED (type)
9764 && TREE_CODE (arg1) == INTEGER_CST
9765 && TREE_INT_CST_LOW (arg1) == (unsigned HOST_WIDE_INT) -1
9766 && TREE_INT_CST_HIGH (arg1) == -1)
9767 return fold_convert (type, negate_expr (arg0));
9768
9769 /* Convert -A / -B to A / B when the type is signed and overflow is
9770 undefined. */
9771 if (!TYPE_UNSIGNED (type) && !flag_wrapv
9772 && TREE_CODE (arg0) == NEGATE_EXPR
9773 && negate_expr_p (arg1))
9774 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
9775 negate_expr (arg1));
9776 if (!TYPE_UNSIGNED (type) && !flag_wrapv
9777 && TREE_CODE (arg1) == NEGATE_EXPR
9778 && negate_expr_p (arg0))
9779 return fold_build2 (code, type, negate_expr (arg0),
9780 TREE_OPERAND (arg1, 0));
9781
9782 /* If arg0 is a multiple of arg1, then rewrite to the fastest div
9783 operation, EXACT_DIV_EXPR.
9784
9785 Note that only CEIL_DIV_EXPR and FLOOR_DIV_EXPR are rewritten now.
9786 At one time others generated faster code, it's not clear if they do
9787 after the last round to changes to the DIV code in expmed.c. */
9788 if ((code == CEIL_DIV_EXPR || code == FLOOR_DIV_EXPR)
9789 && multiple_of_p (type, arg0, arg1))
9790 return fold_build2 (EXACT_DIV_EXPR, type, arg0, arg1);
9791
9792 if (TREE_CODE (arg1) == INTEGER_CST
9793 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE)))
9794 return fold_convert (type, tem);
9795
9796 return NULL_TREE;
9797
9798 case CEIL_MOD_EXPR:
9799 case FLOOR_MOD_EXPR:
9800 case ROUND_MOD_EXPR:
9801 case TRUNC_MOD_EXPR:
9802 /* X % 1 is always zero, but be sure to preserve any side
9803 effects in X. */
9804 if (integer_onep (arg1))
9805 return omit_one_operand (type, integer_zero_node, arg0);
9806
9807 /* X % 0, return X % 0 unchanged so that we can get the
9808 proper warnings and errors. */
9809 if (integer_zerop (arg1))
9810 return NULL_TREE;
9811
9812 /* 0 % X is always zero, but be sure to preserve any side
9813 effects in X. Place this after checking for X == 0. */
9814 if (integer_zerop (arg0))
9815 return omit_one_operand (type, integer_zero_node, arg1);
9816
9817 /* X % -1 is zero. */
9818 if (!TYPE_UNSIGNED (type)
9819 && TREE_CODE (arg1) == INTEGER_CST
9820 && TREE_INT_CST_LOW (arg1) == (unsigned HOST_WIDE_INT) -1
9821 && TREE_INT_CST_HIGH (arg1) == -1)
9822 return omit_one_operand (type, integer_zero_node, arg0);
9823
9824 /* Optimize TRUNC_MOD_EXPR by a power of two into a BIT_AND_EXPR,
9825 i.e. "X % C" into "X & (C - 1)", if X and C are positive. */
9826 if ((code == TRUNC_MOD_EXPR || code == FLOOR_MOD_EXPR)
9827 && (TYPE_UNSIGNED (type) || tree_expr_nonnegative_p (arg0)))
9828 {
9829 tree c = arg1;
9830 /* Also optimize A % (C << N) where C is a power of 2,
9831 to A & ((C << N) - 1). */
9832 if (TREE_CODE (arg1) == LSHIFT_EXPR)
9833 c = TREE_OPERAND (arg1, 0);
9834
9835 if (integer_pow2p (c) && tree_int_cst_sgn (c) > 0)
9836 {
9837 tree mask = fold_build2 (MINUS_EXPR, TREE_TYPE (arg1),
9838 arg1, integer_one_node);
9839 return fold_build2 (BIT_AND_EXPR, type,
9840 fold_convert (type, arg0),
9841 fold_convert (type, mask));
9842 }
9843 }
9844
9845 /* X % -C is the same as X % C. */
9846 if (code == TRUNC_MOD_EXPR
9847 && !TYPE_UNSIGNED (type)
9848 && TREE_CODE (arg1) == INTEGER_CST
9849 && !TREE_CONSTANT_OVERFLOW (arg1)
9850 && TREE_INT_CST_HIGH (arg1) < 0
9851 && !flag_trapv
9852 /* Avoid this transformation if C is INT_MIN, i.e. C == -C. */
9853 && !sign_bit_p (arg1, arg1))
9854 return fold_build2 (code, type, fold_convert (type, arg0),
9855 fold_convert (type, negate_expr (arg1)));
9856
9857 /* X % -Y is the same as X % Y. */
9858 if (code == TRUNC_MOD_EXPR
9859 && !TYPE_UNSIGNED (type)
9860 && TREE_CODE (arg1) == NEGATE_EXPR
9861 && !flag_trapv)
9862 return fold_build2 (code, type, fold_convert (type, arg0),
9863 fold_convert (type, TREE_OPERAND (arg1, 0)));
9864
9865 if (TREE_CODE (arg1) == INTEGER_CST
9866 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE)))
9867 return fold_convert (type, tem);
9868
9869 return NULL_TREE;
9870
9871 case LROTATE_EXPR:
9872 case RROTATE_EXPR:
9873 if (integer_all_onesp (arg0))
9874 return omit_one_operand (type, arg0, arg1);
9875 goto shift;
9876
9877 case RSHIFT_EXPR:
9878 /* Optimize -1 >> x for arithmetic right shifts. */
9879 if (integer_all_onesp (arg0) && !TYPE_UNSIGNED (type))
9880 return omit_one_operand (type, arg0, arg1);
9881 /* ... fall through ... */
9882
9883 case LSHIFT_EXPR:
9884 shift:
9885 if (integer_zerop (arg1))
9886 return non_lvalue (fold_convert (type, arg0));
9887 if (integer_zerop (arg0))
9888 return omit_one_operand (type, arg0, arg1);
9889
9890 /* Since negative shift count is not well-defined,
9891 don't try to compute it in the compiler. */
9892 if (TREE_CODE (arg1) == INTEGER_CST && tree_int_cst_sgn (arg1) < 0)
9893 return NULL_TREE;
9894
9895 /* Turn (a OP c1) OP c2 into a OP (c1+c2). */
9896 if (TREE_CODE (op0) == code && host_integerp (arg1, false)
9897 && TREE_INT_CST_LOW (arg1) < TYPE_PRECISION (type)
9898 && host_integerp (TREE_OPERAND (arg0, 1), false)
9899 && TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)) < TYPE_PRECISION (type))
9900 {
9901 HOST_WIDE_INT low = (TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1))
9902 + TREE_INT_CST_LOW (arg1));
9903
9904 /* Deal with a OP (c1 + c2) being undefined but (a OP c1) OP c2
9905 being well defined. */
9906 if (low >= TYPE_PRECISION (type))
9907 {
9908 if (code == LROTATE_EXPR || code == RROTATE_EXPR)
9909 low = low % TYPE_PRECISION (type);
9910 else if (TYPE_UNSIGNED (type) || code == LSHIFT_EXPR)
9911 return build_int_cst (type, 0);
9912 else
9913 low = TYPE_PRECISION (type) - 1;
9914 }
9915
9916 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
9917 build_int_cst (type, low));
9918 }
9919
9920 /* Transform (x >> c) << c into x & (-1<<c), or transform (x << c) >> c
9921 into x & ((unsigned)-1 >> c) for unsigned types. */
9922 if (((code == LSHIFT_EXPR && TREE_CODE (arg0) == RSHIFT_EXPR)
9923 || (TYPE_UNSIGNED (type)
9924 && code == RSHIFT_EXPR && TREE_CODE (arg0) == LSHIFT_EXPR))
9925 && host_integerp (arg1, false)
9926 && TREE_INT_CST_LOW (arg1) < TYPE_PRECISION (type)
9927 && host_integerp (TREE_OPERAND (arg0, 1), false)
9928 && TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)) < TYPE_PRECISION (type))
9929 {
9930 HOST_WIDE_INT low0 = TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1));
9931 HOST_WIDE_INT low1 = TREE_INT_CST_LOW (arg1);
9932 tree lshift;
9933 tree arg00;
9934
9935 if (low0 == low1)
9936 {
9937 arg00 = fold_convert (type, TREE_OPERAND (arg0, 0));
9938
9939 lshift = build_int_cst (type, -1);
9940 lshift = int_const_binop (code, lshift, arg1, 0);
9941
9942 return fold_build2 (BIT_AND_EXPR, type, arg00, lshift);
9943 }
9944 }
9945
9946 /* Rewrite an LROTATE_EXPR by a constant into an
9947 RROTATE_EXPR by a new constant. */
9948 if (code == LROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST)
9949 {
9950 tree tem = build_int_cst (NULL_TREE,
9951 GET_MODE_BITSIZE (TYPE_MODE (type)));
9952 tem = fold_convert (TREE_TYPE (arg1), tem);
9953 tem = const_binop (MINUS_EXPR, tem, arg1, 0);
9954 return fold_build2 (RROTATE_EXPR, type, arg0, tem);
9955 }
9956
9957 /* If we have a rotate of a bit operation with the rotate count and
9958 the second operand of the bit operation both constant,
9959 permute the two operations. */
9960 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
9961 && (TREE_CODE (arg0) == BIT_AND_EXPR
9962 || TREE_CODE (arg0) == BIT_IOR_EXPR
9963 || TREE_CODE (arg0) == BIT_XOR_EXPR)
9964 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
9965 return fold_build2 (TREE_CODE (arg0), type,
9966 fold_build2 (code, type,
9967 TREE_OPERAND (arg0, 0), arg1),
9968 fold_build2 (code, type,
9969 TREE_OPERAND (arg0, 1), arg1));
9970
9971 /* Two consecutive rotates adding up to the width of the mode can
9972 be ignored. */
9973 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
9974 && TREE_CODE (arg0) == RROTATE_EXPR
9975 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
9976 && TREE_INT_CST_HIGH (arg1) == 0
9977 && TREE_INT_CST_HIGH (TREE_OPERAND (arg0, 1)) == 0
9978 && ((TREE_INT_CST_LOW (arg1)
9979 + TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)))
9980 == (unsigned int) GET_MODE_BITSIZE (TYPE_MODE (type))))
9981 return TREE_OPERAND (arg0, 0);
9982
9983 return NULL_TREE;
9984
9985 case MIN_EXPR:
9986 if (operand_equal_p (arg0, arg1, 0))
9987 return omit_one_operand (type, arg0, arg1);
9988 if (INTEGRAL_TYPE_P (type)
9989 && operand_equal_p (arg1, TYPE_MIN_VALUE (type), OEP_ONLY_CONST))
9990 return omit_one_operand (type, arg1, arg0);
9991 tem = fold_minmax (MIN_EXPR, type, arg0, arg1);
9992 if (tem)
9993 return tem;
9994 goto associate;
9995
9996 case MAX_EXPR:
9997 if (operand_equal_p (arg0, arg1, 0))
9998 return omit_one_operand (type, arg0, arg1);
9999 if (INTEGRAL_TYPE_P (type)
10000 && TYPE_MAX_VALUE (type)
10001 && operand_equal_p (arg1, TYPE_MAX_VALUE (type), OEP_ONLY_CONST))
10002 return omit_one_operand (type, arg1, arg0);
10003 tem = fold_minmax (MAX_EXPR, type, arg0, arg1);
10004 if (tem)
10005 return tem;
10006 goto associate;
10007
10008 case TRUTH_ANDIF_EXPR:
10009 /* Note that the operands of this must be ints
10010 and their values must be 0 or 1.
10011 ("true" is a fixed value perhaps depending on the language.) */
10012 /* If first arg is constant zero, return it. */
10013 if (integer_zerop (arg0))
10014 return fold_convert (type, arg0);
10015 case TRUTH_AND_EXPR:
10016 /* If either arg is constant true, drop it. */
10017 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
10018 return non_lvalue (fold_convert (type, arg1));
10019 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1)
10020 /* Preserve sequence points. */
10021 && (code != TRUTH_ANDIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
10022 return non_lvalue (fold_convert (type, arg0));
10023 /* If second arg is constant zero, result is zero, but first arg
10024 must be evaluated. */
10025 if (integer_zerop (arg1))
10026 return omit_one_operand (type, arg1, arg0);
10027 /* Likewise for first arg, but note that only the TRUTH_AND_EXPR
10028 case will be handled here. */
10029 if (integer_zerop (arg0))
10030 return omit_one_operand (type, arg0, arg1);
10031
10032 /* !X && X is always false. */
10033 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
10034 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10035 return omit_one_operand (type, integer_zero_node, arg1);
10036 /* X && !X is always false. */
10037 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
10038 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10039 return omit_one_operand (type, integer_zero_node, arg0);
10040
10041 /* A < X && A + 1 > Y ==> A < X && A >= Y. Normally A + 1 > Y
10042 means A >= Y && A != MAX, but in this case we know that
10043 A < X <= MAX. */
10044
10045 if (!TREE_SIDE_EFFECTS (arg0)
10046 && !TREE_SIDE_EFFECTS (arg1))
10047 {
10048 tem = fold_to_nonsharp_ineq_using_bound (arg0, arg1);
10049 if (tem && !operand_equal_p (tem, arg0, 0))
10050 return fold_build2 (code, type, tem, arg1);
10051
10052 tem = fold_to_nonsharp_ineq_using_bound (arg1, arg0);
10053 if (tem && !operand_equal_p (tem, arg1, 0))
10054 return fold_build2 (code, type, arg0, tem);
10055 }
10056
10057 truth_andor:
10058 /* We only do these simplifications if we are optimizing. */
10059 if (!optimize)
10060 return NULL_TREE;
10061
10062 /* Check for things like (A || B) && (A || C). We can convert this
10063 to A || (B && C). Note that either operator can be any of the four
10064 truth and/or operations and the transformation will still be
10065 valid. Also note that we only care about order for the
10066 ANDIF and ORIF operators. If B contains side effects, this
10067 might change the truth-value of A. */
10068 if (TREE_CODE (arg0) == TREE_CODE (arg1)
10069 && (TREE_CODE (arg0) == TRUTH_ANDIF_EXPR
10070 || TREE_CODE (arg0) == TRUTH_ORIF_EXPR
10071 || TREE_CODE (arg0) == TRUTH_AND_EXPR
10072 || TREE_CODE (arg0) == TRUTH_OR_EXPR)
10073 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg0, 1)))
10074 {
10075 tree a00 = TREE_OPERAND (arg0, 0);
10076 tree a01 = TREE_OPERAND (arg0, 1);
10077 tree a10 = TREE_OPERAND (arg1, 0);
10078 tree a11 = TREE_OPERAND (arg1, 1);
10079 int commutative = ((TREE_CODE (arg0) == TRUTH_OR_EXPR
10080 || TREE_CODE (arg0) == TRUTH_AND_EXPR)
10081 && (code == TRUTH_AND_EXPR
10082 || code == TRUTH_OR_EXPR));
10083
10084 if (operand_equal_p (a00, a10, 0))
10085 return fold_build2 (TREE_CODE (arg0), type, a00,
10086 fold_build2 (code, type, a01, a11));
10087 else if (commutative && operand_equal_p (a00, a11, 0))
10088 return fold_build2 (TREE_CODE (arg0), type, a00,
10089 fold_build2 (code, type, a01, a10));
10090 else if (commutative && operand_equal_p (a01, a10, 0))
10091 return fold_build2 (TREE_CODE (arg0), type, a01,
10092 fold_build2 (code, type, a00, a11));
10093
10094 /* This case if tricky because we must either have commutative
10095 operators or else A10 must not have side-effects. */
10096
10097 else if ((commutative || ! TREE_SIDE_EFFECTS (a10))
10098 && operand_equal_p (a01, a11, 0))
10099 return fold_build2 (TREE_CODE (arg0), type,
10100 fold_build2 (code, type, a00, a10),
10101 a01);
10102 }
10103
10104 /* See if we can build a range comparison. */
10105 if (0 != (tem = fold_range_test (code, type, op0, op1)))
10106 return tem;
10107
10108 /* Check for the possibility of merging component references. If our
10109 lhs is another similar operation, try to merge its rhs with our
10110 rhs. Then try to merge our lhs and rhs. */
10111 if (TREE_CODE (arg0) == code
10112 && 0 != (tem = fold_truthop (code, type,
10113 TREE_OPERAND (arg0, 1), arg1)))
10114 return fold_build2 (code, type, TREE_OPERAND (arg0, 0), tem);
10115
10116 if ((tem = fold_truthop (code, type, arg0, arg1)) != 0)
10117 return tem;
10118
10119 return NULL_TREE;
10120
10121 case TRUTH_ORIF_EXPR:
10122 /* Note that the operands of this must be ints
10123 and their values must be 0 or true.
10124 ("true" is a fixed value perhaps depending on the language.) */
10125 /* If first arg is constant true, return it. */
10126 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
10127 return fold_convert (type, arg0);
10128 case TRUTH_OR_EXPR:
10129 /* If either arg is constant zero, drop it. */
10130 if (TREE_CODE (arg0) == INTEGER_CST && integer_zerop (arg0))
10131 return non_lvalue (fold_convert (type, arg1));
10132 if (TREE_CODE (arg1) == INTEGER_CST && integer_zerop (arg1)
10133 /* Preserve sequence points. */
10134 && (code != TRUTH_ORIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
10135 return non_lvalue (fold_convert (type, arg0));
10136 /* If second arg is constant true, result is true, but we must
10137 evaluate first arg. */
10138 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1))
10139 return omit_one_operand (type, arg1, arg0);
10140 /* Likewise for first arg, but note this only occurs here for
10141 TRUTH_OR_EXPR. */
10142 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
10143 return omit_one_operand (type, arg0, arg1);
10144
10145 /* !X || X is always true. */
10146 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
10147 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10148 return omit_one_operand (type, integer_one_node, arg1);
10149 /* X || !X is always true. */
10150 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
10151 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10152 return omit_one_operand (type, integer_one_node, arg0);
10153
10154 goto truth_andor;
10155
10156 case TRUTH_XOR_EXPR:
10157 /* If the second arg is constant zero, drop it. */
10158 if (integer_zerop (arg1))
10159 return non_lvalue (fold_convert (type, arg0));
10160 /* If the second arg is constant true, this is a logical inversion. */
10161 if (integer_onep (arg1))
10162 {
10163 /* Only call invert_truthvalue if operand is a truth value. */
10164 if (TREE_CODE (TREE_TYPE (arg0)) != BOOLEAN_TYPE)
10165 tem = fold_build1 (TRUTH_NOT_EXPR, TREE_TYPE (arg0), arg0);
10166 else
10167 tem = invert_truthvalue (arg0);
10168 return non_lvalue (fold_convert (type, tem));
10169 }
10170 /* Identical arguments cancel to zero. */
10171 if (operand_equal_p (arg0, arg1, 0))
10172 return omit_one_operand (type, integer_zero_node, arg0);
10173
10174 /* !X ^ X is always true. */
10175 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
10176 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10177 return omit_one_operand (type, integer_one_node, arg1);
10178
10179 /* X ^ !X is always true. */
10180 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
10181 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10182 return omit_one_operand (type, integer_one_node, arg0);
10183
10184 return NULL_TREE;
10185
10186 case EQ_EXPR:
10187 case NE_EXPR:
10188 tem = fold_comparison (code, type, op0, op1);
10189 if (tem != NULL_TREE)
10190 return tem;
10191
10192 /* bool_var != 0 becomes bool_var. */
10193 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_zerop (arg1)
10194 && code == NE_EXPR)
10195 return non_lvalue (fold_convert (type, arg0));
10196
10197 /* bool_var == 1 becomes bool_var. */
10198 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_onep (arg1)
10199 && code == EQ_EXPR)
10200 return non_lvalue (fold_convert (type, arg0));
10201
10202 /* bool_var != 1 becomes !bool_var. */
10203 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_onep (arg1)
10204 && code == NE_EXPR)
10205 return fold_build1 (TRUTH_NOT_EXPR, type, arg0);
10206
10207 /* bool_var == 0 becomes !bool_var. */
10208 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_zerop (arg1)
10209 && code == EQ_EXPR)
10210 return fold_build1 (TRUTH_NOT_EXPR, type, arg0);
10211
10212 /* ~a != C becomes a != ~C where C is a constant. Likewise for ==. */
10213 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10214 && TREE_CODE (arg1) == INTEGER_CST)
10215 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
10216 fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg1),
10217 arg1));
10218
10219 /* If this is an equality comparison of the address of a non-weak
10220 object against zero, then we know the result. */
10221 if (TREE_CODE (arg0) == ADDR_EXPR
10222 && VAR_OR_FUNCTION_DECL_P (TREE_OPERAND (arg0, 0))
10223 && ! DECL_WEAK (TREE_OPERAND (arg0, 0))
10224 && integer_zerop (arg1))
10225 return constant_boolean_node (code != EQ_EXPR, type);
10226
10227 /* If this is an equality comparison of the address of two non-weak,
10228 unaliased symbols neither of which are extern (since we do not
10229 have access to attributes for externs), then we know the result. */
10230 if (TREE_CODE (arg0) == ADDR_EXPR
10231 && VAR_OR_FUNCTION_DECL_P (TREE_OPERAND (arg0, 0))
10232 && ! DECL_WEAK (TREE_OPERAND (arg0, 0))
10233 && ! lookup_attribute ("alias",
10234 DECL_ATTRIBUTES (TREE_OPERAND (arg0, 0)))
10235 && ! DECL_EXTERNAL (TREE_OPERAND (arg0, 0))
10236 && TREE_CODE (arg1) == ADDR_EXPR
10237 && VAR_OR_FUNCTION_DECL_P (TREE_OPERAND (arg1, 0))
10238 && ! DECL_WEAK (TREE_OPERAND (arg1, 0))
10239 && ! lookup_attribute ("alias",
10240 DECL_ATTRIBUTES (TREE_OPERAND (arg1, 0)))
10241 && ! DECL_EXTERNAL (TREE_OPERAND (arg1, 0)))
10242 {
10243 /* We know that we're looking at the address of two
10244 non-weak, unaliased, static _DECL nodes.
10245
10246 It is both wasteful and incorrect to call operand_equal_p
10247 to compare the two ADDR_EXPR nodes. It is wasteful in that
10248 all we need to do is test pointer equality for the arguments
10249 to the two ADDR_EXPR nodes. It is incorrect to use
10250 operand_equal_p as that function is NOT equivalent to a
10251 C equality test. It can in fact return false for two
10252 objects which would test as equal using the C equality
10253 operator. */
10254 bool equal = TREE_OPERAND (arg0, 0) == TREE_OPERAND (arg1, 0);
10255 return constant_boolean_node (equal
10256 ? code == EQ_EXPR : code != EQ_EXPR,
10257 type);
10258 }
10259
10260 /* If this is an EQ or NE comparison of a constant with a PLUS_EXPR or
10261 a MINUS_EXPR of a constant, we can convert it into a comparison with
10262 a revised constant as long as no overflow occurs. */
10263 if (TREE_CODE (arg1) == INTEGER_CST
10264 && (TREE_CODE (arg0) == PLUS_EXPR
10265 || TREE_CODE (arg0) == MINUS_EXPR)
10266 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
10267 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
10268 ? MINUS_EXPR : PLUS_EXPR,
10269 arg1, TREE_OPERAND (arg0, 1), 0))
10270 && ! TREE_CONSTANT_OVERFLOW (tem))
10271 return fold_build2 (code, type, TREE_OPERAND (arg0, 0), tem);
10272
10273 /* Similarly for a NEGATE_EXPR. */
10274 if (TREE_CODE (arg0) == NEGATE_EXPR
10275 && TREE_CODE (arg1) == INTEGER_CST
10276 && 0 != (tem = negate_expr (arg1))
10277 && TREE_CODE (tem) == INTEGER_CST
10278 && ! TREE_CONSTANT_OVERFLOW (tem))
10279 return fold_build2 (code, type, TREE_OPERAND (arg0, 0), tem);
10280
10281 /* If we have X - Y == 0, we can convert that to X == Y and similarly
10282 for !=. Don't do this for ordered comparisons due to overflow. */
10283 if (TREE_CODE (arg0) == MINUS_EXPR
10284 && integer_zerop (arg1))
10285 return fold_build2 (code, type,
10286 TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1));
10287
10288 /* Convert ABS_EXPR<x> == 0 or ABS_EXPR<x> != 0 to x == 0 or x != 0. */
10289 if (TREE_CODE (arg0) == ABS_EXPR
10290 && (integer_zerop (arg1) || real_zerop (arg1)))
10291 return fold_build2 (code, type, TREE_OPERAND (arg0, 0), arg1);
10292
10293 /* If this is an EQ or NE comparison with zero and ARG0 is
10294 (1 << foo) & bar, convert it to (bar >> foo) & 1. Both require
10295 two operations, but the latter can be done in one less insn
10296 on machines that have only two-operand insns or on which a
10297 constant cannot be the first operand. */
10298 if (TREE_CODE (arg0) == BIT_AND_EXPR
10299 && integer_zerop (arg1))
10300 {
10301 tree arg00 = TREE_OPERAND (arg0, 0);
10302 tree arg01 = TREE_OPERAND (arg0, 1);
10303 if (TREE_CODE (arg00) == LSHIFT_EXPR
10304 && integer_onep (TREE_OPERAND (arg00, 0)))
10305 return
10306 fold_build2 (code, type,
10307 build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
10308 build2 (RSHIFT_EXPR, TREE_TYPE (arg00),
10309 arg01, TREE_OPERAND (arg00, 1)),
10310 fold_convert (TREE_TYPE (arg0),
10311 integer_one_node)),
10312 arg1);
10313 else if (TREE_CODE (TREE_OPERAND (arg0, 1)) == LSHIFT_EXPR
10314 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg0, 1), 0)))
10315 return
10316 fold_build2 (code, type,
10317 build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
10318 build2 (RSHIFT_EXPR, TREE_TYPE (arg01),
10319 arg00, TREE_OPERAND (arg01, 1)),
10320 fold_convert (TREE_TYPE (arg0),
10321 integer_one_node)),
10322 arg1);
10323 }
10324
10325 /* If this is an NE or EQ comparison of zero against the result of a
10326 signed MOD operation whose second operand is a power of 2, make
10327 the MOD operation unsigned since it is simpler and equivalent. */
10328 if (integer_zerop (arg1)
10329 && !TYPE_UNSIGNED (TREE_TYPE (arg0))
10330 && (TREE_CODE (arg0) == TRUNC_MOD_EXPR
10331 || TREE_CODE (arg0) == CEIL_MOD_EXPR
10332 || TREE_CODE (arg0) == FLOOR_MOD_EXPR
10333 || TREE_CODE (arg0) == ROUND_MOD_EXPR)
10334 && integer_pow2p (TREE_OPERAND (arg0, 1)))
10335 {
10336 tree newtype = lang_hooks.types.unsigned_type (TREE_TYPE (arg0));
10337 tree newmod = fold_build2 (TREE_CODE (arg0), newtype,
10338 fold_convert (newtype,
10339 TREE_OPERAND (arg0, 0)),
10340 fold_convert (newtype,
10341 TREE_OPERAND (arg0, 1)));
10342
10343 return fold_build2 (code, type, newmod,
10344 fold_convert (newtype, arg1));
10345 }
10346
10347 /* Fold ((X >> C1) & C2) == 0 and ((X >> C1) & C2) != 0 where
10348 C1 is a valid shift constant, and C2 is a power of two, i.e.
10349 a single bit. */
10350 if (TREE_CODE (arg0) == BIT_AND_EXPR
10351 && TREE_CODE (TREE_OPERAND (arg0, 0)) == RSHIFT_EXPR
10352 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1))
10353 == INTEGER_CST
10354 && integer_pow2p (TREE_OPERAND (arg0, 1))
10355 && integer_zerop (arg1))
10356 {
10357 tree itype = TREE_TYPE (arg0);
10358 unsigned HOST_WIDE_INT prec = TYPE_PRECISION (itype);
10359 tree arg001 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 1);
10360
10361 /* Check for a valid shift count. */
10362 if (TREE_INT_CST_HIGH (arg001) == 0
10363 && TREE_INT_CST_LOW (arg001) < prec)
10364 {
10365 tree arg01 = TREE_OPERAND (arg0, 1);
10366 tree arg000 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
10367 unsigned HOST_WIDE_INT log2 = tree_log2 (arg01);
10368 /* If (C2 << C1) doesn't overflow, then ((X >> C1) & C2) != 0
10369 can be rewritten as (X & (C2 << C1)) != 0. */
10370 if ((log2 + TREE_INT_CST_LOW (arg01)) < prec)
10371 {
10372 tem = fold_build2 (LSHIFT_EXPR, itype, arg01, arg001);
10373 tem = fold_build2 (BIT_AND_EXPR, itype, arg000, tem);
10374 return fold_build2 (code, type, tem, arg1);
10375 }
10376 /* Otherwise, for signed (arithmetic) shifts,
10377 ((X >> C1) & C2) != 0 is rewritten as X < 0, and
10378 ((X >> C1) & C2) == 0 is rewritten as X >= 0. */
10379 else if (!TYPE_UNSIGNED (itype))
10380 return fold_build2 (code == EQ_EXPR ? GE_EXPR : LT_EXPR, type,
10381 arg000, build_int_cst (itype, 0));
10382 /* Otherwise, of unsigned (logical) shifts,
10383 ((X >> C1) & C2) != 0 is rewritten as (X,false), and
10384 ((X >> C1) & C2) == 0 is rewritten as (X,true). */
10385 else
10386 return omit_one_operand (type,
10387 code == EQ_EXPR ? integer_one_node
10388 : integer_zero_node,
10389 arg000);
10390 }
10391 }
10392
10393 /* If this is an NE comparison of zero with an AND of one, remove the
10394 comparison since the AND will give the correct value. */
10395 if (code == NE_EXPR
10396 && integer_zerop (arg1)
10397 && TREE_CODE (arg0) == BIT_AND_EXPR
10398 && integer_onep (TREE_OPERAND (arg0, 1)))
10399 return fold_convert (type, arg0);
10400
10401 /* If we have (A & C) == C where C is a power of 2, convert this into
10402 (A & C) != 0. Similarly for NE_EXPR. */
10403 if (TREE_CODE (arg0) == BIT_AND_EXPR
10404 && integer_pow2p (TREE_OPERAND (arg0, 1))
10405 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10406 return fold_build2 (code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
10407 arg0, fold_convert (TREE_TYPE (arg0),
10408 integer_zero_node));
10409
10410 /* If we have (A & C) != 0 or (A & C) == 0 and C is the sign
10411 bit, then fold the expression into A < 0 or A >= 0. */
10412 tem = fold_single_bit_test_into_sign_test (code, arg0, arg1, type);
10413 if (tem)
10414 return tem;
10415
10416 /* If we have (A & C) == D where D & ~C != 0, convert this into 0.
10417 Similarly for NE_EXPR. */
10418 if (TREE_CODE (arg0) == BIT_AND_EXPR
10419 && TREE_CODE (arg1) == INTEGER_CST
10420 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
10421 {
10422 tree notc = fold_build1 (BIT_NOT_EXPR,
10423 TREE_TYPE (TREE_OPERAND (arg0, 1)),
10424 TREE_OPERAND (arg0, 1));
10425 tree dandnotc = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
10426 arg1, notc);
10427 tree rslt = code == EQ_EXPR ? integer_zero_node : integer_one_node;
10428 if (integer_nonzerop (dandnotc))
10429 return omit_one_operand (type, rslt, arg0);
10430 }
10431
10432 /* If we have (A | C) == D where C & ~D != 0, convert this into 0.
10433 Similarly for NE_EXPR. */
10434 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10435 && TREE_CODE (arg1) == INTEGER_CST
10436 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
10437 {
10438 tree notd = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (arg1), arg1);
10439 tree candnotd = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
10440 TREE_OPERAND (arg0, 1), notd);
10441 tree rslt = code == EQ_EXPR ? integer_zero_node : integer_one_node;
10442 if (integer_nonzerop (candnotd))
10443 return omit_one_operand (type, rslt, arg0);
10444 }
10445
10446 /* If this is a comparison of a field, we may be able to simplify it. */
10447 if (((TREE_CODE (arg0) == COMPONENT_REF
10448 && lang_hooks.can_use_bit_fields_p ())
10449 || TREE_CODE (arg0) == BIT_FIELD_REF)
10450 /* Handle the constant case even without -O
10451 to make sure the warnings are given. */
10452 && (optimize || TREE_CODE (arg1) == INTEGER_CST))
10453 {
10454 t1 = optimize_bit_field_compare (code, type, arg0, arg1);
10455 if (t1)
10456 return t1;
10457 }
10458
10459 /* Optimize comparisons of strlen vs zero to a compare of the
10460 first character of the string vs zero. To wit,
10461 strlen(ptr) == 0 => *ptr == 0
10462 strlen(ptr) != 0 => *ptr != 0
10463 Other cases should reduce to one of these two (or a constant)
10464 due to the return value of strlen being unsigned. */
10465 if (TREE_CODE (arg0) == CALL_EXPR
10466 && integer_zerop (arg1))
10467 {
10468 tree fndecl = get_callee_fndecl (arg0);
10469 tree arglist;
10470
10471 if (fndecl
10472 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
10473 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STRLEN
10474 && (arglist = TREE_OPERAND (arg0, 1))
10475 && TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) == POINTER_TYPE
10476 && ! TREE_CHAIN (arglist))
10477 {
10478 tree iref = build_fold_indirect_ref (TREE_VALUE (arglist));
10479 return fold_build2 (code, type, iref,
10480 build_int_cst (TREE_TYPE (iref), 0));
10481 }
10482 }
10483
10484 /* Fold (X >> C) != 0 into X < 0 if C is one less than the width
10485 of X. Similarly fold (X >> C) == 0 into X >= 0. */
10486 if (TREE_CODE (arg0) == RSHIFT_EXPR
10487 && integer_zerop (arg1)
10488 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
10489 {
10490 tree arg00 = TREE_OPERAND (arg0, 0);
10491 tree arg01 = TREE_OPERAND (arg0, 1);
10492 tree itype = TREE_TYPE (arg00);
10493 if (TREE_INT_CST_HIGH (arg01) == 0
10494 && TREE_INT_CST_LOW (arg01)
10495 == (unsigned HOST_WIDE_INT) (TYPE_PRECISION (itype) - 1))
10496 {
10497 if (TYPE_UNSIGNED (itype))
10498 {
10499 itype = lang_hooks.types.signed_type (itype);
10500 arg00 = fold_convert (itype, arg00);
10501 }
10502 return fold_build2 (code == EQ_EXPR ? GE_EXPR : LT_EXPR,
10503 type, arg00, build_int_cst (itype, 0));
10504 }
10505 }
10506
10507 /* (X ^ Y) == 0 becomes X == Y, and (X ^ Y) != 0 becomes X != Y. */
10508 if (integer_zerop (arg1)
10509 && TREE_CODE (arg0) == BIT_XOR_EXPR)
10510 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
10511 TREE_OPERAND (arg0, 1));
10512
10513 /* (X ^ Y) == Y becomes X == 0. We know that Y has no side-effects. */
10514 if (TREE_CODE (arg0) == BIT_XOR_EXPR
10515 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10516 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
10517 build_int_cst (TREE_TYPE (arg1), 0));
10518 /* Likewise (X ^ Y) == X becomes Y == 0. X has no side-effects. */
10519 if (TREE_CODE (arg0) == BIT_XOR_EXPR
10520 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
10521 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
10522 return fold_build2 (code, type, TREE_OPERAND (arg0, 1),
10523 build_int_cst (TREE_TYPE (arg1), 0));
10524
10525 /* (X ^ C1) op C2 can be rewritten as X op (C1 ^ C2). */
10526 if (TREE_CODE (arg0) == BIT_XOR_EXPR
10527 && TREE_CODE (arg1) == INTEGER_CST
10528 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
10529 return fold_build2 (code, type, TREE_OPERAND (arg0, 0),
10530 fold_build2 (BIT_XOR_EXPR, TREE_TYPE (arg1),
10531 TREE_OPERAND (arg0, 1), arg1));
10532
10533 /* Fold (~X & C) == 0 into (X & C) != 0 and (~X & C) != 0 into
10534 (X & C) == 0 when C is a single bit. */
10535 if (TREE_CODE (arg0) == BIT_AND_EXPR
10536 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_NOT_EXPR
10537 && integer_zerop (arg1)
10538 && integer_pow2p (TREE_OPERAND (arg0, 1)))
10539 {
10540 tem = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg0),
10541 TREE_OPERAND (TREE_OPERAND (arg0, 0), 0),
10542 TREE_OPERAND (arg0, 1));
10543 return fold_build2 (code == EQ_EXPR ? NE_EXPR : EQ_EXPR,
10544 type, tem, arg1);
10545 }
10546
10547 /* Fold ((X & C) ^ C) eq/ne 0 into (X & C) ne/eq 0, when the
10548 constant C is a power of two, i.e. a single bit. */
10549 if (TREE_CODE (arg0) == BIT_XOR_EXPR
10550 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
10551 && integer_zerop (arg1)
10552 && integer_pow2p (TREE_OPERAND (arg0, 1))
10553 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
10554 TREE_OPERAND (arg0, 1), OEP_ONLY_CONST))
10555 {
10556 tree arg00 = TREE_OPERAND (arg0, 0);
10557 return fold_build2 (code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
10558 arg00, build_int_cst (TREE_TYPE (arg00), 0));
10559 }
10560
10561 /* Likewise, fold ((X ^ C) & C) eq/ne 0 into (X & C) ne/eq 0,
10562 when is C is a power of two, i.e. a single bit. */
10563 if (TREE_CODE (arg0) == BIT_AND_EXPR
10564 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_XOR_EXPR
10565 && integer_zerop (arg1)
10566 && integer_pow2p (TREE_OPERAND (arg0, 1))
10567 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
10568 TREE_OPERAND (arg0, 1), OEP_ONLY_CONST))
10569 {
10570 tree arg000 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
10571 tem = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg000),
10572 arg000, TREE_OPERAND (arg0, 1));
10573 return fold_build2 (code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
10574 tem, build_int_cst (TREE_TYPE (tem), 0));
10575 }
10576
10577 if (integer_zerop (arg1)
10578 && tree_expr_nonzero_p (arg0))
10579 {
10580 tree res = constant_boolean_node (code==NE_EXPR, type);
10581 return omit_one_operand (type, res, arg0);
10582 }
10583 return NULL_TREE;
10584
10585 case LT_EXPR:
10586 case GT_EXPR:
10587 case LE_EXPR:
10588 case GE_EXPR:
10589 tem = fold_comparison (code, type, op0, op1);
10590 if (tem != NULL_TREE)
10591 return tem;
10592
10593 /* Transform comparisons of the form X +- C CMP X. */
10594 if ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
10595 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
10596 && ((TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
10597 && !HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0))))
10598 || (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
10599 && !TYPE_UNSIGNED (TREE_TYPE (arg1))
10600 && !(flag_wrapv || flag_trapv))))
10601 {
10602 tree arg01 = TREE_OPERAND (arg0, 1);
10603 enum tree_code code0 = TREE_CODE (arg0);
10604 int is_positive;
10605
10606 if (TREE_CODE (arg01) == REAL_CST)
10607 is_positive = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg01)) ? -1 : 1;
10608 else
10609 is_positive = tree_int_cst_sgn (arg01);
10610
10611 /* (X - c) > X becomes false. */
10612 if (code == GT_EXPR
10613 && ((code0 == MINUS_EXPR && is_positive >= 0)
10614 || (code0 == PLUS_EXPR && is_positive <= 0)))
10615 return constant_boolean_node (0, type);
10616
10617 /* Likewise (X + c) < X becomes false. */
10618 if (code == LT_EXPR
10619 && ((code0 == PLUS_EXPR && is_positive >= 0)
10620 || (code0 == MINUS_EXPR && is_positive <= 0)))
10621 return constant_boolean_node (0, type);
10622
10623 /* Convert (X - c) <= X to true. */
10624 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1)))
10625 && code == LE_EXPR
10626 && ((code0 == MINUS_EXPR && is_positive >= 0)
10627 || (code0 == PLUS_EXPR && is_positive <= 0)))
10628 return constant_boolean_node (1, type);
10629
10630 /* Convert (X + c) >= X to true. */
10631 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1)))
10632 && code == GE_EXPR
10633 && ((code0 == PLUS_EXPR && is_positive >= 0)
10634 || (code0 == MINUS_EXPR && is_positive <= 0)))
10635 return constant_boolean_node (1, type);
10636
10637 if (TREE_CODE (arg01) == INTEGER_CST)
10638 {
10639 /* Convert X + c > X and X - c < X to true for integers. */
10640 if (code == GT_EXPR
10641 && ((code0 == PLUS_EXPR && is_positive > 0)
10642 || (code0 == MINUS_EXPR && is_positive < 0)))
10643 return constant_boolean_node (1, type);
10644
10645 if (code == LT_EXPR
10646 && ((code0 == MINUS_EXPR && is_positive > 0)
10647 || (code0 == PLUS_EXPR && is_positive < 0)))
10648 return constant_boolean_node (1, type);
10649
10650 /* Convert X + c <= X and X - c >= X to false for integers. */
10651 if (code == LE_EXPR
10652 && ((code0 == PLUS_EXPR && is_positive > 0)
10653 || (code0 == MINUS_EXPR && is_positive < 0)))
10654 return constant_boolean_node (0, type);
10655
10656 if (code == GE_EXPR
10657 && ((code0 == MINUS_EXPR && is_positive > 0)
10658 || (code0 == PLUS_EXPR && is_positive < 0)))
10659 return constant_boolean_node (0, type);
10660 }
10661 }
10662
10663 /* Change X >= C to X > (C - 1) and X < C to X <= (C - 1) if C > 0.
10664 This transformation affects the cases which are handled in later
10665 optimizations involving comparisons with non-negative constants. */
10666 if (TREE_CODE (arg1) == INTEGER_CST
10667 && TREE_CODE (arg0) != INTEGER_CST
10668 && tree_int_cst_sgn (arg1) > 0)
10669 {
10670 if (code == GE_EXPR)
10671 {
10672 arg1 = const_binop (MINUS_EXPR, arg1,
10673 build_int_cst (TREE_TYPE (arg1), 1), 0);
10674 return fold_build2 (GT_EXPR, type, arg0,
10675 fold_convert (TREE_TYPE (arg0), arg1));
10676 }
10677 if (code == LT_EXPR)
10678 {
10679 arg1 = const_binop (MINUS_EXPR, arg1,
10680 build_int_cst (TREE_TYPE (arg1), 1), 0);
10681 return fold_build2 (LE_EXPR, type, arg0,
10682 fold_convert (TREE_TYPE (arg0), arg1));
10683 }
10684 }
10685
10686 /* Comparisons with the highest or lowest possible integer of
10687 the specified size will have known values. */
10688 {
10689 int width = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg1)));
10690
10691 if (TREE_CODE (arg1) == INTEGER_CST
10692 && ! TREE_CONSTANT_OVERFLOW (arg1)
10693 && width <= 2 * HOST_BITS_PER_WIDE_INT
10694 && (INTEGRAL_TYPE_P (TREE_TYPE (arg1))
10695 || POINTER_TYPE_P (TREE_TYPE (arg1))))
10696 {
10697 HOST_WIDE_INT signed_max_hi;
10698 unsigned HOST_WIDE_INT signed_max_lo;
10699 unsigned HOST_WIDE_INT max_hi, max_lo, min_hi, min_lo;
10700
10701 if (width <= HOST_BITS_PER_WIDE_INT)
10702 {
10703 signed_max_lo = ((unsigned HOST_WIDE_INT) 1 << (width - 1))
10704 - 1;
10705 signed_max_hi = 0;
10706 max_hi = 0;
10707
10708 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
10709 {
10710 max_lo = ((unsigned HOST_WIDE_INT) 2 << (width - 1)) - 1;
10711 min_lo = 0;
10712 min_hi = 0;
10713 }
10714 else
10715 {
10716 max_lo = signed_max_lo;
10717 min_lo = ((unsigned HOST_WIDE_INT) -1 << (width - 1));
10718 min_hi = -1;
10719 }
10720 }
10721 else
10722 {
10723 width -= HOST_BITS_PER_WIDE_INT;
10724 signed_max_lo = -1;
10725 signed_max_hi = ((unsigned HOST_WIDE_INT) 1 << (width - 1))
10726 - 1;
10727 max_lo = -1;
10728 min_lo = 0;
10729
10730 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
10731 {
10732 max_hi = ((unsigned HOST_WIDE_INT) 2 << (width - 1)) - 1;
10733 min_hi = 0;
10734 }
10735 else
10736 {
10737 max_hi = signed_max_hi;
10738 min_hi = ((unsigned HOST_WIDE_INT) -1 << (width - 1));
10739 }
10740 }
10741
10742 if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1) == max_hi
10743 && TREE_INT_CST_LOW (arg1) == max_lo)
10744 switch (code)
10745 {
10746 case GT_EXPR:
10747 return omit_one_operand (type, integer_zero_node, arg0);
10748
10749 case GE_EXPR:
10750 return fold_build2 (EQ_EXPR, type, arg0, arg1);
10751
10752 case LE_EXPR:
10753 return omit_one_operand (type, integer_one_node, arg0);
10754
10755 case LT_EXPR:
10756 return fold_build2 (NE_EXPR, type, arg0, arg1);
10757
10758 /* The GE_EXPR and LT_EXPR cases above are not normally
10759 reached because of previous transformations. */
10760
10761 default:
10762 break;
10763 }
10764 else if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1)
10765 == max_hi
10766 && TREE_INT_CST_LOW (arg1) == max_lo - 1)
10767 switch (code)
10768 {
10769 case GT_EXPR:
10770 arg1 = const_binop (PLUS_EXPR, arg1, integer_one_node, 0);
10771 return fold_build2 (EQ_EXPR, type, arg0, arg1);
10772 case LE_EXPR:
10773 arg1 = const_binop (PLUS_EXPR, arg1, integer_one_node, 0);
10774 return fold_build2 (NE_EXPR, type, arg0, arg1);
10775 default:
10776 break;
10777 }
10778 else if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1)
10779 == min_hi
10780 && TREE_INT_CST_LOW (arg1) == min_lo)
10781 switch (code)
10782 {
10783 case LT_EXPR:
10784 return omit_one_operand (type, integer_zero_node, arg0);
10785
10786 case LE_EXPR:
10787 return fold_build2 (EQ_EXPR, type, arg0, arg1);
10788
10789 case GE_EXPR:
10790 return omit_one_operand (type, integer_one_node, arg0);
10791
10792 case GT_EXPR:
10793 return fold_build2 (NE_EXPR, type, op0, op1);
10794
10795 default:
10796 break;
10797 }
10798 else if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1)
10799 == min_hi
10800 && TREE_INT_CST_LOW (arg1) == min_lo + 1)
10801 switch (code)
10802 {
10803 case GE_EXPR:
10804 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
10805 return fold_build2 (NE_EXPR, type, arg0, arg1);
10806 case LT_EXPR:
10807 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node, 0);
10808 return fold_build2 (EQ_EXPR, type, arg0, arg1);
10809 default:
10810 break;
10811 }
10812
10813 else if (!in_gimple_form
10814 && TREE_INT_CST_HIGH (arg1) == signed_max_hi
10815 && TREE_INT_CST_LOW (arg1) == signed_max_lo
10816 && TYPE_UNSIGNED (TREE_TYPE (arg1))
10817 /* signed_type does not work on pointer types. */
10818 && INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
10819 {
10820 /* The following case also applies to X < signed_max+1
10821 and X >= signed_max+1 because previous transformations. */
10822 if (code == LE_EXPR || code == GT_EXPR)
10823 {
10824 tree st0, st1;
10825 st0 = lang_hooks.types.signed_type (TREE_TYPE (arg0));
10826 st1 = lang_hooks.types.signed_type (TREE_TYPE (arg1));
10827 return fold_build2 (code == LE_EXPR ? GE_EXPR: LT_EXPR,
10828 type, fold_convert (st0, arg0),
10829 build_int_cst (st1, 0));
10830 }
10831 }
10832 }
10833 }
10834
10835 /* If we are comparing an ABS_EXPR with a constant, we can
10836 convert all the cases into explicit comparisons, but they may
10837 well not be faster than doing the ABS and one comparison.
10838 But ABS (X) <= C is a range comparison, which becomes a subtraction
10839 and a comparison, and is probably faster. */
10840 if (code == LE_EXPR
10841 && TREE_CODE (arg1) == INTEGER_CST
10842 && TREE_CODE (arg0) == ABS_EXPR
10843 && ! TREE_SIDE_EFFECTS (arg0)
10844 && (0 != (tem = negate_expr (arg1)))
10845 && TREE_CODE (tem) == INTEGER_CST
10846 && ! TREE_CONSTANT_OVERFLOW (tem))
10847 return fold_build2 (TRUTH_ANDIF_EXPR, type,
10848 build2 (GE_EXPR, type,
10849 TREE_OPERAND (arg0, 0), tem),
10850 build2 (LE_EXPR, type,
10851 TREE_OPERAND (arg0, 0), arg1));
10852
10853 /* Convert ABS_EXPR<x> >= 0 to true. */
10854 if (code == GE_EXPR
10855 && tree_expr_nonnegative_p (arg0)
10856 && (integer_zerop (arg1)
10857 || (! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
10858 && real_zerop (arg1))))
10859 return omit_one_operand (type, integer_one_node, arg0);
10860
10861 /* Convert ABS_EXPR<x> < 0 to false. */
10862 if (code == LT_EXPR
10863 && tree_expr_nonnegative_p (arg0)
10864 && (integer_zerop (arg1) || real_zerop (arg1)))
10865 return omit_one_operand (type, integer_zero_node, arg0);
10866
10867 /* If X is unsigned, convert X < (1 << Y) into X >> Y == 0
10868 and similarly for >= into !=. */
10869 if ((code == LT_EXPR || code == GE_EXPR)
10870 && TYPE_UNSIGNED (TREE_TYPE (arg0))
10871 && TREE_CODE (arg1) == LSHIFT_EXPR
10872 && integer_onep (TREE_OPERAND (arg1, 0)))
10873 return build2 (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
10874 build2 (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
10875 TREE_OPERAND (arg1, 1)),
10876 build_int_cst (TREE_TYPE (arg0), 0));
10877
10878 if ((code == LT_EXPR || code == GE_EXPR)
10879 && TYPE_UNSIGNED (TREE_TYPE (arg0))
10880 && (TREE_CODE (arg1) == NOP_EXPR
10881 || TREE_CODE (arg1) == CONVERT_EXPR)
10882 && TREE_CODE (TREE_OPERAND (arg1, 0)) == LSHIFT_EXPR
10883 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg1, 0), 0)))
10884 return
10885 build2 (code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
10886 fold_convert (TREE_TYPE (arg0),
10887 build2 (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
10888 TREE_OPERAND (TREE_OPERAND (arg1, 0),
10889 1))),
10890 build_int_cst (TREE_TYPE (arg0), 0));
10891
10892 return NULL_TREE;
10893
10894 case UNORDERED_EXPR:
10895 case ORDERED_EXPR:
10896 case UNLT_EXPR:
10897 case UNLE_EXPR:
10898 case UNGT_EXPR:
10899 case UNGE_EXPR:
10900 case UNEQ_EXPR:
10901 case LTGT_EXPR:
10902 if (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
10903 {
10904 t1 = fold_relational_const (code, type, arg0, arg1);
10905 if (t1 != NULL_TREE)
10906 return t1;
10907 }
10908
10909 /* If the first operand is NaN, the result is constant. */
10910 if (TREE_CODE (arg0) == REAL_CST
10911 && REAL_VALUE_ISNAN (TREE_REAL_CST (arg0))
10912 && (code != LTGT_EXPR || ! flag_trapping_math))
10913 {
10914 t1 = (code == ORDERED_EXPR || code == LTGT_EXPR)
10915 ? integer_zero_node
10916 : integer_one_node;
10917 return omit_one_operand (type, t1, arg1);
10918 }
10919
10920 /* If the second operand is NaN, the result is constant. */
10921 if (TREE_CODE (arg1) == REAL_CST
10922 && REAL_VALUE_ISNAN (TREE_REAL_CST (arg1))
10923 && (code != LTGT_EXPR || ! flag_trapping_math))
10924 {
10925 t1 = (code == ORDERED_EXPR || code == LTGT_EXPR)
10926 ? integer_zero_node
10927 : integer_one_node;
10928 return omit_one_operand (type, t1, arg0);
10929 }
10930
10931 /* Simplify unordered comparison of something with itself. */
10932 if ((code == UNLE_EXPR || code == UNGE_EXPR || code == UNEQ_EXPR)
10933 && operand_equal_p (arg0, arg1, 0))
10934 return constant_boolean_node (1, type);
10935
10936 if (code == LTGT_EXPR
10937 && !flag_trapping_math
10938 && operand_equal_p (arg0, arg1, 0))
10939 return constant_boolean_node (0, type);
10940
10941 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
10942 {
10943 tree targ0 = strip_float_extensions (arg0);
10944 tree targ1 = strip_float_extensions (arg1);
10945 tree newtype = TREE_TYPE (targ0);
10946
10947 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
10948 newtype = TREE_TYPE (targ1);
10949
10950 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
10951 return fold_build2 (code, type, fold_convert (newtype, targ0),
10952 fold_convert (newtype, targ1));
10953 }
10954
10955 return NULL_TREE;
10956
10957 case COMPOUND_EXPR:
10958 /* When pedantic, a compound expression can be neither an lvalue
10959 nor an integer constant expression. */
10960 if (TREE_SIDE_EFFECTS (arg0) || TREE_CONSTANT (arg1))
10961 return NULL_TREE;
10962 /* Don't let (0, 0) be null pointer constant. */
10963 tem = integer_zerop (arg1) ? build1 (NOP_EXPR, type, arg1)
10964 : fold_convert (type, arg1);
10965 return pedantic_non_lvalue (tem);
10966
10967 case COMPLEX_EXPR:
10968 if ((TREE_CODE (arg0) == REAL_CST
10969 && TREE_CODE (arg1) == REAL_CST)
10970 || (TREE_CODE (arg0) == INTEGER_CST
10971 && TREE_CODE (arg1) == INTEGER_CST))
10972 return build_complex (type, arg0, arg1);
10973 return NULL_TREE;
10974
10975 case ASSERT_EXPR:
10976 /* An ASSERT_EXPR should never be passed to fold_binary. */
10977 gcc_unreachable ();
10978
10979 default:
10980 return NULL_TREE;
10981 } /* switch (code) */
10982 }
10983
10984 /* Callback for walk_tree, looking for LABEL_EXPR.
10985 Returns tree TP if it is LABEL_EXPR. Otherwise it returns NULL_TREE.
10986 Do not check the sub-tree of GOTO_EXPR. */
10987
10988 static tree
10989 contains_label_1 (tree *tp,
10990 int *walk_subtrees,
10991 void *data ATTRIBUTE_UNUSED)
10992 {
10993 switch (TREE_CODE (*tp))
10994 {
10995 case LABEL_EXPR:
10996 return *tp;
10997 case GOTO_EXPR:
10998 *walk_subtrees = 0;
10999 /* no break */
11000 default:
11001 return NULL_TREE;
11002 }
11003 }
11004
11005 /* Checks whether the sub-tree ST contains a label LABEL_EXPR which is
11006 accessible from outside the sub-tree. Returns NULL_TREE if no
11007 addressable label is found. */
11008
11009 static bool
11010 contains_label_p (tree st)
11011 {
11012 return (walk_tree (&st, contains_label_1 , NULL, NULL) != NULL_TREE);
11013 }
11014
11015 /* Fold a ternary expression of code CODE and type TYPE with operands
11016 OP0, OP1, and OP2. Return the folded expression if folding is
11017 successful. Otherwise, return NULL_TREE. */
11018
11019 tree
11020 fold_ternary (enum tree_code code, tree type, tree op0, tree op1, tree op2)
11021 {
11022 tree tem;
11023 tree arg0 = NULL_TREE, arg1 = NULL_TREE;
11024 enum tree_code_class kind = TREE_CODE_CLASS (code);
11025
11026 gcc_assert (IS_EXPR_CODE_CLASS (kind)
11027 && TREE_CODE_LENGTH (code) == 3);
11028
11029 /* Strip any conversions that don't change the mode. This is safe
11030 for every expression, except for a comparison expression because
11031 its signedness is derived from its operands. So, in the latter
11032 case, only strip conversions that don't change the signedness.
11033
11034 Note that this is done as an internal manipulation within the
11035 constant folder, in order to find the simplest representation of
11036 the arguments so that their form can be studied. In any cases,
11037 the appropriate type conversions should be put back in the tree
11038 that will get out of the constant folder. */
11039 if (op0)
11040 {
11041 arg0 = op0;
11042 STRIP_NOPS (arg0);
11043 }
11044
11045 if (op1)
11046 {
11047 arg1 = op1;
11048 STRIP_NOPS (arg1);
11049 }
11050
11051 switch (code)
11052 {
11053 case COMPONENT_REF:
11054 if (TREE_CODE (arg0) == CONSTRUCTOR
11055 && ! type_contains_placeholder_p (TREE_TYPE (arg0)))
11056 {
11057 unsigned HOST_WIDE_INT idx;
11058 tree field, value;
11059 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg0), idx, field, value)
11060 if (field == arg1)
11061 return value;
11062 }
11063 return NULL_TREE;
11064
11065 case COND_EXPR:
11066 /* Pedantic ANSI C says that a conditional expression is never an lvalue,
11067 so all simple results must be passed through pedantic_non_lvalue. */
11068 if (TREE_CODE (arg0) == INTEGER_CST)
11069 {
11070 tree unused_op = integer_zerop (arg0) ? op1 : op2;
11071 tem = integer_zerop (arg0) ? op2 : op1;
11072 /* Only optimize constant conditions when the selected branch
11073 has the same type as the COND_EXPR. This avoids optimizing
11074 away "c ? x : throw", where the throw has a void type.
11075 Avoid throwing away that operand which contains label. */
11076 if ((!TREE_SIDE_EFFECTS (unused_op)
11077 || !contains_label_p (unused_op))
11078 && (! VOID_TYPE_P (TREE_TYPE (tem))
11079 || VOID_TYPE_P (type)))
11080 return pedantic_non_lvalue (tem);
11081 return NULL_TREE;
11082 }
11083 if (operand_equal_p (arg1, op2, 0))
11084 return pedantic_omit_one_operand (type, arg1, arg0);
11085
11086 /* If we have A op B ? A : C, we may be able to convert this to a
11087 simpler expression, depending on the operation and the values
11088 of B and C. Signed zeros prevent all of these transformations,
11089 for reasons given above each one.
11090
11091 Also try swapping the arguments and inverting the conditional. */
11092 if (COMPARISON_CLASS_P (arg0)
11093 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
11094 arg1, TREE_OPERAND (arg0, 1))
11095 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg1))))
11096 {
11097 tem = fold_cond_expr_with_comparison (type, arg0, op1, op2);
11098 if (tem)
11099 return tem;
11100 }
11101
11102 if (COMPARISON_CLASS_P (arg0)
11103 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
11104 op2,
11105 TREE_OPERAND (arg0, 1))
11106 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (op2))))
11107 {
11108 tem = invert_truthvalue (arg0);
11109 if (COMPARISON_CLASS_P (tem))
11110 {
11111 tem = fold_cond_expr_with_comparison (type, tem, op2, op1);
11112 if (tem)
11113 return tem;
11114 }
11115 }
11116
11117 /* If the second operand is simpler than the third, swap them
11118 since that produces better jump optimization results. */
11119 if (truth_value_p (TREE_CODE (arg0))
11120 && tree_swap_operands_p (op1, op2, false))
11121 {
11122 /* See if this can be inverted. If it can't, possibly because
11123 it was a floating-point inequality comparison, don't do
11124 anything. */
11125 tem = invert_truthvalue (arg0);
11126
11127 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
11128 return fold_build3 (code, type, tem, op2, op1);
11129 }
11130
11131 /* Convert A ? 1 : 0 to simply A. */
11132 if (integer_onep (op1)
11133 && integer_zerop (op2)
11134 /* If we try to convert OP0 to our type, the
11135 call to fold will try to move the conversion inside
11136 a COND, which will recurse. In that case, the COND_EXPR
11137 is probably the best choice, so leave it alone. */
11138 && type == TREE_TYPE (arg0))
11139 return pedantic_non_lvalue (arg0);
11140
11141 /* Convert A ? 0 : 1 to !A. This prefers the use of NOT_EXPR
11142 over COND_EXPR in cases such as floating point comparisons. */
11143 if (integer_zerop (op1)
11144 && integer_onep (op2)
11145 && truth_value_p (TREE_CODE (arg0)))
11146 return pedantic_non_lvalue (fold_convert (type,
11147 invert_truthvalue (arg0)));
11148
11149 /* A < 0 ? <sign bit of A> : 0 is simply (A & <sign bit of A>). */
11150 if (TREE_CODE (arg0) == LT_EXPR
11151 && integer_zerop (TREE_OPERAND (arg0, 1))
11152 && integer_zerop (op2)
11153 && (tem = sign_bit_p (TREE_OPERAND (arg0, 0), arg1)))
11154 return fold_convert (type,
11155 fold_build2 (BIT_AND_EXPR,
11156 TREE_TYPE (tem), tem,
11157 fold_convert (TREE_TYPE (tem), arg1)));
11158
11159 /* (A >> N) & 1 ? (1 << N) : 0 is simply A & (1 << N). A & 1 was
11160 already handled above. */
11161 if (TREE_CODE (arg0) == BIT_AND_EXPR
11162 && integer_onep (TREE_OPERAND (arg0, 1))
11163 && integer_zerop (op2)
11164 && integer_pow2p (arg1))
11165 {
11166 tree tem = TREE_OPERAND (arg0, 0);
11167 STRIP_NOPS (tem);
11168 if (TREE_CODE (tem) == RSHIFT_EXPR
11169 && TREE_CODE (TREE_OPERAND (tem, 1)) == INTEGER_CST
11170 && (unsigned HOST_WIDE_INT) tree_log2 (arg1) ==
11171 TREE_INT_CST_LOW (TREE_OPERAND (tem, 1)))
11172 return fold_build2 (BIT_AND_EXPR, type,
11173 TREE_OPERAND (tem, 0), arg1);
11174 }
11175
11176 /* A & N ? N : 0 is simply A & N if N is a power of two. This
11177 is probably obsolete because the first operand should be a
11178 truth value (that's why we have the two cases above), but let's
11179 leave it in until we can confirm this for all front-ends. */
11180 if (integer_zerop (op2)
11181 && TREE_CODE (arg0) == NE_EXPR
11182 && integer_zerop (TREE_OPERAND (arg0, 1))
11183 && integer_pow2p (arg1)
11184 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
11185 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
11186 arg1, OEP_ONLY_CONST))
11187 return pedantic_non_lvalue (fold_convert (type,
11188 TREE_OPERAND (arg0, 0)));
11189
11190 /* Convert A ? B : 0 into A && B if A and B are truth values. */
11191 if (integer_zerop (op2)
11192 && truth_value_p (TREE_CODE (arg0))
11193 && truth_value_p (TREE_CODE (arg1)))
11194 return fold_build2 (TRUTH_ANDIF_EXPR, type,
11195 fold_convert (type, arg0),
11196 arg1);
11197
11198 /* Convert A ? B : 1 into !A || B if A and B are truth values. */
11199 if (integer_onep (op2)
11200 && truth_value_p (TREE_CODE (arg0))
11201 && truth_value_p (TREE_CODE (arg1)))
11202 {
11203 /* Only perform transformation if ARG0 is easily inverted. */
11204 tem = invert_truthvalue (arg0);
11205 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
11206 return fold_build2 (TRUTH_ORIF_EXPR, type,
11207 fold_convert (type, tem),
11208 arg1);
11209 }
11210
11211 /* Convert A ? 0 : B into !A && B if A and B are truth values. */
11212 if (integer_zerop (arg1)
11213 && truth_value_p (TREE_CODE (arg0))
11214 && truth_value_p (TREE_CODE (op2)))
11215 {
11216 /* Only perform transformation if ARG0 is easily inverted. */
11217 tem = invert_truthvalue (arg0);
11218 if (TREE_CODE (tem) != TRUTH_NOT_EXPR)
11219 return fold_build2 (TRUTH_ANDIF_EXPR, type,
11220 fold_convert (type, tem),
11221 op2);
11222 }
11223
11224 /* Convert A ? 1 : B into A || B if A and B are truth values. */
11225 if (integer_onep (arg1)
11226 && truth_value_p (TREE_CODE (arg0))
11227 && truth_value_p (TREE_CODE (op2)))
11228 return fold_build2 (TRUTH_ORIF_EXPR, type,
11229 fold_convert (type, arg0),
11230 op2);
11231
11232 return NULL_TREE;
11233
11234 case CALL_EXPR:
11235 /* Check for a built-in function. */
11236 if (TREE_CODE (op0) == ADDR_EXPR
11237 && TREE_CODE (TREE_OPERAND (op0, 0)) == FUNCTION_DECL
11238 && DECL_BUILT_IN (TREE_OPERAND (op0, 0)))
11239 return fold_builtin (TREE_OPERAND (op0, 0), op1, false);
11240 return NULL_TREE;
11241
11242 case BIT_FIELD_REF:
11243 if (TREE_CODE (arg0) == VECTOR_CST
11244 && type == TREE_TYPE (TREE_TYPE (arg0))
11245 && host_integerp (arg1, 1)
11246 && host_integerp (op2, 1))
11247 {
11248 unsigned HOST_WIDE_INT width = tree_low_cst (arg1, 1);
11249 unsigned HOST_WIDE_INT idx = tree_low_cst (op2, 1);
11250
11251 if (width != 0
11252 && simple_cst_equal (arg1, TYPE_SIZE (type)) == 1
11253 && (idx % width) == 0
11254 && (idx = idx / width)
11255 < TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg0)))
11256 {
11257 tree elements = TREE_VECTOR_CST_ELTS (arg0);
11258 while (idx-- > 0 && elements)
11259 elements = TREE_CHAIN (elements);
11260 if (elements)
11261 return TREE_VALUE (elements);
11262 else
11263 return fold_convert (type, integer_zero_node);
11264 }
11265 }
11266 return NULL_TREE;
11267
11268 default:
11269 return NULL_TREE;
11270 } /* switch (code) */
11271 }
11272
11273 /* Perform constant folding and related simplification of EXPR.
11274 The related simplifications include x*1 => x, x*0 => 0, etc.,
11275 and application of the associative law.
11276 NOP_EXPR conversions may be removed freely (as long as we
11277 are careful not to change the type of the overall expression).
11278 We cannot simplify through a CONVERT_EXPR, FIX_EXPR or FLOAT_EXPR,
11279 but we can constant-fold them if they have constant operands. */
11280
11281 #ifdef ENABLE_FOLD_CHECKING
11282 # define fold(x) fold_1 (x)
11283 static tree fold_1 (tree);
11284 static
11285 #endif
11286 tree
11287 fold (tree expr)
11288 {
11289 const tree t = expr;
11290 enum tree_code code = TREE_CODE (t);
11291 enum tree_code_class kind = TREE_CODE_CLASS (code);
11292 tree tem;
11293
11294 /* Return right away if a constant. */
11295 if (kind == tcc_constant)
11296 return t;
11297
11298 if (IS_EXPR_CODE_CLASS (kind))
11299 {
11300 tree type = TREE_TYPE (t);
11301 tree op0, op1, op2;
11302
11303 switch (TREE_CODE_LENGTH (code))
11304 {
11305 case 1:
11306 op0 = TREE_OPERAND (t, 0);
11307 tem = fold_unary (code, type, op0);
11308 return tem ? tem : expr;
11309 case 2:
11310 op0 = TREE_OPERAND (t, 0);
11311 op1 = TREE_OPERAND (t, 1);
11312 tem = fold_binary (code, type, op0, op1);
11313 return tem ? tem : expr;
11314 case 3:
11315 op0 = TREE_OPERAND (t, 0);
11316 op1 = TREE_OPERAND (t, 1);
11317 op2 = TREE_OPERAND (t, 2);
11318 tem = fold_ternary (code, type, op0, op1, op2);
11319 return tem ? tem : expr;
11320 default:
11321 break;
11322 }
11323 }
11324
11325 switch (code)
11326 {
11327 case CONST_DECL:
11328 return fold (DECL_INITIAL (t));
11329
11330 default:
11331 return t;
11332 } /* switch (code) */
11333 }
11334
11335 #ifdef ENABLE_FOLD_CHECKING
11336 #undef fold
11337
11338 static void fold_checksum_tree (tree, struct md5_ctx *, htab_t);
11339 static void fold_check_failed (tree, tree);
11340 void print_fold_checksum (tree);
11341
11342 /* When --enable-checking=fold, compute a digest of expr before
11343 and after actual fold call to see if fold did not accidentally
11344 change original expr. */
11345
11346 tree
11347 fold (tree expr)
11348 {
11349 tree ret;
11350 struct md5_ctx ctx;
11351 unsigned char checksum_before[16], checksum_after[16];
11352 htab_t ht;
11353
11354 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
11355 md5_init_ctx (&ctx);
11356 fold_checksum_tree (expr, &ctx, ht);
11357 md5_finish_ctx (&ctx, checksum_before);
11358 htab_empty (ht);
11359
11360 ret = fold_1 (expr);
11361
11362 md5_init_ctx (&ctx);
11363 fold_checksum_tree (expr, &ctx, ht);
11364 md5_finish_ctx (&ctx, checksum_after);
11365 htab_delete (ht);
11366
11367 if (memcmp (checksum_before, checksum_after, 16))
11368 fold_check_failed (expr, ret);
11369
11370 return ret;
11371 }
11372
11373 void
11374 print_fold_checksum (tree expr)
11375 {
11376 struct md5_ctx ctx;
11377 unsigned char checksum[16], cnt;
11378 htab_t ht;
11379
11380 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
11381 md5_init_ctx (&ctx);
11382 fold_checksum_tree (expr, &ctx, ht);
11383 md5_finish_ctx (&ctx, checksum);
11384 htab_delete (ht);
11385 for (cnt = 0; cnt < 16; ++cnt)
11386 fprintf (stderr, "%02x", checksum[cnt]);
11387 putc ('\n', stderr);
11388 }
11389
11390 static void
11391 fold_check_failed (tree expr ATTRIBUTE_UNUSED, tree ret ATTRIBUTE_UNUSED)
11392 {
11393 internal_error ("fold check: original tree changed by fold");
11394 }
11395
11396 static void
11397 fold_checksum_tree (tree expr, struct md5_ctx *ctx, htab_t ht)
11398 {
11399 void **slot;
11400 enum tree_code code;
11401 struct tree_function_decl buf;
11402 int i, len;
11403
11404 recursive_label:
11405
11406 gcc_assert ((sizeof (struct tree_exp) + 5 * sizeof (tree)
11407 <= sizeof (struct tree_function_decl))
11408 && sizeof (struct tree_type) <= sizeof (struct tree_function_decl));
11409 if (expr == NULL)
11410 return;
11411 slot = htab_find_slot (ht, expr, INSERT);
11412 if (*slot != NULL)
11413 return;
11414 *slot = expr;
11415 code = TREE_CODE (expr);
11416 if (TREE_CODE_CLASS (code) == tcc_declaration
11417 && DECL_ASSEMBLER_NAME_SET_P (expr))
11418 {
11419 /* Allow DECL_ASSEMBLER_NAME to be modified. */
11420 memcpy ((char *) &buf, expr, tree_size (expr));
11421 expr = (tree) &buf;
11422 SET_DECL_ASSEMBLER_NAME (expr, NULL);
11423 }
11424 else if (TREE_CODE_CLASS (code) == tcc_type
11425 && (TYPE_POINTER_TO (expr) || TYPE_REFERENCE_TO (expr)
11426 || TYPE_CACHED_VALUES_P (expr)
11427 || TYPE_CONTAINS_PLACEHOLDER_INTERNAL (expr)))
11428 {
11429 /* Allow these fields to be modified. */
11430 memcpy ((char *) &buf, expr, tree_size (expr));
11431 expr = (tree) &buf;
11432 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (expr) = 0;
11433 TYPE_POINTER_TO (expr) = NULL;
11434 TYPE_REFERENCE_TO (expr) = NULL;
11435 if (TYPE_CACHED_VALUES_P (expr))
11436 {
11437 TYPE_CACHED_VALUES_P (expr) = 0;
11438 TYPE_CACHED_VALUES (expr) = NULL;
11439 }
11440 }
11441 md5_process_bytes (expr, tree_size (expr), ctx);
11442 fold_checksum_tree (TREE_TYPE (expr), ctx, ht);
11443 if (TREE_CODE_CLASS (code) != tcc_type
11444 && TREE_CODE_CLASS (code) != tcc_declaration
11445 && code != TREE_LIST)
11446 fold_checksum_tree (TREE_CHAIN (expr), ctx, ht);
11447 switch (TREE_CODE_CLASS (code))
11448 {
11449 case tcc_constant:
11450 switch (code)
11451 {
11452 case STRING_CST:
11453 md5_process_bytes (TREE_STRING_POINTER (expr),
11454 TREE_STRING_LENGTH (expr), ctx);
11455 break;
11456 case COMPLEX_CST:
11457 fold_checksum_tree (TREE_REALPART (expr), ctx, ht);
11458 fold_checksum_tree (TREE_IMAGPART (expr), ctx, ht);
11459 break;
11460 case VECTOR_CST:
11461 fold_checksum_tree (TREE_VECTOR_CST_ELTS (expr), ctx, ht);
11462 break;
11463 default:
11464 break;
11465 }
11466 break;
11467 case tcc_exceptional:
11468 switch (code)
11469 {
11470 case TREE_LIST:
11471 fold_checksum_tree (TREE_PURPOSE (expr), ctx, ht);
11472 fold_checksum_tree (TREE_VALUE (expr), ctx, ht);
11473 expr = TREE_CHAIN (expr);
11474 goto recursive_label;
11475 break;
11476 case TREE_VEC:
11477 for (i = 0; i < TREE_VEC_LENGTH (expr); ++i)
11478 fold_checksum_tree (TREE_VEC_ELT (expr, i), ctx, ht);
11479 break;
11480 default:
11481 break;
11482 }
11483 break;
11484 case tcc_expression:
11485 case tcc_reference:
11486 case tcc_comparison:
11487 case tcc_unary:
11488 case tcc_binary:
11489 case tcc_statement:
11490 len = TREE_CODE_LENGTH (code);
11491 for (i = 0; i < len; ++i)
11492 fold_checksum_tree (TREE_OPERAND (expr, i), ctx, ht);
11493 break;
11494 case tcc_declaration:
11495 fold_checksum_tree (DECL_NAME (expr), ctx, ht);
11496 fold_checksum_tree (DECL_CONTEXT (expr), ctx, ht);
11497 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_COMMON))
11498 {
11499 fold_checksum_tree (DECL_SIZE (expr), ctx, ht);
11500 fold_checksum_tree (DECL_SIZE_UNIT (expr), ctx, ht);
11501 fold_checksum_tree (DECL_INITIAL (expr), ctx, ht);
11502 fold_checksum_tree (DECL_ABSTRACT_ORIGIN (expr), ctx, ht);
11503 fold_checksum_tree (DECL_ATTRIBUTES (expr), ctx, ht);
11504 }
11505 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_WITH_VIS))
11506 fold_checksum_tree (DECL_SECTION_NAME (expr), ctx, ht);
11507
11508 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_NON_COMMON))
11509 {
11510 fold_checksum_tree (DECL_VINDEX (expr), ctx, ht);
11511 fold_checksum_tree (DECL_RESULT_FLD (expr), ctx, ht);
11512 fold_checksum_tree (DECL_ARGUMENT_FLD (expr), ctx, ht);
11513 }
11514 break;
11515 case tcc_type:
11516 if (TREE_CODE (expr) == ENUMERAL_TYPE)
11517 fold_checksum_tree (TYPE_VALUES (expr), ctx, ht);
11518 fold_checksum_tree (TYPE_SIZE (expr), ctx, ht);
11519 fold_checksum_tree (TYPE_SIZE_UNIT (expr), ctx, ht);
11520 fold_checksum_tree (TYPE_ATTRIBUTES (expr), ctx, ht);
11521 fold_checksum_tree (TYPE_NAME (expr), ctx, ht);
11522 if (INTEGRAL_TYPE_P (expr)
11523 || SCALAR_FLOAT_TYPE_P (expr))
11524 {
11525 fold_checksum_tree (TYPE_MIN_VALUE (expr), ctx, ht);
11526 fold_checksum_tree (TYPE_MAX_VALUE (expr), ctx, ht);
11527 }
11528 fold_checksum_tree (TYPE_MAIN_VARIANT (expr), ctx, ht);
11529 if (TREE_CODE (expr) == RECORD_TYPE
11530 || TREE_CODE (expr) == UNION_TYPE
11531 || TREE_CODE (expr) == QUAL_UNION_TYPE)
11532 fold_checksum_tree (TYPE_BINFO (expr), ctx, ht);
11533 fold_checksum_tree (TYPE_CONTEXT (expr), ctx, ht);
11534 break;
11535 default:
11536 break;
11537 }
11538 }
11539
11540 #endif
11541
11542 /* Fold a unary tree expression with code CODE of type TYPE with an
11543 operand OP0. Return a folded expression if successful. Otherwise,
11544 return a tree expression with code CODE of type TYPE with an
11545 operand OP0. */
11546
11547 tree
11548 fold_build1_stat (enum tree_code code, tree type, tree op0 MEM_STAT_DECL)
11549 {
11550 tree tem;
11551 #ifdef ENABLE_FOLD_CHECKING
11552 unsigned char checksum_before[16], checksum_after[16];
11553 struct md5_ctx ctx;
11554 htab_t ht;
11555
11556 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
11557 md5_init_ctx (&ctx);
11558 fold_checksum_tree (op0, &ctx, ht);
11559 md5_finish_ctx (&ctx, checksum_before);
11560 htab_empty (ht);
11561 #endif
11562
11563 tem = fold_unary (code, type, op0);
11564 if (!tem)
11565 tem = build1_stat (code, type, op0 PASS_MEM_STAT);
11566
11567 #ifdef ENABLE_FOLD_CHECKING
11568 md5_init_ctx (&ctx);
11569 fold_checksum_tree (op0, &ctx, ht);
11570 md5_finish_ctx (&ctx, checksum_after);
11571 htab_delete (ht);
11572
11573 if (memcmp (checksum_before, checksum_after, 16))
11574 fold_check_failed (op0, tem);
11575 #endif
11576 return tem;
11577 }
11578
11579 /* Fold a binary tree expression with code CODE of type TYPE with
11580 operands OP0 and OP1. Return a folded expression if successful.
11581 Otherwise, return a tree expression with code CODE of type TYPE
11582 with operands OP0 and OP1. */
11583
11584 tree
11585 fold_build2_stat (enum tree_code code, tree type, tree op0, tree op1
11586 MEM_STAT_DECL)
11587 {
11588 tree tem;
11589 #ifdef ENABLE_FOLD_CHECKING
11590 unsigned char checksum_before_op0[16],
11591 checksum_before_op1[16],
11592 checksum_after_op0[16],
11593 checksum_after_op1[16];
11594 struct md5_ctx ctx;
11595 htab_t ht;
11596
11597 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
11598 md5_init_ctx (&ctx);
11599 fold_checksum_tree (op0, &ctx, ht);
11600 md5_finish_ctx (&ctx, checksum_before_op0);
11601 htab_empty (ht);
11602
11603 md5_init_ctx (&ctx);
11604 fold_checksum_tree (op1, &ctx, ht);
11605 md5_finish_ctx (&ctx, checksum_before_op1);
11606 htab_empty (ht);
11607 #endif
11608
11609 tem = fold_binary (code, type, op0, op1);
11610 if (!tem)
11611 tem = build2_stat (code, type, op0, op1 PASS_MEM_STAT);
11612
11613 #ifdef ENABLE_FOLD_CHECKING
11614 md5_init_ctx (&ctx);
11615 fold_checksum_tree (op0, &ctx, ht);
11616 md5_finish_ctx (&ctx, checksum_after_op0);
11617 htab_empty (ht);
11618
11619 if (memcmp (checksum_before_op0, checksum_after_op0, 16))
11620 fold_check_failed (op0, tem);
11621
11622 md5_init_ctx (&ctx);
11623 fold_checksum_tree (op1, &ctx, ht);
11624 md5_finish_ctx (&ctx, checksum_after_op1);
11625 htab_delete (ht);
11626
11627 if (memcmp (checksum_before_op1, checksum_after_op1, 16))
11628 fold_check_failed (op1, tem);
11629 #endif
11630 return tem;
11631 }
11632
11633 /* Fold a ternary tree expression with code CODE of type TYPE with
11634 operands OP0, OP1, and OP2. Return a folded expression if
11635 successful. Otherwise, return a tree expression with code CODE of
11636 type TYPE with operands OP0, OP1, and OP2. */
11637
11638 tree
11639 fold_build3_stat (enum tree_code code, tree type, tree op0, tree op1, tree op2
11640 MEM_STAT_DECL)
11641 {
11642 tree tem;
11643 #ifdef ENABLE_FOLD_CHECKING
11644 unsigned char checksum_before_op0[16],
11645 checksum_before_op1[16],
11646 checksum_before_op2[16],
11647 checksum_after_op0[16],
11648 checksum_after_op1[16],
11649 checksum_after_op2[16];
11650 struct md5_ctx ctx;
11651 htab_t ht;
11652
11653 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
11654 md5_init_ctx (&ctx);
11655 fold_checksum_tree (op0, &ctx, ht);
11656 md5_finish_ctx (&ctx, checksum_before_op0);
11657 htab_empty (ht);
11658
11659 md5_init_ctx (&ctx);
11660 fold_checksum_tree (op1, &ctx, ht);
11661 md5_finish_ctx (&ctx, checksum_before_op1);
11662 htab_empty (ht);
11663
11664 md5_init_ctx (&ctx);
11665 fold_checksum_tree (op2, &ctx, ht);
11666 md5_finish_ctx (&ctx, checksum_before_op2);
11667 htab_empty (ht);
11668 #endif
11669
11670 tem = fold_ternary (code, type, op0, op1, op2);
11671 if (!tem)
11672 tem = build3_stat (code, type, op0, op1, op2 PASS_MEM_STAT);
11673
11674 #ifdef ENABLE_FOLD_CHECKING
11675 md5_init_ctx (&ctx);
11676 fold_checksum_tree (op0, &ctx, ht);
11677 md5_finish_ctx (&ctx, checksum_after_op0);
11678 htab_empty (ht);
11679
11680 if (memcmp (checksum_before_op0, checksum_after_op0, 16))
11681 fold_check_failed (op0, tem);
11682
11683 md5_init_ctx (&ctx);
11684 fold_checksum_tree (op1, &ctx, ht);
11685 md5_finish_ctx (&ctx, checksum_after_op1);
11686 htab_empty (ht);
11687
11688 if (memcmp (checksum_before_op1, checksum_after_op1, 16))
11689 fold_check_failed (op1, tem);
11690
11691 md5_init_ctx (&ctx);
11692 fold_checksum_tree (op2, &ctx, ht);
11693 md5_finish_ctx (&ctx, checksum_after_op2);
11694 htab_delete (ht);
11695
11696 if (memcmp (checksum_before_op2, checksum_after_op2, 16))
11697 fold_check_failed (op2, tem);
11698 #endif
11699 return tem;
11700 }
11701
11702 /* Perform constant folding and related simplification of initializer
11703 expression EXPR. These behave identically to "fold_buildN" but ignore
11704 potential run-time traps and exceptions that fold must preserve. */
11705
11706 #define START_FOLD_INIT \
11707 int saved_signaling_nans = flag_signaling_nans;\
11708 int saved_trapping_math = flag_trapping_math;\
11709 int saved_rounding_math = flag_rounding_math;\
11710 int saved_trapv = flag_trapv;\
11711 flag_signaling_nans = 0;\
11712 flag_trapping_math = 0;\
11713 flag_rounding_math = 0;\
11714 flag_trapv = 0
11715
11716 #define END_FOLD_INIT \
11717 flag_signaling_nans = saved_signaling_nans;\
11718 flag_trapping_math = saved_trapping_math;\
11719 flag_rounding_math = saved_rounding_math;\
11720 flag_trapv = saved_trapv
11721
11722 tree
11723 fold_build1_initializer (enum tree_code code, tree type, tree op)
11724 {
11725 tree result;
11726 START_FOLD_INIT;
11727
11728 result = fold_build1 (code, type, op);
11729
11730 END_FOLD_INIT;
11731 return result;
11732 }
11733
11734 tree
11735 fold_build2_initializer (enum tree_code code, tree type, tree op0, tree op1)
11736 {
11737 tree result;
11738 START_FOLD_INIT;
11739
11740 result = fold_build2 (code, type, op0, op1);
11741
11742 END_FOLD_INIT;
11743 return result;
11744 }
11745
11746 tree
11747 fold_build3_initializer (enum tree_code code, tree type, tree op0, tree op1,
11748 tree op2)
11749 {
11750 tree result;
11751 START_FOLD_INIT;
11752
11753 result = fold_build3 (code, type, op0, op1, op2);
11754
11755 END_FOLD_INIT;
11756 return result;
11757 }
11758
11759 #undef START_FOLD_INIT
11760 #undef END_FOLD_INIT
11761
11762 /* Determine if first argument is a multiple of second argument. Return 0 if
11763 it is not, or we cannot easily determined it to be.
11764
11765 An example of the sort of thing we care about (at this point; this routine
11766 could surely be made more general, and expanded to do what the *_DIV_EXPR's
11767 fold cases do now) is discovering that
11768
11769 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
11770
11771 is a multiple of
11772
11773 SAVE_EXPR (J * 8)
11774
11775 when we know that the two SAVE_EXPR (J * 8) nodes are the same node.
11776
11777 This code also handles discovering that
11778
11779 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
11780
11781 is a multiple of 8 so we don't have to worry about dealing with a
11782 possible remainder.
11783
11784 Note that we *look* inside a SAVE_EXPR only to determine how it was
11785 calculated; it is not safe for fold to do much of anything else with the
11786 internals of a SAVE_EXPR, since it cannot know when it will be evaluated
11787 at run time. For example, the latter example above *cannot* be implemented
11788 as SAVE_EXPR (I) * J or any variant thereof, since the value of J at
11789 evaluation time of the original SAVE_EXPR is not necessarily the same at
11790 the time the new expression is evaluated. The only optimization of this
11791 sort that would be valid is changing
11792
11793 SAVE_EXPR (I) * SAVE_EXPR (SAVE_EXPR (J) * 8)
11794
11795 divided by 8 to
11796
11797 SAVE_EXPR (I) * SAVE_EXPR (J)
11798
11799 (where the same SAVE_EXPR (J) is used in the original and the
11800 transformed version). */
11801
11802 static int
11803 multiple_of_p (tree type, tree top, tree bottom)
11804 {
11805 if (operand_equal_p (top, bottom, 0))
11806 return 1;
11807
11808 if (TREE_CODE (type) != INTEGER_TYPE)
11809 return 0;
11810
11811 switch (TREE_CODE (top))
11812 {
11813 case BIT_AND_EXPR:
11814 /* Bitwise and provides a power of two multiple. If the mask is
11815 a multiple of BOTTOM then TOP is a multiple of BOTTOM. */
11816 if (!integer_pow2p (bottom))
11817 return 0;
11818 /* FALLTHRU */
11819
11820 case MULT_EXPR:
11821 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
11822 || multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
11823
11824 case PLUS_EXPR:
11825 case MINUS_EXPR:
11826 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
11827 && multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
11828
11829 case LSHIFT_EXPR:
11830 if (TREE_CODE (TREE_OPERAND (top, 1)) == INTEGER_CST)
11831 {
11832 tree op1, t1;
11833
11834 op1 = TREE_OPERAND (top, 1);
11835 /* const_binop may not detect overflow correctly,
11836 so check for it explicitly here. */
11837 if (TYPE_PRECISION (TREE_TYPE (size_one_node))
11838 > TREE_INT_CST_LOW (op1)
11839 && TREE_INT_CST_HIGH (op1) == 0
11840 && 0 != (t1 = fold_convert (type,
11841 const_binop (LSHIFT_EXPR,
11842 size_one_node,
11843 op1, 0)))
11844 && ! TREE_OVERFLOW (t1))
11845 return multiple_of_p (type, t1, bottom);
11846 }
11847 return 0;
11848
11849 case NOP_EXPR:
11850 /* Can't handle conversions from non-integral or wider integral type. */
11851 if ((TREE_CODE (TREE_TYPE (TREE_OPERAND (top, 0))) != INTEGER_TYPE)
11852 || (TYPE_PRECISION (type)
11853 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (top, 0)))))
11854 return 0;
11855
11856 /* .. fall through ... */
11857
11858 case SAVE_EXPR:
11859 return multiple_of_p (type, TREE_OPERAND (top, 0), bottom);
11860
11861 case INTEGER_CST:
11862 if (TREE_CODE (bottom) != INTEGER_CST
11863 || (TYPE_UNSIGNED (type)
11864 && (tree_int_cst_sgn (top) < 0
11865 || tree_int_cst_sgn (bottom) < 0)))
11866 return 0;
11867 return integer_zerop (const_binop (TRUNC_MOD_EXPR,
11868 top, bottom, 0));
11869
11870 default:
11871 return 0;
11872 }
11873 }
11874
11875 /* Return true if `t' is known to be non-negative. */
11876
11877 int
11878 tree_expr_nonnegative_p (tree t)
11879 {
11880 if (t == error_mark_node)
11881 return 0;
11882
11883 if (TYPE_UNSIGNED (TREE_TYPE (t)))
11884 return 1;
11885
11886 switch (TREE_CODE (t))
11887 {
11888 case SSA_NAME:
11889 /* Query VRP to see if it has recorded any information about
11890 the range of this object. */
11891 return ssa_name_nonnegative_p (t);
11892
11893 case ABS_EXPR:
11894 /* We can't return 1 if flag_wrapv is set because
11895 ABS_EXPR<INT_MIN> = INT_MIN. */
11896 if (!(flag_wrapv && INTEGRAL_TYPE_P (TREE_TYPE (t))))
11897 return 1;
11898 break;
11899
11900 case INTEGER_CST:
11901 return tree_int_cst_sgn (t) >= 0;
11902
11903 case REAL_CST:
11904 return ! REAL_VALUE_NEGATIVE (TREE_REAL_CST (t));
11905
11906 case PLUS_EXPR:
11907 if (FLOAT_TYPE_P (TREE_TYPE (t)))
11908 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
11909 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
11910
11911 /* zero_extend(x) + zero_extend(y) is non-negative if x and y are
11912 both unsigned and at least 2 bits shorter than the result. */
11913 if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
11914 && TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
11915 && TREE_CODE (TREE_OPERAND (t, 1)) == NOP_EXPR)
11916 {
11917 tree inner1 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
11918 tree inner2 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0));
11919 if (TREE_CODE (inner1) == INTEGER_TYPE && TYPE_UNSIGNED (inner1)
11920 && TREE_CODE (inner2) == INTEGER_TYPE && TYPE_UNSIGNED (inner2))
11921 {
11922 unsigned int prec = MAX (TYPE_PRECISION (inner1),
11923 TYPE_PRECISION (inner2)) + 1;
11924 return prec < TYPE_PRECISION (TREE_TYPE (t));
11925 }
11926 }
11927 break;
11928
11929 case MULT_EXPR:
11930 if (FLOAT_TYPE_P (TREE_TYPE (t)))
11931 {
11932 /* x * x for floating point x is always non-negative. */
11933 if (operand_equal_p (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1), 0))
11934 return 1;
11935 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
11936 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
11937 }
11938
11939 /* zero_extend(x) * zero_extend(y) is non-negative if x and y are
11940 both unsigned and their total bits is shorter than the result. */
11941 if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
11942 && TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
11943 && TREE_CODE (TREE_OPERAND (t, 1)) == NOP_EXPR)
11944 {
11945 tree inner1 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
11946 tree inner2 = TREE_TYPE (TREE_OPERAND (TREE_OPERAND (t, 1), 0));
11947 if (TREE_CODE (inner1) == INTEGER_TYPE && TYPE_UNSIGNED (inner1)
11948 && TREE_CODE (inner2) == INTEGER_TYPE && TYPE_UNSIGNED (inner2))
11949 return TYPE_PRECISION (inner1) + TYPE_PRECISION (inner2)
11950 < TYPE_PRECISION (TREE_TYPE (t));
11951 }
11952 return 0;
11953
11954 case BIT_AND_EXPR:
11955 case MAX_EXPR:
11956 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
11957 || tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
11958
11959 case BIT_IOR_EXPR:
11960 case BIT_XOR_EXPR:
11961 case MIN_EXPR:
11962 case RDIV_EXPR:
11963 case TRUNC_DIV_EXPR:
11964 case CEIL_DIV_EXPR:
11965 case FLOOR_DIV_EXPR:
11966 case ROUND_DIV_EXPR:
11967 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
11968 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
11969
11970 case TRUNC_MOD_EXPR:
11971 case CEIL_MOD_EXPR:
11972 case FLOOR_MOD_EXPR:
11973 case ROUND_MOD_EXPR:
11974 case SAVE_EXPR:
11975 case NON_LVALUE_EXPR:
11976 case FLOAT_EXPR:
11977 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
11978
11979 case COMPOUND_EXPR:
11980 case MODIFY_EXPR:
11981 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
11982
11983 case BIND_EXPR:
11984 return tree_expr_nonnegative_p (expr_last (TREE_OPERAND (t, 1)));
11985
11986 case COND_EXPR:
11987 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1))
11988 && tree_expr_nonnegative_p (TREE_OPERAND (t, 2));
11989
11990 case NOP_EXPR:
11991 {
11992 tree inner_type = TREE_TYPE (TREE_OPERAND (t, 0));
11993 tree outer_type = TREE_TYPE (t);
11994
11995 if (TREE_CODE (outer_type) == REAL_TYPE)
11996 {
11997 if (TREE_CODE (inner_type) == REAL_TYPE)
11998 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
11999 if (TREE_CODE (inner_type) == INTEGER_TYPE)
12000 {
12001 if (TYPE_UNSIGNED (inner_type))
12002 return 1;
12003 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
12004 }
12005 }
12006 else if (TREE_CODE (outer_type) == INTEGER_TYPE)
12007 {
12008 if (TREE_CODE (inner_type) == REAL_TYPE)
12009 return tree_expr_nonnegative_p (TREE_OPERAND (t,0));
12010 if (TREE_CODE (inner_type) == INTEGER_TYPE)
12011 return TYPE_PRECISION (inner_type) < TYPE_PRECISION (outer_type)
12012 && TYPE_UNSIGNED (inner_type);
12013 }
12014 }
12015 break;
12016
12017 case TARGET_EXPR:
12018 {
12019 tree temp = TARGET_EXPR_SLOT (t);
12020 t = TARGET_EXPR_INITIAL (t);
12021
12022 /* If the initializer is non-void, then it's a normal expression
12023 that will be assigned to the slot. */
12024 if (!VOID_TYPE_P (t))
12025 return tree_expr_nonnegative_p (t);
12026
12027 /* Otherwise, the initializer sets the slot in some way. One common
12028 way is an assignment statement at the end of the initializer. */
12029 while (1)
12030 {
12031 if (TREE_CODE (t) == BIND_EXPR)
12032 t = expr_last (BIND_EXPR_BODY (t));
12033 else if (TREE_CODE (t) == TRY_FINALLY_EXPR
12034 || TREE_CODE (t) == TRY_CATCH_EXPR)
12035 t = expr_last (TREE_OPERAND (t, 0));
12036 else if (TREE_CODE (t) == STATEMENT_LIST)
12037 t = expr_last (t);
12038 else
12039 break;
12040 }
12041 if (TREE_CODE (t) == MODIFY_EXPR
12042 && TREE_OPERAND (t, 0) == temp)
12043 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
12044
12045 return 0;
12046 }
12047
12048 case CALL_EXPR:
12049 {
12050 tree fndecl = get_callee_fndecl (t);
12051 tree arglist = TREE_OPERAND (t, 1);
12052 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
12053 switch (DECL_FUNCTION_CODE (fndecl))
12054 {
12055 CASE_FLT_FN (BUILT_IN_ACOS):
12056 CASE_FLT_FN (BUILT_IN_ACOSH):
12057 CASE_FLT_FN (BUILT_IN_CABS):
12058 CASE_FLT_FN (BUILT_IN_COSH):
12059 CASE_FLT_FN (BUILT_IN_ERFC):
12060 CASE_FLT_FN (BUILT_IN_EXP):
12061 CASE_FLT_FN (BUILT_IN_EXP10):
12062 CASE_FLT_FN (BUILT_IN_EXP2):
12063 CASE_FLT_FN (BUILT_IN_FABS):
12064 CASE_FLT_FN (BUILT_IN_FDIM):
12065 CASE_FLT_FN (BUILT_IN_HYPOT):
12066 CASE_FLT_FN (BUILT_IN_POW10):
12067 CASE_INT_FN (BUILT_IN_FFS):
12068 CASE_INT_FN (BUILT_IN_PARITY):
12069 CASE_INT_FN (BUILT_IN_POPCOUNT):
12070 /* Always true. */
12071 return 1;
12072
12073 CASE_FLT_FN (BUILT_IN_SQRT):
12074 /* sqrt(-0.0) is -0.0. */
12075 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (t))))
12076 return 1;
12077 return tree_expr_nonnegative_p (TREE_VALUE (arglist));
12078
12079 CASE_FLT_FN (BUILT_IN_ASINH):
12080 CASE_FLT_FN (BUILT_IN_ATAN):
12081 CASE_FLT_FN (BUILT_IN_ATANH):
12082 CASE_FLT_FN (BUILT_IN_CBRT):
12083 CASE_FLT_FN (BUILT_IN_CEIL):
12084 CASE_FLT_FN (BUILT_IN_ERF):
12085 CASE_FLT_FN (BUILT_IN_EXPM1):
12086 CASE_FLT_FN (BUILT_IN_FLOOR):
12087 CASE_FLT_FN (BUILT_IN_FMOD):
12088 CASE_FLT_FN (BUILT_IN_FREXP):
12089 CASE_FLT_FN (BUILT_IN_LCEIL):
12090 CASE_FLT_FN (BUILT_IN_LDEXP):
12091 CASE_FLT_FN (BUILT_IN_LFLOOR):
12092 CASE_FLT_FN (BUILT_IN_LLCEIL):
12093 CASE_FLT_FN (BUILT_IN_LLFLOOR):
12094 CASE_FLT_FN (BUILT_IN_LLRINT):
12095 CASE_FLT_FN (BUILT_IN_LLROUND):
12096 CASE_FLT_FN (BUILT_IN_LRINT):
12097 CASE_FLT_FN (BUILT_IN_LROUND):
12098 CASE_FLT_FN (BUILT_IN_MODF):
12099 CASE_FLT_FN (BUILT_IN_NEARBYINT):
12100 CASE_FLT_FN (BUILT_IN_POW):
12101 CASE_FLT_FN (BUILT_IN_RINT):
12102 CASE_FLT_FN (BUILT_IN_ROUND):
12103 CASE_FLT_FN (BUILT_IN_SIGNBIT):
12104 CASE_FLT_FN (BUILT_IN_SINH):
12105 CASE_FLT_FN (BUILT_IN_TANH):
12106 CASE_FLT_FN (BUILT_IN_TRUNC):
12107 /* True if the 1st argument is nonnegative. */
12108 return tree_expr_nonnegative_p (TREE_VALUE (arglist));
12109
12110 CASE_FLT_FN (BUILT_IN_FMAX):
12111 /* True if the 1st OR 2nd arguments are nonnegative. */
12112 return tree_expr_nonnegative_p (TREE_VALUE (arglist))
12113 || tree_expr_nonnegative_p (TREE_VALUE (TREE_CHAIN (arglist)));
12114
12115 CASE_FLT_FN (BUILT_IN_FMIN):
12116 /* True if the 1st AND 2nd arguments are nonnegative. */
12117 return tree_expr_nonnegative_p (TREE_VALUE (arglist))
12118 && tree_expr_nonnegative_p (TREE_VALUE (TREE_CHAIN (arglist)));
12119
12120 CASE_FLT_FN (BUILT_IN_COPYSIGN):
12121 /* True if the 2nd argument is nonnegative. */
12122 return tree_expr_nonnegative_p (TREE_VALUE (TREE_CHAIN (arglist)));
12123
12124 default:
12125 break;
12126 }
12127 }
12128
12129 /* ... fall through ... */
12130
12131 default:
12132 if (truth_value_p (TREE_CODE (t)))
12133 /* Truth values evaluate to 0 or 1, which is nonnegative. */
12134 return 1;
12135 }
12136
12137 /* We don't know sign of `t', so be conservative and return false. */
12138 return 0;
12139 }
12140
12141 /* Return true when T is an address and is known to be nonzero.
12142 For floating point we further ensure that T is not denormal.
12143 Similar logic is present in nonzero_address in rtlanal.h. */
12144
12145 bool
12146 tree_expr_nonzero_p (tree t)
12147 {
12148 tree type = TREE_TYPE (t);
12149
12150 /* Doing something useful for floating point would need more work. */
12151 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
12152 return false;
12153
12154 switch (TREE_CODE (t))
12155 {
12156 case SSA_NAME:
12157 /* Query VRP to see if it has recorded any information about
12158 the range of this object. */
12159 return ssa_name_nonzero_p (t);
12160
12161 case ABS_EXPR:
12162 return tree_expr_nonzero_p (TREE_OPERAND (t, 0));
12163
12164 case INTEGER_CST:
12165 /* We used to test for !integer_zerop here. This does not work correctly
12166 if TREE_CONSTANT_OVERFLOW (t). */
12167 return (TREE_INT_CST_LOW (t) != 0
12168 || TREE_INT_CST_HIGH (t) != 0);
12169
12170 case PLUS_EXPR:
12171 if (!TYPE_UNSIGNED (type) && !flag_wrapv)
12172 {
12173 /* With the presence of negative values it is hard
12174 to say something. */
12175 if (!tree_expr_nonnegative_p (TREE_OPERAND (t, 0))
12176 || !tree_expr_nonnegative_p (TREE_OPERAND (t, 1)))
12177 return false;
12178 /* One of operands must be positive and the other non-negative. */
12179 return (tree_expr_nonzero_p (TREE_OPERAND (t, 0))
12180 || tree_expr_nonzero_p (TREE_OPERAND (t, 1)));
12181 }
12182 break;
12183
12184 case MULT_EXPR:
12185 if (!TYPE_UNSIGNED (type) && !flag_wrapv)
12186 {
12187 return (tree_expr_nonzero_p (TREE_OPERAND (t, 0))
12188 && tree_expr_nonzero_p (TREE_OPERAND (t, 1)));
12189 }
12190 break;
12191
12192 case NOP_EXPR:
12193 {
12194 tree inner_type = TREE_TYPE (TREE_OPERAND (t, 0));
12195 tree outer_type = TREE_TYPE (t);
12196
12197 return (TYPE_PRECISION (outer_type) >= TYPE_PRECISION (inner_type)
12198 && tree_expr_nonzero_p (TREE_OPERAND (t, 0)));
12199 }
12200 break;
12201
12202 case ADDR_EXPR:
12203 {
12204 tree base = get_base_address (TREE_OPERAND (t, 0));
12205
12206 if (!base)
12207 return false;
12208
12209 /* Weak declarations may link to NULL. */
12210 if (VAR_OR_FUNCTION_DECL_P (base))
12211 return !DECL_WEAK (base);
12212
12213 /* Constants are never weak. */
12214 if (CONSTANT_CLASS_P (base))
12215 return true;
12216
12217 return false;
12218 }
12219
12220 case COND_EXPR:
12221 return (tree_expr_nonzero_p (TREE_OPERAND (t, 1))
12222 && tree_expr_nonzero_p (TREE_OPERAND (t, 2)));
12223
12224 case MIN_EXPR:
12225 return (tree_expr_nonzero_p (TREE_OPERAND (t, 0))
12226 && tree_expr_nonzero_p (TREE_OPERAND (t, 1)));
12227
12228 case MAX_EXPR:
12229 if (tree_expr_nonzero_p (TREE_OPERAND (t, 0)))
12230 {
12231 /* When both operands are nonzero, then MAX must be too. */
12232 if (tree_expr_nonzero_p (TREE_OPERAND (t, 1)))
12233 return true;
12234
12235 /* MAX where operand 0 is positive is positive. */
12236 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
12237 }
12238 /* MAX where operand 1 is positive is positive. */
12239 else if (tree_expr_nonzero_p (TREE_OPERAND (t, 1))
12240 && tree_expr_nonnegative_p (TREE_OPERAND (t, 1)))
12241 return true;
12242 break;
12243
12244 case COMPOUND_EXPR:
12245 case MODIFY_EXPR:
12246 case BIND_EXPR:
12247 return tree_expr_nonzero_p (TREE_OPERAND (t, 1));
12248
12249 case SAVE_EXPR:
12250 case NON_LVALUE_EXPR:
12251 return tree_expr_nonzero_p (TREE_OPERAND (t, 0));
12252
12253 case BIT_IOR_EXPR:
12254 return tree_expr_nonzero_p (TREE_OPERAND (t, 1))
12255 || tree_expr_nonzero_p (TREE_OPERAND (t, 0));
12256
12257 case CALL_EXPR:
12258 return alloca_call_p (t);
12259
12260 default:
12261 break;
12262 }
12263 return false;
12264 }
12265
12266 /* Given the components of a binary expression CODE, TYPE, OP0 and OP1,
12267 attempt to fold the expression to a constant without modifying TYPE,
12268 OP0 or OP1.
12269
12270 If the expression could be simplified to a constant, then return
12271 the constant. If the expression would not be simplified to a
12272 constant, then return NULL_TREE. */
12273
12274 tree
12275 fold_binary_to_constant (enum tree_code code, tree type, tree op0, tree op1)
12276 {
12277 tree tem = fold_binary (code, type, op0, op1);
12278 return (tem && TREE_CONSTANT (tem)) ? tem : NULL_TREE;
12279 }
12280
12281 /* Given the components of a unary expression CODE, TYPE and OP0,
12282 attempt to fold the expression to a constant without modifying
12283 TYPE or OP0.
12284
12285 If the expression could be simplified to a constant, then return
12286 the constant. If the expression would not be simplified to a
12287 constant, then return NULL_TREE. */
12288
12289 tree
12290 fold_unary_to_constant (enum tree_code code, tree type, tree op0)
12291 {
12292 tree tem = fold_unary (code, type, op0);
12293 return (tem && TREE_CONSTANT (tem)) ? tem : NULL_TREE;
12294 }
12295
12296 /* If EXP represents referencing an element in a constant string
12297 (either via pointer arithmetic or array indexing), return the
12298 tree representing the value accessed, otherwise return NULL. */
12299
12300 tree
12301 fold_read_from_constant_string (tree exp)
12302 {
12303 if (TREE_CODE (exp) == INDIRECT_REF || TREE_CODE (exp) == ARRAY_REF)
12304 {
12305 tree exp1 = TREE_OPERAND (exp, 0);
12306 tree index;
12307 tree string;
12308
12309 if (TREE_CODE (exp) == INDIRECT_REF)
12310 string = string_constant (exp1, &index);
12311 else
12312 {
12313 tree low_bound = array_ref_low_bound (exp);
12314 index = fold_convert (sizetype, TREE_OPERAND (exp, 1));
12315
12316 /* Optimize the special-case of a zero lower bound.
12317
12318 We convert the low_bound to sizetype to avoid some problems
12319 with constant folding. (E.g. suppose the lower bound is 1,
12320 and its mode is QI. Without the conversion,l (ARRAY
12321 +(INDEX-(unsigned char)1)) becomes ((ARRAY+(-(unsigned char)1))
12322 +INDEX), which becomes (ARRAY+255+INDEX). Opps!) */
12323 if (! integer_zerop (low_bound))
12324 index = size_diffop (index, fold_convert (sizetype, low_bound));
12325
12326 string = exp1;
12327 }
12328
12329 if (string
12330 && TYPE_MODE (TREE_TYPE (exp)) == TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))
12331 && TREE_CODE (string) == STRING_CST
12332 && TREE_CODE (index) == INTEGER_CST
12333 && compare_tree_int (index, TREE_STRING_LENGTH (string)) < 0
12334 && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (string))))
12335 == MODE_INT)
12336 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))) == 1))
12337 return fold_convert (TREE_TYPE (exp),
12338 build_int_cst (NULL_TREE,
12339 (TREE_STRING_POINTER (string)
12340 [TREE_INT_CST_LOW (index)])));
12341 }
12342 return NULL;
12343 }
12344
12345 /* Return the tree for neg (ARG0) when ARG0 is known to be either
12346 an integer constant or real constant.
12347
12348 TYPE is the type of the result. */
12349
12350 static tree
12351 fold_negate_const (tree arg0, tree type)
12352 {
12353 tree t = NULL_TREE;
12354
12355 switch (TREE_CODE (arg0))
12356 {
12357 case INTEGER_CST:
12358 {
12359 unsigned HOST_WIDE_INT low;
12360 HOST_WIDE_INT high;
12361 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
12362 TREE_INT_CST_HIGH (arg0),
12363 &low, &high);
12364 t = build_int_cst_wide (type, low, high);
12365 t = force_fit_type (t, 1,
12366 (overflow | TREE_OVERFLOW (arg0))
12367 && !TYPE_UNSIGNED (type),
12368 TREE_CONSTANT_OVERFLOW (arg0));
12369 break;
12370 }
12371
12372 case REAL_CST:
12373 t = build_real (type, REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
12374 break;
12375
12376 default:
12377 gcc_unreachable ();
12378 }
12379
12380 return t;
12381 }
12382
12383 /* Return the tree for abs (ARG0) when ARG0 is known to be either
12384 an integer constant or real constant.
12385
12386 TYPE is the type of the result. */
12387
12388 tree
12389 fold_abs_const (tree arg0, tree type)
12390 {
12391 tree t = NULL_TREE;
12392
12393 switch (TREE_CODE (arg0))
12394 {
12395 case INTEGER_CST:
12396 /* If the value is unsigned, then the absolute value is
12397 the same as the ordinary value. */
12398 if (TYPE_UNSIGNED (type))
12399 t = arg0;
12400 /* Similarly, if the value is non-negative. */
12401 else if (INT_CST_LT (integer_minus_one_node, arg0))
12402 t = arg0;
12403 /* If the value is negative, then the absolute value is
12404 its negation. */
12405 else
12406 {
12407 unsigned HOST_WIDE_INT low;
12408 HOST_WIDE_INT high;
12409 int overflow = neg_double (TREE_INT_CST_LOW (arg0),
12410 TREE_INT_CST_HIGH (arg0),
12411 &low, &high);
12412 t = build_int_cst_wide (type, low, high);
12413 t = force_fit_type (t, -1, overflow | TREE_OVERFLOW (arg0),
12414 TREE_CONSTANT_OVERFLOW (arg0));
12415 }
12416 break;
12417
12418 case REAL_CST:
12419 if (REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg0)))
12420 t = build_real (type, REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
12421 else
12422 t = arg0;
12423 break;
12424
12425 default:
12426 gcc_unreachable ();
12427 }
12428
12429 return t;
12430 }
12431
12432 /* Return the tree for not (ARG0) when ARG0 is known to be an integer
12433 constant. TYPE is the type of the result. */
12434
12435 static tree
12436 fold_not_const (tree arg0, tree type)
12437 {
12438 tree t = NULL_TREE;
12439
12440 gcc_assert (TREE_CODE (arg0) == INTEGER_CST);
12441
12442 t = build_int_cst_wide (type,
12443 ~ TREE_INT_CST_LOW (arg0),
12444 ~ TREE_INT_CST_HIGH (arg0));
12445 t = force_fit_type (t, 0, TREE_OVERFLOW (arg0),
12446 TREE_CONSTANT_OVERFLOW (arg0));
12447
12448 return t;
12449 }
12450
12451 /* Given CODE, a relational operator, the target type, TYPE and two
12452 constant operands OP0 and OP1, return the result of the
12453 relational operation. If the result is not a compile time
12454 constant, then return NULL_TREE. */
12455
12456 static tree
12457 fold_relational_const (enum tree_code code, tree type, tree op0, tree op1)
12458 {
12459 int result, invert;
12460
12461 /* From here on, the only cases we handle are when the result is
12462 known to be a constant. */
12463
12464 if (TREE_CODE (op0) == REAL_CST && TREE_CODE (op1) == REAL_CST)
12465 {
12466 const REAL_VALUE_TYPE *c0 = TREE_REAL_CST_PTR (op0);
12467 const REAL_VALUE_TYPE *c1 = TREE_REAL_CST_PTR (op1);
12468
12469 /* Handle the cases where either operand is a NaN. */
12470 if (real_isnan (c0) || real_isnan (c1))
12471 {
12472 switch (code)
12473 {
12474 case EQ_EXPR:
12475 case ORDERED_EXPR:
12476 result = 0;
12477 break;
12478
12479 case NE_EXPR:
12480 case UNORDERED_EXPR:
12481 case UNLT_EXPR:
12482 case UNLE_EXPR:
12483 case UNGT_EXPR:
12484 case UNGE_EXPR:
12485 case UNEQ_EXPR:
12486 result = 1;
12487 break;
12488
12489 case LT_EXPR:
12490 case LE_EXPR:
12491 case GT_EXPR:
12492 case GE_EXPR:
12493 case LTGT_EXPR:
12494 if (flag_trapping_math)
12495 return NULL_TREE;
12496 result = 0;
12497 break;
12498
12499 default:
12500 gcc_unreachable ();
12501 }
12502
12503 return constant_boolean_node (result, type);
12504 }
12505
12506 return constant_boolean_node (real_compare (code, c0, c1), type);
12507 }
12508
12509 /* From here on we only handle LT, LE, GT, GE, EQ and NE.
12510
12511 To compute GT, swap the arguments and do LT.
12512 To compute GE, do LT and invert the result.
12513 To compute LE, swap the arguments, do LT and invert the result.
12514 To compute NE, do EQ and invert the result.
12515
12516 Therefore, the code below must handle only EQ and LT. */
12517
12518 if (code == LE_EXPR || code == GT_EXPR)
12519 {
12520 tree tem = op0;
12521 op0 = op1;
12522 op1 = tem;
12523 code = swap_tree_comparison (code);
12524 }
12525
12526 /* Note that it is safe to invert for real values here because we
12527 have already handled the one case that it matters. */
12528
12529 invert = 0;
12530 if (code == NE_EXPR || code == GE_EXPR)
12531 {
12532 invert = 1;
12533 code = invert_tree_comparison (code, false);
12534 }
12535
12536 /* Compute a result for LT or EQ if args permit;
12537 Otherwise return T. */
12538 if (TREE_CODE (op0) == INTEGER_CST && TREE_CODE (op1) == INTEGER_CST)
12539 {
12540 if (code == EQ_EXPR)
12541 result = tree_int_cst_equal (op0, op1);
12542 else if (TYPE_UNSIGNED (TREE_TYPE (op0)))
12543 result = INT_CST_LT_UNSIGNED (op0, op1);
12544 else
12545 result = INT_CST_LT (op0, op1);
12546 }
12547 else
12548 return NULL_TREE;
12549
12550 if (invert)
12551 result ^= 1;
12552 return constant_boolean_node (result, type);
12553 }
12554
12555 /* Build an expression for the a clean point containing EXPR with type TYPE.
12556 Don't build a cleanup point expression for EXPR which don't have side
12557 effects. */
12558
12559 tree
12560 fold_build_cleanup_point_expr (tree type, tree expr)
12561 {
12562 /* If the expression does not have side effects then we don't have to wrap
12563 it with a cleanup point expression. */
12564 if (!TREE_SIDE_EFFECTS (expr))
12565 return expr;
12566
12567 /* If the expression is a return, check to see if the expression inside the
12568 return has no side effects or the right hand side of the modify expression
12569 inside the return. If either don't have side effects set we don't need to
12570 wrap the expression in a cleanup point expression. Note we don't check the
12571 left hand side of the modify because it should always be a return decl. */
12572 if (TREE_CODE (expr) == RETURN_EXPR)
12573 {
12574 tree op = TREE_OPERAND (expr, 0);
12575 if (!op || !TREE_SIDE_EFFECTS (op))
12576 return expr;
12577 op = TREE_OPERAND (op, 1);
12578 if (!TREE_SIDE_EFFECTS (op))
12579 return expr;
12580 }
12581
12582 return build1 (CLEANUP_POINT_EXPR, type, expr);
12583 }
12584
12585 /* Build an expression for the address of T. Folds away INDIRECT_REF to
12586 avoid confusing the gimplify process. */
12587
12588 tree
12589 build_fold_addr_expr_with_type (tree t, tree ptrtype)
12590 {
12591 /* The size of the object is not relevant when talking about its address. */
12592 if (TREE_CODE (t) == WITH_SIZE_EXPR)
12593 t = TREE_OPERAND (t, 0);
12594
12595 /* Note: doesn't apply to ALIGN_INDIRECT_REF */
12596 if (TREE_CODE (t) == INDIRECT_REF
12597 || TREE_CODE (t) == MISALIGNED_INDIRECT_REF)
12598 {
12599 t = TREE_OPERAND (t, 0);
12600 if (TREE_TYPE (t) != ptrtype)
12601 t = build1 (NOP_EXPR, ptrtype, t);
12602 }
12603 else
12604 {
12605 tree base = t;
12606
12607 while (handled_component_p (base))
12608 base = TREE_OPERAND (base, 0);
12609 if (DECL_P (base))
12610 TREE_ADDRESSABLE (base) = 1;
12611
12612 t = build1 (ADDR_EXPR, ptrtype, t);
12613 }
12614
12615 return t;
12616 }
12617
12618 tree
12619 build_fold_addr_expr (tree t)
12620 {
12621 return build_fold_addr_expr_with_type (t, build_pointer_type (TREE_TYPE (t)));
12622 }
12623
12624 /* Given a pointer value OP0 and a type TYPE, return a simplified version
12625 of an indirection through OP0, or NULL_TREE if no simplification is
12626 possible. */
12627
12628 tree
12629 fold_indirect_ref_1 (tree type, tree op0)
12630 {
12631 tree sub = op0;
12632 tree subtype;
12633
12634 STRIP_NOPS (sub);
12635 subtype = TREE_TYPE (sub);
12636 if (!POINTER_TYPE_P (subtype))
12637 return NULL_TREE;
12638
12639 if (TREE_CODE (sub) == ADDR_EXPR)
12640 {
12641 tree op = TREE_OPERAND (sub, 0);
12642 tree optype = TREE_TYPE (op);
12643 /* *&p => p; make sure to handle *&"str"[cst] here. */
12644 if (type == optype)
12645 {
12646 tree fop = fold_read_from_constant_string (op);
12647 if (fop)
12648 return fop;
12649 else
12650 return op;
12651 }
12652 /* *(foo *)&fooarray => fooarray[0] */
12653 else if (TREE_CODE (optype) == ARRAY_TYPE
12654 && type == TREE_TYPE (optype))
12655 {
12656 tree type_domain = TYPE_DOMAIN (optype);
12657 tree min_val = size_zero_node;
12658 if (type_domain && TYPE_MIN_VALUE (type_domain))
12659 min_val = TYPE_MIN_VALUE (type_domain);
12660 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
12661 }
12662 /* *(foo *)&complexfoo => __real__ complexfoo */
12663 else if (TREE_CODE (optype) == COMPLEX_TYPE
12664 && type == TREE_TYPE (optype))
12665 return fold_build1 (REALPART_EXPR, type, op);
12666 }
12667
12668 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
12669 if (TREE_CODE (sub) == PLUS_EXPR
12670 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
12671 {
12672 tree op00 = TREE_OPERAND (sub, 0);
12673 tree op01 = TREE_OPERAND (sub, 1);
12674 tree op00type;
12675
12676 STRIP_NOPS (op00);
12677 op00type = TREE_TYPE (op00);
12678 if (TREE_CODE (op00) == ADDR_EXPR
12679 && TREE_CODE (TREE_TYPE (op00type)) == COMPLEX_TYPE
12680 && type == TREE_TYPE (TREE_TYPE (op00type)))
12681 {
12682 tree size = TYPE_SIZE_UNIT (type);
12683 if (tree_int_cst_equal (size, op01))
12684 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (op00, 0));
12685 }
12686 }
12687
12688 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
12689 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
12690 && type == TREE_TYPE (TREE_TYPE (subtype)))
12691 {
12692 tree type_domain;
12693 tree min_val = size_zero_node;
12694 sub = build_fold_indirect_ref (sub);
12695 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
12696 if (type_domain && TYPE_MIN_VALUE (type_domain))
12697 min_val = TYPE_MIN_VALUE (type_domain);
12698 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
12699 }
12700
12701 return NULL_TREE;
12702 }
12703
12704 /* Builds an expression for an indirection through T, simplifying some
12705 cases. */
12706
12707 tree
12708 build_fold_indirect_ref (tree t)
12709 {
12710 tree type = TREE_TYPE (TREE_TYPE (t));
12711 tree sub = fold_indirect_ref_1 (type, t);
12712
12713 if (sub)
12714 return sub;
12715 else
12716 return build1 (INDIRECT_REF, type, t);
12717 }
12718
12719 /* Given an INDIRECT_REF T, return either T or a simplified version. */
12720
12721 tree
12722 fold_indirect_ref (tree t)
12723 {
12724 tree sub = fold_indirect_ref_1 (TREE_TYPE (t), TREE_OPERAND (t, 0));
12725
12726 if (sub)
12727 return sub;
12728 else
12729 return t;
12730 }
12731
12732 /* Strip non-trapping, non-side-effecting tree nodes from an expression
12733 whose result is ignored. The type of the returned tree need not be
12734 the same as the original expression. */
12735
12736 tree
12737 fold_ignored_result (tree t)
12738 {
12739 if (!TREE_SIDE_EFFECTS (t))
12740 return integer_zero_node;
12741
12742 for (;;)
12743 switch (TREE_CODE_CLASS (TREE_CODE (t)))
12744 {
12745 case tcc_unary:
12746 t = TREE_OPERAND (t, 0);
12747 break;
12748
12749 case tcc_binary:
12750 case tcc_comparison:
12751 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1)))
12752 t = TREE_OPERAND (t, 0);
12753 else if (!TREE_SIDE_EFFECTS (TREE_OPERAND (t, 0)))
12754 t = TREE_OPERAND (t, 1);
12755 else
12756 return t;
12757 break;
12758
12759 case tcc_expression:
12760 switch (TREE_CODE (t))
12761 {
12762 case COMPOUND_EXPR:
12763 if (TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1)))
12764 return t;
12765 t = TREE_OPERAND (t, 0);
12766 break;
12767
12768 case COND_EXPR:
12769 if (TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1))
12770 || TREE_SIDE_EFFECTS (TREE_OPERAND (t, 2)))
12771 return t;
12772 t = TREE_OPERAND (t, 0);
12773 break;
12774
12775 default:
12776 return t;
12777 }
12778 break;
12779
12780 default:
12781 return t;
12782 }
12783 }
12784
12785 /* Return the value of VALUE, rounded up to a multiple of DIVISOR.
12786 This can only be applied to objects of a sizetype. */
12787
12788 tree
12789 round_up (tree value, int divisor)
12790 {
12791 tree div = NULL_TREE;
12792
12793 gcc_assert (divisor > 0);
12794 if (divisor == 1)
12795 return value;
12796
12797 /* See if VALUE is already a multiple of DIVISOR. If so, we don't
12798 have to do anything. Only do this when we are not given a const,
12799 because in that case, this check is more expensive than just
12800 doing it. */
12801 if (TREE_CODE (value) != INTEGER_CST)
12802 {
12803 div = build_int_cst (TREE_TYPE (value), divisor);
12804
12805 if (multiple_of_p (TREE_TYPE (value), value, div))
12806 return value;
12807 }
12808
12809 /* If divisor is a power of two, simplify this to bit manipulation. */
12810 if (divisor == (divisor & -divisor))
12811 {
12812 tree t;
12813
12814 t = build_int_cst (TREE_TYPE (value), divisor - 1);
12815 value = size_binop (PLUS_EXPR, value, t);
12816 t = build_int_cst (TREE_TYPE (value), -divisor);
12817 value = size_binop (BIT_AND_EXPR, value, t);
12818 }
12819 else
12820 {
12821 if (!div)
12822 div = build_int_cst (TREE_TYPE (value), divisor);
12823 value = size_binop (CEIL_DIV_EXPR, value, div);
12824 value = size_binop (MULT_EXPR, value, div);
12825 }
12826
12827 return value;
12828 }
12829
12830 /* Likewise, but round down. */
12831
12832 tree
12833 round_down (tree value, int divisor)
12834 {
12835 tree div = NULL_TREE;
12836
12837 gcc_assert (divisor > 0);
12838 if (divisor == 1)
12839 return value;
12840
12841 /* See if VALUE is already a multiple of DIVISOR. If so, we don't
12842 have to do anything. Only do this when we are not given a const,
12843 because in that case, this check is more expensive than just
12844 doing it. */
12845 if (TREE_CODE (value) != INTEGER_CST)
12846 {
12847 div = build_int_cst (TREE_TYPE (value), divisor);
12848
12849 if (multiple_of_p (TREE_TYPE (value), value, div))
12850 return value;
12851 }
12852
12853 /* If divisor is a power of two, simplify this to bit manipulation. */
12854 if (divisor == (divisor & -divisor))
12855 {
12856 tree t;
12857
12858 t = build_int_cst (TREE_TYPE (value), -divisor);
12859 value = size_binop (BIT_AND_EXPR, value, t);
12860 }
12861 else
12862 {
12863 if (!div)
12864 div = build_int_cst (TREE_TYPE (value), divisor);
12865 value = size_binop (FLOOR_DIV_EXPR, value, div);
12866 value = size_binop (MULT_EXPR, value, div);
12867 }
12868
12869 return value;
12870 }
12871
12872 /* Returns the pointer to the base of the object addressed by EXP and
12873 extracts the information about the offset of the access, storing it
12874 to PBITPOS and POFFSET. */
12875
12876 static tree
12877 split_address_to_core_and_offset (tree exp,
12878 HOST_WIDE_INT *pbitpos, tree *poffset)
12879 {
12880 tree core;
12881 enum machine_mode mode;
12882 int unsignedp, volatilep;
12883 HOST_WIDE_INT bitsize;
12884
12885 if (TREE_CODE (exp) == ADDR_EXPR)
12886 {
12887 core = get_inner_reference (TREE_OPERAND (exp, 0), &bitsize, pbitpos,
12888 poffset, &mode, &unsignedp, &volatilep,
12889 false);
12890 core = build_fold_addr_expr (core);
12891 }
12892 else
12893 {
12894 core = exp;
12895 *pbitpos = 0;
12896 *poffset = NULL_TREE;
12897 }
12898
12899 return core;
12900 }
12901
12902 /* Returns true if addresses of E1 and E2 differ by a constant, false
12903 otherwise. If they do, E1 - E2 is stored in *DIFF. */
12904
12905 bool
12906 ptr_difference_const (tree e1, tree e2, HOST_WIDE_INT *diff)
12907 {
12908 tree core1, core2;
12909 HOST_WIDE_INT bitpos1, bitpos2;
12910 tree toffset1, toffset2, tdiff, type;
12911
12912 core1 = split_address_to_core_and_offset (e1, &bitpos1, &toffset1);
12913 core2 = split_address_to_core_and_offset (e2, &bitpos2, &toffset2);
12914
12915 if (bitpos1 % BITS_PER_UNIT != 0
12916 || bitpos2 % BITS_PER_UNIT != 0
12917 || !operand_equal_p (core1, core2, 0))
12918 return false;
12919
12920 if (toffset1 && toffset2)
12921 {
12922 type = TREE_TYPE (toffset1);
12923 if (type != TREE_TYPE (toffset2))
12924 toffset2 = fold_convert (type, toffset2);
12925
12926 tdiff = fold_build2 (MINUS_EXPR, type, toffset1, toffset2);
12927 if (!cst_and_fits_in_hwi (tdiff))
12928 return false;
12929
12930 *diff = int_cst_value (tdiff);
12931 }
12932 else if (toffset1 || toffset2)
12933 {
12934 /* If only one of the offsets is non-constant, the difference cannot
12935 be a constant. */
12936 return false;
12937 }
12938 else
12939 *diff = 0;
12940
12941 *diff += (bitpos1 - bitpos2) / BITS_PER_UNIT;
12942 return true;
12943 }
12944
12945 /* Simplify the floating point expression EXP when the sign of the
12946 result is not significant. Return NULL_TREE if no simplification
12947 is possible. */
12948
12949 tree
12950 fold_strip_sign_ops (tree exp)
12951 {
12952 tree arg0, arg1;
12953
12954 switch (TREE_CODE (exp))
12955 {
12956 case ABS_EXPR:
12957 case NEGATE_EXPR:
12958 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 0));
12959 return arg0 ? arg0 : TREE_OPERAND (exp, 0);
12960
12961 case MULT_EXPR:
12962 case RDIV_EXPR:
12963 if (HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (TREE_TYPE (exp))))
12964 return NULL_TREE;
12965 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 0));
12966 arg1 = fold_strip_sign_ops (TREE_OPERAND (exp, 1));
12967 if (arg0 != NULL_TREE || arg1 != NULL_TREE)
12968 return fold_build2 (TREE_CODE (exp), TREE_TYPE (exp),
12969 arg0 ? arg0 : TREE_OPERAND (exp, 0),
12970 arg1 ? arg1 : TREE_OPERAND (exp, 1));
12971 break;
12972
12973 default:
12974 break;
12975 }
12976 return NULL_TREE;
12977 }
12978