Change default for -msave-toc-indirect
[official-gcc.git] / gcc / fold-const.c
blob5807a5533ba208ae88b5282544068d3b0ed419d6
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, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /*@@ This file should be rewritten to use an arbitrary precision
23 @@ representation for "struct tree_int_cst" and "struct tree_real_cst".
24 @@ Perhaps the routines could also be used for bc/dc, and made a lib.
25 @@ The routines that translate from the ap rep should
26 @@ warn if precision et. al. is lost.
27 @@ This would also make life easier when this technology is used
28 @@ for cross-compilers. */
30 /* The entry points in this file are fold, size_int_wide and size_binop.
32 fold takes a tree as argument and returns a simplified tree.
34 size_binop takes a tree code for an arithmetic operation
35 and two operands that are trees, and produces a tree for the
36 result, assuming the type comes from `sizetype'.
38 size_int takes an integer value, and creates a tree constant
39 with type from `sizetype'.
41 Note: Since the folders get called on non-gimple code as well as
42 gimple code, we need to handle GIMPLE tuples as well as their
43 corresponding tree equivalents. */
45 #include "config.h"
46 #include "system.h"
47 #include "coretypes.h"
48 #include "tm.h"
49 #include "flags.h"
50 #include "tree.h"
51 #include "realmpfr.h"
52 #include "rtl.h"
53 #include "expr.h"
54 #include "tm_p.h"
55 #include "target.h"
56 #include "diagnostic-core.h"
57 #include "intl.h"
58 #include "ggc.h"
59 #include "hashtab.h"
60 #include "langhooks.h"
61 #include "md5.h"
62 #include "gimple.h"
63 #include "tree-flow.h"
65 /* Nonzero if we are folding constants inside an initializer; zero
66 otherwise. */
67 int folding_initializer = 0;
69 /* The following constants represent a bit based encoding of GCC's
70 comparison operators. This encoding simplifies transformations
71 on relational comparison operators, such as AND and OR. */
72 enum comparison_code {
73 COMPCODE_FALSE = 0,
74 COMPCODE_LT = 1,
75 COMPCODE_EQ = 2,
76 COMPCODE_LE = 3,
77 COMPCODE_GT = 4,
78 COMPCODE_LTGT = 5,
79 COMPCODE_GE = 6,
80 COMPCODE_ORD = 7,
81 COMPCODE_UNORD = 8,
82 COMPCODE_UNLT = 9,
83 COMPCODE_UNEQ = 10,
84 COMPCODE_UNLE = 11,
85 COMPCODE_UNGT = 12,
86 COMPCODE_NE = 13,
87 COMPCODE_UNGE = 14,
88 COMPCODE_TRUE = 15
91 static bool negate_mathfn_p (enum built_in_function);
92 static bool negate_expr_p (tree);
93 static tree negate_expr (tree);
94 static tree split_tree (tree, enum tree_code, tree *, tree *, tree *, int);
95 static tree associate_trees (location_t, tree, tree, enum tree_code, tree);
96 static tree const_binop (enum tree_code, tree, tree);
97 static enum comparison_code comparison_to_compcode (enum tree_code);
98 static enum tree_code compcode_to_comparison (enum comparison_code);
99 static int operand_equal_for_comparison_p (tree, tree, tree);
100 static int twoval_comparison_p (tree, tree *, tree *, int *);
101 static tree eval_subst (location_t, tree, tree, tree, tree, tree);
102 static tree pedantic_omit_one_operand_loc (location_t, tree, tree, tree);
103 static tree distribute_bit_expr (location_t, enum tree_code, tree, tree, tree);
104 static tree make_bit_field_ref (location_t, tree, tree,
105 HOST_WIDE_INT, HOST_WIDE_INT, int);
106 static tree optimize_bit_field_compare (location_t, enum tree_code,
107 tree, tree, tree);
108 static tree decode_field_reference (location_t, tree, HOST_WIDE_INT *,
109 HOST_WIDE_INT *,
110 enum machine_mode *, int *, int *,
111 tree *, tree *);
112 static int all_ones_mask_p (const_tree, int);
113 static tree sign_bit_p (tree, const_tree);
114 static int simple_operand_p (const_tree);
115 static tree range_binop (enum tree_code, tree, tree, int, tree, int);
116 static tree range_predecessor (tree);
117 static tree range_successor (tree);
118 extern tree make_range (tree, int *, tree *, tree *, bool *);
119 extern bool merge_ranges (int *, tree *, tree *, int, tree, tree, int,
120 tree, tree);
121 static tree fold_range_test (location_t, enum tree_code, tree, tree, tree);
122 static tree fold_cond_expr_with_comparison (location_t, tree, tree, tree, tree);
123 static tree unextend (tree, int, int, tree);
124 static tree fold_truthop (location_t, enum tree_code, tree, tree, tree);
125 static tree optimize_minmax_comparison (location_t, enum tree_code,
126 tree, tree, tree);
127 static tree extract_muldiv (tree, tree, enum tree_code, tree, bool *);
128 static tree extract_muldiv_1 (tree, tree, enum tree_code, tree, bool *);
129 static tree fold_binary_op_with_conditional_arg (location_t,
130 enum tree_code, tree,
131 tree, tree,
132 tree, tree, int);
133 static tree fold_mathfn_compare (location_t,
134 enum built_in_function, enum tree_code,
135 tree, tree, tree);
136 static tree fold_inf_compare (location_t, enum tree_code, tree, tree, tree);
137 static tree fold_div_compare (location_t, enum tree_code, tree, tree, tree);
138 static bool reorder_operands_p (const_tree, const_tree);
139 static tree fold_negate_const (tree, tree);
140 static tree fold_not_const (const_tree, tree);
141 static tree fold_relational_const (enum tree_code, tree, tree, tree);
142 static tree fold_convert_const (enum tree_code, tree, tree);
144 /* Return EXPR_LOCATION of T if it is not UNKNOWN_LOCATION.
145 Otherwise, return LOC. */
147 static location_t
148 expr_location_or (tree t, location_t loc)
150 location_t tloc = EXPR_LOCATION (t);
151 return tloc != UNKNOWN_LOCATION ? tloc : loc;
154 /* Similar to protected_set_expr_location, but never modify x in place,
155 if location can and needs to be set, unshare it. */
157 static inline tree
158 protected_set_expr_location_unshare (tree x, location_t loc)
160 if (CAN_HAVE_LOCATION_P (x)
161 && EXPR_LOCATION (x) != loc
162 && !(TREE_CODE (x) == SAVE_EXPR
163 || TREE_CODE (x) == TARGET_EXPR
164 || TREE_CODE (x) == BIND_EXPR))
166 x = copy_node (x);
167 SET_EXPR_LOCATION (x, loc);
169 return x;
173 /* We know that A1 + B1 = SUM1, using 2's complement arithmetic and ignoring
174 overflow. Suppose A, B and SUM have the same respective signs as A1, B1,
175 and SUM1. Then this yields nonzero if overflow occurred during the
176 addition.
178 Overflow occurs if A and B have the same sign, but A and SUM differ in
179 sign. Use `^' to test whether signs differ, and `< 0' to isolate the
180 sign. */
181 #define OVERFLOW_SUM_SIGN(a, b, sum) ((~((a) ^ (b)) & ((a) ^ (sum))) < 0)
183 /* If ARG2 divides ARG1 with zero remainder, carries out the division
184 of type CODE and returns the quotient.
185 Otherwise returns NULL_TREE. */
187 tree
188 div_if_zero_remainder (enum tree_code code, const_tree arg1, const_tree arg2)
190 double_int quo, rem;
191 int uns;
193 /* The sign of the division is according to operand two, that
194 does the correct thing for POINTER_PLUS_EXPR where we want
195 a signed division. */
196 uns = TYPE_UNSIGNED (TREE_TYPE (arg2));
197 if (TREE_CODE (TREE_TYPE (arg2)) == INTEGER_TYPE
198 && TYPE_IS_SIZETYPE (TREE_TYPE (arg2)))
199 uns = false;
201 quo = double_int_divmod (tree_to_double_int (arg1),
202 tree_to_double_int (arg2),
203 uns, code, &rem);
205 if (double_int_zero_p (rem))
206 return build_int_cst_wide (TREE_TYPE (arg1), quo.low, quo.high);
208 return NULL_TREE;
211 /* This is nonzero if we should defer warnings about undefined
212 overflow. This facility exists because these warnings are a
213 special case. The code to estimate loop iterations does not want
214 to issue any warnings, since it works with expressions which do not
215 occur in user code. Various bits of cleanup code call fold(), but
216 only use the result if it has certain characteristics (e.g., is a
217 constant); that code only wants to issue a warning if the result is
218 used. */
220 static int fold_deferring_overflow_warnings;
222 /* If a warning about undefined overflow is deferred, this is the
223 warning. Note that this may cause us to turn two warnings into
224 one, but that is fine since it is sufficient to only give one
225 warning per expression. */
227 static const char* fold_deferred_overflow_warning;
229 /* If a warning about undefined overflow is deferred, this is the
230 level at which the warning should be emitted. */
232 static enum warn_strict_overflow_code fold_deferred_overflow_code;
234 /* Start deferring overflow warnings. We could use a stack here to
235 permit nested calls, but at present it is not necessary. */
237 void
238 fold_defer_overflow_warnings (void)
240 ++fold_deferring_overflow_warnings;
243 /* Stop deferring overflow warnings. If there is a pending warning,
244 and ISSUE is true, then issue the warning if appropriate. STMT is
245 the statement with which the warning should be associated (used for
246 location information); STMT may be NULL. CODE is the level of the
247 warning--a warn_strict_overflow_code value. This function will use
248 the smaller of CODE and the deferred code when deciding whether to
249 issue the warning. CODE may be zero to mean to always use the
250 deferred code. */
252 void
253 fold_undefer_overflow_warnings (bool issue, const_gimple stmt, int code)
255 const char *warnmsg;
256 location_t locus;
258 gcc_assert (fold_deferring_overflow_warnings > 0);
259 --fold_deferring_overflow_warnings;
260 if (fold_deferring_overflow_warnings > 0)
262 if (fold_deferred_overflow_warning != NULL
263 && code != 0
264 && code < (int) fold_deferred_overflow_code)
265 fold_deferred_overflow_code = (enum warn_strict_overflow_code) code;
266 return;
269 warnmsg = fold_deferred_overflow_warning;
270 fold_deferred_overflow_warning = NULL;
272 if (!issue || warnmsg == NULL)
273 return;
275 if (gimple_no_warning_p (stmt))
276 return;
278 /* Use the smallest code level when deciding to issue the
279 warning. */
280 if (code == 0 || code > (int) fold_deferred_overflow_code)
281 code = fold_deferred_overflow_code;
283 if (!issue_strict_overflow_warning (code))
284 return;
286 if (stmt == NULL)
287 locus = input_location;
288 else
289 locus = gimple_location (stmt);
290 warning_at (locus, OPT_Wstrict_overflow, "%s", warnmsg);
293 /* Stop deferring overflow warnings, ignoring any deferred
294 warnings. */
296 void
297 fold_undefer_and_ignore_overflow_warnings (void)
299 fold_undefer_overflow_warnings (false, NULL, 0);
302 /* Whether we are deferring overflow warnings. */
304 bool
305 fold_deferring_overflow_warnings_p (void)
307 return fold_deferring_overflow_warnings > 0;
310 /* This is called when we fold something based on the fact that signed
311 overflow is undefined. */
313 static void
314 fold_overflow_warning (const char* gmsgid, enum warn_strict_overflow_code wc)
316 if (fold_deferring_overflow_warnings > 0)
318 if (fold_deferred_overflow_warning == NULL
319 || wc < fold_deferred_overflow_code)
321 fold_deferred_overflow_warning = gmsgid;
322 fold_deferred_overflow_code = wc;
325 else if (issue_strict_overflow_warning (wc))
326 warning (OPT_Wstrict_overflow, gmsgid);
329 /* Return true if the built-in mathematical function specified by CODE
330 is odd, i.e. -f(x) == f(-x). */
332 static bool
333 negate_mathfn_p (enum built_in_function code)
335 switch (code)
337 CASE_FLT_FN (BUILT_IN_ASIN):
338 CASE_FLT_FN (BUILT_IN_ASINH):
339 CASE_FLT_FN (BUILT_IN_ATAN):
340 CASE_FLT_FN (BUILT_IN_ATANH):
341 CASE_FLT_FN (BUILT_IN_CASIN):
342 CASE_FLT_FN (BUILT_IN_CASINH):
343 CASE_FLT_FN (BUILT_IN_CATAN):
344 CASE_FLT_FN (BUILT_IN_CATANH):
345 CASE_FLT_FN (BUILT_IN_CBRT):
346 CASE_FLT_FN (BUILT_IN_CPROJ):
347 CASE_FLT_FN (BUILT_IN_CSIN):
348 CASE_FLT_FN (BUILT_IN_CSINH):
349 CASE_FLT_FN (BUILT_IN_CTAN):
350 CASE_FLT_FN (BUILT_IN_CTANH):
351 CASE_FLT_FN (BUILT_IN_ERF):
352 CASE_FLT_FN (BUILT_IN_LLROUND):
353 CASE_FLT_FN (BUILT_IN_LROUND):
354 CASE_FLT_FN (BUILT_IN_ROUND):
355 CASE_FLT_FN (BUILT_IN_SIN):
356 CASE_FLT_FN (BUILT_IN_SINH):
357 CASE_FLT_FN (BUILT_IN_TAN):
358 CASE_FLT_FN (BUILT_IN_TANH):
359 CASE_FLT_FN (BUILT_IN_TRUNC):
360 return true;
362 CASE_FLT_FN (BUILT_IN_LLRINT):
363 CASE_FLT_FN (BUILT_IN_LRINT):
364 CASE_FLT_FN (BUILT_IN_NEARBYINT):
365 CASE_FLT_FN (BUILT_IN_RINT):
366 return !flag_rounding_math;
368 default:
369 break;
371 return false;
374 /* Check whether we may negate an integer constant T without causing
375 overflow. */
377 bool
378 may_negate_without_overflow_p (const_tree t)
380 unsigned HOST_WIDE_INT val;
381 unsigned int prec;
382 tree type;
384 gcc_assert (TREE_CODE (t) == INTEGER_CST);
386 type = TREE_TYPE (t);
387 if (TYPE_UNSIGNED (type))
388 return false;
390 prec = TYPE_PRECISION (type);
391 if (prec > HOST_BITS_PER_WIDE_INT)
393 if (TREE_INT_CST_LOW (t) != 0)
394 return true;
395 prec -= HOST_BITS_PER_WIDE_INT;
396 val = TREE_INT_CST_HIGH (t);
398 else
399 val = TREE_INT_CST_LOW (t);
400 if (prec < HOST_BITS_PER_WIDE_INT)
401 val &= ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
402 return val != ((unsigned HOST_WIDE_INT) 1 << (prec - 1));
405 /* Determine whether an expression T can be cheaply negated using
406 the function negate_expr without introducing undefined overflow. */
408 static bool
409 negate_expr_p (tree t)
411 tree type;
413 if (t == 0)
414 return false;
416 type = TREE_TYPE (t);
418 STRIP_SIGN_NOPS (t);
419 switch (TREE_CODE (t))
421 case INTEGER_CST:
422 if (TYPE_OVERFLOW_WRAPS (type))
423 return true;
425 /* Check that -CST will not overflow type. */
426 return may_negate_without_overflow_p (t);
427 case BIT_NOT_EXPR:
428 return (INTEGRAL_TYPE_P (type)
429 && TYPE_OVERFLOW_WRAPS (type));
431 case FIXED_CST:
432 case NEGATE_EXPR:
433 return true;
435 case REAL_CST:
436 /* We want to canonicalize to positive real constants. Pretend
437 that only negative ones can be easily negated. */
438 return REAL_VALUE_NEGATIVE (TREE_REAL_CST (t));
440 case COMPLEX_CST:
441 return negate_expr_p (TREE_REALPART (t))
442 && negate_expr_p (TREE_IMAGPART (t));
444 case COMPLEX_EXPR:
445 return negate_expr_p (TREE_OPERAND (t, 0))
446 && negate_expr_p (TREE_OPERAND (t, 1));
448 case CONJ_EXPR:
449 return negate_expr_p (TREE_OPERAND (t, 0));
451 case PLUS_EXPR:
452 if (HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type))
453 || HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
454 return false;
455 /* -(A + B) -> (-B) - A. */
456 if (negate_expr_p (TREE_OPERAND (t, 1))
457 && reorder_operands_p (TREE_OPERAND (t, 0),
458 TREE_OPERAND (t, 1)))
459 return true;
460 /* -(A + B) -> (-A) - B. */
461 return negate_expr_p (TREE_OPERAND (t, 0));
463 case MINUS_EXPR:
464 /* We can't turn -(A-B) into B-A when we honor signed zeros. */
465 return !HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type))
466 && !HONOR_SIGNED_ZEROS (TYPE_MODE (type))
467 && reorder_operands_p (TREE_OPERAND (t, 0),
468 TREE_OPERAND (t, 1));
470 case MULT_EXPR:
471 if (TYPE_UNSIGNED (TREE_TYPE (t)))
472 break;
474 /* Fall through. */
476 case RDIV_EXPR:
477 if (! HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (TREE_TYPE (t))))
478 return negate_expr_p (TREE_OPERAND (t, 1))
479 || negate_expr_p (TREE_OPERAND (t, 0));
480 break;
482 case TRUNC_DIV_EXPR:
483 case ROUND_DIV_EXPR:
484 case FLOOR_DIV_EXPR:
485 case CEIL_DIV_EXPR:
486 case EXACT_DIV_EXPR:
487 /* In general we can't negate A / B, because if A is INT_MIN and
488 B is 1, we may turn this into INT_MIN / -1 which is undefined
489 and actually traps on some architectures. But if overflow is
490 undefined, we can negate, because - (INT_MIN / 1) is an
491 overflow. */
492 if (INTEGRAL_TYPE_P (TREE_TYPE (t))
493 && !TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (t)))
494 break;
495 return negate_expr_p (TREE_OPERAND (t, 1))
496 || negate_expr_p (TREE_OPERAND (t, 0));
498 case NOP_EXPR:
499 /* Negate -((double)float) as (double)(-float). */
500 if (TREE_CODE (type) == REAL_TYPE)
502 tree tem = strip_float_extensions (t);
503 if (tem != t)
504 return negate_expr_p (tem);
506 break;
508 case CALL_EXPR:
509 /* Negate -f(x) as f(-x). */
510 if (negate_mathfn_p (builtin_mathfn_code (t)))
511 return negate_expr_p (CALL_EXPR_ARG (t, 0));
512 break;
514 case RSHIFT_EXPR:
515 /* Optimize -((int)x >> 31) into (unsigned)x >> 31. */
516 if (TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST)
518 tree op1 = TREE_OPERAND (t, 1);
519 if (TREE_INT_CST_HIGH (op1) == 0
520 && (unsigned HOST_WIDE_INT) (TYPE_PRECISION (type) - 1)
521 == TREE_INT_CST_LOW (op1))
522 return true;
524 break;
526 default:
527 break;
529 return false;
532 /* Given T, an expression, return a folded tree for -T or NULL_TREE, if no
533 simplification is possible.
534 If negate_expr_p would return true for T, NULL_TREE will never be
535 returned. */
537 static tree
538 fold_negate_expr (location_t loc, tree t)
540 tree type = TREE_TYPE (t);
541 tree tem;
543 switch (TREE_CODE (t))
545 /* Convert - (~A) to A + 1. */
546 case BIT_NOT_EXPR:
547 if (INTEGRAL_TYPE_P (type))
548 return fold_build2_loc (loc, PLUS_EXPR, type, TREE_OPERAND (t, 0),
549 build_int_cst (type, 1));
550 break;
552 case INTEGER_CST:
553 tem = fold_negate_const (t, type);
554 if (TREE_OVERFLOW (tem) == TREE_OVERFLOW (t)
555 || !TYPE_OVERFLOW_TRAPS (type))
556 return tem;
557 break;
559 case REAL_CST:
560 tem = fold_negate_const (t, type);
561 /* Two's complement FP formats, such as c4x, may overflow. */
562 if (!TREE_OVERFLOW (tem) || !flag_trapping_math)
563 return tem;
564 break;
566 case FIXED_CST:
567 tem = fold_negate_const (t, type);
568 return tem;
570 case COMPLEX_CST:
572 tree rpart = negate_expr (TREE_REALPART (t));
573 tree ipart = negate_expr (TREE_IMAGPART (t));
575 if ((TREE_CODE (rpart) == REAL_CST
576 && TREE_CODE (ipart) == REAL_CST)
577 || (TREE_CODE (rpart) == INTEGER_CST
578 && TREE_CODE (ipart) == INTEGER_CST))
579 return build_complex (type, rpart, ipart);
581 break;
583 case COMPLEX_EXPR:
584 if (negate_expr_p (t))
585 return fold_build2_loc (loc, COMPLEX_EXPR, type,
586 fold_negate_expr (loc, TREE_OPERAND (t, 0)),
587 fold_negate_expr (loc, TREE_OPERAND (t, 1)));
588 break;
590 case CONJ_EXPR:
591 if (negate_expr_p (t))
592 return fold_build1_loc (loc, CONJ_EXPR, type,
593 fold_negate_expr (loc, TREE_OPERAND (t, 0)));
594 break;
596 case NEGATE_EXPR:
597 return TREE_OPERAND (t, 0);
599 case PLUS_EXPR:
600 if (!HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type))
601 && !HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
603 /* -(A + B) -> (-B) - A. */
604 if (negate_expr_p (TREE_OPERAND (t, 1))
605 && reorder_operands_p (TREE_OPERAND (t, 0),
606 TREE_OPERAND (t, 1)))
608 tem = negate_expr (TREE_OPERAND (t, 1));
609 return fold_build2_loc (loc, MINUS_EXPR, type,
610 tem, TREE_OPERAND (t, 0));
613 /* -(A + B) -> (-A) - B. */
614 if (negate_expr_p (TREE_OPERAND (t, 0)))
616 tem = negate_expr (TREE_OPERAND (t, 0));
617 return fold_build2_loc (loc, MINUS_EXPR, type,
618 tem, TREE_OPERAND (t, 1));
621 break;
623 case MINUS_EXPR:
624 /* - (A - B) -> B - A */
625 if (!HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type))
626 && !HONOR_SIGNED_ZEROS (TYPE_MODE (type))
627 && reorder_operands_p (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1)))
628 return fold_build2_loc (loc, MINUS_EXPR, type,
629 TREE_OPERAND (t, 1), TREE_OPERAND (t, 0));
630 break;
632 case MULT_EXPR:
633 if (TYPE_UNSIGNED (type))
634 break;
636 /* Fall through. */
638 case RDIV_EXPR:
639 if (! HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type)))
641 tem = TREE_OPERAND (t, 1);
642 if (negate_expr_p (tem))
643 return fold_build2_loc (loc, TREE_CODE (t), type,
644 TREE_OPERAND (t, 0), negate_expr (tem));
645 tem = TREE_OPERAND (t, 0);
646 if (negate_expr_p (tem))
647 return fold_build2_loc (loc, TREE_CODE (t), type,
648 negate_expr (tem), TREE_OPERAND (t, 1));
650 break;
652 case TRUNC_DIV_EXPR:
653 case ROUND_DIV_EXPR:
654 case FLOOR_DIV_EXPR:
655 case CEIL_DIV_EXPR:
656 case EXACT_DIV_EXPR:
657 /* In general we can't negate A / B, because if A is INT_MIN and
658 B is 1, we may turn this into INT_MIN / -1 which is undefined
659 and actually traps on some architectures. But if overflow is
660 undefined, we can negate, because - (INT_MIN / 1) is an
661 overflow. */
662 if (!INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_UNDEFINED (type))
664 const char * const warnmsg = G_("assuming signed overflow does not "
665 "occur when negating a division");
666 tem = TREE_OPERAND (t, 1);
667 if (negate_expr_p (tem))
669 if (INTEGRAL_TYPE_P (type)
670 && (TREE_CODE (tem) != INTEGER_CST
671 || integer_onep (tem)))
672 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MISC);
673 return fold_build2_loc (loc, TREE_CODE (t), type,
674 TREE_OPERAND (t, 0), negate_expr (tem));
676 tem = TREE_OPERAND (t, 0);
677 if (negate_expr_p (tem))
679 if (INTEGRAL_TYPE_P (type)
680 && (TREE_CODE (tem) != INTEGER_CST
681 || tree_int_cst_equal (tem, TYPE_MIN_VALUE (type))))
682 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MISC);
683 return fold_build2_loc (loc, TREE_CODE (t), type,
684 negate_expr (tem), TREE_OPERAND (t, 1));
687 break;
689 case NOP_EXPR:
690 /* Convert -((double)float) into (double)(-float). */
691 if (TREE_CODE (type) == REAL_TYPE)
693 tem = strip_float_extensions (t);
694 if (tem != t && negate_expr_p (tem))
695 return fold_convert_loc (loc, type, negate_expr (tem));
697 break;
699 case CALL_EXPR:
700 /* Negate -f(x) as f(-x). */
701 if (negate_mathfn_p (builtin_mathfn_code (t))
702 && negate_expr_p (CALL_EXPR_ARG (t, 0)))
704 tree fndecl, arg;
706 fndecl = get_callee_fndecl (t);
707 arg = negate_expr (CALL_EXPR_ARG (t, 0));
708 return build_call_expr_loc (loc, fndecl, 1, arg);
710 break;
712 case RSHIFT_EXPR:
713 /* Optimize -((int)x >> 31) into (unsigned)x >> 31. */
714 if (TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST)
716 tree op1 = TREE_OPERAND (t, 1);
717 if (TREE_INT_CST_HIGH (op1) == 0
718 && (unsigned HOST_WIDE_INT) (TYPE_PRECISION (type) - 1)
719 == TREE_INT_CST_LOW (op1))
721 tree ntype = TYPE_UNSIGNED (type)
722 ? signed_type_for (type)
723 : unsigned_type_for (type);
724 tree temp = fold_convert_loc (loc, ntype, TREE_OPERAND (t, 0));
725 temp = fold_build2_loc (loc, RSHIFT_EXPR, ntype, temp, op1);
726 return fold_convert_loc (loc, type, temp);
729 break;
731 default:
732 break;
735 return NULL_TREE;
738 /* Like fold_negate_expr, but return a NEGATE_EXPR tree, if T can not be
739 negated in a simpler way. Also allow for T to be NULL_TREE, in which case
740 return NULL_TREE. */
742 static tree
743 negate_expr (tree t)
745 tree type, tem;
746 location_t loc;
748 if (t == NULL_TREE)
749 return NULL_TREE;
751 loc = EXPR_LOCATION (t);
752 type = TREE_TYPE (t);
753 STRIP_SIGN_NOPS (t);
755 tem = fold_negate_expr (loc, t);
756 if (!tem)
757 tem = build1_loc (loc, NEGATE_EXPR, TREE_TYPE (t), t);
758 return fold_convert_loc (loc, type, tem);
761 /* Split a tree IN into a constant, literal and variable parts that could be
762 combined with CODE to make IN. "constant" means an expression with
763 TREE_CONSTANT but that isn't an actual constant. CODE must be a
764 commutative arithmetic operation. Store the constant part into *CONP,
765 the literal in *LITP and return the variable part. If a part isn't
766 present, set it to null. If the tree does not decompose in this way,
767 return the entire tree as the variable part and the other parts as null.
769 If CODE is PLUS_EXPR we also split trees that use MINUS_EXPR. In that
770 case, we negate an operand that was subtracted. Except if it is a
771 literal for which we use *MINUS_LITP instead.
773 If NEGATE_P is true, we are negating all of IN, again except a literal
774 for which we use *MINUS_LITP instead.
776 If IN is itself a literal or constant, return it as appropriate.
778 Note that we do not guarantee that any of the three values will be the
779 same type as IN, but they will have the same signedness and mode. */
781 static tree
782 split_tree (tree in, enum tree_code code, tree *conp, tree *litp,
783 tree *minus_litp, int negate_p)
785 tree var = 0;
787 *conp = 0;
788 *litp = 0;
789 *minus_litp = 0;
791 /* Strip any conversions that don't change the machine mode or signedness. */
792 STRIP_SIGN_NOPS (in);
794 if (TREE_CODE (in) == INTEGER_CST || TREE_CODE (in) == REAL_CST
795 || TREE_CODE (in) == FIXED_CST)
796 *litp = in;
797 else if (TREE_CODE (in) == code
798 || ((! FLOAT_TYPE_P (TREE_TYPE (in)) || flag_associative_math)
799 && ! SAT_FIXED_POINT_TYPE_P (TREE_TYPE (in))
800 /* We can associate addition and subtraction together (even
801 though the C standard doesn't say so) for integers because
802 the value is not affected. For reals, the value might be
803 affected, so we can't. */
804 && ((code == PLUS_EXPR && TREE_CODE (in) == MINUS_EXPR)
805 || (code == MINUS_EXPR && TREE_CODE (in) == PLUS_EXPR))))
807 tree op0 = TREE_OPERAND (in, 0);
808 tree op1 = TREE_OPERAND (in, 1);
809 int neg1_p = TREE_CODE (in) == MINUS_EXPR;
810 int neg_litp_p = 0, neg_conp_p = 0, neg_var_p = 0;
812 /* First see if either of the operands is a literal, then a constant. */
813 if (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST
814 || TREE_CODE (op0) == FIXED_CST)
815 *litp = op0, op0 = 0;
816 else if (TREE_CODE (op1) == INTEGER_CST || TREE_CODE (op1) == REAL_CST
817 || TREE_CODE (op1) == FIXED_CST)
818 *litp = op1, neg_litp_p = neg1_p, op1 = 0;
820 if (op0 != 0 && TREE_CONSTANT (op0))
821 *conp = op0, op0 = 0;
822 else if (op1 != 0 && TREE_CONSTANT (op1))
823 *conp = op1, neg_conp_p = neg1_p, op1 = 0;
825 /* If we haven't dealt with either operand, this is not a case we can
826 decompose. Otherwise, VAR is either of the ones remaining, if any. */
827 if (op0 != 0 && op1 != 0)
828 var = in;
829 else if (op0 != 0)
830 var = op0;
831 else
832 var = op1, neg_var_p = neg1_p;
834 /* Now do any needed negations. */
835 if (neg_litp_p)
836 *minus_litp = *litp, *litp = 0;
837 if (neg_conp_p)
838 *conp = negate_expr (*conp);
839 if (neg_var_p)
840 var = negate_expr (var);
842 else if (TREE_CONSTANT (in))
843 *conp = in;
844 else
845 var = in;
847 if (negate_p)
849 if (*litp)
850 *minus_litp = *litp, *litp = 0;
851 else if (*minus_litp)
852 *litp = *minus_litp, *minus_litp = 0;
853 *conp = negate_expr (*conp);
854 var = negate_expr (var);
857 return var;
860 /* Re-associate trees split by the above function. T1 and T2 are
861 either expressions to associate or null. Return the new
862 expression, if any. LOC is the location of the new expression. If
863 we build an operation, do it in TYPE and with CODE. */
865 static tree
866 associate_trees (location_t loc, tree t1, tree t2, enum tree_code code, tree type)
868 if (t1 == 0)
869 return t2;
870 else if (t2 == 0)
871 return t1;
873 /* If either input is CODE, a PLUS_EXPR, or a MINUS_EXPR, don't
874 try to fold this since we will have infinite recursion. But do
875 deal with any NEGATE_EXPRs. */
876 if (TREE_CODE (t1) == code || TREE_CODE (t2) == code
877 || TREE_CODE (t1) == MINUS_EXPR || TREE_CODE (t2) == MINUS_EXPR)
879 if (code == PLUS_EXPR)
881 if (TREE_CODE (t1) == NEGATE_EXPR)
882 return build2_loc (loc, MINUS_EXPR, type,
883 fold_convert_loc (loc, type, t2),
884 fold_convert_loc (loc, type,
885 TREE_OPERAND (t1, 0)));
886 else if (TREE_CODE (t2) == NEGATE_EXPR)
887 return build2_loc (loc, MINUS_EXPR, type,
888 fold_convert_loc (loc, type, t1),
889 fold_convert_loc (loc, type,
890 TREE_OPERAND (t2, 0)));
891 else if (integer_zerop (t2))
892 return fold_convert_loc (loc, type, t1);
894 else if (code == MINUS_EXPR)
896 if (integer_zerop (t2))
897 return fold_convert_loc (loc, type, t1);
900 return build2_loc (loc, code, type, fold_convert_loc (loc, type, t1),
901 fold_convert_loc (loc, type, t2));
904 return fold_build2_loc (loc, code, type, fold_convert_loc (loc, type, t1),
905 fold_convert_loc (loc, type, t2));
908 /* Check whether TYPE1 and TYPE2 are equivalent integer types, suitable
909 for use in int_const_binop, size_binop and size_diffop. */
911 static bool
912 int_binop_types_match_p (enum tree_code code, const_tree type1, const_tree type2)
914 if (TREE_CODE (type1) != INTEGER_TYPE && !POINTER_TYPE_P (type1))
915 return false;
916 if (TREE_CODE (type2) != INTEGER_TYPE && !POINTER_TYPE_P (type2))
917 return false;
919 switch (code)
921 case LSHIFT_EXPR:
922 case RSHIFT_EXPR:
923 case LROTATE_EXPR:
924 case RROTATE_EXPR:
925 return true;
927 default:
928 break;
931 return TYPE_UNSIGNED (type1) == TYPE_UNSIGNED (type2)
932 && TYPE_PRECISION (type1) == TYPE_PRECISION (type2)
933 && TYPE_MODE (type1) == TYPE_MODE (type2);
937 /* Combine two integer constants ARG1 and ARG2 under operation CODE
938 to produce a new constant. Return NULL_TREE if we don't know how
939 to evaluate CODE at compile-time. */
941 tree
942 int_const_binop (enum tree_code code, const_tree arg1, const_tree arg2)
944 double_int op1, op2, res, tmp;
945 tree t;
946 tree type = TREE_TYPE (arg1);
947 bool uns = TYPE_UNSIGNED (type);
948 bool is_sizetype
949 = (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type));
950 bool overflow = false;
952 op1 = tree_to_double_int (arg1);
953 op2 = tree_to_double_int (arg2);
955 switch (code)
957 case BIT_IOR_EXPR:
958 res = double_int_ior (op1, op2);
959 break;
961 case BIT_XOR_EXPR:
962 res = double_int_xor (op1, op2);
963 break;
965 case BIT_AND_EXPR:
966 res = double_int_and (op1, op2);
967 break;
969 case RSHIFT_EXPR:
970 res = double_int_rshift (op1, double_int_to_shwi (op2),
971 TYPE_PRECISION (type), !uns);
972 break;
974 case LSHIFT_EXPR:
975 /* It's unclear from the C standard whether shifts can overflow.
976 The following code ignores overflow; perhaps a C standard
977 interpretation ruling is needed. */
978 res = double_int_lshift (op1, double_int_to_shwi (op2),
979 TYPE_PRECISION (type), !uns);
980 break;
982 case RROTATE_EXPR:
983 res = double_int_rrotate (op1, double_int_to_shwi (op2),
984 TYPE_PRECISION (type));
985 break;
987 case LROTATE_EXPR:
988 res = double_int_lrotate (op1, double_int_to_shwi (op2),
989 TYPE_PRECISION (type));
990 break;
992 case PLUS_EXPR:
993 overflow = add_double (op1.low, op1.high, op2.low, op2.high,
994 &res.low, &res.high);
995 break;
997 case MINUS_EXPR:
998 neg_double (op2.low, op2.high, &res.low, &res.high);
999 add_double (op1.low, op1.high, res.low, res.high,
1000 &res.low, &res.high);
1001 overflow = OVERFLOW_SUM_SIGN (res.high, op2.high, op1.high);
1002 break;
1004 case MULT_EXPR:
1005 overflow = mul_double (op1.low, op1.high, op2.low, op2.high,
1006 &res.low, &res.high);
1007 break;
1009 case TRUNC_DIV_EXPR:
1010 case FLOOR_DIV_EXPR: case CEIL_DIV_EXPR:
1011 case EXACT_DIV_EXPR:
1012 /* This is a shortcut for a common special case. */
1013 if (op2.high == 0 && (HOST_WIDE_INT) op2.low > 0
1014 && !TREE_OVERFLOW (arg1)
1015 && !TREE_OVERFLOW (arg2)
1016 && op1.high == 0 && (HOST_WIDE_INT) op1.low >= 0)
1018 if (code == CEIL_DIV_EXPR)
1019 op1.low += op2.low - 1;
1021 res.low = op1.low / op2.low, res.high = 0;
1022 break;
1025 /* ... fall through ... */
1027 case ROUND_DIV_EXPR:
1028 if (double_int_zero_p (op2))
1029 return NULL_TREE;
1030 if (double_int_one_p (op2))
1032 res = op1;
1033 break;
1035 if (double_int_equal_p (op1, op2)
1036 && ! double_int_zero_p (op1))
1038 res = double_int_one;
1039 break;
1041 overflow = div_and_round_double (code, uns,
1042 op1.low, op1.high, op2.low, op2.high,
1043 &res.low, &res.high,
1044 &tmp.low, &tmp.high);
1045 break;
1047 case TRUNC_MOD_EXPR:
1048 case FLOOR_MOD_EXPR: case CEIL_MOD_EXPR:
1049 /* This is a shortcut for a common special case. */
1050 if (op2.high == 0 && (HOST_WIDE_INT) op2.low > 0
1051 && !TREE_OVERFLOW (arg1)
1052 && !TREE_OVERFLOW (arg2)
1053 && op1.high == 0 && (HOST_WIDE_INT) op1.low >= 0)
1055 if (code == CEIL_MOD_EXPR)
1056 op1.low += op2.low - 1;
1057 res.low = op1.low % op2.low, res.high = 0;
1058 break;
1061 /* ... fall through ... */
1063 case ROUND_MOD_EXPR:
1064 if (double_int_zero_p (op2))
1065 return NULL_TREE;
1066 overflow = div_and_round_double (code, uns,
1067 op1.low, op1.high, op2.low, op2.high,
1068 &tmp.low, &tmp.high,
1069 &res.low, &res.high);
1070 break;
1072 case MIN_EXPR:
1073 res = double_int_min (op1, op2, uns);
1074 break;
1076 case MAX_EXPR:
1077 res = double_int_max (op1, op2, uns);
1078 break;
1080 default:
1081 return NULL_TREE;
1084 t = force_fit_type_double (TREE_TYPE (arg1), res, 1,
1085 ((!uns || is_sizetype) && overflow)
1086 | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2));
1088 return t;
1091 /* Combine two constants ARG1 and ARG2 under operation CODE to produce a new
1092 constant. We assume ARG1 and ARG2 have the same data type, or at least
1093 are the same kind of constant and the same machine mode. Return zero if
1094 combining the constants is not allowed in the current operating mode. */
1096 static tree
1097 const_binop (enum tree_code code, tree arg1, tree arg2)
1099 /* Sanity check for the recursive cases. */
1100 if (!arg1 || !arg2)
1101 return NULL_TREE;
1103 STRIP_NOPS (arg1);
1104 STRIP_NOPS (arg2);
1106 if (TREE_CODE (arg1) == INTEGER_CST)
1107 return int_const_binop (code, arg1, arg2);
1109 if (TREE_CODE (arg1) == REAL_CST)
1111 enum machine_mode mode;
1112 REAL_VALUE_TYPE d1;
1113 REAL_VALUE_TYPE d2;
1114 REAL_VALUE_TYPE value;
1115 REAL_VALUE_TYPE result;
1116 bool inexact;
1117 tree t, type;
1119 /* The following codes are handled by real_arithmetic. */
1120 switch (code)
1122 case PLUS_EXPR:
1123 case MINUS_EXPR:
1124 case MULT_EXPR:
1125 case RDIV_EXPR:
1126 case MIN_EXPR:
1127 case MAX_EXPR:
1128 break;
1130 default:
1131 return NULL_TREE;
1134 d1 = TREE_REAL_CST (arg1);
1135 d2 = TREE_REAL_CST (arg2);
1137 type = TREE_TYPE (arg1);
1138 mode = TYPE_MODE (type);
1140 /* Don't perform operation if we honor signaling NaNs and
1141 either operand is a NaN. */
1142 if (HONOR_SNANS (mode)
1143 && (REAL_VALUE_ISNAN (d1) || REAL_VALUE_ISNAN (d2)))
1144 return NULL_TREE;
1146 /* Don't perform operation if it would raise a division
1147 by zero exception. */
1148 if (code == RDIV_EXPR
1149 && REAL_VALUES_EQUAL (d2, dconst0)
1150 && (flag_trapping_math || ! MODE_HAS_INFINITIES (mode)))
1151 return NULL_TREE;
1153 /* If either operand is a NaN, just return it. Otherwise, set up
1154 for floating-point trap; we return an overflow. */
1155 if (REAL_VALUE_ISNAN (d1))
1156 return arg1;
1157 else if (REAL_VALUE_ISNAN (d2))
1158 return arg2;
1160 inexact = real_arithmetic (&value, code, &d1, &d2);
1161 real_convert (&result, mode, &value);
1163 /* Don't constant fold this floating point operation if
1164 the result has overflowed and flag_trapping_math. */
1165 if (flag_trapping_math
1166 && MODE_HAS_INFINITIES (mode)
1167 && REAL_VALUE_ISINF (result)
1168 && !REAL_VALUE_ISINF (d1)
1169 && !REAL_VALUE_ISINF (d2))
1170 return NULL_TREE;
1172 /* Don't constant fold this floating point operation if the
1173 result may dependent upon the run-time rounding mode and
1174 flag_rounding_math is set, or if GCC's software emulation
1175 is unable to accurately represent the result. */
1176 if ((flag_rounding_math
1177 || (MODE_COMPOSITE_P (mode) && !flag_unsafe_math_optimizations))
1178 && (inexact || !real_identical (&result, &value)))
1179 return NULL_TREE;
1181 t = build_real (type, result);
1183 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2);
1184 return t;
1187 if (TREE_CODE (arg1) == FIXED_CST)
1189 FIXED_VALUE_TYPE f1;
1190 FIXED_VALUE_TYPE f2;
1191 FIXED_VALUE_TYPE result;
1192 tree t, type;
1193 int sat_p;
1194 bool overflow_p;
1196 /* The following codes are handled by fixed_arithmetic. */
1197 switch (code)
1199 case PLUS_EXPR:
1200 case MINUS_EXPR:
1201 case MULT_EXPR:
1202 case TRUNC_DIV_EXPR:
1203 f2 = TREE_FIXED_CST (arg2);
1204 break;
1206 case LSHIFT_EXPR:
1207 case RSHIFT_EXPR:
1208 f2.data.high = TREE_INT_CST_HIGH (arg2);
1209 f2.data.low = TREE_INT_CST_LOW (arg2);
1210 f2.mode = SImode;
1211 break;
1213 default:
1214 return NULL_TREE;
1217 f1 = TREE_FIXED_CST (arg1);
1218 type = TREE_TYPE (arg1);
1219 sat_p = TYPE_SATURATING (type);
1220 overflow_p = fixed_arithmetic (&result, code, &f1, &f2, sat_p);
1221 t = build_fixed (type, result);
1222 /* Propagate overflow flags. */
1223 if (overflow_p | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2))
1224 TREE_OVERFLOW (t) = 1;
1225 return t;
1228 if (TREE_CODE (arg1) == COMPLEX_CST)
1230 tree type = TREE_TYPE (arg1);
1231 tree r1 = TREE_REALPART (arg1);
1232 tree i1 = TREE_IMAGPART (arg1);
1233 tree r2 = TREE_REALPART (arg2);
1234 tree i2 = TREE_IMAGPART (arg2);
1235 tree real, imag;
1237 switch (code)
1239 case PLUS_EXPR:
1240 case MINUS_EXPR:
1241 real = const_binop (code, r1, r2);
1242 imag = const_binop (code, i1, i2);
1243 break;
1245 case MULT_EXPR:
1246 if (COMPLEX_FLOAT_TYPE_P (type))
1247 return do_mpc_arg2 (arg1, arg2, type,
1248 /* do_nonfinite= */ folding_initializer,
1249 mpc_mul);
1251 real = const_binop (MINUS_EXPR,
1252 const_binop (MULT_EXPR, r1, r2),
1253 const_binop (MULT_EXPR, i1, i2));
1254 imag = const_binop (PLUS_EXPR,
1255 const_binop (MULT_EXPR, r1, i2),
1256 const_binop (MULT_EXPR, i1, r2));
1257 break;
1259 case RDIV_EXPR:
1260 if (COMPLEX_FLOAT_TYPE_P (type))
1261 return do_mpc_arg2 (arg1, arg2, type,
1262 /* do_nonfinite= */ folding_initializer,
1263 mpc_div);
1264 /* Fallthru ... */
1265 case TRUNC_DIV_EXPR:
1266 case CEIL_DIV_EXPR:
1267 case FLOOR_DIV_EXPR:
1268 case ROUND_DIV_EXPR:
1269 if (flag_complex_method == 0)
1271 /* Keep this algorithm in sync with
1272 tree-complex.c:expand_complex_div_straight().
1274 Expand complex division to scalars, straightforward algorithm.
1275 a / b = ((ar*br + ai*bi)/t) + i((ai*br - ar*bi)/t)
1276 t = br*br + bi*bi
1278 tree magsquared
1279 = const_binop (PLUS_EXPR,
1280 const_binop (MULT_EXPR, r2, r2),
1281 const_binop (MULT_EXPR, i2, i2));
1282 tree t1
1283 = const_binop (PLUS_EXPR,
1284 const_binop (MULT_EXPR, r1, r2),
1285 const_binop (MULT_EXPR, i1, i2));
1286 tree t2
1287 = const_binop (MINUS_EXPR,
1288 const_binop (MULT_EXPR, i1, r2),
1289 const_binop (MULT_EXPR, r1, i2));
1291 real = const_binop (code, t1, magsquared);
1292 imag = const_binop (code, t2, magsquared);
1294 else
1296 /* Keep this algorithm in sync with
1297 tree-complex.c:expand_complex_div_wide().
1299 Expand complex division to scalars, modified algorithm to minimize
1300 overflow with wide input ranges. */
1301 tree compare = fold_build2 (LT_EXPR, boolean_type_node,
1302 fold_abs_const (r2, TREE_TYPE (type)),
1303 fold_abs_const (i2, TREE_TYPE (type)));
1305 if (integer_nonzerop (compare))
1307 /* In the TRUE branch, we compute
1308 ratio = br/bi;
1309 div = (br * ratio) + bi;
1310 tr = (ar * ratio) + ai;
1311 ti = (ai * ratio) - ar;
1312 tr = tr / div;
1313 ti = ti / div; */
1314 tree ratio = const_binop (code, r2, i2);
1315 tree div = const_binop (PLUS_EXPR, i2,
1316 const_binop (MULT_EXPR, r2, ratio));
1317 real = const_binop (MULT_EXPR, r1, ratio);
1318 real = const_binop (PLUS_EXPR, real, i1);
1319 real = const_binop (code, real, div);
1321 imag = const_binop (MULT_EXPR, i1, ratio);
1322 imag = const_binop (MINUS_EXPR, imag, r1);
1323 imag = const_binop (code, imag, div);
1325 else
1327 /* In the FALSE branch, we compute
1328 ratio = d/c;
1329 divisor = (d * ratio) + c;
1330 tr = (b * ratio) + a;
1331 ti = b - (a * ratio);
1332 tr = tr / div;
1333 ti = ti / div; */
1334 tree ratio = const_binop (code, i2, r2);
1335 tree div = const_binop (PLUS_EXPR, r2,
1336 const_binop (MULT_EXPR, i2, ratio));
1338 real = const_binop (MULT_EXPR, i1, ratio);
1339 real = const_binop (PLUS_EXPR, real, r1);
1340 real = const_binop (code, real, div);
1342 imag = const_binop (MULT_EXPR, r1, ratio);
1343 imag = const_binop (MINUS_EXPR, i1, imag);
1344 imag = const_binop (code, imag, div);
1347 break;
1349 default:
1350 return NULL_TREE;
1353 if (real && imag)
1354 return build_complex (type, real, imag);
1357 if (TREE_CODE (arg1) == VECTOR_CST)
1359 tree type = TREE_TYPE(arg1);
1360 int count = TYPE_VECTOR_SUBPARTS (type), i;
1361 tree elements1, elements2, list = NULL_TREE;
1363 if(TREE_CODE(arg2) != VECTOR_CST)
1364 return NULL_TREE;
1366 elements1 = TREE_VECTOR_CST_ELTS (arg1);
1367 elements2 = TREE_VECTOR_CST_ELTS (arg2);
1369 for (i = 0; i < count; i++)
1371 tree elem1, elem2, elem;
1373 /* The trailing elements can be empty and should be treated as 0 */
1374 if(!elements1)
1375 elem1 = fold_convert_const (NOP_EXPR, TREE_TYPE (type), integer_zero_node);
1376 else
1378 elem1 = TREE_VALUE(elements1);
1379 elements1 = TREE_CHAIN (elements1);
1382 if(!elements2)
1383 elem2 = fold_convert_const (NOP_EXPR, TREE_TYPE (type), integer_zero_node);
1384 else
1386 elem2 = TREE_VALUE(elements2);
1387 elements2 = TREE_CHAIN (elements2);
1390 elem = const_binop (code, elem1, elem2);
1392 /* It is possible that const_binop cannot handle the given
1393 code and return NULL_TREE */
1394 if(elem == NULL_TREE)
1395 return NULL_TREE;
1397 list = tree_cons (NULL_TREE, elem, list);
1399 return build_vector(type, nreverse(list));
1401 return NULL_TREE;
1404 /* Create a size type INT_CST node with NUMBER sign extended. KIND
1405 indicates which particular sizetype to create. */
1407 tree
1408 size_int_kind (HOST_WIDE_INT number, enum size_type_kind kind)
1410 return build_int_cst (sizetype_tab[(int) kind], number);
1413 /* Combine operands OP1 and OP2 with arithmetic operation CODE. CODE
1414 is a tree code. The type of the result is taken from the operands.
1415 Both must be equivalent integer types, ala int_binop_types_match_p.
1416 If the operands are constant, so is the result. */
1418 tree
1419 size_binop_loc (location_t loc, enum tree_code code, tree arg0, tree arg1)
1421 tree type = TREE_TYPE (arg0);
1423 if (arg0 == error_mark_node || arg1 == error_mark_node)
1424 return error_mark_node;
1426 gcc_assert (int_binop_types_match_p (code, TREE_TYPE (arg0),
1427 TREE_TYPE (arg1)));
1429 /* Handle the special case of two integer constants faster. */
1430 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
1432 /* And some specific cases even faster than that. */
1433 if (code == PLUS_EXPR)
1435 if (integer_zerop (arg0) && !TREE_OVERFLOW (arg0))
1436 return arg1;
1437 if (integer_zerop (arg1) && !TREE_OVERFLOW (arg1))
1438 return arg0;
1440 else if (code == MINUS_EXPR)
1442 if (integer_zerop (arg1) && !TREE_OVERFLOW (arg1))
1443 return arg0;
1445 else if (code == MULT_EXPR)
1447 if (integer_onep (arg0) && !TREE_OVERFLOW (arg0))
1448 return arg1;
1451 /* Handle general case of two integer constants. */
1452 return int_const_binop (code, arg0, arg1);
1455 return fold_build2_loc (loc, code, type, arg0, arg1);
1458 /* Given two values, either both of sizetype or both of bitsizetype,
1459 compute the difference between the two values. Return the value
1460 in signed type corresponding to the type of the operands. */
1462 tree
1463 size_diffop_loc (location_t loc, tree arg0, tree arg1)
1465 tree type = TREE_TYPE (arg0);
1466 tree ctype;
1468 gcc_assert (int_binop_types_match_p (MINUS_EXPR, TREE_TYPE (arg0),
1469 TREE_TYPE (arg1)));
1471 /* If the type is already signed, just do the simple thing. */
1472 if (!TYPE_UNSIGNED (type))
1473 return size_binop_loc (loc, MINUS_EXPR, arg0, arg1);
1475 if (type == sizetype)
1476 ctype = ssizetype;
1477 else if (type == bitsizetype)
1478 ctype = sbitsizetype;
1479 else
1480 ctype = signed_type_for (type);
1482 /* If either operand is not a constant, do the conversions to the signed
1483 type and subtract. The hardware will do the right thing with any
1484 overflow in the subtraction. */
1485 if (TREE_CODE (arg0) != INTEGER_CST || TREE_CODE (arg1) != INTEGER_CST)
1486 return size_binop_loc (loc, MINUS_EXPR,
1487 fold_convert_loc (loc, ctype, arg0),
1488 fold_convert_loc (loc, ctype, arg1));
1490 /* If ARG0 is larger than ARG1, subtract and return the result in CTYPE.
1491 Otherwise, subtract the other way, convert to CTYPE (we know that can't
1492 overflow) and negate (which can't either). Special-case a result
1493 of zero while we're here. */
1494 if (tree_int_cst_equal (arg0, arg1))
1495 return build_int_cst (ctype, 0);
1496 else if (tree_int_cst_lt (arg1, arg0))
1497 return fold_convert_loc (loc, ctype,
1498 size_binop_loc (loc, MINUS_EXPR, arg0, arg1));
1499 else
1500 return size_binop_loc (loc, MINUS_EXPR, build_int_cst (ctype, 0),
1501 fold_convert_loc (loc, ctype,
1502 size_binop_loc (loc,
1503 MINUS_EXPR,
1504 arg1, arg0)));
1507 /* A subroutine of fold_convert_const handling conversions of an
1508 INTEGER_CST to another integer type. */
1510 static tree
1511 fold_convert_const_int_from_int (tree type, const_tree arg1)
1513 tree t;
1515 /* Given an integer constant, make new constant with new type,
1516 appropriately sign-extended or truncated. */
1517 t = force_fit_type_double (type, tree_to_double_int (arg1),
1518 !POINTER_TYPE_P (TREE_TYPE (arg1)),
1519 (TREE_INT_CST_HIGH (arg1) < 0
1520 && (TYPE_UNSIGNED (type)
1521 < TYPE_UNSIGNED (TREE_TYPE (arg1))))
1522 | TREE_OVERFLOW (arg1));
1524 return t;
1527 /* A subroutine of fold_convert_const handling conversions a REAL_CST
1528 to an integer type. */
1530 static tree
1531 fold_convert_const_int_from_real (enum tree_code code, tree type, const_tree arg1)
1533 int overflow = 0;
1534 tree t;
1536 /* The following code implements the floating point to integer
1537 conversion rules required by the Java Language Specification,
1538 that IEEE NaNs are mapped to zero and values that overflow
1539 the target precision saturate, i.e. values greater than
1540 INT_MAX are mapped to INT_MAX, and values less than INT_MIN
1541 are mapped to INT_MIN. These semantics are allowed by the
1542 C and C++ standards that simply state that the behavior of
1543 FP-to-integer conversion is unspecified upon overflow. */
1545 double_int val;
1546 REAL_VALUE_TYPE r;
1547 REAL_VALUE_TYPE x = TREE_REAL_CST (arg1);
1549 switch (code)
1551 case FIX_TRUNC_EXPR:
1552 real_trunc (&r, VOIDmode, &x);
1553 break;
1555 default:
1556 gcc_unreachable ();
1559 /* If R is NaN, return zero and show we have an overflow. */
1560 if (REAL_VALUE_ISNAN (r))
1562 overflow = 1;
1563 val = double_int_zero;
1566 /* See if R is less than the lower bound or greater than the
1567 upper bound. */
1569 if (! overflow)
1571 tree lt = TYPE_MIN_VALUE (type);
1572 REAL_VALUE_TYPE l = real_value_from_int_cst (NULL_TREE, lt);
1573 if (REAL_VALUES_LESS (r, l))
1575 overflow = 1;
1576 val = tree_to_double_int (lt);
1580 if (! overflow)
1582 tree ut = TYPE_MAX_VALUE (type);
1583 if (ut)
1585 REAL_VALUE_TYPE u = real_value_from_int_cst (NULL_TREE, ut);
1586 if (REAL_VALUES_LESS (u, r))
1588 overflow = 1;
1589 val = tree_to_double_int (ut);
1594 if (! overflow)
1595 real_to_integer2 ((HOST_WIDE_INT *) &val.low, &val.high, &r);
1597 t = force_fit_type_double (type, val, -1, overflow | TREE_OVERFLOW (arg1));
1598 return t;
1601 /* A subroutine of fold_convert_const handling conversions of a
1602 FIXED_CST to an integer type. */
1604 static tree
1605 fold_convert_const_int_from_fixed (tree type, const_tree arg1)
1607 tree t;
1608 double_int temp, temp_trunc;
1609 unsigned int mode;
1611 /* Right shift FIXED_CST to temp by fbit. */
1612 temp = TREE_FIXED_CST (arg1).data;
1613 mode = TREE_FIXED_CST (arg1).mode;
1614 if (GET_MODE_FBIT (mode) < 2 * HOST_BITS_PER_WIDE_INT)
1616 temp = double_int_rshift (temp, GET_MODE_FBIT (mode),
1617 HOST_BITS_PER_DOUBLE_INT,
1618 SIGNED_FIXED_POINT_MODE_P (mode));
1620 /* Left shift temp to temp_trunc by fbit. */
1621 temp_trunc = double_int_lshift (temp, GET_MODE_FBIT (mode),
1622 HOST_BITS_PER_DOUBLE_INT,
1623 SIGNED_FIXED_POINT_MODE_P (mode));
1625 else
1627 temp = double_int_zero;
1628 temp_trunc = double_int_zero;
1631 /* If FIXED_CST is negative, we need to round the value toward 0.
1632 By checking if the fractional bits are not zero to add 1 to temp. */
1633 if (SIGNED_FIXED_POINT_MODE_P (mode)
1634 && double_int_negative_p (temp_trunc)
1635 && !double_int_equal_p (TREE_FIXED_CST (arg1).data, temp_trunc))
1636 temp = double_int_add (temp, double_int_one);
1638 /* Given a fixed-point constant, make new constant with new type,
1639 appropriately sign-extended or truncated. */
1640 t = force_fit_type_double (type, temp, -1,
1641 (double_int_negative_p (temp)
1642 && (TYPE_UNSIGNED (type)
1643 < TYPE_UNSIGNED (TREE_TYPE (arg1))))
1644 | TREE_OVERFLOW (arg1));
1646 return t;
1649 /* A subroutine of fold_convert_const handling conversions a REAL_CST
1650 to another floating point type. */
1652 static tree
1653 fold_convert_const_real_from_real (tree type, const_tree arg1)
1655 REAL_VALUE_TYPE value;
1656 tree t;
1658 real_convert (&value, TYPE_MODE (type), &TREE_REAL_CST (arg1));
1659 t = build_real (type, value);
1661 /* If converting an infinity or NAN to a representation that doesn't
1662 have one, set the overflow bit so that we can produce some kind of
1663 error message at the appropriate point if necessary. It's not the
1664 most user-friendly message, but it's better than nothing. */
1665 if (REAL_VALUE_ISINF (TREE_REAL_CST (arg1))
1666 && !MODE_HAS_INFINITIES (TYPE_MODE (type)))
1667 TREE_OVERFLOW (t) = 1;
1668 else if (REAL_VALUE_ISNAN (TREE_REAL_CST (arg1))
1669 && !MODE_HAS_NANS (TYPE_MODE (type)))
1670 TREE_OVERFLOW (t) = 1;
1671 /* Regular overflow, conversion produced an infinity in a mode that
1672 can't represent them. */
1673 else if (!MODE_HAS_INFINITIES (TYPE_MODE (type))
1674 && REAL_VALUE_ISINF (value)
1675 && !REAL_VALUE_ISINF (TREE_REAL_CST (arg1)))
1676 TREE_OVERFLOW (t) = 1;
1677 else
1678 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1);
1679 return t;
1682 /* A subroutine of fold_convert_const handling conversions a FIXED_CST
1683 to a floating point type. */
1685 static tree
1686 fold_convert_const_real_from_fixed (tree type, const_tree arg1)
1688 REAL_VALUE_TYPE value;
1689 tree t;
1691 real_convert_from_fixed (&value, TYPE_MODE (type), &TREE_FIXED_CST (arg1));
1692 t = build_real (type, value);
1694 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1);
1695 return t;
1698 /* A subroutine of fold_convert_const handling conversions a FIXED_CST
1699 to another fixed-point type. */
1701 static tree
1702 fold_convert_const_fixed_from_fixed (tree type, const_tree arg1)
1704 FIXED_VALUE_TYPE value;
1705 tree t;
1706 bool overflow_p;
1708 overflow_p = fixed_convert (&value, TYPE_MODE (type), &TREE_FIXED_CST (arg1),
1709 TYPE_SATURATING (type));
1710 t = build_fixed (type, value);
1712 /* Propagate overflow flags. */
1713 if (overflow_p | TREE_OVERFLOW (arg1))
1714 TREE_OVERFLOW (t) = 1;
1715 return t;
1718 /* A subroutine of fold_convert_const handling conversions an INTEGER_CST
1719 to a fixed-point type. */
1721 static tree
1722 fold_convert_const_fixed_from_int (tree type, const_tree arg1)
1724 FIXED_VALUE_TYPE value;
1725 tree t;
1726 bool overflow_p;
1728 overflow_p = fixed_convert_from_int (&value, TYPE_MODE (type),
1729 TREE_INT_CST (arg1),
1730 TYPE_UNSIGNED (TREE_TYPE (arg1)),
1731 TYPE_SATURATING (type));
1732 t = build_fixed (type, value);
1734 /* Propagate overflow flags. */
1735 if (overflow_p | TREE_OVERFLOW (arg1))
1736 TREE_OVERFLOW (t) = 1;
1737 return t;
1740 /* A subroutine of fold_convert_const handling conversions a REAL_CST
1741 to a fixed-point type. */
1743 static tree
1744 fold_convert_const_fixed_from_real (tree type, const_tree arg1)
1746 FIXED_VALUE_TYPE value;
1747 tree t;
1748 bool overflow_p;
1750 overflow_p = fixed_convert_from_real (&value, TYPE_MODE (type),
1751 &TREE_REAL_CST (arg1),
1752 TYPE_SATURATING (type));
1753 t = build_fixed (type, value);
1755 /* Propagate overflow flags. */
1756 if (overflow_p | TREE_OVERFLOW (arg1))
1757 TREE_OVERFLOW (t) = 1;
1758 return t;
1761 /* Attempt to fold type conversion operation CODE of expression ARG1 to
1762 type TYPE. If no simplification can be done return NULL_TREE. */
1764 static tree
1765 fold_convert_const (enum tree_code code, tree type, tree arg1)
1767 if (TREE_TYPE (arg1) == type)
1768 return arg1;
1770 if (POINTER_TYPE_P (type) || INTEGRAL_TYPE_P (type)
1771 || TREE_CODE (type) == OFFSET_TYPE)
1773 if (TREE_CODE (arg1) == INTEGER_CST)
1774 return fold_convert_const_int_from_int (type, arg1);
1775 else if (TREE_CODE (arg1) == REAL_CST)
1776 return fold_convert_const_int_from_real (code, type, arg1);
1777 else if (TREE_CODE (arg1) == FIXED_CST)
1778 return fold_convert_const_int_from_fixed (type, arg1);
1780 else if (TREE_CODE (type) == REAL_TYPE)
1782 if (TREE_CODE (arg1) == INTEGER_CST)
1783 return build_real_from_int_cst (type, arg1);
1784 else if (TREE_CODE (arg1) == REAL_CST)
1785 return fold_convert_const_real_from_real (type, arg1);
1786 else if (TREE_CODE (arg1) == FIXED_CST)
1787 return fold_convert_const_real_from_fixed (type, arg1);
1789 else if (TREE_CODE (type) == FIXED_POINT_TYPE)
1791 if (TREE_CODE (arg1) == FIXED_CST)
1792 return fold_convert_const_fixed_from_fixed (type, arg1);
1793 else if (TREE_CODE (arg1) == INTEGER_CST)
1794 return fold_convert_const_fixed_from_int (type, arg1);
1795 else if (TREE_CODE (arg1) == REAL_CST)
1796 return fold_convert_const_fixed_from_real (type, arg1);
1798 return NULL_TREE;
1801 /* Construct a vector of zero elements of vector type TYPE. */
1803 static tree
1804 build_zero_vector (tree type)
1806 tree t;
1808 t = fold_convert_const (NOP_EXPR, TREE_TYPE (type), integer_zero_node);
1809 return build_vector_from_val (type, t);
1812 /* Returns true, if ARG is convertible to TYPE using a NOP_EXPR. */
1814 bool
1815 fold_convertible_p (const_tree type, const_tree arg)
1817 tree orig = TREE_TYPE (arg);
1819 if (type == orig)
1820 return true;
1822 if (TREE_CODE (arg) == ERROR_MARK
1823 || TREE_CODE (type) == ERROR_MARK
1824 || TREE_CODE (orig) == ERROR_MARK)
1825 return false;
1827 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (orig))
1828 return true;
1830 switch (TREE_CODE (type))
1832 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1833 case POINTER_TYPE: case REFERENCE_TYPE:
1834 case OFFSET_TYPE:
1835 if (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
1836 || TREE_CODE (orig) == OFFSET_TYPE)
1837 return true;
1838 return (TREE_CODE (orig) == VECTOR_TYPE
1839 && tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
1841 case REAL_TYPE:
1842 case FIXED_POINT_TYPE:
1843 case COMPLEX_TYPE:
1844 case VECTOR_TYPE:
1845 case VOID_TYPE:
1846 return TREE_CODE (type) == TREE_CODE (orig);
1848 default:
1849 return false;
1853 /* Convert expression ARG to type TYPE. Used by the middle-end for
1854 simple conversions in preference to calling the front-end's convert. */
1856 tree
1857 fold_convert_loc (location_t loc, tree type, tree arg)
1859 tree orig = TREE_TYPE (arg);
1860 tree tem;
1862 if (type == orig)
1863 return arg;
1865 if (TREE_CODE (arg) == ERROR_MARK
1866 || TREE_CODE (type) == ERROR_MARK
1867 || TREE_CODE (orig) == ERROR_MARK)
1868 return error_mark_node;
1870 switch (TREE_CODE (type))
1872 case POINTER_TYPE:
1873 case REFERENCE_TYPE:
1874 /* Handle conversions between pointers to different address spaces. */
1875 if (POINTER_TYPE_P (orig)
1876 && (TYPE_ADDR_SPACE (TREE_TYPE (type))
1877 != TYPE_ADDR_SPACE (TREE_TYPE (orig))))
1878 return fold_build1_loc (loc, ADDR_SPACE_CONVERT_EXPR, type, arg);
1879 /* fall through */
1881 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1882 case OFFSET_TYPE:
1883 if (TREE_CODE (arg) == INTEGER_CST)
1885 tem = fold_convert_const (NOP_EXPR, type, arg);
1886 if (tem != NULL_TREE)
1887 return tem;
1889 if (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
1890 || TREE_CODE (orig) == OFFSET_TYPE)
1891 return fold_build1_loc (loc, NOP_EXPR, type, arg);
1892 if (TREE_CODE (orig) == COMPLEX_TYPE)
1893 return fold_convert_loc (loc, type,
1894 fold_build1_loc (loc, REALPART_EXPR,
1895 TREE_TYPE (orig), arg));
1896 gcc_assert (TREE_CODE (orig) == VECTOR_TYPE
1897 && tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
1898 return fold_build1_loc (loc, NOP_EXPR, type, arg);
1900 case REAL_TYPE:
1901 if (TREE_CODE (arg) == INTEGER_CST)
1903 tem = fold_convert_const (FLOAT_EXPR, type, arg);
1904 if (tem != NULL_TREE)
1905 return tem;
1907 else if (TREE_CODE (arg) == REAL_CST)
1909 tem = fold_convert_const (NOP_EXPR, type, arg);
1910 if (tem != NULL_TREE)
1911 return tem;
1913 else if (TREE_CODE (arg) == FIXED_CST)
1915 tem = fold_convert_const (FIXED_CONVERT_EXPR, type, arg);
1916 if (tem != NULL_TREE)
1917 return tem;
1920 switch (TREE_CODE (orig))
1922 case INTEGER_TYPE:
1923 case BOOLEAN_TYPE: case ENUMERAL_TYPE:
1924 case POINTER_TYPE: case REFERENCE_TYPE:
1925 return fold_build1_loc (loc, FLOAT_EXPR, type, arg);
1927 case REAL_TYPE:
1928 return fold_build1_loc (loc, NOP_EXPR, type, arg);
1930 case FIXED_POINT_TYPE:
1931 return fold_build1_loc (loc, FIXED_CONVERT_EXPR, type, arg);
1933 case COMPLEX_TYPE:
1934 tem = fold_build1_loc (loc, REALPART_EXPR, TREE_TYPE (orig), arg);
1935 return fold_convert_loc (loc, type, tem);
1937 default:
1938 gcc_unreachable ();
1941 case FIXED_POINT_TYPE:
1942 if (TREE_CODE (arg) == FIXED_CST || TREE_CODE (arg) == INTEGER_CST
1943 || TREE_CODE (arg) == REAL_CST)
1945 tem = fold_convert_const (FIXED_CONVERT_EXPR, type, arg);
1946 if (tem != NULL_TREE)
1947 goto fold_convert_exit;
1950 switch (TREE_CODE (orig))
1952 case FIXED_POINT_TYPE:
1953 case INTEGER_TYPE:
1954 case ENUMERAL_TYPE:
1955 case BOOLEAN_TYPE:
1956 case REAL_TYPE:
1957 return fold_build1_loc (loc, FIXED_CONVERT_EXPR, type, arg);
1959 case COMPLEX_TYPE:
1960 tem = fold_build1_loc (loc, REALPART_EXPR, TREE_TYPE (orig), arg);
1961 return fold_convert_loc (loc, type, tem);
1963 default:
1964 gcc_unreachable ();
1967 case COMPLEX_TYPE:
1968 switch (TREE_CODE (orig))
1970 case INTEGER_TYPE:
1971 case BOOLEAN_TYPE: case ENUMERAL_TYPE:
1972 case POINTER_TYPE: case REFERENCE_TYPE:
1973 case REAL_TYPE:
1974 case FIXED_POINT_TYPE:
1975 return fold_build2_loc (loc, COMPLEX_EXPR, type,
1976 fold_convert_loc (loc, TREE_TYPE (type), arg),
1977 fold_convert_loc (loc, TREE_TYPE (type),
1978 integer_zero_node));
1979 case COMPLEX_TYPE:
1981 tree rpart, ipart;
1983 if (TREE_CODE (arg) == COMPLEX_EXPR)
1985 rpart = fold_convert_loc (loc, TREE_TYPE (type),
1986 TREE_OPERAND (arg, 0));
1987 ipart = fold_convert_loc (loc, TREE_TYPE (type),
1988 TREE_OPERAND (arg, 1));
1989 return fold_build2_loc (loc, COMPLEX_EXPR, type, rpart, ipart);
1992 arg = save_expr (arg);
1993 rpart = fold_build1_loc (loc, REALPART_EXPR, TREE_TYPE (orig), arg);
1994 ipart = fold_build1_loc (loc, IMAGPART_EXPR, TREE_TYPE (orig), arg);
1995 rpart = fold_convert_loc (loc, TREE_TYPE (type), rpart);
1996 ipart = fold_convert_loc (loc, TREE_TYPE (type), ipart);
1997 return fold_build2_loc (loc, COMPLEX_EXPR, type, rpart, ipart);
2000 default:
2001 gcc_unreachable ();
2004 case VECTOR_TYPE:
2005 if (integer_zerop (arg))
2006 return build_zero_vector (type);
2007 gcc_assert (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
2008 gcc_assert (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
2009 || TREE_CODE (orig) == VECTOR_TYPE);
2010 return fold_build1_loc (loc, VIEW_CONVERT_EXPR, type, arg);
2012 case VOID_TYPE:
2013 tem = fold_ignored_result (arg);
2014 return fold_build1_loc (loc, NOP_EXPR, type, tem);
2016 default:
2017 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (orig))
2018 return fold_build1_loc (loc, NOP_EXPR, type, arg);
2019 gcc_unreachable ();
2021 fold_convert_exit:
2022 protected_set_expr_location_unshare (tem, loc);
2023 return tem;
2026 /* Return false if expr can be assumed not to be an lvalue, true
2027 otherwise. */
2029 static bool
2030 maybe_lvalue_p (const_tree x)
2032 /* We only need to wrap lvalue tree codes. */
2033 switch (TREE_CODE (x))
2035 case VAR_DECL:
2036 case PARM_DECL:
2037 case RESULT_DECL:
2038 case LABEL_DECL:
2039 case FUNCTION_DECL:
2040 case SSA_NAME:
2042 case COMPONENT_REF:
2043 case MEM_REF:
2044 case INDIRECT_REF:
2045 case ARRAY_REF:
2046 case ARRAY_RANGE_REF:
2047 case BIT_FIELD_REF:
2048 case OBJ_TYPE_REF:
2050 case REALPART_EXPR:
2051 case IMAGPART_EXPR:
2052 case PREINCREMENT_EXPR:
2053 case PREDECREMENT_EXPR:
2054 case SAVE_EXPR:
2055 case TRY_CATCH_EXPR:
2056 case WITH_CLEANUP_EXPR:
2057 case COMPOUND_EXPR:
2058 case MODIFY_EXPR:
2059 case TARGET_EXPR:
2060 case COND_EXPR:
2061 case BIND_EXPR:
2062 break;
2064 default:
2065 /* Assume the worst for front-end tree codes. */
2066 if ((int)TREE_CODE (x) >= NUM_TREE_CODES)
2067 break;
2068 return false;
2071 return true;
2074 /* Return an expr equal to X but certainly not valid as an lvalue. */
2076 tree
2077 non_lvalue_loc (location_t loc, tree x)
2079 /* While we are in GIMPLE, NON_LVALUE_EXPR doesn't mean anything to
2080 us. */
2081 if (in_gimple_form)
2082 return x;
2084 if (! maybe_lvalue_p (x))
2085 return x;
2086 return build1_loc (loc, NON_LVALUE_EXPR, TREE_TYPE (x), x);
2089 /* Nonzero means lvalues are limited to those valid in pedantic ANSI C.
2090 Zero means allow extended lvalues. */
2092 int pedantic_lvalues;
2094 /* When pedantic, return an expr equal to X but certainly not valid as a
2095 pedantic lvalue. Otherwise, return X. */
2097 static tree
2098 pedantic_non_lvalue_loc (location_t loc, tree x)
2100 if (pedantic_lvalues)
2101 return non_lvalue_loc (loc, x);
2103 return protected_set_expr_location_unshare (x, loc);
2106 /* Given a tree comparison code, return the code that is the logical inverse
2107 of the given code. It is not safe to do this for floating-point
2108 comparisons, except for NE_EXPR and EQ_EXPR, so we receive a machine mode
2109 as well: if reversing the comparison is unsafe, return ERROR_MARK. */
2111 enum tree_code
2112 invert_tree_comparison (enum tree_code code, bool honor_nans)
2114 if (honor_nans && flag_trapping_math)
2115 return ERROR_MARK;
2117 switch (code)
2119 case EQ_EXPR:
2120 return NE_EXPR;
2121 case NE_EXPR:
2122 return EQ_EXPR;
2123 case GT_EXPR:
2124 return honor_nans ? UNLE_EXPR : LE_EXPR;
2125 case GE_EXPR:
2126 return honor_nans ? UNLT_EXPR : LT_EXPR;
2127 case LT_EXPR:
2128 return honor_nans ? UNGE_EXPR : GE_EXPR;
2129 case LE_EXPR:
2130 return honor_nans ? UNGT_EXPR : GT_EXPR;
2131 case LTGT_EXPR:
2132 return UNEQ_EXPR;
2133 case UNEQ_EXPR:
2134 return LTGT_EXPR;
2135 case UNGT_EXPR:
2136 return LE_EXPR;
2137 case UNGE_EXPR:
2138 return LT_EXPR;
2139 case UNLT_EXPR:
2140 return GE_EXPR;
2141 case UNLE_EXPR:
2142 return GT_EXPR;
2143 case ORDERED_EXPR:
2144 return UNORDERED_EXPR;
2145 case UNORDERED_EXPR:
2146 return ORDERED_EXPR;
2147 default:
2148 gcc_unreachable ();
2152 /* Similar, but return the comparison that results if the operands are
2153 swapped. This is safe for floating-point. */
2155 enum tree_code
2156 swap_tree_comparison (enum tree_code code)
2158 switch (code)
2160 case EQ_EXPR:
2161 case NE_EXPR:
2162 case ORDERED_EXPR:
2163 case UNORDERED_EXPR:
2164 case LTGT_EXPR:
2165 case UNEQ_EXPR:
2166 return code;
2167 case GT_EXPR:
2168 return LT_EXPR;
2169 case GE_EXPR:
2170 return LE_EXPR;
2171 case LT_EXPR:
2172 return GT_EXPR;
2173 case LE_EXPR:
2174 return GE_EXPR;
2175 case UNGT_EXPR:
2176 return UNLT_EXPR;
2177 case UNGE_EXPR:
2178 return UNLE_EXPR;
2179 case UNLT_EXPR:
2180 return UNGT_EXPR;
2181 case UNLE_EXPR:
2182 return UNGE_EXPR;
2183 default:
2184 gcc_unreachable ();
2189 /* Convert a comparison tree code from an enum tree_code representation
2190 into a compcode bit-based encoding. This function is the inverse of
2191 compcode_to_comparison. */
2193 static enum comparison_code
2194 comparison_to_compcode (enum tree_code code)
2196 switch (code)
2198 case LT_EXPR:
2199 return COMPCODE_LT;
2200 case EQ_EXPR:
2201 return COMPCODE_EQ;
2202 case LE_EXPR:
2203 return COMPCODE_LE;
2204 case GT_EXPR:
2205 return COMPCODE_GT;
2206 case NE_EXPR:
2207 return COMPCODE_NE;
2208 case GE_EXPR:
2209 return COMPCODE_GE;
2210 case ORDERED_EXPR:
2211 return COMPCODE_ORD;
2212 case UNORDERED_EXPR:
2213 return COMPCODE_UNORD;
2214 case UNLT_EXPR:
2215 return COMPCODE_UNLT;
2216 case UNEQ_EXPR:
2217 return COMPCODE_UNEQ;
2218 case UNLE_EXPR:
2219 return COMPCODE_UNLE;
2220 case UNGT_EXPR:
2221 return COMPCODE_UNGT;
2222 case LTGT_EXPR:
2223 return COMPCODE_LTGT;
2224 case UNGE_EXPR:
2225 return COMPCODE_UNGE;
2226 default:
2227 gcc_unreachable ();
2231 /* Convert a compcode bit-based encoding of a comparison operator back
2232 to GCC's enum tree_code representation. This function is the
2233 inverse of comparison_to_compcode. */
2235 static enum tree_code
2236 compcode_to_comparison (enum comparison_code code)
2238 switch (code)
2240 case COMPCODE_LT:
2241 return LT_EXPR;
2242 case COMPCODE_EQ:
2243 return EQ_EXPR;
2244 case COMPCODE_LE:
2245 return LE_EXPR;
2246 case COMPCODE_GT:
2247 return GT_EXPR;
2248 case COMPCODE_NE:
2249 return NE_EXPR;
2250 case COMPCODE_GE:
2251 return GE_EXPR;
2252 case COMPCODE_ORD:
2253 return ORDERED_EXPR;
2254 case COMPCODE_UNORD:
2255 return UNORDERED_EXPR;
2256 case COMPCODE_UNLT:
2257 return UNLT_EXPR;
2258 case COMPCODE_UNEQ:
2259 return UNEQ_EXPR;
2260 case COMPCODE_UNLE:
2261 return UNLE_EXPR;
2262 case COMPCODE_UNGT:
2263 return UNGT_EXPR;
2264 case COMPCODE_LTGT:
2265 return LTGT_EXPR;
2266 case COMPCODE_UNGE:
2267 return UNGE_EXPR;
2268 default:
2269 gcc_unreachable ();
2273 /* Return a tree for the comparison which is the combination of
2274 doing the AND or OR (depending on CODE) of the two operations LCODE
2275 and RCODE on the identical operands LL_ARG and LR_ARG. Take into account
2276 the possibility of trapping if the mode has NaNs, and return NULL_TREE
2277 if this makes the transformation invalid. */
2279 tree
2280 combine_comparisons (location_t loc,
2281 enum tree_code code, enum tree_code lcode,
2282 enum tree_code rcode, tree truth_type,
2283 tree ll_arg, tree lr_arg)
2285 bool honor_nans = HONOR_NANS (TYPE_MODE (TREE_TYPE (ll_arg)));
2286 enum comparison_code lcompcode = comparison_to_compcode (lcode);
2287 enum comparison_code rcompcode = comparison_to_compcode (rcode);
2288 int compcode;
2290 switch (code)
2292 case TRUTH_AND_EXPR: case TRUTH_ANDIF_EXPR:
2293 compcode = lcompcode & rcompcode;
2294 break;
2296 case TRUTH_OR_EXPR: case TRUTH_ORIF_EXPR:
2297 compcode = lcompcode | rcompcode;
2298 break;
2300 default:
2301 return NULL_TREE;
2304 if (!honor_nans)
2306 /* Eliminate unordered comparisons, as well as LTGT and ORD
2307 which are not used unless the mode has NaNs. */
2308 compcode &= ~COMPCODE_UNORD;
2309 if (compcode == COMPCODE_LTGT)
2310 compcode = COMPCODE_NE;
2311 else if (compcode == COMPCODE_ORD)
2312 compcode = COMPCODE_TRUE;
2314 else if (flag_trapping_math)
2316 /* Check that the original operation and the optimized ones will trap
2317 under the same condition. */
2318 bool ltrap = (lcompcode & COMPCODE_UNORD) == 0
2319 && (lcompcode != COMPCODE_EQ)
2320 && (lcompcode != COMPCODE_ORD);
2321 bool rtrap = (rcompcode & COMPCODE_UNORD) == 0
2322 && (rcompcode != COMPCODE_EQ)
2323 && (rcompcode != COMPCODE_ORD);
2324 bool trap = (compcode & COMPCODE_UNORD) == 0
2325 && (compcode != COMPCODE_EQ)
2326 && (compcode != COMPCODE_ORD);
2328 /* In a short-circuited boolean expression the LHS might be
2329 such that the RHS, if evaluated, will never trap. For
2330 example, in ORD (x, y) && (x < y), we evaluate the RHS only
2331 if neither x nor y is NaN. (This is a mixed blessing: for
2332 example, the expression above will never trap, hence
2333 optimizing it to x < y would be invalid). */
2334 if ((code == TRUTH_ORIF_EXPR && (lcompcode & COMPCODE_UNORD))
2335 || (code == TRUTH_ANDIF_EXPR && !(lcompcode & COMPCODE_UNORD)))
2336 rtrap = false;
2338 /* If the comparison was short-circuited, and only the RHS
2339 trapped, we may now generate a spurious trap. */
2340 if (rtrap && !ltrap
2341 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2342 return NULL_TREE;
2344 /* If we changed the conditions that cause a trap, we lose. */
2345 if ((ltrap || rtrap) != trap)
2346 return NULL_TREE;
2349 if (compcode == COMPCODE_TRUE)
2350 return constant_boolean_node (true, truth_type);
2351 else if (compcode == COMPCODE_FALSE)
2352 return constant_boolean_node (false, truth_type);
2353 else
2355 enum tree_code tcode;
2357 tcode = compcode_to_comparison ((enum comparison_code) compcode);
2358 return fold_build2_loc (loc, tcode, truth_type, ll_arg, lr_arg);
2362 /* Return nonzero if two operands (typically of the same tree node)
2363 are necessarily equal. If either argument has side-effects this
2364 function returns zero. FLAGS modifies behavior as follows:
2366 If OEP_ONLY_CONST is set, only return nonzero for constants.
2367 This function tests whether the operands are indistinguishable;
2368 it does not test whether they are equal using C's == operation.
2369 The distinction is important for IEEE floating point, because
2370 (1) -0.0 and 0.0 are distinguishable, but -0.0==0.0, and
2371 (2) two NaNs may be indistinguishable, but NaN!=NaN.
2373 If OEP_ONLY_CONST is unset, a VAR_DECL is considered equal to itself
2374 even though it may hold multiple values during a function.
2375 This is because a GCC tree node guarantees that nothing else is
2376 executed between the evaluation of its "operands" (which may often
2377 be evaluated in arbitrary order). Hence if the operands themselves
2378 don't side-effect, the VAR_DECLs, PARM_DECLs etc... must hold the
2379 same value in each operand/subexpression. Hence leaving OEP_ONLY_CONST
2380 unset means assuming isochronic (or instantaneous) tree equivalence.
2381 Unless comparing arbitrary expression trees, such as from different
2382 statements, this flag can usually be left unset.
2384 If OEP_PURE_SAME is set, then pure functions with identical arguments
2385 are considered the same. It is used when the caller has other ways
2386 to ensure that global memory is unchanged in between. */
2389 operand_equal_p (const_tree arg0, const_tree arg1, unsigned int flags)
2391 /* If either is ERROR_MARK, they aren't equal. */
2392 if (TREE_CODE (arg0) == ERROR_MARK || TREE_CODE (arg1) == ERROR_MARK
2393 || TREE_TYPE (arg0) == error_mark_node
2394 || TREE_TYPE (arg1) == error_mark_node)
2395 return 0;
2397 /* Similar, if either does not have a type (like a released SSA name),
2398 they aren't equal. */
2399 if (!TREE_TYPE (arg0) || !TREE_TYPE (arg1))
2400 return 0;
2402 /* Check equality of integer constants before bailing out due to
2403 precision differences. */
2404 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
2405 return tree_int_cst_equal (arg0, arg1);
2407 /* If both types don't have the same signedness, then we can't consider
2408 them equal. We must check this before the STRIP_NOPS calls
2409 because they may change the signedness of the arguments. As pointers
2410 strictly don't have a signedness, require either two pointers or
2411 two non-pointers as well. */
2412 if (TYPE_UNSIGNED (TREE_TYPE (arg0)) != TYPE_UNSIGNED (TREE_TYPE (arg1))
2413 || POINTER_TYPE_P (TREE_TYPE (arg0)) != POINTER_TYPE_P (TREE_TYPE (arg1)))
2414 return 0;
2416 /* We cannot consider pointers to different address space equal. */
2417 if (POINTER_TYPE_P (TREE_TYPE (arg0)) && POINTER_TYPE_P (TREE_TYPE (arg1))
2418 && (TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (arg0)))
2419 != TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (arg1)))))
2420 return 0;
2422 /* If both types don't have the same precision, then it is not safe
2423 to strip NOPs. */
2424 if (TYPE_PRECISION (TREE_TYPE (arg0)) != TYPE_PRECISION (TREE_TYPE (arg1)))
2425 return 0;
2427 STRIP_NOPS (arg0);
2428 STRIP_NOPS (arg1);
2430 /* In case both args are comparisons but with different comparison
2431 code, try to swap the comparison operands of one arg to produce
2432 a match and compare that variant. */
2433 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2434 && COMPARISON_CLASS_P (arg0)
2435 && COMPARISON_CLASS_P (arg1))
2437 enum tree_code swap_code = swap_tree_comparison (TREE_CODE (arg1));
2439 if (TREE_CODE (arg0) == swap_code)
2440 return operand_equal_p (TREE_OPERAND (arg0, 0),
2441 TREE_OPERAND (arg1, 1), flags)
2442 && operand_equal_p (TREE_OPERAND (arg0, 1),
2443 TREE_OPERAND (arg1, 0), flags);
2446 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2447 /* This is needed for conversions and for COMPONENT_REF.
2448 Might as well play it safe and always test this. */
2449 || TREE_CODE (TREE_TYPE (arg0)) == ERROR_MARK
2450 || TREE_CODE (TREE_TYPE (arg1)) == ERROR_MARK
2451 || TYPE_MODE (TREE_TYPE (arg0)) != TYPE_MODE (TREE_TYPE (arg1)))
2452 return 0;
2454 /* If ARG0 and ARG1 are the same SAVE_EXPR, they are necessarily equal.
2455 We don't care about side effects in that case because the SAVE_EXPR
2456 takes care of that for us. In all other cases, two expressions are
2457 equal if they have no side effects. If we have two identical
2458 expressions with side effects that should be treated the same due
2459 to the only side effects being identical SAVE_EXPR's, that will
2460 be detected in the recursive calls below.
2461 If we are taking an invariant address of two identical objects
2462 they are necessarily equal as well. */
2463 if (arg0 == arg1 && ! (flags & OEP_ONLY_CONST)
2464 && (TREE_CODE (arg0) == SAVE_EXPR
2465 || (flags & OEP_CONSTANT_ADDRESS_OF)
2466 || (! TREE_SIDE_EFFECTS (arg0) && ! TREE_SIDE_EFFECTS (arg1))))
2467 return 1;
2469 /* Next handle constant cases, those for which we can return 1 even
2470 if ONLY_CONST is set. */
2471 if (TREE_CONSTANT (arg0) && TREE_CONSTANT (arg1))
2472 switch (TREE_CODE (arg0))
2474 case INTEGER_CST:
2475 return tree_int_cst_equal (arg0, arg1);
2477 case FIXED_CST:
2478 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (arg0),
2479 TREE_FIXED_CST (arg1));
2481 case REAL_CST:
2482 if (REAL_VALUES_IDENTICAL (TREE_REAL_CST (arg0),
2483 TREE_REAL_CST (arg1)))
2484 return 1;
2487 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0))))
2489 /* If we do not distinguish between signed and unsigned zero,
2490 consider them equal. */
2491 if (real_zerop (arg0) && real_zerop (arg1))
2492 return 1;
2494 return 0;
2496 case VECTOR_CST:
2498 tree v1, v2;
2500 v1 = TREE_VECTOR_CST_ELTS (arg0);
2501 v2 = TREE_VECTOR_CST_ELTS (arg1);
2502 while (v1 && v2)
2504 if (!operand_equal_p (TREE_VALUE (v1), TREE_VALUE (v2),
2505 flags))
2506 return 0;
2507 v1 = TREE_CHAIN (v1);
2508 v2 = TREE_CHAIN (v2);
2511 return v1 == v2;
2514 case COMPLEX_CST:
2515 return (operand_equal_p (TREE_REALPART (arg0), TREE_REALPART (arg1),
2516 flags)
2517 && operand_equal_p (TREE_IMAGPART (arg0), TREE_IMAGPART (arg1),
2518 flags));
2520 case STRING_CST:
2521 return (TREE_STRING_LENGTH (arg0) == TREE_STRING_LENGTH (arg1)
2522 && ! memcmp (TREE_STRING_POINTER (arg0),
2523 TREE_STRING_POINTER (arg1),
2524 TREE_STRING_LENGTH (arg0)));
2526 case ADDR_EXPR:
2527 return operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0),
2528 TREE_CONSTANT (arg0) && TREE_CONSTANT (arg1)
2529 ? OEP_CONSTANT_ADDRESS_OF : 0);
2530 default:
2531 break;
2534 if (flags & OEP_ONLY_CONST)
2535 return 0;
2537 /* Define macros to test an operand from arg0 and arg1 for equality and a
2538 variant that allows null and views null as being different from any
2539 non-null value. In the latter case, if either is null, the both
2540 must be; otherwise, do the normal comparison. */
2541 #define OP_SAME(N) operand_equal_p (TREE_OPERAND (arg0, N), \
2542 TREE_OPERAND (arg1, N), flags)
2544 #define OP_SAME_WITH_NULL(N) \
2545 ((!TREE_OPERAND (arg0, N) || !TREE_OPERAND (arg1, N)) \
2546 ? TREE_OPERAND (arg0, N) == TREE_OPERAND (arg1, N) : OP_SAME (N))
2548 switch (TREE_CODE_CLASS (TREE_CODE (arg0)))
2550 case tcc_unary:
2551 /* Two conversions are equal only if signedness and modes match. */
2552 switch (TREE_CODE (arg0))
2554 CASE_CONVERT:
2555 case FIX_TRUNC_EXPR:
2556 if (TYPE_UNSIGNED (TREE_TYPE (arg0))
2557 != TYPE_UNSIGNED (TREE_TYPE (arg1)))
2558 return 0;
2559 break;
2560 default:
2561 break;
2564 return OP_SAME (0);
2567 case tcc_comparison:
2568 case tcc_binary:
2569 if (OP_SAME (0) && OP_SAME (1))
2570 return 1;
2572 /* For commutative ops, allow the other order. */
2573 return (commutative_tree_code (TREE_CODE (arg0))
2574 && operand_equal_p (TREE_OPERAND (arg0, 0),
2575 TREE_OPERAND (arg1, 1), flags)
2576 && operand_equal_p (TREE_OPERAND (arg0, 1),
2577 TREE_OPERAND (arg1, 0), flags));
2579 case tcc_reference:
2580 /* If either of the pointer (or reference) expressions we are
2581 dereferencing contain a side effect, these cannot be equal. */
2582 if (TREE_SIDE_EFFECTS (arg0)
2583 || TREE_SIDE_EFFECTS (arg1))
2584 return 0;
2586 switch (TREE_CODE (arg0))
2588 case INDIRECT_REF:
2589 case REALPART_EXPR:
2590 case IMAGPART_EXPR:
2591 return OP_SAME (0);
2593 case MEM_REF:
2594 /* Require equal access sizes, and similar pointer types.
2595 We can have incomplete types for array references of
2596 variable-sized arrays from the Fortran frontent
2597 though. */
2598 return ((TYPE_SIZE (TREE_TYPE (arg0)) == TYPE_SIZE (TREE_TYPE (arg1))
2599 || (TYPE_SIZE (TREE_TYPE (arg0))
2600 && TYPE_SIZE (TREE_TYPE (arg1))
2601 && operand_equal_p (TYPE_SIZE (TREE_TYPE (arg0)),
2602 TYPE_SIZE (TREE_TYPE (arg1)), flags)))
2603 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (arg0, 1)))
2604 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (arg1, 1))))
2605 && OP_SAME (0) && OP_SAME (1));
2607 case ARRAY_REF:
2608 case ARRAY_RANGE_REF:
2609 /* Operands 2 and 3 may be null.
2610 Compare the array index by value if it is constant first as we
2611 may have different types but same value here. */
2612 return (OP_SAME (0)
2613 && (tree_int_cst_equal (TREE_OPERAND (arg0, 1),
2614 TREE_OPERAND (arg1, 1))
2615 || OP_SAME (1))
2616 && OP_SAME_WITH_NULL (2)
2617 && OP_SAME_WITH_NULL (3));
2619 case COMPONENT_REF:
2620 /* Handle operand 2 the same as for ARRAY_REF. Operand 0
2621 may be NULL when we're called to compare MEM_EXPRs. */
2622 return OP_SAME_WITH_NULL (0)
2623 && OP_SAME (1)
2624 && OP_SAME_WITH_NULL (2);
2626 case BIT_FIELD_REF:
2627 return OP_SAME (0) && OP_SAME (1) && OP_SAME (2);
2629 default:
2630 return 0;
2633 case tcc_expression:
2634 switch (TREE_CODE (arg0))
2636 case ADDR_EXPR:
2637 case TRUTH_NOT_EXPR:
2638 return OP_SAME (0);
2640 case TRUTH_ANDIF_EXPR:
2641 case TRUTH_ORIF_EXPR:
2642 return OP_SAME (0) && OP_SAME (1);
2644 case FMA_EXPR:
2645 case WIDEN_MULT_PLUS_EXPR:
2646 case WIDEN_MULT_MINUS_EXPR:
2647 if (!OP_SAME (2))
2648 return 0;
2649 /* The multiplcation operands are commutative. */
2650 /* FALLTHRU */
2652 case TRUTH_AND_EXPR:
2653 case TRUTH_OR_EXPR:
2654 case TRUTH_XOR_EXPR:
2655 if (OP_SAME (0) && OP_SAME (1))
2656 return 1;
2658 /* Otherwise take into account this is a commutative operation. */
2659 return (operand_equal_p (TREE_OPERAND (arg0, 0),
2660 TREE_OPERAND (arg1, 1), flags)
2661 && operand_equal_p (TREE_OPERAND (arg0, 1),
2662 TREE_OPERAND (arg1, 0), flags));
2664 case COND_EXPR:
2665 case VEC_COND_EXPR:
2666 case DOT_PROD_EXPR:
2667 return OP_SAME (0) && OP_SAME (1) && OP_SAME (2);
2669 default:
2670 return 0;
2673 case tcc_vl_exp:
2674 switch (TREE_CODE (arg0))
2676 case CALL_EXPR:
2677 /* If the CALL_EXPRs call different functions, then they
2678 clearly can not be equal. */
2679 if (! operand_equal_p (CALL_EXPR_FN (arg0), CALL_EXPR_FN (arg1),
2680 flags))
2681 return 0;
2684 unsigned int cef = call_expr_flags (arg0);
2685 if (flags & OEP_PURE_SAME)
2686 cef &= ECF_CONST | ECF_PURE;
2687 else
2688 cef &= ECF_CONST;
2689 if (!cef)
2690 return 0;
2693 /* Now see if all the arguments are the same. */
2695 const_call_expr_arg_iterator iter0, iter1;
2696 const_tree a0, a1;
2697 for (a0 = first_const_call_expr_arg (arg0, &iter0),
2698 a1 = first_const_call_expr_arg (arg1, &iter1);
2699 a0 && a1;
2700 a0 = next_const_call_expr_arg (&iter0),
2701 a1 = next_const_call_expr_arg (&iter1))
2702 if (! operand_equal_p (a0, a1, flags))
2703 return 0;
2705 /* If we get here and both argument lists are exhausted
2706 then the CALL_EXPRs are equal. */
2707 return ! (a0 || a1);
2709 default:
2710 return 0;
2713 case tcc_declaration:
2714 /* Consider __builtin_sqrt equal to sqrt. */
2715 return (TREE_CODE (arg0) == FUNCTION_DECL
2716 && DECL_BUILT_IN (arg0) && DECL_BUILT_IN (arg1)
2717 && DECL_BUILT_IN_CLASS (arg0) == DECL_BUILT_IN_CLASS (arg1)
2718 && DECL_FUNCTION_CODE (arg0) == DECL_FUNCTION_CODE (arg1));
2720 default:
2721 return 0;
2724 #undef OP_SAME
2725 #undef OP_SAME_WITH_NULL
2728 /* Similar to operand_equal_p, but see if ARG0 might have been made by
2729 shorten_compare from ARG1 when ARG1 was being compared with OTHER.
2731 When in doubt, return 0. */
2733 static int
2734 operand_equal_for_comparison_p (tree arg0, tree arg1, tree other)
2736 int unsignedp1, unsignedpo;
2737 tree primarg0, primarg1, primother;
2738 unsigned int correct_width;
2740 if (operand_equal_p (arg0, arg1, 0))
2741 return 1;
2743 if (! INTEGRAL_TYPE_P (TREE_TYPE (arg0))
2744 || ! INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
2745 return 0;
2747 /* Discard any conversions that don't change the modes of ARG0 and ARG1
2748 and see if the inner values are the same. This removes any
2749 signedness comparison, which doesn't matter here. */
2750 primarg0 = arg0, primarg1 = arg1;
2751 STRIP_NOPS (primarg0);
2752 STRIP_NOPS (primarg1);
2753 if (operand_equal_p (primarg0, primarg1, 0))
2754 return 1;
2756 /* Duplicate what shorten_compare does to ARG1 and see if that gives the
2757 actual comparison operand, ARG0.
2759 First throw away any conversions to wider types
2760 already present in the operands. */
2762 primarg1 = get_narrower (arg1, &unsignedp1);
2763 primother = get_narrower (other, &unsignedpo);
2765 correct_width = TYPE_PRECISION (TREE_TYPE (arg1));
2766 if (unsignedp1 == unsignedpo
2767 && TYPE_PRECISION (TREE_TYPE (primarg1)) < correct_width
2768 && TYPE_PRECISION (TREE_TYPE (primother)) < correct_width)
2770 tree type = TREE_TYPE (arg0);
2772 /* Make sure shorter operand is extended the right way
2773 to match the longer operand. */
2774 primarg1 = fold_convert (signed_or_unsigned_type_for
2775 (unsignedp1, TREE_TYPE (primarg1)), primarg1);
2777 if (operand_equal_p (arg0, fold_convert (type, primarg1), 0))
2778 return 1;
2781 return 0;
2784 /* See if ARG is an expression that is either a comparison or is performing
2785 arithmetic on comparisons. The comparisons must only be comparing
2786 two different values, which will be stored in *CVAL1 and *CVAL2; if
2787 they are nonzero it means that some operands have already been found.
2788 No variables may be used anywhere else in the expression except in the
2789 comparisons. If SAVE_P is true it means we removed a SAVE_EXPR around
2790 the expression and save_expr needs to be called with CVAL1 and CVAL2.
2792 If this is true, return 1. Otherwise, return zero. */
2794 static int
2795 twoval_comparison_p (tree arg, tree *cval1, tree *cval2, int *save_p)
2797 enum tree_code code = TREE_CODE (arg);
2798 enum tree_code_class tclass = TREE_CODE_CLASS (code);
2800 /* We can handle some of the tcc_expression cases here. */
2801 if (tclass == tcc_expression && code == TRUTH_NOT_EXPR)
2802 tclass = tcc_unary;
2803 else if (tclass == tcc_expression
2804 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR
2805 || code == COMPOUND_EXPR))
2806 tclass = tcc_binary;
2808 else if (tclass == tcc_expression && code == SAVE_EXPR
2809 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
2811 /* If we've already found a CVAL1 or CVAL2, this expression is
2812 two complex to handle. */
2813 if (*cval1 || *cval2)
2814 return 0;
2816 tclass = tcc_unary;
2817 *save_p = 1;
2820 switch (tclass)
2822 case tcc_unary:
2823 return twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p);
2825 case tcc_binary:
2826 return (twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p)
2827 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2828 cval1, cval2, save_p));
2830 case tcc_constant:
2831 return 1;
2833 case tcc_expression:
2834 if (code == COND_EXPR)
2835 return (twoval_comparison_p (TREE_OPERAND (arg, 0),
2836 cval1, cval2, save_p)
2837 && twoval_comparison_p (TREE_OPERAND (arg, 1),
2838 cval1, cval2, save_p)
2839 && twoval_comparison_p (TREE_OPERAND (arg, 2),
2840 cval1, cval2, save_p));
2841 return 0;
2843 case tcc_comparison:
2844 /* First see if we can handle the first operand, then the second. For
2845 the second operand, we know *CVAL1 can't be zero. It must be that
2846 one side of the comparison is each of the values; test for the
2847 case where this isn't true by failing if the two operands
2848 are the same. */
2850 if (operand_equal_p (TREE_OPERAND (arg, 0),
2851 TREE_OPERAND (arg, 1), 0))
2852 return 0;
2854 if (*cval1 == 0)
2855 *cval1 = TREE_OPERAND (arg, 0);
2856 else if (operand_equal_p (*cval1, TREE_OPERAND (arg, 0), 0))
2858 else if (*cval2 == 0)
2859 *cval2 = TREE_OPERAND (arg, 0);
2860 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 0), 0))
2862 else
2863 return 0;
2865 if (operand_equal_p (*cval1, TREE_OPERAND (arg, 1), 0))
2867 else if (*cval2 == 0)
2868 *cval2 = TREE_OPERAND (arg, 1);
2869 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 1), 0))
2871 else
2872 return 0;
2874 return 1;
2876 default:
2877 return 0;
2881 /* ARG is a tree that is known to contain just arithmetic operations and
2882 comparisons. Evaluate the operations in the tree substituting NEW0 for
2883 any occurrence of OLD0 as an operand of a comparison and likewise for
2884 NEW1 and OLD1. */
2886 static tree
2887 eval_subst (location_t loc, tree arg, tree old0, tree new0,
2888 tree old1, tree new1)
2890 tree type = TREE_TYPE (arg);
2891 enum tree_code code = TREE_CODE (arg);
2892 enum tree_code_class tclass = TREE_CODE_CLASS (code);
2894 /* We can handle some of the tcc_expression cases here. */
2895 if (tclass == tcc_expression && code == TRUTH_NOT_EXPR)
2896 tclass = tcc_unary;
2897 else if (tclass == tcc_expression
2898 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2899 tclass = tcc_binary;
2901 switch (tclass)
2903 case tcc_unary:
2904 return fold_build1_loc (loc, code, type,
2905 eval_subst (loc, TREE_OPERAND (arg, 0),
2906 old0, new0, old1, new1));
2908 case tcc_binary:
2909 return fold_build2_loc (loc, code, type,
2910 eval_subst (loc, TREE_OPERAND (arg, 0),
2911 old0, new0, old1, new1),
2912 eval_subst (loc, TREE_OPERAND (arg, 1),
2913 old0, new0, old1, new1));
2915 case tcc_expression:
2916 switch (code)
2918 case SAVE_EXPR:
2919 return eval_subst (loc, TREE_OPERAND (arg, 0), old0, new0,
2920 old1, new1);
2922 case COMPOUND_EXPR:
2923 return eval_subst (loc, TREE_OPERAND (arg, 1), old0, new0,
2924 old1, new1);
2926 case COND_EXPR:
2927 return fold_build3_loc (loc, code, type,
2928 eval_subst (loc, TREE_OPERAND (arg, 0),
2929 old0, new0, old1, new1),
2930 eval_subst (loc, TREE_OPERAND (arg, 1),
2931 old0, new0, old1, new1),
2932 eval_subst (loc, TREE_OPERAND (arg, 2),
2933 old0, new0, old1, new1));
2934 default:
2935 break;
2937 /* Fall through - ??? */
2939 case tcc_comparison:
2941 tree arg0 = TREE_OPERAND (arg, 0);
2942 tree arg1 = TREE_OPERAND (arg, 1);
2944 /* We need to check both for exact equality and tree equality. The
2945 former will be true if the operand has a side-effect. In that
2946 case, we know the operand occurred exactly once. */
2948 if (arg0 == old0 || operand_equal_p (arg0, old0, 0))
2949 arg0 = new0;
2950 else if (arg0 == old1 || operand_equal_p (arg0, old1, 0))
2951 arg0 = new1;
2953 if (arg1 == old0 || operand_equal_p (arg1, old0, 0))
2954 arg1 = new0;
2955 else if (arg1 == old1 || operand_equal_p (arg1, old1, 0))
2956 arg1 = new1;
2958 return fold_build2_loc (loc, code, type, arg0, arg1);
2961 default:
2962 return arg;
2966 /* Return a tree for the case when the result of an expression is RESULT
2967 converted to TYPE and OMITTED was previously an operand of the expression
2968 but is now not needed (e.g., we folded OMITTED * 0).
2970 If OMITTED has side effects, we must evaluate it. Otherwise, just do
2971 the conversion of RESULT to TYPE. */
2973 tree
2974 omit_one_operand_loc (location_t loc, tree type, tree result, tree omitted)
2976 tree t = fold_convert_loc (loc, type, result);
2978 /* If the resulting operand is an empty statement, just return the omitted
2979 statement casted to void. */
2980 if (IS_EMPTY_STMT (t) && TREE_SIDE_EFFECTS (omitted))
2981 return build1_loc (loc, NOP_EXPR, void_type_node,
2982 fold_ignored_result (omitted));
2984 if (TREE_SIDE_EFFECTS (omitted))
2985 return build2_loc (loc, COMPOUND_EXPR, type,
2986 fold_ignored_result (omitted), t);
2988 return non_lvalue_loc (loc, t);
2991 /* Similar, but call pedantic_non_lvalue instead of non_lvalue. */
2993 static tree
2994 pedantic_omit_one_operand_loc (location_t loc, tree type, tree result,
2995 tree omitted)
2997 tree t = fold_convert_loc (loc, type, result);
2999 /* If the resulting operand is an empty statement, just return the omitted
3000 statement casted to void. */
3001 if (IS_EMPTY_STMT (t) && TREE_SIDE_EFFECTS (omitted))
3002 return build1_loc (loc, NOP_EXPR, void_type_node,
3003 fold_ignored_result (omitted));
3005 if (TREE_SIDE_EFFECTS (omitted))
3006 return build2_loc (loc, COMPOUND_EXPR, type,
3007 fold_ignored_result (omitted), t);
3009 return pedantic_non_lvalue_loc (loc, t);
3012 /* Return a tree for the case when the result of an expression is RESULT
3013 converted to TYPE and OMITTED1 and OMITTED2 were previously operands
3014 of the expression but are now not needed.
3016 If OMITTED1 or OMITTED2 has side effects, they must be evaluated.
3017 If both OMITTED1 and OMITTED2 have side effects, OMITTED1 is
3018 evaluated before OMITTED2. Otherwise, if neither has side effects,
3019 just do the conversion of RESULT to TYPE. */
3021 tree
3022 omit_two_operands_loc (location_t loc, tree type, tree result,
3023 tree omitted1, tree omitted2)
3025 tree t = fold_convert_loc (loc, type, result);
3027 if (TREE_SIDE_EFFECTS (omitted2))
3028 t = build2_loc (loc, COMPOUND_EXPR, type, omitted2, t);
3029 if (TREE_SIDE_EFFECTS (omitted1))
3030 t = build2_loc (loc, COMPOUND_EXPR, type, omitted1, t);
3032 return TREE_CODE (t) != COMPOUND_EXPR ? non_lvalue_loc (loc, t) : t;
3036 /* Return a simplified tree node for the truth-negation of ARG. This
3037 never alters ARG itself. We assume that ARG is an operation that
3038 returns a truth value (0 or 1).
3040 FIXME: one would think we would fold the result, but it causes
3041 problems with the dominator optimizer. */
3043 tree
3044 fold_truth_not_expr (location_t loc, tree arg)
3046 tree type = TREE_TYPE (arg);
3047 enum tree_code code = TREE_CODE (arg);
3048 location_t loc1, loc2;
3050 /* If this is a comparison, we can simply invert it, except for
3051 floating-point non-equality comparisons, in which case we just
3052 enclose a TRUTH_NOT_EXPR around what we have. */
3054 if (TREE_CODE_CLASS (code) == tcc_comparison)
3056 tree op_type = TREE_TYPE (TREE_OPERAND (arg, 0));
3057 if (FLOAT_TYPE_P (op_type)
3058 && flag_trapping_math
3059 && code != ORDERED_EXPR && code != UNORDERED_EXPR
3060 && code != NE_EXPR && code != EQ_EXPR)
3061 return NULL_TREE;
3063 code = invert_tree_comparison (code, HONOR_NANS (TYPE_MODE (op_type)));
3064 if (code == ERROR_MARK)
3065 return NULL_TREE;
3067 return build2_loc (loc, code, type, TREE_OPERAND (arg, 0),
3068 TREE_OPERAND (arg, 1));
3071 switch (code)
3073 case INTEGER_CST:
3074 return constant_boolean_node (integer_zerop (arg), type);
3076 case TRUTH_AND_EXPR:
3077 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3078 loc2 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3079 return build2_loc (loc, TRUTH_OR_EXPR, type,
3080 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)),
3081 invert_truthvalue_loc (loc2, TREE_OPERAND (arg, 1)));
3083 case TRUTH_OR_EXPR:
3084 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3085 loc2 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3086 return build2_loc (loc, TRUTH_AND_EXPR, type,
3087 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)),
3088 invert_truthvalue_loc (loc2, TREE_OPERAND (arg, 1)));
3090 case TRUTH_XOR_EXPR:
3091 /* Here we can invert either operand. We invert the first operand
3092 unless the second operand is a TRUTH_NOT_EXPR in which case our
3093 result is the XOR of the first operand with the inside of the
3094 negation of the second operand. */
3096 if (TREE_CODE (TREE_OPERAND (arg, 1)) == TRUTH_NOT_EXPR)
3097 return build2_loc (loc, TRUTH_XOR_EXPR, type, TREE_OPERAND (arg, 0),
3098 TREE_OPERAND (TREE_OPERAND (arg, 1), 0));
3099 else
3100 return build2_loc (loc, TRUTH_XOR_EXPR, type,
3101 invert_truthvalue_loc (loc, TREE_OPERAND (arg, 0)),
3102 TREE_OPERAND (arg, 1));
3104 case TRUTH_ANDIF_EXPR:
3105 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3106 loc2 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3107 return build2_loc (loc, TRUTH_ORIF_EXPR, type,
3108 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)),
3109 invert_truthvalue_loc (loc2, TREE_OPERAND (arg, 1)));
3111 case TRUTH_ORIF_EXPR:
3112 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3113 loc2 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3114 return build2_loc (loc, TRUTH_ANDIF_EXPR, type,
3115 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)),
3116 invert_truthvalue_loc (loc2, TREE_OPERAND (arg, 1)));
3118 case TRUTH_NOT_EXPR:
3119 return TREE_OPERAND (arg, 0);
3121 case COND_EXPR:
3123 tree arg1 = TREE_OPERAND (arg, 1);
3124 tree arg2 = TREE_OPERAND (arg, 2);
3126 loc1 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3127 loc2 = expr_location_or (TREE_OPERAND (arg, 2), loc);
3129 /* A COND_EXPR may have a throw as one operand, which
3130 then has void type. Just leave void operands
3131 as they are. */
3132 return build3_loc (loc, COND_EXPR, type, TREE_OPERAND (arg, 0),
3133 VOID_TYPE_P (TREE_TYPE (arg1))
3134 ? arg1 : invert_truthvalue_loc (loc1, arg1),
3135 VOID_TYPE_P (TREE_TYPE (arg2))
3136 ? arg2 : invert_truthvalue_loc (loc2, arg2));
3139 case COMPOUND_EXPR:
3140 loc1 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3141 return build2_loc (loc, COMPOUND_EXPR, type,
3142 TREE_OPERAND (arg, 0),
3143 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 1)));
3145 case NON_LVALUE_EXPR:
3146 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3147 return invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0));
3149 CASE_CONVERT:
3150 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
3151 return build1_loc (loc, TRUTH_NOT_EXPR, type, arg);
3153 /* ... fall through ... */
3155 case FLOAT_EXPR:
3156 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3157 return build1_loc (loc, TREE_CODE (arg), type,
3158 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)));
3160 case BIT_AND_EXPR:
3161 if (!integer_onep (TREE_OPERAND (arg, 1)))
3162 return NULL_TREE;
3163 return build2_loc (loc, EQ_EXPR, type, arg, build_int_cst (type, 0));
3165 case SAVE_EXPR:
3166 return build1_loc (loc, TRUTH_NOT_EXPR, type, arg);
3168 case CLEANUP_POINT_EXPR:
3169 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3170 return build1_loc (loc, CLEANUP_POINT_EXPR, type,
3171 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)));
3173 default:
3174 return NULL_TREE;
3178 /* Return a simplified tree node for the truth-negation of ARG. This
3179 never alters ARG itself. We assume that ARG is an operation that
3180 returns a truth value (0 or 1).
3182 FIXME: one would think we would fold the result, but it causes
3183 problems with the dominator optimizer. */
3185 tree
3186 invert_truthvalue_loc (location_t loc, tree arg)
3188 tree tem;
3190 if (TREE_CODE (arg) == ERROR_MARK)
3191 return arg;
3193 tem = fold_truth_not_expr (loc, arg);
3194 if (!tem)
3195 tem = build1_loc (loc, TRUTH_NOT_EXPR, TREE_TYPE (arg), arg);
3197 return tem;
3200 /* Given a bit-wise operation CODE applied to ARG0 and ARG1, see if both
3201 operands are another bit-wise operation with a common input. If so,
3202 distribute the bit operations to save an operation and possibly two if
3203 constants are involved. For example, convert
3204 (A | B) & (A | C) into A | (B & C)
3205 Further simplification will occur if B and C are constants.
3207 If this optimization cannot be done, 0 will be returned. */
3209 static tree
3210 distribute_bit_expr (location_t loc, enum tree_code code, tree type,
3211 tree arg0, tree arg1)
3213 tree common;
3214 tree left, right;
3216 if (TREE_CODE (arg0) != TREE_CODE (arg1)
3217 || TREE_CODE (arg0) == code
3218 || (TREE_CODE (arg0) != BIT_AND_EXPR
3219 && TREE_CODE (arg0) != BIT_IOR_EXPR))
3220 return 0;
3222 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0))
3224 common = TREE_OPERAND (arg0, 0);
3225 left = TREE_OPERAND (arg0, 1);
3226 right = TREE_OPERAND (arg1, 1);
3228 else if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 1), 0))
3230 common = TREE_OPERAND (arg0, 0);
3231 left = TREE_OPERAND (arg0, 1);
3232 right = TREE_OPERAND (arg1, 0);
3234 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 0), 0))
3236 common = TREE_OPERAND (arg0, 1);
3237 left = TREE_OPERAND (arg0, 0);
3238 right = TREE_OPERAND (arg1, 1);
3240 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1), 0))
3242 common = TREE_OPERAND (arg0, 1);
3243 left = TREE_OPERAND (arg0, 0);
3244 right = TREE_OPERAND (arg1, 0);
3246 else
3247 return 0;
3249 common = fold_convert_loc (loc, type, common);
3250 left = fold_convert_loc (loc, type, left);
3251 right = fold_convert_loc (loc, type, right);
3252 return fold_build2_loc (loc, TREE_CODE (arg0), type, common,
3253 fold_build2_loc (loc, code, type, left, right));
3256 /* Knowing that ARG0 and ARG1 are both RDIV_EXPRs, simplify a binary operation
3257 with code CODE. This optimization is unsafe. */
3258 static tree
3259 distribute_real_division (location_t loc, enum tree_code code, tree type,
3260 tree arg0, tree arg1)
3262 bool mul0 = TREE_CODE (arg0) == MULT_EXPR;
3263 bool mul1 = TREE_CODE (arg1) == MULT_EXPR;
3265 /* (A / C) +- (B / C) -> (A +- B) / C. */
3266 if (mul0 == mul1
3267 && operand_equal_p (TREE_OPERAND (arg0, 1),
3268 TREE_OPERAND (arg1, 1), 0))
3269 return fold_build2_loc (loc, mul0 ? MULT_EXPR : RDIV_EXPR, type,
3270 fold_build2_loc (loc, code, type,
3271 TREE_OPERAND (arg0, 0),
3272 TREE_OPERAND (arg1, 0)),
3273 TREE_OPERAND (arg0, 1));
3275 /* (A / C1) +- (A / C2) -> A * (1 / C1 +- 1 / C2). */
3276 if (operand_equal_p (TREE_OPERAND (arg0, 0),
3277 TREE_OPERAND (arg1, 0), 0)
3278 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
3279 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST)
3281 REAL_VALUE_TYPE r0, r1;
3282 r0 = TREE_REAL_CST (TREE_OPERAND (arg0, 1));
3283 r1 = TREE_REAL_CST (TREE_OPERAND (arg1, 1));
3284 if (!mul0)
3285 real_arithmetic (&r0, RDIV_EXPR, &dconst1, &r0);
3286 if (!mul1)
3287 real_arithmetic (&r1, RDIV_EXPR, &dconst1, &r1);
3288 real_arithmetic (&r0, code, &r0, &r1);
3289 return fold_build2_loc (loc, MULT_EXPR, type,
3290 TREE_OPERAND (arg0, 0),
3291 build_real (type, r0));
3294 return NULL_TREE;
3297 /* Return a BIT_FIELD_REF of type TYPE to refer to BITSIZE bits of INNER
3298 starting at BITPOS. The field is unsigned if UNSIGNEDP is nonzero. */
3300 static tree
3301 make_bit_field_ref (location_t loc, tree inner, tree type,
3302 HOST_WIDE_INT bitsize, HOST_WIDE_INT bitpos, int unsignedp)
3304 tree result, bftype;
3306 if (bitpos == 0)
3308 tree size = TYPE_SIZE (TREE_TYPE (inner));
3309 if ((INTEGRAL_TYPE_P (TREE_TYPE (inner))
3310 || POINTER_TYPE_P (TREE_TYPE (inner)))
3311 && host_integerp (size, 0)
3312 && tree_low_cst (size, 0) == bitsize)
3313 return fold_convert_loc (loc, type, inner);
3316 bftype = type;
3317 if (TYPE_PRECISION (bftype) != bitsize
3318 || TYPE_UNSIGNED (bftype) == !unsignedp)
3319 bftype = build_nonstandard_integer_type (bitsize, 0);
3321 result = build3_loc (loc, BIT_FIELD_REF, bftype, inner,
3322 size_int (bitsize), bitsize_int (bitpos));
3324 if (bftype != type)
3325 result = fold_convert_loc (loc, type, result);
3327 return result;
3330 /* Optimize a bit-field compare.
3332 There are two cases: First is a compare against a constant and the
3333 second is a comparison of two items where the fields are at the same
3334 bit position relative to the start of a chunk (byte, halfword, word)
3335 large enough to contain it. In these cases we can avoid the shift
3336 implicit in bitfield extractions.
3338 For constants, we emit a compare of the shifted constant with the
3339 BIT_AND_EXPR of a mask and a byte, halfword, or word of the operand being
3340 compared. For two fields at the same position, we do the ANDs with the
3341 similar mask and compare the result of the ANDs.
3343 CODE is the comparison code, known to be either NE_EXPR or EQ_EXPR.
3344 COMPARE_TYPE is the type of the comparison, and LHS and RHS
3345 are the left and right operands of the comparison, respectively.
3347 If the optimization described above can be done, we return the resulting
3348 tree. Otherwise we return zero. */
3350 static tree
3351 optimize_bit_field_compare (location_t loc, enum tree_code code,
3352 tree compare_type, tree lhs, tree rhs)
3354 HOST_WIDE_INT lbitpos, lbitsize, rbitpos, rbitsize, nbitpos, nbitsize;
3355 tree type = TREE_TYPE (lhs);
3356 tree signed_type, unsigned_type;
3357 int const_p = TREE_CODE (rhs) == INTEGER_CST;
3358 enum machine_mode lmode, rmode, nmode;
3359 int lunsignedp, runsignedp;
3360 int lvolatilep = 0, rvolatilep = 0;
3361 tree linner, rinner = NULL_TREE;
3362 tree mask;
3363 tree offset;
3365 /* Get all the information about the extractions being done. If the bit size
3366 if the same as the size of the underlying object, we aren't doing an
3367 extraction at all and so can do nothing. We also don't want to
3368 do anything if the inner expression is a PLACEHOLDER_EXPR since we
3369 then will no longer be able to replace it. */
3370 linner = get_inner_reference (lhs, &lbitsize, &lbitpos, &offset, &lmode,
3371 &lunsignedp, &lvolatilep, false);
3372 if (linner == lhs || lbitsize == GET_MODE_BITSIZE (lmode) || lbitsize < 0
3373 || offset != 0 || TREE_CODE (linner) == PLACEHOLDER_EXPR)
3374 return 0;
3376 if (!const_p)
3378 /* If this is not a constant, we can only do something if bit positions,
3379 sizes, and signedness are the same. */
3380 rinner = get_inner_reference (rhs, &rbitsize, &rbitpos, &offset, &rmode,
3381 &runsignedp, &rvolatilep, false);
3383 if (rinner == rhs || lbitpos != rbitpos || lbitsize != rbitsize
3384 || lunsignedp != runsignedp || offset != 0
3385 || TREE_CODE (rinner) == PLACEHOLDER_EXPR)
3386 return 0;
3389 /* See if we can find a mode to refer to this field. We should be able to,
3390 but fail if we can't. */
3391 if (lvolatilep
3392 && GET_MODE_BITSIZE (lmode) > 0
3393 && flag_strict_volatile_bitfields > 0)
3394 nmode = lmode;
3395 else
3396 nmode = get_best_mode (lbitsize, lbitpos, 0, 0,
3397 const_p ? TYPE_ALIGN (TREE_TYPE (linner))
3398 : MIN (TYPE_ALIGN (TREE_TYPE (linner)),
3399 TYPE_ALIGN (TREE_TYPE (rinner))),
3400 word_mode, lvolatilep || rvolatilep);
3401 if (nmode == VOIDmode)
3402 return 0;
3404 /* Set signed and unsigned types of the precision of this mode for the
3405 shifts below. */
3406 signed_type = lang_hooks.types.type_for_mode (nmode, 0);
3407 unsigned_type = lang_hooks.types.type_for_mode (nmode, 1);
3409 /* Compute the bit position and size for the new reference and our offset
3410 within it. If the new reference is the same size as the original, we
3411 won't optimize anything, so return zero. */
3412 nbitsize = GET_MODE_BITSIZE (nmode);
3413 nbitpos = lbitpos & ~ (nbitsize - 1);
3414 lbitpos -= nbitpos;
3415 if (nbitsize == lbitsize)
3416 return 0;
3418 if (BYTES_BIG_ENDIAN)
3419 lbitpos = nbitsize - lbitsize - lbitpos;
3421 /* Make the mask to be used against the extracted field. */
3422 mask = build_int_cst_type (unsigned_type, -1);
3423 mask = const_binop (LSHIFT_EXPR, mask, size_int (nbitsize - lbitsize));
3424 mask = const_binop (RSHIFT_EXPR, mask,
3425 size_int (nbitsize - lbitsize - lbitpos));
3427 if (! const_p)
3428 /* If not comparing with constant, just rework the comparison
3429 and return. */
3430 return fold_build2_loc (loc, code, compare_type,
3431 fold_build2_loc (loc, BIT_AND_EXPR, unsigned_type,
3432 make_bit_field_ref (loc, linner,
3433 unsigned_type,
3434 nbitsize, nbitpos,
3436 mask),
3437 fold_build2_loc (loc, BIT_AND_EXPR, unsigned_type,
3438 make_bit_field_ref (loc, rinner,
3439 unsigned_type,
3440 nbitsize, nbitpos,
3442 mask));
3444 /* Otherwise, we are handling the constant case. See if the constant is too
3445 big for the field. Warn and return a tree of for 0 (false) if so. We do
3446 this not only for its own sake, but to avoid having to test for this
3447 error case below. If we didn't, we might generate wrong code.
3449 For unsigned fields, the constant shifted right by the field length should
3450 be all zero. For signed fields, the high-order bits should agree with
3451 the sign bit. */
3453 if (lunsignedp)
3455 if (! integer_zerop (const_binop (RSHIFT_EXPR,
3456 fold_convert_loc (loc,
3457 unsigned_type, rhs),
3458 size_int (lbitsize))))
3460 warning (0, "comparison is always %d due to width of bit-field",
3461 code == NE_EXPR);
3462 return constant_boolean_node (code == NE_EXPR, compare_type);
3465 else
3467 tree tem = const_binop (RSHIFT_EXPR,
3468 fold_convert_loc (loc, signed_type, rhs),
3469 size_int (lbitsize - 1));
3470 if (! integer_zerop (tem) && ! integer_all_onesp (tem))
3472 warning (0, "comparison is always %d due to width of bit-field",
3473 code == NE_EXPR);
3474 return constant_boolean_node (code == NE_EXPR, compare_type);
3478 /* Single-bit compares should always be against zero. */
3479 if (lbitsize == 1 && ! integer_zerop (rhs))
3481 code = code == EQ_EXPR ? NE_EXPR : EQ_EXPR;
3482 rhs = build_int_cst (type, 0);
3485 /* Make a new bitfield reference, shift the constant over the
3486 appropriate number of bits and mask it with the computed mask
3487 (in case this was a signed field). If we changed it, make a new one. */
3488 lhs = make_bit_field_ref (loc, linner, unsigned_type, nbitsize, nbitpos, 1);
3489 if (lvolatilep)
3491 TREE_SIDE_EFFECTS (lhs) = 1;
3492 TREE_THIS_VOLATILE (lhs) = 1;
3495 rhs = const_binop (BIT_AND_EXPR,
3496 const_binop (LSHIFT_EXPR,
3497 fold_convert_loc (loc, unsigned_type, rhs),
3498 size_int (lbitpos)),
3499 mask);
3501 lhs = build2_loc (loc, code, compare_type,
3502 build2 (BIT_AND_EXPR, unsigned_type, lhs, mask), rhs);
3503 return lhs;
3506 /* Subroutine for fold_truthop: decode a field reference.
3508 If EXP is a comparison reference, we return the innermost reference.
3510 *PBITSIZE is set to the number of bits in the reference, *PBITPOS is
3511 set to the starting bit number.
3513 If the innermost field can be completely contained in a mode-sized
3514 unit, *PMODE is set to that mode. Otherwise, it is set to VOIDmode.
3516 *PVOLATILEP is set to 1 if the any expression encountered is volatile;
3517 otherwise it is not changed.
3519 *PUNSIGNEDP is set to the signedness of the field.
3521 *PMASK is set to the mask used. This is either contained in a
3522 BIT_AND_EXPR or derived from the width of the field.
3524 *PAND_MASK is set to the mask found in a BIT_AND_EXPR, if any.
3526 Return 0 if this is not a component reference or is one that we can't
3527 do anything with. */
3529 static tree
3530 decode_field_reference (location_t loc, tree exp, HOST_WIDE_INT *pbitsize,
3531 HOST_WIDE_INT *pbitpos, enum machine_mode *pmode,
3532 int *punsignedp, int *pvolatilep,
3533 tree *pmask, tree *pand_mask)
3535 tree outer_type = 0;
3536 tree and_mask = 0;
3537 tree mask, inner, offset;
3538 tree unsigned_type;
3539 unsigned int precision;
3541 /* All the optimizations using this function assume integer fields.
3542 There are problems with FP fields since the type_for_size call
3543 below can fail for, e.g., XFmode. */
3544 if (! INTEGRAL_TYPE_P (TREE_TYPE (exp)))
3545 return 0;
3547 /* We are interested in the bare arrangement of bits, so strip everything
3548 that doesn't affect the machine mode. However, record the type of the
3549 outermost expression if it may matter below. */
3550 if (CONVERT_EXPR_P (exp)
3551 || TREE_CODE (exp) == NON_LVALUE_EXPR)
3552 outer_type = TREE_TYPE (exp);
3553 STRIP_NOPS (exp);
3555 if (TREE_CODE (exp) == BIT_AND_EXPR)
3557 and_mask = TREE_OPERAND (exp, 1);
3558 exp = TREE_OPERAND (exp, 0);
3559 STRIP_NOPS (exp); STRIP_NOPS (and_mask);
3560 if (TREE_CODE (and_mask) != INTEGER_CST)
3561 return 0;
3564 inner = get_inner_reference (exp, pbitsize, pbitpos, &offset, pmode,
3565 punsignedp, pvolatilep, false);
3566 if ((inner == exp && and_mask == 0)
3567 || *pbitsize < 0 || offset != 0
3568 || TREE_CODE (inner) == PLACEHOLDER_EXPR)
3569 return 0;
3571 /* If the number of bits in the reference is the same as the bitsize of
3572 the outer type, then the outer type gives the signedness. Otherwise
3573 (in case of a small bitfield) the signedness is unchanged. */
3574 if (outer_type && *pbitsize == TYPE_PRECISION (outer_type))
3575 *punsignedp = TYPE_UNSIGNED (outer_type);
3577 /* Compute the mask to access the bitfield. */
3578 unsigned_type = lang_hooks.types.type_for_size (*pbitsize, 1);
3579 precision = TYPE_PRECISION (unsigned_type);
3581 mask = build_int_cst_type (unsigned_type, -1);
3583 mask = const_binop (LSHIFT_EXPR, mask, size_int (precision - *pbitsize));
3584 mask = const_binop (RSHIFT_EXPR, mask, size_int (precision - *pbitsize));
3586 /* Merge it with the mask we found in the BIT_AND_EXPR, if any. */
3587 if (and_mask != 0)
3588 mask = fold_build2_loc (loc, BIT_AND_EXPR, unsigned_type,
3589 fold_convert_loc (loc, unsigned_type, and_mask), mask);
3591 *pmask = mask;
3592 *pand_mask = and_mask;
3593 return inner;
3596 /* Return nonzero if MASK represents a mask of SIZE ones in the low-order
3597 bit positions. */
3599 static int
3600 all_ones_mask_p (const_tree mask, int size)
3602 tree type = TREE_TYPE (mask);
3603 unsigned int precision = TYPE_PRECISION (type);
3604 tree tmask;
3606 tmask = build_int_cst_type (signed_type_for (type), -1);
3608 return
3609 tree_int_cst_equal (mask,
3610 const_binop (RSHIFT_EXPR,
3611 const_binop (LSHIFT_EXPR, tmask,
3612 size_int (precision - size)),
3613 size_int (precision - size)));
3616 /* Subroutine for fold: determine if VAL is the INTEGER_CONST that
3617 represents the sign bit of EXP's type. If EXP represents a sign
3618 or zero extension, also test VAL against the unextended type.
3619 The return value is the (sub)expression whose sign bit is VAL,
3620 or NULL_TREE otherwise. */
3622 static tree
3623 sign_bit_p (tree exp, const_tree val)
3625 unsigned HOST_WIDE_INT mask_lo, lo;
3626 HOST_WIDE_INT mask_hi, hi;
3627 int width;
3628 tree t;
3630 /* Tree EXP must have an integral type. */
3631 t = TREE_TYPE (exp);
3632 if (! INTEGRAL_TYPE_P (t))
3633 return NULL_TREE;
3635 /* Tree VAL must be an integer constant. */
3636 if (TREE_CODE (val) != INTEGER_CST
3637 || TREE_OVERFLOW (val))
3638 return NULL_TREE;
3640 width = TYPE_PRECISION (t);
3641 if (width > HOST_BITS_PER_WIDE_INT)
3643 hi = (unsigned HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT - 1);
3644 lo = 0;
3646 mask_hi = ((unsigned HOST_WIDE_INT) -1
3647 >> (2 * HOST_BITS_PER_WIDE_INT - width));
3648 mask_lo = -1;
3650 else
3652 hi = 0;
3653 lo = (unsigned HOST_WIDE_INT) 1 << (width - 1);
3655 mask_hi = 0;
3656 mask_lo = ((unsigned HOST_WIDE_INT) -1
3657 >> (HOST_BITS_PER_WIDE_INT - width));
3660 /* We mask off those bits beyond TREE_TYPE (exp) so that we can
3661 treat VAL as if it were unsigned. */
3662 if ((TREE_INT_CST_HIGH (val) & mask_hi) == hi
3663 && (TREE_INT_CST_LOW (val) & mask_lo) == lo)
3664 return exp;
3666 /* Handle extension from a narrower type. */
3667 if (TREE_CODE (exp) == NOP_EXPR
3668 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))) < width)
3669 return sign_bit_p (TREE_OPERAND (exp, 0), val);
3671 return NULL_TREE;
3674 /* Subroutine for fold_truthop: determine if an operand is simple enough
3675 to be evaluated unconditionally. */
3677 static int
3678 simple_operand_p (const_tree exp)
3680 /* Strip any conversions that don't change the machine mode. */
3681 STRIP_NOPS (exp);
3683 return (CONSTANT_CLASS_P (exp)
3684 || TREE_CODE (exp) == SSA_NAME
3685 || (DECL_P (exp)
3686 && ! TREE_ADDRESSABLE (exp)
3687 && ! TREE_THIS_VOLATILE (exp)
3688 && ! DECL_NONLOCAL (exp)
3689 /* Don't regard global variables as simple. They may be
3690 allocated in ways unknown to the compiler (shared memory,
3691 #pragma weak, etc). */
3692 && ! TREE_PUBLIC (exp)
3693 && ! DECL_EXTERNAL (exp)
3694 /* Loading a static variable is unduly expensive, but global
3695 registers aren't expensive. */
3696 && (! TREE_STATIC (exp) || DECL_REGISTER (exp))));
3699 /* The following functions are subroutines to fold_range_test and allow it to
3700 try to change a logical combination of comparisons into a range test.
3702 For example, both
3703 X == 2 || X == 3 || X == 4 || X == 5
3705 X >= 2 && X <= 5
3706 are converted to
3707 (unsigned) (X - 2) <= 3
3709 We describe each set of comparisons as being either inside or outside
3710 a range, using a variable named like IN_P, and then describe the
3711 range with a lower and upper bound. If one of the bounds is omitted,
3712 it represents either the highest or lowest value of the type.
3714 In the comments below, we represent a range by two numbers in brackets
3715 preceded by a "+" to designate being inside that range, or a "-" to
3716 designate being outside that range, so the condition can be inverted by
3717 flipping the prefix. An omitted bound is represented by a "-". For
3718 example, "- [-, 10]" means being outside the range starting at the lowest
3719 possible value and ending at 10, in other words, being greater than 10.
3720 The range "+ [-, -]" is always true and hence the range "- [-, -]" is
3721 always false.
3723 We set up things so that the missing bounds are handled in a consistent
3724 manner so neither a missing bound nor "true" and "false" need to be
3725 handled using a special case. */
3727 /* Return the result of applying CODE to ARG0 and ARG1, but handle the case
3728 of ARG0 and/or ARG1 being omitted, meaning an unlimited range. UPPER0_P
3729 and UPPER1_P are nonzero if the respective argument is an upper bound
3730 and zero for a lower. TYPE, if nonzero, is the type of the result; it
3731 must be specified for a comparison. ARG1 will be converted to ARG0's
3732 type if both are specified. */
3734 static tree
3735 range_binop (enum tree_code code, tree type, tree arg0, int upper0_p,
3736 tree arg1, int upper1_p)
3738 tree tem;
3739 int result;
3740 int sgn0, sgn1;
3742 /* If neither arg represents infinity, do the normal operation.
3743 Else, if not a comparison, return infinity. Else handle the special
3744 comparison rules. Note that most of the cases below won't occur, but
3745 are handled for consistency. */
3747 if (arg0 != 0 && arg1 != 0)
3749 tem = fold_build2 (code, type != 0 ? type : TREE_TYPE (arg0),
3750 arg0, fold_convert (TREE_TYPE (arg0), arg1));
3751 STRIP_NOPS (tem);
3752 return TREE_CODE (tem) == INTEGER_CST ? tem : 0;
3755 if (TREE_CODE_CLASS (code) != tcc_comparison)
3756 return 0;
3758 /* Set SGN[01] to -1 if ARG[01] is a lower bound, 1 for upper, and 0
3759 for neither. In real maths, we cannot assume open ended ranges are
3760 the same. But, this is computer arithmetic, where numbers are finite.
3761 We can therefore make the transformation of any unbounded range with
3762 the value Z, Z being greater than any representable number. This permits
3763 us to treat unbounded ranges as equal. */
3764 sgn0 = arg0 != 0 ? 0 : (upper0_p ? 1 : -1);
3765 sgn1 = arg1 != 0 ? 0 : (upper1_p ? 1 : -1);
3766 switch (code)
3768 case EQ_EXPR:
3769 result = sgn0 == sgn1;
3770 break;
3771 case NE_EXPR:
3772 result = sgn0 != sgn1;
3773 break;
3774 case LT_EXPR:
3775 result = sgn0 < sgn1;
3776 break;
3777 case LE_EXPR:
3778 result = sgn0 <= sgn1;
3779 break;
3780 case GT_EXPR:
3781 result = sgn0 > sgn1;
3782 break;
3783 case GE_EXPR:
3784 result = sgn0 >= sgn1;
3785 break;
3786 default:
3787 gcc_unreachable ();
3790 return constant_boolean_node (result, type);
3793 /* Given EXP, a logical expression, set the range it is testing into
3794 variables denoted by PIN_P, PLOW, and PHIGH. Return the expression
3795 actually being tested. *PLOW and *PHIGH will be made of the same
3796 type as the returned expression. If EXP is not a comparison, we
3797 will most likely not be returning a useful value and range. Set
3798 *STRICT_OVERFLOW_P to true if the return value is only valid
3799 because signed overflow is undefined; otherwise, do not change
3800 *STRICT_OVERFLOW_P. */
3802 tree
3803 make_range (tree exp, int *pin_p, tree *plow, tree *phigh,
3804 bool *strict_overflow_p)
3806 enum tree_code code;
3807 tree arg0 = NULL_TREE, arg1 = NULL_TREE;
3808 tree exp_type = NULL_TREE, arg0_type = NULL_TREE;
3809 int in_p, n_in_p;
3810 tree low, high, n_low, n_high;
3811 location_t loc = EXPR_LOCATION (exp);
3813 /* Start with simply saying "EXP != 0" and then look at the code of EXP
3814 and see if we can refine the range. Some of the cases below may not
3815 happen, but it doesn't seem worth worrying about this. We "continue"
3816 the outer loop when we've changed something; otherwise we "break"
3817 the switch, which will "break" the while. */
3819 in_p = 0;
3820 low = high = build_int_cst (TREE_TYPE (exp), 0);
3822 while (1)
3824 code = TREE_CODE (exp);
3825 exp_type = TREE_TYPE (exp);
3827 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
3829 if (TREE_OPERAND_LENGTH (exp) > 0)
3830 arg0 = TREE_OPERAND (exp, 0);
3831 if (TREE_CODE_CLASS (code) == tcc_comparison
3832 || TREE_CODE_CLASS (code) == tcc_unary
3833 || TREE_CODE_CLASS (code) == tcc_binary)
3834 arg0_type = TREE_TYPE (arg0);
3835 if (TREE_CODE_CLASS (code) == tcc_binary
3836 || TREE_CODE_CLASS (code) == tcc_comparison
3837 || (TREE_CODE_CLASS (code) == tcc_expression
3838 && TREE_OPERAND_LENGTH (exp) > 1))
3839 arg1 = TREE_OPERAND (exp, 1);
3842 switch (code)
3844 case TRUTH_NOT_EXPR:
3845 in_p = ! in_p, exp = arg0;
3846 continue;
3848 case EQ_EXPR: case NE_EXPR:
3849 case LT_EXPR: case LE_EXPR: case GE_EXPR: case GT_EXPR:
3850 /* We can only do something if the range is testing for zero
3851 and if the second operand is an integer constant. Note that
3852 saying something is "in" the range we make is done by
3853 complementing IN_P since it will set in the initial case of
3854 being not equal to zero; "out" is leaving it alone. */
3855 if (low == 0 || high == 0
3856 || ! integer_zerop (low) || ! integer_zerop (high)
3857 || TREE_CODE (arg1) != INTEGER_CST)
3858 break;
3860 switch (code)
3862 case NE_EXPR: /* - [c, c] */
3863 low = high = arg1;
3864 break;
3865 case EQ_EXPR: /* + [c, c] */
3866 in_p = ! in_p, low = high = arg1;
3867 break;
3868 case GT_EXPR: /* - [-, c] */
3869 low = 0, high = arg1;
3870 break;
3871 case GE_EXPR: /* + [c, -] */
3872 in_p = ! in_p, low = arg1, high = 0;
3873 break;
3874 case LT_EXPR: /* - [c, -] */
3875 low = arg1, high = 0;
3876 break;
3877 case LE_EXPR: /* + [-, c] */
3878 in_p = ! in_p, low = 0, high = arg1;
3879 break;
3880 default:
3881 gcc_unreachable ();
3884 /* If this is an unsigned comparison, we also know that EXP is
3885 greater than or equal to zero. We base the range tests we make
3886 on that fact, so we record it here so we can parse existing
3887 range tests. We test arg0_type since often the return type
3888 of, e.g. EQ_EXPR, is boolean. */
3889 if (TYPE_UNSIGNED (arg0_type) && (low == 0 || high == 0))
3891 if (! merge_ranges (&n_in_p, &n_low, &n_high,
3892 in_p, low, high, 1,
3893 build_int_cst (arg0_type, 0),
3894 NULL_TREE))
3895 break;
3897 in_p = n_in_p, low = n_low, high = n_high;
3899 /* If the high bound is missing, but we have a nonzero low
3900 bound, reverse the range so it goes from zero to the low bound
3901 minus 1. */
3902 if (high == 0 && low && ! integer_zerop (low))
3904 in_p = ! in_p;
3905 high = range_binop (MINUS_EXPR, NULL_TREE, low, 0,
3906 integer_one_node, 0);
3907 low = build_int_cst (arg0_type, 0);
3911 exp = arg0;
3912 continue;
3914 case NEGATE_EXPR:
3915 /* (-x) IN [a,b] -> x in [-b, -a] */
3916 n_low = range_binop (MINUS_EXPR, exp_type,
3917 build_int_cst (exp_type, 0),
3918 0, high, 1);
3919 n_high = range_binop (MINUS_EXPR, exp_type,
3920 build_int_cst (exp_type, 0),
3921 0, low, 0);
3922 if (n_high != 0 && TREE_OVERFLOW (n_high))
3923 break;
3924 goto normalize;
3926 case BIT_NOT_EXPR:
3927 /* ~ X -> -X - 1 */
3928 exp = build2_loc (loc, MINUS_EXPR, exp_type, negate_expr (arg0),
3929 build_int_cst (exp_type, 1));
3930 continue;
3932 case PLUS_EXPR: case MINUS_EXPR:
3933 if (TREE_CODE (arg1) != INTEGER_CST)
3934 break;
3936 /* If flag_wrapv and ARG0_TYPE is signed, then we cannot
3937 move a constant to the other side. */
3938 if (!TYPE_UNSIGNED (arg0_type)
3939 && !TYPE_OVERFLOW_UNDEFINED (arg0_type))
3940 break;
3942 /* If EXP is signed, any overflow in the computation is undefined,
3943 so we don't worry about it so long as our computations on
3944 the bounds don't overflow. For unsigned, overflow is defined
3945 and this is exactly the right thing. */
3946 n_low = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3947 arg0_type, low, 0, arg1, 0);
3948 n_high = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
3949 arg0_type, high, 1, arg1, 0);
3950 if ((n_low != 0 && TREE_OVERFLOW (n_low))
3951 || (n_high != 0 && TREE_OVERFLOW (n_high)))
3952 break;
3954 if (TYPE_OVERFLOW_UNDEFINED (arg0_type))
3955 *strict_overflow_p = true;
3957 normalize:
3958 /* Check for an unsigned range which has wrapped around the maximum
3959 value thus making n_high < n_low, and normalize it. */
3960 if (n_low && n_high && tree_int_cst_lt (n_high, n_low))
3962 low = range_binop (PLUS_EXPR, arg0_type, n_high, 0,
3963 integer_one_node, 0);
3964 high = range_binop (MINUS_EXPR, arg0_type, n_low, 0,
3965 integer_one_node, 0);
3967 /* If the range is of the form +/- [ x+1, x ], we won't
3968 be able to normalize it. But then, it represents the
3969 whole range or the empty set, so make it
3970 +/- [ -, - ]. */
3971 if (tree_int_cst_equal (n_low, low)
3972 && tree_int_cst_equal (n_high, high))
3973 low = high = 0;
3974 else
3975 in_p = ! in_p;
3977 else
3978 low = n_low, high = n_high;
3980 exp = arg0;
3981 continue;
3983 CASE_CONVERT: case NON_LVALUE_EXPR:
3984 if (TYPE_PRECISION (arg0_type) > TYPE_PRECISION (exp_type))
3985 break;
3987 if (! INTEGRAL_TYPE_P (arg0_type)
3988 || (low != 0 && ! int_fits_type_p (low, arg0_type))
3989 || (high != 0 && ! int_fits_type_p (high, arg0_type)))
3990 break;
3992 n_low = low, n_high = high;
3994 if (n_low != 0)
3995 n_low = fold_convert_loc (loc, arg0_type, n_low);
3997 if (n_high != 0)
3998 n_high = fold_convert_loc (loc, arg0_type, n_high);
4001 /* If we're converting arg0 from an unsigned type, to exp,
4002 a signed type, we will be doing the comparison as unsigned.
4003 The tests above have already verified that LOW and HIGH
4004 are both positive.
4006 So we have to ensure that we will handle large unsigned
4007 values the same way that the current signed bounds treat
4008 negative values. */
4010 if (!TYPE_UNSIGNED (exp_type) && TYPE_UNSIGNED (arg0_type))
4012 tree high_positive;
4013 tree equiv_type;
4014 /* For fixed-point modes, we need to pass the saturating flag
4015 as the 2nd parameter. */
4016 if (ALL_FIXED_POINT_MODE_P (TYPE_MODE (arg0_type)))
4017 equiv_type = lang_hooks.types.type_for_mode
4018 (TYPE_MODE (arg0_type),
4019 TYPE_SATURATING (arg0_type));
4020 else
4021 equiv_type = lang_hooks.types.type_for_mode
4022 (TYPE_MODE (arg0_type), 1);
4024 /* A range without an upper bound is, naturally, unbounded.
4025 Since convert would have cropped a very large value, use
4026 the max value for the destination type. */
4027 high_positive
4028 = TYPE_MAX_VALUE (equiv_type) ? TYPE_MAX_VALUE (equiv_type)
4029 : TYPE_MAX_VALUE (arg0_type);
4031 if (TYPE_PRECISION (exp_type) == TYPE_PRECISION (arg0_type))
4032 high_positive = fold_build2_loc (loc, RSHIFT_EXPR, arg0_type,
4033 fold_convert_loc (loc, arg0_type,
4034 high_positive),
4035 build_int_cst (arg0_type, 1));
4037 /* If the low bound is specified, "and" the range with the
4038 range for which the original unsigned value will be
4039 positive. */
4040 if (low != 0)
4042 if (! merge_ranges (&n_in_p, &n_low, &n_high,
4043 1, n_low, n_high, 1,
4044 fold_convert_loc (loc, arg0_type,
4045 integer_zero_node),
4046 high_positive))
4047 break;
4049 in_p = (n_in_p == in_p);
4051 else
4053 /* Otherwise, "or" the range with the range of the input
4054 that will be interpreted as negative. */
4055 if (! merge_ranges (&n_in_p, &n_low, &n_high,
4056 0, n_low, n_high, 1,
4057 fold_convert_loc (loc, arg0_type,
4058 integer_zero_node),
4059 high_positive))
4060 break;
4062 in_p = (in_p != n_in_p);
4066 exp = arg0;
4067 low = n_low, high = n_high;
4068 continue;
4070 default:
4071 break;
4074 break;
4077 /* If EXP is a constant, we can evaluate whether this is true or false. */
4078 if (TREE_CODE (exp) == INTEGER_CST)
4080 in_p = in_p == (integer_onep (range_binop (GE_EXPR, integer_type_node,
4081 exp, 0, low, 0))
4082 && integer_onep (range_binop (LE_EXPR, integer_type_node,
4083 exp, 1, high, 1)));
4084 low = high = 0;
4085 exp = 0;
4088 *pin_p = in_p, *plow = low, *phigh = high;
4089 return exp;
4092 /* Given a range, LOW, HIGH, and IN_P, an expression, EXP, and a result
4093 type, TYPE, return an expression to test if EXP is in (or out of, depending
4094 on IN_P) the range. Return 0 if the test couldn't be created. */
4096 tree
4097 build_range_check (location_t loc, tree type, tree exp, int in_p,
4098 tree low, tree high)
4100 tree etype = TREE_TYPE (exp), value;
4102 #ifdef HAVE_canonicalize_funcptr_for_compare
4103 /* Disable this optimization for function pointer expressions
4104 on targets that require function pointer canonicalization. */
4105 if (HAVE_canonicalize_funcptr_for_compare
4106 && TREE_CODE (etype) == POINTER_TYPE
4107 && TREE_CODE (TREE_TYPE (etype)) == FUNCTION_TYPE)
4108 return NULL_TREE;
4109 #endif
4111 if (! in_p)
4113 value = build_range_check (loc, type, exp, 1, low, high);
4114 if (value != 0)
4115 return invert_truthvalue_loc (loc, value);
4117 return 0;
4120 if (low == 0 && high == 0)
4121 return build_int_cst (type, 1);
4123 if (low == 0)
4124 return fold_build2_loc (loc, LE_EXPR, type, exp,
4125 fold_convert_loc (loc, etype, high));
4127 if (high == 0)
4128 return fold_build2_loc (loc, GE_EXPR, type, exp,
4129 fold_convert_loc (loc, etype, low));
4131 if (operand_equal_p (low, high, 0))
4132 return fold_build2_loc (loc, EQ_EXPR, type, exp,
4133 fold_convert_loc (loc, etype, low));
4135 if (integer_zerop (low))
4137 if (! TYPE_UNSIGNED (etype))
4139 etype = unsigned_type_for (etype);
4140 high = fold_convert_loc (loc, etype, high);
4141 exp = fold_convert_loc (loc, etype, exp);
4143 return build_range_check (loc, type, exp, 1, 0, high);
4146 /* Optimize (c>=1) && (c<=127) into (signed char)c > 0. */
4147 if (integer_onep (low) && TREE_CODE (high) == INTEGER_CST)
4149 unsigned HOST_WIDE_INT lo;
4150 HOST_WIDE_INT hi;
4151 int prec;
4153 prec = TYPE_PRECISION (etype);
4154 if (prec <= HOST_BITS_PER_WIDE_INT)
4156 hi = 0;
4157 lo = ((unsigned HOST_WIDE_INT) 1 << (prec - 1)) - 1;
4159 else
4161 hi = ((HOST_WIDE_INT) 1 << (prec - HOST_BITS_PER_WIDE_INT - 1)) - 1;
4162 lo = (unsigned HOST_WIDE_INT) -1;
4165 if (TREE_INT_CST_HIGH (high) == hi && TREE_INT_CST_LOW (high) == lo)
4167 if (TYPE_UNSIGNED (etype))
4169 tree signed_etype = signed_type_for (etype);
4170 if (TYPE_PRECISION (signed_etype) != TYPE_PRECISION (etype))
4171 etype
4172 = build_nonstandard_integer_type (TYPE_PRECISION (etype), 0);
4173 else
4174 etype = signed_etype;
4175 exp = fold_convert_loc (loc, etype, exp);
4177 return fold_build2_loc (loc, GT_EXPR, type, exp,
4178 build_int_cst (etype, 0));
4182 /* Optimize (c>=low) && (c<=high) into (c-low>=0) && (c-low<=high-low).
4183 This requires wrap-around arithmetics for the type of the expression.
4184 First make sure that arithmetics in this type is valid, then make sure
4185 that it wraps around. */
4186 if (TREE_CODE (etype) == ENUMERAL_TYPE || TREE_CODE (etype) == BOOLEAN_TYPE)
4187 etype = lang_hooks.types.type_for_size (TYPE_PRECISION (etype),
4188 TYPE_UNSIGNED (etype));
4190 if (TREE_CODE (etype) == INTEGER_TYPE && !TYPE_OVERFLOW_WRAPS (etype))
4192 tree utype, minv, maxv;
4194 /* Check if (unsigned) INT_MAX + 1 == (unsigned) INT_MIN
4195 for the type in question, as we rely on this here. */
4196 utype = unsigned_type_for (etype);
4197 maxv = fold_convert_loc (loc, utype, TYPE_MAX_VALUE (etype));
4198 maxv = range_binop (PLUS_EXPR, NULL_TREE, maxv, 1,
4199 integer_one_node, 1);
4200 minv = fold_convert_loc (loc, utype, TYPE_MIN_VALUE (etype));
4202 if (integer_zerop (range_binop (NE_EXPR, integer_type_node,
4203 minv, 1, maxv, 1)))
4204 etype = utype;
4205 else
4206 return 0;
4209 high = fold_convert_loc (loc, etype, high);
4210 low = fold_convert_loc (loc, etype, low);
4211 exp = fold_convert_loc (loc, etype, exp);
4213 value = const_binop (MINUS_EXPR, high, low);
4216 if (POINTER_TYPE_P (etype))
4218 if (value != 0 && !TREE_OVERFLOW (value))
4220 low = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (low), low);
4221 return build_range_check (loc, type,
4222 fold_build_pointer_plus_loc (loc, exp, low),
4223 1, build_int_cst (etype, 0), value);
4225 return 0;
4228 if (value != 0 && !TREE_OVERFLOW (value))
4229 return build_range_check (loc, type,
4230 fold_build2_loc (loc, MINUS_EXPR, etype, exp, low),
4231 1, build_int_cst (etype, 0), value);
4233 return 0;
4236 /* Return the predecessor of VAL in its type, handling the infinite case. */
4238 static tree
4239 range_predecessor (tree val)
4241 tree type = TREE_TYPE (val);
4243 if (INTEGRAL_TYPE_P (type)
4244 && operand_equal_p (val, TYPE_MIN_VALUE (type), 0))
4245 return 0;
4246 else
4247 return range_binop (MINUS_EXPR, NULL_TREE, val, 0, integer_one_node, 0);
4250 /* Return the successor of VAL in its type, handling the infinite case. */
4252 static tree
4253 range_successor (tree val)
4255 tree type = TREE_TYPE (val);
4257 if (INTEGRAL_TYPE_P (type)
4258 && operand_equal_p (val, TYPE_MAX_VALUE (type), 0))
4259 return 0;
4260 else
4261 return range_binop (PLUS_EXPR, NULL_TREE, val, 0, integer_one_node, 0);
4264 /* Given two ranges, see if we can merge them into one. Return 1 if we
4265 can, 0 if we can't. Set the output range into the specified parameters. */
4267 bool
4268 merge_ranges (int *pin_p, tree *plow, tree *phigh, int in0_p, tree low0,
4269 tree high0, int in1_p, tree low1, tree high1)
4271 int no_overlap;
4272 int subset;
4273 int temp;
4274 tree tem;
4275 int in_p;
4276 tree low, high;
4277 int lowequal = ((low0 == 0 && low1 == 0)
4278 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
4279 low0, 0, low1, 0)));
4280 int highequal = ((high0 == 0 && high1 == 0)
4281 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
4282 high0, 1, high1, 1)));
4284 /* Make range 0 be the range that starts first, or ends last if they
4285 start at the same value. Swap them if it isn't. */
4286 if (integer_onep (range_binop (GT_EXPR, integer_type_node,
4287 low0, 0, low1, 0))
4288 || (lowequal
4289 && integer_onep (range_binop (GT_EXPR, integer_type_node,
4290 high1, 1, high0, 1))))
4292 temp = in0_p, in0_p = in1_p, in1_p = temp;
4293 tem = low0, low0 = low1, low1 = tem;
4294 tem = high0, high0 = high1, high1 = tem;
4297 /* Now flag two cases, whether the ranges are disjoint or whether the
4298 second range is totally subsumed in the first. Note that the tests
4299 below are simplified by the ones above. */
4300 no_overlap = integer_onep (range_binop (LT_EXPR, integer_type_node,
4301 high0, 1, low1, 0));
4302 subset = integer_onep (range_binop (LE_EXPR, integer_type_node,
4303 high1, 1, high0, 1));
4305 /* We now have four cases, depending on whether we are including or
4306 excluding the two ranges. */
4307 if (in0_p && in1_p)
4309 /* If they don't overlap, the result is false. If the second range
4310 is a subset it is the result. Otherwise, the range is from the start
4311 of the second to the end of the first. */
4312 if (no_overlap)
4313 in_p = 0, low = high = 0;
4314 else if (subset)
4315 in_p = 1, low = low1, high = high1;
4316 else
4317 in_p = 1, low = low1, high = high0;
4320 else if (in0_p && ! in1_p)
4322 /* If they don't overlap, the result is the first range. If they are
4323 equal, the result is false. If the second range is a subset of the
4324 first, and the ranges begin at the same place, we go from just after
4325 the end of the second range to the end of the first. If the second
4326 range is not a subset of the first, or if it is a subset and both
4327 ranges end at the same place, the range starts at the start of the
4328 first range and ends just before the second range.
4329 Otherwise, we can't describe this as a single range. */
4330 if (no_overlap)
4331 in_p = 1, low = low0, high = high0;
4332 else if (lowequal && highequal)
4333 in_p = 0, low = high = 0;
4334 else if (subset && lowequal)
4336 low = range_successor (high1);
4337 high = high0;
4338 in_p = 1;
4339 if (low == 0)
4341 /* We are in the weird situation where high0 > high1 but
4342 high1 has no successor. Punt. */
4343 return 0;
4346 else if (! subset || highequal)
4348 low = low0;
4349 high = range_predecessor (low1);
4350 in_p = 1;
4351 if (high == 0)
4353 /* low0 < low1 but low1 has no predecessor. Punt. */
4354 return 0;
4357 else
4358 return 0;
4361 else if (! in0_p && in1_p)
4363 /* If they don't overlap, the result is the second range. If the second
4364 is a subset of the first, the result is false. Otherwise,
4365 the range starts just after the first range and ends at the
4366 end of the second. */
4367 if (no_overlap)
4368 in_p = 1, low = low1, high = high1;
4369 else if (subset || highequal)
4370 in_p = 0, low = high = 0;
4371 else
4373 low = range_successor (high0);
4374 high = high1;
4375 in_p = 1;
4376 if (low == 0)
4378 /* high1 > high0 but high0 has no successor. Punt. */
4379 return 0;
4384 else
4386 /* The case where we are excluding both ranges. Here the complex case
4387 is if they don't overlap. In that case, the only time we have a
4388 range is if they are adjacent. If the second is a subset of the
4389 first, the result is the first. Otherwise, the range to exclude
4390 starts at the beginning of the first range and ends at the end of the
4391 second. */
4392 if (no_overlap)
4394 if (integer_onep (range_binop (EQ_EXPR, integer_type_node,
4395 range_successor (high0),
4396 1, low1, 0)))
4397 in_p = 0, low = low0, high = high1;
4398 else
4400 /* Canonicalize - [min, x] into - [-, x]. */
4401 if (low0 && TREE_CODE (low0) == INTEGER_CST)
4402 switch (TREE_CODE (TREE_TYPE (low0)))
4404 case ENUMERAL_TYPE:
4405 if (TYPE_PRECISION (TREE_TYPE (low0))
4406 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (low0))))
4407 break;
4408 /* FALLTHROUGH */
4409 case INTEGER_TYPE:
4410 if (tree_int_cst_equal (low0,
4411 TYPE_MIN_VALUE (TREE_TYPE (low0))))
4412 low0 = 0;
4413 break;
4414 case POINTER_TYPE:
4415 if (TYPE_UNSIGNED (TREE_TYPE (low0))
4416 && integer_zerop (low0))
4417 low0 = 0;
4418 break;
4419 default:
4420 break;
4423 /* Canonicalize - [x, max] into - [x, -]. */
4424 if (high1 && TREE_CODE (high1) == INTEGER_CST)
4425 switch (TREE_CODE (TREE_TYPE (high1)))
4427 case ENUMERAL_TYPE:
4428 if (TYPE_PRECISION (TREE_TYPE (high1))
4429 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (high1))))
4430 break;
4431 /* FALLTHROUGH */
4432 case INTEGER_TYPE:
4433 if (tree_int_cst_equal (high1,
4434 TYPE_MAX_VALUE (TREE_TYPE (high1))))
4435 high1 = 0;
4436 break;
4437 case POINTER_TYPE:
4438 if (TYPE_UNSIGNED (TREE_TYPE (high1))
4439 && integer_zerop (range_binop (PLUS_EXPR, NULL_TREE,
4440 high1, 1,
4441 integer_one_node, 1)))
4442 high1 = 0;
4443 break;
4444 default:
4445 break;
4448 /* The ranges might be also adjacent between the maximum and
4449 minimum values of the given type. For
4450 - [{min,-}, x] and - [y, {max,-}] ranges where x + 1 < y
4451 return + [x + 1, y - 1]. */
4452 if (low0 == 0 && high1 == 0)
4454 low = range_successor (high0);
4455 high = range_predecessor (low1);
4456 if (low == 0 || high == 0)
4457 return 0;
4459 in_p = 1;
4461 else
4462 return 0;
4465 else if (subset)
4466 in_p = 0, low = low0, high = high0;
4467 else
4468 in_p = 0, low = low0, high = high1;
4471 *pin_p = in_p, *plow = low, *phigh = high;
4472 return 1;
4476 /* Subroutine of fold, looking inside expressions of the form
4477 A op B ? A : C, where ARG0, ARG1 and ARG2 are the three operands
4478 of the COND_EXPR. This function is being used also to optimize
4479 A op B ? C : A, by reversing the comparison first.
4481 Return a folded expression whose code is not a COND_EXPR
4482 anymore, or NULL_TREE if no folding opportunity is found. */
4484 static tree
4485 fold_cond_expr_with_comparison (location_t loc, tree type,
4486 tree arg0, tree arg1, tree arg2)
4488 enum tree_code comp_code = TREE_CODE (arg0);
4489 tree arg00 = TREE_OPERAND (arg0, 0);
4490 tree arg01 = TREE_OPERAND (arg0, 1);
4491 tree arg1_type = TREE_TYPE (arg1);
4492 tree tem;
4494 STRIP_NOPS (arg1);
4495 STRIP_NOPS (arg2);
4497 /* If we have A op 0 ? A : -A, consider applying the following
4498 transformations:
4500 A == 0? A : -A same as -A
4501 A != 0? A : -A same as A
4502 A >= 0? A : -A same as abs (A)
4503 A > 0? A : -A same as abs (A)
4504 A <= 0? A : -A same as -abs (A)
4505 A < 0? A : -A same as -abs (A)
4507 None of these transformations work for modes with signed
4508 zeros. If A is +/-0, the first two transformations will
4509 change the sign of the result (from +0 to -0, or vice
4510 versa). The last four will fix the sign of the result,
4511 even though the original expressions could be positive or
4512 negative, depending on the sign of A.
4514 Note that all these transformations are correct if A is
4515 NaN, since the two alternatives (A and -A) are also NaNs. */
4516 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type))
4517 && (FLOAT_TYPE_P (TREE_TYPE (arg01))
4518 ? real_zerop (arg01)
4519 : integer_zerop (arg01))
4520 && ((TREE_CODE (arg2) == NEGATE_EXPR
4521 && operand_equal_p (TREE_OPERAND (arg2, 0), arg1, 0))
4522 /* In the case that A is of the form X-Y, '-A' (arg2) may
4523 have already been folded to Y-X, check for that. */
4524 || (TREE_CODE (arg1) == MINUS_EXPR
4525 && TREE_CODE (arg2) == MINUS_EXPR
4526 && operand_equal_p (TREE_OPERAND (arg1, 0),
4527 TREE_OPERAND (arg2, 1), 0)
4528 && operand_equal_p (TREE_OPERAND (arg1, 1),
4529 TREE_OPERAND (arg2, 0), 0))))
4530 switch (comp_code)
4532 case EQ_EXPR:
4533 case UNEQ_EXPR:
4534 tem = fold_convert_loc (loc, arg1_type, arg1);
4535 return pedantic_non_lvalue_loc (loc,
4536 fold_convert_loc (loc, type,
4537 negate_expr (tem)));
4538 case NE_EXPR:
4539 case LTGT_EXPR:
4540 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
4541 case UNGE_EXPR:
4542 case UNGT_EXPR:
4543 if (flag_trapping_math)
4544 break;
4545 /* Fall through. */
4546 case GE_EXPR:
4547 case GT_EXPR:
4548 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
4549 arg1 = fold_convert_loc (loc, signed_type_for
4550 (TREE_TYPE (arg1)), arg1);
4551 tem = fold_build1_loc (loc, ABS_EXPR, TREE_TYPE (arg1), arg1);
4552 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, tem));
4553 case UNLE_EXPR:
4554 case UNLT_EXPR:
4555 if (flag_trapping_math)
4556 break;
4557 case LE_EXPR:
4558 case LT_EXPR:
4559 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
4560 arg1 = fold_convert_loc (loc, signed_type_for
4561 (TREE_TYPE (arg1)), arg1);
4562 tem = fold_build1_loc (loc, ABS_EXPR, TREE_TYPE (arg1), arg1);
4563 return negate_expr (fold_convert_loc (loc, type, tem));
4564 default:
4565 gcc_assert (TREE_CODE_CLASS (comp_code) == tcc_comparison);
4566 break;
4569 /* A != 0 ? A : 0 is simply A, unless A is -0. Likewise
4570 A == 0 ? A : 0 is always 0 unless A is -0. Note that
4571 both transformations are correct when A is NaN: A != 0
4572 is then true, and A == 0 is false. */
4574 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type))
4575 && integer_zerop (arg01) && integer_zerop (arg2))
4577 if (comp_code == NE_EXPR)
4578 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
4579 else if (comp_code == EQ_EXPR)
4580 return build_int_cst (type, 0);
4583 /* Try some transformations of A op B ? A : B.
4585 A == B? A : B same as B
4586 A != B? A : B same as A
4587 A >= B? A : B same as max (A, B)
4588 A > B? A : B same as max (B, A)
4589 A <= B? A : B same as min (A, B)
4590 A < B? A : B same as min (B, A)
4592 As above, these transformations don't work in the presence
4593 of signed zeros. For example, if A and B are zeros of
4594 opposite sign, the first two transformations will change
4595 the sign of the result. In the last four, the original
4596 expressions give different results for (A=+0, B=-0) and
4597 (A=-0, B=+0), but the transformed expressions do not.
4599 The first two transformations are correct if either A or B
4600 is a NaN. In the first transformation, the condition will
4601 be false, and B will indeed be chosen. In the case of the
4602 second transformation, the condition A != B will be true,
4603 and A will be chosen.
4605 The conversions to max() and min() are not correct if B is
4606 a number and A is not. The conditions in the original
4607 expressions will be false, so all four give B. The min()
4608 and max() versions would give a NaN instead. */
4609 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type))
4610 && operand_equal_for_comparison_p (arg01, arg2, arg00)
4611 /* Avoid these transformations if the COND_EXPR may be used
4612 as an lvalue in the C++ front-end. PR c++/19199. */
4613 && (in_gimple_form
4614 || (strcmp (lang_hooks.name, "GNU C++") != 0
4615 && strcmp (lang_hooks.name, "GNU Objective-C++") != 0)
4616 || ! maybe_lvalue_p (arg1)
4617 || ! maybe_lvalue_p (arg2)))
4619 tree comp_op0 = arg00;
4620 tree comp_op1 = arg01;
4621 tree comp_type = TREE_TYPE (comp_op0);
4623 /* Avoid adding NOP_EXPRs in case this is an lvalue. */
4624 if (TYPE_MAIN_VARIANT (comp_type) == TYPE_MAIN_VARIANT (type))
4626 comp_type = type;
4627 comp_op0 = arg1;
4628 comp_op1 = arg2;
4631 switch (comp_code)
4633 case EQ_EXPR:
4634 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, arg2));
4635 case NE_EXPR:
4636 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
4637 case LE_EXPR:
4638 case LT_EXPR:
4639 case UNLE_EXPR:
4640 case UNLT_EXPR:
4641 /* In C++ a ?: expression can be an lvalue, so put the
4642 operand which will be used if they are equal first
4643 so that we can convert this back to the
4644 corresponding COND_EXPR. */
4645 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4647 comp_op0 = fold_convert_loc (loc, comp_type, comp_op0);
4648 comp_op1 = fold_convert_loc (loc, comp_type, comp_op1);
4649 tem = (comp_code == LE_EXPR || comp_code == UNLE_EXPR)
4650 ? fold_build2_loc (loc, MIN_EXPR, comp_type, comp_op0, comp_op1)
4651 : fold_build2_loc (loc, MIN_EXPR, comp_type,
4652 comp_op1, comp_op0);
4653 return pedantic_non_lvalue_loc (loc,
4654 fold_convert_loc (loc, type, tem));
4656 break;
4657 case GE_EXPR:
4658 case GT_EXPR:
4659 case UNGE_EXPR:
4660 case UNGT_EXPR:
4661 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4663 comp_op0 = fold_convert_loc (loc, comp_type, comp_op0);
4664 comp_op1 = fold_convert_loc (loc, comp_type, comp_op1);
4665 tem = (comp_code == GE_EXPR || comp_code == UNGE_EXPR)
4666 ? fold_build2_loc (loc, MAX_EXPR, comp_type, comp_op0, comp_op1)
4667 : fold_build2_loc (loc, MAX_EXPR, comp_type,
4668 comp_op1, comp_op0);
4669 return pedantic_non_lvalue_loc (loc,
4670 fold_convert_loc (loc, type, tem));
4672 break;
4673 case UNEQ_EXPR:
4674 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4675 return pedantic_non_lvalue_loc (loc,
4676 fold_convert_loc (loc, type, arg2));
4677 break;
4678 case LTGT_EXPR:
4679 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1))))
4680 return pedantic_non_lvalue_loc (loc,
4681 fold_convert_loc (loc, type, arg1));
4682 break;
4683 default:
4684 gcc_assert (TREE_CODE_CLASS (comp_code) == tcc_comparison);
4685 break;
4689 /* If this is A op C1 ? A : C2 with C1 and C2 constant integers,
4690 we might still be able to simplify this. For example,
4691 if C1 is one less or one more than C2, this might have started
4692 out as a MIN or MAX and been transformed by this function.
4693 Only good for INTEGER_TYPEs, because we need TYPE_MAX_VALUE. */
4695 if (INTEGRAL_TYPE_P (type)
4696 && TREE_CODE (arg01) == INTEGER_CST
4697 && TREE_CODE (arg2) == INTEGER_CST)
4698 switch (comp_code)
4700 case EQ_EXPR:
4701 if (TREE_CODE (arg1) == INTEGER_CST)
4702 break;
4703 /* We can replace A with C1 in this case. */
4704 arg1 = fold_convert_loc (loc, type, arg01);
4705 return fold_build3_loc (loc, COND_EXPR, type, arg0, arg1, arg2);
4707 case LT_EXPR:
4708 /* If C1 is C2 + 1, this is min(A, C2), but use ARG00's type for
4709 MIN_EXPR, to preserve the signedness of the comparison. */
4710 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type),
4711 OEP_ONLY_CONST)
4712 && operand_equal_p (arg01,
4713 const_binop (PLUS_EXPR, arg2,
4714 build_int_cst (type, 1)),
4715 OEP_ONLY_CONST))
4717 tem = fold_build2_loc (loc, MIN_EXPR, TREE_TYPE (arg00), arg00,
4718 fold_convert_loc (loc, TREE_TYPE (arg00),
4719 arg2));
4720 return pedantic_non_lvalue_loc (loc,
4721 fold_convert_loc (loc, type, tem));
4723 break;
4725 case LE_EXPR:
4726 /* If C1 is C2 - 1, this is min(A, C2), with the same care
4727 as above. */
4728 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type),
4729 OEP_ONLY_CONST)
4730 && operand_equal_p (arg01,
4731 const_binop (MINUS_EXPR, arg2,
4732 build_int_cst (type, 1)),
4733 OEP_ONLY_CONST))
4735 tem = fold_build2_loc (loc, MIN_EXPR, TREE_TYPE (arg00), arg00,
4736 fold_convert_loc (loc, TREE_TYPE (arg00),
4737 arg2));
4738 return pedantic_non_lvalue_loc (loc,
4739 fold_convert_loc (loc, type, tem));
4741 break;
4743 case GT_EXPR:
4744 /* If C1 is C2 - 1, this is max(A, C2), but use ARG00's type for
4745 MAX_EXPR, to preserve the signedness of the comparison. */
4746 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type),
4747 OEP_ONLY_CONST)
4748 && operand_equal_p (arg01,
4749 const_binop (MINUS_EXPR, arg2,
4750 build_int_cst (type, 1)),
4751 OEP_ONLY_CONST))
4753 tem = fold_build2_loc (loc, MAX_EXPR, TREE_TYPE (arg00), arg00,
4754 fold_convert_loc (loc, TREE_TYPE (arg00),
4755 arg2));
4756 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, tem));
4758 break;
4760 case GE_EXPR:
4761 /* If C1 is C2 + 1, this is max(A, C2), with the same care as above. */
4762 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type),
4763 OEP_ONLY_CONST)
4764 && operand_equal_p (arg01,
4765 const_binop (PLUS_EXPR, arg2,
4766 build_int_cst (type, 1)),
4767 OEP_ONLY_CONST))
4769 tem = fold_build2_loc (loc, MAX_EXPR, TREE_TYPE (arg00), arg00,
4770 fold_convert_loc (loc, TREE_TYPE (arg00),
4771 arg2));
4772 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, tem));
4774 break;
4775 case NE_EXPR:
4776 break;
4777 default:
4778 gcc_unreachable ();
4781 return NULL_TREE;
4786 #ifndef LOGICAL_OP_NON_SHORT_CIRCUIT
4787 #define LOGICAL_OP_NON_SHORT_CIRCUIT \
4788 (BRANCH_COST (optimize_function_for_speed_p (cfun), \
4789 false) >= 2)
4790 #endif
4792 /* EXP is some logical combination of boolean tests. See if we can
4793 merge it into some range test. Return the new tree if so. */
4795 static tree
4796 fold_range_test (location_t loc, enum tree_code code, tree type,
4797 tree op0, tree op1)
4799 int or_op = (code == TRUTH_ORIF_EXPR
4800 || code == TRUTH_OR_EXPR);
4801 int in0_p, in1_p, in_p;
4802 tree low0, low1, low, high0, high1, high;
4803 bool strict_overflow_p = false;
4804 tree lhs = make_range (op0, &in0_p, &low0, &high0, &strict_overflow_p);
4805 tree rhs = make_range (op1, &in1_p, &low1, &high1, &strict_overflow_p);
4806 tree tem;
4807 const char * const warnmsg = G_("assuming signed overflow does not occur "
4808 "when simplifying range test");
4810 /* If this is an OR operation, invert both sides; we will invert
4811 again at the end. */
4812 if (or_op)
4813 in0_p = ! in0_p, in1_p = ! in1_p;
4815 /* If both expressions are the same, if we can merge the ranges, and we
4816 can build the range test, return it or it inverted. If one of the
4817 ranges is always true or always false, consider it to be the same
4818 expression as the other. */
4819 if ((lhs == 0 || rhs == 0 || operand_equal_p (lhs, rhs, 0))
4820 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
4821 in1_p, low1, high1)
4822 && 0 != (tem = (build_range_check (loc, type,
4823 lhs != 0 ? lhs
4824 : rhs != 0 ? rhs : integer_zero_node,
4825 in_p, low, high))))
4827 if (strict_overflow_p)
4828 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_COMPARISON);
4829 return or_op ? invert_truthvalue_loc (loc, tem) : tem;
4832 /* On machines where the branch cost is expensive, if this is a
4833 short-circuited branch and the underlying object on both sides
4834 is the same, make a non-short-circuit operation. */
4835 else if (LOGICAL_OP_NON_SHORT_CIRCUIT
4836 && lhs != 0 && rhs != 0
4837 && (code == TRUTH_ANDIF_EXPR
4838 || code == TRUTH_ORIF_EXPR)
4839 && operand_equal_p (lhs, rhs, 0))
4841 /* If simple enough, just rewrite. Otherwise, make a SAVE_EXPR
4842 unless we are at top level or LHS contains a PLACEHOLDER_EXPR, in
4843 which cases we can't do this. */
4844 if (simple_operand_p (lhs))
4845 return build2_loc (loc, code == TRUTH_ANDIF_EXPR
4846 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
4847 type, op0, op1);
4849 else if (!lang_hooks.decls.global_bindings_p ()
4850 && !CONTAINS_PLACEHOLDER_P (lhs))
4852 tree common = save_expr (lhs);
4854 if (0 != (lhs = build_range_check (loc, type, common,
4855 or_op ? ! in0_p : in0_p,
4856 low0, high0))
4857 && (0 != (rhs = build_range_check (loc, type, common,
4858 or_op ? ! in1_p : in1_p,
4859 low1, high1))))
4861 if (strict_overflow_p)
4862 fold_overflow_warning (warnmsg,
4863 WARN_STRICT_OVERFLOW_COMPARISON);
4864 return build2_loc (loc, code == TRUTH_ANDIF_EXPR
4865 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
4866 type, lhs, rhs);
4871 return 0;
4874 /* Subroutine for fold_truthop: C is an INTEGER_CST interpreted as a P
4875 bit value. Arrange things so the extra bits will be set to zero if and
4876 only if C is signed-extended to its full width. If MASK is nonzero,
4877 it is an INTEGER_CST that should be AND'ed with the extra bits. */
4879 static tree
4880 unextend (tree c, int p, int unsignedp, tree mask)
4882 tree type = TREE_TYPE (c);
4883 int modesize = GET_MODE_BITSIZE (TYPE_MODE (type));
4884 tree temp;
4886 if (p == modesize || unsignedp)
4887 return c;
4889 /* We work by getting just the sign bit into the low-order bit, then
4890 into the high-order bit, then sign-extend. We then XOR that value
4891 with C. */
4892 temp = const_binop (RSHIFT_EXPR, c, size_int (p - 1));
4893 temp = const_binop (BIT_AND_EXPR, temp, size_int (1));
4895 /* We must use a signed type in order to get an arithmetic right shift.
4896 However, we must also avoid introducing accidental overflows, so that
4897 a subsequent call to integer_zerop will work. Hence we must
4898 do the type conversion here. At this point, the constant is either
4899 zero or one, and the conversion to a signed type can never overflow.
4900 We could get an overflow if this conversion is done anywhere else. */
4901 if (TYPE_UNSIGNED (type))
4902 temp = fold_convert (signed_type_for (type), temp);
4904 temp = const_binop (LSHIFT_EXPR, temp, size_int (modesize - 1));
4905 temp = const_binop (RSHIFT_EXPR, temp, size_int (modesize - p - 1));
4906 if (mask != 0)
4907 temp = const_binop (BIT_AND_EXPR, temp,
4908 fold_convert (TREE_TYPE (c), mask));
4909 /* If necessary, convert the type back to match the type of C. */
4910 if (TYPE_UNSIGNED (type))
4911 temp = fold_convert (type, temp);
4913 return fold_convert (type, const_binop (BIT_XOR_EXPR, c, temp));
4916 /* For an expression that has the form
4917 (A && B) || ~B
4919 (A || B) && ~B,
4920 we can drop one of the inner expressions and simplify to
4921 A || ~B
4923 A && ~B
4924 LOC is the location of the resulting expression. OP is the inner
4925 logical operation; the left-hand side in the examples above, while CMPOP
4926 is the right-hand side. RHS_ONLY is used to prevent us from accidentally
4927 removing a condition that guards another, as in
4928 (A != NULL && A->...) || A == NULL
4929 which we must not transform. If RHS_ONLY is true, only eliminate the
4930 right-most operand of the inner logical operation. */
4932 static tree
4933 merge_truthop_with_opposite_arm (location_t loc, tree op, tree cmpop,
4934 bool rhs_only)
4936 tree type = TREE_TYPE (cmpop);
4937 enum tree_code code = TREE_CODE (cmpop);
4938 enum tree_code truthop_code = TREE_CODE (op);
4939 tree lhs = TREE_OPERAND (op, 0);
4940 tree rhs = TREE_OPERAND (op, 1);
4941 tree orig_lhs = lhs, orig_rhs = rhs;
4942 enum tree_code rhs_code = TREE_CODE (rhs);
4943 enum tree_code lhs_code = TREE_CODE (lhs);
4944 enum tree_code inv_code;
4946 if (TREE_SIDE_EFFECTS (op) || TREE_SIDE_EFFECTS (cmpop))
4947 return NULL_TREE;
4949 if (TREE_CODE_CLASS (code) != tcc_comparison)
4950 return NULL_TREE;
4952 if (rhs_code == truthop_code)
4954 tree newrhs = merge_truthop_with_opposite_arm (loc, rhs, cmpop, rhs_only);
4955 if (newrhs != NULL_TREE)
4957 rhs = newrhs;
4958 rhs_code = TREE_CODE (rhs);
4961 if (lhs_code == truthop_code && !rhs_only)
4963 tree newlhs = merge_truthop_with_opposite_arm (loc, lhs, cmpop, false);
4964 if (newlhs != NULL_TREE)
4966 lhs = newlhs;
4967 lhs_code = TREE_CODE (lhs);
4971 inv_code = invert_tree_comparison (code, HONOR_NANS (TYPE_MODE (type)));
4972 if (inv_code == rhs_code
4973 && operand_equal_p (TREE_OPERAND (rhs, 0), TREE_OPERAND (cmpop, 0), 0)
4974 && operand_equal_p (TREE_OPERAND (rhs, 1), TREE_OPERAND (cmpop, 1), 0))
4975 return lhs;
4976 if (!rhs_only && inv_code == lhs_code
4977 && operand_equal_p (TREE_OPERAND (lhs, 0), TREE_OPERAND (cmpop, 0), 0)
4978 && operand_equal_p (TREE_OPERAND (lhs, 1), TREE_OPERAND (cmpop, 1), 0))
4979 return rhs;
4980 if (rhs != orig_rhs || lhs != orig_lhs)
4981 return fold_build2_loc (loc, truthop_code, TREE_TYPE (cmpop),
4982 lhs, rhs);
4983 return NULL_TREE;
4986 /* Find ways of folding logical expressions of LHS and RHS:
4987 Try to merge two comparisons to the same innermost item.
4988 Look for range tests like "ch >= '0' && ch <= '9'".
4989 Look for combinations of simple terms on machines with expensive branches
4990 and evaluate the RHS unconditionally.
4992 For example, if we have p->a == 2 && p->b == 4 and we can make an
4993 object large enough to span both A and B, we can do this with a comparison
4994 against the object ANDed with the a mask.
4996 If we have p->a == q->a && p->b == q->b, we may be able to use bit masking
4997 operations to do this with one comparison.
4999 We check for both normal comparisons and the BIT_AND_EXPRs made this by
5000 function and the one above.
5002 CODE is the logical operation being done. It can be TRUTH_ANDIF_EXPR,
5003 TRUTH_AND_EXPR, TRUTH_ORIF_EXPR, or TRUTH_OR_EXPR.
5005 TRUTH_TYPE is the type of the logical operand and LHS and RHS are its
5006 two operands.
5008 We return the simplified tree or 0 if no optimization is possible. */
5010 static tree
5011 fold_truthop (location_t loc, enum tree_code code, tree truth_type,
5012 tree lhs, tree rhs)
5014 /* If this is the "or" of two comparisons, we can do something if
5015 the comparisons are NE_EXPR. If this is the "and", we can do something
5016 if the comparisons are EQ_EXPR. I.e.,
5017 (a->b == 2 && a->c == 4) can become (a->new == NEW).
5019 WANTED_CODE is this operation code. For single bit fields, we can
5020 convert EQ_EXPR to NE_EXPR so we need not reject the "wrong"
5021 comparison for one-bit fields. */
5023 enum tree_code wanted_code;
5024 enum tree_code lcode, rcode;
5025 tree ll_arg, lr_arg, rl_arg, rr_arg;
5026 tree ll_inner, lr_inner, rl_inner, rr_inner;
5027 HOST_WIDE_INT ll_bitsize, ll_bitpos, lr_bitsize, lr_bitpos;
5028 HOST_WIDE_INT rl_bitsize, rl_bitpos, rr_bitsize, rr_bitpos;
5029 HOST_WIDE_INT xll_bitpos, xlr_bitpos, xrl_bitpos, xrr_bitpos;
5030 HOST_WIDE_INT lnbitsize, lnbitpos, rnbitsize, rnbitpos;
5031 int ll_unsignedp, lr_unsignedp, rl_unsignedp, rr_unsignedp;
5032 enum machine_mode ll_mode, lr_mode, rl_mode, rr_mode;
5033 enum machine_mode lnmode, rnmode;
5034 tree ll_mask, lr_mask, rl_mask, rr_mask;
5035 tree ll_and_mask, lr_and_mask, rl_and_mask, rr_and_mask;
5036 tree l_const, r_const;
5037 tree lntype, rntype, result;
5038 HOST_WIDE_INT first_bit, end_bit;
5039 int volatilep;
5040 tree orig_lhs = lhs, orig_rhs = rhs;
5041 enum tree_code orig_code = code;
5043 /* Start by getting the comparison codes. Fail if anything is volatile.
5044 If one operand is a BIT_AND_EXPR with the constant one, treat it as if
5045 it were surrounded with a NE_EXPR. */
5047 if (TREE_SIDE_EFFECTS (lhs) || TREE_SIDE_EFFECTS (rhs))
5048 return 0;
5050 lcode = TREE_CODE (lhs);
5051 rcode = TREE_CODE (rhs);
5053 if (lcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (lhs, 1)))
5055 lhs = build2 (NE_EXPR, truth_type, lhs,
5056 build_int_cst (TREE_TYPE (lhs), 0));
5057 lcode = NE_EXPR;
5060 if (rcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (rhs, 1)))
5062 rhs = build2 (NE_EXPR, truth_type, rhs,
5063 build_int_cst (TREE_TYPE (rhs), 0));
5064 rcode = NE_EXPR;
5067 if (TREE_CODE_CLASS (lcode) != tcc_comparison
5068 || TREE_CODE_CLASS (rcode) != tcc_comparison)
5069 return 0;
5071 ll_arg = TREE_OPERAND (lhs, 0);
5072 lr_arg = TREE_OPERAND (lhs, 1);
5073 rl_arg = TREE_OPERAND (rhs, 0);
5074 rr_arg = TREE_OPERAND (rhs, 1);
5076 /* Simplify (x<y) && (x==y) into (x<=y) and related optimizations. */
5077 if (simple_operand_p (ll_arg)
5078 && simple_operand_p (lr_arg))
5080 if (operand_equal_p (ll_arg, rl_arg, 0)
5081 && operand_equal_p (lr_arg, rr_arg, 0))
5083 result = combine_comparisons (loc, code, lcode, rcode,
5084 truth_type, ll_arg, lr_arg);
5085 if (result)
5086 return result;
5088 else if (operand_equal_p (ll_arg, rr_arg, 0)
5089 && operand_equal_p (lr_arg, rl_arg, 0))
5091 result = combine_comparisons (loc, code, lcode,
5092 swap_tree_comparison (rcode),
5093 truth_type, ll_arg, lr_arg);
5094 if (result)
5095 return result;
5099 code = ((code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR)
5100 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR);
5102 /* If the RHS can be evaluated unconditionally and its operands are
5103 simple, it wins to evaluate the RHS unconditionally on machines
5104 with expensive branches. In this case, this isn't a comparison
5105 that can be merged. Avoid doing this if the RHS is a floating-point
5106 comparison since those can trap. */
5108 if (BRANCH_COST (optimize_function_for_speed_p (cfun),
5109 false) >= 2
5110 && ! FLOAT_TYPE_P (TREE_TYPE (rl_arg))
5111 && simple_operand_p (rl_arg)
5112 && simple_operand_p (rr_arg))
5114 /* Convert (a != 0) || (b != 0) into (a | b) != 0. */
5115 if (code == TRUTH_OR_EXPR
5116 && lcode == NE_EXPR && integer_zerop (lr_arg)
5117 && rcode == NE_EXPR && integer_zerop (rr_arg)
5118 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg)
5119 && INTEGRAL_TYPE_P (TREE_TYPE (ll_arg)))
5120 return build2_loc (loc, NE_EXPR, truth_type,
5121 build2 (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
5122 ll_arg, rl_arg),
5123 build_int_cst (TREE_TYPE (ll_arg), 0));
5125 /* Convert (a == 0) && (b == 0) into (a | b) == 0. */
5126 if (code == TRUTH_AND_EXPR
5127 && lcode == EQ_EXPR && integer_zerop (lr_arg)
5128 && rcode == EQ_EXPR && integer_zerop (rr_arg)
5129 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg)
5130 && INTEGRAL_TYPE_P (TREE_TYPE (ll_arg)))
5131 return build2_loc (loc, EQ_EXPR, truth_type,
5132 build2 (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
5133 ll_arg, rl_arg),
5134 build_int_cst (TREE_TYPE (ll_arg), 0));
5136 if (LOGICAL_OP_NON_SHORT_CIRCUIT)
5138 if (code != orig_code || lhs != orig_lhs || rhs != orig_rhs)
5139 return build2_loc (loc, code, truth_type, lhs, rhs);
5140 return NULL_TREE;
5144 /* See if the comparisons can be merged. Then get all the parameters for
5145 each side. */
5147 if ((lcode != EQ_EXPR && lcode != NE_EXPR)
5148 || (rcode != EQ_EXPR && rcode != NE_EXPR))
5149 return 0;
5151 volatilep = 0;
5152 ll_inner = decode_field_reference (loc, ll_arg,
5153 &ll_bitsize, &ll_bitpos, &ll_mode,
5154 &ll_unsignedp, &volatilep, &ll_mask,
5155 &ll_and_mask);
5156 lr_inner = decode_field_reference (loc, lr_arg,
5157 &lr_bitsize, &lr_bitpos, &lr_mode,
5158 &lr_unsignedp, &volatilep, &lr_mask,
5159 &lr_and_mask);
5160 rl_inner = decode_field_reference (loc, rl_arg,
5161 &rl_bitsize, &rl_bitpos, &rl_mode,
5162 &rl_unsignedp, &volatilep, &rl_mask,
5163 &rl_and_mask);
5164 rr_inner = decode_field_reference (loc, rr_arg,
5165 &rr_bitsize, &rr_bitpos, &rr_mode,
5166 &rr_unsignedp, &volatilep, &rr_mask,
5167 &rr_and_mask);
5169 /* It must be true that the inner operation on the lhs of each
5170 comparison must be the same if we are to be able to do anything.
5171 Then see if we have constants. If not, the same must be true for
5172 the rhs's. */
5173 if (volatilep || ll_inner == 0 || rl_inner == 0
5174 || ! operand_equal_p (ll_inner, rl_inner, 0))
5175 return 0;
5177 if (TREE_CODE (lr_arg) == INTEGER_CST
5178 && TREE_CODE (rr_arg) == INTEGER_CST)
5179 l_const = lr_arg, r_const = rr_arg;
5180 else if (lr_inner == 0 || rr_inner == 0
5181 || ! operand_equal_p (lr_inner, rr_inner, 0))
5182 return 0;
5183 else
5184 l_const = r_const = 0;
5186 /* If either comparison code is not correct for our logical operation,
5187 fail. However, we can convert a one-bit comparison against zero into
5188 the opposite comparison against that bit being set in the field. */
5190 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR);
5191 if (lcode != wanted_code)
5193 if (l_const && integer_zerop (l_const) && integer_pow2p (ll_mask))
5195 /* Make the left operand unsigned, since we are only interested
5196 in the value of one bit. Otherwise we are doing the wrong
5197 thing below. */
5198 ll_unsignedp = 1;
5199 l_const = ll_mask;
5201 else
5202 return 0;
5205 /* This is analogous to the code for l_const above. */
5206 if (rcode != wanted_code)
5208 if (r_const && integer_zerop (r_const) && integer_pow2p (rl_mask))
5210 rl_unsignedp = 1;
5211 r_const = rl_mask;
5213 else
5214 return 0;
5217 /* See if we can find a mode that contains both fields being compared on
5218 the left. If we can't, fail. Otherwise, update all constants and masks
5219 to be relative to a field of that size. */
5220 first_bit = MIN (ll_bitpos, rl_bitpos);
5221 end_bit = MAX (ll_bitpos + ll_bitsize, rl_bitpos + rl_bitsize);
5222 lnmode = get_best_mode (end_bit - first_bit, first_bit, 0, 0,
5223 TYPE_ALIGN (TREE_TYPE (ll_inner)), word_mode,
5224 volatilep);
5225 if (lnmode == VOIDmode)
5226 return 0;
5228 lnbitsize = GET_MODE_BITSIZE (lnmode);
5229 lnbitpos = first_bit & ~ (lnbitsize - 1);
5230 lntype = lang_hooks.types.type_for_size (lnbitsize, 1);
5231 xll_bitpos = ll_bitpos - lnbitpos, xrl_bitpos = rl_bitpos - lnbitpos;
5233 if (BYTES_BIG_ENDIAN)
5235 xll_bitpos = lnbitsize - xll_bitpos - ll_bitsize;
5236 xrl_bitpos = lnbitsize - xrl_bitpos - rl_bitsize;
5239 ll_mask = const_binop (LSHIFT_EXPR, fold_convert_loc (loc, lntype, ll_mask),
5240 size_int (xll_bitpos));
5241 rl_mask = const_binop (LSHIFT_EXPR, fold_convert_loc (loc, lntype, rl_mask),
5242 size_int (xrl_bitpos));
5244 if (l_const)
5246 l_const = fold_convert_loc (loc, lntype, l_const);
5247 l_const = unextend (l_const, ll_bitsize, ll_unsignedp, ll_and_mask);
5248 l_const = const_binop (LSHIFT_EXPR, l_const, size_int (xll_bitpos));
5249 if (! integer_zerop (const_binop (BIT_AND_EXPR, l_const,
5250 fold_build1_loc (loc, BIT_NOT_EXPR,
5251 lntype, ll_mask))))
5253 warning (0, "comparison is always %d", wanted_code == NE_EXPR);
5255 return constant_boolean_node (wanted_code == NE_EXPR, truth_type);
5258 if (r_const)
5260 r_const = fold_convert_loc (loc, lntype, r_const);
5261 r_const = unextend (r_const, rl_bitsize, rl_unsignedp, rl_and_mask);
5262 r_const = const_binop (LSHIFT_EXPR, r_const, size_int (xrl_bitpos));
5263 if (! integer_zerop (const_binop (BIT_AND_EXPR, r_const,
5264 fold_build1_loc (loc, BIT_NOT_EXPR,
5265 lntype, rl_mask))))
5267 warning (0, "comparison is always %d", wanted_code == NE_EXPR);
5269 return constant_boolean_node (wanted_code == NE_EXPR, truth_type);
5273 /* If the right sides are not constant, do the same for it. Also,
5274 disallow this optimization if a size or signedness mismatch occurs
5275 between the left and right sides. */
5276 if (l_const == 0)
5278 if (ll_bitsize != lr_bitsize || rl_bitsize != rr_bitsize
5279 || ll_unsignedp != lr_unsignedp || rl_unsignedp != rr_unsignedp
5280 /* Make sure the two fields on the right
5281 correspond to the left without being swapped. */
5282 || ll_bitpos - rl_bitpos != lr_bitpos - rr_bitpos)
5283 return 0;
5285 first_bit = MIN (lr_bitpos, rr_bitpos);
5286 end_bit = MAX (lr_bitpos + lr_bitsize, rr_bitpos + rr_bitsize);
5287 rnmode = get_best_mode (end_bit - first_bit, first_bit, 0, 0,
5288 TYPE_ALIGN (TREE_TYPE (lr_inner)), word_mode,
5289 volatilep);
5290 if (rnmode == VOIDmode)
5291 return 0;
5293 rnbitsize = GET_MODE_BITSIZE (rnmode);
5294 rnbitpos = first_bit & ~ (rnbitsize - 1);
5295 rntype = lang_hooks.types.type_for_size (rnbitsize, 1);
5296 xlr_bitpos = lr_bitpos - rnbitpos, xrr_bitpos = rr_bitpos - rnbitpos;
5298 if (BYTES_BIG_ENDIAN)
5300 xlr_bitpos = rnbitsize - xlr_bitpos - lr_bitsize;
5301 xrr_bitpos = rnbitsize - xrr_bitpos - rr_bitsize;
5304 lr_mask = const_binop (LSHIFT_EXPR, fold_convert_loc (loc,
5305 rntype, lr_mask),
5306 size_int (xlr_bitpos));
5307 rr_mask = const_binop (LSHIFT_EXPR, fold_convert_loc (loc,
5308 rntype, rr_mask),
5309 size_int (xrr_bitpos));
5311 /* Make a mask that corresponds to both fields being compared.
5312 Do this for both items being compared. If the operands are the
5313 same size and the bits being compared are in the same position
5314 then we can do this by masking both and comparing the masked
5315 results. */
5316 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask);
5317 lr_mask = const_binop (BIT_IOR_EXPR, lr_mask, rr_mask);
5318 if (lnbitsize == rnbitsize && xll_bitpos == xlr_bitpos)
5320 lhs = make_bit_field_ref (loc, ll_inner, lntype, lnbitsize, lnbitpos,
5321 ll_unsignedp || rl_unsignedp);
5322 if (! all_ones_mask_p (ll_mask, lnbitsize))
5323 lhs = build2 (BIT_AND_EXPR, lntype, lhs, ll_mask);
5325 rhs = make_bit_field_ref (loc, lr_inner, rntype, rnbitsize, rnbitpos,
5326 lr_unsignedp || rr_unsignedp);
5327 if (! all_ones_mask_p (lr_mask, rnbitsize))
5328 rhs = build2 (BIT_AND_EXPR, rntype, rhs, lr_mask);
5330 return build2_loc (loc, wanted_code, truth_type, lhs, rhs);
5333 /* There is still another way we can do something: If both pairs of
5334 fields being compared are adjacent, we may be able to make a wider
5335 field containing them both.
5337 Note that we still must mask the lhs/rhs expressions. Furthermore,
5338 the mask must be shifted to account for the shift done by
5339 make_bit_field_ref. */
5340 if ((ll_bitsize + ll_bitpos == rl_bitpos
5341 && lr_bitsize + lr_bitpos == rr_bitpos)
5342 || (ll_bitpos == rl_bitpos + rl_bitsize
5343 && lr_bitpos == rr_bitpos + rr_bitsize))
5345 tree type;
5347 lhs = make_bit_field_ref (loc, ll_inner, lntype,
5348 ll_bitsize + rl_bitsize,
5349 MIN (ll_bitpos, rl_bitpos), ll_unsignedp);
5350 rhs = make_bit_field_ref (loc, lr_inner, rntype,
5351 lr_bitsize + rr_bitsize,
5352 MIN (lr_bitpos, rr_bitpos), lr_unsignedp);
5354 ll_mask = const_binop (RSHIFT_EXPR, ll_mask,
5355 size_int (MIN (xll_bitpos, xrl_bitpos)));
5356 lr_mask = const_binop (RSHIFT_EXPR, lr_mask,
5357 size_int (MIN (xlr_bitpos, xrr_bitpos)));
5359 /* Convert to the smaller type before masking out unwanted bits. */
5360 type = lntype;
5361 if (lntype != rntype)
5363 if (lnbitsize > rnbitsize)
5365 lhs = fold_convert_loc (loc, rntype, lhs);
5366 ll_mask = fold_convert_loc (loc, rntype, ll_mask);
5367 type = rntype;
5369 else if (lnbitsize < rnbitsize)
5371 rhs = fold_convert_loc (loc, lntype, rhs);
5372 lr_mask = fold_convert_loc (loc, lntype, lr_mask);
5373 type = lntype;
5377 if (! all_ones_mask_p (ll_mask, ll_bitsize + rl_bitsize))
5378 lhs = build2 (BIT_AND_EXPR, type, lhs, ll_mask);
5380 if (! all_ones_mask_p (lr_mask, lr_bitsize + rr_bitsize))
5381 rhs = build2 (BIT_AND_EXPR, type, rhs, lr_mask);
5383 return build2_loc (loc, wanted_code, truth_type, lhs, rhs);
5386 return 0;
5389 /* Handle the case of comparisons with constants. If there is something in
5390 common between the masks, those bits of the constants must be the same.
5391 If not, the condition is always false. Test for this to avoid generating
5392 incorrect code below. */
5393 result = const_binop (BIT_AND_EXPR, ll_mask, rl_mask);
5394 if (! integer_zerop (result)
5395 && simple_cst_equal (const_binop (BIT_AND_EXPR, result, l_const),
5396 const_binop (BIT_AND_EXPR, result, r_const)) != 1)
5398 if (wanted_code == NE_EXPR)
5400 warning (0, "%<or%> of unmatched not-equal tests is always 1");
5401 return constant_boolean_node (true, truth_type);
5403 else
5405 warning (0, "%<and%> of mutually exclusive equal-tests is always 0");
5406 return constant_boolean_node (false, truth_type);
5410 /* Construct the expression we will return. First get the component
5411 reference we will make. Unless the mask is all ones the width of
5412 that field, perform the mask operation. Then compare with the
5413 merged constant. */
5414 result = make_bit_field_ref (loc, ll_inner, lntype, lnbitsize, lnbitpos,
5415 ll_unsignedp || rl_unsignedp);
5417 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask);
5418 if (! all_ones_mask_p (ll_mask, lnbitsize))
5419 result = build2_loc (loc, BIT_AND_EXPR, lntype, result, ll_mask);
5421 return build2_loc (loc, wanted_code, truth_type, result,
5422 const_binop (BIT_IOR_EXPR, l_const, r_const));
5425 /* Optimize T, which is a comparison of a MIN_EXPR or MAX_EXPR with a
5426 constant. */
5428 static tree
5429 optimize_minmax_comparison (location_t loc, enum tree_code code, tree type,
5430 tree op0, tree op1)
5432 tree arg0 = op0;
5433 enum tree_code op_code;
5434 tree comp_const;
5435 tree minmax_const;
5436 int consts_equal, consts_lt;
5437 tree inner;
5439 STRIP_SIGN_NOPS (arg0);
5441 op_code = TREE_CODE (arg0);
5442 minmax_const = TREE_OPERAND (arg0, 1);
5443 comp_const = fold_convert_loc (loc, TREE_TYPE (arg0), op1);
5444 consts_equal = tree_int_cst_equal (minmax_const, comp_const);
5445 consts_lt = tree_int_cst_lt (minmax_const, comp_const);
5446 inner = TREE_OPERAND (arg0, 0);
5448 /* If something does not permit us to optimize, return the original tree. */
5449 if ((op_code != MIN_EXPR && op_code != MAX_EXPR)
5450 || TREE_CODE (comp_const) != INTEGER_CST
5451 || TREE_OVERFLOW (comp_const)
5452 || TREE_CODE (minmax_const) != INTEGER_CST
5453 || TREE_OVERFLOW (minmax_const))
5454 return NULL_TREE;
5456 /* Now handle all the various comparison codes. We only handle EQ_EXPR
5457 and GT_EXPR, doing the rest with recursive calls using logical
5458 simplifications. */
5459 switch (code)
5461 case NE_EXPR: case LT_EXPR: case LE_EXPR:
5463 tree tem
5464 = optimize_minmax_comparison (loc,
5465 invert_tree_comparison (code, false),
5466 type, op0, op1);
5467 if (tem)
5468 return invert_truthvalue_loc (loc, tem);
5469 return NULL_TREE;
5472 case GE_EXPR:
5473 return
5474 fold_build2_loc (loc, TRUTH_ORIF_EXPR, type,
5475 optimize_minmax_comparison
5476 (loc, EQ_EXPR, type, arg0, comp_const),
5477 optimize_minmax_comparison
5478 (loc, GT_EXPR, type, arg0, comp_const));
5480 case EQ_EXPR:
5481 if (op_code == MAX_EXPR && consts_equal)
5482 /* MAX (X, 0) == 0 -> X <= 0 */
5483 return fold_build2_loc (loc, LE_EXPR, type, inner, comp_const);
5485 else if (op_code == MAX_EXPR && consts_lt)
5486 /* MAX (X, 0) == 5 -> X == 5 */
5487 return fold_build2_loc (loc, EQ_EXPR, type, inner, comp_const);
5489 else if (op_code == MAX_EXPR)
5490 /* MAX (X, 0) == -1 -> false */
5491 return omit_one_operand_loc (loc, type, integer_zero_node, inner);
5493 else if (consts_equal)
5494 /* MIN (X, 0) == 0 -> X >= 0 */
5495 return fold_build2_loc (loc, GE_EXPR, type, inner, comp_const);
5497 else if (consts_lt)
5498 /* MIN (X, 0) == 5 -> false */
5499 return omit_one_operand_loc (loc, type, integer_zero_node, inner);
5501 else
5502 /* MIN (X, 0) == -1 -> X == -1 */
5503 return fold_build2_loc (loc, EQ_EXPR, type, inner, comp_const);
5505 case GT_EXPR:
5506 if (op_code == MAX_EXPR && (consts_equal || consts_lt))
5507 /* MAX (X, 0) > 0 -> X > 0
5508 MAX (X, 0) > 5 -> X > 5 */
5509 return fold_build2_loc (loc, GT_EXPR, type, inner, comp_const);
5511 else if (op_code == MAX_EXPR)
5512 /* MAX (X, 0) > -1 -> true */
5513 return omit_one_operand_loc (loc, type, integer_one_node, inner);
5515 else if (op_code == MIN_EXPR && (consts_equal || consts_lt))
5516 /* MIN (X, 0) > 0 -> false
5517 MIN (X, 0) > 5 -> false */
5518 return omit_one_operand_loc (loc, type, integer_zero_node, inner);
5520 else
5521 /* MIN (X, 0) > -1 -> X > -1 */
5522 return fold_build2_loc (loc, GT_EXPR, type, inner, comp_const);
5524 default:
5525 return NULL_TREE;
5529 /* T is an integer expression that is being multiplied, divided, or taken a
5530 modulus (CODE says which and what kind of divide or modulus) by a
5531 constant C. See if we can eliminate that operation by folding it with
5532 other operations already in T. WIDE_TYPE, if non-null, is a type that
5533 should be used for the computation if wider than our type.
5535 For example, if we are dividing (X * 8) + (Y * 16) by 4, we can return
5536 (X * 2) + (Y * 4). We must, however, be assured that either the original
5537 expression would not overflow or that overflow is undefined for the type
5538 in the language in question.
5540 If we return a non-null expression, it is an equivalent form of the
5541 original computation, but need not be in the original type.
5543 We set *STRICT_OVERFLOW_P to true if the return values depends on
5544 signed overflow being undefined. Otherwise we do not change
5545 *STRICT_OVERFLOW_P. */
5547 static tree
5548 extract_muldiv (tree t, tree c, enum tree_code code, tree wide_type,
5549 bool *strict_overflow_p)
5551 /* To avoid exponential search depth, refuse to allow recursion past
5552 three levels. Beyond that (1) it's highly unlikely that we'll find
5553 something interesting and (2) we've probably processed it before
5554 when we built the inner expression. */
5556 static int depth;
5557 tree ret;
5559 if (depth > 3)
5560 return NULL;
5562 depth++;
5563 ret = extract_muldiv_1 (t, c, code, wide_type, strict_overflow_p);
5564 depth--;
5566 return ret;
5569 static tree
5570 extract_muldiv_1 (tree t, tree c, enum tree_code code, tree wide_type,
5571 bool *strict_overflow_p)
5573 tree type = TREE_TYPE (t);
5574 enum tree_code tcode = TREE_CODE (t);
5575 tree ctype = (wide_type != 0 && (GET_MODE_SIZE (TYPE_MODE (wide_type))
5576 > GET_MODE_SIZE (TYPE_MODE (type)))
5577 ? wide_type : type);
5578 tree t1, t2;
5579 int same_p = tcode == code;
5580 tree op0 = NULL_TREE, op1 = NULL_TREE;
5581 bool sub_strict_overflow_p;
5583 /* Don't deal with constants of zero here; they confuse the code below. */
5584 if (integer_zerop (c))
5585 return NULL_TREE;
5587 if (TREE_CODE_CLASS (tcode) == tcc_unary)
5588 op0 = TREE_OPERAND (t, 0);
5590 if (TREE_CODE_CLASS (tcode) == tcc_binary)
5591 op0 = TREE_OPERAND (t, 0), op1 = TREE_OPERAND (t, 1);
5593 /* Note that we need not handle conditional operations here since fold
5594 already handles those cases. So just do arithmetic here. */
5595 switch (tcode)
5597 case INTEGER_CST:
5598 /* For a constant, we can always simplify if we are a multiply
5599 or (for divide and modulus) if it is a multiple of our constant. */
5600 if (code == MULT_EXPR
5601 || integer_zerop (const_binop (TRUNC_MOD_EXPR, t, c)))
5602 return const_binop (code, fold_convert (ctype, t),
5603 fold_convert (ctype, c));
5604 break;
5606 CASE_CONVERT: case NON_LVALUE_EXPR:
5607 /* If op0 is an expression ... */
5608 if ((COMPARISON_CLASS_P (op0)
5609 || UNARY_CLASS_P (op0)
5610 || BINARY_CLASS_P (op0)
5611 || VL_EXP_CLASS_P (op0)
5612 || EXPRESSION_CLASS_P (op0))
5613 /* ... and has wrapping overflow, and its type is smaller
5614 than ctype, then we cannot pass through as widening. */
5615 && ((TYPE_OVERFLOW_WRAPS (TREE_TYPE (op0))
5616 && ! (TREE_CODE (TREE_TYPE (op0)) == INTEGER_TYPE
5617 && TYPE_IS_SIZETYPE (TREE_TYPE (op0)))
5618 && (TYPE_PRECISION (ctype)
5619 > TYPE_PRECISION (TREE_TYPE (op0))))
5620 /* ... or this is a truncation (t is narrower than op0),
5621 then we cannot pass through this narrowing. */
5622 || (TYPE_PRECISION (type)
5623 < TYPE_PRECISION (TREE_TYPE (op0)))
5624 /* ... or signedness changes for division or modulus,
5625 then we cannot pass through this conversion. */
5626 || (code != MULT_EXPR
5627 && (TYPE_UNSIGNED (ctype)
5628 != TYPE_UNSIGNED (TREE_TYPE (op0))))
5629 /* ... or has undefined overflow while the converted to
5630 type has not, we cannot do the operation in the inner type
5631 as that would introduce undefined overflow. */
5632 || (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (op0))
5633 && !TYPE_OVERFLOW_UNDEFINED (type))))
5634 break;
5636 /* Pass the constant down and see if we can make a simplification. If
5637 we can, replace this expression with the inner simplification for
5638 possible later conversion to our or some other type. */
5639 if ((t2 = fold_convert (TREE_TYPE (op0), c)) != 0
5640 && TREE_CODE (t2) == INTEGER_CST
5641 && !TREE_OVERFLOW (t2)
5642 && (0 != (t1 = extract_muldiv (op0, t2, code,
5643 code == MULT_EXPR
5644 ? ctype : NULL_TREE,
5645 strict_overflow_p))))
5646 return t1;
5647 break;
5649 case ABS_EXPR:
5650 /* If widening the type changes it from signed to unsigned, then we
5651 must avoid building ABS_EXPR itself as unsigned. */
5652 if (TYPE_UNSIGNED (ctype) && !TYPE_UNSIGNED (type))
5654 tree cstype = (*signed_type_for) (ctype);
5655 if ((t1 = extract_muldiv (op0, c, code, cstype, strict_overflow_p))
5656 != 0)
5658 t1 = fold_build1 (tcode, cstype, fold_convert (cstype, t1));
5659 return fold_convert (ctype, t1);
5661 break;
5663 /* If the constant is negative, we cannot simplify this. */
5664 if (tree_int_cst_sgn (c) == -1)
5665 break;
5666 /* FALLTHROUGH */
5667 case NEGATE_EXPR:
5668 if ((t1 = extract_muldiv (op0, c, code, wide_type, strict_overflow_p))
5669 != 0)
5670 return fold_build1 (tcode, ctype, fold_convert (ctype, t1));
5671 break;
5673 case MIN_EXPR: case MAX_EXPR:
5674 /* If widening the type changes the signedness, then we can't perform
5675 this optimization as that changes the result. */
5676 if (TYPE_UNSIGNED (ctype) != TYPE_UNSIGNED (type))
5677 break;
5679 /* MIN (a, b) / 5 -> MIN (a / 5, b / 5) */
5680 sub_strict_overflow_p = false;
5681 if ((t1 = extract_muldiv (op0, c, code, wide_type,
5682 &sub_strict_overflow_p)) != 0
5683 && (t2 = extract_muldiv (op1, c, code, wide_type,
5684 &sub_strict_overflow_p)) != 0)
5686 if (tree_int_cst_sgn (c) < 0)
5687 tcode = (tcode == MIN_EXPR ? MAX_EXPR : MIN_EXPR);
5688 if (sub_strict_overflow_p)
5689 *strict_overflow_p = true;
5690 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
5691 fold_convert (ctype, t2));
5693 break;
5695 case LSHIFT_EXPR: case RSHIFT_EXPR:
5696 /* If the second operand is constant, this is a multiplication
5697 or floor division, by a power of two, so we can treat it that
5698 way unless the multiplier or divisor overflows. Signed
5699 left-shift overflow is implementation-defined rather than
5700 undefined in C90, so do not convert signed left shift into
5701 multiplication. */
5702 if (TREE_CODE (op1) == INTEGER_CST
5703 && (tcode == RSHIFT_EXPR || TYPE_UNSIGNED (TREE_TYPE (op0)))
5704 /* const_binop may not detect overflow correctly,
5705 so check for it explicitly here. */
5706 && TYPE_PRECISION (TREE_TYPE (size_one_node)) > TREE_INT_CST_LOW (op1)
5707 && TREE_INT_CST_HIGH (op1) == 0
5708 && 0 != (t1 = fold_convert (ctype,
5709 const_binop (LSHIFT_EXPR,
5710 size_one_node,
5711 op1)))
5712 && !TREE_OVERFLOW (t1))
5713 return extract_muldiv (build2 (tcode == LSHIFT_EXPR
5714 ? MULT_EXPR : FLOOR_DIV_EXPR,
5715 ctype,
5716 fold_convert (ctype, op0),
5717 t1),
5718 c, code, wide_type, strict_overflow_p);
5719 break;
5721 case PLUS_EXPR: case MINUS_EXPR:
5722 /* See if we can eliminate the operation on both sides. If we can, we
5723 can return a new PLUS or MINUS. If we can't, the only remaining
5724 cases where we can do anything are if the second operand is a
5725 constant. */
5726 sub_strict_overflow_p = false;
5727 t1 = extract_muldiv (op0, c, code, wide_type, &sub_strict_overflow_p);
5728 t2 = extract_muldiv (op1, c, code, wide_type, &sub_strict_overflow_p);
5729 if (t1 != 0 && t2 != 0
5730 && (code == MULT_EXPR
5731 /* If not multiplication, we can only do this if both operands
5732 are divisible by c. */
5733 || (multiple_of_p (ctype, op0, c)
5734 && multiple_of_p (ctype, op1, c))))
5736 if (sub_strict_overflow_p)
5737 *strict_overflow_p = true;
5738 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
5739 fold_convert (ctype, t2));
5742 /* If this was a subtraction, negate OP1 and set it to be an addition.
5743 This simplifies the logic below. */
5744 if (tcode == MINUS_EXPR)
5746 tcode = PLUS_EXPR, op1 = negate_expr (op1);
5747 /* If OP1 was not easily negatable, the constant may be OP0. */
5748 if (TREE_CODE (op0) == INTEGER_CST)
5750 tree tem = op0;
5751 op0 = op1;
5752 op1 = tem;
5753 tem = t1;
5754 t1 = t2;
5755 t2 = tem;
5759 if (TREE_CODE (op1) != INTEGER_CST)
5760 break;
5762 /* If either OP1 or C are negative, this optimization is not safe for
5763 some of the division and remainder types while for others we need
5764 to change the code. */
5765 if (tree_int_cst_sgn (op1) < 0 || tree_int_cst_sgn (c) < 0)
5767 if (code == CEIL_DIV_EXPR)
5768 code = FLOOR_DIV_EXPR;
5769 else if (code == FLOOR_DIV_EXPR)
5770 code = CEIL_DIV_EXPR;
5771 else if (code != MULT_EXPR
5772 && code != CEIL_MOD_EXPR && code != FLOOR_MOD_EXPR)
5773 break;
5776 /* If it's a multiply or a division/modulus operation of a multiple
5777 of our constant, do the operation and verify it doesn't overflow. */
5778 if (code == MULT_EXPR
5779 || integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c)))
5781 op1 = const_binop (code, fold_convert (ctype, op1),
5782 fold_convert (ctype, c));
5783 /* We allow the constant to overflow with wrapping semantics. */
5784 if (op1 == 0
5785 || (TREE_OVERFLOW (op1) && !TYPE_OVERFLOW_WRAPS (ctype)))
5786 break;
5788 else
5789 break;
5791 /* If we have an unsigned type is not a sizetype, we cannot widen
5792 the operation since it will change the result if the original
5793 computation overflowed. */
5794 if (TYPE_UNSIGNED (ctype)
5795 && ! (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype))
5796 && ctype != type)
5797 break;
5799 /* If we were able to eliminate our operation from the first side,
5800 apply our operation to the second side and reform the PLUS. */
5801 if (t1 != 0 && (TREE_CODE (t1) != code || code == MULT_EXPR))
5802 return fold_build2 (tcode, ctype, fold_convert (ctype, t1), op1);
5804 /* The last case is if we are a multiply. In that case, we can
5805 apply the distributive law to commute the multiply and addition
5806 if the multiplication of the constants doesn't overflow. */
5807 if (code == MULT_EXPR)
5808 return fold_build2 (tcode, ctype,
5809 fold_build2 (code, ctype,
5810 fold_convert (ctype, op0),
5811 fold_convert (ctype, c)),
5812 op1);
5814 break;
5816 case MULT_EXPR:
5817 /* We have a special case here if we are doing something like
5818 (C * 8) % 4 since we know that's zero. */
5819 if ((code == TRUNC_MOD_EXPR || code == CEIL_MOD_EXPR
5820 || code == FLOOR_MOD_EXPR || code == ROUND_MOD_EXPR)
5821 /* If the multiplication can overflow we cannot optimize this.
5822 ??? Until we can properly mark individual operations as
5823 not overflowing we need to treat sizetype special here as
5824 stor-layout relies on this opimization to make
5825 DECL_FIELD_BIT_OFFSET always a constant. */
5826 && (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (t))
5827 || (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
5828 && TYPE_IS_SIZETYPE (TREE_TYPE (t))))
5829 && TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST
5830 && integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c)))
5832 *strict_overflow_p = true;
5833 return omit_one_operand (type, integer_zero_node, op0);
5836 /* ... fall through ... */
5838 case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR:
5839 case ROUND_DIV_EXPR: case EXACT_DIV_EXPR:
5840 /* If we can extract our operation from the LHS, do so and return a
5841 new operation. Likewise for the RHS from a MULT_EXPR. Otherwise,
5842 do something only if the second operand is a constant. */
5843 if (same_p
5844 && (t1 = extract_muldiv (op0, c, code, wide_type,
5845 strict_overflow_p)) != 0)
5846 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
5847 fold_convert (ctype, op1));
5848 else if (tcode == MULT_EXPR && code == MULT_EXPR
5849 && (t1 = extract_muldiv (op1, c, code, wide_type,
5850 strict_overflow_p)) != 0)
5851 return fold_build2 (tcode, ctype, fold_convert (ctype, op0),
5852 fold_convert (ctype, t1));
5853 else if (TREE_CODE (op1) != INTEGER_CST)
5854 return 0;
5856 /* If these are the same operation types, we can associate them
5857 assuming no overflow. */
5858 if (tcode == code)
5860 double_int mul;
5861 int overflow_p;
5862 mul = double_int_mul_with_sign
5863 (double_int_ext
5864 (tree_to_double_int (op1),
5865 TYPE_PRECISION (ctype), TYPE_UNSIGNED (ctype)),
5866 double_int_ext
5867 (tree_to_double_int (c),
5868 TYPE_PRECISION (ctype), TYPE_UNSIGNED (ctype)),
5869 false, &overflow_p);
5870 overflow_p = (((!TYPE_UNSIGNED (ctype)
5871 || (TREE_CODE (ctype) == INTEGER_TYPE
5872 && TYPE_IS_SIZETYPE (ctype)))
5873 && overflow_p)
5874 | TREE_OVERFLOW (c) | TREE_OVERFLOW (op1));
5875 if (!double_int_fits_to_tree_p (ctype, mul)
5876 && ((TYPE_UNSIGNED (ctype) && tcode != MULT_EXPR)
5877 || !TYPE_UNSIGNED (ctype)
5878 || (TREE_CODE (ctype) == INTEGER_TYPE
5879 && TYPE_IS_SIZETYPE (ctype))))
5880 overflow_p = 1;
5881 if (!overflow_p)
5882 return fold_build2 (tcode, ctype, fold_convert (ctype, op0),
5883 double_int_to_tree (ctype, mul));
5886 /* If these operations "cancel" each other, we have the main
5887 optimizations of this pass, which occur when either constant is a
5888 multiple of the other, in which case we replace this with either an
5889 operation or CODE or TCODE.
5891 If we have an unsigned type that is not a sizetype, we cannot do
5892 this since it will change the result if the original computation
5893 overflowed. */
5894 if ((TYPE_OVERFLOW_UNDEFINED (ctype)
5895 || (TREE_CODE (ctype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (ctype)))
5896 && ((code == MULT_EXPR && tcode == EXACT_DIV_EXPR)
5897 || (tcode == MULT_EXPR
5898 && code != TRUNC_MOD_EXPR && code != CEIL_MOD_EXPR
5899 && code != FLOOR_MOD_EXPR && code != ROUND_MOD_EXPR
5900 && code != MULT_EXPR)))
5902 if (integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c)))
5904 if (TYPE_OVERFLOW_UNDEFINED (ctype))
5905 *strict_overflow_p = true;
5906 return fold_build2 (tcode, ctype, fold_convert (ctype, op0),
5907 fold_convert (ctype,
5908 const_binop (TRUNC_DIV_EXPR,
5909 op1, c)));
5911 else if (integer_zerop (const_binop (TRUNC_MOD_EXPR, c, op1)))
5913 if (TYPE_OVERFLOW_UNDEFINED (ctype))
5914 *strict_overflow_p = true;
5915 return fold_build2 (code, ctype, fold_convert (ctype, op0),
5916 fold_convert (ctype,
5917 const_binop (TRUNC_DIV_EXPR,
5918 c, op1)));
5921 break;
5923 default:
5924 break;
5927 return 0;
5930 /* Return a node which has the indicated constant VALUE (either 0 or
5931 1 for scalars or {-1,-1,..} or {0,0,...} for vectors),
5932 and is of the indicated TYPE. */
5934 tree
5935 constant_boolean_node (bool value, tree type)
5937 if (type == integer_type_node)
5938 return value ? integer_one_node : integer_zero_node;
5939 else if (type == boolean_type_node)
5940 return value ? boolean_true_node : boolean_false_node;
5941 else if (TREE_CODE (type) == VECTOR_TYPE)
5942 return build_vector_from_val (type,
5943 build_int_cst (TREE_TYPE (type),
5944 value ? -1 : 0));
5945 else
5946 return fold_convert (type, value ? integer_one_node : integer_zero_node);
5950 /* Transform `a + (b ? x : y)' into `b ? (a + x) : (a + y)'.
5951 Transform, `a + (x < y)' into `(x < y) ? (a + 1) : (a + 0)'. Here
5952 CODE corresponds to the `+', COND to the `(b ? x : y)' or `(x < y)'
5953 expression, and ARG to `a'. If COND_FIRST_P is nonzero, then the
5954 COND is the first argument to CODE; otherwise (as in the example
5955 given here), it is the second argument. TYPE is the type of the
5956 original expression. Return NULL_TREE if no simplification is
5957 possible. */
5959 static tree
5960 fold_binary_op_with_conditional_arg (location_t loc,
5961 enum tree_code code,
5962 tree type, tree op0, tree op1,
5963 tree cond, tree arg, int cond_first_p)
5965 tree cond_type = cond_first_p ? TREE_TYPE (op0) : TREE_TYPE (op1);
5966 tree arg_type = cond_first_p ? TREE_TYPE (op1) : TREE_TYPE (op0);
5967 tree test, true_value, false_value;
5968 tree lhs = NULL_TREE;
5969 tree rhs = NULL_TREE;
5971 if (TREE_CODE (cond) == COND_EXPR)
5973 test = TREE_OPERAND (cond, 0);
5974 true_value = TREE_OPERAND (cond, 1);
5975 false_value = TREE_OPERAND (cond, 2);
5976 /* If this operand throws an expression, then it does not make
5977 sense to try to perform a logical or arithmetic operation
5978 involving it. */
5979 if (VOID_TYPE_P (TREE_TYPE (true_value)))
5980 lhs = true_value;
5981 if (VOID_TYPE_P (TREE_TYPE (false_value)))
5982 rhs = false_value;
5984 else
5986 tree testtype = TREE_TYPE (cond);
5987 test = cond;
5988 true_value = constant_boolean_node (true, testtype);
5989 false_value = constant_boolean_node (false, testtype);
5992 /* This transformation is only worthwhile if we don't have to wrap ARG
5993 in a SAVE_EXPR and the operation can be simplified on at least one
5994 of the branches once its pushed inside the COND_EXPR. */
5995 if (!TREE_CONSTANT (arg)
5996 && (TREE_SIDE_EFFECTS (arg)
5997 || TREE_CONSTANT (true_value) || TREE_CONSTANT (false_value)))
5998 return NULL_TREE;
6000 arg = fold_convert_loc (loc, arg_type, arg);
6001 if (lhs == 0)
6003 true_value = fold_convert_loc (loc, cond_type, true_value);
6004 if (cond_first_p)
6005 lhs = fold_build2_loc (loc, code, type, true_value, arg);
6006 else
6007 lhs = fold_build2_loc (loc, code, type, arg, true_value);
6009 if (rhs == 0)
6011 false_value = fold_convert_loc (loc, cond_type, false_value);
6012 if (cond_first_p)
6013 rhs = fold_build2_loc (loc, code, type, false_value, arg);
6014 else
6015 rhs = fold_build2_loc (loc, code, type, arg, false_value);
6018 /* Check that we have simplified at least one of the branches. */
6019 if (!TREE_CONSTANT (arg) && !TREE_CONSTANT (lhs) && !TREE_CONSTANT (rhs))
6020 return NULL_TREE;
6022 return fold_build3_loc (loc, COND_EXPR, type, test, lhs, rhs);
6026 /* Subroutine of fold() that checks for the addition of +/- 0.0.
6028 If !NEGATE, return true if ADDEND is +/-0.0 and, for all X of type
6029 TYPE, X + ADDEND is the same as X. If NEGATE, return true if X -
6030 ADDEND is the same as X.
6032 X + 0 and X - 0 both give X when X is NaN, infinite, or nonzero
6033 and finite. The problematic cases are when X is zero, and its mode
6034 has signed zeros. In the case of rounding towards -infinity,
6035 X - 0 is not the same as X because 0 - 0 is -0. In other rounding
6036 modes, X + 0 is not the same as X because -0 + 0 is 0. */
6038 bool
6039 fold_real_zero_addition_p (const_tree type, const_tree addend, int negate)
6041 if (!real_zerop (addend))
6042 return false;
6044 /* Don't allow the fold with -fsignaling-nans. */
6045 if (HONOR_SNANS (TYPE_MODE (type)))
6046 return false;
6048 /* Allow the fold if zeros aren't signed, or their sign isn't important. */
6049 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
6050 return true;
6052 /* Treat x + -0 as x - 0 and x - -0 as x + 0. */
6053 if (TREE_CODE (addend) == REAL_CST
6054 && REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (addend)))
6055 negate = !negate;
6057 /* The mode has signed zeros, and we have to honor their sign.
6058 In this situation, there is only one case we can return true for.
6059 X - 0 is the same as X unless rounding towards -infinity is
6060 supported. */
6061 return negate && !HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type));
6064 /* Subroutine of fold() that checks comparisons of built-in math
6065 functions against real constants.
6067 FCODE is the DECL_FUNCTION_CODE of the built-in, CODE is the comparison
6068 operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR, GE_EXPR or LE_EXPR. TYPE
6069 is the type of the result and ARG0 and ARG1 are the operands of the
6070 comparison. ARG1 must be a TREE_REAL_CST.
6072 The function returns the constant folded tree if a simplification
6073 can be made, and NULL_TREE otherwise. */
6075 static tree
6076 fold_mathfn_compare (location_t loc,
6077 enum built_in_function fcode, enum tree_code code,
6078 tree type, tree arg0, tree arg1)
6080 REAL_VALUE_TYPE c;
6082 if (BUILTIN_SQRT_P (fcode))
6084 tree arg = CALL_EXPR_ARG (arg0, 0);
6085 enum machine_mode mode = TYPE_MODE (TREE_TYPE (arg0));
6087 c = TREE_REAL_CST (arg1);
6088 if (REAL_VALUE_NEGATIVE (c))
6090 /* sqrt(x) < y is always false, if y is negative. */
6091 if (code == EQ_EXPR || code == LT_EXPR || code == LE_EXPR)
6092 return omit_one_operand_loc (loc, type, integer_zero_node, arg);
6094 /* sqrt(x) > y is always true, if y is negative and we
6095 don't care about NaNs, i.e. negative values of x. */
6096 if (code == NE_EXPR || !HONOR_NANS (mode))
6097 return omit_one_operand_loc (loc, type, integer_one_node, arg);
6099 /* sqrt(x) > y is the same as x >= 0, if y is negative. */
6100 return fold_build2_loc (loc, GE_EXPR, type, arg,
6101 build_real (TREE_TYPE (arg), dconst0));
6103 else if (code == GT_EXPR || code == GE_EXPR)
6105 REAL_VALUE_TYPE c2;
6107 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
6108 real_convert (&c2, mode, &c2);
6110 if (REAL_VALUE_ISINF (c2))
6112 /* sqrt(x) > y is x == +Inf, when y is very large. */
6113 if (HONOR_INFINITIES (mode))
6114 return fold_build2_loc (loc, EQ_EXPR, type, arg,
6115 build_real (TREE_TYPE (arg), c2));
6117 /* sqrt(x) > y is always false, when y is very large
6118 and we don't care about infinities. */
6119 return omit_one_operand_loc (loc, type, integer_zero_node, arg);
6122 /* sqrt(x) > c is the same as x > c*c. */
6123 return fold_build2_loc (loc, code, type, arg,
6124 build_real (TREE_TYPE (arg), c2));
6126 else if (code == LT_EXPR || code == LE_EXPR)
6128 REAL_VALUE_TYPE c2;
6130 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
6131 real_convert (&c2, mode, &c2);
6133 if (REAL_VALUE_ISINF (c2))
6135 /* sqrt(x) < y is always true, when y is a very large
6136 value and we don't care about NaNs or Infinities. */
6137 if (! HONOR_NANS (mode) && ! HONOR_INFINITIES (mode))
6138 return omit_one_operand_loc (loc, type, integer_one_node, arg);
6140 /* sqrt(x) < y is x != +Inf when y is very large and we
6141 don't care about NaNs. */
6142 if (! HONOR_NANS (mode))
6143 return fold_build2_loc (loc, NE_EXPR, type, arg,
6144 build_real (TREE_TYPE (arg), c2));
6146 /* sqrt(x) < y is x >= 0 when y is very large and we
6147 don't care about Infinities. */
6148 if (! HONOR_INFINITIES (mode))
6149 return fold_build2_loc (loc, GE_EXPR, type, arg,
6150 build_real (TREE_TYPE (arg), dconst0));
6152 /* sqrt(x) < y is x >= 0 && x != +Inf, when y is large. */
6153 arg = save_expr (arg);
6154 return fold_build2_loc (loc, TRUTH_ANDIF_EXPR, type,
6155 fold_build2_loc (loc, GE_EXPR, type, arg,
6156 build_real (TREE_TYPE (arg),
6157 dconst0)),
6158 fold_build2_loc (loc, NE_EXPR, type, arg,
6159 build_real (TREE_TYPE (arg),
6160 c2)));
6163 /* sqrt(x) < c is the same as x < c*c, if we ignore NaNs. */
6164 if (! HONOR_NANS (mode))
6165 return fold_build2_loc (loc, code, type, arg,
6166 build_real (TREE_TYPE (arg), c2));
6168 /* sqrt(x) < c is the same as x >= 0 && x < c*c. */
6169 arg = save_expr (arg);
6170 return fold_build2_loc (loc, TRUTH_ANDIF_EXPR, type,
6171 fold_build2_loc (loc, GE_EXPR, type, arg,
6172 build_real (TREE_TYPE (arg),
6173 dconst0)),
6174 fold_build2_loc (loc, code, type, arg,
6175 build_real (TREE_TYPE (arg),
6176 c2)));
6180 return NULL_TREE;
6183 /* Subroutine of fold() that optimizes comparisons against Infinities,
6184 either +Inf or -Inf.
6186 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
6187 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
6188 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
6190 The function returns the constant folded tree if a simplification
6191 can be made, and NULL_TREE otherwise. */
6193 static tree
6194 fold_inf_compare (location_t loc, enum tree_code code, tree type,
6195 tree arg0, tree arg1)
6197 enum machine_mode mode;
6198 REAL_VALUE_TYPE max;
6199 tree temp;
6200 bool neg;
6202 mode = TYPE_MODE (TREE_TYPE (arg0));
6204 /* For negative infinity swap the sense of the comparison. */
6205 neg = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1));
6206 if (neg)
6207 code = swap_tree_comparison (code);
6209 switch (code)
6211 case GT_EXPR:
6212 /* x > +Inf is always false, if with ignore sNANs. */
6213 if (HONOR_SNANS (mode))
6214 return NULL_TREE;
6215 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
6217 case LE_EXPR:
6218 /* x <= +Inf is always true, if we don't case about NaNs. */
6219 if (! HONOR_NANS (mode))
6220 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
6222 /* x <= +Inf is the same as x == x, i.e. isfinite(x). */
6223 arg0 = save_expr (arg0);
6224 return fold_build2_loc (loc, EQ_EXPR, type, arg0, arg0);
6226 case EQ_EXPR:
6227 case GE_EXPR:
6228 /* x == +Inf and x >= +Inf are always equal to x > DBL_MAX. */
6229 real_maxval (&max, neg, mode);
6230 return fold_build2_loc (loc, neg ? LT_EXPR : GT_EXPR, type,
6231 arg0, build_real (TREE_TYPE (arg0), max));
6233 case LT_EXPR:
6234 /* x < +Inf is always equal to x <= DBL_MAX. */
6235 real_maxval (&max, neg, mode);
6236 return fold_build2_loc (loc, neg ? GE_EXPR : LE_EXPR, type,
6237 arg0, build_real (TREE_TYPE (arg0), max));
6239 case NE_EXPR:
6240 /* x != +Inf is always equal to !(x > DBL_MAX). */
6241 real_maxval (&max, neg, mode);
6242 if (! HONOR_NANS (mode))
6243 return fold_build2_loc (loc, neg ? GE_EXPR : LE_EXPR, type,
6244 arg0, build_real (TREE_TYPE (arg0), max));
6246 temp = fold_build2_loc (loc, neg ? LT_EXPR : GT_EXPR, type,
6247 arg0, build_real (TREE_TYPE (arg0), max));
6248 return fold_build1_loc (loc, TRUTH_NOT_EXPR, type, temp);
6250 default:
6251 break;
6254 return NULL_TREE;
6257 /* Subroutine of fold() that optimizes comparisons of a division by
6258 a nonzero integer constant against an integer constant, i.e.
6259 X/C1 op C2.
6261 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
6262 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
6263 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
6265 The function returns the constant folded tree if a simplification
6266 can be made, and NULL_TREE otherwise. */
6268 static tree
6269 fold_div_compare (location_t loc,
6270 enum tree_code code, tree type, tree arg0, tree arg1)
6272 tree prod, tmp, hi, lo;
6273 tree arg00 = TREE_OPERAND (arg0, 0);
6274 tree arg01 = TREE_OPERAND (arg0, 1);
6275 double_int val;
6276 bool unsigned_p = TYPE_UNSIGNED (TREE_TYPE (arg0));
6277 bool neg_overflow;
6278 int overflow;
6280 /* We have to do this the hard way to detect unsigned overflow.
6281 prod = int_const_binop (MULT_EXPR, arg01, arg1); */
6282 overflow = mul_double_with_sign (TREE_INT_CST_LOW (arg01),
6283 TREE_INT_CST_HIGH (arg01),
6284 TREE_INT_CST_LOW (arg1),
6285 TREE_INT_CST_HIGH (arg1),
6286 &val.low, &val.high, unsigned_p);
6287 prod = force_fit_type_double (TREE_TYPE (arg00), val, -1, overflow);
6288 neg_overflow = false;
6290 if (unsigned_p)
6292 tmp = int_const_binop (MINUS_EXPR, arg01,
6293 build_int_cst (TREE_TYPE (arg01), 1));
6294 lo = prod;
6296 /* Likewise hi = int_const_binop (PLUS_EXPR, prod, tmp). */
6297 overflow = add_double_with_sign (TREE_INT_CST_LOW (prod),
6298 TREE_INT_CST_HIGH (prod),
6299 TREE_INT_CST_LOW (tmp),
6300 TREE_INT_CST_HIGH (tmp),
6301 &val.low, &val.high, unsigned_p);
6302 hi = force_fit_type_double (TREE_TYPE (arg00), val,
6303 -1, overflow | TREE_OVERFLOW (prod));
6305 else if (tree_int_cst_sgn (arg01) >= 0)
6307 tmp = int_const_binop (MINUS_EXPR, arg01,
6308 build_int_cst (TREE_TYPE (arg01), 1));
6309 switch (tree_int_cst_sgn (arg1))
6311 case -1:
6312 neg_overflow = true;
6313 lo = int_const_binop (MINUS_EXPR, prod, tmp);
6314 hi = prod;
6315 break;
6317 case 0:
6318 lo = fold_negate_const (tmp, TREE_TYPE (arg0));
6319 hi = tmp;
6320 break;
6322 case 1:
6323 hi = int_const_binop (PLUS_EXPR, prod, tmp);
6324 lo = prod;
6325 break;
6327 default:
6328 gcc_unreachable ();
6331 else
6333 /* A negative divisor reverses the relational operators. */
6334 code = swap_tree_comparison (code);
6336 tmp = int_const_binop (PLUS_EXPR, arg01,
6337 build_int_cst (TREE_TYPE (arg01), 1));
6338 switch (tree_int_cst_sgn (arg1))
6340 case -1:
6341 hi = int_const_binop (MINUS_EXPR, prod, tmp);
6342 lo = prod;
6343 break;
6345 case 0:
6346 hi = fold_negate_const (tmp, TREE_TYPE (arg0));
6347 lo = tmp;
6348 break;
6350 case 1:
6351 neg_overflow = true;
6352 lo = int_const_binop (PLUS_EXPR, prod, tmp);
6353 hi = prod;
6354 break;
6356 default:
6357 gcc_unreachable ();
6361 switch (code)
6363 case EQ_EXPR:
6364 if (TREE_OVERFLOW (lo) && TREE_OVERFLOW (hi))
6365 return omit_one_operand_loc (loc, type, integer_zero_node, arg00);
6366 if (TREE_OVERFLOW (hi))
6367 return fold_build2_loc (loc, GE_EXPR, type, arg00, lo);
6368 if (TREE_OVERFLOW (lo))
6369 return fold_build2_loc (loc, LE_EXPR, type, arg00, hi);
6370 return build_range_check (loc, type, arg00, 1, lo, hi);
6372 case NE_EXPR:
6373 if (TREE_OVERFLOW (lo) && TREE_OVERFLOW (hi))
6374 return omit_one_operand_loc (loc, type, integer_one_node, arg00);
6375 if (TREE_OVERFLOW (hi))
6376 return fold_build2_loc (loc, LT_EXPR, type, arg00, lo);
6377 if (TREE_OVERFLOW (lo))
6378 return fold_build2_loc (loc, GT_EXPR, type, arg00, hi);
6379 return build_range_check (loc, type, arg00, 0, lo, hi);
6381 case LT_EXPR:
6382 if (TREE_OVERFLOW (lo))
6384 tmp = neg_overflow ? integer_zero_node : integer_one_node;
6385 return omit_one_operand_loc (loc, type, tmp, arg00);
6387 return fold_build2_loc (loc, LT_EXPR, type, arg00, lo);
6389 case LE_EXPR:
6390 if (TREE_OVERFLOW (hi))
6392 tmp = neg_overflow ? integer_zero_node : integer_one_node;
6393 return omit_one_operand_loc (loc, type, tmp, arg00);
6395 return fold_build2_loc (loc, LE_EXPR, type, arg00, hi);
6397 case GT_EXPR:
6398 if (TREE_OVERFLOW (hi))
6400 tmp = neg_overflow ? integer_one_node : integer_zero_node;
6401 return omit_one_operand_loc (loc, type, tmp, arg00);
6403 return fold_build2_loc (loc, GT_EXPR, type, arg00, hi);
6405 case GE_EXPR:
6406 if (TREE_OVERFLOW (lo))
6408 tmp = neg_overflow ? integer_one_node : integer_zero_node;
6409 return omit_one_operand_loc (loc, type, tmp, arg00);
6411 return fold_build2_loc (loc, GE_EXPR, type, arg00, lo);
6413 default:
6414 break;
6417 return NULL_TREE;
6421 /* If CODE with arguments ARG0 and ARG1 represents a single bit
6422 equality/inequality test, then return a simplified form of the test
6423 using a sign testing. Otherwise return NULL. TYPE is the desired
6424 result type. */
6426 static tree
6427 fold_single_bit_test_into_sign_test (location_t loc,
6428 enum tree_code code, tree arg0, tree arg1,
6429 tree result_type)
6431 /* If this is testing a single bit, we can optimize the test. */
6432 if ((code == NE_EXPR || code == EQ_EXPR)
6433 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
6434 && integer_pow2p (TREE_OPERAND (arg0, 1)))
6436 /* If we have (A & C) != 0 where C is the sign bit of A, convert
6437 this into A < 0. Similarly for (A & C) == 0 into A >= 0. */
6438 tree arg00 = sign_bit_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1));
6440 if (arg00 != NULL_TREE
6441 /* This is only a win if casting to a signed type is cheap,
6442 i.e. when arg00's type is not a partial mode. */
6443 && TYPE_PRECISION (TREE_TYPE (arg00))
6444 == GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg00))))
6446 tree stype = signed_type_for (TREE_TYPE (arg00));
6447 return fold_build2_loc (loc, code == EQ_EXPR ? GE_EXPR : LT_EXPR,
6448 result_type,
6449 fold_convert_loc (loc, stype, arg00),
6450 build_int_cst (stype, 0));
6454 return NULL_TREE;
6457 /* If CODE with arguments ARG0 and ARG1 represents a single bit
6458 equality/inequality test, then return a simplified form of
6459 the test using shifts and logical operations. Otherwise return
6460 NULL. TYPE is the desired result type. */
6462 tree
6463 fold_single_bit_test (location_t loc, enum tree_code code,
6464 tree arg0, tree arg1, tree result_type)
6466 /* If this is testing a single bit, we can optimize the test. */
6467 if ((code == NE_EXPR || code == EQ_EXPR)
6468 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
6469 && integer_pow2p (TREE_OPERAND (arg0, 1)))
6471 tree inner = TREE_OPERAND (arg0, 0);
6472 tree type = TREE_TYPE (arg0);
6473 int bitnum = tree_log2 (TREE_OPERAND (arg0, 1));
6474 enum machine_mode operand_mode = TYPE_MODE (type);
6475 int ops_unsigned;
6476 tree signed_type, unsigned_type, intermediate_type;
6477 tree tem, one;
6479 /* First, see if we can fold the single bit test into a sign-bit
6480 test. */
6481 tem = fold_single_bit_test_into_sign_test (loc, code, arg0, arg1,
6482 result_type);
6483 if (tem)
6484 return tem;
6486 /* Otherwise we have (A & C) != 0 where C is a single bit,
6487 convert that into ((A >> C2) & 1). Where C2 = log2(C).
6488 Similarly for (A & C) == 0. */
6490 /* If INNER is a right shift of a constant and it plus BITNUM does
6491 not overflow, adjust BITNUM and INNER. */
6492 if (TREE_CODE (inner) == RSHIFT_EXPR
6493 && TREE_CODE (TREE_OPERAND (inner, 1)) == INTEGER_CST
6494 && TREE_INT_CST_HIGH (TREE_OPERAND (inner, 1)) == 0
6495 && bitnum < TYPE_PRECISION (type)
6496 && 0 > compare_tree_int (TREE_OPERAND (inner, 1),
6497 bitnum - TYPE_PRECISION (type)))
6499 bitnum += TREE_INT_CST_LOW (TREE_OPERAND (inner, 1));
6500 inner = TREE_OPERAND (inner, 0);
6503 /* If we are going to be able to omit the AND below, we must do our
6504 operations as unsigned. If we must use the AND, we have a choice.
6505 Normally unsigned is faster, but for some machines signed is. */
6506 #ifdef LOAD_EXTEND_OP
6507 ops_unsigned = (LOAD_EXTEND_OP (operand_mode) == SIGN_EXTEND
6508 && !flag_syntax_only) ? 0 : 1;
6509 #else
6510 ops_unsigned = 1;
6511 #endif
6513 signed_type = lang_hooks.types.type_for_mode (operand_mode, 0);
6514 unsigned_type = lang_hooks.types.type_for_mode (operand_mode, 1);
6515 intermediate_type = ops_unsigned ? unsigned_type : signed_type;
6516 inner = fold_convert_loc (loc, intermediate_type, inner);
6518 if (bitnum != 0)
6519 inner = build2 (RSHIFT_EXPR, intermediate_type,
6520 inner, size_int (bitnum));
6522 one = build_int_cst (intermediate_type, 1);
6524 if (code == EQ_EXPR)
6525 inner = fold_build2_loc (loc, BIT_XOR_EXPR, intermediate_type, inner, one);
6527 /* Put the AND last so it can combine with more things. */
6528 inner = build2 (BIT_AND_EXPR, intermediate_type, inner, one);
6530 /* Make sure to return the proper type. */
6531 inner = fold_convert_loc (loc, result_type, inner);
6533 return inner;
6535 return NULL_TREE;
6538 /* Check whether we are allowed to reorder operands arg0 and arg1,
6539 such that the evaluation of arg1 occurs before arg0. */
6541 static bool
6542 reorder_operands_p (const_tree arg0, const_tree arg1)
6544 if (! flag_evaluation_order)
6545 return true;
6546 if (TREE_CONSTANT (arg0) || TREE_CONSTANT (arg1))
6547 return true;
6548 return ! TREE_SIDE_EFFECTS (arg0)
6549 && ! TREE_SIDE_EFFECTS (arg1);
6552 /* Test whether it is preferable two swap two operands, ARG0 and
6553 ARG1, for example because ARG0 is an integer constant and ARG1
6554 isn't. If REORDER is true, only recommend swapping if we can
6555 evaluate the operands in reverse order. */
6557 bool
6558 tree_swap_operands_p (const_tree arg0, const_tree arg1, bool reorder)
6560 STRIP_SIGN_NOPS (arg0);
6561 STRIP_SIGN_NOPS (arg1);
6563 if (TREE_CODE (arg1) == INTEGER_CST)
6564 return 0;
6565 if (TREE_CODE (arg0) == INTEGER_CST)
6566 return 1;
6568 if (TREE_CODE (arg1) == REAL_CST)
6569 return 0;
6570 if (TREE_CODE (arg0) == REAL_CST)
6571 return 1;
6573 if (TREE_CODE (arg1) == FIXED_CST)
6574 return 0;
6575 if (TREE_CODE (arg0) == FIXED_CST)
6576 return 1;
6578 if (TREE_CODE (arg1) == COMPLEX_CST)
6579 return 0;
6580 if (TREE_CODE (arg0) == COMPLEX_CST)
6581 return 1;
6583 if (TREE_CONSTANT (arg1))
6584 return 0;
6585 if (TREE_CONSTANT (arg0))
6586 return 1;
6588 if (optimize_function_for_size_p (cfun))
6589 return 0;
6591 if (reorder && flag_evaluation_order
6592 && (TREE_SIDE_EFFECTS (arg0) || TREE_SIDE_EFFECTS (arg1)))
6593 return 0;
6595 /* It is preferable to swap two SSA_NAME to ensure a canonical form
6596 for commutative and comparison operators. Ensuring a canonical
6597 form allows the optimizers to find additional redundancies without
6598 having to explicitly check for both orderings. */
6599 if (TREE_CODE (arg0) == SSA_NAME
6600 && TREE_CODE (arg1) == SSA_NAME
6601 && SSA_NAME_VERSION (arg0) > SSA_NAME_VERSION (arg1))
6602 return 1;
6604 /* Put SSA_NAMEs last. */
6605 if (TREE_CODE (arg1) == SSA_NAME)
6606 return 0;
6607 if (TREE_CODE (arg0) == SSA_NAME)
6608 return 1;
6610 /* Put variables last. */
6611 if (DECL_P (arg1))
6612 return 0;
6613 if (DECL_P (arg0))
6614 return 1;
6616 return 0;
6619 /* Fold comparison ARG0 CODE ARG1 (with result in TYPE), where
6620 ARG0 is extended to a wider type. */
6622 static tree
6623 fold_widened_comparison (location_t loc, enum tree_code code,
6624 tree type, tree arg0, tree arg1)
6626 tree arg0_unw = get_unwidened (arg0, NULL_TREE);
6627 tree arg1_unw;
6628 tree shorter_type, outer_type;
6629 tree min, max;
6630 bool above, below;
6632 if (arg0_unw == arg0)
6633 return NULL_TREE;
6634 shorter_type = TREE_TYPE (arg0_unw);
6636 #ifdef HAVE_canonicalize_funcptr_for_compare
6637 /* Disable this optimization if we're casting a function pointer
6638 type on targets that require function pointer canonicalization. */
6639 if (HAVE_canonicalize_funcptr_for_compare
6640 && TREE_CODE (shorter_type) == POINTER_TYPE
6641 && TREE_CODE (TREE_TYPE (shorter_type)) == FUNCTION_TYPE)
6642 return NULL_TREE;
6643 #endif
6645 if (TYPE_PRECISION (TREE_TYPE (arg0)) <= TYPE_PRECISION (shorter_type))
6646 return NULL_TREE;
6648 arg1_unw = get_unwidened (arg1, NULL_TREE);
6650 /* If possible, express the comparison in the shorter mode. */
6651 if ((code == EQ_EXPR || code == NE_EXPR
6652 || TYPE_UNSIGNED (TREE_TYPE (arg0)) == TYPE_UNSIGNED (shorter_type))
6653 && (TREE_TYPE (arg1_unw) == shorter_type
6654 || ((TYPE_PRECISION (shorter_type)
6655 >= TYPE_PRECISION (TREE_TYPE (arg1_unw)))
6656 && (TYPE_UNSIGNED (shorter_type)
6657 == TYPE_UNSIGNED (TREE_TYPE (arg1_unw))))
6658 || (TREE_CODE (arg1_unw) == INTEGER_CST
6659 && (TREE_CODE (shorter_type) == INTEGER_TYPE
6660 || TREE_CODE (shorter_type) == BOOLEAN_TYPE)
6661 && int_fits_type_p (arg1_unw, shorter_type))))
6662 return fold_build2_loc (loc, code, type, arg0_unw,
6663 fold_convert_loc (loc, shorter_type, arg1_unw));
6665 if (TREE_CODE (arg1_unw) != INTEGER_CST
6666 || TREE_CODE (shorter_type) != INTEGER_TYPE
6667 || !int_fits_type_p (arg1_unw, shorter_type))
6668 return NULL_TREE;
6670 /* If we are comparing with the integer that does not fit into the range
6671 of the shorter type, the result is known. */
6672 outer_type = TREE_TYPE (arg1_unw);
6673 min = lower_bound_in_type (outer_type, shorter_type);
6674 max = upper_bound_in_type (outer_type, shorter_type);
6676 above = integer_nonzerop (fold_relational_const (LT_EXPR, type,
6677 max, arg1_unw));
6678 below = integer_nonzerop (fold_relational_const (LT_EXPR, type,
6679 arg1_unw, min));
6681 switch (code)
6683 case EQ_EXPR:
6684 if (above || below)
6685 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
6686 break;
6688 case NE_EXPR:
6689 if (above || below)
6690 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
6691 break;
6693 case LT_EXPR:
6694 case LE_EXPR:
6695 if (above)
6696 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
6697 else if (below)
6698 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
6700 case GT_EXPR:
6701 case GE_EXPR:
6702 if (above)
6703 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
6704 else if (below)
6705 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
6707 default:
6708 break;
6711 return NULL_TREE;
6714 /* Fold comparison ARG0 CODE ARG1 (with result in TYPE), where for
6715 ARG0 just the signedness is changed. */
6717 static tree
6718 fold_sign_changed_comparison (location_t loc, enum tree_code code, tree type,
6719 tree arg0, tree arg1)
6721 tree arg0_inner;
6722 tree inner_type, outer_type;
6724 if (!CONVERT_EXPR_P (arg0))
6725 return NULL_TREE;
6727 outer_type = TREE_TYPE (arg0);
6728 arg0_inner = TREE_OPERAND (arg0, 0);
6729 inner_type = TREE_TYPE (arg0_inner);
6731 #ifdef HAVE_canonicalize_funcptr_for_compare
6732 /* Disable this optimization if we're casting a function pointer
6733 type on targets that require function pointer canonicalization. */
6734 if (HAVE_canonicalize_funcptr_for_compare
6735 && TREE_CODE (inner_type) == POINTER_TYPE
6736 && TREE_CODE (TREE_TYPE (inner_type)) == FUNCTION_TYPE)
6737 return NULL_TREE;
6738 #endif
6740 if (TYPE_PRECISION (inner_type) != TYPE_PRECISION (outer_type))
6741 return NULL_TREE;
6743 if (TREE_CODE (arg1) != INTEGER_CST
6744 && !(CONVERT_EXPR_P (arg1)
6745 && TREE_TYPE (TREE_OPERAND (arg1, 0)) == inner_type))
6746 return NULL_TREE;
6748 if ((TYPE_UNSIGNED (inner_type) != TYPE_UNSIGNED (outer_type)
6749 || POINTER_TYPE_P (inner_type) != POINTER_TYPE_P (outer_type))
6750 && code != NE_EXPR
6751 && code != EQ_EXPR)
6752 return NULL_TREE;
6754 if (TREE_CODE (arg1) == INTEGER_CST)
6755 arg1 = force_fit_type_double (inner_type, tree_to_double_int (arg1),
6756 0, TREE_OVERFLOW (arg1));
6757 else
6758 arg1 = fold_convert_loc (loc, inner_type, arg1);
6760 return fold_build2_loc (loc, code, type, arg0_inner, arg1);
6763 /* Tries to replace &a[idx] p+ s * delta with &a[idx + delta], if s is
6764 step of the array. Reconstructs s and delta in the case of s *
6765 delta being an integer constant (and thus already folded). ADDR is
6766 the address. MULT is the multiplicative expression. If the
6767 function succeeds, the new address expression is returned.
6768 Otherwise NULL_TREE is returned. LOC is the location of the
6769 resulting expression. */
6771 static tree
6772 try_move_mult_to_index (location_t loc, tree addr, tree op1)
6774 tree s, delta, step;
6775 tree ref = TREE_OPERAND (addr, 0), pref;
6776 tree ret, pos;
6777 tree itype;
6778 bool mdim = false;
6780 /* Strip the nops that might be added when converting op1 to sizetype. */
6781 STRIP_NOPS (op1);
6783 /* Canonicalize op1 into a possibly non-constant delta
6784 and an INTEGER_CST s. */
6785 if (TREE_CODE (op1) == MULT_EXPR)
6787 tree arg0 = TREE_OPERAND (op1, 0), arg1 = TREE_OPERAND (op1, 1);
6789 STRIP_NOPS (arg0);
6790 STRIP_NOPS (arg1);
6792 if (TREE_CODE (arg0) == INTEGER_CST)
6794 s = arg0;
6795 delta = arg1;
6797 else if (TREE_CODE (arg1) == INTEGER_CST)
6799 s = arg1;
6800 delta = arg0;
6802 else
6803 return NULL_TREE;
6805 else if (TREE_CODE (op1) == INTEGER_CST)
6807 delta = op1;
6808 s = NULL_TREE;
6810 else
6812 /* Simulate we are delta * 1. */
6813 delta = op1;
6814 s = integer_one_node;
6817 for (;; ref = TREE_OPERAND (ref, 0))
6819 if (TREE_CODE (ref) == ARRAY_REF)
6821 tree domain;
6823 /* Remember if this was a multi-dimensional array. */
6824 if (TREE_CODE (TREE_OPERAND (ref, 0)) == ARRAY_REF)
6825 mdim = true;
6827 domain = TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (ref, 0)));
6828 if (! domain)
6829 continue;
6830 itype = TREE_TYPE (domain);
6832 step = array_ref_element_size (ref);
6833 if (TREE_CODE (step) != INTEGER_CST)
6834 continue;
6836 if (s)
6838 if (! tree_int_cst_equal (step, s))
6839 continue;
6841 else
6843 /* Try if delta is a multiple of step. */
6844 tree tmp = div_if_zero_remainder (EXACT_DIV_EXPR, op1, step);
6845 if (! tmp)
6846 continue;
6847 delta = tmp;
6850 /* Only fold here if we can verify we do not overflow one
6851 dimension of a multi-dimensional array. */
6852 if (mdim)
6854 tree tmp;
6856 if (TREE_CODE (TREE_OPERAND (ref, 1)) != INTEGER_CST
6857 || !TYPE_MAX_VALUE (domain)
6858 || TREE_CODE (TYPE_MAX_VALUE (domain)) != INTEGER_CST)
6859 continue;
6861 tmp = fold_binary_loc (loc, PLUS_EXPR, itype,
6862 fold_convert_loc (loc, itype,
6863 TREE_OPERAND (ref, 1)),
6864 fold_convert_loc (loc, itype, delta));
6865 if (!tmp
6866 || TREE_CODE (tmp) != INTEGER_CST
6867 || tree_int_cst_lt (TYPE_MAX_VALUE (domain), tmp))
6868 continue;
6871 break;
6873 else
6874 mdim = false;
6876 if (!handled_component_p (ref))
6877 return NULL_TREE;
6880 /* We found the suitable array reference. So copy everything up to it,
6881 and replace the index. */
6883 pref = TREE_OPERAND (addr, 0);
6884 ret = copy_node (pref);
6885 SET_EXPR_LOCATION (ret, loc);
6886 pos = ret;
6888 while (pref != ref)
6890 pref = TREE_OPERAND (pref, 0);
6891 TREE_OPERAND (pos, 0) = copy_node (pref);
6892 pos = TREE_OPERAND (pos, 0);
6895 TREE_OPERAND (pos, 1) = fold_build2_loc (loc, PLUS_EXPR, itype,
6896 fold_convert_loc (loc, itype,
6897 TREE_OPERAND (pos, 1)),
6898 fold_convert_loc (loc, itype, delta));
6900 return fold_build1_loc (loc, ADDR_EXPR, TREE_TYPE (addr), ret);
6904 /* Fold A < X && A + 1 > Y to A < X && A >= Y. Normally A + 1 > Y
6905 means A >= Y && A != MAX, but in this case we know that
6906 A < X <= MAX. INEQ is A + 1 > Y, BOUND is A < X. */
6908 static tree
6909 fold_to_nonsharp_ineq_using_bound (location_t loc, tree ineq, tree bound)
6911 tree a, typea, type = TREE_TYPE (ineq), a1, diff, y;
6913 if (TREE_CODE (bound) == LT_EXPR)
6914 a = TREE_OPERAND (bound, 0);
6915 else if (TREE_CODE (bound) == GT_EXPR)
6916 a = TREE_OPERAND (bound, 1);
6917 else
6918 return NULL_TREE;
6920 typea = TREE_TYPE (a);
6921 if (!INTEGRAL_TYPE_P (typea)
6922 && !POINTER_TYPE_P (typea))
6923 return NULL_TREE;
6925 if (TREE_CODE (ineq) == LT_EXPR)
6927 a1 = TREE_OPERAND (ineq, 1);
6928 y = TREE_OPERAND (ineq, 0);
6930 else if (TREE_CODE (ineq) == GT_EXPR)
6932 a1 = TREE_OPERAND (ineq, 0);
6933 y = TREE_OPERAND (ineq, 1);
6935 else
6936 return NULL_TREE;
6938 if (TREE_TYPE (a1) != typea)
6939 return NULL_TREE;
6941 if (POINTER_TYPE_P (typea))
6943 /* Convert the pointer types into integer before taking the difference. */
6944 tree ta = fold_convert_loc (loc, ssizetype, a);
6945 tree ta1 = fold_convert_loc (loc, ssizetype, a1);
6946 diff = fold_binary_loc (loc, MINUS_EXPR, ssizetype, ta1, ta);
6948 else
6949 diff = fold_binary_loc (loc, MINUS_EXPR, typea, a1, a);
6951 if (!diff || !integer_onep (diff))
6952 return NULL_TREE;
6954 return fold_build2_loc (loc, GE_EXPR, type, a, y);
6957 /* Fold a sum or difference of at least one multiplication.
6958 Returns the folded tree or NULL if no simplification could be made. */
6960 static tree
6961 fold_plusminus_mult_expr (location_t loc, enum tree_code code, tree type,
6962 tree arg0, tree arg1)
6964 tree arg00, arg01, arg10, arg11;
6965 tree alt0 = NULL_TREE, alt1 = NULL_TREE, same;
6967 /* (A * C) +- (B * C) -> (A+-B) * C.
6968 (A * C) +- A -> A * (C+-1).
6969 We are most concerned about the case where C is a constant,
6970 but other combinations show up during loop reduction. Since
6971 it is not difficult, try all four possibilities. */
6973 if (TREE_CODE (arg0) == MULT_EXPR)
6975 arg00 = TREE_OPERAND (arg0, 0);
6976 arg01 = TREE_OPERAND (arg0, 1);
6978 else if (TREE_CODE (arg0) == INTEGER_CST)
6980 arg00 = build_one_cst (type);
6981 arg01 = arg0;
6983 else
6985 /* We cannot generate constant 1 for fract. */
6986 if (ALL_FRACT_MODE_P (TYPE_MODE (type)))
6987 return NULL_TREE;
6988 arg00 = arg0;
6989 arg01 = build_one_cst (type);
6991 if (TREE_CODE (arg1) == MULT_EXPR)
6993 arg10 = TREE_OPERAND (arg1, 0);
6994 arg11 = TREE_OPERAND (arg1, 1);
6996 else if (TREE_CODE (arg1) == INTEGER_CST)
6998 arg10 = build_one_cst (type);
6999 /* As we canonicalize A - 2 to A + -2 get rid of that sign for
7000 the purpose of this canonicalization. */
7001 if (TREE_INT_CST_HIGH (arg1) == -1
7002 && negate_expr_p (arg1)
7003 && code == PLUS_EXPR)
7005 arg11 = negate_expr (arg1);
7006 code = MINUS_EXPR;
7008 else
7009 arg11 = arg1;
7011 else
7013 /* We cannot generate constant 1 for fract. */
7014 if (ALL_FRACT_MODE_P (TYPE_MODE (type)))
7015 return NULL_TREE;
7016 arg10 = arg1;
7017 arg11 = build_one_cst (type);
7019 same = NULL_TREE;
7021 if (operand_equal_p (arg01, arg11, 0))
7022 same = arg01, alt0 = arg00, alt1 = arg10;
7023 else if (operand_equal_p (arg00, arg10, 0))
7024 same = arg00, alt0 = arg01, alt1 = arg11;
7025 else if (operand_equal_p (arg00, arg11, 0))
7026 same = arg00, alt0 = arg01, alt1 = arg10;
7027 else if (operand_equal_p (arg01, arg10, 0))
7028 same = arg01, alt0 = arg00, alt1 = arg11;
7030 /* No identical multiplicands; see if we can find a common
7031 power-of-two factor in non-power-of-two multiplies. This
7032 can help in multi-dimensional array access. */
7033 else if (host_integerp (arg01, 0)
7034 && host_integerp (arg11, 0))
7036 HOST_WIDE_INT int01, int11, tmp;
7037 bool swap = false;
7038 tree maybe_same;
7039 int01 = TREE_INT_CST_LOW (arg01);
7040 int11 = TREE_INT_CST_LOW (arg11);
7042 /* Move min of absolute values to int11. */
7043 if (absu_hwi (int01) < absu_hwi (int11))
7045 tmp = int01, int01 = int11, int11 = tmp;
7046 alt0 = arg00, arg00 = arg10, arg10 = alt0;
7047 maybe_same = arg01;
7048 swap = true;
7050 else
7051 maybe_same = arg11;
7053 if (exact_log2 (absu_hwi (int11)) > 0 && int01 % int11 == 0
7054 /* The remainder should not be a constant, otherwise we
7055 end up folding i * 4 + 2 to (i * 2 + 1) * 2 which has
7056 increased the number of multiplications necessary. */
7057 && TREE_CODE (arg10) != INTEGER_CST)
7059 alt0 = fold_build2_loc (loc, MULT_EXPR, TREE_TYPE (arg00), arg00,
7060 build_int_cst (TREE_TYPE (arg00),
7061 int01 / int11));
7062 alt1 = arg10;
7063 same = maybe_same;
7064 if (swap)
7065 maybe_same = alt0, alt0 = alt1, alt1 = maybe_same;
7069 if (same)
7070 return fold_build2_loc (loc, MULT_EXPR, type,
7071 fold_build2_loc (loc, code, type,
7072 fold_convert_loc (loc, type, alt0),
7073 fold_convert_loc (loc, type, alt1)),
7074 fold_convert_loc (loc, type, same));
7076 return NULL_TREE;
7079 /* Subroutine of native_encode_expr. Encode the INTEGER_CST
7080 specified by EXPR into the buffer PTR of length LEN bytes.
7081 Return the number of bytes placed in the buffer, or zero
7082 upon failure. */
7084 static int
7085 native_encode_int (const_tree expr, unsigned char *ptr, int len)
7087 tree type = TREE_TYPE (expr);
7088 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7089 int byte, offset, word, words;
7090 unsigned char value;
7092 if (total_bytes > len)
7093 return 0;
7094 words = total_bytes / UNITS_PER_WORD;
7096 for (byte = 0; byte < total_bytes; byte++)
7098 int bitpos = byte * BITS_PER_UNIT;
7099 if (bitpos < HOST_BITS_PER_WIDE_INT)
7100 value = (unsigned char) (TREE_INT_CST_LOW (expr) >> bitpos);
7101 else
7102 value = (unsigned char) (TREE_INT_CST_HIGH (expr)
7103 >> (bitpos - HOST_BITS_PER_WIDE_INT));
7105 if (total_bytes > UNITS_PER_WORD)
7107 word = byte / UNITS_PER_WORD;
7108 if (WORDS_BIG_ENDIAN)
7109 word = (words - 1) - word;
7110 offset = word * UNITS_PER_WORD;
7111 if (BYTES_BIG_ENDIAN)
7112 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7113 else
7114 offset += byte % UNITS_PER_WORD;
7116 else
7117 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte;
7118 ptr[offset] = value;
7120 return total_bytes;
7124 /* Subroutine of native_encode_expr. Encode the REAL_CST
7125 specified by EXPR into the buffer PTR of length LEN bytes.
7126 Return the number of bytes placed in the buffer, or zero
7127 upon failure. */
7129 static int
7130 native_encode_real (const_tree expr, unsigned char *ptr, int len)
7132 tree type = TREE_TYPE (expr);
7133 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7134 int byte, offset, word, words, bitpos;
7135 unsigned char value;
7137 /* There are always 32 bits in each long, no matter the size of
7138 the hosts long. We handle floating point representations with
7139 up to 192 bits. */
7140 long tmp[6];
7142 if (total_bytes > len)
7143 return 0;
7144 words = (32 / BITS_PER_UNIT) / UNITS_PER_WORD;
7146 real_to_target (tmp, TREE_REAL_CST_PTR (expr), TYPE_MODE (type));
7148 for (bitpos = 0; bitpos < total_bytes * BITS_PER_UNIT;
7149 bitpos += BITS_PER_UNIT)
7151 byte = (bitpos / BITS_PER_UNIT) & 3;
7152 value = (unsigned char) (tmp[bitpos / 32] >> (bitpos & 31));
7154 if (UNITS_PER_WORD < 4)
7156 word = byte / UNITS_PER_WORD;
7157 if (WORDS_BIG_ENDIAN)
7158 word = (words - 1) - word;
7159 offset = word * UNITS_PER_WORD;
7160 if (BYTES_BIG_ENDIAN)
7161 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7162 else
7163 offset += byte % UNITS_PER_WORD;
7165 else
7166 offset = BYTES_BIG_ENDIAN ? 3 - byte : byte;
7167 ptr[offset + ((bitpos / BITS_PER_UNIT) & ~3)] = value;
7169 return total_bytes;
7172 /* Subroutine of native_encode_expr. Encode the COMPLEX_CST
7173 specified by EXPR into the buffer PTR of length LEN bytes.
7174 Return the number of bytes placed in the buffer, or zero
7175 upon failure. */
7177 static int
7178 native_encode_complex (const_tree expr, unsigned char *ptr, int len)
7180 int rsize, isize;
7181 tree part;
7183 part = TREE_REALPART (expr);
7184 rsize = native_encode_expr (part, ptr, len);
7185 if (rsize == 0)
7186 return 0;
7187 part = TREE_IMAGPART (expr);
7188 isize = native_encode_expr (part, ptr+rsize, len-rsize);
7189 if (isize != rsize)
7190 return 0;
7191 return rsize + isize;
7195 /* Subroutine of native_encode_expr. Encode the VECTOR_CST
7196 specified by EXPR into the buffer PTR of length LEN bytes.
7197 Return the number of bytes placed in the buffer, or zero
7198 upon failure. */
7200 static int
7201 native_encode_vector (const_tree expr, unsigned char *ptr, int len)
7203 int i, size, offset, count;
7204 tree itype, elem, elements;
7206 offset = 0;
7207 elements = TREE_VECTOR_CST_ELTS (expr);
7208 count = TYPE_VECTOR_SUBPARTS (TREE_TYPE (expr));
7209 itype = TREE_TYPE (TREE_TYPE (expr));
7210 size = GET_MODE_SIZE (TYPE_MODE (itype));
7211 for (i = 0; i < count; i++)
7213 if (elements)
7215 elem = TREE_VALUE (elements);
7216 elements = TREE_CHAIN (elements);
7218 else
7219 elem = NULL_TREE;
7221 if (elem)
7223 if (native_encode_expr (elem, ptr+offset, len-offset) != size)
7224 return 0;
7226 else
7228 if (offset + size > len)
7229 return 0;
7230 memset (ptr+offset, 0, size);
7232 offset += size;
7234 return offset;
7238 /* Subroutine of native_encode_expr. Encode the STRING_CST
7239 specified by EXPR into the buffer PTR of length LEN bytes.
7240 Return the number of bytes placed in the buffer, or zero
7241 upon failure. */
7243 static int
7244 native_encode_string (const_tree expr, unsigned char *ptr, int len)
7246 tree type = TREE_TYPE (expr);
7247 HOST_WIDE_INT total_bytes;
7249 if (TREE_CODE (type) != ARRAY_TYPE
7250 || TREE_CODE (TREE_TYPE (type)) != INTEGER_TYPE
7251 || GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type))) != BITS_PER_UNIT
7252 || !host_integerp (TYPE_SIZE_UNIT (type), 0))
7253 return 0;
7254 total_bytes = tree_low_cst (TYPE_SIZE_UNIT (type), 0);
7255 if (total_bytes > len)
7256 return 0;
7257 if (TREE_STRING_LENGTH (expr) < total_bytes)
7259 memcpy (ptr, TREE_STRING_POINTER (expr), TREE_STRING_LENGTH (expr));
7260 memset (ptr + TREE_STRING_LENGTH (expr), 0,
7261 total_bytes - TREE_STRING_LENGTH (expr));
7263 else
7264 memcpy (ptr, TREE_STRING_POINTER (expr), total_bytes);
7265 return total_bytes;
7269 /* Subroutine of fold_view_convert_expr. Encode the INTEGER_CST,
7270 REAL_CST, COMPLEX_CST or VECTOR_CST specified by EXPR into the
7271 buffer PTR of length LEN bytes. Return the number of bytes
7272 placed in the buffer, or zero upon failure. */
7275 native_encode_expr (const_tree expr, unsigned char *ptr, int len)
7277 switch (TREE_CODE (expr))
7279 case INTEGER_CST:
7280 return native_encode_int (expr, ptr, len);
7282 case REAL_CST:
7283 return native_encode_real (expr, ptr, len);
7285 case COMPLEX_CST:
7286 return native_encode_complex (expr, ptr, len);
7288 case VECTOR_CST:
7289 return native_encode_vector (expr, ptr, len);
7291 case STRING_CST:
7292 return native_encode_string (expr, ptr, len);
7294 default:
7295 return 0;
7300 /* Subroutine of native_interpret_expr. Interpret the contents of
7301 the buffer PTR of length LEN as an INTEGER_CST of type TYPE.
7302 If the buffer cannot be interpreted, return NULL_TREE. */
7304 static tree
7305 native_interpret_int (tree type, const unsigned char *ptr, int len)
7307 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7308 int byte, offset, word, words;
7309 unsigned char value;
7310 double_int result;
7312 if (total_bytes > len)
7313 return NULL_TREE;
7314 if (total_bytes * BITS_PER_UNIT > 2 * HOST_BITS_PER_WIDE_INT)
7315 return NULL_TREE;
7317 result = double_int_zero;
7318 words = total_bytes / UNITS_PER_WORD;
7320 for (byte = 0; byte < total_bytes; byte++)
7322 int bitpos = byte * BITS_PER_UNIT;
7323 if (total_bytes > UNITS_PER_WORD)
7325 word = byte / UNITS_PER_WORD;
7326 if (WORDS_BIG_ENDIAN)
7327 word = (words - 1) - word;
7328 offset = word * UNITS_PER_WORD;
7329 if (BYTES_BIG_ENDIAN)
7330 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7331 else
7332 offset += byte % UNITS_PER_WORD;
7334 else
7335 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte;
7336 value = ptr[offset];
7338 if (bitpos < HOST_BITS_PER_WIDE_INT)
7339 result.low |= (unsigned HOST_WIDE_INT) value << bitpos;
7340 else
7341 result.high |= (unsigned HOST_WIDE_INT) value
7342 << (bitpos - HOST_BITS_PER_WIDE_INT);
7345 return double_int_to_tree (type, result);
7349 /* Subroutine of native_interpret_expr. Interpret the contents of
7350 the buffer PTR of length LEN as a REAL_CST of type TYPE.
7351 If the buffer cannot be interpreted, return NULL_TREE. */
7353 static tree
7354 native_interpret_real (tree type, const unsigned char *ptr, int len)
7356 enum machine_mode mode = TYPE_MODE (type);
7357 int total_bytes = GET_MODE_SIZE (mode);
7358 int byte, offset, word, words, bitpos;
7359 unsigned char value;
7360 /* There are always 32 bits in each long, no matter the size of
7361 the hosts long. We handle floating point representations with
7362 up to 192 bits. */
7363 REAL_VALUE_TYPE r;
7364 long tmp[6];
7366 total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7367 if (total_bytes > len || total_bytes > 24)
7368 return NULL_TREE;
7369 words = (32 / BITS_PER_UNIT) / UNITS_PER_WORD;
7371 memset (tmp, 0, sizeof (tmp));
7372 for (bitpos = 0; bitpos < total_bytes * BITS_PER_UNIT;
7373 bitpos += BITS_PER_UNIT)
7375 byte = (bitpos / BITS_PER_UNIT) & 3;
7376 if (UNITS_PER_WORD < 4)
7378 word = byte / UNITS_PER_WORD;
7379 if (WORDS_BIG_ENDIAN)
7380 word = (words - 1) - word;
7381 offset = word * UNITS_PER_WORD;
7382 if (BYTES_BIG_ENDIAN)
7383 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7384 else
7385 offset += byte % UNITS_PER_WORD;
7387 else
7388 offset = BYTES_BIG_ENDIAN ? 3 - byte : byte;
7389 value = ptr[offset + ((bitpos / BITS_PER_UNIT) & ~3)];
7391 tmp[bitpos / 32] |= (unsigned long)value << (bitpos & 31);
7394 real_from_target (&r, tmp, mode);
7395 return build_real (type, r);
7399 /* Subroutine of native_interpret_expr. Interpret the contents of
7400 the buffer PTR of length LEN as a COMPLEX_CST of type TYPE.
7401 If the buffer cannot be interpreted, return NULL_TREE. */
7403 static tree
7404 native_interpret_complex (tree type, const unsigned char *ptr, int len)
7406 tree etype, rpart, ipart;
7407 int size;
7409 etype = TREE_TYPE (type);
7410 size = GET_MODE_SIZE (TYPE_MODE (etype));
7411 if (size * 2 > len)
7412 return NULL_TREE;
7413 rpart = native_interpret_expr (etype, ptr, size);
7414 if (!rpart)
7415 return NULL_TREE;
7416 ipart = native_interpret_expr (etype, ptr+size, size);
7417 if (!ipart)
7418 return NULL_TREE;
7419 return build_complex (type, rpart, ipart);
7423 /* Subroutine of native_interpret_expr. Interpret the contents of
7424 the buffer PTR of length LEN as a VECTOR_CST of type TYPE.
7425 If the buffer cannot be interpreted, return NULL_TREE. */
7427 static tree
7428 native_interpret_vector (tree type, const unsigned char *ptr, int len)
7430 tree etype, elem, elements;
7431 int i, size, count;
7433 etype = TREE_TYPE (type);
7434 size = GET_MODE_SIZE (TYPE_MODE (etype));
7435 count = TYPE_VECTOR_SUBPARTS (type);
7436 if (size * count > len)
7437 return NULL_TREE;
7439 elements = NULL_TREE;
7440 for (i = count - 1; i >= 0; i--)
7442 elem = native_interpret_expr (etype, ptr+(i*size), size);
7443 if (!elem)
7444 return NULL_TREE;
7445 elements = tree_cons (NULL_TREE, elem, elements);
7447 return build_vector (type, elements);
7451 /* Subroutine of fold_view_convert_expr. Interpret the contents of
7452 the buffer PTR of length LEN as a constant of type TYPE. For
7453 INTEGRAL_TYPE_P we return an INTEGER_CST, for SCALAR_FLOAT_TYPE_P
7454 we return a REAL_CST, etc... If the buffer cannot be interpreted,
7455 return NULL_TREE. */
7457 tree
7458 native_interpret_expr (tree type, const unsigned char *ptr, int len)
7460 switch (TREE_CODE (type))
7462 case INTEGER_TYPE:
7463 case ENUMERAL_TYPE:
7464 case BOOLEAN_TYPE:
7465 return native_interpret_int (type, ptr, len);
7467 case REAL_TYPE:
7468 return native_interpret_real (type, ptr, len);
7470 case COMPLEX_TYPE:
7471 return native_interpret_complex (type, ptr, len);
7473 case VECTOR_TYPE:
7474 return native_interpret_vector (type, ptr, len);
7476 default:
7477 return NULL_TREE;
7482 /* Fold a VIEW_CONVERT_EXPR of a constant expression EXPR to type
7483 TYPE at compile-time. If we're unable to perform the conversion
7484 return NULL_TREE. */
7486 static tree
7487 fold_view_convert_expr (tree type, tree expr)
7489 /* We support up to 512-bit values (for V8DFmode). */
7490 unsigned char buffer[64];
7491 int len;
7493 /* Check that the host and target are sane. */
7494 if (CHAR_BIT != 8 || BITS_PER_UNIT != 8)
7495 return NULL_TREE;
7497 len = native_encode_expr (expr, buffer, sizeof (buffer));
7498 if (len == 0)
7499 return NULL_TREE;
7501 return native_interpret_expr (type, buffer, len);
7504 /* Build an expression for the address of T. Folds away INDIRECT_REF
7505 to avoid confusing the gimplify process. */
7507 tree
7508 build_fold_addr_expr_with_type_loc (location_t loc, tree t, tree ptrtype)
7510 /* The size of the object is not relevant when talking about its address. */
7511 if (TREE_CODE (t) == WITH_SIZE_EXPR)
7512 t = TREE_OPERAND (t, 0);
7514 if (TREE_CODE (t) == INDIRECT_REF)
7516 t = TREE_OPERAND (t, 0);
7518 if (TREE_TYPE (t) != ptrtype)
7519 t = build1_loc (loc, NOP_EXPR, ptrtype, t);
7521 else if (TREE_CODE (t) == MEM_REF
7522 && integer_zerop (TREE_OPERAND (t, 1)))
7523 return TREE_OPERAND (t, 0);
7524 else if (TREE_CODE (t) == VIEW_CONVERT_EXPR)
7526 t = build_fold_addr_expr_loc (loc, TREE_OPERAND (t, 0));
7528 if (TREE_TYPE (t) != ptrtype)
7529 t = fold_convert_loc (loc, ptrtype, t);
7531 else
7532 t = build1_loc (loc, ADDR_EXPR, ptrtype, t);
7534 return t;
7537 /* Build an expression for the address of T. */
7539 tree
7540 build_fold_addr_expr_loc (location_t loc, tree t)
7542 tree ptrtype = build_pointer_type (TREE_TYPE (t));
7544 return build_fold_addr_expr_with_type_loc (loc, t, ptrtype);
7547 /* Fold a unary expression of code CODE and type TYPE with operand
7548 OP0. Return the folded expression if folding is successful.
7549 Otherwise, return NULL_TREE. */
7551 tree
7552 fold_unary_loc (location_t loc, enum tree_code code, tree type, tree op0)
7554 tree tem;
7555 tree arg0;
7556 enum tree_code_class kind = TREE_CODE_CLASS (code);
7558 gcc_assert (IS_EXPR_CODE_CLASS (kind)
7559 && TREE_CODE_LENGTH (code) == 1);
7561 arg0 = op0;
7562 if (arg0)
7564 if (CONVERT_EXPR_CODE_P (code)
7565 || code == FLOAT_EXPR || code == ABS_EXPR || code == NEGATE_EXPR)
7567 /* Don't use STRIP_NOPS, because signedness of argument type
7568 matters. */
7569 STRIP_SIGN_NOPS (arg0);
7571 else
7573 /* Strip any conversions that don't change the mode. This
7574 is safe for every expression, except for a comparison
7575 expression because its signedness is derived from its
7576 operands.
7578 Note that this is done as an internal manipulation within
7579 the constant folder, in order to find the simplest
7580 representation of the arguments so that their form can be
7581 studied. In any cases, the appropriate type conversions
7582 should be put back in the tree that will get out of the
7583 constant folder. */
7584 STRIP_NOPS (arg0);
7588 if (TREE_CODE_CLASS (code) == tcc_unary)
7590 if (TREE_CODE (arg0) == COMPOUND_EXPR)
7591 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
7592 fold_build1_loc (loc, code, type,
7593 fold_convert_loc (loc, TREE_TYPE (op0),
7594 TREE_OPERAND (arg0, 1))));
7595 else if (TREE_CODE (arg0) == COND_EXPR)
7597 tree arg01 = TREE_OPERAND (arg0, 1);
7598 tree arg02 = TREE_OPERAND (arg0, 2);
7599 if (! VOID_TYPE_P (TREE_TYPE (arg01)))
7600 arg01 = fold_build1_loc (loc, code, type,
7601 fold_convert_loc (loc,
7602 TREE_TYPE (op0), arg01));
7603 if (! VOID_TYPE_P (TREE_TYPE (arg02)))
7604 arg02 = fold_build1_loc (loc, code, type,
7605 fold_convert_loc (loc,
7606 TREE_TYPE (op0), arg02));
7607 tem = fold_build3_loc (loc, COND_EXPR, type, TREE_OPERAND (arg0, 0),
7608 arg01, arg02);
7610 /* If this was a conversion, and all we did was to move into
7611 inside the COND_EXPR, bring it back out. But leave it if
7612 it is a conversion from integer to integer and the
7613 result precision is no wider than a word since such a
7614 conversion is cheap and may be optimized away by combine,
7615 while it couldn't if it were outside the COND_EXPR. Then return
7616 so we don't get into an infinite recursion loop taking the
7617 conversion out and then back in. */
7619 if ((CONVERT_EXPR_CODE_P (code)
7620 || code == NON_LVALUE_EXPR)
7621 && TREE_CODE (tem) == COND_EXPR
7622 && TREE_CODE (TREE_OPERAND (tem, 1)) == code
7623 && TREE_CODE (TREE_OPERAND (tem, 2)) == code
7624 && ! VOID_TYPE_P (TREE_OPERAND (tem, 1))
7625 && ! VOID_TYPE_P (TREE_OPERAND (tem, 2))
7626 && (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 1), 0))
7627 == TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 2), 0)))
7628 && (! (INTEGRAL_TYPE_P (TREE_TYPE (tem))
7629 && (INTEGRAL_TYPE_P
7630 (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 1), 0))))
7631 && TYPE_PRECISION (TREE_TYPE (tem)) <= BITS_PER_WORD)
7632 || flag_syntax_only))
7633 tem = build1_loc (loc, code, type,
7634 build3 (COND_EXPR,
7635 TREE_TYPE (TREE_OPERAND
7636 (TREE_OPERAND (tem, 1), 0)),
7637 TREE_OPERAND (tem, 0),
7638 TREE_OPERAND (TREE_OPERAND (tem, 1), 0),
7639 TREE_OPERAND (TREE_OPERAND (tem, 2),
7640 0)));
7641 return tem;
7645 switch (code)
7647 case PAREN_EXPR:
7648 /* Re-association barriers around constants and other re-association
7649 barriers can be removed. */
7650 if (CONSTANT_CLASS_P (op0)
7651 || TREE_CODE (op0) == PAREN_EXPR)
7652 return fold_convert_loc (loc, type, op0);
7653 return NULL_TREE;
7655 CASE_CONVERT:
7656 case FLOAT_EXPR:
7657 case FIX_TRUNC_EXPR:
7658 if (TREE_TYPE (op0) == type)
7659 return op0;
7661 if (COMPARISON_CLASS_P (op0))
7663 /* If we have (type) (a CMP b) and type is an integral type, return
7664 new expression involving the new type. Canonicalize
7665 (type) (a CMP b) to (a CMP b) ? (type) true : (type) false for
7666 non-integral type.
7667 Do not fold the result as that would not simplify further, also
7668 folding again results in recursions. */
7669 if (TREE_CODE (type) == BOOLEAN_TYPE)
7670 return build2_loc (loc, TREE_CODE (op0), type,
7671 TREE_OPERAND (op0, 0),
7672 TREE_OPERAND (op0, 1));
7673 else if (!INTEGRAL_TYPE_P (type))
7674 return build3_loc (loc, COND_EXPR, type, op0,
7675 constant_boolean_node (true, type),
7676 constant_boolean_node (false, type));
7679 /* Handle cases of two conversions in a row. */
7680 if (CONVERT_EXPR_P (op0))
7682 tree inside_type = TREE_TYPE (TREE_OPERAND (op0, 0));
7683 tree inter_type = TREE_TYPE (op0);
7684 int inside_int = INTEGRAL_TYPE_P (inside_type);
7685 int inside_ptr = POINTER_TYPE_P (inside_type);
7686 int inside_float = FLOAT_TYPE_P (inside_type);
7687 int inside_vec = TREE_CODE (inside_type) == VECTOR_TYPE;
7688 unsigned int inside_prec = TYPE_PRECISION (inside_type);
7689 int inside_unsignedp = TYPE_UNSIGNED (inside_type);
7690 int inter_int = INTEGRAL_TYPE_P (inter_type);
7691 int inter_ptr = POINTER_TYPE_P (inter_type);
7692 int inter_float = FLOAT_TYPE_P (inter_type);
7693 int inter_vec = TREE_CODE (inter_type) == VECTOR_TYPE;
7694 unsigned int inter_prec = TYPE_PRECISION (inter_type);
7695 int inter_unsignedp = TYPE_UNSIGNED (inter_type);
7696 int final_int = INTEGRAL_TYPE_P (type);
7697 int final_ptr = POINTER_TYPE_P (type);
7698 int final_float = FLOAT_TYPE_P (type);
7699 int final_vec = TREE_CODE (type) == VECTOR_TYPE;
7700 unsigned int final_prec = TYPE_PRECISION (type);
7701 int final_unsignedp = TYPE_UNSIGNED (type);
7703 /* In addition to the cases of two conversions in a row
7704 handled below, if we are converting something to its own
7705 type via an object of identical or wider precision, neither
7706 conversion is needed. */
7707 if (TYPE_MAIN_VARIANT (inside_type) == TYPE_MAIN_VARIANT (type)
7708 && (((inter_int || inter_ptr) && final_int)
7709 || (inter_float && final_float))
7710 && inter_prec >= final_prec)
7711 return fold_build1_loc (loc, code, type, TREE_OPERAND (op0, 0));
7713 /* Likewise, if the intermediate and initial types are either both
7714 float or both integer, we don't need the middle conversion if the
7715 former is wider than the latter and doesn't change the signedness
7716 (for integers). Avoid this if the final type is a pointer since
7717 then we sometimes need the middle conversion. Likewise if the
7718 final type has a precision not equal to the size of its mode. */
7719 if (((inter_int && inside_int)
7720 || (inter_float && inside_float)
7721 || (inter_vec && inside_vec))
7722 && inter_prec >= inside_prec
7723 && (inter_float || inter_vec
7724 || inter_unsignedp == inside_unsignedp)
7725 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (type))
7726 && TYPE_MODE (type) == TYPE_MODE (inter_type))
7727 && ! final_ptr
7728 && (! final_vec || inter_prec == inside_prec))
7729 return fold_build1_loc (loc, code, type, TREE_OPERAND (op0, 0));
7731 /* If we have a sign-extension of a zero-extended value, we can
7732 replace that by a single zero-extension. */
7733 if (inside_int && inter_int && final_int
7734 && inside_prec < inter_prec && inter_prec < final_prec
7735 && inside_unsignedp && !inter_unsignedp)
7736 return fold_build1_loc (loc, code, type, TREE_OPERAND (op0, 0));
7738 /* Two conversions in a row are not needed unless:
7739 - some conversion is floating-point (overstrict for now), or
7740 - some conversion is a vector (overstrict for now), or
7741 - the intermediate type is narrower than both initial and
7742 final, or
7743 - the intermediate type and innermost type differ in signedness,
7744 and the outermost type is wider than the intermediate, or
7745 - the initial type is a pointer type and the precisions of the
7746 intermediate and final types differ, or
7747 - the final type is a pointer type and the precisions of the
7748 initial and intermediate types differ. */
7749 if (! inside_float && ! inter_float && ! final_float
7750 && ! inside_vec && ! inter_vec && ! final_vec
7751 && (inter_prec >= inside_prec || inter_prec >= final_prec)
7752 && ! (inside_int && inter_int
7753 && inter_unsignedp != inside_unsignedp
7754 && inter_prec < final_prec)
7755 && ((inter_unsignedp && inter_prec > inside_prec)
7756 == (final_unsignedp && final_prec > inter_prec))
7757 && ! (inside_ptr && inter_prec != final_prec)
7758 && ! (final_ptr && inside_prec != inter_prec)
7759 && ! (final_prec != GET_MODE_BITSIZE (TYPE_MODE (type))
7760 && TYPE_MODE (type) == TYPE_MODE (inter_type)))
7761 return fold_build1_loc (loc, code, type, TREE_OPERAND (op0, 0));
7764 /* Handle (T *)&A.B.C for A being of type T and B and C
7765 living at offset zero. This occurs frequently in
7766 C++ upcasting and then accessing the base. */
7767 if (TREE_CODE (op0) == ADDR_EXPR
7768 && POINTER_TYPE_P (type)
7769 && handled_component_p (TREE_OPERAND (op0, 0)))
7771 HOST_WIDE_INT bitsize, bitpos;
7772 tree offset;
7773 enum machine_mode mode;
7774 int unsignedp, volatilep;
7775 tree base = TREE_OPERAND (op0, 0);
7776 base = get_inner_reference (base, &bitsize, &bitpos, &offset,
7777 &mode, &unsignedp, &volatilep, false);
7778 /* If the reference was to a (constant) zero offset, we can use
7779 the address of the base if it has the same base type
7780 as the result type and the pointer type is unqualified. */
7781 if (! offset && bitpos == 0
7782 && (TYPE_MAIN_VARIANT (TREE_TYPE (type))
7783 == TYPE_MAIN_VARIANT (TREE_TYPE (base)))
7784 && TYPE_QUALS (type) == TYPE_UNQUALIFIED)
7785 return fold_convert_loc (loc, type,
7786 build_fold_addr_expr_loc (loc, base));
7789 if (TREE_CODE (op0) == MODIFY_EXPR
7790 && TREE_CONSTANT (TREE_OPERAND (op0, 1))
7791 /* Detect assigning a bitfield. */
7792 && !(TREE_CODE (TREE_OPERAND (op0, 0)) == COMPONENT_REF
7793 && DECL_BIT_FIELD
7794 (TREE_OPERAND (TREE_OPERAND (op0, 0), 1))))
7796 /* Don't leave an assignment inside a conversion
7797 unless assigning a bitfield. */
7798 tem = fold_build1_loc (loc, code, type, TREE_OPERAND (op0, 1));
7799 /* First do the assignment, then return converted constant. */
7800 tem = build2_loc (loc, COMPOUND_EXPR, TREE_TYPE (tem), op0, tem);
7801 TREE_NO_WARNING (tem) = 1;
7802 TREE_USED (tem) = 1;
7803 return tem;
7806 /* Convert (T)(x & c) into (T)x & (T)c, if c is an integer
7807 constants (if x has signed type, the sign bit cannot be set
7808 in c). This folds extension into the BIT_AND_EXPR.
7809 ??? We don't do it for BOOLEAN_TYPE or ENUMERAL_TYPE because they
7810 very likely don't have maximal range for their precision and this
7811 transformation effectively doesn't preserve non-maximal ranges. */
7812 if (TREE_CODE (type) == INTEGER_TYPE
7813 && TREE_CODE (op0) == BIT_AND_EXPR
7814 && TREE_CODE (TREE_OPERAND (op0, 1)) == INTEGER_CST)
7816 tree and_expr = op0;
7817 tree and0 = TREE_OPERAND (and_expr, 0);
7818 tree and1 = TREE_OPERAND (and_expr, 1);
7819 int change = 0;
7821 if (TYPE_UNSIGNED (TREE_TYPE (and_expr))
7822 || (TYPE_PRECISION (type)
7823 <= TYPE_PRECISION (TREE_TYPE (and_expr))))
7824 change = 1;
7825 else if (TYPE_PRECISION (TREE_TYPE (and1))
7826 <= HOST_BITS_PER_WIDE_INT
7827 && host_integerp (and1, 1))
7829 unsigned HOST_WIDE_INT cst;
7831 cst = tree_low_cst (and1, 1);
7832 cst &= (HOST_WIDE_INT) -1
7833 << (TYPE_PRECISION (TREE_TYPE (and1)) - 1);
7834 change = (cst == 0);
7835 #ifdef LOAD_EXTEND_OP
7836 if (change
7837 && !flag_syntax_only
7838 && (LOAD_EXTEND_OP (TYPE_MODE (TREE_TYPE (and0)))
7839 == ZERO_EXTEND))
7841 tree uns = unsigned_type_for (TREE_TYPE (and0));
7842 and0 = fold_convert_loc (loc, uns, and0);
7843 and1 = fold_convert_loc (loc, uns, and1);
7845 #endif
7847 if (change)
7849 tem = force_fit_type_double (type, tree_to_double_int (and1),
7850 0, TREE_OVERFLOW (and1));
7851 return fold_build2_loc (loc, BIT_AND_EXPR, type,
7852 fold_convert_loc (loc, type, and0), tem);
7856 /* Convert (T1)(X p+ Y) into ((T1)X p+ Y), for pointer type,
7857 when one of the new casts will fold away. Conservatively we assume
7858 that this happens when X or Y is NOP_EXPR or Y is INTEGER_CST. */
7859 if (POINTER_TYPE_P (type)
7860 && TREE_CODE (arg0) == POINTER_PLUS_EXPR
7861 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
7862 || TREE_CODE (TREE_OPERAND (arg0, 0)) == NOP_EXPR
7863 || TREE_CODE (TREE_OPERAND (arg0, 1)) == NOP_EXPR))
7865 tree arg00 = TREE_OPERAND (arg0, 0);
7866 tree arg01 = TREE_OPERAND (arg0, 1);
7868 return fold_build_pointer_plus_loc
7869 (loc, fold_convert_loc (loc, type, arg00), arg01);
7872 /* Convert (T1)(~(T2)X) into ~(T1)X if T1 and T2 are integral types
7873 of the same precision, and X is an integer type not narrower than
7874 types T1 or T2, i.e. the cast (T2)X isn't an extension. */
7875 if (INTEGRAL_TYPE_P (type)
7876 && TREE_CODE (op0) == BIT_NOT_EXPR
7877 && INTEGRAL_TYPE_P (TREE_TYPE (op0))
7878 && CONVERT_EXPR_P (TREE_OPERAND (op0, 0))
7879 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (op0)))
7881 tem = TREE_OPERAND (TREE_OPERAND (op0, 0), 0);
7882 if (INTEGRAL_TYPE_P (TREE_TYPE (tem))
7883 && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (tem)))
7884 return fold_build1_loc (loc, BIT_NOT_EXPR, type,
7885 fold_convert_loc (loc, type, tem));
7888 /* Convert (T1)(X * Y) into (T1)X * (T1)Y if T1 is narrower than the
7889 type of X and Y (integer types only). */
7890 if (INTEGRAL_TYPE_P (type)
7891 && TREE_CODE (op0) == MULT_EXPR
7892 && INTEGRAL_TYPE_P (TREE_TYPE (op0))
7893 && TYPE_PRECISION (type) < TYPE_PRECISION (TREE_TYPE (op0)))
7895 /* Be careful not to introduce new overflows. */
7896 tree mult_type;
7897 if (TYPE_OVERFLOW_WRAPS (type))
7898 mult_type = type;
7899 else
7900 mult_type = unsigned_type_for (type);
7902 if (TYPE_PRECISION (mult_type) < TYPE_PRECISION (TREE_TYPE (op0)))
7904 tem = fold_build2_loc (loc, MULT_EXPR, mult_type,
7905 fold_convert_loc (loc, mult_type,
7906 TREE_OPERAND (op0, 0)),
7907 fold_convert_loc (loc, mult_type,
7908 TREE_OPERAND (op0, 1)));
7909 return fold_convert_loc (loc, type, tem);
7913 tem = fold_convert_const (code, type, op0);
7914 return tem ? tem : NULL_TREE;
7916 case ADDR_SPACE_CONVERT_EXPR:
7917 if (integer_zerop (arg0))
7918 return fold_convert_const (code, type, arg0);
7919 return NULL_TREE;
7921 case FIXED_CONVERT_EXPR:
7922 tem = fold_convert_const (code, type, arg0);
7923 return tem ? tem : NULL_TREE;
7925 case VIEW_CONVERT_EXPR:
7926 if (TREE_TYPE (op0) == type)
7927 return op0;
7928 if (TREE_CODE (op0) == VIEW_CONVERT_EXPR)
7929 return fold_build1_loc (loc, VIEW_CONVERT_EXPR,
7930 type, TREE_OPERAND (op0, 0));
7931 if (TREE_CODE (op0) == MEM_REF)
7932 return fold_build2_loc (loc, MEM_REF, type,
7933 TREE_OPERAND (op0, 0), TREE_OPERAND (op0, 1));
7935 /* For integral conversions with the same precision or pointer
7936 conversions use a NOP_EXPR instead. */
7937 if ((INTEGRAL_TYPE_P (type)
7938 || POINTER_TYPE_P (type))
7939 && (INTEGRAL_TYPE_P (TREE_TYPE (op0))
7940 || POINTER_TYPE_P (TREE_TYPE (op0)))
7941 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (op0)))
7942 return fold_convert_loc (loc, type, op0);
7944 /* Strip inner integral conversions that do not change the precision. */
7945 if (CONVERT_EXPR_P (op0)
7946 && (INTEGRAL_TYPE_P (TREE_TYPE (op0))
7947 || POINTER_TYPE_P (TREE_TYPE (op0)))
7948 && (INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (op0, 0)))
7949 || POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (op0, 0))))
7950 && (TYPE_PRECISION (TREE_TYPE (op0))
7951 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op0, 0)))))
7952 return fold_build1_loc (loc, VIEW_CONVERT_EXPR,
7953 type, TREE_OPERAND (op0, 0));
7955 return fold_view_convert_expr (type, op0);
7957 case NEGATE_EXPR:
7958 tem = fold_negate_expr (loc, arg0);
7959 if (tem)
7960 return fold_convert_loc (loc, type, tem);
7961 return NULL_TREE;
7963 case ABS_EXPR:
7964 if (TREE_CODE (arg0) == INTEGER_CST || TREE_CODE (arg0) == REAL_CST)
7965 return fold_abs_const (arg0, type);
7966 else if (TREE_CODE (arg0) == NEGATE_EXPR)
7967 return fold_build1_loc (loc, ABS_EXPR, type, TREE_OPERAND (arg0, 0));
7968 /* Convert fabs((double)float) into (double)fabsf(float). */
7969 else if (TREE_CODE (arg0) == NOP_EXPR
7970 && TREE_CODE (type) == REAL_TYPE)
7972 tree targ0 = strip_float_extensions (arg0);
7973 if (targ0 != arg0)
7974 return fold_convert_loc (loc, type,
7975 fold_build1_loc (loc, ABS_EXPR,
7976 TREE_TYPE (targ0),
7977 targ0));
7979 /* ABS_EXPR<ABS_EXPR<x>> = ABS_EXPR<x> even if flag_wrapv is on. */
7980 else if (TREE_CODE (arg0) == ABS_EXPR)
7981 return arg0;
7982 else if (tree_expr_nonnegative_p (arg0))
7983 return arg0;
7985 /* Strip sign ops from argument. */
7986 if (TREE_CODE (type) == REAL_TYPE)
7988 tem = fold_strip_sign_ops (arg0);
7989 if (tem)
7990 return fold_build1_loc (loc, ABS_EXPR, type,
7991 fold_convert_loc (loc, type, tem));
7993 return NULL_TREE;
7995 case CONJ_EXPR:
7996 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
7997 return fold_convert_loc (loc, type, arg0);
7998 if (TREE_CODE (arg0) == COMPLEX_EXPR)
8000 tree itype = TREE_TYPE (type);
8001 tree rpart = fold_convert_loc (loc, itype, TREE_OPERAND (arg0, 0));
8002 tree ipart = fold_convert_loc (loc, itype, TREE_OPERAND (arg0, 1));
8003 return fold_build2_loc (loc, COMPLEX_EXPR, type, rpart,
8004 negate_expr (ipart));
8006 if (TREE_CODE (arg0) == COMPLEX_CST)
8008 tree itype = TREE_TYPE (type);
8009 tree rpart = fold_convert_loc (loc, itype, TREE_REALPART (arg0));
8010 tree ipart = fold_convert_loc (loc, itype, TREE_IMAGPART (arg0));
8011 return build_complex (type, rpart, negate_expr (ipart));
8013 if (TREE_CODE (arg0) == CONJ_EXPR)
8014 return fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
8015 return NULL_TREE;
8017 case BIT_NOT_EXPR:
8018 if (TREE_CODE (arg0) == INTEGER_CST)
8019 return fold_not_const (arg0, type);
8020 else if (TREE_CODE (arg0) == BIT_NOT_EXPR)
8021 return fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
8022 /* Convert ~ (-A) to A - 1. */
8023 else if (INTEGRAL_TYPE_P (type) && TREE_CODE (arg0) == NEGATE_EXPR)
8024 return fold_build2_loc (loc, MINUS_EXPR, type,
8025 fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0)),
8026 build_int_cst (type, 1));
8027 /* Convert ~ (A - 1) or ~ (A + -1) to -A. */
8028 else if (INTEGRAL_TYPE_P (type)
8029 && ((TREE_CODE (arg0) == MINUS_EXPR
8030 && integer_onep (TREE_OPERAND (arg0, 1)))
8031 || (TREE_CODE (arg0) == PLUS_EXPR
8032 && integer_all_onesp (TREE_OPERAND (arg0, 1)))))
8033 return fold_build1_loc (loc, NEGATE_EXPR, type,
8034 fold_convert_loc (loc, type,
8035 TREE_OPERAND (arg0, 0)));
8036 /* Convert ~(X ^ Y) to ~X ^ Y or X ^ ~Y if ~X or ~Y simplify. */
8037 else if (TREE_CODE (arg0) == BIT_XOR_EXPR
8038 && (tem = fold_unary_loc (loc, BIT_NOT_EXPR, type,
8039 fold_convert_loc (loc, type,
8040 TREE_OPERAND (arg0, 0)))))
8041 return fold_build2_loc (loc, BIT_XOR_EXPR, type, tem,
8042 fold_convert_loc (loc, type,
8043 TREE_OPERAND (arg0, 1)));
8044 else if (TREE_CODE (arg0) == BIT_XOR_EXPR
8045 && (tem = fold_unary_loc (loc, BIT_NOT_EXPR, type,
8046 fold_convert_loc (loc, type,
8047 TREE_OPERAND (arg0, 1)))))
8048 return fold_build2_loc (loc, BIT_XOR_EXPR, type,
8049 fold_convert_loc (loc, type,
8050 TREE_OPERAND (arg0, 0)), tem);
8051 /* Perform BIT_NOT_EXPR on each element individually. */
8052 else if (TREE_CODE (arg0) == VECTOR_CST)
8054 tree elements = TREE_VECTOR_CST_ELTS (arg0), elem, list = NULL_TREE;
8055 int count = TYPE_VECTOR_SUBPARTS (type), i;
8057 for (i = 0; i < count; i++)
8059 if (elements)
8061 elem = TREE_VALUE (elements);
8062 elem = fold_unary_loc (loc, BIT_NOT_EXPR, TREE_TYPE (type), elem);
8063 if (elem == NULL_TREE)
8064 break;
8065 elements = TREE_CHAIN (elements);
8067 else
8068 elem = build_int_cst (TREE_TYPE (type), -1);
8069 list = tree_cons (NULL_TREE, elem, list);
8071 if (i == count)
8072 return build_vector (type, nreverse (list));
8075 return NULL_TREE;
8077 case TRUTH_NOT_EXPR:
8078 /* The argument to invert_truthvalue must have Boolean type. */
8079 if (TREE_CODE (TREE_TYPE (arg0)) != BOOLEAN_TYPE)
8080 arg0 = fold_convert_loc (loc, boolean_type_node, arg0);
8082 /* Note that the operand of this must be an int
8083 and its values must be 0 or 1.
8084 ("true" is a fixed value perhaps depending on the language,
8085 but we don't handle values other than 1 correctly yet.) */
8086 tem = fold_truth_not_expr (loc, arg0);
8087 if (!tem)
8088 return NULL_TREE;
8089 return fold_convert_loc (loc, type, tem);
8091 case REALPART_EXPR:
8092 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
8093 return fold_convert_loc (loc, type, arg0);
8094 if (TREE_CODE (arg0) == COMPLEX_EXPR)
8095 return omit_one_operand_loc (loc, type, TREE_OPERAND (arg0, 0),
8096 TREE_OPERAND (arg0, 1));
8097 if (TREE_CODE (arg0) == COMPLEX_CST)
8098 return fold_convert_loc (loc, type, TREE_REALPART (arg0));
8099 if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8101 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8102 tem = fold_build2_loc (loc, TREE_CODE (arg0), itype,
8103 fold_build1_loc (loc, REALPART_EXPR, itype,
8104 TREE_OPERAND (arg0, 0)),
8105 fold_build1_loc (loc, REALPART_EXPR, itype,
8106 TREE_OPERAND (arg0, 1)));
8107 return fold_convert_loc (loc, type, tem);
8109 if (TREE_CODE (arg0) == CONJ_EXPR)
8111 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8112 tem = fold_build1_loc (loc, REALPART_EXPR, itype,
8113 TREE_OPERAND (arg0, 0));
8114 return fold_convert_loc (loc, type, tem);
8116 if (TREE_CODE (arg0) == CALL_EXPR)
8118 tree fn = get_callee_fndecl (arg0);
8119 if (fn && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
8120 switch (DECL_FUNCTION_CODE (fn))
8122 CASE_FLT_FN (BUILT_IN_CEXPI):
8123 fn = mathfn_built_in (type, BUILT_IN_COS);
8124 if (fn)
8125 return build_call_expr_loc (loc, fn, 1, CALL_EXPR_ARG (arg0, 0));
8126 break;
8128 default:
8129 break;
8132 return NULL_TREE;
8134 case IMAGPART_EXPR:
8135 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
8136 return build_zero_cst (type);
8137 if (TREE_CODE (arg0) == COMPLEX_EXPR)
8138 return omit_one_operand_loc (loc, type, TREE_OPERAND (arg0, 1),
8139 TREE_OPERAND (arg0, 0));
8140 if (TREE_CODE (arg0) == COMPLEX_CST)
8141 return fold_convert_loc (loc, type, TREE_IMAGPART (arg0));
8142 if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8144 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8145 tem = fold_build2_loc (loc, TREE_CODE (arg0), itype,
8146 fold_build1_loc (loc, IMAGPART_EXPR, itype,
8147 TREE_OPERAND (arg0, 0)),
8148 fold_build1_loc (loc, IMAGPART_EXPR, itype,
8149 TREE_OPERAND (arg0, 1)));
8150 return fold_convert_loc (loc, type, tem);
8152 if (TREE_CODE (arg0) == CONJ_EXPR)
8154 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8155 tem = fold_build1_loc (loc, IMAGPART_EXPR, itype, TREE_OPERAND (arg0, 0));
8156 return fold_convert_loc (loc, type, negate_expr (tem));
8158 if (TREE_CODE (arg0) == CALL_EXPR)
8160 tree fn = get_callee_fndecl (arg0);
8161 if (fn && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
8162 switch (DECL_FUNCTION_CODE (fn))
8164 CASE_FLT_FN (BUILT_IN_CEXPI):
8165 fn = mathfn_built_in (type, BUILT_IN_SIN);
8166 if (fn)
8167 return build_call_expr_loc (loc, fn, 1, CALL_EXPR_ARG (arg0, 0));
8168 break;
8170 default:
8171 break;
8174 return NULL_TREE;
8176 case INDIRECT_REF:
8177 /* Fold *&X to X if X is an lvalue. */
8178 if (TREE_CODE (op0) == ADDR_EXPR)
8180 tree op00 = TREE_OPERAND (op0, 0);
8181 if ((TREE_CODE (op00) == VAR_DECL
8182 || TREE_CODE (op00) == PARM_DECL
8183 || TREE_CODE (op00) == RESULT_DECL)
8184 && !TREE_READONLY (op00))
8185 return op00;
8187 return NULL_TREE;
8189 default:
8190 return NULL_TREE;
8191 } /* switch (code) */
8195 /* If the operation was a conversion do _not_ mark a resulting constant
8196 with TREE_OVERFLOW if the original constant was not. These conversions
8197 have implementation defined behavior and retaining the TREE_OVERFLOW
8198 flag here would confuse later passes such as VRP. */
8199 tree
8200 fold_unary_ignore_overflow_loc (location_t loc, enum tree_code code,
8201 tree type, tree op0)
8203 tree res = fold_unary_loc (loc, code, type, op0);
8204 if (res
8205 && TREE_CODE (res) == INTEGER_CST
8206 && TREE_CODE (op0) == INTEGER_CST
8207 && CONVERT_EXPR_CODE_P (code))
8208 TREE_OVERFLOW (res) = TREE_OVERFLOW (op0);
8210 return res;
8213 /* Fold a binary bitwise/truth expression of code CODE and type TYPE with
8214 operands OP0 and OP1. LOC is the location of the resulting expression.
8215 ARG0 and ARG1 are the NOP_STRIPed results of OP0 and OP1.
8216 Return the folded expression if folding is successful. Otherwise,
8217 return NULL_TREE. */
8218 static tree
8219 fold_truth_andor (location_t loc, enum tree_code code, tree type,
8220 tree arg0, tree arg1, tree op0, tree op1)
8222 tree tem;
8224 /* We only do these simplifications if we are optimizing. */
8225 if (!optimize)
8226 return NULL_TREE;
8228 /* Check for things like (A || B) && (A || C). We can convert this
8229 to A || (B && C). Note that either operator can be any of the four
8230 truth and/or operations and the transformation will still be
8231 valid. Also note that we only care about order for the
8232 ANDIF and ORIF operators. If B contains side effects, this
8233 might change the truth-value of A. */
8234 if (TREE_CODE (arg0) == TREE_CODE (arg1)
8235 && (TREE_CODE (arg0) == TRUTH_ANDIF_EXPR
8236 || TREE_CODE (arg0) == TRUTH_ORIF_EXPR
8237 || TREE_CODE (arg0) == TRUTH_AND_EXPR
8238 || TREE_CODE (arg0) == TRUTH_OR_EXPR)
8239 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg0, 1)))
8241 tree a00 = TREE_OPERAND (arg0, 0);
8242 tree a01 = TREE_OPERAND (arg0, 1);
8243 tree a10 = TREE_OPERAND (arg1, 0);
8244 tree a11 = TREE_OPERAND (arg1, 1);
8245 int commutative = ((TREE_CODE (arg0) == TRUTH_OR_EXPR
8246 || TREE_CODE (arg0) == TRUTH_AND_EXPR)
8247 && (code == TRUTH_AND_EXPR
8248 || code == TRUTH_OR_EXPR));
8250 if (operand_equal_p (a00, a10, 0))
8251 return fold_build2_loc (loc, TREE_CODE (arg0), type, a00,
8252 fold_build2_loc (loc, code, type, a01, a11));
8253 else if (commutative && operand_equal_p (a00, a11, 0))
8254 return fold_build2_loc (loc, TREE_CODE (arg0), type, a00,
8255 fold_build2_loc (loc, code, type, a01, a10));
8256 else if (commutative && operand_equal_p (a01, a10, 0))
8257 return fold_build2_loc (loc, TREE_CODE (arg0), type, a01,
8258 fold_build2_loc (loc, code, type, a00, a11));
8260 /* This case if tricky because we must either have commutative
8261 operators or else A10 must not have side-effects. */
8263 else if ((commutative || ! TREE_SIDE_EFFECTS (a10))
8264 && operand_equal_p (a01, a11, 0))
8265 return fold_build2_loc (loc, TREE_CODE (arg0), type,
8266 fold_build2_loc (loc, code, type, a00, a10),
8267 a01);
8270 /* See if we can build a range comparison. */
8271 if (0 != (tem = fold_range_test (loc, code, type, op0, op1)))
8272 return tem;
8274 if ((code == TRUTH_ANDIF_EXPR && TREE_CODE (arg0) == TRUTH_ORIF_EXPR)
8275 || (code == TRUTH_ORIF_EXPR && TREE_CODE (arg0) == TRUTH_ANDIF_EXPR))
8277 tem = merge_truthop_with_opposite_arm (loc, arg0, arg1, true);
8278 if (tem)
8279 return fold_build2_loc (loc, code, type, tem, arg1);
8282 if ((code == TRUTH_ANDIF_EXPR && TREE_CODE (arg1) == TRUTH_ORIF_EXPR)
8283 || (code == TRUTH_ORIF_EXPR && TREE_CODE (arg1) == TRUTH_ANDIF_EXPR))
8285 tem = merge_truthop_with_opposite_arm (loc, arg1, arg0, false);
8286 if (tem)
8287 return fold_build2_loc (loc, code, type, arg0, tem);
8290 /* Check for the possibility of merging component references. If our
8291 lhs is another similar operation, try to merge its rhs with our
8292 rhs. Then try to merge our lhs and rhs. */
8293 if (TREE_CODE (arg0) == code
8294 && 0 != (tem = fold_truthop (loc, code, type,
8295 TREE_OPERAND (arg0, 1), arg1)))
8296 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0), tem);
8298 if ((tem = fold_truthop (loc, code, type, arg0, arg1)) != 0)
8299 return tem;
8301 return NULL_TREE;
8304 /* Fold a binary expression of code CODE and type TYPE with operands
8305 OP0 and OP1, containing either a MIN-MAX or a MAX-MIN combination.
8306 Return the folded expression if folding is successful. Otherwise,
8307 return NULL_TREE. */
8309 static tree
8310 fold_minmax (location_t loc, enum tree_code code, tree type, tree op0, tree op1)
8312 enum tree_code compl_code;
8314 if (code == MIN_EXPR)
8315 compl_code = MAX_EXPR;
8316 else if (code == MAX_EXPR)
8317 compl_code = MIN_EXPR;
8318 else
8319 gcc_unreachable ();
8321 /* MIN (MAX (a, b), b) == b. */
8322 if (TREE_CODE (op0) == compl_code
8323 && operand_equal_p (TREE_OPERAND (op0, 1), op1, 0))
8324 return omit_one_operand_loc (loc, type, op1, TREE_OPERAND (op0, 0));
8326 /* MIN (MAX (b, a), b) == b. */
8327 if (TREE_CODE (op0) == compl_code
8328 && operand_equal_p (TREE_OPERAND (op0, 0), op1, 0)
8329 && reorder_operands_p (TREE_OPERAND (op0, 1), op1))
8330 return omit_one_operand_loc (loc, type, op1, TREE_OPERAND (op0, 1));
8332 /* MIN (a, MAX (a, b)) == a. */
8333 if (TREE_CODE (op1) == compl_code
8334 && operand_equal_p (op0, TREE_OPERAND (op1, 0), 0)
8335 && reorder_operands_p (op0, TREE_OPERAND (op1, 1)))
8336 return omit_one_operand_loc (loc, type, op0, TREE_OPERAND (op1, 1));
8338 /* MIN (a, MAX (b, a)) == a. */
8339 if (TREE_CODE (op1) == compl_code
8340 && operand_equal_p (op0, TREE_OPERAND (op1, 1), 0)
8341 && reorder_operands_p (op0, TREE_OPERAND (op1, 0)))
8342 return omit_one_operand_loc (loc, type, op0, TREE_OPERAND (op1, 0));
8344 return NULL_TREE;
8347 /* Helper that tries to canonicalize the comparison ARG0 CODE ARG1
8348 by changing CODE to reduce the magnitude of constants involved in
8349 ARG0 of the comparison.
8350 Returns a canonicalized comparison tree if a simplification was
8351 possible, otherwise returns NULL_TREE.
8352 Set *STRICT_OVERFLOW_P to true if the canonicalization is only
8353 valid if signed overflow is undefined. */
8355 static tree
8356 maybe_canonicalize_comparison_1 (location_t loc, enum tree_code code, tree type,
8357 tree arg0, tree arg1,
8358 bool *strict_overflow_p)
8360 enum tree_code code0 = TREE_CODE (arg0);
8361 tree t, cst0 = NULL_TREE;
8362 int sgn0;
8363 bool swap = false;
8365 /* Match A +- CST code arg1 and CST code arg1. We can change the
8366 first form only if overflow is undefined. */
8367 if (!((TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg0))
8368 /* In principle pointers also have undefined overflow behavior,
8369 but that causes problems elsewhere. */
8370 && !POINTER_TYPE_P (TREE_TYPE (arg0))
8371 && (code0 == MINUS_EXPR
8372 || code0 == PLUS_EXPR)
8373 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
8374 || code0 == INTEGER_CST))
8375 return NULL_TREE;
8377 /* Identify the constant in arg0 and its sign. */
8378 if (code0 == INTEGER_CST)
8379 cst0 = arg0;
8380 else
8381 cst0 = TREE_OPERAND (arg0, 1);
8382 sgn0 = tree_int_cst_sgn (cst0);
8384 /* Overflowed constants and zero will cause problems. */
8385 if (integer_zerop (cst0)
8386 || TREE_OVERFLOW (cst0))
8387 return NULL_TREE;
8389 /* See if we can reduce the magnitude of the constant in
8390 arg0 by changing the comparison code. */
8391 if (code0 == INTEGER_CST)
8393 /* CST <= arg1 -> CST-1 < arg1. */
8394 if (code == LE_EXPR && sgn0 == 1)
8395 code = LT_EXPR;
8396 /* -CST < arg1 -> -CST-1 <= arg1. */
8397 else if (code == LT_EXPR && sgn0 == -1)
8398 code = LE_EXPR;
8399 /* CST > arg1 -> CST-1 >= arg1. */
8400 else if (code == GT_EXPR && sgn0 == 1)
8401 code = GE_EXPR;
8402 /* -CST >= arg1 -> -CST-1 > arg1. */
8403 else if (code == GE_EXPR && sgn0 == -1)
8404 code = GT_EXPR;
8405 else
8406 return NULL_TREE;
8407 /* arg1 code' CST' might be more canonical. */
8408 swap = true;
8410 else
8412 /* A - CST < arg1 -> A - CST-1 <= arg1. */
8413 if (code == LT_EXPR
8414 && code0 == ((sgn0 == -1) ? PLUS_EXPR : MINUS_EXPR))
8415 code = LE_EXPR;
8416 /* A + CST > arg1 -> A + CST-1 >= arg1. */
8417 else if (code == GT_EXPR
8418 && code0 == ((sgn0 == -1) ? MINUS_EXPR : PLUS_EXPR))
8419 code = GE_EXPR;
8420 /* A + CST <= arg1 -> A + CST-1 < arg1. */
8421 else if (code == LE_EXPR
8422 && code0 == ((sgn0 == -1) ? MINUS_EXPR : PLUS_EXPR))
8423 code = LT_EXPR;
8424 /* A - CST >= arg1 -> A - CST-1 > arg1. */
8425 else if (code == GE_EXPR
8426 && code0 == ((sgn0 == -1) ? PLUS_EXPR : MINUS_EXPR))
8427 code = GT_EXPR;
8428 else
8429 return NULL_TREE;
8430 *strict_overflow_p = true;
8433 /* Now build the constant reduced in magnitude. But not if that
8434 would produce one outside of its types range. */
8435 if (INTEGRAL_TYPE_P (TREE_TYPE (cst0))
8436 && ((sgn0 == 1
8437 && TYPE_MIN_VALUE (TREE_TYPE (cst0))
8438 && tree_int_cst_equal (cst0, TYPE_MIN_VALUE (TREE_TYPE (cst0))))
8439 || (sgn0 == -1
8440 && TYPE_MAX_VALUE (TREE_TYPE (cst0))
8441 && tree_int_cst_equal (cst0, TYPE_MAX_VALUE (TREE_TYPE (cst0))))))
8442 /* We cannot swap the comparison here as that would cause us to
8443 endlessly recurse. */
8444 return NULL_TREE;
8446 t = int_const_binop (sgn0 == -1 ? PLUS_EXPR : MINUS_EXPR,
8447 cst0, build_int_cst (TREE_TYPE (cst0), 1));
8448 if (code0 != INTEGER_CST)
8449 t = fold_build2_loc (loc, code0, TREE_TYPE (arg0), TREE_OPERAND (arg0, 0), t);
8450 t = fold_convert (TREE_TYPE (arg1), t);
8452 /* If swapping might yield to a more canonical form, do so. */
8453 if (swap)
8454 return fold_build2_loc (loc, swap_tree_comparison (code), type, arg1, t);
8455 else
8456 return fold_build2_loc (loc, code, type, t, arg1);
8459 /* Canonicalize the comparison ARG0 CODE ARG1 with type TYPE with undefined
8460 overflow further. Try to decrease the magnitude of constants involved
8461 by changing LE_EXPR and GE_EXPR to LT_EXPR and GT_EXPR or vice versa
8462 and put sole constants at the second argument position.
8463 Returns the canonicalized tree if changed, otherwise NULL_TREE. */
8465 static tree
8466 maybe_canonicalize_comparison (location_t loc, enum tree_code code, tree type,
8467 tree arg0, tree arg1)
8469 tree t;
8470 bool strict_overflow_p;
8471 const char * const warnmsg = G_("assuming signed overflow does not occur "
8472 "when reducing constant in comparison");
8474 /* Try canonicalization by simplifying arg0. */
8475 strict_overflow_p = false;
8476 t = maybe_canonicalize_comparison_1 (loc, code, type, arg0, arg1,
8477 &strict_overflow_p);
8478 if (t)
8480 if (strict_overflow_p)
8481 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MAGNITUDE);
8482 return t;
8485 /* Try canonicalization by simplifying arg1 using the swapped
8486 comparison. */
8487 code = swap_tree_comparison (code);
8488 strict_overflow_p = false;
8489 t = maybe_canonicalize_comparison_1 (loc, code, type, arg1, arg0,
8490 &strict_overflow_p);
8491 if (t && strict_overflow_p)
8492 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MAGNITUDE);
8493 return t;
8496 /* Return whether BASE + OFFSET + BITPOS may wrap around the address
8497 space. This is used to avoid issuing overflow warnings for
8498 expressions like &p->x which can not wrap. */
8500 static bool
8501 pointer_may_wrap_p (tree base, tree offset, HOST_WIDE_INT bitpos)
8503 unsigned HOST_WIDE_INT offset_low, total_low;
8504 HOST_WIDE_INT size, offset_high, total_high;
8506 if (!POINTER_TYPE_P (TREE_TYPE (base)))
8507 return true;
8509 if (bitpos < 0)
8510 return true;
8512 if (offset == NULL_TREE)
8514 offset_low = 0;
8515 offset_high = 0;
8517 else if (TREE_CODE (offset) != INTEGER_CST || TREE_OVERFLOW (offset))
8518 return true;
8519 else
8521 offset_low = TREE_INT_CST_LOW (offset);
8522 offset_high = TREE_INT_CST_HIGH (offset);
8525 if (add_double_with_sign (offset_low, offset_high,
8526 bitpos / BITS_PER_UNIT, 0,
8527 &total_low, &total_high,
8528 true))
8529 return true;
8531 if (total_high != 0)
8532 return true;
8534 size = int_size_in_bytes (TREE_TYPE (TREE_TYPE (base)));
8535 if (size <= 0)
8536 return true;
8538 /* We can do slightly better for SIZE if we have an ADDR_EXPR of an
8539 array. */
8540 if (TREE_CODE (base) == ADDR_EXPR)
8542 HOST_WIDE_INT base_size;
8544 base_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (base, 0)));
8545 if (base_size > 0 && size < base_size)
8546 size = base_size;
8549 return total_low > (unsigned HOST_WIDE_INT) size;
8552 /* Subroutine of fold_binary. This routine performs all of the
8553 transformations that are common to the equality/inequality
8554 operators (EQ_EXPR and NE_EXPR) and the ordering operators
8555 (LT_EXPR, LE_EXPR, GE_EXPR and GT_EXPR). Callers other than
8556 fold_binary should call fold_binary. Fold a comparison with
8557 tree code CODE and type TYPE with operands OP0 and OP1. Return
8558 the folded comparison or NULL_TREE. */
8560 static tree
8561 fold_comparison (location_t loc, enum tree_code code, tree type,
8562 tree op0, tree op1)
8564 tree arg0, arg1, tem;
8566 arg0 = op0;
8567 arg1 = op1;
8569 STRIP_SIGN_NOPS (arg0);
8570 STRIP_SIGN_NOPS (arg1);
8572 tem = fold_relational_const (code, type, arg0, arg1);
8573 if (tem != NULL_TREE)
8574 return tem;
8576 /* If one arg is a real or integer constant, put it last. */
8577 if (tree_swap_operands_p (arg0, arg1, true))
8578 return fold_build2_loc (loc, swap_tree_comparison (code), type, op1, op0);
8580 /* Transform comparisons of the form X +- C1 CMP C2 to X CMP C2 +- C1. */
8581 if ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8582 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8583 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1))
8584 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
8585 && (TREE_CODE (arg1) == INTEGER_CST
8586 && !TREE_OVERFLOW (arg1)))
8588 tree const1 = TREE_OPERAND (arg0, 1);
8589 tree const2 = arg1;
8590 tree variable = TREE_OPERAND (arg0, 0);
8591 tree lhs;
8592 int lhs_add;
8593 lhs_add = TREE_CODE (arg0) != PLUS_EXPR;
8595 lhs = fold_build2_loc (loc, lhs_add ? PLUS_EXPR : MINUS_EXPR,
8596 TREE_TYPE (arg1), const2, const1);
8598 /* If the constant operation overflowed this can be
8599 simplified as a comparison against INT_MAX/INT_MIN. */
8600 if (TREE_CODE (lhs) == INTEGER_CST
8601 && TREE_OVERFLOW (lhs))
8603 int const1_sgn = tree_int_cst_sgn (const1);
8604 enum tree_code code2 = code;
8606 /* Get the sign of the constant on the lhs if the
8607 operation were VARIABLE + CONST1. */
8608 if (TREE_CODE (arg0) == MINUS_EXPR)
8609 const1_sgn = -const1_sgn;
8611 /* The sign of the constant determines if we overflowed
8612 INT_MAX (const1_sgn == -1) or INT_MIN (const1_sgn == 1).
8613 Canonicalize to the INT_MIN overflow by swapping the comparison
8614 if necessary. */
8615 if (const1_sgn == -1)
8616 code2 = swap_tree_comparison (code);
8618 /* We now can look at the canonicalized case
8619 VARIABLE + 1 CODE2 INT_MIN
8620 and decide on the result. */
8621 if (code2 == LT_EXPR
8622 || code2 == LE_EXPR
8623 || code2 == EQ_EXPR)
8624 return omit_one_operand_loc (loc, type, boolean_false_node, variable);
8625 else if (code2 == NE_EXPR
8626 || code2 == GE_EXPR
8627 || code2 == GT_EXPR)
8628 return omit_one_operand_loc (loc, type, boolean_true_node, variable);
8631 if (TREE_CODE (lhs) == TREE_CODE (arg1)
8632 && (TREE_CODE (lhs) != INTEGER_CST
8633 || !TREE_OVERFLOW (lhs)))
8635 if (code != EQ_EXPR && code != NE_EXPR)
8636 fold_overflow_warning ("assuming signed overflow does not occur "
8637 "when changing X +- C1 cmp C2 to "
8638 "X cmp C1 +- C2",
8639 WARN_STRICT_OVERFLOW_COMPARISON);
8640 return fold_build2_loc (loc, code, type, variable, lhs);
8644 /* For comparisons of pointers we can decompose it to a compile time
8645 comparison of the base objects and the offsets into the object.
8646 This requires at least one operand being an ADDR_EXPR or a
8647 POINTER_PLUS_EXPR to do more than the operand_equal_p test below. */
8648 if (POINTER_TYPE_P (TREE_TYPE (arg0))
8649 && (TREE_CODE (arg0) == ADDR_EXPR
8650 || TREE_CODE (arg1) == ADDR_EXPR
8651 || TREE_CODE (arg0) == POINTER_PLUS_EXPR
8652 || TREE_CODE (arg1) == POINTER_PLUS_EXPR))
8654 tree base0, base1, offset0 = NULL_TREE, offset1 = NULL_TREE;
8655 HOST_WIDE_INT bitsize, bitpos0 = 0, bitpos1 = 0;
8656 enum machine_mode mode;
8657 int volatilep, unsignedp;
8658 bool indirect_base0 = false, indirect_base1 = false;
8660 /* Get base and offset for the access. Strip ADDR_EXPR for
8661 get_inner_reference, but put it back by stripping INDIRECT_REF
8662 off the base object if possible. indirect_baseN will be true
8663 if baseN is not an address but refers to the object itself. */
8664 base0 = arg0;
8665 if (TREE_CODE (arg0) == ADDR_EXPR)
8667 base0 = get_inner_reference (TREE_OPERAND (arg0, 0),
8668 &bitsize, &bitpos0, &offset0, &mode,
8669 &unsignedp, &volatilep, false);
8670 if (TREE_CODE (base0) == INDIRECT_REF)
8671 base0 = TREE_OPERAND (base0, 0);
8672 else
8673 indirect_base0 = true;
8675 else if (TREE_CODE (arg0) == POINTER_PLUS_EXPR)
8677 base0 = TREE_OPERAND (arg0, 0);
8678 STRIP_SIGN_NOPS (base0);
8679 if (TREE_CODE (base0) == ADDR_EXPR)
8681 base0 = TREE_OPERAND (base0, 0);
8682 indirect_base0 = true;
8684 offset0 = TREE_OPERAND (arg0, 1);
8687 base1 = arg1;
8688 if (TREE_CODE (arg1) == ADDR_EXPR)
8690 base1 = get_inner_reference (TREE_OPERAND (arg1, 0),
8691 &bitsize, &bitpos1, &offset1, &mode,
8692 &unsignedp, &volatilep, false);
8693 if (TREE_CODE (base1) == INDIRECT_REF)
8694 base1 = TREE_OPERAND (base1, 0);
8695 else
8696 indirect_base1 = true;
8698 else if (TREE_CODE (arg1) == POINTER_PLUS_EXPR)
8700 base1 = TREE_OPERAND (arg1, 0);
8701 STRIP_SIGN_NOPS (base1);
8702 if (TREE_CODE (base1) == ADDR_EXPR)
8704 base1 = TREE_OPERAND (base1, 0);
8705 indirect_base1 = true;
8707 offset1 = TREE_OPERAND (arg1, 1);
8710 /* A local variable can never be pointed to by
8711 the default SSA name of an incoming parameter. */
8712 if ((TREE_CODE (arg0) == ADDR_EXPR
8713 && indirect_base0
8714 && TREE_CODE (base0) == VAR_DECL
8715 && auto_var_in_fn_p (base0, current_function_decl)
8716 && !indirect_base1
8717 && TREE_CODE (base1) == SSA_NAME
8718 && TREE_CODE (SSA_NAME_VAR (base1)) == PARM_DECL
8719 && SSA_NAME_IS_DEFAULT_DEF (base1))
8720 || (TREE_CODE (arg1) == ADDR_EXPR
8721 && indirect_base1
8722 && TREE_CODE (base1) == VAR_DECL
8723 && auto_var_in_fn_p (base1, current_function_decl)
8724 && !indirect_base0
8725 && TREE_CODE (base0) == SSA_NAME
8726 && TREE_CODE (SSA_NAME_VAR (base0)) == PARM_DECL
8727 && SSA_NAME_IS_DEFAULT_DEF (base0)))
8729 if (code == NE_EXPR)
8730 return constant_boolean_node (1, type);
8731 else if (code == EQ_EXPR)
8732 return constant_boolean_node (0, type);
8734 /* If we have equivalent bases we might be able to simplify. */
8735 else if (indirect_base0 == indirect_base1
8736 && operand_equal_p (base0, base1, 0))
8738 /* We can fold this expression to a constant if the non-constant
8739 offset parts are equal. */
8740 if ((offset0 == offset1
8741 || (offset0 && offset1
8742 && operand_equal_p (offset0, offset1, 0)))
8743 && (code == EQ_EXPR
8744 || code == NE_EXPR
8745 || (indirect_base0 && DECL_P (base0))
8746 || POINTER_TYPE_OVERFLOW_UNDEFINED))
8749 if (code != EQ_EXPR
8750 && code != NE_EXPR
8751 && bitpos0 != bitpos1
8752 && (pointer_may_wrap_p (base0, offset0, bitpos0)
8753 || pointer_may_wrap_p (base1, offset1, bitpos1)))
8754 fold_overflow_warning (("assuming pointer wraparound does not "
8755 "occur when comparing P +- C1 with "
8756 "P +- C2"),
8757 WARN_STRICT_OVERFLOW_CONDITIONAL);
8759 switch (code)
8761 case EQ_EXPR:
8762 return constant_boolean_node (bitpos0 == bitpos1, type);
8763 case NE_EXPR:
8764 return constant_boolean_node (bitpos0 != bitpos1, type);
8765 case LT_EXPR:
8766 return constant_boolean_node (bitpos0 < bitpos1, type);
8767 case LE_EXPR:
8768 return constant_boolean_node (bitpos0 <= bitpos1, type);
8769 case GE_EXPR:
8770 return constant_boolean_node (bitpos0 >= bitpos1, type);
8771 case GT_EXPR:
8772 return constant_boolean_node (bitpos0 > bitpos1, type);
8773 default:;
8776 /* We can simplify the comparison to a comparison of the variable
8777 offset parts if the constant offset parts are equal.
8778 Be careful to use signed size type here because otherwise we
8779 mess with array offsets in the wrong way. This is possible
8780 because pointer arithmetic is restricted to retain within an
8781 object and overflow on pointer differences is undefined as of
8782 6.5.6/8 and /9 with respect to the signed ptrdiff_t. */
8783 else if (bitpos0 == bitpos1
8784 && ((code == EQ_EXPR || code == NE_EXPR)
8785 || (indirect_base0 && DECL_P (base0))
8786 || POINTER_TYPE_OVERFLOW_UNDEFINED))
8788 /* By converting to signed size type we cover middle-end pointer
8789 arithmetic which operates on unsigned pointer types of size
8790 type size and ARRAY_REF offsets which are properly sign or
8791 zero extended from their type in case it is narrower than
8792 size type. */
8793 if (offset0 == NULL_TREE)
8794 offset0 = build_int_cst (ssizetype, 0);
8795 else
8796 offset0 = fold_convert_loc (loc, ssizetype, offset0);
8797 if (offset1 == NULL_TREE)
8798 offset1 = build_int_cst (ssizetype, 0);
8799 else
8800 offset1 = fold_convert_loc (loc, ssizetype, offset1);
8802 if (code != EQ_EXPR
8803 && code != NE_EXPR
8804 && (pointer_may_wrap_p (base0, offset0, bitpos0)
8805 || pointer_may_wrap_p (base1, offset1, bitpos1)))
8806 fold_overflow_warning (("assuming pointer wraparound does not "
8807 "occur when comparing P +- C1 with "
8808 "P +- C2"),
8809 WARN_STRICT_OVERFLOW_COMPARISON);
8811 return fold_build2_loc (loc, code, type, offset0, offset1);
8814 /* For non-equal bases we can simplify if they are addresses
8815 of local binding decls or constants. */
8816 else if (indirect_base0 && indirect_base1
8817 /* We know that !operand_equal_p (base0, base1, 0)
8818 because the if condition was false. But make
8819 sure two decls are not the same. */
8820 && base0 != base1
8821 && TREE_CODE (arg0) == ADDR_EXPR
8822 && TREE_CODE (arg1) == ADDR_EXPR
8823 && (((TREE_CODE (base0) == VAR_DECL
8824 || TREE_CODE (base0) == PARM_DECL)
8825 && (targetm.binds_local_p (base0)
8826 || CONSTANT_CLASS_P (base1)))
8827 || CONSTANT_CLASS_P (base0))
8828 && (((TREE_CODE (base1) == VAR_DECL
8829 || TREE_CODE (base1) == PARM_DECL)
8830 && (targetm.binds_local_p (base1)
8831 || CONSTANT_CLASS_P (base0)))
8832 || CONSTANT_CLASS_P (base1)))
8834 if (code == EQ_EXPR)
8835 return omit_two_operands_loc (loc, type, boolean_false_node,
8836 arg0, arg1);
8837 else if (code == NE_EXPR)
8838 return omit_two_operands_loc (loc, type, boolean_true_node,
8839 arg0, arg1);
8841 /* For equal offsets we can simplify to a comparison of the
8842 base addresses. */
8843 else if (bitpos0 == bitpos1
8844 && (indirect_base0
8845 ? base0 != TREE_OPERAND (arg0, 0) : base0 != arg0)
8846 && (indirect_base1
8847 ? base1 != TREE_OPERAND (arg1, 0) : base1 != arg1)
8848 && ((offset0 == offset1)
8849 || (offset0 && offset1
8850 && operand_equal_p (offset0, offset1, 0))))
8852 if (indirect_base0)
8853 base0 = build_fold_addr_expr_loc (loc, base0);
8854 if (indirect_base1)
8855 base1 = build_fold_addr_expr_loc (loc, base1);
8856 return fold_build2_loc (loc, code, type, base0, base1);
8860 /* Transform comparisons of the form X +- C1 CMP Y +- C2 to
8861 X CMP Y +- C2 +- C1 for signed X, Y. This is valid if
8862 the resulting offset is smaller in absolute value than the
8863 original one. */
8864 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg0))
8865 && (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8866 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8867 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1)))
8868 && (TREE_CODE (arg1) == PLUS_EXPR || TREE_CODE (arg1) == MINUS_EXPR)
8869 && (TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
8870 && !TREE_OVERFLOW (TREE_OPERAND (arg1, 1))))
8872 tree const1 = TREE_OPERAND (arg0, 1);
8873 tree const2 = TREE_OPERAND (arg1, 1);
8874 tree variable1 = TREE_OPERAND (arg0, 0);
8875 tree variable2 = TREE_OPERAND (arg1, 0);
8876 tree cst;
8877 const char * const warnmsg = G_("assuming signed overflow does not "
8878 "occur when combining constants around "
8879 "a comparison");
8881 /* Put the constant on the side where it doesn't overflow and is
8882 of lower absolute value than before. */
8883 cst = int_const_binop (TREE_CODE (arg0) == TREE_CODE (arg1)
8884 ? MINUS_EXPR : PLUS_EXPR,
8885 const2, const1);
8886 if (!TREE_OVERFLOW (cst)
8887 && tree_int_cst_compare (const2, cst) == tree_int_cst_sgn (const2))
8889 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_COMPARISON);
8890 return fold_build2_loc (loc, code, type,
8891 variable1,
8892 fold_build2_loc (loc,
8893 TREE_CODE (arg1), TREE_TYPE (arg1),
8894 variable2, cst));
8897 cst = int_const_binop (TREE_CODE (arg0) == TREE_CODE (arg1)
8898 ? MINUS_EXPR : PLUS_EXPR,
8899 const1, const2);
8900 if (!TREE_OVERFLOW (cst)
8901 && tree_int_cst_compare (const1, cst) == tree_int_cst_sgn (const1))
8903 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_COMPARISON);
8904 return fold_build2_loc (loc, code, type,
8905 fold_build2_loc (loc, TREE_CODE (arg0), TREE_TYPE (arg0),
8906 variable1, cst),
8907 variable2);
8911 /* Transform comparisons of the form X * C1 CMP 0 to X CMP 0 in the
8912 signed arithmetic case. That form is created by the compiler
8913 often enough for folding it to be of value. One example is in
8914 computing loop trip counts after Operator Strength Reduction. */
8915 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg0))
8916 && TREE_CODE (arg0) == MULT_EXPR
8917 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8918 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1)))
8919 && integer_zerop (arg1))
8921 tree const1 = TREE_OPERAND (arg0, 1);
8922 tree const2 = arg1; /* zero */
8923 tree variable1 = TREE_OPERAND (arg0, 0);
8924 enum tree_code cmp_code = code;
8926 /* Handle unfolded multiplication by zero. */
8927 if (integer_zerop (const1))
8928 return fold_build2_loc (loc, cmp_code, type, const1, const2);
8930 fold_overflow_warning (("assuming signed overflow does not occur when "
8931 "eliminating multiplication in comparison "
8932 "with zero"),
8933 WARN_STRICT_OVERFLOW_COMPARISON);
8935 /* If const1 is negative we swap the sense of the comparison. */
8936 if (tree_int_cst_sgn (const1) < 0)
8937 cmp_code = swap_tree_comparison (cmp_code);
8939 return fold_build2_loc (loc, cmp_code, type, variable1, const2);
8942 tem = maybe_canonicalize_comparison (loc, code, type, arg0, arg1);
8943 if (tem)
8944 return tem;
8946 if (FLOAT_TYPE_P (TREE_TYPE (arg0)))
8948 tree targ0 = strip_float_extensions (arg0);
8949 tree targ1 = strip_float_extensions (arg1);
8950 tree newtype = TREE_TYPE (targ0);
8952 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
8953 newtype = TREE_TYPE (targ1);
8955 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
8956 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
8957 return fold_build2_loc (loc, code, type,
8958 fold_convert_loc (loc, newtype, targ0),
8959 fold_convert_loc (loc, newtype, targ1));
8961 /* (-a) CMP (-b) -> b CMP a */
8962 if (TREE_CODE (arg0) == NEGATE_EXPR
8963 && TREE_CODE (arg1) == NEGATE_EXPR)
8964 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg1, 0),
8965 TREE_OPERAND (arg0, 0));
8967 if (TREE_CODE (arg1) == REAL_CST)
8969 REAL_VALUE_TYPE cst;
8970 cst = TREE_REAL_CST (arg1);
8972 /* (-a) CMP CST -> a swap(CMP) (-CST) */
8973 if (TREE_CODE (arg0) == NEGATE_EXPR)
8974 return fold_build2_loc (loc, swap_tree_comparison (code), type,
8975 TREE_OPERAND (arg0, 0),
8976 build_real (TREE_TYPE (arg1),
8977 real_value_negate (&cst)));
8979 /* IEEE doesn't distinguish +0 and -0 in comparisons. */
8980 /* a CMP (-0) -> a CMP 0 */
8981 if (REAL_VALUE_MINUS_ZERO (cst))
8982 return fold_build2_loc (loc, code, type, arg0,
8983 build_real (TREE_TYPE (arg1), dconst0));
8985 /* x != NaN is always true, other ops are always false. */
8986 if (REAL_VALUE_ISNAN (cst)
8987 && ! HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg1))))
8989 tem = (code == NE_EXPR) ? integer_one_node : integer_zero_node;
8990 return omit_one_operand_loc (loc, type, tem, arg0);
8993 /* Fold comparisons against infinity. */
8994 if (REAL_VALUE_ISINF (cst)
8995 && MODE_HAS_INFINITIES (TYPE_MODE (TREE_TYPE (arg1))))
8997 tem = fold_inf_compare (loc, code, type, arg0, arg1);
8998 if (tem != NULL_TREE)
8999 return tem;
9003 /* If this is a comparison of a real constant with a PLUS_EXPR
9004 or a MINUS_EXPR of a real constant, we can convert it into a
9005 comparison with a revised real constant as long as no overflow
9006 occurs when unsafe_math_optimizations are enabled. */
9007 if (flag_unsafe_math_optimizations
9008 && TREE_CODE (arg1) == REAL_CST
9009 && (TREE_CODE (arg0) == PLUS_EXPR
9010 || TREE_CODE (arg0) == MINUS_EXPR)
9011 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
9012 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
9013 ? MINUS_EXPR : PLUS_EXPR,
9014 arg1, TREE_OPERAND (arg0, 1)))
9015 && !TREE_OVERFLOW (tem))
9016 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0), tem);
9018 /* Likewise, we can simplify a comparison of a real constant with
9019 a MINUS_EXPR whose first operand is also a real constant, i.e.
9020 (c1 - x) < c2 becomes x > c1-c2. Reordering is allowed on
9021 floating-point types only if -fassociative-math is set. */
9022 if (flag_associative_math
9023 && TREE_CODE (arg1) == REAL_CST
9024 && TREE_CODE (arg0) == MINUS_EXPR
9025 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST
9026 && 0 != (tem = const_binop (MINUS_EXPR, TREE_OPERAND (arg0, 0),
9027 arg1))
9028 && !TREE_OVERFLOW (tem))
9029 return fold_build2_loc (loc, swap_tree_comparison (code), type,
9030 TREE_OPERAND (arg0, 1), tem);
9032 /* Fold comparisons against built-in math functions. */
9033 if (TREE_CODE (arg1) == REAL_CST
9034 && flag_unsafe_math_optimizations
9035 && ! flag_errno_math)
9037 enum built_in_function fcode = builtin_mathfn_code (arg0);
9039 if (fcode != END_BUILTINS)
9041 tem = fold_mathfn_compare (loc, fcode, code, type, arg0, arg1);
9042 if (tem != NULL_TREE)
9043 return tem;
9048 if (TREE_CODE (TREE_TYPE (arg0)) == INTEGER_TYPE
9049 && CONVERT_EXPR_P (arg0))
9051 /* If we are widening one operand of an integer comparison,
9052 see if the other operand is similarly being widened. Perhaps we
9053 can do the comparison in the narrower type. */
9054 tem = fold_widened_comparison (loc, code, type, arg0, arg1);
9055 if (tem)
9056 return tem;
9058 /* Or if we are changing signedness. */
9059 tem = fold_sign_changed_comparison (loc, code, type, arg0, arg1);
9060 if (tem)
9061 return tem;
9064 /* If this is comparing a constant with a MIN_EXPR or a MAX_EXPR of a
9065 constant, we can simplify it. */
9066 if (TREE_CODE (arg1) == INTEGER_CST
9067 && (TREE_CODE (arg0) == MIN_EXPR
9068 || TREE_CODE (arg0) == MAX_EXPR)
9069 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
9071 tem = optimize_minmax_comparison (loc, code, type, op0, op1);
9072 if (tem)
9073 return tem;
9076 /* Simplify comparison of something with itself. (For IEEE
9077 floating-point, we can only do some of these simplifications.) */
9078 if (operand_equal_p (arg0, arg1, 0))
9080 switch (code)
9082 case EQ_EXPR:
9083 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
9084 || ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
9085 return constant_boolean_node (1, type);
9086 break;
9088 case GE_EXPR:
9089 case LE_EXPR:
9090 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
9091 || ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
9092 return constant_boolean_node (1, type);
9093 return fold_build2_loc (loc, EQ_EXPR, type, arg0, arg1);
9095 case NE_EXPR:
9096 /* For NE, we can only do this simplification if integer
9097 or we don't honor IEEE floating point NaNs. */
9098 if (FLOAT_TYPE_P (TREE_TYPE (arg0))
9099 && HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0))))
9100 break;
9101 /* ... fall through ... */
9102 case GT_EXPR:
9103 case LT_EXPR:
9104 return constant_boolean_node (0, type);
9105 default:
9106 gcc_unreachable ();
9110 /* If we are comparing an expression that just has comparisons
9111 of two integer values, arithmetic expressions of those comparisons,
9112 and constants, we can simplify it. There are only three cases
9113 to check: the two values can either be equal, the first can be
9114 greater, or the second can be greater. Fold the expression for
9115 those three values. Since each value must be 0 or 1, we have
9116 eight possibilities, each of which corresponds to the constant 0
9117 or 1 or one of the six possible comparisons.
9119 This handles common cases like (a > b) == 0 but also handles
9120 expressions like ((x > y) - (y > x)) > 0, which supposedly
9121 occur in macroized code. */
9123 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) != INTEGER_CST)
9125 tree cval1 = 0, cval2 = 0;
9126 int save_p = 0;
9128 if (twoval_comparison_p (arg0, &cval1, &cval2, &save_p)
9129 /* Don't handle degenerate cases here; they should already
9130 have been handled anyway. */
9131 && cval1 != 0 && cval2 != 0
9132 && ! (TREE_CONSTANT (cval1) && TREE_CONSTANT (cval2))
9133 && TREE_TYPE (cval1) == TREE_TYPE (cval2)
9134 && INTEGRAL_TYPE_P (TREE_TYPE (cval1))
9135 && TYPE_MAX_VALUE (TREE_TYPE (cval1))
9136 && TYPE_MAX_VALUE (TREE_TYPE (cval2))
9137 && ! operand_equal_p (TYPE_MIN_VALUE (TREE_TYPE (cval1)),
9138 TYPE_MAX_VALUE (TREE_TYPE (cval2)), 0))
9140 tree maxval = TYPE_MAX_VALUE (TREE_TYPE (cval1));
9141 tree minval = TYPE_MIN_VALUE (TREE_TYPE (cval1));
9143 /* We can't just pass T to eval_subst in case cval1 or cval2
9144 was the same as ARG1. */
9146 tree high_result
9147 = fold_build2_loc (loc, code, type,
9148 eval_subst (loc, arg0, cval1, maxval,
9149 cval2, minval),
9150 arg1);
9151 tree equal_result
9152 = fold_build2_loc (loc, code, type,
9153 eval_subst (loc, arg0, cval1, maxval,
9154 cval2, maxval),
9155 arg1);
9156 tree low_result
9157 = fold_build2_loc (loc, code, type,
9158 eval_subst (loc, arg0, cval1, minval,
9159 cval2, maxval),
9160 arg1);
9162 /* All three of these results should be 0 or 1. Confirm they are.
9163 Then use those values to select the proper code to use. */
9165 if (TREE_CODE (high_result) == INTEGER_CST
9166 && TREE_CODE (equal_result) == INTEGER_CST
9167 && TREE_CODE (low_result) == INTEGER_CST)
9169 /* Make a 3-bit mask with the high-order bit being the
9170 value for `>', the next for '=', and the low for '<'. */
9171 switch ((integer_onep (high_result) * 4)
9172 + (integer_onep (equal_result) * 2)
9173 + integer_onep (low_result))
9175 case 0:
9176 /* Always false. */
9177 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
9178 case 1:
9179 code = LT_EXPR;
9180 break;
9181 case 2:
9182 code = EQ_EXPR;
9183 break;
9184 case 3:
9185 code = LE_EXPR;
9186 break;
9187 case 4:
9188 code = GT_EXPR;
9189 break;
9190 case 5:
9191 code = NE_EXPR;
9192 break;
9193 case 6:
9194 code = GE_EXPR;
9195 break;
9196 case 7:
9197 /* Always true. */
9198 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
9201 if (save_p)
9203 tem = save_expr (build2 (code, type, cval1, cval2));
9204 SET_EXPR_LOCATION (tem, loc);
9205 return tem;
9207 return fold_build2_loc (loc, code, type, cval1, cval2);
9212 /* We can fold X/C1 op C2 where C1 and C2 are integer constants
9213 into a single range test. */
9214 if ((TREE_CODE (arg0) == TRUNC_DIV_EXPR
9215 || TREE_CODE (arg0) == EXACT_DIV_EXPR)
9216 && TREE_CODE (arg1) == INTEGER_CST
9217 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
9218 && !integer_zerop (TREE_OPERAND (arg0, 1))
9219 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1))
9220 && !TREE_OVERFLOW (arg1))
9222 tem = fold_div_compare (loc, code, type, arg0, arg1);
9223 if (tem != NULL_TREE)
9224 return tem;
9227 /* Fold ~X op ~Y as Y op X. */
9228 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9229 && TREE_CODE (arg1) == BIT_NOT_EXPR)
9231 tree cmp_type = TREE_TYPE (TREE_OPERAND (arg0, 0));
9232 return fold_build2_loc (loc, code, type,
9233 fold_convert_loc (loc, cmp_type,
9234 TREE_OPERAND (arg1, 0)),
9235 TREE_OPERAND (arg0, 0));
9238 /* Fold ~X op C as X op' ~C, where op' is the swapped comparison. */
9239 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9240 && TREE_CODE (arg1) == INTEGER_CST)
9242 tree cmp_type = TREE_TYPE (TREE_OPERAND (arg0, 0));
9243 return fold_build2_loc (loc, swap_tree_comparison (code), type,
9244 TREE_OPERAND (arg0, 0),
9245 fold_build1_loc (loc, BIT_NOT_EXPR, cmp_type,
9246 fold_convert_loc (loc, cmp_type, arg1)));
9249 return NULL_TREE;
9253 /* Subroutine of fold_binary. Optimize complex multiplications of the
9254 form z * conj(z), as pow(realpart(z),2) + pow(imagpart(z),2). The
9255 argument EXPR represents the expression "z" of type TYPE. */
9257 static tree
9258 fold_mult_zconjz (location_t loc, tree type, tree expr)
9260 tree itype = TREE_TYPE (type);
9261 tree rpart, ipart, tem;
9263 if (TREE_CODE (expr) == COMPLEX_EXPR)
9265 rpart = TREE_OPERAND (expr, 0);
9266 ipart = TREE_OPERAND (expr, 1);
9268 else if (TREE_CODE (expr) == COMPLEX_CST)
9270 rpart = TREE_REALPART (expr);
9271 ipart = TREE_IMAGPART (expr);
9273 else
9275 expr = save_expr (expr);
9276 rpart = fold_build1_loc (loc, REALPART_EXPR, itype, expr);
9277 ipart = fold_build1_loc (loc, IMAGPART_EXPR, itype, expr);
9280 rpart = save_expr (rpart);
9281 ipart = save_expr (ipart);
9282 tem = fold_build2_loc (loc, PLUS_EXPR, itype,
9283 fold_build2_loc (loc, MULT_EXPR, itype, rpart, rpart),
9284 fold_build2_loc (loc, MULT_EXPR, itype, ipart, ipart));
9285 return fold_build2_loc (loc, COMPLEX_EXPR, type, tem,
9286 build_zero_cst (itype));
9290 /* Subroutine of fold_binary. If P is the value of EXPR, computes
9291 power-of-two M and (arbitrary) N such that M divides (P-N). This condition
9292 guarantees that P and N have the same least significant log2(M) bits.
9293 N is not otherwise constrained. In particular, N is not normalized to
9294 0 <= N < M as is common. In general, the precise value of P is unknown.
9295 M is chosen as large as possible such that constant N can be determined.
9297 Returns M and sets *RESIDUE to N.
9299 If ALLOW_FUNC_ALIGN is true, do take functions' DECL_ALIGN_UNIT into
9300 account. This is not always possible due to PR 35705.
9303 static unsigned HOST_WIDE_INT
9304 get_pointer_modulus_and_residue (tree expr, unsigned HOST_WIDE_INT *residue,
9305 bool allow_func_align)
9307 enum tree_code code;
9309 *residue = 0;
9311 code = TREE_CODE (expr);
9312 if (code == ADDR_EXPR)
9314 unsigned int bitalign;
9315 bitalign = get_object_alignment_1 (TREE_OPERAND (expr, 0), residue);
9316 *residue /= BITS_PER_UNIT;
9317 return bitalign / BITS_PER_UNIT;
9319 else if (code == POINTER_PLUS_EXPR)
9321 tree op0, op1;
9322 unsigned HOST_WIDE_INT modulus;
9323 enum tree_code inner_code;
9325 op0 = TREE_OPERAND (expr, 0);
9326 STRIP_NOPS (op0);
9327 modulus = get_pointer_modulus_and_residue (op0, residue,
9328 allow_func_align);
9330 op1 = TREE_OPERAND (expr, 1);
9331 STRIP_NOPS (op1);
9332 inner_code = TREE_CODE (op1);
9333 if (inner_code == INTEGER_CST)
9335 *residue += TREE_INT_CST_LOW (op1);
9336 return modulus;
9338 else if (inner_code == MULT_EXPR)
9340 op1 = TREE_OPERAND (op1, 1);
9341 if (TREE_CODE (op1) == INTEGER_CST)
9343 unsigned HOST_WIDE_INT align;
9345 /* Compute the greatest power-of-2 divisor of op1. */
9346 align = TREE_INT_CST_LOW (op1);
9347 align &= -align;
9349 /* If align is non-zero and less than *modulus, replace
9350 *modulus with align., If align is 0, then either op1 is 0
9351 or the greatest power-of-2 divisor of op1 doesn't fit in an
9352 unsigned HOST_WIDE_INT. In either case, no additional
9353 constraint is imposed. */
9354 if (align)
9355 modulus = MIN (modulus, align);
9357 return modulus;
9362 /* If we get here, we were unable to determine anything useful about the
9363 expression. */
9364 return 1;
9368 /* Fold a binary expression of code CODE and type TYPE with operands
9369 OP0 and OP1. LOC is the location of the resulting expression.
9370 Return the folded expression if folding is successful. Otherwise,
9371 return NULL_TREE. */
9373 tree
9374 fold_binary_loc (location_t loc,
9375 enum tree_code code, tree type, tree op0, tree op1)
9377 enum tree_code_class kind = TREE_CODE_CLASS (code);
9378 tree arg0, arg1, tem;
9379 tree t1 = NULL_TREE;
9380 bool strict_overflow_p;
9382 gcc_assert (IS_EXPR_CODE_CLASS (kind)
9383 && TREE_CODE_LENGTH (code) == 2
9384 && op0 != NULL_TREE
9385 && op1 != NULL_TREE);
9387 arg0 = op0;
9388 arg1 = op1;
9390 /* Strip any conversions that don't change the mode. This is
9391 safe for every expression, except for a comparison expression
9392 because its signedness is derived from its operands. So, in
9393 the latter case, only strip conversions that don't change the
9394 signedness. MIN_EXPR/MAX_EXPR also need signedness of arguments
9395 preserved.
9397 Note that this is done as an internal manipulation within the
9398 constant folder, in order to find the simplest representation
9399 of the arguments so that their form can be studied. In any
9400 cases, the appropriate type conversions should be put back in
9401 the tree that will get out of the constant folder. */
9403 if (kind == tcc_comparison || code == MIN_EXPR || code == MAX_EXPR)
9405 STRIP_SIGN_NOPS (arg0);
9406 STRIP_SIGN_NOPS (arg1);
9408 else
9410 STRIP_NOPS (arg0);
9411 STRIP_NOPS (arg1);
9414 /* Note that TREE_CONSTANT isn't enough: static var addresses are
9415 constant but we can't do arithmetic on them. */
9416 if ((TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
9417 || (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
9418 || (TREE_CODE (arg0) == FIXED_CST && TREE_CODE (arg1) == FIXED_CST)
9419 || (TREE_CODE (arg0) == FIXED_CST && TREE_CODE (arg1) == INTEGER_CST)
9420 || (TREE_CODE (arg0) == COMPLEX_CST && TREE_CODE (arg1) == COMPLEX_CST)
9421 || (TREE_CODE (arg0) == VECTOR_CST && TREE_CODE (arg1) == VECTOR_CST))
9423 if (kind == tcc_binary)
9425 /* Make sure type and arg0 have the same saturating flag. */
9426 gcc_assert (TYPE_SATURATING (type)
9427 == TYPE_SATURATING (TREE_TYPE (arg0)));
9428 tem = const_binop (code, arg0, arg1);
9430 else if (kind == tcc_comparison)
9431 tem = fold_relational_const (code, type, arg0, arg1);
9432 else
9433 tem = NULL_TREE;
9435 if (tem != NULL_TREE)
9437 if (TREE_TYPE (tem) != type)
9438 tem = fold_convert_loc (loc, type, tem);
9439 return tem;
9443 /* If this is a commutative operation, and ARG0 is a constant, move it
9444 to ARG1 to reduce the number of tests below. */
9445 if (commutative_tree_code (code)
9446 && tree_swap_operands_p (arg0, arg1, true))
9447 return fold_build2_loc (loc, code, type, op1, op0);
9449 /* ARG0 is the first operand of EXPR, and ARG1 is the second operand.
9451 First check for cases where an arithmetic operation is applied to a
9452 compound, conditional, or comparison operation. Push the arithmetic
9453 operation inside the compound or conditional to see if any folding
9454 can then be done. Convert comparison to conditional for this purpose.
9455 The also optimizes non-constant cases that used to be done in
9456 expand_expr.
9458 Before we do that, see if this is a BIT_AND_EXPR or a BIT_IOR_EXPR,
9459 one of the operands is a comparison and the other is a comparison, a
9460 BIT_AND_EXPR with the constant 1, or a truth value. In that case, the
9461 code below would make the expression more complex. Change it to a
9462 TRUTH_{AND,OR}_EXPR. Likewise, convert a similar NE_EXPR to
9463 TRUTH_XOR_EXPR and an EQ_EXPR to the inversion of a TRUTH_XOR_EXPR. */
9465 if ((code == BIT_AND_EXPR || code == BIT_IOR_EXPR
9466 || code == EQ_EXPR || code == NE_EXPR)
9467 && ((truth_value_p (TREE_CODE (arg0))
9468 && (truth_value_p (TREE_CODE (arg1))
9469 || (TREE_CODE (arg1) == BIT_AND_EXPR
9470 && integer_onep (TREE_OPERAND (arg1, 1)))))
9471 || (truth_value_p (TREE_CODE (arg1))
9472 && (truth_value_p (TREE_CODE (arg0))
9473 || (TREE_CODE (arg0) == BIT_AND_EXPR
9474 && integer_onep (TREE_OPERAND (arg0, 1)))))))
9476 tem = fold_build2_loc (loc, code == BIT_AND_EXPR ? TRUTH_AND_EXPR
9477 : code == BIT_IOR_EXPR ? TRUTH_OR_EXPR
9478 : TRUTH_XOR_EXPR,
9479 boolean_type_node,
9480 fold_convert_loc (loc, boolean_type_node, arg0),
9481 fold_convert_loc (loc, boolean_type_node, arg1));
9483 if (code == EQ_EXPR)
9484 tem = invert_truthvalue_loc (loc, tem);
9486 return fold_convert_loc (loc, type, tem);
9489 if (TREE_CODE_CLASS (code) == tcc_binary
9490 || TREE_CODE_CLASS (code) == tcc_comparison)
9492 if (TREE_CODE (arg0) == COMPOUND_EXPR)
9494 tem = fold_build2_loc (loc, code, type,
9495 fold_convert_loc (loc, TREE_TYPE (op0),
9496 TREE_OPERAND (arg0, 1)), op1);
9497 return build2_loc (loc, COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
9498 tem);
9500 if (TREE_CODE (arg1) == COMPOUND_EXPR
9501 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
9503 tem = fold_build2_loc (loc, code, type, op0,
9504 fold_convert_loc (loc, TREE_TYPE (op1),
9505 TREE_OPERAND (arg1, 1)));
9506 return build2_loc (loc, COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
9507 tem);
9510 if (TREE_CODE (arg0) == COND_EXPR || COMPARISON_CLASS_P (arg0))
9512 tem = fold_binary_op_with_conditional_arg (loc, code, type, op0, op1,
9513 arg0, arg1,
9514 /*cond_first_p=*/1);
9515 if (tem != NULL_TREE)
9516 return tem;
9519 if (TREE_CODE (arg1) == COND_EXPR || COMPARISON_CLASS_P (arg1))
9521 tem = fold_binary_op_with_conditional_arg (loc, code, type, op0, op1,
9522 arg1, arg0,
9523 /*cond_first_p=*/0);
9524 if (tem != NULL_TREE)
9525 return tem;
9529 switch (code)
9531 case MEM_REF:
9532 /* MEM[&MEM[p, CST1], CST2] -> MEM[p, CST1 + CST2]. */
9533 if (TREE_CODE (arg0) == ADDR_EXPR
9534 && TREE_CODE (TREE_OPERAND (arg0, 0)) == MEM_REF)
9536 tree iref = TREE_OPERAND (arg0, 0);
9537 return fold_build2 (MEM_REF, type,
9538 TREE_OPERAND (iref, 0),
9539 int_const_binop (PLUS_EXPR, arg1,
9540 TREE_OPERAND (iref, 1)));
9543 /* MEM[&a.b, CST2] -> MEM[&a, offsetof (a, b) + CST2]. */
9544 if (TREE_CODE (arg0) == ADDR_EXPR
9545 && handled_component_p (TREE_OPERAND (arg0, 0)))
9547 tree base;
9548 HOST_WIDE_INT coffset;
9549 base = get_addr_base_and_unit_offset (TREE_OPERAND (arg0, 0),
9550 &coffset);
9551 if (!base)
9552 return NULL_TREE;
9553 return fold_build2 (MEM_REF, type,
9554 build_fold_addr_expr (base),
9555 int_const_binop (PLUS_EXPR, arg1,
9556 size_int (coffset)));
9559 return NULL_TREE;
9561 case POINTER_PLUS_EXPR:
9562 /* 0 +p index -> (type)index */
9563 if (integer_zerop (arg0))
9564 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
9566 /* PTR +p 0 -> PTR */
9567 if (integer_zerop (arg1))
9568 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
9570 /* INT +p INT -> (PTR)(INT + INT). Stripping types allows for this. */
9571 if (INTEGRAL_TYPE_P (TREE_TYPE (arg1))
9572 && INTEGRAL_TYPE_P (TREE_TYPE (arg0)))
9573 return fold_convert_loc (loc, type,
9574 fold_build2_loc (loc, PLUS_EXPR, sizetype,
9575 fold_convert_loc (loc, sizetype,
9576 arg1),
9577 fold_convert_loc (loc, sizetype,
9578 arg0)));
9580 /* (PTR +p B) +p A -> PTR +p (B + A) */
9581 if (TREE_CODE (arg0) == POINTER_PLUS_EXPR)
9583 tree inner;
9584 tree arg01 = fold_convert_loc (loc, sizetype, TREE_OPERAND (arg0, 1));
9585 tree arg00 = TREE_OPERAND (arg0, 0);
9586 inner = fold_build2_loc (loc, PLUS_EXPR, sizetype,
9587 arg01, fold_convert_loc (loc, sizetype, arg1));
9588 return fold_convert_loc (loc, type,
9589 fold_build_pointer_plus_loc (loc,
9590 arg00, inner));
9593 /* PTR_CST +p CST -> CST1 */
9594 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
9595 return fold_build2_loc (loc, PLUS_EXPR, type, arg0,
9596 fold_convert_loc (loc, type, arg1));
9598 /* Try replacing &a[i1] +p c * i2 with &a[i1 + i2], if c is step
9599 of the array. Loop optimizer sometimes produce this type of
9600 expressions. */
9601 if (TREE_CODE (arg0) == ADDR_EXPR)
9603 tem = try_move_mult_to_index (loc, arg0,
9604 fold_convert_loc (loc, sizetype, arg1));
9605 if (tem)
9606 return fold_convert_loc (loc, type, tem);
9609 return NULL_TREE;
9611 case PLUS_EXPR:
9612 /* A + (-B) -> A - B */
9613 if (TREE_CODE (arg1) == NEGATE_EXPR)
9614 return fold_build2_loc (loc, MINUS_EXPR, type,
9615 fold_convert_loc (loc, type, arg0),
9616 fold_convert_loc (loc, type,
9617 TREE_OPERAND (arg1, 0)));
9618 /* (-A) + B -> B - A */
9619 if (TREE_CODE (arg0) == NEGATE_EXPR
9620 && reorder_operands_p (TREE_OPERAND (arg0, 0), arg1))
9621 return fold_build2_loc (loc, MINUS_EXPR, type,
9622 fold_convert_loc (loc, type, arg1),
9623 fold_convert_loc (loc, type,
9624 TREE_OPERAND (arg0, 0)));
9626 if (INTEGRAL_TYPE_P (type))
9628 /* Convert ~A + 1 to -A. */
9629 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9630 && integer_onep (arg1))
9631 return fold_build1_loc (loc, NEGATE_EXPR, type,
9632 fold_convert_loc (loc, type,
9633 TREE_OPERAND (arg0, 0)));
9635 /* ~X + X is -1. */
9636 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9637 && !TYPE_OVERFLOW_TRAPS (type))
9639 tree tem = TREE_OPERAND (arg0, 0);
9641 STRIP_NOPS (tem);
9642 if (operand_equal_p (tem, arg1, 0))
9644 t1 = build_int_cst_type (type, -1);
9645 return omit_one_operand_loc (loc, type, t1, arg1);
9649 /* X + ~X is -1. */
9650 if (TREE_CODE (arg1) == BIT_NOT_EXPR
9651 && !TYPE_OVERFLOW_TRAPS (type))
9653 tree tem = TREE_OPERAND (arg1, 0);
9655 STRIP_NOPS (tem);
9656 if (operand_equal_p (arg0, tem, 0))
9658 t1 = build_int_cst_type (type, -1);
9659 return omit_one_operand_loc (loc, type, t1, arg0);
9663 /* X + (X / CST) * -CST is X % CST. */
9664 if (TREE_CODE (arg1) == MULT_EXPR
9665 && TREE_CODE (TREE_OPERAND (arg1, 0)) == TRUNC_DIV_EXPR
9666 && operand_equal_p (arg0,
9667 TREE_OPERAND (TREE_OPERAND (arg1, 0), 0), 0))
9669 tree cst0 = TREE_OPERAND (TREE_OPERAND (arg1, 0), 1);
9670 tree cst1 = TREE_OPERAND (arg1, 1);
9671 tree sum = fold_binary_loc (loc, PLUS_EXPR, TREE_TYPE (cst1),
9672 cst1, cst0);
9673 if (sum && integer_zerop (sum))
9674 return fold_convert_loc (loc, type,
9675 fold_build2_loc (loc, TRUNC_MOD_EXPR,
9676 TREE_TYPE (arg0), arg0,
9677 cst0));
9681 /* Handle (A1 * C1) + (A2 * C2) with A1, A2 or C1, C2 being the
9682 same or one. Make sure type is not saturating.
9683 fold_plusminus_mult_expr will re-associate. */
9684 if ((TREE_CODE (arg0) == MULT_EXPR
9685 || TREE_CODE (arg1) == MULT_EXPR)
9686 && !TYPE_SATURATING (type)
9687 && (!FLOAT_TYPE_P (type) || flag_associative_math))
9689 tree tem = fold_plusminus_mult_expr (loc, code, type, arg0, arg1);
9690 if (tem)
9691 return tem;
9694 if (! FLOAT_TYPE_P (type))
9696 if (integer_zerop (arg1))
9697 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
9699 /* If we are adding two BIT_AND_EXPR's, both of which are and'ing
9700 with a constant, and the two constants have no bits in common,
9701 we should treat this as a BIT_IOR_EXPR since this may produce more
9702 simplifications. */
9703 if (TREE_CODE (arg0) == BIT_AND_EXPR
9704 && TREE_CODE (arg1) == BIT_AND_EXPR
9705 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
9706 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
9707 && integer_zerop (const_binop (BIT_AND_EXPR,
9708 TREE_OPERAND (arg0, 1),
9709 TREE_OPERAND (arg1, 1))))
9711 code = BIT_IOR_EXPR;
9712 goto bit_ior;
9715 /* Reassociate (plus (plus (mult) (foo)) (mult)) as
9716 (plus (plus (mult) (mult)) (foo)) so that we can
9717 take advantage of the factoring cases below. */
9718 if (TYPE_OVERFLOW_WRAPS (type)
9719 && (((TREE_CODE (arg0) == PLUS_EXPR
9720 || TREE_CODE (arg0) == MINUS_EXPR)
9721 && TREE_CODE (arg1) == MULT_EXPR)
9722 || ((TREE_CODE (arg1) == PLUS_EXPR
9723 || TREE_CODE (arg1) == MINUS_EXPR)
9724 && TREE_CODE (arg0) == MULT_EXPR)))
9726 tree parg0, parg1, parg, marg;
9727 enum tree_code pcode;
9729 if (TREE_CODE (arg1) == MULT_EXPR)
9730 parg = arg0, marg = arg1;
9731 else
9732 parg = arg1, marg = arg0;
9733 pcode = TREE_CODE (parg);
9734 parg0 = TREE_OPERAND (parg, 0);
9735 parg1 = TREE_OPERAND (parg, 1);
9736 STRIP_NOPS (parg0);
9737 STRIP_NOPS (parg1);
9739 if (TREE_CODE (parg0) == MULT_EXPR
9740 && TREE_CODE (parg1) != MULT_EXPR)
9741 return fold_build2_loc (loc, pcode, type,
9742 fold_build2_loc (loc, PLUS_EXPR, type,
9743 fold_convert_loc (loc, type,
9744 parg0),
9745 fold_convert_loc (loc, type,
9746 marg)),
9747 fold_convert_loc (loc, type, parg1));
9748 if (TREE_CODE (parg0) != MULT_EXPR
9749 && TREE_CODE (parg1) == MULT_EXPR)
9750 return
9751 fold_build2_loc (loc, PLUS_EXPR, type,
9752 fold_convert_loc (loc, type, parg0),
9753 fold_build2_loc (loc, pcode, type,
9754 fold_convert_loc (loc, type, marg),
9755 fold_convert_loc (loc, type,
9756 parg1)));
9759 else
9761 /* See if ARG1 is zero and X + ARG1 reduces to X. */
9762 if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 0))
9763 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
9765 /* Likewise if the operands are reversed. */
9766 if (fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
9767 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
9769 /* Convert X + -C into X - C. */
9770 if (TREE_CODE (arg1) == REAL_CST
9771 && REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1)))
9773 tem = fold_negate_const (arg1, type);
9774 if (!TREE_OVERFLOW (arg1) || !flag_trapping_math)
9775 return fold_build2_loc (loc, MINUS_EXPR, type,
9776 fold_convert_loc (loc, type, arg0),
9777 fold_convert_loc (loc, type, tem));
9780 /* Fold __complex__ ( x, 0 ) + __complex__ ( 0, y )
9781 to __complex__ ( x, y ). This is not the same for SNaNs or
9782 if signed zeros are involved. */
9783 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
9784 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
9785 && COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0)))
9787 tree rtype = TREE_TYPE (TREE_TYPE (arg0));
9788 tree arg0r = fold_unary_loc (loc, REALPART_EXPR, rtype, arg0);
9789 tree arg0i = fold_unary_loc (loc, IMAGPART_EXPR, rtype, arg0);
9790 bool arg0rz = false, arg0iz = false;
9791 if ((arg0r && (arg0rz = real_zerop (arg0r)))
9792 || (arg0i && (arg0iz = real_zerop (arg0i))))
9794 tree arg1r = fold_unary_loc (loc, REALPART_EXPR, rtype, arg1);
9795 tree arg1i = fold_unary_loc (loc, IMAGPART_EXPR, rtype, arg1);
9796 if (arg0rz && arg1i && real_zerop (arg1i))
9798 tree rp = arg1r ? arg1r
9799 : build1 (REALPART_EXPR, rtype, arg1);
9800 tree ip = arg0i ? arg0i
9801 : build1 (IMAGPART_EXPR, rtype, arg0);
9802 return fold_build2_loc (loc, COMPLEX_EXPR, type, rp, ip);
9804 else if (arg0iz && arg1r && real_zerop (arg1r))
9806 tree rp = arg0r ? arg0r
9807 : build1 (REALPART_EXPR, rtype, arg0);
9808 tree ip = arg1i ? arg1i
9809 : build1 (IMAGPART_EXPR, rtype, arg1);
9810 return fold_build2_loc (loc, COMPLEX_EXPR, type, rp, ip);
9815 if (flag_unsafe_math_optimizations
9816 && (TREE_CODE (arg0) == RDIV_EXPR || TREE_CODE (arg0) == MULT_EXPR)
9817 && (TREE_CODE (arg1) == RDIV_EXPR || TREE_CODE (arg1) == MULT_EXPR)
9818 && (tem = distribute_real_division (loc, code, type, arg0, arg1)))
9819 return tem;
9821 /* Convert x+x into x*2.0. */
9822 if (operand_equal_p (arg0, arg1, 0)
9823 && SCALAR_FLOAT_TYPE_P (type))
9824 return fold_build2_loc (loc, MULT_EXPR, type, arg0,
9825 build_real (type, dconst2));
9827 /* Convert a + (b*c + d*e) into (a + b*c) + d*e.
9828 We associate floats only if the user has specified
9829 -fassociative-math. */
9830 if (flag_associative_math
9831 && TREE_CODE (arg1) == PLUS_EXPR
9832 && TREE_CODE (arg0) != MULT_EXPR)
9834 tree tree10 = TREE_OPERAND (arg1, 0);
9835 tree tree11 = TREE_OPERAND (arg1, 1);
9836 if (TREE_CODE (tree11) == MULT_EXPR
9837 && TREE_CODE (tree10) == MULT_EXPR)
9839 tree tree0;
9840 tree0 = fold_build2_loc (loc, PLUS_EXPR, type, arg0, tree10);
9841 return fold_build2_loc (loc, PLUS_EXPR, type, tree0, tree11);
9844 /* Convert (b*c + d*e) + a into b*c + (d*e +a).
9845 We associate floats only if the user has specified
9846 -fassociative-math. */
9847 if (flag_associative_math
9848 && TREE_CODE (arg0) == PLUS_EXPR
9849 && TREE_CODE (arg1) != MULT_EXPR)
9851 tree tree00 = TREE_OPERAND (arg0, 0);
9852 tree tree01 = TREE_OPERAND (arg0, 1);
9853 if (TREE_CODE (tree01) == MULT_EXPR
9854 && TREE_CODE (tree00) == MULT_EXPR)
9856 tree tree0;
9857 tree0 = fold_build2_loc (loc, PLUS_EXPR, type, tree01, arg1);
9858 return fold_build2_loc (loc, PLUS_EXPR, type, tree00, tree0);
9863 bit_rotate:
9864 /* (A << C1) + (A >> C2) if A is unsigned and C1+C2 is the size of A
9865 is a rotate of A by C1 bits. */
9866 /* (A << B) + (A >> (Z - B)) if A is unsigned and Z is the size of A
9867 is a rotate of A by B bits. */
9869 enum tree_code code0, code1;
9870 tree rtype;
9871 code0 = TREE_CODE (arg0);
9872 code1 = TREE_CODE (arg1);
9873 if (((code0 == RSHIFT_EXPR && code1 == LSHIFT_EXPR)
9874 || (code1 == RSHIFT_EXPR && code0 == LSHIFT_EXPR))
9875 && operand_equal_p (TREE_OPERAND (arg0, 0),
9876 TREE_OPERAND (arg1, 0), 0)
9877 && (rtype = TREE_TYPE (TREE_OPERAND (arg0, 0)),
9878 TYPE_UNSIGNED (rtype))
9879 /* Only create rotates in complete modes. Other cases are not
9880 expanded properly. */
9881 && TYPE_PRECISION (rtype) == GET_MODE_PRECISION (TYPE_MODE (rtype)))
9883 tree tree01, tree11;
9884 enum tree_code code01, code11;
9886 tree01 = TREE_OPERAND (arg0, 1);
9887 tree11 = TREE_OPERAND (arg1, 1);
9888 STRIP_NOPS (tree01);
9889 STRIP_NOPS (tree11);
9890 code01 = TREE_CODE (tree01);
9891 code11 = TREE_CODE (tree11);
9892 if (code01 == INTEGER_CST
9893 && code11 == INTEGER_CST
9894 && TREE_INT_CST_HIGH (tree01) == 0
9895 && TREE_INT_CST_HIGH (tree11) == 0
9896 && ((TREE_INT_CST_LOW (tree01) + TREE_INT_CST_LOW (tree11))
9897 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)))))
9899 tem = build2_loc (loc, LROTATE_EXPR,
9900 TREE_TYPE (TREE_OPERAND (arg0, 0)),
9901 TREE_OPERAND (arg0, 0),
9902 code0 == LSHIFT_EXPR ? tree01 : tree11);
9903 return fold_convert_loc (loc, type, tem);
9905 else if (code11 == MINUS_EXPR)
9907 tree tree110, tree111;
9908 tree110 = TREE_OPERAND (tree11, 0);
9909 tree111 = TREE_OPERAND (tree11, 1);
9910 STRIP_NOPS (tree110);
9911 STRIP_NOPS (tree111);
9912 if (TREE_CODE (tree110) == INTEGER_CST
9913 && 0 == compare_tree_int (tree110,
9914 TYPE_PRECISION
9915 (TREE_TYPE (TREE_OPERAND
9916 (arg0, 0))))
9917 && operand_equal_p (tree01, tree111, 0))
9918 return
9919 fold_convert_loc (loc, type,
9920 build2 ((code0 == LSHIFT_EXPR
9921 ? LROTATE_EXPR
9922 : RROTATE_EXPR),
9923 TREE_TYPE (TREE_OPERAND (arg0, 0)),
9924 TREE_OPERAND (arg0, 0), tree01));
9926 else if (code01 == MINUS_EXPR)
9928 tree tree010, tree011;
9929 tree010 = TREE_OPERAND (tree01, 0);
9930 tree011 = TREE_OPERAND (tree01, 1);
9931 STRIP_NOPS (tree010);
9932 STRIP_NOPS (tree011);
9933 if (TREE_CODE (tree010) == INTEGER_CST
9934 && 0 == compare_tree_int (tree010,
9935 TYPE_PRECISION
9936 (TREE_TYPE (TREE_OPERAND
9937 (arg0, 0))))
9938 && operand_equal_p (tree11, tree011, 0))
9939 return fold_convert_loc
9940 (loc, type,
9941 build2 ((code0 != LSHIFT_EXPR
9942 ? LROTATE_EXPR
9943 : RROTATE_EXPR),
9944 TREE_TYPE (TREE_OPERAND (arg0, 0)),
9945 TREE_OPERAND (arg0, 0), tree11));
9950 associate:
9951 /* In most languages, can't associate operations on floats through
9952 parentheses. Rather than remember where the parentheses were, we
9953 don't associate floats at all, unless the user has specified
9954 -fassociative-math.
9955 And, we need to make sure type is not saturating. */
9957 if ((! FLOAT_TYPE_P (type) || flag_associative_math)
9958 && !TYPE_SATURATING (type))
9960 tree var0, con0, lit0, minus_lit0;
9961 tree var1, con1, lit1, minus_lit1;
9962 bool ok = true;
9964 /* Split both trees into variables, constants, and literals. Then
9965 associate each group together, the constants with literals,
9966 then the result with variables. This increases the chances of
9967 literals being recombined later and of generating relocatable
9968 expressions for the sum of a constant and literal. */
9969 var0 = split_tree (arg0, code, &con0, &lit0, &minus_lit0, 0);
9970 var1 = split_tree (arg1, code, &con1, &lit1, &minus_lit1,
9971 code == MINUS_EXPR);
9973 /* Recombine MINUS_EXPR operands by using PLUS_EXPR. */
9974 if (code == MINUS_EXPR)
9975 code = PLUS_EXPR;
9977 /* With undefined overflow we can only associate constants with one
9978 variable, and constants whose association doesn't overflow. */
9979 if ((POINTER_TYPE_P (type) && POINTER_TYPE_OVERFLOW_UNDEFINED)
9980 || (INTEGRAL_TYPE_P (type) && !TYPE_OVERFLOW_WRAPS (type)))
9982 if (var0 && var1)
9984 tree tmp0 = var0;
9985 tree tmp1 = var1;
9987 if (TREE_CODE (tmp0) == NEGATE_EXPR)
9988 tmp0 = TREE_OPERAND (tmp0, 0);
9989 if (TREE_CODE (tmp1) == NEGATE_EXPR)
9990 tmp1 = TREE_OPERAND (tmp1, 0);
9991 /* The only case we can still associate with two variables
9992 is if they are the same, modulo negation. */
9993 if (!operand_equal_p (tmp0, tmp1, 0))
9994 ok = false;
9997 if (ok && lit0 && lit1)
9999 tree tmp0 = fold_convert (type, lit0);
10000 tree tmp1 = fold_convert (type, lit1);
10002 if (!TREE_OVERFLOW (tmp0) && !TREE_OVERFLOW (tmp1)
10003 && TREE_OVERFLOW (fold_build2 (code, type, tmp0, tmp1)))
10004 ok = false;
10008 /* Only do something if we found more than two objects. Otherwise,
10009 nothing has changed and we risk infinite recursion. */
10010 if (ok
10011 && (2 < ((var0 != 0) + (var1 != 0)
10012 + (con0 != 0) + (con1 != 0)
10013 + (lit0 != 0) + (lit1 != 0)
10014 + (minus_lit0 != 0) + (minus_lit1 != 0))))
10016 var0 = associate_trees (loc, var0, var1, code, type);
10017 con0 = associate_trees (loc, con0, con1, code, type);
10018 lit0 = associate_trees (loc, lit0, lit1, code, type);
10019 minus_lit0 = associate_trees (loc, minus_lit0, minus_lit1, code, type);
10021 /* Preserve the MINUS_EXPR if the negative part of the literal is
10022 greater than the positive part. Otherwise, the multiplicative
10023 folding code (i.e extract_muldiv) may be fooled in case
10024 unsigned constants are subtracted, like in the following
10025 example: ((X*2 + 4) - 8U)/2. */
10026 if (minus_lit0 && lit0)
10028 if (TREE_CODE (lit0) == INTEGER_CST
10029 && TREE_CODE (minus_lit0) == INTEGER_CST
10030 && tree_int_cst_lt (lit0, minus_lit0))
10032 minus_lit0 = associate_trees (loc, minus_lit0, lit0,
10033 MINUS_EXPR, type);
10034 lit0 = 0;
10036 else
10038 lit0 = associate_trees (loc, lit0, minus_lit0,
10039 MINUS_EXPR, type);
10040 minus_lit0 = 0;
10043 if (minus_lit0)
10045 if (con0 == 0)
10046 return
10047 fold_convert_loc (loc, type,
10048 associate_trees (loc, var0, minus_lit0,
10049 MINUS_EXPR, type));
10050 else
10052 con0 = associate_trees (loc, con0, minus_lit0,
10053 MINUS_EXPR, type);
10054 return
10055 fold_convert_loc (loc, type,
10056 associate_trees (loc, var0, con0,
10057 PLUS_EXPR, type));
10061 con0 = associate_trees (loc, con0, lit0, code, type);
10062 return
10063 fold_convert_loc (loc, type, associate_trees (loc, var0, con0,
10064 code, type));
10068 return NULL_TREE;
10070 case MINUS_EXPR:
10071 /* Pointer simplifications for subtraction, simple reassociations. */
10072 if (POINTER_TYPE_P (TREE_TYPE (arg1)) && POINTER_TYPE_P (TREE_TYPE (arg0)))
10074 /* (PTR0 p+ A) - (PTR1 p+ B) -> (PTR0 - PTR1) + (A - B) */
10075 if (TREE_CODE (arg0) == POINTER_PLUS_EXPR
10076 && TREE_CODE (arg1) == POINTER_PLUS_EXPR)
10078 tree arg00 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
10079 tree arg01 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
10080 tree arg10 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 0));
10081 tree arg11 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1));
10082 return fold_build2_loc (loc, PLUS_EXPR, type,
10083 fold_build2_loc (loc, MINUS_EXPR, type,
10084 arg00, arg10),
10085 fold_build2_loc (loc, MINUS_EXPR, type,
10086 arg01, arg11));
10088 /* (PTR0 p+ A) - PTR1 -> (PTR0 - PTR1) + A, assuming PTR0 - PTR1 simplifies. */
10089 else if (TREE_CODE (arg0) == POINTER_PLUS_EXPR)
10091 tree arg00 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
10092 tree arg01 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
10093 tree tmp = fold_binary_loc (loc, MINUS_EXPR, type, arg00,
10094 fold_convert_loc (loc, type, arg1));
10095 if (tmp)
10096 return fold_build2_loc (loc, PLUS_EXPR, type, tmp, arg01);
10099 /* A - (-B) -> A + B */
10100 if (TREE_CODE (arg1) == NEGATE_EXPR)
10101 return fold_build2_loc (loc, PLUS_EXPR, type, op0,
10102 fold_convert_loc (loc, type,
10103 TREE_OPERAND (arg1, 0)));
10104 /* (-A) - B -> (-B) - A where B is easily negated and we can swap. */
10105 if (TREE_CODE (arg0) == NEGATE_EXPR
10106 && (FLOAT_TYPE_P (type)
10107 || INTEGRAL_TYPE_P (type))
10108 && negate_expr_p (arg1)
10109 && reorder_operands_p (arg0, arg1))
10110 return fold_build2_loc (loc, MINUS_EXPR, type,
10111 fold_convert_loc (loc, type,
10112 negate_expr (arg1)),
10113 fold_convert_loc (loc, type,
10114 TREE_OPERAND (arg0, 0)));
10115 /* Convert -A - 1 to ~A. */
10116 if (INTEGRAL_TYPE_P (type)
10117 && TREE_CODE (arg0) == NEGATE_EXPR
10118 && integer_onep (arg1)
10119 && !TYPE_OVERFLOW_TRAPS (type))
10120 return fold_build1_loc (loc, BIT_NOT_EXPR, type,
10121 fold_convert_loc (loc, type,
10122 TREE_OPERAND (arg0, 0)));
10124 /* Convert -1 - A to ~A. */
10125 if (INTEGRAL_TYPE_P (type)
10126 && integer_all_onesp (arg0))
10127 return fold_build1_loc (loc, BIT_NOT_EXPR, type, op1);
10130 /* X - (X / CST) * CST is X % CST. */
10131 if (INTEGRAL_TYPE_P (type)
10132 && TREE_CODE (arg1) == MULT_EXPR
10133 && TREE_CODE (TREE_OPERAND (arg1, 0)) == TRUNC_DIV_EXPR
10134 && operand_equal_p (arg0,
10135 TREE_OPERAND (TREE_OPERAND (arg1, 0), 0), 0)
10136 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg1, 0), 1),
10137 TREE_OPERAND (arg1, 1), 0))
10138 return
10139 fold_convert_loc (loc, type,
10140 fold_build2_loc (loc, TRUNC_MOD_EXPR, TREE_TYPE (arg0),
10141 arg0, TREE_OPERAND (arg1, 1)));
10143 if (! FLOAT_TYPE_P (type))
10145 if (integer_zerop (arg0))
10146 return negate_expr (fold_convert_loc (loc, type, arg1));
10147 if (integer_zerop (arg1))
10148 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
10150 /* Fold A - (A & B) into ~B & A. */
10151 if (!TREE_SIDE_EFFECTS (arg0)
10152 && TREE_CODE (arg1) == BIT_AND_EXPR)
10154 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0))
10156 tree arg10 = fold_convert_loc (loc, type,
10157 TREE_OPERAND (arg1, 0));
10158 return fold_build2_loc (loc, BIT_AND_EXPR, type,
10159 fold_build1_loc (loc, BIT_NOT_EXPR,
10160 type, arg10),
10161 fold_convert_loc (loc, type, arg0));
10163 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10165 tree arg11 = fold_convert_loc (loc,
10166 type, TREE_OPERAND (arg1, 1));
10167 return fold_build2_loc (loc, BIT_AND_EXPR, type,
10168 fold_build1_loc (loc, BIT_NOT_EXPR,
10169 type, arg11),
10170 fold_convert_loc (loc, type, arg0));
10174 /* Fold (A & ~B) - (A & B) into (A ^ B) - B, where B is
10175 any power of 2 minus 1. */
10176 if (TREE_CODE (arg0) == BIT_AND_EXPR
10177 && TREE_CODE (arg1) == BIT_AND_EXPR
10178 && operand_equal_p (TREE_OPERAND (arg0, 0),
10179 TREE_OPERAND (arg1, 0), 0))
10181 tree mask0 = TREE_OPERAND (arg0, 1);
10182 tree mask1 = TREE_OPERAND (arg1, 1);
10183 tree tem = fold_build1_loc (loc, BIT_NOT_EXPR, type, mask0);
10185 if (operand_equal_p (tem, mask1, 0))
10187 tem = fold_build2_loc (loc, BIT_XOR_EXPR, type,
10188 TREE_OPERAND (arg0, 0), mask1);
10189 return fold_build2_loc (loc, MINUS_EXPR, type, tem, mask1);
10194 /* See if ARG1 is zero and X - ARG1 reduces to X. */
10195 else if (fold_real_zero_addition_p (TREE_TYPE (arg0), arg1, 1))
10196 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
10198 /* (ARG0 - ARG1) is the same as (-ARG1 + ARG0). So check whether
10199 ARG0 is zero and X + ARG0 reduces to X, since that would mean
10200 (-ARG1 + ARG0) reduces to -ARG1. */
10201 else if (fold_real_zero_addition_p (TREE_TYPE (arg1), arg0, 0))
10202 return negate_expr (fold_convert_loc (loc, type, arg1));
10204 /* Fold __complex__ ( x, 0 ) - __complex__ ( 0, y ) to
10205 __complex__ ( x, -y ). This is not the same for SNaNs or if
10206 signed zeros are involved. */
10207 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
10208 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
10209 && COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0)))
10211 tree rtype = TREE_TYPE (TREE_TYPE (arg0));
10212 tree arg0r = fold_unary_loc (loc, REALPART_EXPR, rtype, arg0);
10213 tree arg0i = fold_unary_loc (loc, IMAGPART_EXPR, rtype, arg0);
10214 bool arg0rz = false, arg0iz = false;
10215 if ((arg0r && (arg0rz = real_zerop (arg0r)))
10216 || (arg0i && (arg0iz = real_zerop (arg0i))))
10218 tree arg1r = fold_unary_loc (loc, REALPART_EXPR, rtype, arg1);
10219 tree arg1i = fold_unary_loc (loc, IMAGPART_EXPR, rtype, arg1);
10220 if (arg0rz && arg1i && real_zerop (arg1i))
10222 tree rp = fold_build1_loc (loc, NEGATE_EXPR, rtype,
10223 arg1r ? arg1r
10224 : build1 (REALPART_EXPR, rtype, arg1));
10225 tree ip = arg0i ? arg0i
10226 : build1 (IMAGPART_EXPR, rtype, arg0);
10227 return fold_build2_loc (loc, COMPLEX_EXPR, type, rp, ip);
10229 else if (arg0iz && arg1r && real_zerop (arg1r))
10231 tree rp = arg0r ? arg0r
10232 : build1 (REALPART_EXPR, rtype, arg0);
10233 tree ip = fold_build1_loc (loc, NEGATE_EXPR, rtype,
10234 arg1i ? arg1i
10235 : build1 (IMAGPART_EXPR, rtype, arg1));
10236 return fold_build2_loc (loc, COMPLEX_EXPR, type, rp, ip);
10241 /* Fold &x - &x. This can happen from &x.foo - &x.
10242 This is unsafe for certain floats even in non-IEEE formats.
10243 In IEEE, it is unsafe because it does wrong for NaNs.
10244 Also note that operand_equal_p is always false if an operand
10245 is volatile. */
10247 if ((!FLOAT_TYPE_P (type) || !HONOR_NANS (TYPE_MODE (type)))
10248 && operand_equal_p (arg0, arg1, 0))
10249 return build_zero_cst (type);
10251 /* A - B -> A + (-B) if B is easily negatable. */
10252 if (negate_expr_p (arg1)
10253 && ((FLOAT_TYPE_P (type)
10254 /* Avoid this transformation if B is a positive REAL_CST. */
10255 && (TREE_CODE (arg1) != REAL_CST
10256 || REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1))))
10257 || INTEGRAL_TYPE_P (type)))
10258 return fold_build2_loc (loc, PLUS_EXPR, type,
10259 fold_convert_loc (loc, type, arg0),
10260 fold_convert_loc (loc, type,
10261 negate_expr (arg1)));
10263 /* Try folding difference of addresses. */
10265 HOST_WIDE_INT diff;
10267 if ((TREE_CODE (arg0) == ADDR_EXPR
10268 || TREE_CODE (arg1) == ADDR_EXPR)
10269 && ptr_difference_const (arg0, arg1, &diff))
10270 return build_int_cst_type (type, diff);
10273 /* Fold &a[i] - &a[j] to i-j. */
10274 if (TREE_CODE (arg0) == ADDR_EXPR
10275 && TREE_CODE (TREE_OPERAND (arg0, 0)) == ARRAY_REF
10276 && TREE_CODE (arg1) == ADDR_EXPR
10277 && TREE_CODE (TREE_OPERAND (arg1, 0)) == ARRAY_REF)
10279 tree aref0 = TREE_OPERAND (arg0, 0);
10280 tree aref1 = TREE_OPERAND (arg1, 0);
10281 if (operand_equal_p (TREE_OPERAND (aref0, 0),
10282 TREE_OPERAND (aref1, 0), 0))
10284 tree op0 = fold_convert_loc (loc, type, TREE_OPERAND (aref0, 1));
10285 tree op1 = fold_convert_loc (loc, type, TREE_OPERAND (aref1, 1));
10286 tree esz = array_ref_element_size (aref0);
10287 tree diff = build2 (MINUS_EXPR, type, op0, op1);
10288 return fold_build2_loc (loc, MULT_EXPR, type, diff,
10289 fold_convert_loc (loc, type, esz));
10294 if (FLOAT_TYPE_P (type)
10295 && flag_unsafe_math_optimizations
10296 && (TREE_CODE (arg0) == RDIV_EXPR || TREE_CODE (arg0) == MULT_EXPR)
10297 && (TREE_CODE (arg1) == RDIV_EXPR || TREE_CODE (arg1) == MULT_EXPR)
10298 && (tem = distribute_real_division (loc, code, type, arg0, arg1)))
10299 return tem;
10301 /* Handle (A1 * C1) - (A2 * C2) with A1, A2 or C1, C2 being the
10302 same or one. Make sure type is not saturating.
10303 fold_plusminus_mult_expr will re-associate. */
10304 if ((TREE_CODE (arg0) == MULT_EXPR
10305 || TREE_CODE (arg1) == MULT_EXPR)
10306 && !TYPE_SATURATING (type)
10307 && (!FLOAT_TYPE_P (type) || flag_associative_math))
10309 tree tem = fold_plusminus_mult_expr (loc, code, type, arg0, arg1);
10310 if (tem)
10311 return tem;
10314 goto associate;
10316 case MULT_EXPR:
10317 /* (-A) * (-B) -> A * B */
10318 if (TREE_CODE (arg0) == NEGATE_EXPR && negate_expr_p (arg1))
10319 return fold_build2_loc (loc, MULT_EXPR, type,
10320 fold_convert_loc (loc, type,
10321 TREE_OPERAND (arg0, 0)),
10322 fold_convert_loc (loc, type,
10323 negate_expr (arg1)));
10324 if (TREE_CODE (arg1) == NEGATE_EXPR && negate_expr_p (arg0))
10325 return fold_build2_loc (loc, MULT_EXPR, type,
10326 fold_convert_loc (loc, type,
10327 negate_expr (arg0)),
10328 fold_convert_loc (loc, type,
10329 TREE_OPERAND (arg1, 0)));
10331 if (! FLOAT_TYPE_P (type))
10333 if (integer_zerop (arg1))
10334 return omit_one_operand_loc (loc, type, arg1, arg0);
10335 if (integer_onep (arg1))
10336 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
10337 /* Transform x * -1 into -x. Make sure to do the negation
10338 on the original operand with conversions not stripped
10339 because we can only strip non-sign-changing conversions. */
10340 if (integer_all_onesp (arg1))
10341 return fold_convert_loc (loc, type, negate_expr (op0));
10342 /* Transform x * -C into -x * C if x is easily negatable. */
10343 if (TREE_CODE (arg1) == INTEGER_CST
10344 && tree_int_cst_sgn (arg1) == -1
10345 && negate_expr_p (arg0)
10346 && (tem = negate_expr (arg1)) != arg1
10347 && !TREE_OVERFLOW (tem))
10348 return fold_build2_loc (loc, MULT_EXPR, type,
10349 fold_convert_loc (loc, type,
10350 negate_expr (arg0)),
10351 tem);
10353 /* (a * (1 << b)) is (a << b) */
10354 if (TREE_CODE (arg1) == LSHIFT_EXPR
10355 && integer_onep (TREE_OPERAND (arg1, 0)))
10356 return fold_build2_loc (loc, LSHIFT_EXPR, type, op0,
10357 TREE_OPERAND (arg1, 1));
10358 if (TREE_CODE (arg0) == LSHIFT_EXPR
10359 && integer_onep (TREE_OPERAND (arg0, 0)))
10360 return fold_build2_loc (loc, LSHIFT_EXPR, type, op1,
10361 TREE_OPERAND (arg0, 1));
10363 /* (A + A) * C -> A * 2 * C */
10364 if (TREE_CODE (arg0) == PLUS_EXPR
10365 && TREE_CODE (arg1) == INTEGER_CST
10366 && operand_equal_p (TREE_OPERAND (arg0, 0),
10367 TREE_OPERAND (arg0, 1), 0))
10368 return fold_build2_loc (loc, MULT_EXPR, type,
10369 omit_one_operand_loc (loc, type,
10370 TREE_OPERAND (arg0, 0),
10371 TREE_OPERAND (arg0, 1)),
10372 fold_build2_loc (loc, MULT_EXPR, type,
10373 build_int_cst (type, 2) , arg1));
10375 strict_overflow_p = false;
10376 if (TREE_CODE (arg1) == INTEGER_CST
10377 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE,
10378 &strict_overflow_p)))
10380 if (strict_overflow_p)
10381 fold_overflow_warning (("assuming signed overflow does not "
10382 "occur when simplifying "
10383 "multiplication"),
10384 WARN_STRICT_OVERFLOW_MISC);
10385 return fold_convert_loc (loc, type, tem);
10388 /* Optimize z * conj(z) for integer complex numbers. */
10389 if (TREE_CODE (arg0) == CONJ_EXPR
10390 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10391 return fold_mult_zconjz (loc, type, arg1);
10392 if (TREE_CODE (arg1) == CONJ_EXPR
10393 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10394 return fold_mult_zconjz (loc, type, arg0);
10396 else
10398 /* Maybe fold x * 0 to 0. The expressions aren't the same
10399 when x is NaN, since x * 0 is also NaN. Nor are they the
10400 same in modes with signed zeros, since multiplying a
10401 negative value by 0 gives -0, not +0. */
10402 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
10403 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
10404 && real_zerop (arg1))
10405 return omit_one_operand_loc (loc, type, arg1, arg0);
10406 /* In IEEE floating point, x*1 is not equivalent to x for snans.
10407 Likewise for complex arithmetic with signed zeros. */
10408 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
10409 && (!HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
10410 || !COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0)))
10411 && real_onep (arg1))
10412 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
10414 /* Transform x * -1.0 into -x. */
10415 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
10416 && (!HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
10417 || !COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0)))
10418 && real_minus_onep (arg1))
10419 return fold_convert_loc (loc, type, negate_expr (arg0));
10421 /* Convert (C1/X)*C2 into (C1*C2)/X. This transformation may change
10422 the result for floating point types due to rounding so it is applied
10423 only if -fassociative-math was specify. */
10424 if (flag_associative_math
10425 && TREE_CODE (arg0) == RDIV_EXPR
10426 && TREE_CODE (arg1) == REAL_CST
10427 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST)
10429 tree tem = const_binop (MULT_EXPR, TREE_OPERAND (arg0, 0),
10430 arg1);
10431 if (tem)
10432 return fold_build2_loc (loc, RDIV_EXPR, type, tem,
10433 TREE_OPERAND (arg0, 1));
10436 /* Strip sign operations from X in X*X, i.e. -Y*-Y -> Y*Y. */
10437 if (operand_equal_p (arg0, arg1, 0))
10439 tree tem = fold_strip_sign_ops (arg0);
10440 if (tem != NULL_TREE)
10442 tem = fold_convert_loc (loc, type, tem);
10443 return fold_build2_loc (loc, MULT_EXPR, type, tem, tem);
10447 /* Fold z * +-I to __complex__ (-+__imag z, +-__real z).
10448 This is not the same for NaNs or if signed zeros are
10449 involved. */
10450 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
10451 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg0)))
10452 && COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0))
10453 && TREE_CODE (arg1) == COMPLEX_CST
10454 && real_zerop (TREE_REALPART (arg1)))
10456 tree rtype = TREE_TYPE (TREE_TYPE (arg0));
10457 if (real_onep (TREE_IMAGPART (arg1)))
10458 return
10459 fold_build2_loc (loc, COMPLEX_EXPR, type,
10460 negate_expr (fold_build1_loc (loc, IMAGPART_EXPR,
10461 rtype, arg0)),
10462 fold_build1_loc (loc, REALPART_EXPR, rtype, arg0));
10463 else if (real_minus_onep (TREE_IMAGPART (arg1)))
10464 return
10465 fold_build2_loc (loc, COMPLEX_EXPR, type,
10466 fold_build1_loc (loc, IMAGPART_EXPR, rtype, arg0),
10467 negate_expr (fold_build1_loc (loc, REALPART_EXPR,
10468 rtype, arg0)));
10471 /* Optimize z * conj(z) for floating point complex numbers.
10472 Guarded by flag_unsafe_math_optimizations as non-finite
10473 imaginary components don't produce scalar results. */
10474 if (flag_unsafe_math_optimizations
10475 && TREE_CODE (arg0) == CONJ_EXPR
10476 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10477 return fold_mult_zconjz (loc, type, arg1);
10478 if (flag_unsafe_math_optimizations
10479 && TREE_CODE (arg1) == CONJ_EXPR
10480 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10481 return fold_mult_zconjz (loc, type, arg0);
10483 if (flag_unsafe_math_optimizations)
10485 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
10486 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
10488 /* Optimizations of root(...)*root(...). */
10489 if (fcode0 == fcode1 && BUILTIN_ROOT_P (fcode0))
10491 tree rootfn, arg;
10492 tree arg00 = CALL_EXPR_ARG (arg0, 0);
10493 tree arg10 = CALL_EXPR_ARG (arg1, 0);
10495 /* Optimize sqrt(x)*sqrt(x) as x. */
10496 if (BUILTIN_SQRT_P (fcode0)
10497 && operand_equal_p (arg00, arg10, 0)
10498 && ! HONOR_SNANS (TYPE_MODE (type)))
10499 return arg00;
10501 /* Optimize root(x)*root(y) as root(x*y). */
10502 rootfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10503 arg = fold_build2_loc (loc, MULT_EXPR, type, arg00, arg10);
10504 return build_call_expr_loc (loc, rootfn, 1, arg);
10507 /* Optimize expN(x)*expN(y) as expN(x+y). */
10508 if (fcode0 == fcode1 && BUILTIN_EXPONENT_P (fcode0))
10510 tree expfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10511 tree arg = fold_build2_loc (loc, PLUS_EXPR, type,
10512 CALL_EXPR_ARG (arg0, 0),
10513 CALL_EXPR_ARG (arg1, 0));
10514 return build_call_expr_loc (loc, expfn, 1, arg);
10517 /* Optimizations of pow(...)*pow(...). */
10518 if ((fcode0 == BUILT_IN_POW && fcode1 == BUILT_IN_POW)
10519 || (fcode0 == BUILT_IN_POWF && fcode1 == BUILT_IN_POWF)
10520 || (fcode0 == BUILT_IN_POWL && fcode1 == BUILT_IN_POWL))
10522 tree arg00 = CALL_EXPR_ARG (arg0, 0);
10523 tree arg01 = CALL_EXPR_ARG (arg0, 1);
10524 tree arg10 = CALL_EXPR_ARG (arg1, 0);
10525 tree arg11 = CALL_EXPR_ARG (arg1, 1);
10527 /* Optimize pow(x,y)*pow(z,y) as pow(x*z,y). */
10528 if (operand_equal_p (arg01, arg11, 0))
10530 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10531 tree arg = fold_build2_loc (loc, MULT_EXPR, type,
10532 arg00, arg10);
10533 return build_call_expr_loc (loc, powfn, 2, arg, arg01);
10536 /* Optimize pow(x,y)*pow(x,z) as pow(x,y+z). */
10537 if (operand_equal_p (arg00, arg10, 0))
10539 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10540 tree arg = fold_build2_loc (loc, PLUS_EXPR, type,
10541 arg01, arg11);
10542 return build_call_expr_loc (loc, powfn, 2, arg00, arg);
10546 /* Optimize tan(x)*cos(x) as sin(x). */
10547 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_COS)
10548 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_COSF)
10549 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_COSL)
10550 || (fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_TAN)
10551 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_TANF)
10552 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_TANL))
10553 && operand_equal_p (CALL_EXPR_ARG (arg0, 0),
10554 CALL_EXPR_ARG (arg1, 0), 0))
10556 tree sinfn = mathfn_built_in (type, BUILT_IN_SIN);
10558 if (sinfn != NULL_TREE)
10559 return build_call_expr_loc (loc, sinfn, 1,
10560 CALL_EXPR_ARG (arg0, 0));
10563 /* Optimize x*pow(x,c) as pow(x,c+1). */
10564 if (fcode1 == BUILT_IN_POW
10565 || fcode1 == BUILT_IN_POWF
10566 || fcode1 == BUILT_IN_POWL)
10568 tree arg10 = CALL_EXPR_ARG (arg1, 0);
10569 tree arg11 = CALL_EXPR_ARG (arg1, 1);
10570 if (TREE_CODE (arg11) == REAL_CST
10571 && !TREE_OVERFLOW (arg11)
10572 && operand_equal_p (arg0, arg10, 0))
10574 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
10575 REAL_VALUE_TYPE c;
10576 tree arg;
10578 c = TREE_REAL_CST (arg11);
10579 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
10580 arg = build_real (type, c);
10581 return build_call_expr_loc (loc, powfn, 2, arg0, arg);
10585 /* Optimize pow(x,c)*x as pow(x,c+1). */
10586 if (fcode0 == BUILT_IN_POW
10587 || fcode0 == BUILT_IN_POWF
10588 || fcode0 == BUILT_IN_POWL)
10590 tree arg00 = CALL_EXPR_ARG (arg0, 0);
10591 tree arg01 = CALL_EXPR_ARG (arg0, 1);
10592 if (TREE_CODE (arg01) == REAL_CST
10593 && !TREE_OVERFLOW (arg01)
10594 && operand_equal_p (arg1, arg00, 0))
10596 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10597 REAL_VALUE_TYPE c;
10598 tree arg;
10600 c = TREE_REAL_CST (arg01);
10601 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
10602 arg = build_real (type, c);
10603 return build_call_expr_loc (loc, powfn, 2, arg1, arg);
10607 /* Optimize x*x as pow(x,2.0), which is expanded as x*x. */
10608 if (!in_gimple_form
10609 && optimize_function_for_speed_p (cfun)
10610 && operand_equal_p (arg0, arg1, 0))
10612 tree powfn = mathfn_built_in (type, BUILT_IN_POW);
10614 if (powfn)
10616 tree arg = build_real (type, dconst2);
10617 return build_call_expr_loc (loc, powfn, 2, arg0, arg);
10622 goto associate;
10624 case BIT_IOR_EXPR:
10625 bit_ior:
10626 if (integer_all_onesp (arg1))
10627 return omit_one_operand_loc (loc, type, arg1, arg0);
10628 if (integer_zerop (arg1))
10629 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
10630 if (operand_equal_p (arg0, arg1, 0))
10631 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
10633 /* ~X | X is -1. */
10634 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10635 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10637 t1 = build_zero_cst (type);
10638 t1 = fold_unary_loc (loc, BIT_NOT_EXPR, type, t1);
10639 return omit_one_operand_loc (loc, type, t1, arg1);
10642 /* X | ~X is -1. */
10643 if (TREE_CODE (arg1) == BIT_NOT_EXPR
10644 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10646 t1 = build_zero_cst (type);
10647 t1 = fold_unary_loc (loc, BIT_NOT_EXPR, type, t1);
10648 return omit_one_operand_loc (loc, type, t1, arg0);
10651 /* Canonicalize (X & C1) | C2. */
10652 if (TREE_CODE (arg0) == BIT_AND_EXPR
10653 && TREE_CODE (arg1) == INTEGER_CST
10654 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
10656 unsigned HOST_WIDE_INT hi1, lo1, hi2, lo2, hi3, lo3, mlo, mhi;
10657 int width = TYPE_PRECISION (type), w;
10658 hi1 = TREE_INT_CST_HIGH (TREE_OPERAND (arg0, 1));
10659 lo1 = TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1));
10660 hi2 = TREE_INT_CST_HIGH (arg1);
10661 lo2 = TREE_INT_CST_LOW (arg1);
10663 /* If (C1&C2) == C1, then (X&C1)|C2 becomes (X,C2). */
10664 if ((hi1 & hi2) == hi1 && (lo1 & lo2) == lo1)
10665 return omit_one_operand_loc (loc, type, arg1,
10666 TREE_OPERAND (arg0, 0));
10668 if (width > HOST_BITS_PER_WIDE_INT)
10670 mhi = (unsigned HOST_WIDE_INT) -1
10671 >> (2 * HOST_BITS_PER_WIDE_INT - width);
10672 mlo = -1;
10674 else
10676 mhi = 0;
10677 mlo = (unsigned HOST_WIDE_INT) -1
10678 >> (HOST_BITS_PER_WIDE_INT - width);
10681 /* If (C1|C2) == ~0 then (X&C1)|C2 becomes X|C2. */
10682 if ((~(hi1 | hi2) & mhi) == 0 && (~(lo1 | lo2) & mlo) == 0)
10683 return fold_build2_loc (loc, BIT_IOR_EXPR, type,
10684 TREE_OPERAND (arg0, 0), arg1);
10686 /* Minimize the number of bits set in C1, i.e. C1 := C1 & ~C2,
10687 unless (C1 & ~C2) | (C2 & C3) for some C3 is a mask of some
10688 mode which allows further optimizations. */
10689 hi1 &= mhi;
10690 lo1 &= mlo;
10691 hi2 &= mhi;
10692 lo2 &= mlo;
10693 hi3 = hi1 & ~hi2;
10694 lo3 = lo1 & ~lo2;
10695 for (w = BITS_PER_UNIT;
10696 w <= width && w <= HOST_BITS_PER_WIDE_INT;
10697 w <<= 1)
10699 unsigned HOST_WIDE_INT mask
10700 = (unsigned HOST_WIDE_INT) -1 >> (HOST_BITS_PER_WIDE_INT - w);
10701 if (((lo1 | lo2) & mask) == mask
10702 && (lo1 & ~mask) == 0 && hi1 == 0)
10704 hi3 = 0;
10705 lo3 = mask;
10706 break;
10709 if (hi3 != hi1 || lo3 != lo1)
10710 return fold_build2_loc (loc, BIT_IOR_EXPR, type,
10711 fold_build2_loc (loc, BIT_AND_EXPR, type,
10712 TREE_OPERAND (arg0, 0),
10713 build_int_cst_wide (type,
10714 lo3, hi3)),
10715 arg1);
10718 /* (X & Y) | Y is (X, Y). */
10719 if (TREE_CODE (arg0) == BIT_AND_EXPR
10720 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10721 return omit_one_operand_loc (loc, type, arg1, TREE_OPERAND (arg0, 0));
10722 /* (X & Y) | X is (Y, X). */
10723 if (TREE_CODE (arg0) == BIT_AND_EXPR
10724 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
10725 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
10726 return omit_one_operand_loc (loc, type, arg1, TREE_OPERAND (arg0, 1));
10727 /* X | (X & Y) is (Y, X). */
10728 if (TREE_CODE (arg1) == BIT_AND_EXPR
10729 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0)
10730 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 1)))
10731 return omit_one_operand_loc (loc, type, arg0, TREE_OPERAND (arg1, 1));
10732 /* X | (Y & X) is (Y, X). */
10733 if (TREE_CODE (arg1) == BIT_AND_EXPR
10734 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
10735 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
10736 return omit_one_operand_loc (loc, type, arg0, TREE_OPERAND (arg1, 0));
10738 /* (X & ~Y) | (~X & Y) is X ^ Y */
10739 if (TREE_CODE (arg0) == BIT_AND_EXPR
10740 && TREE_CODE (arg1) == BIT_AND_EXPR)
10742 tree a0, a1, l0, l1, n0, n1;
10744 a0 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 0));
10745 a1 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1));
10747 l0 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
10748 l1 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
10750 n0 = fold_build1_loc (loc, BIT_NOT_EXPR, type, l0);
10751 n1 = fold_build1_loc (loc, BIT_NOT_EXPR, type, l1);
10753 if ((operand_equal_p (n0, a0, 0)
10754 && operand_equal_p (n1, a1, 0))
10755 || (operand_equal_p (n0, a1, 0)
10756 && operand_equal_p (n1, a0, 0)))
10757 return fold_build2_loc (loc, BIT_XOR_EXPR, type, l0, n1);
10760 t1 = distribute_bit_expr (loc, code, type, arg0, arg1);
10761 if (t1 != NULL_TREE)
10762 return t1;
10764 /* Convert (or (not arg0) (not arg1)) to (not (and (arg0) (arg1))).
10766 This results in more efficient code for machines without a NAND
10767 instruction. Combine will canonicalize to the first form
10768 which will allow use of NAND instructions provided by the
10769 backend if they exist. */
10770 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10771 && TREE_CODE (arg1) == BIT_NOT_EXPR)
10773 return
10774 fold_build1_loc (loc, BIT_NOT_EXPR, type,
10775 build2 (BIT_AND_EXPR, type,
10776 fold_convert_loc (loc, type,
10777 TREE_OPERAND (arg0, 0)),
10778 fold_convert_loc (loc, type,
10779 TREE_OPERAND (arg1, 0))));
10782 /* See if this can be simplified into a rotate first. If that
10783 is unsuccessful continue in the association code. */
10784 goto bit_rotate;
10786 case BIT_XOR_EXPR:
10787 if (integer_zerop (arg1))
10788 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
10789 if (integer_all_onesp (arg1))
10790 return fold_build1_loc (loc, BIT_NOT_EXPR, type, op0);
10791 if (operand_equal_p (arg0, arg1, 0))
10792 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
10794 /* ~X ^ X is -1. */
10795 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10796 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10798 t1 = build_zero_cst (type);
10799 t1 = fold_unary_loc (loc, BIT_NOT_EXPR, type, t1);
10800 return omit_one_operand_loc (loc, type, t1, arg1);
10803 /* X ^ ~X is -1. */
10804 if (TREE_CODE (arg1) == BIT_NOT_EXPR
10805 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10807 t1 = build_zero_cst (type);
10808 t1 = fold_unary_loc (loc, BIT_NOT_EXPR, type, t1);
10809 return omit_one_operand_loc (loc, type, t1, arg0);
10812 /* If we are XORing two BIT_AND_EXPR's, both of which are and'ing
10813 with a constant, and the two constants have no bits in common,
10814 we should treat this as a BIT_IOR_EXPR since this may produce more
10815 simplifications. */
10816 if (TREE_CODE (arg0) == BIT_AND_EXPR
10817 && TREE_CODE (arg1) == BIT_AND_EXPR
10818 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
10819 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
10820 && integer_zerop (const_binop (BIT_AND_EXPR,
10821 TREE_OPERAND (arg0, 1),
10822 TREE_OPERAND (arg1, 1))))
10824 code = BIT_IOR_EXPR;
10825 goto bit_ior;
10828 /* (X | Y) ^ X -> Y & ~ X*/
10829 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10830 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10832 tree t2 = TREE_OPERAND (arg0, 1);
10833 t1 = fold_build1_loc (loc, BIT_NOT_EXPR, TREE_TYPE (arg1),
10834 arg1);
10835 t1 = fold_build2_loc (loc, BIT_AND_EXPR, type,
10836 fold_convert_loc (loc, type, t2),
10837 fold_convert_loc (loc, type, t1));
10838 return t1;
10841 /* (Y | X) ^ X -> Y & ~ X*/
10842 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10843 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10845 tree t2 = TREE_OPERAND (arg0, 0);
10846 t1 = fold_build1_loc (loc, BIT_NOT_EXPR, TREE_TYPE (arg1),
10847 arg1);
10848 t1 = fold_build2_loc (loc, BIT_AND_EXPR, type,
10849 fold_convert_loc (loc, type, t2),
10850 fold_convert_loc (loc, type, t1));
10851 return t1;
10854 /* X ^ (X | Y) -> Y & ~ X*/
10855 if (TREE_CODE (arg1) == BIT_IOR_EXPR
10856 && operand_equal_p (TREE_OPERAND (arg1, 0), arg0, 0))
10858 tree t2 = TREE_OPERAND (arg1, 1);
10859 t1 = fold_build1_loc (loc, BIT_NOT_EXPR, TREE_TYPE (arg0),
10860 arg0);
10861 t1 = fold_build2_loc (loc, BIT_AND_EXPR, type,
10862 fold_convert_loc (loc, type, t2),
10863 fold_convert_loc (loc, type, t1));
10864 return t1;
10867 /* X ^ (Y | X) -> Y & ~ X*/
10868 if (TREE_CODE (arg1) == BIT_IOR_EXPR
10869 && operand_equal_p (TREE_OPERAND (arg1, 1), arg0, 0))
10871 tree t2 = TREE_OPERAND (arg1, 0);
10872 t1 = fold_build1_loc (loc, BIT_NOT_EXPR, TREE_TYPE (arg0),
10873 arg0);
10874 t1 = fold_build2_loc (loc, BIT_AND_EXPR, type,
10875 fold_convert_loc (loc, type, t2),
10876 fold_convert_loc (loc, type, t1));
10877 return t1;
10880 /* Convert ~X ^ ~Y to X ^ Y. */
10881 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10882 && TREE_CODE (arg1) == BIT_NOT_EXPR)
10883 return fold_build2_loc (loc, code, type,
10884 fold_convert_loc (loc, type,
10885 TREE_OPERAND (arg0, 0)),
10886 fold_convert_loc (loc, type,
10887 TREE_OPERAND (arg1, 0)));
10889 /* Convert ~X ^ C to X ^ ~C. */
10890 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10891 && TREE_CODE (arg1) == INTEGER_CST)
10892 return fold_build2_loc (loc, code, type,
10893 fold_convert_loc (loc, type,
10894 TREE_OPERAND (arg0, 0)),
10895 fold_build1_loc (loc, BIT_NOT_EXPR, type, arg1));
10897 /* Fold (X & 1) ^ 1 as (X & 1) == 0. */
10898 if (TREE_CODE (arg0) == BIT_AND_EXPR
10899 && integer_onep (TREE_OPERAND (arg0, 1))
10900 && integer_onep (arg1))
10901 return fold_build2_loc (loc, EQ_EXPR, type, arg0,
10902 build_int_cst (TREE_TYPE (arg0), 0));
10904 /* Fold (X & Y) ^ Y as ~X & Y. */
10905 if (TREE_CODE (arg0) == BIT_AND_EXPR
10906 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10908 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
10909 return fold_build2_loc (loc, BIT_AND_EXPR, type,
10910 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
10911 fold_convert_loc (loc, type, arg1));
10913 /* Fold (X & Y) ^ X as ~Y & X. */
10914 if (TREE_CODE (arg0) == BIT_AND_EXPR
10915 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
10916 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
10918 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
10919 return fold_build2_loc (loc, BIT_AND_EXPR, type,
10920 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
10921 fold_convert_loc (loc, type, arg1));
10923 /* Fold X ^ (X & Y) as X & ~Y. */
10924 if (TREE_CODE (arg1) == BIT_AND_EXPR
10925 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10927 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1));
10928 return fold_build2_loc (loc, BIT_AND_EXPR, type,
10929 fold_convert_loc (loc, type, arg0),
10930 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem));
10932 /* Fold X ^ (Y & X) as ~Y & X. */
10933 if (TREE_CODE (arg1) == BIT_AND_EXPR
10934 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
10935 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
10937 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 0));
10938 return fold_build2_loc (loc, BIT_AND_EXPR, type,
10939 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
10940 fold_convert_loc (loc, type, arg0));
10943 /* See if this can be simplified into a rotate first. If that
10944 is unsuccessful continue in the association code. */
10945 goto bit_rotate;
10947 case BIT_AND_EXPR:
10948 if (integer_all_onesp (arg1))
10949 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
10950 if (integer_zerop (arg1))
10951 return omit_one_operand_loc (loc, type, arg1, arg0);
10952 if (operand_equal_p (arg0, arg1, 0))
10953 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
10955 /* ~X & X, (X == 0) & X, and !X & X are always zero. */
10956 if ((TREE_CODE (arg0) == BIT_NOT_EXPR
10957 || TREE_CODE (arg0) == TRUTH_NOT_EXPR
10958 || (TREE_CODE (arg0) == EQ_EXPR
10959 && integer_zerop (TREE_OPERAND (arg0, 1))))
10960 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10961 return omit_one_operand_loc (loc, type, integer_zero_node, arg1);
10963 /* X & ~X , X & (X == 0), and X & !X are always zero. */
10964 if ((TREE_CODE (arg1) == BIT_NOT_EXPR
10965 || TREE_CODE (arg1) == TRUTH_NOT_EXPR
10966 || (TREE_CODE (arg1) == EQ_EXPR
10967 && integer_zerop (TREE_OPERAND (arg1, 1))))
10968 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10969 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
10971 /* Canonicalize (X | C1) & C2 as (X & C2) | (C1 & C2). */
10972 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10973 && TREE_CODE (arg1) == INTEGER_CST
10974 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
10976 tree tmp1 = fold_convert_loc (loc, type, arg1);
10977 tree tmp2 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
10978 tree tmp3 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
10979 tmp2 = fold_build2_loc (loc, BIT_AND_EXPR, type, tmp2, tmp1);
10980 tmp3 = fold_build2_loc (loc, BIT_AND_EXPR, type, tmp3, tmp1);
10981 return
10982 fold_convert_loc (loc, type,
10983 fold_build2_loc (loc, BIT_IOR_EXPR,
10984 type, tmp2, tmp3));
10987 /* (X | Y) & Y is (X, Y). */
10988 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10989 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
10990 return omit_one_operand_loc (loc, type, arg1, TREE_OPERAND (arg0, 0));
10991 /* (X | Y) & X is (Y, X). */
10992 if (TREE_CODE (arg0) == BIT_IOR_EXPR
10993 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
10994 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
10995 return omit_one_operand_loc (loc, type, arg1, TREE_OPERAND (arg0, 1));
10996 /* X & (X | Y) is (Y, X). */
10997 if (TREE_CODE (arg1) == BIT_IOR_EXPR
10998 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0)
10999 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 1)))
11000 return omit_one_operand_loc (loc, type, arg0, TREE_OPERAND (arg1, 1));
11001 /* X & (Y | X) is (Y, X). */
11002 if (TREE_CODE (arg1) == BIT_IOR_EXPR
11003 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
11004 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
11005 return omit_one_operand_loc (loc, type, arg0, TREE_OPERAND (arg1, 0));
11007 /* Fold (X ^ 1) & 1 as (X & 1) == 0. */
11008 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11009 && integer_onep (TREE_OPERAND (arg0, 1))
11010 && integer_onep (arg1))
11012 tem = TREE_OPERAND (arg0, 0);
11013 return fold_build2_loc (loc, EQ_EXPR, type,
11014 fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (tem), tem,
11015 build_int_cst (TREE_TYPE (tem), 1)),
11016 build_int_cst (TREE_TYPE (tem), 0));
11018 /* Fold ~X & 1 as (X & 1) == 0. */
11019 if (TREE_CODE (arg0) == BIT_NOT_EXPR
11020 && integer_onep (arg1))
11022 tem = TREE_OPERAND (arg0, 0);
11023 return fold_build2_loc (loc, EQ_EXPR, type,
11024 fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (tem), tem,
11025 build_int_cst (TREE_TYPE (tem), 1)),
11026 build_int_cst (TREE_TYPE (tem), 0));
11028 /* Fold !X & 1 as X == 0. */
11029 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
11030 && integer_onep (arg1))
11032 tem = TREE_OPERAND (arg0, 0);
11033 return fold_build2_loc (loc, EQ_EXPR, type, tem,
11034 build_int_cst (TREE_TYPE (tem), 0));
11037 /* Fold (X ^ Y) & Y as ~X & Y. */
11038 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11039 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
11041 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
11042 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11043 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
11044 fold_convert_loc (loc, type, arg1));
11046 /* Fold (X ^ Y) & X as ~Y & X. */
11047 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11048 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
11049 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
11051 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
11052 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11053 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
11054 fold_convert_loc (loc, type, arg1));
11056 /* Fold X & (X ^ Y) as X & ~Y. */
11057 if (TREE_CODE (arg1) == BIT_XOR_EXPR
11058 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
11060 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1));
11061 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11062 fold_convert_loc (loc, type, arg0),
11063 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem));
11065 /* Fold X & (Y ^ X) as ~Y & X. */
11066 if (TREE_CODE (arg1) == BIT_XOR_EXPR
11067 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
11068 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
11070 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 0));
11071 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11072 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
11073 fold_convert_loc (loc, type, arg0));
11076 /* For constants M and N, if M == (1LL << cst) - 1 && (N & M) == M,
11077 ((A & N) + B) & M -> (A + B) & M
11078 Similarly if (N & M) == 0,
11079 ((A | N) + B) & M -> (A + B) & M
11080 and for - instead of + (or unary - instead of +)
11081 and/or ^ instead of |.
11082 If B is constant and (B & M) == 0, fold into A & M. */
11083 if (host_integerp (arg1, 1))
11085 unsigned HOST_WIDE_INT cst1 = tree_low_cst (arg1, 1);
11086 if (~cst1 && (cst1 & (cst1 + 1)) == 0
11087 && INTEGRAL_TYPE_P (TREE_TYPE (arg0))
11088 && (TREE_CODE (arg0) == PLUS_EXPR
11089 || TREE_CODE (arg0) == MINUS_EXPR
11090 || TREE_CODE (arg0) == NEGATE_EXPR)
11091 && (TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg0))
11092 || TREE_CODE (TREE_TYPE (arg0)) == INTEGER_TYPE))
11094 tree pmop[2];
11095 int which = 0;
11096 unsigned HOST_WIDE_INT cst0;
11098 /* Now we know that arg0 is (C + D) or (C - D) or
11099 -C and arg1 (M) is == (1LL << cst) - 1.
11100 Store C into PMOP[0] and D into PMOP[1]. */
11101 pmop[0] = TREE_OPERAND (arg0, 0);
11102 pmop[1] = NULL;
11103 if (TREE_CODE (arg0) != NEGATE_EXPR)
11105 pmop[1] = TREE_OPERAND (arg0, 1);
11106 which = 1;
11109 if (!host_integerp (TYPE_MAX_VALUE (TREE_TYPE (arg0)), 1)
11110 || (tree_low_cst (TYPE_MAX_VALUE (TREE_TYPE (arg0)), 1)
11111 & cst1) != cst1)
11112 which = -1;
11114 for (; which >= 0; which--)
11115 switch (TREE_CODE (pmop[which]))
11117 case BIT_AND_EXPR:
11118 case BIT_IOR_EXPR:
11119 case BIT_XOR_EXPR:
11120 if (TREE_CODE (TREE_OPERAND (pmop[which], 1))
11121 != INTEGER_CST)
11122 break;
11123 /* tree_low_cst not used, because we don't care about
11124 the upper bits. */
11125 cst0 = TREE_INT_CST_LOW (TREE_OPERAND (pmop[which], 1));
11126 cst0 &= cst1;
11127 if (TREE_CODE (pmop[which]) == BIT_AND_EXPR)
11129 if (cst0 != cst1)
11130 break;
11132 else if (cst0 != 0)
11133 break;
11134 /* If C or D is of the form (A & N) where
11135 (N & M) == M, or of the form (A | N) or
11136 (A ^ N) where (N & M) == 0, replace it with A. */
11137 pmop[which] = TREE_OPERAND (pmop[which], 0);
11138 break;
11139 case INTEGER_CST:
11140 /* If C or D is a N where (N & M) == 0, it can be
11141 omitted (assumed 0). */
11142 if ((TREE_CODE (arg0) == PLUS_EXPR
11143 || (TREE_CODE (arg0) == MINUS_EXPR && which == 0))
11144 && (TREE_INT_CST_LOW (pmop[which]) & cst1) == 0)
11145 pmop[which] = NULL;
11146 break;
11147 default:
11148 break;
11151 /* Only build anything new if we optimized one or both arguments
11152 above. */
11153 if (pmop[0] != TREE_OPERAND (arg0, 0)
11154 || (TREE_CODE (arg0) != NEGATE_EXPR
11155 && pmop[1] != TREE_OPERAND (arg0, 1)))
11157 tree utype = TREE_TYPE (arg0);
11158 if (! TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg0)))
11160 /* Perform the operations in a type that has defined
11161 overflow behavior. */
11162 utype = unsigned_type_for (TREE_TYPE (arg0));
11163 if (pmop[0] != NULL)
11164 pmop[0] = fold_convert_loc (loc, utype, pmop[0]);
11165 if (pmop[1] != NULL)
11166 pmop[1] = fold_convert_loc (loc, utype, pmop[1]);
11169 if (TREE_CODE (arg0) == NEGATE_EXPR)
11170 tem = fold_build1_loc (loc, NEGATE_EXPR, utype, pmop[0]);
11171 else if (TREE_CODE (arg0) == PLUS_EXPR)
11173 if (pmop[0] != NULL && pmop[1] != NULL)
11174 tem = fold_build2_loc (loc, PLUS_EXPR, utype,
11175 pmop[0], pmop[1]);
11176 else if (pmop[0] != NULL)
11177 tem = pmop[0];
11178 else if (pmop[1] != NULL)
11179 tem = pmop[1];
11180 else
11181 return build_int_cst (type, 0);
11183 else if (pmop[0] == NULL)
11184 tem = fold_build1_loc (loc, NEGATE_EXPR, utype, pmop[1]);
11185 else
11186 tem = fold_build2_loc (loc, MINUS_EXPR, utype,
11187 pmop[0], pmop[1]);
11188 /* TEM is now the new binary +, - or unary - replacement. */
11189 tem = fold_build2_loc (loc, BIT_AND_EXPR, utype, tem,
11190 fold_convert_loc (loc, utype, arg1));
11191 return fold_convert_loc (loc, type, tem);
11196 t1 = distribute_bit_expr (loc, code, type, arg0, arg1);
11197 if (t1 != NULL_TREE)
11198 return t1;
11199 /* Simplify ((int)c & 0377) into (int)c, if c is unsigned char. */
11200 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) == NOP_EXPR
11201 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
11203 unsigned int prec
11204 = TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg0, 0)));
11206 if (prec < BITS_PER_WORD && prec < HOST_BITS_PER_WIDE_INT
11207 && (~TREE_INT_CST_LOW (arg1)
11208 & (((HOST_WIDE_INT) 1 << prec) - 1)) == 0)
11209 return
11210 fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
11213 /* Convert (and (not arg0) (not arg1)) to (not (or (arg0) (arg1))).
11215 This results in more efficient code for machines without a NOR
11216 instruction. Combine will canonicalize to the first form
11217 which will allow use of NOR instructions provided by the
11218 backend if they exist. */
11219 if (TREE_CODE (arg0) == BIT_NOT_EXPR
11220 && TREE_CODE (arg1) == BIT_NOT_EXPR)
11222 return fold_build1_loc (loc, BIT_NOT_EXPR, type,
11223 build2 (BIT_IOR_EXPR, type,
11224 fold_convert_loc (loc, type,
11225 TREE_OPERAND (arg0, 0)),
11226 fold_convert_loc (loc, type,
11227 TREE_OPERAND (arg1, 0))));
11230 /* If arg0 is derived from the address of an object or function, we may
11231 be able to fold this expression using the object or function's
11232 alignment. */
11233 if (POINTER_TYPE_P (TREE_TYPE (arg0)) && host_integerp (arg1, 1))
11235 unsigned HOST_WIDE_INT modulus, residue;
11236 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (arg1);
11238 modulus = get_pointer_modulus_and_residue (arg0, &residue,
11239 integer_onep (arg1));
11241 /* This works because modulus is a power of 2. If this weren't the
11242 case, we'd have to replace it by its greatest power-of-2
11243 divisor: modulus & -modulus. */
11244 if (low < modulus)
11245 return build_int_cst (type, residue & low);
11248 /* Fold (X << C1) & C2 into (X << C1) & (C2 | ((1 << C1) - 1))
11249 (X >> C1) & C2 into (X >> C1) & (C2 | ~((type) -1 >> C1))
11250 if the new mask might be further optimized. */
11251 if ((TREE_CODE (arg0) == LSHIFT_EXPR
11252 || TREE_CODE (arg0) == RSHIFT_EXPR)
11253 && host_integerp (TREE_OPERAND (arg0, 1), 1)
11254 && host_integerp (arg1, TYPE_UNSIGNED (TREE_TYPE (arg1)))
11255 && tree_low_cst (TREE_OPERAND (arg0, 1), 1)
11256 < TYPE_PRECISION (TREE_TYPE (arg0))
11257 && TYPE_PRECISION (TREE_TYPE (arg0)) <= HOST_BITS_PER_WIDE_INT
11258 && tree_low_cst (TREE_OPERAND (arg0, 1), 1) > 0)
11260 unsigned int shiftc = tree_low_cst (TREE_OPERAND (arg0, 1), 1);
11261 unsigned HOST_WIDE_INT mask
11262 = tree_low_cst (arg1, TYPE_UNSIGNED (TREE_TYPE (arg1)));
11263 unsigned HOST_WIDE_INT newmask, zerobits = 0;
11264 tree shift_type = TREE_TYPE (arg0);
11266 if (TREE_CODE (arg0) == LSHIFT_EXPR)
11267 zerobits = ((((unsigned HOST_WIDE_INT) 1) << shiftc) - 1);
11268 else if (TREE_CODE (arg0) == RSHIFT_EXPR
11269 && TYPE_PRECISION (TREE_TYPE (arg0))
11270 == GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (arg0))))
11272 unsigned int prec = TYPE_PRECISION (TREE_TYPE (arg0));
11273 tree arg00 = TREE_OPERAND (arg0, 0);
11274 /* See if more bits can be proven as zero because of
11275 zero extension. */
11276 if (TREE_CODE (arg00) == NOP_EXPR
11277 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg00, 0))))
11279 tree inner_type = TREE_TYPE (TREE_OPERAND (arg00, 0));
11280 if (TYPE_PRECISION (inner_type)
11281 == GET_MODE_BITSIZE (TYPE_MODE (inner_type))
11282 && TYPE_PRECISION (inner_type) < prec)
11284 prec = TYPE_PRECISION (inner_type);
11285 /* See if we can shorten the right shift. */
11286 if (shiftc < prec)
11287 shift_type = inner_type;
11290 zerobits = ~(unsigned HOST_WIDE_INT) 0;
11291 zerobits >>= HOST_BITS_PER_WIDE_INT - shiftc;
11292 zerobits <<= prec - shiftc;
11293 /* For arithmetic shift if sign bit could be set, zerobits
11294 can contain actually sign bits, so no transformation is
11295 possible, unless MASK masks them all away. In that
11296 case the shift needs to be converted into logical shift. */
11297 if (!TYPE_UNSIGNED (TREE_TYPE (arg0))
11298 && prec == TYPE_PRECISION (TREE_TYPE (arg0)))
11300 if ((mask & zerobits) == 0)
11301 shift_type = unsigned_type_for (TREE_TYPE (arg0));
11302 else
11303 zerobits = 0;
11307 /* ((X << 16) & 0xff00) is (X, 0). */
11308 if ((mask & zerobits) == mask)
11309 return omit_one_operand_loc (loc, type,
11310 build_int_cst (type, 0), arg0);
11312 newmask = mask | zerobits;
11313 if (newmask != mask && (newmask & (newmask + 1)) == 0)
11315 unsigned int prec;
11317 /* Only do the transformation if NEWMASK is some integer
11318 mode's mask. */
11319 for (prec = BITS_PER_UNIT;
11320 prec < HOST_BITS_PER_WIDE_INT; prec <<= 1)
11321 if (newmask == (((unsigned HOST_WIDE_INT) 1) << prec) - 1)
11322 break;
11323 if (prec < HOST_BITS_PER_WIDE_INT
11324 || newmask == ~(unsigned HOST_WIDE_INT) 0)
11326 tree newmaskt;
11328 if (shift_type != TREE_TYPE (arg0))
11330 tem = fold_build2_loc (loc, TREE_CODE (arg0), shift_type,
11331 fold_convert_loc (loc, shift_type,
11332 TREE_OPERAND (arg0, 0)),
11333 TREE_OPERAND (arg0, 1));
11334 tem = fold_convert_loc (loc, type, tem);
11336 else
11337 tem = op0;
11338 newmaskt = build_int_cst_type (TREE_TYPE (op1), newmask);
11339 if (!tree_int_cst_equal (newmaskt, arg1))
11340 return fold_build2_loc (loc, BIT_AND_EXPR, type, tem, newmaskt);
11345 goto associate;
11347 case RDIV_EXPR:
11348 /* Don't touch a floating-point divide by zero unless the mode
11349 of the constant can represent infinity. */
11350 if (TREE_CODE (arg1) == REAL_CST
11351 && !MODE_HAS_INFINITIES (TYPE_MODE (TREE_TYPE (arg1)))
11352 && real_zerop (arg1))
11353 return NULL_TREE;
11355 /* Optimize A / A to 1.0 if we don't care about
11356 NaNs or Infinities. Skip the transformation
11357 for non-real operands. */
11358 if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (arg0))
11359 && ! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
11360 && ! HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg0)))
11361 && operand_equal_p (arg0, arg1, 0))
11363 tree r = build_real (TREE_TYPE (arg0), dconst1);
11365 return omit_two_operands_loc (loc, type, r, arg0, arg1);
11368 /* The complex version of the above A / A optimization. */
11369 if (COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0))
11370 && operand_equal_p (arg0, arg1, 0))
11372 tree elem_type = TREE_TYPE (TREE_TYPE (arg0));
11373 if (! HONOR_NANS (TYPE_MODE (elem_type))
11374 && ! HONOR_INFINITIES (TYPE_MODE (elem_type)))
11376 tree r = build_real (elem_type, dconst1);
11377 /* omit_two_operands will call fold_convert for us. */
11378 return omit_two_operands_loc (loc, type, r, arg0, arg1);
11382 /* (-A) / (-B) -> A / B */
11383 if (TREE_CODE (arg0) == NEGATE_EXPR && negate_expr_p (arg1))
11384 return fold_build2_loc (loc, RDIV_EXPR, type,
11385 TREE_OPERAND (arg0, 0),
11386 negate_expr (arg1));
11387 if (TREE_CODE (arg1) == NEGATE_EXPR && negate_expr_p (arg0))
11388 return fold_build2_loc (loc, RDIV_EXPR, type,
11389 negate_expr (arg0),
11390 TREE_OPERAND (arg1, 0));
11392 /* In IEEE floating point, x/1 is not equivalent to x for snans. */
11393 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
11394 && real_onep (arg1))
11395 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
11397 /* In IEEE floating point, x/-1 is not equivalent to -x for snans. */
11398 if (!HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0)))
11399 && real_minus_onep (arg1))
11400 return non_lvalue_loc (loc, fold_convert_loc (loc, type,
11401 negate_expr (arg0)));
11403 /* If ARG1 is a constant, we can convert this to a multiply by the
11404 reciprocal. This does not have the same rounding properties,
11405 so only do this if -freciprocal-math. We can actually
11406 always safely do it if ARG1 is a power of two, but it's hard to
11407 tell if it is or not in a portable manner. */
11408 if (TREE_CODE (arg1) == REAL_CST)
11410 if (flag_reciprocal_math
11411 && 0 != (tem = const_binop (code, build_real (type, dconst1),
11412 arg1)))
11413 return fold_build2_loc (loc, MULT_EXPR, type, arg0, tem);
11414 /* Find the reciprocal if optimizing and the result is exact. */
11415 if (optimize)
11417 REAL_VALUE_TYPE r;
11418 r = TREE_REAL_CST (arg1);
11419 if (exact_real_inverse (TYPE_MODE(TREE_TYPE(arg0)), &r))
11421 tem = build_real (type, r);
11422 return fold_build2_loc (loc, MULT_EXPR, type,
11423 fold_convert_loc (loc, type, arg0), tem);
11427 /* Convert A/B/C to A/(B*C). */
11428 if (flag_reciprocal_math
11429 && TREE_CODE (arg0) == RDIV_EXPR)
11430 return fold_build2_loc (loc, RDIV_EXPR, type, TREE_OPERAND (arg0, 0),
11431 fold_build2_loc (loc, MULT_EXPR, type,
11432 TREE_OPERAND (arg0, 1), arg1));
11434 /* Convert A/(B/C) to (A/B)*C. */
11435 if (flag_reciprocal_math
11436 && TREE_CODE (arg1) == RDIV_EXPR)
11437 return fold_build2_loc (loc, MULT_EXPR, type,
11438 fold_build2_loc (loc, RDIV_EXPR, type, arg0,
11439 TREE_OPERAND (arg1, 0)),
11440 TREE_OPERAND (arg1, 1));
11442 /* Convert C1/(X*C2) into (C1/C2)/X. */
11443 if (flag_reciprocal_math
11444 && TREE_CODE (arg1) == MULT_EXPR
11445 && TREE_CODE (arg0) == REAL_CST
11446 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST)
11448 tree tem = const_binop (RDIV_EXPR, arg0,
11449 TREE_OPERAND (arg1, 1));
11450 if (tem)
11451 return fold_build2_loc (loc, RDIV_EXPR, type, tem,
11452 TREE_OPERAND (arg1, 0));
11455 if (flag_unsafe_math_optimizations)
11457 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
11458 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
11460 /* Optimize sin(x)/cos(x) as tan(x). */
11461 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_COS)
11462 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_COSF)
11463 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_COSL))
11464 && operand_equal_p (CALL_EXPR_ARG (arg0, 0),
11465 CALL_EXPR_ARG (arg1, 0), 0))
11467 tree tanfn = mathfn_built_in (type, BUILT_IN_TAN);
11469 if (tanfn != NULL_TREE)
11470 return build_call_expr_loc (loc, tanfn, 1, CALL_EXPR_ARG (arg0, 0));
11473 /* Optimize cos(x)/sin(x) as 1.0/tan(x). */
11474 if (((fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_SIN)
11475 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_SINF)
11476 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_SINL))
11477 && operand_equal_p (CALL_EXPR_ARG (arg0, 0),
11478 CALL_EXPR_ARG (arg1, 0), 0))
11480 tree tanfn = mathfn_built_in (type, BUILT_IN_TAN);
11482 if (tanfn != NULL_TREE)
11484 tree tmp = build_call_expr_loc (loc, tanfn, 1,
11485 CALL_EXPR_ARG (arg0, 0));
11486 return fold_build2_loc (loc, RDIV_EXPR, type,
11487 build_real (type, dconst1), tmp);
11491 /* Optimize sin(x)/tan(x) as cos(x) if we don't care about
11492 NaNs or Infinities. */
11493 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_TAN)
11494 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_TANF)
11495 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_TANL)))
11497 tree arg00 = CALL_EXPR_ARG (arg0, 0);
11498 tree arg01 = CALL_EXPR_ARG (arg1, 0);
11500 if (! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg00)))
11501 && ! HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg00)))
11502 && operand_equal_p (arg00, arg01, 0))
11504 tree cosfn = mathfn_built_in (type, BUILT_IN_COS);
11506 if (cosfn != NULL_TREE)
11507 return build_call_expr_loc (loc, cosfn, 1, arg00);
11511 /* Optimize tan(x)/sin(x) as 1.0/cos(x) if we don't care about
11512 NaNs or Infinities. */
11513 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_SIN)
11514 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_SINF)
11515 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_SINL)))
11517 tree arg00 = CALL_EXPR_ARG (arg0, 0);
11518 tree arg01 = CALL_EXPR_ARG (arg1, 0);
11520 if (! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg00)))
11521 && ! HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (arg00)))
11522 && operand_equal_p (arg00, arg01, 0))
11524 tree cosfn = mathfn_built_in (type, BUILT_IN_COS);
11526 if (cosfn != NULL_TREE)
11528 tree tmp = build_call_expr_loc (loc, cosfn, 1, arg00);
11529 return fold_build2_loc (loc, RDIV_EXPR, type,
11530 build_real (type, dconst1),
11531 tmp);
11536 /* Optimize pow(x,c)/x as pow(x,c-1). */
11537 if (fcode0 == BUILT_IN_POW
11538 || fcode0 == BUILT_IN_POWF
11539 || fcode0 == BUILT_IN_POWL)
11541 tree arg00 = CALL_EXPR_ARG (arg0, 0);
11542 tree arg01 = CALL_EXPR_ARG (arg0, 1);
11543 if (TREE_CODE (arg01) == REAL_CST
11544 && !TREE_OVERFLOW (arg01)
11545 && operand_equal_p (arg1, arg00, 0))
11547 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
11548 REAL_VALUE_TYPE c;
11549 tree arg;
11551 c = TREE_REAL_CST (arg01);
11552 real_arithmetic (&c, MINUS_EXPR, &c, &dconst1);
11553 arg = build_real (type, c);
11554 return build_call_expr_loc (loc, powfn, 2, arg1, arg);
11558 /* Optimize a/root(b/c) into a*root(c/b). */
11559 if (BUILTIN_ROOT_P (fcode1))
11561 tree rootarg = CALL_EXPR_ARG (arg1, 0);
11563 if (TREE_CODE (rootarg) == RDIV_EXPR)
11565 tree rootfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
11566 tree b = TREE_OPERAND (rootarg, 0);
11567 tree c = TREE_OPERAND (rootarg, 1);
11569 tree tmp = fold_build2_loc (loc, RDIV_EXPR, type, c, b);
11571 tmp = build_call_expr_loc (loc, rootfn, 1, tmp);
11572 return fold_build2_loc (loc, MULT_EXPR, type, arg0, tmp);
11576 /* Optimize x/expN(y) into x*expN(-y). */
11577 if (BUILTIN_EXPONENT_P (fcode1))
11579 tree expfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
11580 tree arg = negate_expr (CALL_EXPR_ARG (arg1, 0));
11581 arg1 = build_call_expr_loc (loc,
11582 expfn, 1,
11583 fold_convert_loc (loc, type, arg));
11584 return fold_build2_loc (loc, MULT_EXPR, type, arg0, arg1);
11587 /* Optimize x/pow(y,z) into x*pow(y,-z). */
11588 if (fcode1 == BUILT_IN_POW
11589 || fcode1 == BUILT_IN_POWF
11590 || fcode1 == BUILT_IN_POWL)
11592 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
11593 tree arg10 = CALL_EXPR_ARG (arg1, 0);
11594 tree arg11 = CALL_EXPR_ARG (arg1, 1);
11595 tree neg11 = fold_convert_loc (loc, type,
11596 negate_expr (arg11));
11597 arg1 = build_call_expr_loc (loc, powfn, 2, arg10, neg11);
11598 return fold_build2_loc (loc, MULT_EXPR, type, arg0, arg1);
11601 return NULL_TREE;
11603 case TRUNC_DIV_EXPR:
11604 /* Optimize (X & (-A)) / A where A is a power of 2,
11605 to X >> log2(A) */
11606 if (TREE_CODE (arg0) == BIT_AND_EXPR
11607 && !TYPE_UNSIGNED (type) && TREE_CODE (arg1) == INTEGER_CST
11608 && integer_pow2p (arg1) && tree_int_cst_sgn (arg1) > 0)
11610 tree sum = fold_binary_loc (loc, PLUS_EXPR, TREE_TYPE (arg1),
11611 arg1, TREE_OPERAND (arg0, 1));
11612 if (sum && integer_zerop (sum)) {
11613 unsigned long pow2;
11615 if (TREE_INT_CST_LOW (arg1))
11616 pow2 = exact_log2 (TREE_INT_CST_LOW (arg1));
11617 else
11618 pow2 = exact_log2 (TREE_INT_CST_HIGH (arg1))
11619 + HOST_BITS_PER_WIDE_INT;
11621 return fold_build2_loc (loc, RSHIFT_EXPR, type,
11622 TREE_OPERAND (arg0, 0),
11623 build_int_cst (integer_type_node, pow2));
11627 /* Fall thru */
11629 case FLOOR_DIV_EXPR:
11630 /* Simplify A / (B << N) where A and B are positive and B is
11631 a power of 2, to A >> (N + log2(B)). */
11632 strict_overflow_p = false;
11633 if (TREE_CODE (arg1) == LSHIFT_EXPR
11634 && (TYPE_UNSIGNED (type)
11635 || tree_expr_nonnegative_warnv_p (op0, &strict_overflow_p)))
11637 tree sval = TREE_OPERAND (arg1, 0);
11638 if (integer_pow2p (sval) && tree_int_cst_sgn (sval) > 0)
11640 tree sh_cnt = TREE_OPERAND (arg1, 1);
11641 unsigned long pow2;
11643 if (TREE_INT_CST_LOW (sval))
11644 pow2 = exact_log2 (TREE_INT_CST_LOW (sval));
11645 else
11646 pow2 = exact_log2 (TREE_INT_CST_HIGH (sval))
11647 + HOST_BITS_PER_WIDE_INT;
11649 if (strict_overflow_p)
11650 fold_overflow_warning (("assuming signed overflow does not "
11651 "occur when simplifying A / (B << N)"),
11652 WARN_STRICT_OVERFLOW_MISC);
11654 sh_cnt = fold_build2_loc (loc, PLUS_EXPR, TREE_TYPE (sh_cnt),
11655 sh_cnt,
11656 build_int_cst (TREE_TYPE (sh_cnt),
11657 pow2));
11658 return fold_build2_loc (loc, RSHIFT_EXPR, type,
11659 fold_convert_loc (loc, type, arg0), sh_cnt);
11663 /* For unsigned integral types, FLOOR_DIV_EXPR is the same as
11664 TRUNC_DIV_EXPR. Rewrite into the latter in this case. */
11665 if (INTEGRAL_TYPE_P (type)
11666 && TYPE_UNSIGNED (type)
11667 && code == FLOOR_DIV_EXPR)
11668 return fold_build2_loc (loc, TRUNC_DIV_EXPR, type, op0, op1);
11670 /* Fall thru */
11672 case ROUND_DIV_EXPR:
11673 case CEIL_DIV_EXPR:
11674 case EXACT_DIV_EXPR:
11675 if (integer_onep (arg1))
11676 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
11677 if (integer_zerop (arg1))
11678 return NULL_TREE;
11679 /* X / -1 is -X. */
11680 if (!TYPE_UNSIGNED (type)
11681 && TREE_CODE (arg1) == INTEGER_CST
11682 && TREE_INT_CST_LOW (arg1) == (unsigned HOST_WIDE_INT) -1
11683 && TREE_INT_CST_HIGH (arg1) == -1)
11684 return fold_convert_loc (loc, type, negate_expr (arg0));
11686 /* Convert -A / -B to A / B when the type is signed and overflow is
11687 undefined. */
11688 if ((!INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_UNDEFINED (type))
11689 && TREE_CODE (arg0) == NEGATE_EXPR
11690 && negate_expr_p (arg1))
11692 if (INTEGRAL_TYPE_P (type))
11693 fold_overflow_warning (("assuming signed overflow does not occur "
11694 "when distributing negation across "
11695 "division"),
11696 WARN_STRICT_OVERFLOW_MISC);
11697 return fold_build2_loc (loc, code, type,
11698 fold_convert_loc (loc, type,
11699 TREE_OPERAND (arg0, 0)),
11700 fold_convert_loc (loc, type,
11701 negate_expr (arg1)));
11703 if ((!INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_UNDEFINED (type))
11704 && TREE_CODE (arg1) == NEGATE_EXPR
11705 && negate_expr_p (arg0))
11707 if (INTEGRAL_TYPE_P (type))
11708 fold_overflow_warning (("assuming signed overflow does not occur "
11709 "when distributing negation across "
11710 "division"),
11711 WARN_STRICT_OVERFLOW_MISC);
11712 return fold_build2_loc (loc, code, type,
11713 fold_convert_loc (loc, type,
11714 negate_expr (arg0)),
11715 fold_convert_loc (loc, type,
11716 TREE_OPERAND (arg1, 0)));
11719 /* If arg0 is a multiple of arg1, then rewrite to the fastest div
11720 operation, EXACT_DIV_EXPR.
11722 Note that only CEIL_DIV_EXPR and FLOOR_DIV_EXPR are rewritten now.
11723 At one time others generated faster code, it's not clear if they do
11724 after the last round to changes to the DIV code in expmed.c. */
11725 if ((code == CEIL_DIV_EXPR || code == FLOOR_DIV_EXPR)
11726 && multiple_of_p (type, arg0, arg1))
11727 return fold_build2_loc (loc, EXACT_DIV_EXPR, type, arg0, arg1);
11729 strict_overflow_p = false;
11730 if (TREE_CODE (arg1) == INTEGER_CST
11731 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE,
11732 &strict_overflow_p)))
11734 if (strict_overflow_p)
11735 fold_overflow_warning (("assuming signed overflow does not occur "
11736 "when simplifying division"),
11737 WARN_STRICT_OVERFLOW_MISC);
11738 return fold_convert_loc (loc, type, tem);
11741 return NULL_TREE;
11743 case CEIL_MOD_EXPR:
11744 case FLOOR_MOD_EXPR:
11745 case ROUND_MOD_EXPR:
11746 case TRUNC_MOD_EXPR:
11747 /* X % 1 is always zero, but be sure to preserve any side
11748 effects in X. */
11749 if (integer_onep (arg1))
11750 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
11752 /* X % 0, return X % 0 unchanged so that we can get the
11753 proper warnings and errors. */
11754 if (integer_zerop (arg1))
11755 return NULL_TREE;
11757 /* 0 % X is always zero, but be sure to preserve any side
11758 effects in X. Place this after checking for X == 0. */
11759 if (integer_zerop (arg0))
11760 return omit_one_operand_loc (loc, type, integer_zero_node, arg1);
11762 /* X % -1 is zero. */
11763 if (!TYPE_UNSIGNED (type)
11764 && TREE_CODE (arg1) == INTEGER_CST
11765 && TREE_INT_CST_LOW (arg1) == (unsigned HOST_WIDE_INT) -1
11766 && TREE_INT_CST_HIGH (arg1) == -1)
11767 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
11769 /* X % -C is the same as X % C. */
11770 if (code == TRUNC_MOD_EXPR
11771 && !TYPE_UNSIGNED (type)
11772 && TREE_CODE (arg1) == INTEGER_CST
11773 && !TREE_OVERFLOW (arg1)
11774 && TREE_INT_CST_HIGH (arg1) < 0
11775 && !TYPE_OVERFLOW_TRAPS (type)
11776 /* Avoid this transformation if C is INT_MIN, i.e. C == -C. */
11777 && !sign_bit_p (arg1, arg1))
11778 return fold_build2_loc (loc, code, type,
11779 fold_convert_loc (loc, type, arg0),
11780 fold_convert_loc (loc, type,
11781 negate_expr (arg1)));
11783 /* X % -Y is the same as X % Y. */
11784 if (code == TRUNC_MOD_EXPR
11785 && !TYPE_UNSIGNED (type)
11786 && TREE_CODE (arg1) == NEGATE_EXPR
11787 && !TYPE_OVERFLOW_TRAPS (type))
11788 return fold_build2_loc (loc, code, type, fold_convert_loc (loc, type, arg0),
11789 fold_convert_loc (loc, type,
11790 TREE_OPERAND (arg1, 0)));
11792 strict_overflow_p = false;
11793 if (TREE_CODE (arg1) == INTEGER_CST
11794 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE,
11795 &strict_overflow_p)))
11797 if (strict_overflow_p)
11798 fold_overflow_warning (("assuming signed overflow does not occur "
11799 "when simplifying modulus"),
11800 WARN_STRICT_OVERFLOW_MISC);
11801 return fold_convert_loc (loc, type, tem);
11804 /* Optimize TRUNC_MOD_EXPR by a power of two into a BIT_AND_EXPR,
11805 i.e. "X % C" into "X & (C - 1)", if X and C are positive. */
11806 if ((code == TRUNC_MOD_EXPR || code == FLOOR_MOD_EXPR)
11807 && (TYPE_UNSIGNED (type)
11808 || tree_expr_nonnegative_warnv_p (op0, &strict_overflow_p)))
11810 tree c = arg1;
11811 /* Also optimize A % (C << N) where C is a power of 2,
11812 to A & ((C << N) - 1). */
11813 if (TREE_CODE (arg1) == LSHIFT_EXPR)
11814 c = TREE_OPERAND (arg1, 0);
11816 if (integer_pow2p (c) && tree_int_cst_sgn (c) > 0)
11818 tree mask
11819 = fold_build2_loc (loc, MINUS_EXPR, TREE_TYPE (arg1), arg1,
11820 build_int_cst (TREE_TYPE (arg1), 1));
11821 if (strict_overflow_p)
11822 fold_overflow_warning (("assuming signed overflow does not "
11823 "occur when simplifying "
11824 "X % (power of two)"),
11825 WARN_STRICT_OVERFLOW_MISC);
11826 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11827 fold_convert_loc (loc, type, arg0),
11828 fold_convert_loc (loc, type, mask));
11832 return NULL_TREE;
11834 case LROTATE_EXPR:
11835 case RROTATE_EXPR:
11836 if (integer_all_onesp (arg0))
11837 return omit_one_operand_loc (loc, type, arg0, arg1);
11838 goto shift;
11840 case RSHIFT_EXPR:
11841 /* Optimize -1 >> x for arithmetic right shifts. */
11842 if (integer_all_onesp (arg0) && !TYPE_UNSIGNED (type)
11843 && tree_expr_nonnegative_p (arg1))
11844 return omit_one_operand_loc (loc, type, arg0, arg1);
11845 /* ... fall through ... */
11847 case LSHIFT_EXPR:
11848 shift:
11849 if (integer_zerop (arg1))
11850 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
11851 if (integer_zerop (arg0))
11852 return omit_one_operand_loc (loc, type, arg0, arg1);
11854 /* Since negative shift count is not well-defined,
11855 don't try to compute it in the compiler. */
11856 if (TREE_CODE (arg1) == INTEGER_CST && tree_int_cst_sgn (arg1) < 0)
11857 return NULL_TREE;
11859 /* Turn (a OP c1) OP c2 into a OP (c1+c2). */
11860 if (TREE_CODE (op0) == code && host_integerp (arg1, false)
11861 && TREE_INT_CST_LOW (arg1) < TYPE_PRECISION (type)
11862 && host_integerp (TREE_OPERAND (arg0, 1), false)
11863 && TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)) < TYPE_PRECISION (type))
11865 HOST_WIDE_INT low = (TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1))
11866 + TREE_INT_CST_LOW (arg1));
11868 /* Deal with a OP (c1 + c2) being undefined but (a OP c1) OP c2
11869 being well defined. */
11870 if (low >= TYPE_PRECISION (type))
11872 if (code == LROTATE_EXPR || code == RROTATE_EXPR)
11873 low = low % TYPE_PRECISION (type);
11874 else if (TYPE_UNSIGNED (type) || code == LSHIFT_EXPR)
11875 return omit_one_operand_loc (loc, type, build_int_cst (type, 0),
11876 TREE_OPERAND (arg0, 0));
11877 else
11878 low = TYPE_PRECISION (type) - 1;
11881 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0),
11882 build_int_cst (type, low));
11885 /* Transform (x >> c) << c into x & (-1<<c), or transform (x << c) >> c
11886 into x & ((unsigned)-1 >> c) for unsigned types. */
11887 if (((code == LSHIFT_EXPR && TREE_CODE (arg0) == RSHIFT_EXPR)
11888 || (TYPE_UNSIGNED (type)
11889 && code == RSHIFT_EXPR && TREE_CODE (arg0) == LSHIFT_EXPR))
11890 && host_integerp (arg1, false)
11891 && TREE_INT_CST_LOW (arg1) < TYPE_PRECISION (type)
11892 && host_integerp (TREE_OPERAND (arg0, 1), false)
11893 && TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)) < TYPE_PRECISION (type))
11895 HOST_WIDE_INT low0 = TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1));
11896 HOST_WIDE_INT low1 = TREE_INT_CST_LOW (arg1);
11897 tree lshift;
11898 tree arg00;
11900 if (low0 == low1)
11902 arg00 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
11904 lshift = build_int_cst (type, -1);
11905 lshift = int_const_binop (code, lshift, arg1);
11907 return fold_build2_loc (loc, BIT_AND_EXPR, type, arg00, lshift);
11911 /* Rewrite an LROTATE_EXPR by a constant into an
11912 RROTATE_EXPR by a new constant. */
11913 if (code == LROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST)
11915 tree tem = build_int_cst (TREE_TYPE (arg1),
11916 TYPE_PRECISION (type));
11917 tem = const_binop (MINUS_EXPR, tem, arg1);
11918 return fold_build2_loc (loc, RROTATE_EXPR, type, op0, tem);
11921 /* If we have a rotate of a bit operation with the rotate count and
11922 the second operand of the bit operation both constant,
11923 permute the two operations. */
11924 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
11925 && (TREE_CODE (arg0) == BIT_AND_EXPR
11926 || TREE_CODE (arg0) == BIT_IOR_EXPR
11927 || TREE_CODE (arg0) == BIT_XOR_EXPR)
11928 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11929 return fold_build2_loc (loc, TREE_CODE (arg0), type,
11930 fold_build2_loc (loc, code, type,
11931 TREE_OPERAND (arg0, 0), arg1),
11932 fold_build2_loc (loc, code, type,
11933 TREE_OPERAND (arg0, 1), arg1));
11935 /* Two consecutive rotates adding up to the precision of the
11936 type can be ignored. */
11937 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
11938 && TREE_CODE (arg0) == RROTATE_EXPR
11939 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
11940 && TREE_INT_CST_HIGH (arg1) == 0
11941 && TREE_INT_CST_HIGH (TREE_OPERAND (arg0, 1)) == 0
11942 && ((TREE_INT_CST_LOW (arg1)
11943 + TREE_INT_CST_LOW (TREE_OPERAND (arg0, 1)))
11944 == (unsigned int) TYPE_PRECISION (type)))
11945 return TREE_OPERAND (arg0, 0);
11947 /* Fold (X & C2) << C1 into (X << C1) & (C2 << C1)
11948 (X & C2) >> C1 into (X >> C1) & (C2 >> C1)
11949 if the latter can be further optimized. */
11950 if ((code == LSHIFT_EXPR || code == RSHIFT_EXPR)
11951 && TREE_CODE (arg0) == BIT_AND_EXPR
11952 && TREE_CODE (arg1) == INTEGER_CST
11953 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11955 tree mask = fold_build2_loc (loc, code, type,
11956 fold_convert_loc (loc, type,
11957 TREE_OPERAND (arg0, 1)),
11958 arg1);
11959 tree shift = fold_build2_loc (loc, code, type,
11960 fold_convert_loc (loc, type,
11961 TREE_OPERAND (arg0, 0)),
11962 arg1);
11963 tem = fold_binary_loc (loc, BIT_AND_EXPR, type, shift, mask);
11964 if (tem)
11965 return tem;
11968 return NULL_TREE;
11970 case MIN_EXPR:
11971 if (operand_equal_p (arg0, arg1, 0))
11972 return omit_one_operand_loc (loc, type, arg0, arg1);
11973 if (INTEGRAL_TYPE_P (type)
11974 && operand_equal_p (arg1, TYPE_MIN_VALUE (type), OEP_ONLY_CONST))
11975 return omit_one_operand_loc (loc, type, arg1, arg0);
11976 tem = fold_minmax (loc, MIN_EXPR, type, arg0, arg1);
11977 if (tem)
11978 return tem;
11979 goto associate;
11981 case MAX_EXPR:
11982 if (operand_equal_p (arg0, arg1, 0))
11983 return omit_one_operand_loc (loc, type, arg0, arg1);
11984 if (INTEGRAL_TYPE_P (type)
11985 && TYPE_MAX_VALUE (type)
11986 && operand_equal_p (arg1, TYPE_MAX_VALUE (type), OEP_ONLY_CONST))
11987 return omit_one_operand_loc (loc, type, arg1, arg0);
11988 tem = fold_minmax (loc, MAX_EXPR, type, arg0, arg1);
11989 if (tem)
11990 return tem;
11991 goto associate;
11993 case TRUTH_ANDIF_EXPR:
11994 /* Note that the operands of this must be ints
11995 and their values must be 0 or 1.
11996 ("true" is a fixed value perhaps depending on the language.) */
11997 /* If first arg is constant zero, return it. */
11998 if (integer_zerop (arg0))
11999 return fold_convert_loc (loc, type, arg0);
12000 case TRUTH_AND_EXPR:
12001 /* If either arg is constant true, drop it. */
12002 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
12003 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
12004 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1)
12005 /* Preserve sequence points. */
12006 && (code != TRUTH_ANDIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
12007 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
12008 /* If second arg is constant zero, result is zero, but first arg
12009 must be evaluated. */
12010 if (integer_zerop (arg1))
12011 return omit_one_operand_loc (loc, type, arg1, arg0);
12012 /* Likewise for first arg, but note that only the TRUTH_AND_EXPR
12013 case will be handled here. */
12014 if (integer_zerop (arg0))
12015 return omit_one_operand_loc (loc, type, arg0, arg1);
12017 /* !X && X is always false. */
12018 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
12019 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
12020 return omit_one_operand_loc (loc, type, integer_zero_node, arg1);
12021 /* X && !X is always false. */
12022 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
12023 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
12024 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
12026 /* A < X && A + 1 > Y ==> A < X && A >= Y. Normally A + 1 > Y
12027 means A >= Y && A != MAX, but in this case we know that
12028 A < X <= MAX. */
12030 if (!TREE_SIDE_EFFECTS (arg0)
12031 && !TREE_SIDE_EFFECTS (arg1))
12033 tem = fold_to_nonsharp_ineq_using_bound (loc, arg0, arg1);
12034 if (tem && !operand_equal_p (tem, arg0, 0))
12035 return fold_build2_loc (loc, code, type, tem, arg1);
12037 tem = fold_to_nonsharp_ineq_using_bound (loc, arg1, arg0);
12038 if (tem && !operand_equal_p (tem, arg1, 0))
12039 return fold_build2_loc (loc, code, type, arg0, tem);
12042 if ((tem = fold_truth_andor (loc, code, type, arg0, arg1, op0, op1))
12043 != NULL_TREE)
12044 return tem;
12046 return NULL_TREE;
12048 case TRUTH_ORIF_EXPR:
12049 /* Note that the operands of this must be ints
12050 and their values must be 0 or true.
12051 ("true" is a fixed value perhaps depending on the language.) */
12052 /* If first arg is constant true, return it. */
12053 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
12054 return fold_convert_loc (loc, type, arg0);
12055 case TRUTH_OR_EXPR:
12056 /* If either arg is constant zero, drop it. */
12057 if (TREE_CODE (arg0) == INTEGER_CST && integer_zerop (arg0))
12058 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
12059 if (TREE_CODE (arg1) == INTEGER_CST && integer_zerop (arg1)
12060 /* Preserve sequence points. */
12061 && (code != TRUTH_ORIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
12062 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
12063 /* If second arg is constant true, result is true, but we must
12064 evaluate first arg. */
12065 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1))
12066 return omit_one_operand_loc (loc, type, arg1, arg0);
12067 /* Likewise for first arg, but note this only occurs here for
12068 TRUTH_OR_EXPR. */
12069 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
12070 return omit_one_operand_loc (loc, type, arg0, arg1);
12072 /* !X || X is always true. */
12073 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
12074 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
12075 return omit_one_operand_loc (loc, type, integer_one_node, arg1);
12076 /* X || !X is always true. */
12077 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
12078 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
12079 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
12081 /* (X && !Y) || (!X && Y) is X ^ Y */
12082 if (TREE_CODE (arg0) == TRUTH_AND_EXPR
12083 && TREE_CODE (arg1) == TRUTH_AND_EXPR)
12085 tree a0, a1, l0, l1, n0, n1;
12087 a0 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 0));
12088 a1 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1));
12090 l0 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
12091 l1 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
12093 n0 = fold_build1_loc (loc, TRUTH_NOT_EXPR, type, l0);
12094 n1 = fold_build1_loc (loc, TRUTH_NOT_EXPR, type, l1);
12096 if ((operand_equal_p (n0, a0, 0)
12097 && operand_equal_p (n1, a1, 0))
12098 || (operand_equal_p (n0, a1, 0)
12099 && operand_equal_p (n1, a0, 0)))
12100 return fold_build2_loc (loc, TRUTH_XOR_EXPR, type, l0, n1);
12103 if ((tem = fold_truth_andor (loc, code, type, arg0, arg1, op0, op1))
12104 != NULL_TREE)
12105 return tem;
12107 return NULL_TREE;
12109 case TRUTH_XOR_EXPR:
12110 /* If the second arg is constant zero, drop it. */
12111 if (integer_zerop (arg1))
12112 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
12113 /* If the second arg is constant true, this is a logical inversion. */
12114 if (integer_onep (arg1))
12116 /* Only call invert_truthvalue if operand is a truth value. */
12117 if (TREE_CODE (TREE_TYPE (arg0)) != BOOLEAN_TYPE)
12118 tem = fold_build1_loc (loc, TRUTH_NOT_EXPR, TREE_TYPE (arg0), arg0);
12119 else
12120 tem = invert_truthvalue_loc (loc, arg0);
12121 return non_lvalue_loc (loc, fold_convert_loc (loc, type, tem));
12123 /* Identical arguments cancel to zero. */
12124 if (operand_equal_p (arg0, arg1, 0))
12125 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
12127 /* !X ^ X is always true. */
12128 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
12129 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
12130 return omit_one_operand_loc (loc, type, integer_one_node, arg1);
12132 /* X ^ !X is always true. */
12133 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
12134 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
12135 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
12137 return NULL_TREE;
12139 case EQ_EXPR:
12140 case NE_EXPR:
12141 STRIP_NOPS (arg0);
12142 STRIP_NOPS (arg1);
12144 tem = fold_comparison (loc, code, type, op0, op1);
12145 if (tem != NULL_TREE)
12146 return tem;
12148 /* bool_var != 0 becomes bool_var. */
12149 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_zerop (arg1)
12150 && code == NE_EXPR)
12151 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
12153 /* bool_var == 1 becomes bool_var. */
12154 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_onep (arg1)
12155 && code == EQ_EXPR)
12156 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
12158 /* bool_var != 1 becomes !bool_var. */
12159 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_onep (arg1)
12160 && code == NE_EXPR)
12161 return fold_convert_loc (loc, type,
12162 fold_build1_loc (loc, TRUTH_NOT_EXPR,
12163 TREE_TYPE (arg0), arg0));
12165 /* bool_var == 0 becomes !bool_var. */
12166 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_zerop (arg1)
12167 && code == EQ_EXPR)
12168 return fold_convert_loc (loc, type,
12169 fold_build1_loc (loc, TRUTH_NOT_EXPR,
12170 TREE_TYPE (arg0), arg0));
12172 /* !exp != 0 becomes !exp */
12173 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR && integer_zerop (arg1)
12174 && code == NE_EXPR)
12175 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
12177 /* If this is an equality comparison of the address of two non-weak,
12178 unaliased symbols neither of which are extern (since we do not
12179 have access to attributes for externs), then we know the result. */
12180 if (TREE_CODE (arg0) == ADDR_EXPR
12181 && VAR_OR_FUNCTION_DECL_P (TREE_OPERAND (arg0, 0))
12182 && ! DECL_WEAK (TREE_OPERAND (arg0, 0))
12183 && ! lookup_attribute ("alias",
12184 DECL_ATTRIBUTES (TREE_OPERAND (arg0, 0)))
12185 && ! DECL_EXTERNAL (TREE_OPERAND (arg0, 0))
12186 && TREE_CODE (arg1) == ADDR_EXPR
12187 && VAR_OR_FUNCTION_DECL_P (TREE_OPERAND (arg1, 0))
12188 && ! DECL_WEAK (TREE_OPERAND (arg1, 0))
12189 && ! lookup_attribute ("alias",
12190 DECL_ATTRIBUTES (TREE_OPERAND (arg1, 0)))
12191 && ! DECL_EXTERNAL (TREE_OPERAND (arg1, 0)))
12193 /* We know that we're looking at the address of two
12194 non-weak, unaliased, static _DECL nodes.
12196 It is both wasteful and incorrect to call operand_equal_p
12197 to compare the two ADDR_EXPR nodes. It is wasteful in that
12198 all we need to do is test pointer equality for the arguments
12199 to the two ADDR_EXPR nodes. It is incorrect to use
12200 operand_equal_p as that function is NOT equivalent to a
12201 C equality test. It can in fact return false for two
12202 objects which would test as equal using the C equality
12203 operator. */
12204 bool equal = TREE_OPERAND (arg0, 0) == TREE_OPERAND (arg1, 0);
12205 return constant_boolean_node (equal
12206 ? code == EQ_EXPR : code != EQ_EXPR,
12207 type);
12210 /* If this is an EQ or NE comparison of a constant with a PLUS_EXPR or
12211 a MINUS_EXPR of a constant, we can convert it into a comparison with
12212 a revised constant as long as no overflow occurs. */
12213 if (TREE_CODE (arg1) == INTEGER_CST
12214 && (TREE_CODE (arg0) == PLUS_EXPR
12215 || TREE_CODE (arg0) == MINUS_EXPR)
12216 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
12217 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
12218 ? MINUS_EXPR : PLUS_EXPR,
12219 fold_convert_loc (loc, TREE_TYPE (arg0),
12220 arg1),
12221 TREE_OPERAND (arg0, 1)))
12222 && !TREE_OVERFLOW (tem))
12223 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0), tem);
12225 /* Similarly for a NEGATE_EXPR. */
12226 if (TREE_CODE (arg0) == NEGATE_EXPR
12227 && TREE_CODE (arg1) == INTEGER_CST
12228 && 0 != (tem = negate_expr (fold_convert_loc (loc, TREE_TYPE (arg0),
12229 arg1)))
12230 && TREE_CODE (tem) == INTEGER_CST
12231 && !TREE_OVERFLOW (tem))
12232 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0), tem);
12234 /* Similarly for a BIT_XOR_EXPR; X ^ C1 == C2 is X == (C1 ^ C2). */
12235 if (TREE_CODE (arg0) == BIT_XOR_EXPR
12236 && TREE_CODE (arg1) == INTEGER_CST
12237 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
12238 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0),
12239 fold_build2_loc (loc, BIT_XOR_EXPR, TREE_TYPE (arg0),
12240 fold_convert_loc (loc,
12241 TREE_TYPE (arg0),
12242 arg1),
12243 TREE_OPERAND (arg0, 1)));
12245 /* Transform comparisons of the form X +- Y CMP X to Y CMP 0. */
12246 if ((TREE_CODE (arg0) == PLUS_EXPR
12247 || TREE_CODE (arg0) == POINTER_PLUS_EXPR
12248 || TREE_CODE (arg0) == MINUS_EXPR)
12249 && operand_equal_p (tree_strip_nop_conversions (TREE_OPERAND (arg0,
12250 0)),
12251 arg1, 0)
12252 && (INTEGRAL_TYPE_P (TREE_TYPE (arg0))
12253 || POINTER_TYPE_P (TREE_TYPE (arg0))))
12255 tree val = TREE_OPERAND (arg0, 1);
12256 return omit_two_operands_loc (loc, type,
12257 fold_build2_loc (loc, code, type,
12258 val,
12259 build_int_cst (TREE_TYPE (val),
12260 0)),
12261 TREE_OPERAND (arg0, 0), arg1);
12264 /* Transform comparisons of the form C - X CMP X if C % 2 == 1. */
12265 if (TREE_CODE (arg0) == MINUS_EXPR
12266 && TREE_CODE (TREE_OPERAND (arg0, 0)) == INTEGER_CST
12267 && operand_equal_p (tree_strip_nop_conversions (TREE_OPERAND (arg0,
12268 1)),
12269 arg1, 0)
12270 && (TREE_INT_CST_LOW (TREE_OPERAND (arg0, 0)) & 1) == 1)
12272 return omit_two_operands_loc (loc, type,
12273 code == NE_EXPR
12274 ? boolean_true_node : boolean_false_node,
12275 TREE_OPERAND (arg0, 1), arg1);
12278 /* If we have X - Y == 0, we can convert that to X == Y and similarly
12279 for !=. Don't do this for ordered comparisons due to overflow. */
12280 if (TREE_CODE (arg0) == MINUS_EXPR
12281 && integer_zerop (arg1))
12282 return fold_build2_loc (loc, code, type,
12283 TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1));
12285 /* Convert ABS_EXPR<x> == 0 or ABS_EXPR<x> != 0 to x == 0 or x != 0. */
12286 if (TREE_CODE (arg0) == ABS_EXPR
12287 && (integer_zerop (arg1) || real_zerop (arg1)))
12288 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0), arg1);
12290 /* If this is an EQ or NE comparison with zero and ARG0 is
12291 (1 << foo) & bar, convert it to (bar >> foo) & 1. Both require
12292 two operations, but the latter can be done in one less insn
12293 on machines that have only two-operand insns or on which a
12294 constant cannot be the first operand. */
12295 if (TREE_CODE (arg0) == BIT_AND_EXPR
12296 && integer_zerop (arg1))
12298 tree arg00 = TREE_OPERAND (arg0, 0);
12299 tree arg01 = TREE_OPERAND (arg0, 1);
12300 if (TREE_CODE (arg00) == LSHIFT_EXPR
12301 && integer_onep (TREE_OPERAND (arg00, 0)))
12303 tree tem = fold_build2_loc (loc, RSHIFT_EXPR, TREE_TYPE (arg00),
12304 arg01, TREE_OPERAND (arg00, 1));
12305 tem = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg0), tem,
12306 build_int_cst (TREE_TYPE (arg0), 1));
12307 return fold_build2_loc (loc, code, type,
12308 fold_convert_loc (loc, TREE_TYPE (arg1), tem),
12309 arg1);
12311 else if (TREE_CODE (arg01) == LSHIFT_EXPR
12312 && integer_onep (TREE_OPERAND (arg01, 0)))
12314 tree tem = fold_build2_loc (loc, RSHIFT_EXPR, TREE_TYPE (arg01),
12315 arg00, TREE_OPERAND (arg01, 1));
12316 tem = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg0), tem,
12317 build_int_cst (TREE_TYPE (arg0), 1));
12318 return fold_build2_loc (loc, code, type,
12319 fold_convert_loc (loc, TREE_TYPE (arg1), tem),
12320 arg1);
12324 /* If this is an NE or EQ comparison of zero against the result of a
12325 signed MOD operation whose second operand is a power of 2, make
12326 the MOD operation unsigned since it is simpler and equivalent. */
12327 if (integer_zerop (arg1)
12328 && !TYPE_UNSIGNED (TREE_TYPE (arg0))
12329 && (TREE_CODE (arg0) == TRUNC_MOD_EXPR
12330 || TREE_CODE (arg0) == CEIL_MOD_EXPR
12331 || TREE_CODE (arg0) == FLOOR_MOD_EXPR
12332 || TREE_CODE (arg0) == ROUND_MOD_EXPR)
12333 && integer_pow2p (TREE_OPERAND (arg0, 1)))
12335 tree newtype = unsigned_type_for (TREE_TYPE (arg0));
12336 tree newmod = fold_build2_loc (loc, TREE_CODE (arg0), newtype,
12337 fold_convert_loc (loc, newtype,
12338 TREE_OPERAND (arg0, 0)),
12339 fold_convert_loc (loc, newtype,
12340 TREE_OPERAND (arg0, 1)));
12342 return fold_build2_loc (loc, code, type, newmod,
12343 fold_convert_loc (loc, newtype, arg1));
12346 /* Fold ((X >> C1) & C2) == 0 and ((X >> C1) & C2) != 0 where
12347 C1 is a valid shift constant, and C2 is a power of two, i.e.
12348 a single bit. */
12349 if (TREE_CODE (arg0) == BIT_AND_EXPR
12350 && TREE_CODE (TREE_OPERAND (arg0, 0)) == RSHIFT_EXPR
12351 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1))
12352 == INTEGER_CST
12353 && integer_pow2p (TREE_OPERAND (arg0, 1))
12354 && integer_zerop (arg1))
12356 tree itype = TREE_TYPE (arg0);
12357 unsigned HOST_WIDE_INT prec = TYPE_PRECISION (itype);
12358 tree arg001 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 1);
12360 /* Check for a valid shift count. */
12361 if (TREE_INT_CST_HIGH (arg001) == 0
12362 && TREE_INT_CST_LOW (arg001) < prec)
12364 tree arg01 = TREE_OPERAND (arg0, 1);
12365 tree arg000 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
12366 unsigned HOST_WIDE_INT log2 = tree_log2 (arg01);
12367 /* If (C2 << C1) doesn't overflow, then ((X >> C1) & C2) != 0
12368 can be rewritten as (X & (C2 << C1)) != 0. */
12369 if ((log2 + TREE_INT_CST_LOW (arg001)) < prec)
12371 tem = fold_build2_loc (loc, LSHIFT_EXPR, itype, arg01, arg001);
12372 tem = fold_build2_loc (loc, BIT_AND_EXPR, itype, arg000, tem);
12373 return fold_build2_loc (loc, code, type, tem,
12374 fold_convert_loc (loc, itype, arg1));
12376 /* Otherwise, for signed (arithmetic) shifts,
12377 ((X >> C1) & C2) != 0 is rewritten as X < 0, and
12378 ((X >> C1) & C2) == 0 is rewritten as X >= 0. */
12379 else if (!TYPE_UNSIGNED (itype))
12380 return fold_build2_loc (loc, code == EQ_EXPR ? GE_EXPR : LT_EXPR, type,
12381 arg000, build_int_cst (itype, 0));
12382 /* Otherwise, of unsigned (logical) shifts,
12383 ((X >> C1) & C2) != 0 is rewritten as (X,false), and
12384 ((X >> C1) & C2) == 0 is rewritten as (X,true). */
12385 else
12386 return omit_one_operand_loc (loc, type,
12387 code == EQ_EXPR ? integer_one_node
12388 : integer_zero_node,
12389 arg000);
12393 /* If we have (A & C) == C where C is a power of 2, convert this into
12394 (A & C) != 0. Similarly for NE_EXPR. */
12395 if (TREE_CODE (arg0) == BIT_AND_EXPR
12396 && integer_pow2p (TREE_OPERAND (arg0, 1))
12397 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
12398 return fold_build2_loc (loc, code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
12399 arg0, fold_convert_loc (loc, TREE_TYPE (arg0),
12400 integer_zero_node));
12402 /* If we have (A & C) != 0 or (A & C) == 0 and C is the sign
12403 bit, then fold the expression into A < 0 or A >= 0. */
12404 tem = fold_single_bit_test_into_sign_test (loc, code, arg0, arg1, type);
12405 if (tem)
12406 return tem;
12408 /* If we have (A & C) == D where D & ~C != 0, convert this into 0.
12409 Similarly for NE_EXPR. */
12410 if (TREE_CODE (arg0) == BIT_AND_EXPR
12411 && TREE_CODE (arg1) == INTEGER_CST
12412 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
12414 tree notc = fold_build1_loc (loc, BIT_NOT_EXPR,
12415 TREE_TYPE (TREE_OPERAND (arg0, 1)),
12416 TREE_OPERAND (arg0, 1));
12417 tree dandnotc
12418 = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg0),
12419 fold_convert_loc (loc, TREE_TYPE (arg0), arg1),
12420 notc);
12421 tree rslt = code == EQ_EXPR ? integer_zero_node : integer_one_node;
12422 if (integer_nonzerop (dandnotc))
12423 return omit_one_operand_loc (loc, type, rslt, arg0);
12426 /* If we have (A | C) == D where C & ~D != 0, convert this into 0.
12427 Similarly for NE_EXPR. */
12428 if (TREE_CODE (arg0) == BIT_IOR_EXPR
12429 && TREE_CODE (arg1) == INTEGER_CST
12430 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
12432 tree notd = fold_build1_loc (loc, BIT_NOT_EXPR, TREE_TYPE (arg1), arg1);
12433 tree candnotd
12434 = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg0),
12435 TREE_OPERAND (arg0, 1),
12436 fold_convert_loc (loc, TREE_TYPE (arg0), notd));
12437 tree rslt = code == EQ_EXPR ? integer_zero_node : integer_one_node;
12438 if (integer_nonzerop (candnotd))
12439 return omit_one_operand_loc (loc, type, rslt, arg0);
12442 /* If this is a comparison of a field, we may be able to simplify it. */
12443 if ((TREE_CODE (arg0) == COMPONENT_REF
12444 || TREE_CODE (arg0) == BIT_FIELD_REF)
12445 /* Handle the constant case even without -O
12446 to make sure the warnings are given. */
12447 && (optimize || TREE_CODE (arg1) == INTEGER_CST))
12449 t1 = optimize_bit_field_compare (loc, code, type, arg0, arg1);
12450 if (t1)
12451 return t1;
12454 /* Optimize comparisons of strlen vs zero to a compare of the
12455 first character of the string vs zero. To wit,
12456 strlen(ptr) == 0 => *ptr == 0
12457 strlen(ptr) != 0 => *ptr != 0
12458 Other cases should reduce to one of these two (or a constant)
12459 due to the return value of strlen being unsigned. */
12460 if (TREE_CODE (arg0) == CALL_EXPR
12461 && integer_zerop (arg1))
12463 tree fndecl = get_callee_fndecl (arg0);
12465 if (fndecl
12466 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
12467 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STRLEN
12468 && call_expr_nargs (arg0) == 1
12469 && TREE_CODE (TREE_TYPE (CALL_EXPR_ARG (arg0, 0))) == POINTER_TYPE)
12471 tree iref = build_fold_indirect_ref_loc (loc,
12472 CALL_EXPR_ARG (arg0, 0));
12473 return fold_build2_loc (loc, code, type, iref,
12474 build_int_cst (TREE_TYPE (iref), 0));
12478 /* Fold (X >> C) != 0 into X < 0 if C is one less than the width
12479 of X. Similarly fold (X >> C) == 0 into X >= 0. */
12480 if (TREE_CODE (arg0) == RSHIFT_EXPR
12481 && integer_zerop (arg1)
12482 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
12484 tree arg00 = TREE_OPERAND (arg0, 0);
12485 tree arg01 = TREE_OPERAND (arg0, 1);
12486 tree itype = TREE_TYPE (arg00);
12487 if (TREE_INT_CST_HIGH (arg01) == 0
12488 && TREE_INT_CST_LOW (arg01)
12489 == (unsigned HOST_WIDE_INT) (TYPE_PRECISION (itype) - 1))
12491 if (TYPE_UNSIGNED (itype))
12493 itype = signed_type_for (itype);
12494 arg00 = fold_convert_loc (loc, itype, arg00);
12496 return fold_build2_loc (loc, code == EQ_EXPR ? GE_EXPR : LT_EXPR,
12497 type, arg00, build_int_cst (itype, 0));
12501 /* (X ^ Y) == 0 becomes X == Y, and (X ^ Y) != 0 becomes X != Y. */
12502 if (integer_zerop (arg1)
12503 && TREE_CODE (arg0) == BIT_XOR_EXPR)
12504 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0),
12505 TREE_OPERAND (arg0, 1));
12507 /* (X ^ Y) == Y becomes X == 0. We know that Y has no side-effects. */
12508 if (TREE_CODE (arg0) == BIT_XOR_EXPR
12509 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
12510 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0),
12511 build_int_cst (TREE_TYPE (arg0), 0));
12512 /* Likewise (X ^ Y) == X becomes Y == 0. X has no side-effects. */
12513 if (TREE_CODE (arg0) == BIT_XOR_EXPR
12514 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
12515 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
12516 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 1),
12517 build_int_cst (TREE_TYPE (arg0), 0));
12519 /* (X ^ C1) op C2 can be rewritten as X op (C1 ^ C2). */
12520 if (TREE_CODE (arg0) == BIT_XOR_EXPR
12521 && TREE_CODE (arg1) == INTEGER_CST
12522 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
12523 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0),
12524 fold_build2_loc (loc, BIT_XOR_EXPR, TREE_TYPE (arg1),
12525 TREE_OPERAND (arg0, 1), arg1));
12527 /* Fold (~X & C) == 0 into (X & C) != 0 and (~X & C) != 0 into
12528 (X & C) == 0 when C is a single bit. */
12529 if (TREE_CODE (arg0) == BIT_AND_EXPR
12530 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_NOT_EXPR
12531 && integer_zerop (arg1)
12532 && integer_pow2p (TREE_OPERAND (arg0, 1)))
12534 tem = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg0),
12535 TREE_OPERAND (TREE_OPERAND (arg0, 0), 0),
12536 TREE_OPERAND (arg0, 1));
12537 return fold_build2_loc (loc, code == EQ_EXPR ? NE_EXPR : EQ_EXPR,
12538 type, tem,
12539 fold_convert_loc (loc, TREE_TYPE (arg0),
12540 arg1));
12543 /* Fold ((X & C) ^ C) eq/ne 0 into (X & C) ne/eq 0, when the
12544 constant C is a power of two, i.e. a single bit. */
12545 if (TREE_CODE (arg0) == BIT_XOR_EXPR
12546 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
12547 && integer_zerop (arg1)
12548 && integer_pow2p (TREE_OPERAND (arg0, 1))
12549 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
12550 TREE_OPERAND (arg0, 1), OEP_ONLY_CONST))
12552 tree arg00 = TREE_OPERAND (arg0, 0);
12553 return fold_build2_loc (loc, code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
12554 arg00, build_int_cst (TREE_TYPE (arg00), 0));
12557 /* Likewise, fold ((X ^ C) & C) eq/ne 0 into (X & C) ne/eq 0,
12558 when is C is a power of two, i.e. a single bit. */
12559 if (TREE_CODE (arg0) == BIT_AND_EXPR
12560 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_XOR_EXPR
12561 && integer_zerop (arg1)
12562 && integer_pow2p (TREE_OPERAND (arg0, 1))
12563 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
12564 TREE_OPERAND (arg0, 1), OEP_ONLY_CONST))
12566 tree arg000 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
12567 tem = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg000),
12568 arg000, TREE_OPERAND (arg0, 1));
12569 return fold_build2_loc (loc, code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
12570 tem, build_int_cst (TREE_TYPE (tem), 0));
12573 if (integer_zerop (arg1)
12574 && tree_expr_nonzero_p (arg0))
12576 tree res = constant_boolean_node (code==NE_EXPR, type);
12577 return omit_one_operand_loc (loc, type, res, arg0);
12580 /* Fold -X op -Y as X op Y, where op is eq/ne. */
12581 if (TREE_CODE (arg0) == NEGATE_EXPR
12582 && TREE_CODE (arg1) == NEGATE_EXPR)
12583 return fold_build2_loc (loc, code, type,
12584 TREE_OPERAND (arg0, 0),
12585 fold_convert_loc (loc, TREE_TYPE (arg0),
12586 TREE_OPERAND (arg1, 0)));
12588 /* Fold (X & C) op (Y & C) as (X ^ Y) & C op 0", and symmetries. */
12589 if (TREE_CODE (arg0) == BIT_AND_EXPR
12590 && TREE_CODE (arg1) == BIT_AND_EXPR)
12592 tree arg00 = TREE_OPERAND (arg0, 0);
12593 tree arg01 = TREE_OPERAND (arg0, 1);
12594 tree arg10 = TREE_OPERAND (arg1, 0);
12595 tree arg11 = TREE_OPERAND (arg1, 1);
12596 tree itype = TREE_TYPE (arg0);
12598 if (operand_equal_p (arg01, arg11, 0))
12599 return fold_build2_loc (loc, code, type,
12600 fold_build2_loc (loc, BIT_AND_EXPR, itype,
12601 fold_build2_loc (loc,
12602 BIT_XOR_EXPR, itype,
12603 arg00, arg10),
12604 arg01),
12605 build_int_cst (itype, 0));
12607 if (operand_equal_p (arg01, arg10, 0))
12608 return fold_build2_loc (loc, code, type,
12609 fold_build2_loc (loc, BIT_AND_EXPR, itype,
12610 fold_build2_loc (loc,
12611 BIT_XOR_EXPR, itype,
12612 arg00, arg11),
12613 arg01),
12614 build_int_cst (itype, 0));
12616 if (operand_equal_p (arg00, arg11, 0))
12617 return fold_build2_loc (loc, code, type,
12618 fold_build2_loc (loc, BIT_AND_EXPR, itype,
12619 fold_build2_loc (loc,
12620 BIT_XOR_EXPR, itype,
12621 arg01, arg10),
12622 arg00),
12623 build_int_cst (itype, 0));
12625 if (operand_equal_p (arg00, arg10, 0))
12626 return fold_build2_loc (loc, code, type,
12627 fold_build2_loc (loc, BIT_AND_EXPR, itype,
12628 fold_build2_loc (loc,
12629 BIT_XOR_EXPR, itype,
12630 arg01, arg11),
12631 arg00),
12632 build_int_cst (itype, 0));
12635 if (TREE_CODE (arg0) == BIT_XOR_EXPR
12636 && TREE_CODE (arg1) == BIT_XOR_EXPR)
12638 tree arg00 = TREE_OPERAND (arg0, 0);
12639 tree arg01 = TREE_OPERAND (arg0, 1);
12640 tree arg10 = TREE_OPERAND (arg1, 0);
12641 tree arg11 = TREE_OPERAND (arg1, 1);
12642 tree itype = TREE_TYPE (arg0);
12644 /* Optimize (X ^ Z) op (Y ^ Z) as X op Y, and symmetries.
12645 operand_equal_p guarantees no side-effects so we don't need
12646 to use omit_one_operand on Z. */
12647 if (operand_equal_p (arg01, arg11, 0))
12648 return fold_build2_loc (loc, code, type, arg00,
12649 fold_convert_loc (loc, TREE_TYPE (arg00),
12650 arg10));
12651 if (operand_equal_p (arg01, arg10, 0))
12652 return fold_build2_loc (loc, code, type, arg00,
12653 fold_convert_loc (loc, TREE_TYPE (arg00),
12654 arg11));
12655 if (operand_equal_p (arg00, arg11, 0))
12656 return fold_build2_loc (loc, code, type, arg01,
12657 fold_convert_loc (loc, TREE_TYPE (arg01),
12658 arg10));
12659 if (operand_equal_p (arg00, arg10, 0))
12660 return fold_build2_loc (loc, code, type, arg01,
12661 fold_convert_loc (loc, TREE_TYPE (arg01),
12662 arg11));
12664 /* Optimize (X ^ C1) op (Y ^ C2) as (X ^ (C1 ^ C2)) op Y. */
12665 if (TREE_CODE (arg01) == INTEGER_CST
12666 && TREE_CODE (arg11) == INTEGER_CST)
12668 tem = fold_build2_loc (loc, BIT_XOR_EXPR, itype, arg01,
12669 fold_convert_loc (loc, itype, arg11));
12670 tem = fold_build2_loc (loc, BIT_XOR_EXPR, itype, arg00, tem);
12671 return fold_build2_loc (loc, code, type, tem,
12672 fold_convert_loc (loc, itype, arg10));
12676 /* Attempt to simplify equality/inequality comparisons of complex
12677 values. Only lower the comparison if the result is known or
12678 can be simplified to a single scalar comparison. */
12679 if ((TREE_CODE (arg0) == COMPLEX_EXPR
12680 || TREE_CODE (arg0) == COMPLEX_CST)
12681 && (TREE_CODE (arg1) == COMPLEX_EXPR
12682 || TREE_CODE (arg1) == COMPLEX_CST))
12684 tree real0, imag0, real1, imag1;
12685 tree rcond, icond;
12687 if (TREE_CODE (arg0) == COMPLEX_EXPR)
12689 real0 = TREE_OPERAND (arg0, 0);
12690 imag0 = TREE_OPERAND (arg0, 1);
12692 else
12694 real0 = TREE_REALPART (arg0);
12695 imag0 = TREE_IMAGPART (arg0);
12698 if (TREE_CODE (arg1) == COMPLEX_EXPR)
12700 real1 = TREE_OPERAND (arg1, 0);
12701 imag1 = TREE_OPERAND (arg1, 1);
12703 else
12705 real1 = TREE_REALPART (arg1);
12706 imag1 = TREE_IMAGPART (arg1);
12709 rcond = fold_binary_loc (loc, code, type, real0, real1);
12710 if (rcond && TREE_CODE (rcond) == INTEGER_CST)
12712 if (integer_zerop (rcond))
12714 if (code == EQ_EXPR)
12715 return omit_two_operands_loc (loc, type, boolean_false_node,
12716 imag0, imag1);
12717 return fold_build2_loc (loc, NE_EXPR, type, imag0, imag1);
12719 else
12721 if (code == NE_EXPR)
12722 return omit_two_operands_loc (loc, type, boolean_true_node,
12723 imag0, imag1);
12724 return fold_build2_loc (loc, EQ_EXPR, type, imag0, imag1);
12728 icond = fold_binary_loc (loc, code, type, imag0, imag1);
12729 if (icond && TREE_CODE (icond) == INTEGER_CST)
12731 if (integer_zerop (icond))
12733 if (code == EQ_EXPR)
12734 return omit_two_operands_loc (loc, type, boolean_false_node,
12735 real0, real1);
12736 return fold_build2_loc (loc, NE_EXPR, type, real0, real1);
12738 else
12740 if (code == NE_EXPR)
12741 return omit_two_operands_loc (loc, type, boolean_true_node,
12742 real0, real1);
12743 return fold_build2_loc (loc, EQ_EXPR, type, real0, real1);
12748 return NULL_TREE;
12750 case LT_EXPR:
12751 case GT_EXPR:
12752 case LE_EXPR:
12753 case GE_EXPR:
12754 tem = fold_comparison (loc, code, type, op0, op1);
12755 if (tem != NULL_TREE)
12756 return tem;
12758 /* Transform comparisons of the form X +- C CMP X. */
12759 if ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
12760 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
12761 && ((TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
12762 && !HONOR_SNANS (TYPE_MODE (TREE_TYPE (arg0))))
12763 || (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
12764 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))))
12766 tree arg01 = TREE_OPERAND (arg0, 1);
12767 enum tree_code code0 = TREE_CODE (arg0);
12768 int is_positive;
12770 if (TREE_CODE (arg01) == REAL_CST)
12771 is_positive = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg01)) ? -1 : 1;
12772 else
12773 is_positive = tree_int_cst_sgn (arg01);
12775 /* (X - c) > X becomes false. */
12776 if (code == GT_EXPR
12777 && ((code0 == MINUS_EXPR && is_positive >= 0)
12778 || (code0 == PLUS_EXPR && is_positive <= 0)))
12780 if (TREE_CODE (arg01) == INTEGER_CST
12781 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12782 fold_overflow_warning (("assuming signed overflow does not "
12783 "occur when assuming that (X - c) > X "
12784 "is always false"),
12785 WARN_STRICT_OVERFLOW_ALL);
12786 return constant_boolean_node (0, type);
12789 /* Likewise (X + c) < X becomes false. */
12790 if (code == LT_EXPR
12791 && ((code0 == PLUS_EXPR && is_positive >= 0)
12792 || (code0 == MINUS_EXPR && is_positive <= 0)))
12794 if (TREE_CODE (arg01) == INTEGER_CST
12795 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12796 fold_overflow_warning (("assuming signed overflow does not "
12797 "occur when assuming that "
12798 "(X + c) < X is always false"),
12799 WARN_STRICT_OVERFLOW_ALL);
12800 return constant_boolean_node (0, type);
12803 /* Convert (X - c) <= X to true. */
12804 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1)))
12805 && code == LE_EXPR
12806 && ((code0 == MINUS_EXPR && is_positive >= 0)
12807 || (code0 == PLUS_EXPR && is_positive <= 0)))
12809 if (TREE_CODE (arg01) == INTEGER_CST
12810 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12811 fold_overflow_warning (("assuming signed overflow does not "
12812 "occur when assuming that "
12813 "(X - c) <= X is always true"),
12814 WARN_STRICT_OVERFLOW_ALL);
12815 return constant_boolean_node (1, type);
12818 /* Convert (X + c) >= X to true. */
12819 if (!HONOR_NANS (TYPE_MODE (TREE_TYPE (arg1)))
12820 && code == GE_EXPR
12821 && ((code0 == PLUS_EXPR && is_positive >= 0)
12822 || (code0 == MINUS_EXPR && is_positive <= 0)))
12824 if (TREE_CODE (arg01) == INTEGER_CST
12825 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12826 fold_overflow_warning (("assuming signed overflow does not "
12827 "occur when assuming that "
12828 "(X + c) >= X is always true"),
12829 WARN_STRICT_OVERFLOW_ALL);
12830 return constant_boolean_node (1, type);
12833 if (TREE_CODE (arg01) == INTEGER_CST)
12835 /* Convert X + c > X and X - c < X to true for integers. */
12836 if (code == GT_EXPR
12837 && ((code0 == PLUS_EXPR && is_positive > 0)
12838 || (code0 == MINUS_EXPR && is_positive < 0)))
12840 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12841 fold_overflow_warning (("assuming signed overflow does "
12842 "not occur when assuming that "
12843 "(X + c) > X is always true"),
12844 WARN_STRICT_OVERFLOW_ALL);
12845 return constant_boolean_node (1, type);
12848 if (code == LT_EXPR
12849 && ((code0 == MINUS_EXPR && is_positive > 0)
12850 || (code0 == PLUS_EXPR && is_positive < 0)))
12852 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12853 fold_overflow_warning (("assuming signed overflow does "
12854 "not occur when assuming that "
12855 "(X - c) < X is always true"),
12856 WARN_STRICT_OVERFLOW_ALL);
12857 return constant_boolean_node (1, type);
12860 /* Convert X + c <= X and X - c >= X to false for integers. */
12861 if (code == LE_EXPR
12862 && ((code0 == PLUS_EXPR && is_positive > 0)
12863 || (code0 == MINUS_EXPR && is_positive < 0)))
12865 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12866 fold_overflow_warning (("assuming signed overflow does "
12867 "not occur when assuming that "
12868 "(X + c) <= X is always false"),
12869 WARN_STRICT_OVERFLOW_ALL);
12870 return constant_boolean_node (0, type);
12873 if (code == GE_EXPR
12874 && ((code0 == MINUS_EXPR && is_positive > 0)
12875 || (code0 == PLUS_EXPR && is_positive < 0)))
12877 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12878 fold_overflow_warning (("assuming signed overflow does "
12879 "not occur when assuming that "
12880 "(X - c) >= X is always false"),
12881 WARN_STRICT_OVERFLOW_ALL);
12882 return constant_boolean_node (0, type);
12887 /* Comparisons with the highest or lowest possible integer of
12888 the specified precision will have known values. */
12890 tree arg1_type = TREE_TYPE (arg1);
12891 unsigned int width = TYPE_PRECISION (arg1_type);
12893 if (TREE_CODE (arg1) == INTEGER_CST
12894 && width <= 2 * HOST_BITS_PER_WIDE_INT
12895 && (INTEGRAL_TYPE_P (arg1_type) || POINTER_TYPE_P (arg1_type)))
12897 HOST_WIDE_INT signed_max_hi;
12898 unsigned HOST_WIDE_INT signed_max_lo;
12899 unsigned HOST_WIDE_INT max_hi, max_lo, min_hi, min_lo;
12901 if (width <= HOST_BITS_PER_WIDE_INT)
12903 signed_max_lo = ((unsigned HOST_WIDE_INT) 1 << (width - 1))
12904 - 1;
12905 signed_max_hi = 0;
12906 max_hi = 0;
12908 if (TYPE_UNSIGNED (arg1_type))
12910 max_lo = ((unsigned HOST_WIDE_INT) 2 << (width - 1)) - 1;
12911 min_lo = 0;
12912 min_hi = 0;
12914 else
12916 max_lo = signed_max_lo;
12917 min_lo = ((unsigned HOST_WIDE_INT) -1 << (width - 1));
12918 min_hi = -1;
12921 else
12923 width -= HOST_BITS_PER_WIDE_INT;
12924 signed_max_lo = -1;
12925 signed_max_hi = ((unsigned HOST_WIDE_INT) 1 << (width - 1))
12926 - 1;
12927 max_lo = -1;
12928 min_lo = 0;
12930 if (TYPE_UNSIGNED (arg1_type))
12932 max_hi = ((unsigned HOST_WIDE_INT) 2 << (width - 1)) - 1;
12933 min_hi = 0;
12935 else
12937 max_hi = signed_max_hi;
12938 min_hi = ((unsigned HOST_WIDE_INT) -1 << (width - 1));
12942 if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1) == max_hi
12943 && TREE_INT_CST_LOW (arg1) == max_lo)
12944 switch (code)
12946 case GT_EXPR:
12947 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
12949 case GE_EXPR:
12950 return fold_build2_loc (loc, EQ_EXPR, type, op0, op1);
12952 case LE_EXPR:
12953 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
12955 case LT_EXPR:
12956 return fold_build2_loc (loc, NE_EXPR, type, op0, op1);
12958 /* The GE_EXPR and LT_EXPR cases above are not normally
12959 reached because of previous transformations. */
12961 default:
12962 break;
12964 else if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1)
12965 == max_hi
12966 && TREE_INT_CST_LOW (arg1) == max_lo - 1)
12967 switch (code)
12969 case GT_EXPR:
12970 arg1 = const_binop (PLUS_EXPR, arg1,
12971 build_int_cst (TREE_TYPE (arg1), 1));
12972 return fold_build2_loc (loc, EQ_EXPR, type,
12973 fold_convert_loc (loc,
12974 TREE_TYPE (arg1), arg0),
12975 arg1);
12976 case LE_EXPR:
12977 arg1 = const_binop (PLUS_EXPR, arg1,
12978 build_int_cst (TREE_TYPE (arg1), 1));
12979 return fold_build2_loc (loc, NE_EXPR, type,
12980 fold_convert_loc (loc, TREE_TYPE (arg1),
12981 arg0),
12982 arg1);
12983 default:
12984 break;
12986 else if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1)
12987 == min_hi
12988 && TREE_INT_CST_LOW (arg1) == min_lo)
12989 switch (code)
12991 case LT_EXPR:
12992 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
12994 case LE_EXPR:
12995 return fold_build2_loc (loc, EQ_EXPR, type, op0, op1);
12997 case GE_EXPR:
12998 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
13000 case GT_EXPR:
13001 return fold_build2_loc (loc, NE_EXPR, type, op0, op1);
13003 default:
13004 break;
13006 else if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (arg1)
13007 == min_hi
13008 && TREE_INT_CST_LOW (arg1) == min_lo + 1)
13009 switch (code)
13011 case GE_EXPR:
13012 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node);
13013 return fold_build2_loc (loc, NE_EXPR, type,
13014 fold_convert_loc (loc,
13015 TREE_TYPE (arg1), arg0),
13016 arg1);
13017 case LT_EXPR:
13018 arg1 = const_binop (MINUS_EXPR, arg1, integer_one_node);
13019 return fold_build2_loc (loc, EQ_EXPR, type,
13020 fold_convert_loc (loc, TREE_TYPE (arg1),
13021 arg0),
13022 arg1);
13023 default:
13024 break;
13027 else if (TREE_INT_CST_HIGH (arg1) == signed_max_hi
13028 && TREE_INT_CST_LOW (arg1) == signed_max_lo
13029 && TYPE_UNSIGNED (arg1_type)
13030 /* We will flip the signedness of the comparison operator
13031 associated with the mode of arg1, so the sign bit is
13032 specified by this mode. Check that arg1 is the signed
13033 max associated with this sign bit. */
13034 && width == GET_MODE_BITSIZE (TYPE_MODE (arg1_type))
13035 /* signed_type does not work on pointer types. */
13036 && INTEGRAL_TYPE_P (arg1_type))
13038 /* The following case also applies to X < signed_max+1
13039 and X >= signed_max+1 because previous transformations. */
13040 if (code == LE_EXPR || code == GT_EXPR)
13042 tree st;
13043 st = signed_type_for (TREE_TYPE (arg1));
13044 return fold_build2_loc (loc,
13045 code == LE_EXPR ? GE_EXPR : LT_EXPR,
13046 type, fold_convert_loc (loc, st, arg0),
13047 build_int_cst (st, 0));
13053 /* If we are comparing an ABS_EXPR with a constant, we can
13054 convert all the cases into explicit comparisons, but they may
13055 well not be faster than doing the ABS and one comparison.
13056 But ABS (X) <= C is a range comparison, which becomes a subtraction
13057 and a comparison, and is probably faster. */
13058 if (code == LE_EXPR
13059 && TREE_CODE (arg1) == INTEGER_CST
13060 && TREE_CODE (arg0) == ABS_EXPR
13061 && ! TREE_SIDE_EFFECTS (arg0)
13062 && (0 != (tem = negate_expr (arg1)))
13063 && TREE_CODE (tem) == INTEGER_CST
13064 && !TREE_OVERFLOW (tem))
13065 return fold_build2_loc (loc, TRUTH_ANDIF_EXPR, type,
13066 build2 (GE_EXPR, type,
13067 TREE_OPERAND (arg0, 0), tem),
13068 build2 (LE_EXPR, type,
13069 TREE_OPERAND (arg0, 0), arg1));
13071 /* Convert ABS_EXPR<x> >= 0 to true. */
13072 strict_overflow_p = false;
13073 if (code == GE_EXPR
13074 && (integer_zerop (arg1)
13075 || (! HONOR_NANS (TYPE_MODE (TREE_TYPE (arg0)))
13076 && real_zerop (arg1)))
13077 && tree_expr_nonnegative_warnv_p (arg0, &strict_overflow_p))
13079 if (strict_overflow_p)
13080 fold_overflow_warning (("assuming signed overflow does not occur "
13081 "when simplifying comparison of "
13082 "absolute value and zero"),
13083 WARN_STRICT_OVERFLOW_CONDITIONAL);
13084 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
13087 /* Convert ABS_EXPR<x> < 0 to false. */
13088 strict_overflow_p = false;
13089 if (code == LT_EXPR
13090 && (integer_zerop (arg1) || real_zerop (arg1))
13091 && tree_expr_nonnegative_warnv_p (arg0, &strict_overflow_p))
13093 if (strict_overflow_p)
13094 fold_overflow_warning (("assuming signed overflow does not occur "
13095 "when simplifying comparison of "
13096 "absolute value and zero"),
13097 WARN_STRICT_OVERFLOW_CONDITIONAL);
13098 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
13101 /* If X is unsigned, convert X < (1 << Y) into X >> Y == 0
13102 and similarly for >= into !=. */
13103 if ((code == LT_EXPR || code == GE_EXPR)
13104 && TYPE_UNSIGNED (TREE_TYPE (arg0))
13105 && TREE_CODE (arg1) == LSHIFT_EXPR
13106 && integer_onep (TREE_OPERAND (arg1, 0)))
13107 return build2_loc (loc, code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
13108 build2 (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
13109 TREE_OPERAND (arg1, 1)),
13110 build_int_cst (TREE_TYPE (arg0), 0));
13112 if ((code == LT_EXPR || code == GE_EXPR)
13113 && TYPE_UNSIGNED (TREE_TYPE (arg0))
13114 && CONVERT_EXPR_P (arg1)
13115 && TREE_CODE (TREE_OPERAND (arg1, 0)) == LSHIFT_EXPR
13116 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg1, 0), 0)))
13118 tem = build2 (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
13119 TREE_OPERAND (TREE_OPERAND (arg1, 0), 1));
13120 return build2_loc (loc, code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
13121 fold_convert_loc (loc, TREE_TYPE (arg0), tem),
13122 build_int_cst (TREE_TYPE (arg0), 0));
13125 return NULL_TREE;
13127 case UNORDERED_EXPR:
13128 case ORDERED_EXPR:
13129 case UNLT_EXPR:
13130 case UNLE_EXPR:
13131 case UNGT_EXPR:
13132 case UNGE_EXPR:
13133 case UNEQ_EXPR:
13134 case LTGT_EXPR:
13135 if (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
13137 t1 = fold_relational_const (code, type, arg0, arg1);
13138 if (t1 != NULL_TREE)
13139 return t1;
13142 /* If the first operand is NaN, the result is constant. */
13143 if (TREE_CODE (arg0) == REAL_CST
13144 && REAL_VALUE_ISNAN (TREE_REAL_CST (arg0))
13145 && (code != LTGT_EXPR || ! flag_trapping_math))
13147 t1 = (code == ORDERED_EXPR || code == LTGT_EXPR)
13148 ? integer_zero_node
13149 : integer_one_node;
13150 return omit_one_operand_loc (loc, type, t1, arg1);
13153 /* If the second operand is NaN, the result is constant. */
13154 if (TREE_CODE (arg1) == REAL_CST
13155 && REAL_VALUE_ISNAN (TREE_REAL_CST (arg1))
13156 && (code != LTGT_EXPR || ! flag_trapping_math))
13158 t1 = (code == ORDERED_EXPR || code == LTGT_EXPR)
13159 ? integer_zero_node
13160 : integer_one_node;
13161 return omit_one_operand_loc (loc, type, t1, arg0);
13164 /* Simplify unordered comparison of something with itself. */
13165 if ((code == UNLE_EXPR || code == UNGE_EXPR || code == UNEQ_EXPR)
13166 && operand_equal_p (arg0, arg1, 0))
13167 return constant_boolean_node (1, type);
13169 if (code == LTGT_EXPR
13170 && !flag_trapping_math
13171 && operand_equal_p (arg0, arg1, 0))
13172 return constant_boolean_node (0, type);
13174 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
13176 tree targ0 = strip_float_extensions (arg0);
13177 tree targ1 = strip_float_extensions (arg1);
13178 tree newtype = TREE_TYPE (targ0);
13180 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
13181 newtype = TREE_TYPE (targ1);
13183 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
13184 return fold_build2_loc (loc, code, type,
13185 fold_convert_loc (loc, newtype, targ0),
13186 fold_convert_loc (loc, newtype, targ1));
13189 return NULL_TREE;
13191 case COMPOUND_EXPR:
13192 /* When pedantic, a compound expression can be neither an lvalue
13193 nor an integer constant expression. */
13194 if (TREE_SIDE_EFFECTS (arg0) || TREE_CONSTANT (arg1))
13195 return NULL_TREE;
13196 /* Don't let (0, 0) be null pointer constant. */
13197 tem = integer_zerop (arg1) ? build1 (NOP_EXPR, type, arg1)
13198 : fold_convert_loc (loc, type, arg1);
13199 return pedantic_non_lvalue_loc (loc, tem);
13201 case COMPLEX_EXPR:
13202 if ((TREE_CODE (arg0) == REAL_CST
13203 && TREE_CODE (arg1) == REAL_CST)
13204 || (TREE_CODE (arg0) == INTEGER_CST
13205 && TREE_CODE (arg1) == INTEGER_CST))
13206 return build_complex (type, arg0, arg1);
13207 if (TREE_CODE (arg0) == REALPART_EXPR
13208 && TREE_CODE (arg1) == IMAGPART_EXPR
13209 && TREE_TYPE (TREE_OPERAND (arg0, 0)) == type
13210 && operand_equal_p (TREE_OPERAND (arg0, 0),
13211 TREE_OPERAND (arg1, 0), 0))
13212 return omit_one_operand_loc (loc, type, TREE_OPERAND (arg0, 0),
13213 TREE_OPERAND (arg1, 0));
13214 return NULL_TREE;
13216 case ASSERT_EXPR:
13217 /* An ASSERT_EXPR should never be passed to fold_binary. */
13218 gcc_unreachable ();
13220 default:
13221 return NULL_TREE;
13222 } /* switch (code) */
13225 /* Callback for walk_tree, looking for LABEL_EXPR. Return *TP if it is
13226 a LABEL_EXPR; otherwise return NULL_TREE. Do not check the subtrees
13227 of GOTO_EXPR. */
13229 static tree
13230 contains_label_1 (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
13232 switch (TREE_CODE (*tp))
13234 case LABEL_EXPR:
13235 return *tp;
13237 case GOTO_EXPR:
13238 *walk_subtrees = 0;
13240 /* ... fall through ... */
13242 default:
13243 return NULL_TREE;
13247 /* Return whether the sub-tree ST contains a label which is accessible from
13248 outside the sub-tree. */
13250 static bool
13251 contains_label_p (tree st)
13253 return
13254 (walk_tree_without_duplicates (&st, contains_label_1 , NULL) != NULL_TREE);
13257 /* Fold a ternary expression of code CODE and type TYPE with operands
13258 OP0, OP1, and OP2. Return the folded expression if folding is
13259 successful. Otherwise, return NULL_TREE. */
13261 tree
13262 fold_ternary_loc (location_t loc, enum tree_code code, tree type,
13263 tree op0, tree op1, tree op2)
13265 tree tem;
13266 tree arg0 = NULL_TREE, arg1 = NULL_TREE, arg2 = NULL_TREE;
13267 enum tree_code_class kind = TREE_CODE_CLASS (code);
13269 gcc_assert (IS_EXPR_CODE_CLASS (kind)
13270 && TREE_CODE_LENGTH (code) == 3);
13272 /* Strip any conversions that don't change the mode. This is safe
13273 for every expression, except for a comparison expression because
13274 its signedness is derived from its operands. So, in the latter
13275 case, only strip conversions that don't change the signedness.
13277 Note that this is done as an internal manipulation within the
13278 constant folder, in order to find the simplest representation of
13279 the arguments so that their form can be studied. In any cases,
13280 the appropriate type conversions should be put back in the tree
13281 that will get out of the constant folder. */
13282 if (op0)
13284 arg0 = op0;
13285 STRIP_NOPS (arg0);
13288 if (op1)
13290 arg1 = op1;
13291 STRIP_NOPS (arg1);
13294 if (op2)
13296 arg2 = op2;
13297 STRIP_NOPS (arg2);
13300 switch (code)
13302 case COMPONENT_REF:
13303 if (TREE_CODE (arg0) == CONSTRUCTOR
13304 && ! type_contains_placeholder_p (TREE_TYPE (arg0)))
13306 unsigned HOST_WIDE_INT idx;
13307 tree field, value;
13308 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg0), idx, field, value)
13309 if (field == arg1)
13310 return value;
13312 return NULL_TREE;
13314 case COND_EXPR:
13315 /* Pedantic ANSI C says that a conditional expression is never an lvalue,
13316 so all simple results must be passed through pedantic_non_lvalue. */
13317 if (TREE_CODE (arg0) == INTEGER_CST)
13319 tree unused_op = integer_zerop (arg0) ? op1 : op2;
13320 tem = integer_zerop (arg0) ? op2 : op1;
13321 /* Only optimize constant conditions when the selected branch
13322 has the same type as the COND_EXPR. This avoids optimizing
13323 away "c ? x : throw", where the throw has a void type.
13324 Avoid throwing away that operand which contains label. */
13325 if ((!TREE_SIDE_EFFECTS (unused_op)
13326 || !contains_label_p (unused_op))
13327 && (! VOID_TYPE_P (TREE_TYPE (tem))
13328 || VOID_TYPE_P (type)))
13329 return pedantic_non_lvalue_loc (loc, tem);
13330 return NULL_TREE;
13332 if (operand_equal_p (arg1, op2, 0))
13333 return pedantic_omit_one_operand_loc (loc, type, arg1, arg0);
13335 /* If we have A op B ? A : C, we may be able to convert this to a
13336 simpler expression, depending on the operation and the values
13337 of B and C. Signed zeros prevent all of these transformations,
13338 for reasons given above each one.
13340 Also try swapping the arguments and inverting the conditional. */
13341 if (COMPARISON_CLASS_P (arg0)
13342 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
13343 arg1, TREE_OPERAND (arg0, 1))
13344 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (arg1))))
13346 tem = fold_cond_expr_with_comparison (loc, type, arg0, op1, op2);
13347 if (tem)
13348 return tem;
13351 if (COMPARISON_CLASS_P (arg0)
13352 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
13353 op2,
13354 TREE_OPERAND (arg0, 1))
13355 && !HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (op2))))
13357 location_t loc0 = expr_location_or (arg0, loc);
13358 tem = fold_truth_not_expr (loc0, arg0);
13359 if (tem && COMPARISON_CLASS_P (tem))
13361 tem = fold_cond_expr_with_comparison (loc, type, tem, op2, op1);
13362 if (tem)
13363 return tem;
13367 /* If the second operand is simpler than the third, swap them
13368 since that produces better jump optimization results. */
13369 if (truth_value_p (TREE_CODE (arg0))
13370 && tree_swap_operands_p (op1, op2, false))
13372 location_t loc0 = expr_location_or (arg0, loc);
13373 /* See if this can be inverted. If it can't, possibly because
13374 it was a floating-point inequality comparison, don't do
13375 anything. */
13376 tem = fold_truth_not_expr (loc0, arg0);
13377 if (tem)
13378 return fold_build3_loc (loc, code, type, tem, op2, op1);
13381 /* Convert A ? 1 : 0 to simply A. */
13382 if (integer_onep (op1)
13383 && integer_zerop (op2)
13384 /* If we try to convert OP0 to our type, the
13385 call to fold will try to move the conversion inside
13386 a COND, which will recurse. In that case, the COND_EXPR
13387 is probably the best choice, so leave it alone. */
13388 && type == TREE_TYPE (arg0))
13389 return pedantic_non_lvalue_loc (loc, arg0);
13391 /* Convert A ? 0 : 1 to !A. This prefers the use of NOT_EXPR
13392 over COND_EXPR in cases such as floating point comparisons. */
13393 if (integer_zerop (op1)
13394 && integer_onep (op2)
13395 && truth_value_p (TREE_CODE (arg0)))
13396 return pedantic_non_lvalue_loc (loc,
13397 fold_convert_loc (loc, type,
13398 invert_truthvalue_loc (loc,
13399 arg0)));
13401 /* A < 0 ? <sign bit of A> : 0 is simply (A & <sign bit of A>). */
13402 if (TREE_CODE (arg0) == LT_EXPR
13403 && integer_zerop (TREE_OPERAND (arg0, 1))
13404 && integer_zerop (op2)
13405 && (tem = sign_bit_p (TREE_OPERAND (arg0, 0), arg1)))
13407 /* sign_bit_p only checks ARG1 bits within A's precision.
13408 If <sign bit of A> has wider type than A, bits outside
13409 of A's precision in <sign bit of A> need to be checked.
13410 If they are all 0, this optimization needs to be done
13411 in unsigned A's type, if they are all 1 in signed A's type,
13412 otherwise this can't be done. */
13413 if (TYPE_PRECISION (TREE_TYPE (tem))
13414 < TYPE_PRECISION (TREE_TYPE (arg1))
13415 && TYPE_PRECISION (TREE_TYPE (tem))
13416 < TYPE_PRECISION (type))
13418 unsigned HOST_WIDE_INT mask_lo;
13419 HOST_WIDE_INT mask_hi;
13420 int inner_width, outer_width;
13421 tree tem_type;
13423 inner_width = TYPE_PRECISION (TREE_TYPE (tem));
13424 outer_width = TYPE_PRECISION (TREE_TYPE (arg1));
13425 if (outer_width > TYPE_PRECISION (type))
13426 outer_width = TYPE_PRECISION (type);
13428 if (outer_width > HOST_BITS_PER_WIDE_INT)
13430 mask_hi = ((unsigned HOST_WIDE_INT) -1
13431 >> (2 * HOST_BITS_PER_WIDE_INT - outer_width));
13432 mask_lo = -1;
13434 else
13436 mask_hi = 0;
13437 mask_lo = ((unsigned HOST_WIDE_INT) -1
13438 >> (HOST_BITS_PER_WIDE_INT - outer_width));
13440 if (inner_width > HOST_BITS_PER_WIDE_INT)
13442 mask_hi &= ~((unsigned HOST_WIDE_INT) -1
13443 >> (HOST_BITS_PER_WIDE_INT - inner_width));
13444 mask_lo = 0;
13446 else
13447 mask_lo &= ~((unsigned HOST_WIDE_INT) -1
13448 >> (HOST_BITS_PER_WIDE_INT - inner_width));
13450 if ((TREE_INT_CST_HIGH (arg1) & mask_hi) == mask_hi
13451 && (TREE_INT_CST_LOW (arg1) & mask_lo) == mask_lo)
13453 tem_type = signed_type_for (TREE_TYPE (tem));
13454 tem = fold_convert_loc (loc, tem_type, tem);
13456 else if ((TREE_INT_CST_HIGH (arg1) & mask_hi) == 0
13457 && (TREE_INT_CST_LOW (arg1) & mask_lo) == 0)
13459 tem_type = unsigned_type_for (TREE_TYPE (tem));
13460 tem = fold_convert_loc (loc, tem_type, tem);
13462 else
13463 tem = NULL;
13466 if (tem)
13467 return
13468 fold_convert_loc (loc, type,
13469 fold_build2_loc (loc, BIT_AND_EXPR,
13470 TREE_TYPE (tem), tem,
13471 fold_convert_loc (loc,
13472 TREE_TYPE (tem),
13473 arg1)));
13476 /* (A >> N) & 1 ? (1 << N) : 0 is simply A & (1 << N). A & 1 was
13477 already handled above. */
13478 if (TREE_CODE (arg0) == BIT_AND_EXPR
13479 && integer_onep (TREE_OPERAND (arg0, 1))
13480 && integer_zerop (op2)
13481 && integer_pow2p (arg1))
13483 tree tem = TREE_OPERAND (arg0, 0);
13484 STRIP_NOPS (tem);
13485 if (TREE_CODE (tem) == RSHIFT_EXPR
13486 && TREE_CODE (TREE_OPERAND (tem, 1)) == INTEGER_CST
13487 && (unsigned HOST_WIDE_INT) tree_log2 (arg1) ==
13488 TREE_INT_CST_LOW (TREE_OPERAND (tem, 1)))
13489 return fold_build2_loc (loc, BIT_AND_EXPR, type,
13490 TREE_OPERAND (tem, 0), arg1);
13493 /* A & N ? N : 0 is simply A & N if N is a power of two. This
13494 is probably obsolete because the first operand should be a
13495 truth value (that's why we have the two cases above), but let's
13496 leave it in until we can confirm this for all front-ends. */
13497 if (integer_zerop (op2)
13498 && TREE_CODE (arg0) == NE_EXPR
13499 && integer_zerop (TREE_OPERAND (arg0, 1))
13500 && integer_pow2p (arg1)
13501 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
13502 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
13503 arg1, OEP_ONLY_CONST))
13504 return pedantic_non_lvalue_loc (loc,
13505 fold_convert_loc (loc, type,
13506 TREE_OPERAND (arg0, 0)));
13508 /* Convert A ? B : 0 into A && B if A and B are truth values. */
13509 if (integer_zerop (op2)
13510 && truth_value_p (TREE_CODE (arg0))
13511 && truth_value_p (TREE_CODE (arg1)))
13512 return fold_build2_loc (loc, TRUTH_ANDIF_EXPR, type,
13513 fold_convert_loc (loc, type, arg0),
13514 arg1);
13516 /* Convert A ? B : 1 into !A || B if A and B are truth values. */
13517 if (integer_onep (op2)
13518 && truth_value_p (TREE_CODE (arg0))
13519 && truth_value_p (TREE_CODE (arg1)))
13521 location_t loc0 = expr_location_or (arg0, loc);
13522 /* Only perform transformation if ARG0 is easily inverted. */
13523 tem = fold_truth_not_expr (loc0, arg0);
13524 if (tem)
13525 return fold_build2_loc (loc, TRUTH_ORIF_EXPR, type,
13526 fold_convert_loc (loc, type, tem),
13527 arg1);
13530 /* Convert A ? 0 : B into !A && B if A and B are truth values. */
13531 if (integer_zerop (arg1)
13532 && truth_value_p (TREE_CODE (arg0))
13533 && truth_value_p (TREE_CODE (op2)))
13535 location_t loc0 = expr_location_or (arg0, loc);
13536 /* Only perform transformation if ARG0 is easily inverted. */
13537 tem = fold_truth_not_expr (loc0, arg0);
13538 if (tem)
13539 return fold_build2_loc (loc, TRUTH_ANDIF_EXPR, type,
13540 fold_convert_loc (loc, type, tem),
13541 op2);
13544 /* Convert A ? 1 : B into A || B if A and B are truth values. */
13545 if (integer_onep (arg1)
13546 && truth_value_p (TREE_CODE (arg0))
13547 && truth_value_p (TREE_CODE (op2)))
13548 return fold_build2_loc (loc, TRUTH_ORIF_EXPR, type,
13549 fold_convert_loc (loc, type, arg0),
13550 op2);
13552 return NULL_TREE;
13554 case CALL_EXPR:
13555 /* CALL_EXPRs used to be ternary exprs. Catch any mistaken uses
13556 of fold_ternary on them. */
13557 gcc_unreachable ();
13559 case BIT_FIELD_REF:
13560 if ((TREE_CODE (arg0) == VECTOR_CST
13561 || (TREE_CODE (arg0) == CONSTRUCTOR && TREE_CONSTANT (arg0)))
13562 && type == TREE_TYPE (TREE_TYPE (arg0)))
13564 unsigned HOST_WIDE_INT width = tree_low_cst (arg1, 1);
13565 unsigned HOST_WIDE_INT idx = tree_low_cst (op2, 1);
13567 if (width != 0
13568 && simple_cst_equal (arg1, TYPE_SIZE (type)) == 1
13569 && (idx % width) == 0
13570 && (idx = idx / width)
13571 < TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg0)))
13573 tree elements = NULL_TREE;
13575 if (TREE_CODE (arg0) == VECTOR_CST)
13576 elements = TREE_VECTOR_CST_ELTS (arg0);
13577 else
13579 unsigned HOST_WIDE_INT idx;
13580 tree value;
13582 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg0), idx, value)
13583 elements = tree_cons (NULL_TREE, value, elements);
13585 while (idx-- > 0 && elements)
13586 elements = TREE_CHAIN (elements);
13587 if (elements)
13588 return TREE_VALUE (elements);
13589 else
13590 return build_zero_cst (type);
13594 /* A bit-field-ref that referenced the full argument can be stripped. */
13595 if (INTEGRAL_TYPE_P (TREE_TYPE (arg0))
13596 && TYPE_PRECISION (TREE_TYPE (arg0)) == tree_low_cst (arg1, 1)
13597 && integer_zerop (op2))
13598 return fold_convert_loc (loc, type, arg0);
13600 return NULL_TREE;
13602 case FMA_EXPR:
13603 /* For integers we can decompose the FMA if possible. */
13604 if (TREE_CODE (arg0) == INTEGER_CST
13605 && TREE_CODE (arg1) == INTEGER_CST)
13606 return fold_build2_loc (loc, PLUS_EXPR, type,
13607 const_binop (MULT_EXPR, arg0, arg1), arg2);
13608 if (integer_zerop (arg2))
13609 return fold_build2_loc (loc, MULT_EXPR, type, arg0, arg1);
13611 return fold_fma (loc, type, arg0, arg1, arg2);
13613 default:
13614 return NULL_TREE;
13615 } /* switch (code) */
13618 /* Perform constant folding and related simplification of EXPR.
13619 The related simplifications include x*1 => x, x*0 => 0, etc.,
13620 and application of the associative law.
13621 NOP_EXPR conversions may be removed freely (as long as we
13622 are careful not to change the type of the overall expression).
13623 We cannot simplify through a CONVERT_EXPR, FIX_EXPR or FLOAT_EXPR,
13624 but we can constant-fold them if they have constant operands. */
13626 #ifdef ENABLE_FOLD_CHECKING
13627 # define fold(x) fold_1 (x)
13628 static tree fold_1 (tree);
13629 static
13630 #endif
13631 tree
13632 fold (tree expr)
13634 const tree t = expr;
13635 enum tree_code code = TREE_CODE (t);
13636 enum tree_code_class kind = TREE_CODE_CLASS (code);
13637 tree tem;
13638 location_t loc = EXPR_LOCATION (expr);
13640 /* Return right away if a constant. */
13641 if (kind == tcc_constant)
13642 return t;
13644 /* CALL_EXPR-like objects with variable numbers of operands are
13645 treated specially. */
13646 if (kind == tcc_vl_exp)
13648 if (code == CALL_EXPR)
13650 tem = fold_call_expr (loc, expr, false);
13651 return tem ? tem : expr;
13653 return expr;
13656 if (IS_EXPR_CODE_CLASS (kind))
13658 tree type = TREE_TYPE (t);
13659 tree op0, op1, op2;
13661 switch (TREE_CODE_LENGTH (code))
13663 case 1:
13664 op0 = TREE_OPERAND (t, 0);
13665 tem = fold_unary_loc (loc, code, type, op0);
13666 return tem ? tem : expr;
13667 case 2:
13668 op0 = TREE_OPERAND (t, 0);
13669 op1 = TREE_OPERAND (t, 1);
13670 tem = fold_binary_loc (loc, code, type, op0, op1);
13671 return tem ? tem : expr;
13672 case 3:
13673 op0 = TREE_OPERAND (t, 0);
13674 op1 = TREE_OPERAND (t, 1);
13675 op2 = TREE_OPERAND (t, 2);
13676 tem = fold_ternary_loc (loc, code, type, op0, op1, op2);
13677 return tem ? tem : expr;
13678 default:
13679 break;
13683 switch (code)
13685 case ARRAY_REF:
13687 tree op0 = TREE_OPERAND (t, 0);
13688 tree op1 = TREE_OPERAND (t, 1);
13690 if (TREE_CODE (op1) == INTEGER_CST
13691 && TREE_CODE (op0) == CONSTRUCTOR
13692 && ! type_contains_placeholder_p (TREE_TYPE (op0)))
13694 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (op0);
13695 unsigned HOST_WIDE_INT end = VEC_length (constructor_elt, elts);
13696 unsigned HOST_WIDE_INT begin = 0;
13698 /* Find a matching index by means of a binary search. */
13699 while (begin != end)
13701 unsigned HOST_WIDE_INT middle = (begin + end) / 2;
13702 tree index = VEC_index (constructor_elt, elts, middle)->index;
13704 if (TREE_CODE (index) == INTEGER_CST
13705 && tree_int_cst_lt (index, op1))
13706 begin = middle + 1;
13707 else if (TREE_CODE (index) == INTEGER_CST
13708 && tree_int_cst_lt (op1, index))
13709 end = middle;
13710 else if (TREE_CODE (index) == RANGE_EXPR
13711 && tree_int_cst_lt (TREE_OPERAND (index, 1), op1))
13712 begin = middle + 1;
13713 else if (TREE_CODE (index) == RANGE_EXPR
13714 && tree_int_cst_lt (op1, TREE_OPERAND (index, 0)))
13715 end = middle;
13716 else
13717 return VEC_index (constructor_elt, elts, middle)->value;
13721 return t;
13724 case CONST_DECL:
13725 return fold (DECL_INITIAL (t));
13727 default:
13728 return t;
13729 } /* switch (code) */
13732 #ifdef ENABLE_FOLD_CHECKING
13733 #undef fold
13735 static void fold_checksum_tree (const_tree, struct md5_ctx *, htab_t);
13736 static void fold_check_failed (const_tree, const_tree);
13737 void print_fold_checksum (const_tree);
13739 /* When --enable-checking=fold, compute a digest of expr before
13740 and after actual fold call to see if fold did not accidentally
13741 change original expr. */
13743 tree
13744 fold (tree expr)
13746 tree ret;
13747 struct md5_ctx ctx;
13748 unsigned char checksum_before[16], checksum_after[16];
13749 htab_t ht;
13751 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13752 md5_init_ctx (&ctx);
13753 fold_checksum_tree (expr, &ctx, ht);
13754 md5_finish_ctx (&ctx, checksum_before);
13755 htab_empty (ht);
13757 ret = fold_1 (expr);
13759 md5_init_ctx (&ctx);
13760 fold_checksum_tree (expr, &ctx, ht);
13761 md5_finish_ctx (&ctx, checksum_after);
13762 htab_delete (ht);
13764 if (memcmp (checksum_before, checksum_after, 16))
13765 fold_check_failed (expr, ret);
13767 return ret;
13770 void
13771 print_fold_checksum (const_tree expr)
13773 struct md5_ctx ctx;
13774 unsigned char checksum[16], cnt;
13775 htab_t ht;
13777 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13778 md5_init_ctx (&ctx);
13779 fold_checksum_tree (expr, &ctx, ht);
13780 md5_finish_ctx (&ctx, checksum);
13781 htab_delete (ht);
13782 for (cnt = 0; cnt < 16; ++cnt)
13783 fprintf (stderr, "%02x", checksum[cnt]);
13784 putc ('\n', stderr);
13787 static void
13788 fold_check_failed (const_tree expr ATTRIBUTE_UNUSED, const_tree ret ATTRIBUTE_UNUSED)
13790 internal_error ("fold check: original tree changed by fold");
13793 static void
13794 fold_checksum_tree (const_tree expr, struct md5_ctx *ctx, htab_t ht)
13796 void **slot;
13797 enum tree_code code;
13798 union tree_node buf;
13799 int i, len;
13801 recursive_label:
13803 gcc_assert ((sizeof (struct tree_exp) + 5 * sizeof (tree)
13804 <= sizeof (struct tree_function_decl))
13805 && sizeof (struct tree_type) <= sizeof (struct tree_function_decl));
13806 if (expr == NULL)
13807 return;
13808 slot = (void **) htab_find_slot (ht, expr, INSERT);
13809 if (*slot != NULL)
13810 return;
13811 *slot = CONST_CAST_TREE (expr);
13812 code = TREE_CODE (expr);
13813 if (TREE_CODE_CLASS (code) == tcc_declaration
13814 && DECL_ASSEMBLER_NAME_SET_P (expr))
13816 /* Allow DECL_ASSEMBLER_NAME to be modified. */
13817 memcpy ((char *) &buf, expr, tree_size (expr));
13818 SET_DECL_ASSEMBLER_NAME ((tree)&buf, NULL);
13819 expr = (tree) &buf;
13821 else if (TREE_CODE_CLASS (code) == tcc_type
13822 && (TYPE_POINTER_TO (expr)
13823 || TYPE_REFERENCE_TO (expr)
13824 || TYPE_CACHED_VALUES_P (expr)
13825 || TYPE_CONTAINS_PLACEHOLDER_INTERNAL (expr)
13826 || TYPE_NEXT_VARIANT (expr)))
13828 /* Allow these fields to be modified. */
13829 tree tmp;
13830 memcpy ((char *) &buf, expr, tree_size (expr));
13831 expr = tmp = (tree) &buf;
13832 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (tmp) = 0;
13833 TYPE_POINTER_TO (tmp) = NULL;
13834 TYPE_REFERENCE_TO (tmp) = NULL;
13835 TYPE_NEXT_VARIANT (tmp) = NULL;
13836 if (TYPE_CACHED_VALUES_P (tmp))
13838 TYPE_CACHED_VALUES_P (tmp) = 0;
13839 TYPE_CACHED_VALUES (tmp) = NULL;
13842 md5_process_bytes (expr, tree_size (expr), ctx);
13843 fold_checksum_tree (TREE_TYPE (expr), ctx, ht);
13844 if (TREE_CODE_CLASS (code) != tcc_type
13845 && TREE_CODE_CLASS (code) != tcc_declaration
13846 && code != TREE_LIST
13847 && code != SSA_NAME
13848 && CODE_CONTAINS_STRUCT (code, TS_COMMON))
13849 fold_checksum_tree (TREE_CHAIN (expr), ctx, ht);
13850 switch (TREE_CODE_CLASS (code))
13852 case tcc_constant:
13853 switch (code)
13855 case STRING_CST:
13856 md5_process_bytes (TREE_STRING_POINTER (expr),
13857 TREE_STRING_LENGTH (expr), ctx);
13858 break;
13859 case COMPLEX_CST:
13860 fold_checksum_tree (TREE_REALPART (expr), ctx, ht);
13861 fold_checksum_tree (TREE_IMAGPART (expr), ctx, ht);
13862 break;
13863 case VECTOR_CST:
13864 fold_checksum_tree (TREE_VECTOR_CST_ELTS (expr), ctx, ht);
13865 break;
13866 default:
13867 break;
13869 break;
13870 case tcc_exceptional:
13871 switch (code)
13873 case TREE_LIST:
13874 fold_checksum_tree (TREE_PURPOSE (expr), ctx, ht);
13875 fold_checksum_tree (TREE_VALUE (expr), ctx, ht);
13876 expr = TREE_CHAIN (expr);
13877 goto recursive_label;
13878 break;
13879 case TREE_VEC:
13880 for (i = 0; i < TREE_VEC_LENGTH (expr); ++i)
13881 fold_checksum_tree (TREE_VEC_ELT (expr, i), ctx, ht);
13882 break;
13883 default:
13884 break;
13886 break;
13887 case tcc_expression:
13888 case tcc_reference:
13889 case tcc_comparison:
13890 case tcc_unary:
13891 case tcc_binary:
13892 case tcc_statement:
13893 case tcc_vl_exp:
13894 len = TREE_OPERAND_LENGTH (expr);
13895 for (i = 0; i < len; ++i)
13896 fold_checksum_tree (TREE_OPERAND (expr, i), ctx, ht);
13897 break;
13898 case tcc_declaration:
13899 fold_checksum_tree (DECL_NAME (expr), ctx, ht);
13900 fold_checksum_tree (DECL_CONTEXT (expr), ctx, ht);
13901 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_COMMON))
13903 fold_checksum_tree (DECL_SIZE (expr), ctx, ht);
13904 fold_checksum_tree (DECL_SIZE_UNIT (expr), ctx, ht);
13905 fold_checksum_tree (DECL_INITIAL (expr), ctx, ht);
13906 fold_checksum_tree (DECL_ABSTRACT_ORIGIN (expr), ctx, ht);
13907 fold_checksum_tree (DECL_ATTRIBUTES (expr), ctx, ht);
13909 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_WITH_VIS))
13910 fold_checksum_tree (DECL_SECTION_NAME (expr), ctx, ht);
13912 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_NON_COMMON))
13914 fold_checksum_tree (DECL_VINDEX (expr), ctx, ht);
13915 fold_checksum_tree (DECL_RESULT_FLD (expr), ctx, ht);
13916 fold_checksum_tree (DECL_ARGUMENT_FLD (expr), ctx, ht);
13918 break;
13919 case tcc_type:
13920 if (TREE_CODE (expr) == ENUMERAL_TYPE)
13921 fold_checksum_tree (TYPE_VALUES (expr), ctx, ht);
13922 fold_checksum_tree (TYPE_SIZE (expr), ctx, ht);
13923 fold_checksum_tree (TYPE_SIZE_UNIT (expr), ctx, ht);
13924 fold_checksum_tree (TYPE_ATTRIBUTES (expr), ctx, ht);
13925 fold_checksum_tree (TYPE_NAME (expr), ctx, ht);
13926 if (INTEGRAL_TYPE_P (expr)
13927 || SCALAR_FLOAT_TYPE_P (expr))
13929 fold_checksum_tree (TYPE_MIN_VALUE (expr), ctx, ht);
13930 fold_checksum_tree (TYPE_MAX_VALUE (expr), ctx, ht);
13932 fold_checksum_tree (TYPE_MAIN_VARIANT (expr), ctx, ht);
13933 if (TREE_CODE (expr) == RECORD_TYPE
13934 || TREE_CODE (expr) == UNION_TYPE
13935 || TREE_CODE (expr) == QUAL_UNION_TYPE)
13936 fold_checksum_tree (TYPE_BINFO (expr), ctx, ht);
13937 fold_checksum_tree (TYPE_CONTEXT (expr), ctx, ht);
13938 break;
13939 default:
13940 break;
13944 /* Helper function for outputting the checksum of a tree T. When
13945 debugging with gdb, you can "define mynext" to be "next" followed
13946 by "call debug_fold_checksum (op0)", then just trace down till the
13947 outputs differ. */
13949 DEBUG_FUNCTION void
13950 debug_fold_checksum (const_tree t)
13952 int i;
13953 unsigned char checksum[16];
13954 struct md5_ctx ctx;
13955 htab_t ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13957 md5_init_ctx (&ctx);
13958 fold_checksum_tree (t, &ctx, ht);
13959 md5_finish_ctx (&ctx, checksum);
13960 htab_empty (ht);
13962 for (i = 0; i < 16; i++)
13963 fprintf (stderr, "%d ", checksum[i]);
13965 fprintf (stderr, "\n");
13968 #endif
13970 /* Fold a unary tree expression with code CODE of type TYPE with an
13971 operand OP0. LOC is the location of the resulting expression.
13972 Return a folded expression if successful. Otherwise, return a tree
13973 expression with code CODE of type TYPE with an operand OP0. */
13975 tree
13976 fold_build1_stat_loc (location_t loc,
13977 enum tree_code code, tree type, tree op0 MEM_STAT_DECL)
13979 tree tem;
13980 #ifdef ENABLE_FOLD_CHECKING
13981 unsigned char checksum_before[16], checksum_after[16];
13982 struct md5_ctx ctx;
13983 htab_t ht;
13985 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
13986 md5_init_ctx (&ctx);
13987 fold_checksum_tree (op0, &ctx, ht);
13988 md5_finish_ctx (&ctx, checksum_before);
13989 htab_empty (ht);
13990 #endif
13992 tem = fold_unary_loc (loc, code, type, op0);
13993 if (!tem)
13994 tem = build1_stat_loc (loc, code, type, op0 PASS_MEM_STAT);
13996 #ifdef ENABLE_FOLD_CHECKING
13997 md5_init_ctx (&ctx);
13998 fold_checksum_tree (op0, &ctx, ht);
13999 md5_finish_ctx (&ctx, checksum_after);
14000 htab_delete (ht);
14002 if (memcmp (checksum_before, checksum_after, 16))
14003 fold_check_failed (op0, tem);
14004 #endif
14005 return tem;
14008 /* Fold a binary tree expression with code CODE of type TYPE with
14009 operands OP0 and OP1. LOC is the location of the resulting
14010 expression. Return a folded expression if successful. Otherwise,
14011 return a tree expression with code CODE of type TYPE with operands
14012 OP0 and OP1. */
14014 tree
14015 fold_build2_stat_loc (location_t loc,
14016 enum tree_code code, tree type, tree op0, tree op1
14017 MEM_STAT_DECL)
14019 tree tem;
14020 #ifdef ENABLE_FOLD_CHECKING
14021 unsigned char checksum_before_op0[16],
14022 checksum_before_op1[16],
14023 checksum_after_op0[16],
14024 checksum_after_op1[16];
14025 struct md5_ctx ctx;
14026 htab_t ht;
14028 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
14029 md5_init_ctx (&ctx);
14030 fold_checksum_tree (op0, &ctx, ht);
14031 md5_finish_ctx (&ctx, checksum_before_op0);
14032 htab_empty (ht);
14034 md5_init_ctx (&ctx);
14035 fold_checksum_tree (op1, &ctx, ht);
14036 md5_finish_ctx (&ctx, checksum_before_op1);
14037 htab_empty (ht);
14038 #endif
14040 tem = fold_binary_loc (loc, code, type, op0, op1);
14041 if (!tem)
14042 tem = build2_stat_loc (loc, code, type, op0, op1 PASS_MEM_STAT);
14044 #ifdef ENABLE_FOLD_CHECKING
14045 md5_init_ctx (&ctx);
14046 fold_checksum_tree (op0, &ctx, ht);
14047 md5_finish_ctx (&ctx, checksum_after_op0);
14048 htab_empty (ht);
14050 if (memcmp (checksum_before_op0, checksum_after_op0, 16))
14051 fold_check_failed (op0, tem);
14053 md5_init_ctx (&ctx);
14054 fold_checksum_tree (op1, &ctx, ht);
14055 md5_finish_ctx (&ctx, checksum_after_op1);
14056 htab_delete (ht);
14058 if (memcmp (checksum_before_op1, checksum_after_op1, 16))
14059 fold_check_failed (op1, tem);
14060 #endif
14061 return tem;
14064 /* Fold a ternary tree expression with code CODE of type TYPE with
14065 operands OP0, OP1, and OP2. Return a folded expression if
14066 successful. Otherwise, return a tree expression with code CODE of
14067 type TYPE with operands OP0, OP1, and OP2. */
14069 tree
14070 fold_build3_stat_loc (location_t loc, enum tree_code code, tree type,
14071 tree op0, tree op1, tree op2 MEM_STAT_DECL)
14073 tree tem;
14074 #ifdef ENABLE_FOLD_CHECKING
14075 unsigned char checksum_before_op0[16],
14076 checksum_before_op1[16],
14077 checksum_before_op2[16],
14078 checksum_after_op0[16],
14079 checksum_after_op1[16],
14080 checksum_after_op2[16];
14081 struct md5_ctx ctx;
14082 htab_t ht;
14084 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
14085 md5_init_ctx (&ctx);
14086 fold_checksum_tree (op0, &ctx, ht);
14087 md5_finish_ctx (&ctx, checksum_before_op0);
14088 htab_empty (ht);
14090 md5_init_ctx (&ctx);
14091 fold_checksum_tree (op1, &ctx, ht);
14092 md5_finish_ctx (&ctx, checksum_before_op1);
14093 htab_empty (ht);
14095 md5_init_ctx (&ctx);
14096 fold_checksum_tree (op2, &ctx, ht);
14097 md5_finish_ctx (&ctx, checksum_before_op2);
14098 htab_empty (ht);
14099 #endif
14101 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
14102 tem = fold_ternary_loc (loc, code, type, op0, op1, op2);
14103 if (!tem)
14104 tem = build3_stat_loc (loc, code, type, op0, op1, op2 PASS_MEM_STAT);
14106 #ifdef ENABLE_FOLD_CHECKING
14107 md5_init_ctx (&ctx);
14108 fold_checksum_tree (op0, &ctx, ht);
14109 md5_finish_ctx (&ctx, checksum_after_op0);
14110 htab_empty (ht);
14112 if (memcmp (checksum_before_op0, checksum_after_op0, 16))
14113 fold_check_failed (op0, tem);
14115 md5_init_ctx (&ctx);
14116 fold_checksum_tree (op1, &ctx, ht);
14117 md5_finish_ctx (&ctx, checksum_after_op1);
14118 htab_empty (ht);
14120 if (memcmp (checksum_before_op1, checksum_after_op1, 16))
14121 fold_check_failed (op1, tem);
14123 md5_init_ctx (&ctx);
14124 fold_checksum_tree (op2, &ctx, ht);
14125 md5_finish_ctx (&ctx, checksum_after_op2);
14126 htab_delete (ht);
14128 if (memcmp (checksum_before_op2, checksum_after_op2, 16))
14129 fold_check_failed (op2, tem);
14130 #endif
14131 return tem;
14134 /* Fold a CALL_EXPR expression of type TYPE with operands FN and NARGS
14135 arguments in ARGARRAY, and a null static chain.
14136 Return a folded expression if successful. Otherwise, return a CALL_EXPR
14137 of type TYPE from the given operands as constructed by build_call_array. */
14139 tree
14140 fold_build_call_array_loc (location_t loc, tree type, tree fn,
14141 int nargs, tree *argarray)
14143 tree tem;
14144 #ifdef ENABLE_FOLD_CHECKING
14145 unsigned char checksum_before_fn[16],
14146 checksum_before_arglist[16],
14147 checksum_after_fn[16],
14148 checksum_after_arglist[16];
14149 struct md5_ctx ctx;
14150 htab_t ht;
14151 int i;
14153 ht = htab_create (32, htab_hash_pointer, htab_eq_pointer, NULL);
14154 md5_init_ctx (&ctx);
14155 fold_checksum_tree (fn, &ctx, ht);
14156 md5_finish_ctx (&ctx, checksum_before_fn);
14157 htab_empty (ht);
14159 md5_init_ctx (&ctx);
14160 for (i = 0; i < nargs; i++)
14161 fold_checksum_tree (argarray[i], &ctx, ht);
14162 md5_finish_ctx (&ctx, checksum_before_arglist);
14163 htab_empty (ht);
14164 #endif
14166 tem = fold_builtin_call_array (loc, type, fn, nargs, argarray);
14168 #ifdef ENABLE_FOLD_CHECKING
14169 md5_init_ctx (&ctx);
14170 fold_checksum_tree (fn, &ctx, ht);
14171 md5_finish_ctx (&ctx, checksum_after_fn);
14172 htab_empty (ht);
14174 if (memcmp (checksum_before_fn, checksum_after_fn, 16))
14175 fold_check_failed (fn, tem);
14177 md5_init_ctx (&ctx);
14178 for (i = 0; i < nargs; i++)
14179 fold_checksum_tree (argarray[i], &ctx, ht);
14180 md5_finish_ctx (&ctx, checksum_after_arglist);
14181 htab_delete (ht);
14183 if (memcmp (checksum_before_arglist, checksum_after_arglist, 16))
14184 fold_check_failed (NULL_TREE, tem);
14185 #endif
14186 return tem;
14189 /* Perform constant folding and related simplification of initializer
14190 expression EXPR. These behave identically to "fold_buildN" but ignore
14191 potential run-time traps and exceptions that fold must preserve. */
14193 #define START_FOLD_INIT \
14194 int saved_signaling_nans = flag_signaling_nans;\
14195 int saved_trapping_math = flag_trapping_math;\
14196 int saved_rounding_math = flag_rounding_math;\
14197 int saved_trapv = flag_trapv;\
14198 int saved_folding_initializer = folding_initializer;\
14199 flag_signaling_nans = 0;\
14200 flag_trapping_math = 0;\
14201 flag_rounding_math = 0;\
14202 flag_trapv = 0;\
14203 folding_initializer = 1;
14205 #define END_FOLD_INIT \
14206 flag_signaling_nans = saved_signaling_nans;\
14207 flag_trapping_math = saved_trapping_math;\
14208 flag_rounding_math = saved_rounding_math;\
14209 flag_trapv = saved_trapv;\
14210 folding_initializer = saved_folding_initializer;
14212 tree
14213 fold_build1_initializer_loc (location_t loc, enum tree_code code,
14214 tree type, tree op)
14216 tree result;
14217 START_FOLD_INIT;
14219 result = fold_build1_loc (loc, code, type, op);
14221 END_FOLD_INIT;
14222 return result;
14225 tree
14226 fold_build2_initializer_loc (location_t loc, enum tree_code code,
14227 tree type, tree op0, tree op1)
14229 tree result;
14230 START_FOLD_INIT;
14232 result = fold_build2_loc (loc, code, type, op0, op1);
14234 END_FOLD_INIT;
14235 return result;
14238 tree
14239 fold_build3_initializer_loc (location_t loc, enum tree_code code,
14240 tree type, tree op0, tree op1, tree op2)
14242 tree result;
14243 START_FOLD_INIT;
14245 result = fold_build3_loc (loc, code, type, op0, op1, op2);
14247 END_FOLD_INIT;
14248 return result;
14251 tree
14252 fold_build_call_array_initializer_loc (location_t loc, tree type, tree fn,
14253 int nargs, tree *argarray)
14255 tree result;
14256 START_FOLD_INIT;
14258 result = fold_build_call_array_loc (loc, type, fn, nargs, argarray);
14260 END_FOLD_INIT;
14261 return result;
14264 #undef START_FOLD_INIT
14265 #undef END_FOLD_INIT
14267 /* Determine if first argument is a multiple of second argument. Return 0 if
14268 it is not, or we cannot easily determined it to be.
14270 An example of the sort of thing we care about (at this point; this routine
14271 could surely be made more general, and expanded to do what the *_DIV_EXPR's
14272 fold cases do now) is discovering that
14274 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
14276 is a multiple of
14278 SAVE_EXPR (J * 8)
14280 when we know that the two SAVE_EXPR (J * 8) nodes are the same node.
14282 This code also handles discovering that
14284 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
14286 is a multiple of 8 so we don't have to worry about dealing with a
14287 possible remainder.
14289 Note that we *look* inside a SAVE_EXPR only to determine how it was
14290 calculated; it is not safe for fold to do much of anything else with the
14291 internals of a SAVE_EXPR, since it cannot know when it will be evaluated
14292 at run time. For example, the latter example above *cannot* be implemented
14293 as SAVE_EXPR (I) * J or any variant thereof, since the value of J at
14294 evaluation time of the original SAVE_EXPR is not necessarily the same at
14295 the time the new expression is evaluated. The only optimization of this
14296 sort that would be valid is changing
14298 SAVE_EXPR (I) * SAVE_EXPR (SAVE_EXPR (J) * 8)
14300 divided by 8 to
14302 SAVE_EXPR (I) * SAVE_EXPR (J)
14304 (where the same SAVE_EXPR (J) is used in the original and the
14305 transformed version). */
14308 multiple_of_p (tree type, const_tree top, const_tree bottom)
14310 if (operand_equal_p (top, bottom, 0))
14311 return 1;
14313 if (TREE_CODE (type) != INTEGER_TYPE)
14314 return 0;
14316 switch (TREE_CODE (top))
14318 case BIT_AND_EXPR:
14319 /* Bitwise and provides a power of two multiple. If the mask is
14320 a multiple of BOTTOM then TOP is a multiple of BOTTOM. */
14321 if (!integer_pow2p (bottom))
14322 return 0;
14323 /* FALLTHRU */
14325 case MULT_EXPR:
14326 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
14327 || multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
14329 case PLUS_EXPR:
14330 case MINUS_EXPR:
14331 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
14332 && multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
14334 case LSHIFT_EXPR:
14335 if (TREE_CODE (TREE_OPERAND (top, 1)) == INTEGER_CST)
14337 tree op1, t1;
14339 op1 = TREE_OPERAND (top, 1);
14340 /* const_binop may not detect overflow correctly,
14341 so check for it explicitly here. */
14342 if (TYPE_PRECISION (TREE_TYPE (size_one_node))
14343 > TREE_INT_CST_LOW (op1)
14344 && TREE_INT_CST_HIGH (op1) == 0
14345 && 0 != (t1 = fold_convert (type,
14346 const_binop (LSHIFT_EXPR,
14347 size_one_node,
14348 op1)))
14349 && !TREE_OVERFLOW (t1))
14350 return multiple_of_p (type, t1, bottom);
14352 return 0;
14354 case NOP_EXPR:
14355 /* Can't handle conversions from non-integral or wider integral type. */
14356 if ((TREE_CODE (TREE_TYPE (TREE_OPERAND (top, 0))) != INTEGER_TYPE)
14357 || (TYPE_PRECISION (type)
14358 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (top, 0)))))
14359 return 0;
14361 /* .. fall through ... */
14363 case SAVE_EXPR:
14364 return multiple_of_p (type, TREE_OPERAND (top, 0), bottom);
14366 case COND_EXPR:
14367 return (multiple_of_p (type, TREE_OPERAND (top, 1), bottom)
14368 && multiple_of_p (type, TREE_OPERAND (top, 2), bottom));
14370 case INTEGER_CST:
14371 if (TREE_CODE (bottom) != INTEGER_CST
14372 || integer_zerop (bottom)
14373 || (TYPE_UNSIGNED (type)
14374 && (tree_int_cst_sgn (top) < 0
14375 || tree_int_cst_sgn (bottom) < 0)))
14376 return 0;
14377 return integer_zerop (int_const_binop (TRUNC_MOD_EXPR,
14378 top, bottom));
14380 default:
14381 return 0;
14385 /* Return true if CODE or TYPE is known to be non-negative. */
14387 static bool
14388 tree_simple_nonnegative_warnv_p (enum tree_code code, tree type)
14390 if ((TYPE_PRECISION (type) != 1 || TYPE_UNSIGNED (type))
14391 && truth_value_p (code))
14392 /* Truth values evaluate to 0 or 1, which is nonnegative unless we
14393 have a signed:1 type (where the value is -1 and 0). */
14394 return true;
14395 return false;
14398 /* Return true if (CODE OP0) is known to be non-negative. If the return
14399 value is based on the assumption that signed overflow is undefined,
14400 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14401 *STRICT_OVERFLOW_P. */
14403 bool
14404 tree_unary_nonnegative_warnv_p (enum tree_code code, tree type, tree op0,
14405 bool *strict_overflow_p)
14407 if (TYPE_UNSIGNED (type))
14408 return true;
14410 switch (code)
14412 case ABS_EXPR:
14413 /* We can't return 1 if flag_wrapv is set because
14414 ABS_EXPR<INT_MIN> = INT_MIN. */
14415 if (!INTEGRAL_TYPE_P (type))
14416 return true;
14417 if (TYPE_OVERFLOW_UNDEFINED (type))
14419 *strict_overflow_p = true;
14420 return true;
14422 break;
14424 case NON_LVALUE_EXPR:
14425 case FLOAT_EXPR:
14426 case FIX_TRUNC_EXPR:
14427 return tree_expr_nonnegative_warnv_p (op0,
14428 strict_overflow_p);
14430 case NOP_EXPR:
14432 tree inner_type = TREE_TYPE (op0);
14433 tree outer_type = type;
14435 if (TREE_CODE (outer_type) == REAL_TYPE)
14437 if (TREE_CODE (inner_type) == REAL_TYPE)
14438 return tree_expr_nonnegative_warnv_p (op0,
14439 strict_overflow_p);
14440 if (TREE_CODE (inner_type) == INTEGER_TYPE)
14442 if (TYPE_UNSIGNED (inner_type))
14443 return true;
14444 return tree_expr_nonnegative_warnv_p (op0,
14445 strict_overflow_p);
14448 else if (TREE_CODE (outer_type) == INTEGER_TYPE)
14450 if (TREE_CODE (inner_type) == REAL_TYPE)
14451 return tree_expr_nonnegative_warnv_p (op0,
14452 strict_overflow_p);
14453 if (TREE_CODE (inner_type) == INTEGER_TYPE)
14454 return TYPE_PRECISION (inner_type) < TYPE_PRECISION (outer_type)
14455 && TYPE_UNSIGNED (inner_type);
14458 break;
14460 default:
14461 return tree_simple_nonnegative_warnv_p (code, type);
14464 /* We don't know sign of `t', so be conservative and return false. */
14465 return false;
14468 /* Return true if (CODE OP0 OP1) is known to be non-negative. If the return
14469 value is based on the assumption that signed overflow is undefined,
14470 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14471 *STRICT_OVERFLOW_P. */
14473 bool
14474 tree_binary_nonnegative_warnv_p (enum tree_code code, tree type, tree op0,
14475 tree op1, bool *strict_overflow_p)
14477 if (TYPE_UNSIGNED (type))
14478 return true;
14480 switch (code)
14482 case POINTER_PLUS_EXPR:
14483 case PLUS_EXPR:
14484 if (FLOAT_TYPE_P (type))
14485 return (tree_expr_nonnegative_warnv_p (op0,
14486 strict_overflow_p)
14487 && tree_expr_nonnegative_warnv_p (op1,
14488 strict_overflow_p));
14490 /* zero_extend(x) + zero_extend(y) is non-negative if x and y are
14491 both unsigned and at least 2 bits shorter than the result. */
14492 if (TREE_CODE (type) == INTEGER_TYPE
14493 && TREE_CODE (op0) == NOP_EXPR
14494 && TREE_CODE (op1) == NOP_EXPR)
14496 tree inner1 = TREE_TYPE (TREE_OPERAND (op0, 0));
14497 tree inner2 = TREE_TYPE (TREE_OPERAND (op1, 0));
14498 if (TREE_CODE (inner1) == INTEGER_TYPE && TYPE_UNSIGNED (inner1)
14499 && TREE_CODE (inner2) == INTEGER_TYPE && TYPE_UNSIGNED (inner2))
14501 unsigned int prec = MAX (TYPE_PRECISION (inner1),
14502 TYPE_PRECISION (inner2)) + 1;
14503 return prec < TYPE_PRECISION (type);
14506 break;
14508 case MULT_EXPR:
14509 if (FLOAT_TYPE_P (type))
14511 /* x * x for floating point x is always non-negative. */
14512 if (operand_equal_p (op0, op1, 0))
14513 return true;
14514 return (tree_expr_nonnegative_warnv_p (op0,
14515 strict_overflow_p)
14516 && tree_expr_nonnegative_warnv_p (op1,
14517 strict_overflow_p));
14520 /* zero_extend(x) * zero_extend(y) is non-negative if x and y are
14521 both unsigned and their total bits is shorter than the result. */
14522 if (TREE_CODE (type) == INTEGER_TYPE
14523 && (TREE_CODE (op0) == NOP_EXPR || TREE_CODE (op0) == INTEGER_CST)
14524 && (TREE_CODE (op1) == NOP_EXPR || TREE_CODE (op1) == INTEGER_CST))
14526 tree inner0 = (TREE_CODE (op0) == NOP_EXPR)
14527 ? TREE_TYPE (TREE_OPERAND (op0, 0))
14528 : TREE_TYPE (op0);
14529 tree inner1 = (TREE_CODE (op1) == NOP_EXPR)
14530 ? TREE_TYPE (TREE_OPERAND (op1, 0))
14531 : TREE_TYPE (op1);
14533 bool unsigned0 = TYPE_UNSIGNED (inner0);
14534 bool unsigned1 = TYPE_UNSIGNED (inner1);
14536 if (TREE_CODE (op0) == INTEGER_CST)
14537 unsigned0 = unsigned0 || tree_int_cst_sgn (op0) >= 0;
14539 if (TREE_CODE (op1) == INTEGER_CST)
14540 unsigned1 = unsigned1 || tree_int_cst_sgn (op1) >= 0;
14542 if (TREE_CODE (inner0) == INTEGER_TYPE && unsigned0
14543 && TREE_CODE (inner1) == INTEGER_TYPE && unsigned1)
14545 unsigned int precision0 = (TREE_CODE (op0) == INTEGER_CST)
14546 ? tree_int_cst_min_precision (op0, /*unsignedp=*/true)
14547 : TYPE_PRECISION (inner0);
14549 unsigned int precision1 = (TREE_CODE (op1) == INTEGER_CST)
14550 ? tree_int_cst_min_precision (op1, /*unsignedp=*/true)
14551 : TYPE_PRECISION (inner1);
14553 return precision0 + precision1 < TYPE_PRECISION (type);
14556 return false;
14558 case BIT_AND_EXPR:
14559 case MAX_EXPR:
14560 return (tree_expr_nonnegative_warnv_p (op0,
14561 strict_overflow_p)
14562 || tree_expr_nonnegative_warnv_p (op1,
14563 strict_overflow_p));
14565 case BIT_IOR_EXPR:
14566 case BIT_XOR_EXPR:
14567 case MIN_EXPR:
14568 case RDIV_EXPR:
14569 case TRUNC_DIV_EXPR:
14570 case CEIL_DIV_EXPR:
14571 case FLOOR_DIV_EXPR:
14572 case ROUND_DIV_EXPR:
14573 return (tree_expr_nonnegative_warnv_p (op0,
14574 strict_overflow_p)
14575 && tree_expr_nonnegative_warnv_p (op1,
14576 strict_overflow_p));
14578 case TRUNC_MOD_EXPR:
14579 case CEIL_MOD_EXPR:
14580 case FLOOR_MOD_EXPR:
14581 case ROUND_MOD_EXPR:
14582 return tree_expr_nonnegative_warnv_p (op0,
14583 strict_overflow_p);
14584 default:
14585 return tree_simple_nonnegative_warnv_p (code, type);
14588 /* We don't know sign of `t', so be conservative and return false. */
14589 return false;
14592 /* Return true if T is known to be non-negative. If the return
14593 value is based on the assumption that signed overflow is undefined,
14594 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14595 *STRICT_OVERFLOW_P. */
14597 bool
14598 tree_single_nonnegative_warnv_p (tree t, bool *strict_overflow_p)
14600 if (TYPE_UNSIGNED (TREE_TYPE (t)))
14601 return true;
14603 switch (TREE_CODE (t))
14605 case INTEGER_CST:
14606 return tree_int_cst_sgn (t) >= 0;
14608 case REAL_CST:
14609 return ! REAL_VALUE_NEGATIVE (TREE_REAL_CST (t));
14611 case FIXED_CST:
14612 return ! FIXED_VALUE_NEGATIVE (TREE_FIXED_CST (t));
14614 case COND_EXPR:
14615 return (tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 1),
14616 strict_overflow_p)
14617 && tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 2),
14618 strict_overflow_p));
14619 default:
14620 return tree_simple_nonnegative_warnv_p (TREE_CODE (t),
14621 TREE_TYPE (t));
14623 /* We don't know sign of `t', so be conservative and return false. */
14624 return false;
14627 /* Return true if T is known to be non-negative. If the return
14628 value is based on the assumption that signed overflow is undefined,
14629 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14630 *STRICT_OVERFLOW_P. */
14632 bool
14633 tree_call_nonnegative_warnv_p (tree type, tree fndecl,
14634 tree arg0, tree arg1, bool *strict_overflow_p)
14636 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
14637 switch (DECL_FUNCTION_CODE (fndecl))
14639 CASE_FLT_FN (BUILT_IN_ACOS):
14640 CASE_FLT_FN (BUILT_IN_ACOSH):
14641 CASE_FLT_FN (BUILT_IN_CABS):
14642 CASE_FLT_FN (BUILT_IN_COSH):
14643 CASE_FLT_FN (BUILT_IN_ERFC):
14644 CASE_FLT_FN (BUILT_IN_EXP):
14645 CASE_FLT_FN (BUILT_IN_EXP10):
14646 CASE_FLT_FN (BUILT_IN_EXP2):
14647 CASE_FLT_FN (BUILT_IN_FABS):
14648 CASE_FLT_FN (BUILT_IN_FDIM):
14649 CASE_FLT_FN (BUILT_IN_HYPOT):
14650 CASE_FLT_FN (BUILT_IN_POW10):
14651 CASE_INT_FN (BUILT_IN_FFS):
14652 CASE_INT_FN (BUILT_IN_PARITY):
14653 CASE_INT_FN (BUILT_IN_POPCOUNT):
14654 case BUILT_IN_BSWAP32:
14655 case BUILT_IN_BSWAP64:
14656 /* Always true. */
14657 return true;
14659 CASE_FLT_FN (BUILT_IN_SQRT):
14660 /* sqrt(-0.0) is -0.0. */
14661 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
14662 return true;
14663 return tree_expr_nonnegative_warnv_p (arg0,
14664 strict_overflow_p);
14666 CASE_FLT_FN (BUILT_IN_ASINH):
14667 CASE_FLT_FN (BUILT_IN_ATAN):
14668 CASE_FLT_FN (BUILT_IN_ATANH):
14669 CASE_FLT_FN (BUILT_IN_CBRT):
14670 CASE_FLT_FN (BUILT_IN_CEIL):
14671 CASE_FLT_FN (BUILT_IN_ERF):
14672 CASE_FLT_FN (BUILT_IN_EXPM1):
14673 CASE_FLT_FN (BUILT_IN_FLOOR):
14674 CASE_FLT_FN (BUILT_IN_FMOD):
14675 CASE_FLT_FN (BUILT_IN_FREXP):
14676 CASE_FLT_FN (BUILT_IN_ICEIL):
14677 CASE_FLT_FN (BUILT_IN_IFLOOR):
14678 CASE_FLT_FN (BUILT_IN_IRINT):
14679 CASE_FLT_FN (BUILT_IN_IROUND):
14680 CASE_FLT_FN (BUILT_IN_LCEIL):
14681 CASE_FLT_FN (BUILT_IN_LDEXP):
14682 CASE_FLT_FN (BUILT_IN_LFLOOR):
14683 CASE_FLT_FN (BUILT_IN_LLCEIL):
14684 CASE_FLT_FN (BUILT_IN_LLFLOOR):
14685 CASE_FLT_FN (BUILT_IN_LLRINT):
14686 CASE_FLT_FN (BUILT_IN_LLROUND):
14687 CASE_FLT_FN (BUILT_IN_LRINT):
14688 CASE_FLT_FN (BUILT_IN_LROUND):
14689 CASE_FLT_FN (BUILT_IN_MODF):
14690 CASE_FLT_FN (BUILT_IN_NEARBYINT):
14691 CASE_FLT_FN (BUILT_IN_RINT):
14692 CASE_FLT_FN (BUILT_IN_ROUND):
14693 CASE_FLT_FN (BUILT_IN_SCALB):
14694 CASE_FLT_FN (BUILT_IN_SCALBLN):
14695 CASE_FLT_FN (BUILT_IN_SCALBN):
14696 CASE_FLT_FN (BUILT_IN_SIGNBIT):
14697 CASE_FLT_FN (BUILT_IN_SIGNIFICAND):
14698 CASE_FLT_FN (BUILT_IN_SINH):
14699 CASE_FLT_FN (BUILT_IN_TANH):
14700 CASE_FLT_FN (BUILT_IN_TRUNC):
14701 /* True if the 1st argument is nonnegative. */
14702 return tree_expr_nonnegative_warnv_p (arg0,
14703 strict_overflow_p);
14705 CASE_FLT_FN (BUILT_IN_FMAX):
14706 /* True if the 1st OR 2nd arguments are nonnegative. */
14707 return (tree_expr_nonnegative_warnv_p (arg0,
14708 strict_overflow_p)
14709 || (tree_expr_nonnegative_warnv_p (arg1,
14710 strict_overflow_p)));
14712 CASE_FLT_FN (BUILT_IN_FMIN):
14713 /* True if the 1st AND 2nd arguments are nonnegative. */
14714 return (tree_expr_nonnegative_warnv_p (arg0,
14715 strict_overflow_p)
14716 && (tree_expr_nonnegative_warnv_p (arg1,
14717 strict_overflow_p)));
14719 CASE_FLT_FN (BUILT_IN_COPYSIGN):
14720 /* True if the 2nd argument is nonnegative. */
14721 return tree_expr_nonnegative_warnv_p (arg1,
14722 strict_overflow_p);
14724 CASE_FLT_FN (BUILT_IN_POWI):
14725 /* True if the 1st argument is nonnegative or the second
14726 argument is an even integer. */
14727 if (TREE_CODE (arg1) == INTEGER_CST
14728 && (TREE_INT_CST_LOW (arg1) & 1) == 0)
14729 return true;
14730 return tree_expr_nonnegative_warnv_p (arg0,
14731 strict_overflow_p);
14733 CASE_FLT_FN (BUILT_IN_POW):
14734 /* True if the 1st argument is nonnegative or the second
14735 argument is an even integer valued real. */
14736 if (TREE_CODE (arg1) == REAL_CST)
14738 REAL_VALUE_TYPE c;
14739 HOST_WIDE_INT n;
14741 c = TREE_REAL_CST (arg1);
14742 n = real_to_integer (&c);
14743 if ((n & 1) == 0)
14745 REAL_VALUE_TYPE cint;
14746 real_from_integer (&cint, VOIDmode, n,
14747 n < 0 ? -1 : 0, 0);
14748 if (real_identical (&c, &cint))
14749 return true;
14752 return tree_expr_nonnegative_warnv_p (arg0,
14753 strict_overflow_p);
14755 default:
14756 break;
14758 return tree_simple_nonnegative_warnv_p (CALL_EXPR,
14759 type);
14762 /* Return true if T is known to be non-negative. If the return
14763 value is based on the assumption that signed overflow is undefined,
14764 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14765 *STRICT_OVERFLOW_P. */
14767 bool
14768 tree_invalid_nonnegative_warnv_p (tree t, bool *strict_overflow_p)
14770 enum tree_code code = TREE_CODE (t);
14771 if (TYPE_UNSIGNED (TREE_TYPE (t)))
14772 return true;
14774 switch (code)
14776 case TARGET_EXPR:
14778 tree temp = TARGET_EXPR_SLOT (t);
14779 t = TARGET_EXPR_INITIAL (t);
14781 /* If the initializer is non-void, then it's a normal expression
14782 that will be assigned to the slot. */
14783 if (!VOID_TYPE_P (t))
14784 return tree_expr_nonnegative_warnv_p (t, strict_overflow_p);
14786 /* Otherwise, the initializer sets the slot in some way. One common
14787 way is an assignment statement at the end of the initializer. */
14788 while (1)
14790 if (TREE_CODE (t) == BIND_EXPR)
14791 t = expr_last (BIND_EXPR_BODY (t));
14792 else if (TREE_CODE (t) == TRY_FINALLY_EXPR
14793 || TREE_CODE (t) == TRY_CATCH_EXPR)
14794 t = expr_last (TREE_OPERAND (t, 0));
14795 else if (TREE_CODE (t) == STATEMENT_LIST)
14796 t = expr_last (t);
14797 else
14798 break;
14800 if (TREE_CODE (t) == MODIFY_EXPR
14801 && TREE_OPERAND (t, 0) == temp)
14802 return tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 1),
14803 strict_overflow_p);
14805 return false;
14808 case CALL_EXPR:
14810 tree arg0 = call_expr_nargs (t) > 0 ? CALL_EXPR_ARG (t, 0) : NULL_TREE;
14811 tree arg1 = call_expr_nargs (t) > 1 ? CALL_EXPR_ARG (t, 1) : NULL_TREE;
14813 return tree_call_nonnegative_warnv_p (TREE_TYPE (t),
14814 get_callee_fndecl (t),
14815 arg0,
14816 arg1,
14817 strict_overflow_p);
14819 case COMPOUND_EXPR:
14820 case MODIFY_EXPR:
14821 return tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 1),
14822 strict_overflow_p);
14823 case BIND_EXPR:
14824 return tree_expr_nonnegative_warnv_p (expr_last (TREE_OPERAND (t, 1)),
14825 strict_overflow_p);
14826 case SAVE_EXPR:
14827 return tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 0),
14828 strict_overflow_p);
14830 default:
14831 return tree_simple_nonnegative_warnv_p (TREE_CODE (t),
14832 TREE_TYPE (t));
14835 /* We don't know sign of `t', so be conservative and return false. */
14836 return false;
14839 /* Return true if T is known to be non-negative. If the return
14840 value is based on the assumption that signed overflow is undefined,
14841 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14842 *STRICT_OVERFLOW_P. */
14844 bool
14845 tree_expr_nonnegative_warnv_p (tree t, bool *strict_overflow_p)
14847 enum tree_code code;
14848 if (t == error_mark_node)
14849 return false;
14851 code = TREE_CODE (t);
14852 switch (TREE_CODE_CLASS (code))
14854 case tcc_binary:
14855 case tcc_comparison:
14856 return tree_binary_nonnegative_warnv_p (TREE_CODE (t),
14857 TREE_TYPE (t),
14858 TREE_OPERAND (t, 0),
14859 TREE_OPERAND (t, 1),
14860 strict_overflow_p);
14862 case tcc_unary:
14863 return tree_unary_nonnegative_warnv_p (TREE_CODE (t),
14864 TREE_TYPE (t),
14865 TREE_OPERAND (t, 0),
14866 strict_overflow_p);
14868 case tcc_constant:
14869 case tcc_declaration:
14870 case tcc_reference:
14871 return tree_single_nonnegative_warnv_p (t, strict_overflow_p);
14873 default:
14874 break;
14877 switch (code)
14879 case TRUTH_AND_EXPR:
14880 case TRUTH_OR_EXPR:
14881 case TRUTH_XOR_EXPR:
14882 return tree_binary_nonnegative_warnv_p (TREE_CODE (t),
14883 TREE_TYPE (t),
14884 TREE_OPERAND (t, 0),
14885 TREE_OPERAND (t, 1),
14886 strict_overflow_p);
14887 case TRUTH_NOT_EXPR:
14888 return tree_unary_nonnegative_warnv_p (TREE_CODE (t),
14889 TREE_TYPE (t),
14890 TREE_OPERAND (t, 0),
14891 strict_overflow_p);
14893 case COND_EXPR:
14894 case CONSTRUCTOR:
14895 case OBJ_TYPE_REF:
14896 case ASSERT_EXPR:
14897 case ADDR_EXPR:
14898 case WITH_SIZE_EXPR:
14899 case SSA_NAME:
14900 return tree_single_nonnegative_warnv_p (t, strict_overflow_p);
14902 default:
14903 return tree_invalid_nonnegative_warnv_p (t, strict_overflow_p);
14907 /* Return true if `t' is known to be non-negative. Handle warnings
14908 about undefined signed overflow. */
14910 bool
14911 tree_expr_nonnegative_p (tree t)
14913 bool ret, strict_overflow_p;
14915 strict_overflow_p = false;
14916 ret = tree_expr_nonnegative_warnv_p (t, &strict_overflow_p);
14917 if (strict_overflow_p)
14918 fold_overflow_warning (("assuming signed overflow does not occur when "
14919 "determining that expression is always "
14920 "non-negative"),
14921 WARN_STRICT_OVERFLOW_MISC);
14922 return ret;
14926 /* Return true when (CODE OP0) is an address and is known to be nonzero.
14927 For floating point we further ensure that T is not denormal.
14928 Similar logic is present in nonzero_address in rtlanal.h.
14930 If the return value is based on the assumption that signed overflow
14931 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
14932 change *STRICT_OVERFLOW_P. */
14934 bool
14935 tree_unary_nonzero_warnv_p (enum tree_code code, tree type, tree op0,
14936 bool *strict_overflow_p)
14938 switch (code)
14940 case ABS_EXPR:
14941 return tree_expr_nonzero_warnv_p (op0,
14942 strict_overflow_p);
14944 case NOP_EXPR:
14946 tree inner_type = TREE_TYPE (op0);
14947 tree outer_type = type;
14949 return (TYPE_PRECISION (outer_type) >= TYPE_PRECISION (inner_type)
14950 && tree_expr_nonzero_warnv_p (op0,
14951 strict_overflow_p));
14953 break;
14955 case NON_LVALUE_EXPR:
14956 return tree_expr_nonzero_warnv_p (op0,
14957 strict_overflow_p);
14959 default:
14960 break;
14963 return false;
14966 /* Return true when (CODE OP0 OP1) is an address and is known to be nonzero.
14967 For floating point we further ensure that T is not denormal.
14968 Similar logic is present in nonzero_address in rtlanal.h.
14970 If the return value is based on the assumption that signed overflow
14971 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
14972 change *STRICT_OVERFLOW_P. */
14974 bool
14975 tree_binary_nonzero_warnv_p (enum tree_code code,
14976 tree type,
14977 tree op0,
14978 tree op1, bool *strict_overflow_p)
14980 bool sub_strict_overflow_p;
14981 switch (code)
14983 case POINTER_PLUS_EXPR:
14984 case PLUS_EXPR:
14985 if (TYPE_OVERFLOW_UNDEFINED (type))
14987 /* With the presence of negative values it is hard
14988 to say something. */
14989 sub_strict_overflow_p = false;
14990 if (!tree_expr_nonnegative_warnv_p (op0,
14991 &sub_strict_overflow_p)
14992 || !tree_expr_nonnegative_warnv_p (op1,
14993 &sub_strict_overflow_p))
14994 return false;
14995 /* One of operands must be positive and the other non-negative. */
14996 /* We don't set *STRICT_OVERFLOW_P here: even if this value
14997 overflows, on a twos-complement machine the sum of two
14998 nonnegative numbers can never be zero. */
14999 return (tree_expr_nonzero_warnv_p (op0,
15000 strict_overflow_p)
15001 || tree_expr_nonzero_warnv_p (op1,
15002 strict_overflow_p));
15004 break;
15006 case MULT_EXPR:
15007 if (TYPE_OVERFLOW_UNDEFINED (type))
15009 if (tree_expr_nonzero_warnv_p (op0,
15010 strict_overflow_p)
15011 && tree_expr_nonzero_warnv_p (op1,
15012 strict_overflow_p))
15014 *strict_overflow_p = true;
15015 return true;
15018 break;
15020 case MIN_EXPR:
15021 sub_strict_overflow_p = false;
15022 if (tree_expr_nonzero_warnv_p (op0,
15023 &sub_strict_overflow_p)
15024 && tree_expr_nonzero_warnv_p (op1,
15025 &sub_strict_overflow_p))
15027 if (sub_strict_overflow_p)
15028 *strict_overflow_p = true;
15030 break;
15032 case MAX_EXPR:
15033 sub_strict_overflow_p = false;
15034 if (tree_expr_nonzero_warnv_p (op0,
15035 &sub_strict_overflow_p))
15037 if (sub_strict_overflow_p)
15038 *strict_overflow_p = true;
15040 /* When both operands are nonzero, then MAX must be too. */
15041 if (tree_expr_nonzero_warnv_p (op1,
15042 strict_overflow_p))
15043 return true;
15045 /* MAX where operand 0 is positive is positive. */
15046 return tree_expr_nonnegative_warnv_p (op0,
15047 strict_overflow_p);
15049 /* MAX where operand 1 is positive is positive. */
15050 else if (tree_expr_nonzero_warnv_p (op1,
15051 &sub_strict_overflow_p)
15052 && tree_expr_nonnegative_warnv_p (op1,
15053 &sub_strict_overflow_p))
15055 if (sub_strict_overflow_p)
15056 *strict_overflow_p = true;
15057 return true;
15059 break;
15061 case BIT_IOR_EXPR:
15062 return (tree_expr_nonzero_warnv_p (op1,
15063 strict_overflow_p)
15064 || tree_expr_nonzero_warnv_p (op0,
15065 strict_overflow_p));
15067 default:
15068 break;
15071 return false;
15074 /* Return true when T is an address and is known to be nonzero.
15075 For floating point we further ensure that T is not denormal.
15076 Similar logic is present in nonzero_address in rtlanal.h.
15078 If the return value is based on the assumption that signed overflow
15079 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
15080 change *STRICT_OVERFLOW_P. */
15082 bool
15083 tree_single_nonzero_warnv_p (tree t, bool *strict_overflow_p)
15085 bool sub_strict_overflow_p;
15086 switch (TREE_CODE (t))
15088 case INTEGER_CST:
15089 return !integer_zerop (t);
15091 case ADDR_EXPR:
15093 tree base = TREE_OPERAND (t, 0);
15094 if (!DECL_P (base))
15095 base = get_base_address (base);
15097 if (!base)
15098 return false;
15100 /* Weak declarations may link to NULL. Other things may also be NULL
15101 so protect with -fdelete-null-pointer-checks; but not variables
15102 allocated on the stack. */
15103 if (DECL_P (base)
15104 && (flag_delete_null_pointer_checks
15105 || (DECL_CONTEXT (base)
15106 && TREE_CODE (DECL_CONTEXT (base)) == FUNCTION_DECL
15107 && auto_var_in_fn_p (base, DECL_CONTEXT (base)))))
15108 return !VAR_OR_FUNCTION_DECL_P (base) || !DECL_WEAK (base);
15110 /* Constants are never weak. */
15111 if (CONSTANT_CLASS_P (base))
15112 return true;
15114 return false;
15117 case COND_EXPR:
15118 sub_strict_overflow_p = false;
15119 if (tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 1),
15120 &sub_strict_overflow_p)
15121 && tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 2),
15122 &sub_strict_overflow_p))
15124 if (sub_strict_overflow_p)
15125 *strict_overflow_p = true;
15126 return true;
15128 break;
15130 default:
15131 break;
15133 return false;
15136 /* Return true when T is an address and is known to be nonzero.
15137 For floating point we further ensure that T is not denormal.
15138 Similar logic is present in nonzero_address in rtlanal.h.
15140 If the return value is based on the assumption that signed overflow
15141 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
15142 change *STRICT_OVERFLOW_P. */
15144 bool
15145 tree_expr_nonzero_warnv_p (tree t, bool *strict_overflow_p)
15147 tree type = TREE_TYPE (t);
15148 enum tree_code code;
15150 /* Doing something useful for floating point would need more work. */
15151 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
15152 return false;
15154 code = TREE_CODE (t);
15155 switch (TREE_CODE_CLASS (code))
15157 case tcc_unary:
15158 return tree_unary_nonzero_warnv_p (code, type, TREE_OPERAND (t, 0),
15159 strict_overflow_p);
15160 case tcc_binary:
15161 case tcc_comparison:
15162 return tree_binary_nonzero_warnv_p (code, type,
15163 TREE_OPERAND (t, 0),
15164 TREE_OPERAND (t, 1),
15165 strict_overflow_p);
15166 case tcc_constant:
15167 case tcc_declaration:
15168 case tcc_reference:
15169 return tree_single_nonzero_warnv_p (t, strict_overflow_p);
15171 default:
15172 break;
15175 switch (code)
15177 case TRUTH_NOT_EXPR:
15178 return tree_unary_nonzero_warnv_p (code, type, TREE_OPERAND (t, 0),
15179 strict_overflow_p);
15181 case TRUTH_AND_EXPR:
15182 case TRUTH_OR_EXPR:
15183 case TRUTH_XOR_EXPR:
15184 return tree_binary_nonzero_warnv_p (code, type,
15185 TREE_OPERAND (t, 0),
15186 TREE_OPERAND (t, 1),
15187 strict_overflow_p);
15189 case COND_EXPR:
15190 case CONSTRUCTOR:
15191 case OBJ_TYPE_REF:
15192 case ASSERT_EXPR:
15193 case ADDR_EXPR:
15194 case WITH_SIZE_EXPR:
15195 case SSA_NAME:
15196 return tree_single_nonzero_warnv_p (t, strict_overflow_p);
15198 case COMPOUND_EXPR:
15199 case MODIFY_EXPR:
15200 case BIND_EXPR:
15201 return tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 1),
15202 strict_overflow_p);
15204 case SAVE_EXPR:
15205 return tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 0),
15206 strict_overflow_p);
15208 case CALL_EXPR:
15209 return alloca_call_p (t);
15211 default:
15212 break;
15214 return false;
15217 /* Return true when T is an address and is known to be nonzero.
15218 Handle warnings about undefined signed overflow. */
15220 bool
15221 tree_expr_nonzero_p (tree t)
15223 bool ret, strict_overflow_p;
15225 strict_overflow_p = false;
15226 ret = tree_expr_nonzero_warnv_p (t, &strict_overflow_p);
15227 if (strict_overflow_p)
15228 fold_overflow_warning (("assuming signed overflow does not occur when "
15229 "determining that expression is always "
15230 "non-zero"),
15231 WARN_STRICT_OVERFLOW_MISC);
15232 return ret;
15235 /* Given the components of a binary expression CODE, TYPE, OP0 and OP1,
15236 attempt to fold the expression to a constant without modifying TYPE,
15237 OP0 or OP1.
15239 If the expression could be simplified to a constant, then return
15240 the constant. If the expression would not be simplified to a
15241 constant, then return NULL_TREE. */
15243 tree
15244 fold_binary_to_constant (enum tree_code code, tree type, tree op0, tree op1)
15246 tree tem = fold_binary (code, type, op0, op1);
15247 return (tem && TREE_CONSTANT (tem)) ? tem : NULL_TREE;
15250 /* Given the components of a unary expression CODE, TYPE and OP0,
15251 attempt to fold the expression to a constant without modifying
15252 TYPE or OP0.
15254 If the expression could be simplified to a constant, then return
15255 the constant. If the expression would not be simplified to a
15256 constant, then return NULL_TREE. */
15258 tree
15259 fold_unary_to_constant (enum tree_code code, tree type, tree op0)
15261 tree tem = fold_unary (code, type, op0);
15262 return (tem && TREE_CONSTANT (tem)) ? tem : NULL_TREE;
15265 /* If EXP represents referencing an element in a constant string
15266 (either via pointer arithmetic or array indexing), return the
15267 tree representing the value accessed, otherwise return NULL. */
15269 tree
15270 fold_read_from_constant_string (tree exp)
15272 if ((TREE_CODE (exp) == INDIRECT_REF
15273 || TREE_CODE (exp) == ARRAY_REF)
15274 && TREE_CODE (TREE_TYPE (exp)) == INTEGER_TYPE)
15276 tree exp1 = TREE_OPERAND (exp, 0);
15277 tree index;
15278 tree string;
15279 location_t loc = EXPR_LOCATION (exp);
15281 if (TREE_CODE (exp) == INDIRECT_REF)
15282 string = string_constant (exp1, &index);
15283 else
15285 tree low_bound = array_ref_low_bound (exp);
15286 index = fold_convert_loc (loc, sizetype, TREE_OPERAND (exp, 1));
15288 /* Optimize the special-case of a zero lower bound.
15290 We convert the low_bound to sizetype to avoid some problems
15291 with constant folding. (E.g. suppose the lower bound is 1,
15292 and its mode is QI. Without the conversion,l (ARRAY
15293 +(INDEX-(unsigned char)1)) becomes ((ARRAY+(-(unsigned char)1))
15294 +INDEX), which becomes (ARRAY+255+INDEX). Oops!) */
15295 if (! integer_zerop (low_bound))
15296 index = size_diffop_loc (loc, index,
15297 fold_convert_loc (loc, sizetype, low_bound));
15299 string = exp1;
15302 if (string
15303 && TYPE_MODE (TREE_TYPE (exp)) == TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))
15304 && TREE_CODE (string) == STRING_CST
15305 && TREE_CODE (index) == INTEGER_CST
15306 && compare_tree_int (index, TREE_STRING_LENGTH (string)) < 0
15307 && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (string))))
15308 == MODE_INT)
15309 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))) == 1))
15310 return build_int_cst_type (TREE_TYPE (exp),
15311 (TREE_STRING_POINTER (string)
15312 [TREE_INT_CST_LOW (index)]));
15314 return NULL;
15317 /* Return the tree for neg (ARG0) when ARG0 is known to be either
15318 an integer constant, real, or fixed-point constant.
15320 TYPE is the type of the result. */
15322 static tree
15323 fold_negate_const (tree arg0, tree type)
15325 tree t = NULL_TREE;
15327 switch (TREE_CODE (arg0))
15329 case INTEGER_CST:
15331 double_int val = tree_to_double_int (arg0);
15332 int overflow = neg_double (val.low, val.high, &val.low, &val.high);
15334 t = force_fit_type_double (type, val, 1,
15335 (overflow | TREE_OVERFLOW (arg0))
15336 && !TYPE_UNSIGNED (type));
15337 break;
15340 case REAL_CST:
15341 t = build_real (type, real_value_negate (&TREE_REAL_CST (arg0)));
15342 break;
15344 case FIXED_CST:
15346 FIXED_VALUE_TYPE f;
15347 bool overflow_p = fixed_arithmetic (&f, NEGATE_EXPR,
15348 &(TREE_FIXED_CST (arg0)), NULL,
15349 TYPE_SATURATING (type));
15350 t = build_fixed (type, f);
15351 /* Propagate overflow flags. */
15352 if (overflow_p | TREE_OVERFLOW (arg0))
15353 TREE_OVERFLOW (t) = 1;
15354 break;
15357 default:
15358 gcc_unreachable ();
15361 return t;
15364 /* Return the tree for abs (ARG0) when ARG0 is known to be either
15365 an integer constant or real constant.
15367 TYPE is the type of the result. */
15369 tree
15370 fold_abs_const (tree arg0, tree type)
15372 tree t = NULL_TREE;
15374 switch (TREE_CODE (arg0))
15376 case INTEGER_CST:
15378 double_int val = tree_to_double_int (arg0);
15380 /* If the value is unsigned or non-negative, then the absolute value
15381 is the same as the ordinary value. */
15382 if (TYPE_UNSIGNED (type)
15383 || !double_int_negative_p (val))
15384 t = arg0;
15386 /* If the value is negative, then the absolute value is
15387 its negation. */
15388 else
15390 int overflow;
15392 overflow = neg_double (val.low, val.high, &val.low, &val.high);
15393 t = force_fit_type_double (type, val, -1,
15394 overflow | TREE_OVERFLOW (arg0));
15397 break;
15399 case REAL_CST:
15400 if (REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg0)))
15401 t = build_real (type, real_value_negate (&TREE_REAL_CST (arg0)));
15402 else
15403 t = arg0;
15404 break;
15406 default:
15407 gcc_unreachable ();
15410 return t;
15413 /* Return the tree for not (ARG0) when ARG0 is known to be an integer
15414 constant. TYPE is the type of the result. */
15416 static tree
15417 fold_not_const (const_tree arg0, tree type)
15419 double_int val;
15421 gcc_assert (TREE_CODE (arg0) == INTEGER_CST);
15423 val = double_int_not (tree_to_double_int (arg0));
15424 return force_fit_type_double (type, val, 0, TREE_OVERFLOW (arg0));
15427 /* Given CODE, a relational operator, the target type, TYPE and two
15428 constant operands OP0 and OP1, return the result of the
15429 relational operation. If the result is not a compile time
15430 constant, then return NULL_TREE. */
15432 static tree
15433 fold_relational_const (enum tree_code code, tree type, tree op0, tree op1)
15435 int result, invert;
15437 /* From here on, the only cases we handle are when the result is
15438 known to be a constant. */
15440 if (TREE_CODE (op0) == REAL_CST && TREE_CODE (op1) == REAL_CST)
15442 const REAL_VALUE_TYPE *c0 = TREE_REAL_CST_PTR (op0);
15443 const REAL_VALUE_TYPE *c1 = TREE_REAL_CST_PTR (op1);
15445 /* Handle the cases where either operand is a NaN. */
15446 if (real_isnan (c0) || real_isnan (c1))
15448 switch (code)
15450 case EQ_EXPR:
15451 case ORDERED_EXPR:
15452 result = 0;
15453 break;
15455 case NE_EXPR:
15456 case UNORDERED_EXPR:
15457 case UNLT_EXPR:
15458 case UNLE_EXPR:
15459 case UNGT_EXPR:
15460 case UNGE_EXPR:
15461 case UNEQ_EXPR:
15462 result = 1;
15463 break;
15465 case LT_EXPR:
15466 case LE_EXPR:
15467 case GT_EXPR:
15468 case GE_EXPR:
15469 case LTGT_EXPR:
15470 if (flag_trapping_math)
15471 return NULL_TREE;
15472 result = 0;
15473 break;
15475 default:
15476 gcc_unreachable ();
15479 return constant_boolean_node (result, type);
15482 return constant_boolean_node (real_compare (code, c0, c1), type);
15485 if (TREE_CODE (op0) == FIXED_CST && TREE_CODE (op1) == FIXED_CST)
15487 const FIXED_VALUE_TYPE *c0 = TREE_FIXED_CST_PTR (op0);
15488 const FIXED_VALUE_TYPE *c1 = TREE_FIXED_CST_PTR (op1);
15489 return constant_boolean_node (fixed_compare (code, c0, c1), type);
15492 /* Handle equality/inequality of complex constants. */
15493 if (TREE_CODE (op0) == COMPLEX_CST && TREE_CODE (op1) == COMPLEX_CST)
15495 tree rcond = fold_relational_const (code, type,
15496 TREE_REALPART (op0),
15497 TREE_REALPART (op1));
15498 tree icond = fold_relational_const (code, type,
15499 TREE_IMAGPART (op0),
15500 TREE_IMAGPART (op1));
15501 if (code == EQ_EXPR)
15502 return fold_build2 (TRUTH_ANDIF_EXPR, type, rcond, icond);
15503 else if (code == NE_EXPR)
15504 return fold_build2 (TRUTH_ORIF_EXPR, type, rcond, icond);
15505 else
15506 return NULL_TREE;
15509 /* From here on we only handle LT, LE, GT, GE, EQ and NE.
15511 To compute GT, swap the arguments and do LT.
15512 To compute GE, do LT and invert the result.
15513 To compute LE, swap the arguments, do LT and invert the result.
15514 To compute NE, do EQ and invert the result.
15516 Therefore, the code below must handle only EQ and LT. */
15518 if (code == LE_EXPR || code == GT_EXPR)
15520 tree tem = op0;
15521 op0 = op1;
15522 op1 = tem;
15523 code = swap_tree_comparison (code);
15526 /* Note that it is safe to invert for real values here because we
15527 have already handled the one case that it matters. */
15529 invert = 0;
15530 if (code == NE_EXPR || code == GE_EXPR)
15532 invert = 1;
15533 code = invert_tree_comparison (code, false);
15536 /* Compute a result for LT or EQ if args permit;
15537 Otherwise return T. */
15538 if (TREE_CODE (op0) == INTEGER_CST && TREE_CODE (op1) == INTEGER_CST)
15540 if (code == EQ_EXPR)
15541 result = tree_int_cst_equal (op0, op1);
15542 else if (TYPE_UNSIGNED (TREE_TYPE (op0)))
15543 result = INT_CST_LT_UNSIGNED (op0, op1);
15544 else
15545 result = INT_CST_LT (op0, op1);
15547 else
15548 return NULL_TREE;
15550 if (invert)
15551 result ^= 1;
15552 return constant_boolean_node (result, type);
15555 /* If necessary, return a CLEANUP_POINT_EXPR for EXPR with the
15556 indicated TYPE. If no CLEANUP_POINT_EXPR is necessary, return EXPR
15557 itself. */
15559 tree
15560 fold_build_cleanup_point_expr (tree type, tree expr)
15562 /* If the expression does not have side effects then we don't have to wrap
15563 it with a cleanup point expression. */
15564 if (!TREE_SIDE_EFFECTS (expr))
15565 return expr;
15567 /* If the expression is a return, check to see if the expression inside the
15568 return has no side effects or the right hand side of the modify expression
15569 inside the return. If either don't have side effects set we don't need to
15570 wrap the expression in a cleanup point expression. Note we don't check the
15571 left hand side of the modify because it should always be a return decl. */
15572 if (TREE_CODE (expr) == RETURN_EXPR)
15574 tree op = TREE_OPERAND (expr, 0);
15575 if (!op || !TREE_SIDE_EFFECTS (op))
15576 return expr;
15577 op = TREE_OPERAND (op, 1);
15578 if (!TREE_SIDE_EFFECTS (op))
15579 return expr;
15582 return build1 (CLEANUP_POINT_EXPR, type, expr);
15585 /* Given a pointer value OP0 and a type TYPE, return a simplified version
15586 of an indirection through OP0, or NULL_TREE if no simplification is
15587 possible. */
15589 tree
15590 fold_indirect_ref_1 (location_t loc, tree type, tree op0)
15592 tree sub = op0;
15593 tree subtype;
15595 STRIP_NOPS (sub);
15596 subtype = TREE_TYPE (sub);
15597 if (!POINTER_TYPE_P (subtype))
15598 return NULL_TREE;
15600 if (TREE_CODE (sub) == ADDR_EXPR)
15602 tree op = TREE_OPERAND (sub, 0);
15603 tree optype = TREE_TYPE (op);
15604 /* *&CONST_DECL -> to the value of the const decl. */
15605 if (TREE_CODE (op) == CONST_DECL)
15606 return DECL_INITIAL (op);
15607 /* *&p => p; make sure to handle *&"str"[cst] here. */
15608 if (type == optype)
15610 tree fop = fold_read_from_constant_string (op);
15611 if (fop)
15612 return fop;
15613 else
15614 return op;
15616 /* *(foo *)&fooarray => fooarray[0] */
15617 else if (TREE_CODE (optype) == ARRAY_TYPE
15618 && type == TREE_TYPE (optype)
15619 && (!in_gimple_form
15620 || TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST))
15622 tree type_domain = TYPE_DOMAIN (optype);
15623 tree min_val = size_zero_node;
15624 if (type_domain && TYPE_MIN_VALUE (type_domain))
15625 min_val = TYPE_MIN_VALUE (type_domain);
15626 if (in_gimple_form
15627 && TREE_CODE (min_val) != INTEGER_CST)
15628 return NULL_TREE;
15629 return build4_loc (loc, ARRAY_REF, type, op, min_val,
15630 NULL_TREE, NULL_TREE);
15632 /* *(foo *)&complexfoo => __real__ complexfoo */
15633 else if (TREE_CODE (optype) == COMPLEX_TYPE
15634 && type == TREE_TYPE (optype))
15635 return fold_build1_loc (loc, REALPART_EXPR, type, op);
15636 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
15637 else if (TREE_CODE (optype) == VECTOR_TYPE
15638 && type == TREE_TYPE (optype))
15640 tree part_width = TYPE_SIZE (type);
15641 tree index = bitsize_int (0);
15642 return fold_build3_loc (loc, BIT_FIELD_REF, type, op, part_width, index);
15646 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
15647 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
15649 tree op00 = TREE_OPERAND (sub, 0);
15650 tree op01 = TREE_OPERAND (sub, 1);
15652 STRIP_NOPS (op00);
15653 if (TREE_CODE (op00) == ADDR_EXPR)
15655 tree op00type;
15656 op00 = TREE_OPERAND (op00, 0);
15657 op00type = TREE_TYPE (op00);
15659 /* ((foo*)&vectorfoo)[1] => BIT_FIELD_REF<vectorfoo,...> */
15660 if (TREE_CODE (op00type) == VECTOR_TYPE
15661 && type == TREE_TYPE (op00type))
15663 HOST_WIDE_INT offset = tree_low_cst (op01, 0);
15664 tree part_width = TYPE_SIZE (type);
15665 unsigned HOST_WIDE_INT part_widthi = tree_low_cst (part_width, 0)/BITS_PER_UNIT;
15666 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
15667 tree index = bitsize_int (indexi);
15669 if (offset/part_widthi <= TYPE_VECTOR_SUBPARTS (op00type))
15670 return fold_build3_loc (loc,
15671 BIT_FIELD_REF, type, op00,
15672 part_width, index);
15675 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
15676 else if (TREE_CODE (op00type) == COMPLEX_TYPE
15677 && type == TREE_TYPE (op00type))
15679 tree size = TYPE_SIZE_UNIT (type);
15680 if (tree_int_cst_equal (size, op01))
15681 return fold_build1_loc (loc, IMAGPART_EXPR, type, op00);
15683 /* ((foo *)&fooarray)[1] => fooarray[1] */
15684 else if (TREE_CODE (op00type) == ARRAY_TYPE
15685 && type == TREE_TYPE (op00type))
15687 tree type_domain = TYPE_DOMAIN (op00type);
15688 tree min_val = size_zero_node;
15689 if (type_domain && TYPE_MIN_VALUE (type_domain))
15690 min_val = TYPE_MIN_VALUE (type_domain);
15691 op01 = size_binop_loc (loc, EXACT_DIV_EXPR, op01,
15692 TYPE_SIZE_UNIT (type));
15693 op01 = size_binop_loc (loc, PLUS_EXPR, op01, min_val);
15694 return build4_loc (loc, ARRAY_REF, type, op00, op01,
15695 NULL_TREE, NULL_TREE);
15700 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
15701 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
15702 && type == TREE_TYPE (TREE_TYPE (subtype))
15703 && (!in_gimple_form
15704 || TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST))
15706 tree type_domain;
15707 tree min_val = size_zero_node;
15708 sub = build_fold_indirect_ref_loc (loc, sub);
15709 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
15710 if (type_domain && TYPE_MIN_VALUE (type_domain))
15711 min_val = TYPE_MIN_VALUE (type_domain);
15712 if (in_gimple_form
15713 && TREE_CODE (min_val) != INTEGER_CST)
15714 return NULL_TREE;
15715 return build4_loc (loc, ARRAY_REF, type, sub, min_val, NULL_TREE,
15716 NULL_TREE);
15719 return NULL_TREE;
15722 /* Builds an expression for an indirection through T, simplifying some
15723 cases. */
15725 tree
15726 build_fold_indirect_ref_loc (location_t loc, tree t)
15728 tree type = TREE_TYPE (TREE_TYPE (t));
15729 tree sub = fold_indirect_ref_1 (loc, type, t);
15731 if (sub)
15732 return sub;
15734 return build1_loc (loc, INDIRECT_REF, type, t);
15737 /* Given an INDIRECT_REF T, return either T or a simplified version. */
15739 tree
15740 fold_indirect_ref_loc (location_t loc, tree t)
15742 tree sub = fold_indirect_ref_1 (loc, TREE_TYPE (t), TREE_OPERAND (t, 0));
15744 if (sub)
15745 return sub;
15746 else
15747 return t;
15750 /* Strip non-trapping, non-side-effecting tree nodes from an expression
15751 whose result is ignored. The type of the returned tree need not be
15752 the same as the original expression. */
15754 tree
15755 fold_ignored_result (tree t)
15757 if (!TREE_SIDE_EFFECTS (t))
15758 return integer_zero_node;
15760 for (;;)
15761 switch (TREE_CODE_CLASS (TREE_CODE (t)))
15763 case tcc_unary:
15764 t = TREE_OPERAND (t, 0);
15765 break;
15767 case tcc_binary:
15768 case tcc_comparison:
15769 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1)))
15770 t = TREE_OPERAND (t, 0);
15771 else if (!TREE_SIDE_EFFECTS (TREE_OPERAND (t, 0)))
15772 t = TREE_OPERAND (t, 1);
15773 else
15774 return t;
15775 break;
15777 case tcc_expression:
15778 switch (TREE_CODE (t))
15780 case COMPOUND_EXPR:
15781 if (TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1)))
15782 return t;
15783 t = TREE_OPERAND (t, 0);
15784 break;
15786 case COND_EXPR:
15787 if (TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1))
15788 || TREE_SIDE_EFFECTS (TREE_OPERAND (t, 2)))
15789 return t;
15790 t = TREE_OPERAND (t, 0);
15791 break;
15793 default:
15794 return t;
15796 break;
15798 default:
15799 return t;
15803 /* Return the value of VALUE, rounded up to a multiple of DIVISOR.
15804 This can only be applied to objects of a sizetype. */
15806 tree
15807 round_up_loc (location_t loc, tree value, int divisor)
15809 tree div = NULL_TREE;
15811 gcc_assert (divisor > 0);
15812 if (divisor == 1)
15813 return value;
15815 /* See if VALUE is already a multiple of DIVISOR. If so, we don't
15816 have to do anything. Only do this when we are not given a const,
15817 because in that case, this check is more expensive than just
15818 doing it. */
15819 if (TREE_CODE (value) != INTEGER_CST)
15821 div = build_int_cst (TREE_TYPE (value), divisor);
15823 if (multiple_of_p (TREE_TYPE (value), value, div))
15824 return value;
15827 /* If divisor is a power of two, simplify this to bit manipulation. */
15828 if (divisor == (divisor & -divisor))
15830 if (TREE_CODE (value) == INTEGER_CST)
15832 double_int val = tree_to_double_int (value);
15833 bool overflow_p;
15835 if ((val.low & (divisor - 1)) == 0)
15836 return value;
15838 overflow_p = TREE_OVERFLOW (value);
15839 val.low &= ~(divisor - 1);
15840 val.low += divisor;
15841 if (val.low == 0)
15843 val.high++;
15844 if (val.high == 0)
15845 overflow_p = true;
15848 return force_fit_type_double (TREE_TYPE (value), val,
15849 -1, overflow_p);
15851 else
15853 tree t;
15855 t = build_int_cst (TREE_TYPE (value), divisor - 1);
15856 value = size_binop_loc (loc, PLUS_EXPR, value, t);
15857 t = build_int_cst (TREE_TYPE (value), -divisor);
15858 value = size_binop_loc (loc, BIT_AND_EXPR, value, t);
15861 else
15863 if (!div)
15864 div = build_int_cst (TREE_TYPE (value), divisor);
15865 value = size_binop_loc (loc, CEIL_DIV_EXPR, value, div);
15866 value = size_binop_loc (loc, MULT_EXPR, value, div);
15869 return value;
15872 /* Likewise, but round down. */
15874 tree
15875 round_down_loc (location_t loc, tree value, int divisor)
15877 tree div = NULL_TREE;
15879 gcc_assert (divisor > 0);
15880 if (divisor == 1)
15881 return value;
15883 /* See if VALUE is already a multiple of DIVISOR. If so, we don't
15884 have to do anything. Only do this when we are not given a const,
15885 because in that case, this check is more expensive than just
15886 doing it. */
15887 if (TREE_CODE (value) != INTEGER_CST)
15889 div = build_int_cst (TREE_TYPE (value), divisor);
15891 if (multiple_of_p (TREE_TYPE (value), value, div))
15892 return value;
15895 /* If divisor is a power of two, simplify this to bit manipulation. */
15896 if (divisor == (divisor & -divisor))
15898 tree t;
15900 t = build_int_cst (TREE_TYPE (value), -divisor);
15901 value = size_binop_loc (loc, BIT_AND_EXPR, value, t);
15903 else
15905 if (!div)
15906 div = build_int_cst (TREE_TYPE (value), divisor);
15907 value = size_binop_loc (loc, FLOOR_DIV_EXPR, value, div);
15908 value = size_binop_loc (loc, MULT_EXPR, value, div);
15911 return value;
15914 /* Returns the pointer to the base of the object addressed by EXP and
15915 extracts the information about the offset of the access, storing it
15916 to PBITPOS and POFFSET. */
15918 static tree
15919 split_address_to_core_and_offset (tree exp,
15920 HOST_WIDE_INT *pbitpos, tree *poffset)
15922 tree core;
15923 enum machine_mode mode;
15924 int unsignedp, volatilep;
15925 HOST_WIDE_INT bitsize;
15926 location_t loc = EXPR_LOCATION (exp);
15928 if (TREE_CODE (exp) == ADDR_EXPR)
15930 core = get_inner_reference (TREE_OPERAND (exp, 0), &bitsize, pbitpos,
15931 poffset, &mode, &unsignedp, &volatilep,
15932 false);
15933 core = build_fold_addr_expr_loc (loc, core);
15935 else
15937 core = exp;
15938 *pbitpos = 0;
15939 *poffset = NULL_TREE;
15942 return core;
15945 /* Returns true if addresses of E1 and E2 differ by a constant, false
15946 otherwise. If they do, E1 - E2 is stored in *DIFF. */
15948 bool
15949 ptr_difference_const (tree e1, tree e2, HOST_WIDE_INT *diff)
15951 tree core1, core2;
15952 HOST_WIDE_INT bitpos1, bitpos2;
15953 tree toffset1, toffset2, tdiff, type;
15955 core1 = split_address_to_core_and_offset (e1, &bitpos1, &toffset1);
15956 core2 = split_address_to_core_and_offset (e2, &bitpos2, &toffset2);
15958 if (bitpos1 % BITS_PER_UNIT != 0
15959 || bitpos2 % BITS_PER_UNIT != 0
15960 || !operand_equal_p (core1, core2, 0))
15961 return false;
15963 if (toffset1 && toffset2)
15965 type = TREE_TYPE (toffset1);
15966 if (type != TREE_TYPE (toffset2))
15967 toffset2 = fold_convert (type, toffset2);
15969 tdiff = fold_build2 (MINUS_EXPR, type, toffset1, toffset2);
15970 if (!cst_and_fits_in_hwi (tdiff))
15971 return false;
15973 *diff = int_cst_value (tdiff);
15975 else if (toffset1 || toffset2)
15977 /* If only one of the offsets is non-constant, the difference cannot
15978 be a constant. */
15979 return false;
15981 else
15982 *diff = 0;
15984 *diff += (bitpos1 - bitpos2) / BITS_PER_UNIT;
15985 return true;
15988 /* Simplify the floating point expression EXP when the sign of the
15989 result is not significant. Return NULL_TREE if no simplification
15990 is possible. */
15992 tree
15993 fold_strip_sign_ops (tree exp)
15995 tree arg0, arg1;
15996 location_t loc = EXPR_LOCATION (exp);
15998 switch (TREE_CODE (exp))
16000 case ABS_EXPR:
16001 case NEGATE_EXPR:
16002 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 0));
16003 return arg0 ? arg0 : TREE_OPERAND (exp, 0);
16005 case MULT_EXPR:
16006 case RDIV_EXPR:
16007 if (HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (TREE_TYPE (exp))))
16008 return NULL_TREE;
16009 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 0));
16010 arg1 = fold_strip_sign_ops (TREE_OPERAND (exp, 1));
16011 if (arg0 != NULL_TREE || arg1 != NULL_TREE)
16012 return fold_build2_loc (loc, TREE_CODE (exp), TREE_TYPE (exp),
16013 arg0 ? arg0 : TREE_OPERAND (exp, 0),
16014 arg1 ? arg1 : TREE_OPERAND (exp, 1));
16015 break;
16017 case COMPOUND_EXPR:
16018 arg0 = TREE_OPERAND (exp, 0);
16019 arg1 = fold_strip_sign_ops (TREE_OPERAND (exp, 1));
16020 if (arg1)
16021 return fold_build2_loc (loc, COMPOUND_EXPR, TREE_TYPE (exp), arg0, arg1);
16022 break;
16024 case COND_EXPR:
16025 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 1));
16026 arg1 = fold_strip_sign_ops (TREE_OPERAND (exp, 2));
16027 if (arg0 || arg1)
16028 return fold_build3_loc (loc,
16029 COND_EXPR, TREE_TYPE (exp), TREE_OPERAND (exp, 0),
16030 arg0 ? arg0 : TREE_OPERAND (exp, 1),
16031 arg1 ? arg1 : TREE_OPERAND (exp, 2));
16032 break;
16034 case CALL_EXPR:
16036 const enum built_in_function fcode = builtin_mathfn_code (exp);
16037 switch (fcode)
16039 CASE_FLT_FN (BUILT_IN_COPYSIGN):
16040 /* Strip copysign function call, return the 1st argument. */
16041 arg0 = CALL_EXPR_ARG (exp, 0);
16042 arg1 = CALL_EXPR_ARG (exp, 1);
16043 return omit_one_operand_loc (loc, TREE_TYPE (exp), arg0, arg1);
16045 default:
16046 /* Strip sign ops from the argument of "odd" math functions. */
16047 if (negate_mathfn_p (fcode))
16049 arg0 = fold_strip_sign_ops (CALL_EXPR_ARG (exp, 0));
16050 if (arg0)
16051 return build_call_expr_loc (loc, get_callee_fndecl (exp), 1, arg0);
16053 break;
16056 break;
16058 default:
16059 break;
16061 return NULL_TREE;